Changeset 2652
- Timestamp:
- 01/11/10 16:29:33
- Files:
-
- trunk/deployment/webpublic/webapp/resources/demoskins/MainCampus/themes/bedeworkTheme/ongoing.xsl (modified) (1 diff)
- trunk/deployment/webpublic/webapp/resources/demoskins/MainCampus/themes/bedeworkTheme/themeSettings.xsl (modified) (3 diffs)
- trunk/deployment/webpublic/webapp/resources/demoskins/MainCampus/themes/bedeworkTheme/themeUtil.xsl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webpublic/webapp/resources/demoskins/MainCampus/themes/bedeworkTheme/ongoing.xsl
r2528 r2652 10 10 <ul class="eventList"> 11 11 <xsl:choose> 12 <xsl:when test="/bedework/eventscalendar//event[categories/category[ value = $ongoingEventsCatName]]">12 <xsl:when test="/bedework/eventscalendar//event[categories/category[uid = $ongoingEventsCatUid]]"> 13 13 <xsl:for-each 14 select="/bedework/eventscalendar/year/month/week/day/event[categories/category[ value = $ongoingEventsCatName]]">14 select="/bedework/eventscalendar/year/month/week/day/event[categories/category[uid = $ongoingEventsCatUid]]"> 15 15 <xsl:sort select="start/unformatted" order="ascending" data-type="number" /> 16 16 <xsl:sort select="id" data-type="number" /> trunk/deployment/webpublic/webapp/resources/demoskins/MainCampus/themes/bedeworkTheme/themeSettings.xsl
r2651 r2652 41 41 the javascript code expected. If you use the Share This 42 42 service, you will likely want to turn off the Facebook 43 icon (above) as it is included in the service.43 icon (above) as it is included already. 44 44 See http://www.bedework.org/trac/bedework/wiki/BedeworkManual/v3.6/ShareThis --> 45 45 <xsl:variable name="eventIconShareThis">true</xsl:variable> … … 47 47 48 48 <!-- FEATURED EVENTS --> 49 <!-- display the featured event images? -->49 <!-- Display the featured event images? --> 50 50 <xsl:variable name="featuredEventsEnabled">true</xsl:variable> 51 51 <xsl:variable name="featuredEventsAlwaysOn">false</xsl:variable> … … 59 59 60 60 <!-- ONGOING EVENTS --> 61 <!-- use the ongoing events sidebar? -->62 <!-- if ongoing events sidebar is enabled,61 <!-- Use the ongoing events sidebar? --> 62 <!-- If ongoing events sidebar is enabled, 63 63 you must set UseCategory for ongoing events to appear. --> 64 64 <xsl:variable name="ongoingEventsEnabled">true</xsl:variable> 65 65 66 <!-- use the specified category to mark an event as ongoing. 67 the CatName is for reference and is optional. The CatUid 68 is used for filtering out the ongoing events. --> 66 <!-- Use the specified category to mark an event as ongoing. --> 69 67 <xsl:variable name="ongoingEventsUseCategory">true</xsl:variable> 70 < xsl:variable name="ongoingEventsCatName">sys/Ongoing</xsl:variable>68 <!-- the following CatUid represents category "sys/Ongoing" --> 71 69 <xsl:variable name="ongoingEventsCatUid">402881e7-25b99d14-0125-b9a50c22-00000002</xsl:variable> 72 70 trunk/deployment/webpublic/webapp/resources/demoskins/MainCampus/themes/bedeworkTheme/themeUtil.xsl
r2533 r2652 15 15 <xsl:when test="$ongoingEventsAlwaysDisplayed = 'true'">true</xsl:when> 16 16 <xsl:when test="$ongoingEventsUseCategory = 'true' and 17 /bedework/eventscalendar//event/categories//category/ value = $ongoingEventsCatName">true</xsl:when>17 /bedework/eventscalendar//event/categories//category/uid = $ongoingEventsCatUid">true</xsl:when> 18 18 <xsl:otherwise>false</xsl:otherwise> 19 19 </xsl:choose>
