Changeset 1058

Show
Ignore:
Timestamp:
10/27/06 15:25:10
Author:
johnsa
Message:

added start time to grid view; updated time display event tip (pop-up in calendar grid) to better reflect cross-day events

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/deployment/webpublic/webapp/resources/demoskins/MainCampus/default/default/default.xsl

    r1057 r1058  
    965965        <xsl:if test="status='CANCELLED'">CANCELLED: </xsl:if> 
    966966        <xsl:choose> 
     967          <xsl:when test="start/shortdate != ../shortdate"> 
     968            (cont) 
     969          </xsl:when> 
    967970          <xsl:when test="start/allday = 'false'"> 
    968971            <xsl:value-of select="start/time"/>: 
     
    985988          Time: 
    986989          <xsl:choose> 
    987             <xsl:when test="start/allday = 'false'"> 
    988               <xsl:value-of select="start/time"/> 
    989               <xsl:if test="start/time != end/time"> 
    990                 - <xsl:value-of select="end/time"/> 
    991               </xsl:if> 
     990            <xsl:when test="start/allday = 'true'"> 
     991              all day 
    992992            </xsl:when> 
    993993            <xsl:otherwise> 
    994               all day 
     994              <xsl:if test="start/shortdate != ../shortdate"> 
     995                <xsl:value-of select="start/month"/>/<xsl:value-of select="start/day"/> 
     996                <xsl:text> </xsl:text> 
     997              </xsl:if> 
     998              <xsl:value-of select="start/time"/> 
     999              <xsl:if test="(start/time != end/time) or (start/shortdate != end/shortdate)"> 
     1000                - 
     1001                <xsl:if test="end/shortdate != ../shortdate"> 
     1002                  <xsl:value-of select="end/month"/>/<xsl:value-of select="end/day"/> 
     1003                  <xsl:text> </xsl:text> 
     1004                </xsl:if> 
     1005                <xsl:value-of select="end/time"/> 
     1006              </xsl:if> 
    9951007            </xsl:otherwise> 
    9961008          </xsl:choose><br/>