Changeset 1416

Show
Ignore:
Timestamp:
06/12/07 12:09:38
Author:
johnsa
Message:

admin client: provide some link text for events lacking summaries (titles) in the edit event list

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/deployment/webadmin/webapp/resources/default/default/default.xsl

    r1413 r1416  
    738738          <td> 
    739739            <a href="{$event-fetchForUpdate}&amp;subid={$subscriptionId}&amp;calPath={$calPath}&amp;guid={$guid}&amp;recurrenceId={$recurrenceId}"> 
    740               <xsl:value-of select="summary"/> 
     740              <xsl:choose> 
     741                <xsl:when test="summary != ''"> 
     742                  <xsl:value-of select="summary"/> 
     743                </xsl:when> 
     744                <xsl:otherwise> 
     745                  <em>no title</em> 
     746                </xsl:otherwise> 
     747              </xsl:choose> 
    741748            </a> 
    742749          </td>