Changeset 2491
- Timestamp:
- 12/16/09 21:57:50
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/feeder/webapp/resources/demoskins/MainCampus/default/default/grid-html.xsl
r2490 r2491 1021 1021 <li> 1022 1022 <!-- <a href="{$eventView}&calPath={$calPath}&guid={$guid}&recurrenceId={$recurrenceId}" class="{$eventClass} {$subscriptionClass}"> --> 1023 <a href="{$bwCacheHostUrl}/v1.0/event/list-html/{$recurrenceId}/{$guid}" class="{$eventClass} {$subscriptionClass}"> 1024 <xsl:if test="status='CANCELLED'"><xsl:copy-of select="$bwStr-EvCG-CanceledColon"/><xsl:text> </xsl:text></xsl:if> 1023 <a href="{$bwCacheHostUrl}/v1.0/event/list-html/{$recurrenceId}/{$guid}" class="{$eventClass} {$subscriptionClass}"> 1024 <xsl:if test="status='CANCELLED'"><xsl:copy-of select="$bwStr-EvCG-CanceledColon"/><xsl:text> </xsl:text></xsl:if> 1025 <xsl:choose> 1026 <xsl:when test="start/shortdate != ../shortdate"> 1027 <xsl:copy-of select="$bwStr-EvCG-Cont"/> 1028 </xsl:when> 1029 <xsl:when test="start/allday = 'false'"> 1030 <xsl:value-of select="start/time"/>: 1031 </xsl:when> 1032 <xsl:otherwise> 1033 <xsl:copy-of select="$bwStr-EvCG-AllDayColon"/> 1034 </xsl:otherwise> 1035 </xsl:choose> 1036 <xsl:value-of select="summary"/> 1037 <xsl:variable name="eventTipClass"> 1025 1038 <xsl:choose> 1026 <xsl:when test="start/shortdate != ../shortdate"> 1027 <xsl:copy-of select="$bwStr-EvCG-Cont"/> 1028 </xsl:when> 1029 <xsl:when test="start/allday = 'false'"> 1030 <xsl:value-of select="start/time"/>: 1031 </xsl:when> 1039 <xsl:when test="$dayPos > 5"> 1040 eventTipReverse 1041 </xsl:when> 1032 1042 <xsl:otherwise> 1033 <xsl:copy-of select="$bwStr-EvCG-AllDayColon"/> 1034 </xsl:otherwise>1043 eventTip 1044 </xsl:otherwise> 1035 1045 </xsl:choose> 1036 <xsl:value-of select="summary"/> 1037 <xsl:variable name="eventTipClass"> 1038 <xsl:choose> 1039 <xsl:when test="$dayPos > 5">eventTipReverse</xsl:when> 1040 <xsl:otherwise>eventTip</xsl:otherwise> 1041 </xsl:choose> 1042 </xsl:variable> 1046 </xsl:variable> 1043 1047 <span class="{$eventTipClass}"> 1044 1048 <xsl:if test="status='CANCELLED'"><span class="eventTipStatusCancelled"><xsl:copy-of select="$bwStr-EvCG-CanceledColon"/></span></xsl:if> … … 1065 1069 </xsl:if> 1066 1070 </xsl:otherwise> 1067 </xsl:choose><br/> 1071 </xsl:choose> 1072 <br/> 1068 1073 <xsl:if test="location/address"> 1069 1074 <xsl:copy-of select="$bwStr-EvCG-Location"/><xsl:text> </xsl:text><xsl:value-of select="location/address"/><br/> … … 1238 1243 <xsl:choose> 1239 1244 <xsl:when test="$group = 'all'"> 1240 <xsl:apply-templates select="event[categories/category/id = $catid] ">1245 <xsl:apply-templates select="event[categories/category/id = $catid] mode="calendarLayout""> 1241 1246 <xsl:with-param name="dayPos" select="$dayPos"/> 1242 1247 </xsl:apply-templates> 1243 1248 </xsl:when> 1244 1249 <xsl:otherwise> 1245 <xsl:apply-templates select="event[categories/category/id = $catid] ">1250 <xsl:apply-templates select="event[categories/category/id = $catid] mode="calendarLayout""> 1246 1251 <xsl:with-param name="dayPos" select="$dayPos"/> 1247 1252 </xsl:apply-templates> … … 1260 1265 <xsl:choose> 1261 1266 <xsl:when test="$list = 'all'"> 1262 <xsl:apply-templates select="event" >1267 <xsl:apply-templates select="event" mode="calendarLayout"> 1263 1268 <xsl:with-param name="dayPos" select="$dayPos"/> 1264 1269 </xsl:apply-templates>
