Changeset 2116
- Timestamp:
- 04/04/09 16:25:59
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webpublic/webapp/resources/demoskins/MainCampus/default/default/default.xsl
r2098 r2116 1424 1424 <!-- list of available calendars --> 1425 1425 <xsl:template match="calendars"> 1426 <xsl:variable name="topLevelCalCount" select="count(calendar/calendar[ name='aliases']/calendar)"/>1426 <xsl:variable name="topLevelCalCount" select="count(calendar/calendar[calType != 5 and calType != 6 and calType != 2 and calType != 3])"/> 1427 1427 <table id="calPageTable" border="0" cellpadding="0" cellspacing="0"> 1428 1428 <tr> … … 1441 1441 <td class="leftCell"> 1442 1442 <ul class="calendarTree"> 1443 <xsl:apply-templates select="calendar/calendar[ name='aliases']/calendar[position() <= ceiling($topLevelCalCount div 2)]" mode="calTree"/>1443 <xsl:apply-templates select="calendar/calendar[calType != 5 and calType != 6 and calType != 2 and calType != 3 and position() <= ceiling($topLevelCalCount div 2)]" mode="calTree"/> 1444 1444 </ul> 1445 1445 </td> 1446 1446 <td> 1447 1447 <ul class="calendarTree"> 1448 <xsl:apply-templates select="calendar/calendar[ name='aliases']/calendar[position() > ceiling($topLevelCalCount div 2)]" mode="calTree"/>1448 <xsl:apply-templates select="calendar/calendar[calType != 5 and calType != 6 and calType != 2 and calType != 3 and position() > ceiling($topLevelCalCount div 2)]" mode="calTree"/> 1449 1449 </ul> 1450 1450 </td>
