Changeset 92
- Timestamp:
- 02/06/06 15:07:18
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/default.xsl
r90 r92 339 339 <xsl:variable name="dateRangeStyle"> 340 340 <xsl:choose> 341 <xsl:when test="s tart/date= parent::day/date">341 <xsl:when test="substring(start/utcdate,1,8) = parent::day/date"> 342 342 <xsl:choose> 343 <xsl:when test=" (start/hour24 = '0') and (end/hour24 = '0')">dateRangeCrossDay</xsl:when>343 <xsl:when test="start/allday = 'true'">dateRangeCrossDay</xsl:when> 344 344 <xsl:when test="start/hour24 < 6">dateRangeEarlyMorning</xsl:when> 345 345 <xsl:when test="start/hour24 < 12">dateRangeMorning</xsl:when> … … 353 353 <td class="{$dateRangeStyle}" style="text-align:right;"> 354 354 <xsl:choose> 355 <xsl:when test="start/allday = 'true'"> 356 <a href="{$eventView}?subid={$subscriptionId}&guid={$guid}&recurrenceId={$recurrenceId}"> 357 All day 358 </a> 359 </xsl:when> 355 360 <xsl:when test="start/time!=''"> 356 361 <a href="{$eventView}?subid={$subscriptionId}&guid={$guid}&recurrenceId={$recurrenceId}"> … … 366 371 </a> 367 372 </xsl:when> 368 <xsl:otherwise>369 <a href="{$eventView}?subid={$subscriptionId}&guid={$guid}&recurrenceId={$recurrenceId}">370 All day371 </a>372 </xsl:otherwise>373 373 </xsl:choose> 374 374 </td> 375 375 <td class="{$dateRangeStyle}" style="text-align:center;padding:0em;"> 376 376 <xsl:choose> 377 <xsl:when test="end/allday = 'true'"><!-- do nothing --> 378 </xsl:when> 377 379 <xsl:when test="end/time!=''"> 378 380 <a href="{$eventView}?subid={$subscriptionId}&guid={$guid}&recurrenceId={$recurrenceId}">-</a> … … 405 407 <xsl:variable name="descriptionClass"> 406 408 <xsl:choose> 407 <xsl:when test=" contains(summary,'CANCELLED')">description cancelled</xsl:when>409 <xsl:when test="priority='cancelled'">description cancelled</xsl:when> 408 410 <xsl:otherwise>description</xsl:otherwise> 409 411 </xsl:choose> trunk/calendar3/webclient/war/docs/calendars.jsp
r2 r92 7 7 <%-- List of all calendars and subcalendars. --%> 8 8 <calendars> 9 <bean:define id="calendar" name="calForm" property="publicCalendars" 10 toScope="session" /> 11 <%@include file="/docs/emitCalendar.jsp"%> 12 13 <!-- old 2.3 code: keep for a short while 9 14 <logic:present name="calForm" property="publicCalendars" > 10 15 <bean:define id="calendars" name="calForm" property="publicCalendars" /> … … 14 19 </logic:iterate> 15 20 </logic:present> 21 --> 16 22 </calendars> 17 23
