Changeset 220
- Timestamp:
- 02/27/06 15:43:04
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/default.xsl
r214 r220 519 519 <th class="fieldname">Event:</th> 520 520 <th class="fieldval"> 521 <xsl:if test="status='CANCELLED'">CANCELLED: </xsl:if> 521 522 <xsl:choose> 522 523 <xsl:when test="link != ''"> … … 738 739 <xsl:variable name="descriptionClass"> 739 740 <xsl:choose> 740 <xsl:when test=" priority='cancelled'">description cancelled</xsl:when>741 <xsl:when test="status='CANCELLED'">description cancelled</xsl:when> 741 742 <xsl:otherwise>description</xsl:otherwise> 742 743 </xsl:choose> 743 744 </xsl:variable> 744 745 <td class="{$descriptionClass}"> 746 <xsl:if test="status='CANCELLED'"><strong>CANCELLED: </strong></xsl:if> 745 747 <xsl:choose> 746 748 <xsl:when test="/bedework/appvar[key='summaryMode']/value='details'"> 747 749 <a href="{$eventView}?subid={$subscriptionId}&calid={$calendarId}&guid={$guid}&recurrenceId={$recurrenceId}"> 748 <strong><xsl:value-of select="summary"/>: </strong> 750 <strong> 751 <xsl:value-of select="summary"/>: 752 </strong> 749 753 <xsl:value-of select="description"/>  750 754 <em> … … 865 869 <xsl:choose> 866 870 <!-- Special styles for the month grid --> 867 <xsl:when test="status=' cancelled'">eventCancelled</xsl:when>871 <xsl:when test="status='CANCELLED'">eventCancelled</xsl:when> 868 872 <xsl:when test="calendar/name='Holidays'">holiday</xsl:when> 869 873 <!-- Alternating colors for all standard events --> … … 874 878 <li> 875 879 <a href="{$eventView}?subid={$subscriptionId}&calid={$calendarId}&guid={$guid}&recurrenceId={$recurrenceId}" class="{$eventClass}"> 880 <xsl:if test="status='CANCELLED'">CANCELLED: </xsl:if> 876 881 <xsl:value-of select="summary"/> 877 882 <xsl:variable name="eventTipClass"> trunk/calendar3/webclient/war/docs/emitEvent.jsp
r200 r220 131 131 </logic:iterate> 132 132 </logic:present> 133 </categories> 133 </categories><%-- 134 Value: string, only one of CONFIRMED, TENTATIVE, or CANCELLED --%> 135 <status><bean:write name="event" property="status" /></status> 134 136 <logic:present name="detailView" scope="request"><%-- 135 137 Only output these attributes if we are in detailed mode... --%>
