Changeset 222
- Timestamp:
- 02/27/06 17:19:43
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webpublic/webapp/resources/demoskins/default/default/default.xsl
r221 r222 102 102 </div> 103 103 </xsl:if> 104 <!-- <xsl:call-template name="alerts"/> -->105 104 <xsl:call-template name="tabs"/> 106 105 <xsl:choose> … … 188 187 <td width="50" class="imgCell"><img alt="*" src="{$resourcesRoot}/images/spacer.gif" width="50" height="14" border="0"/></td> 189 188 <td align="center" width="100%"> 190 <xsl:value-of select="/bedework/firstday/longdate"/> 191 <xsl:if test="/bedework/periodname!='Day'"> 192 - 193 <xsl:value-of select="/bedework/lastday/longdate"/> 194 </xsl:if> 189 <xsl:choose> 190 <xsl:when test="/bedework/page='event'"> 191 Event Information 192 </xsl:when> 193 <xsl:when test="/bedework/page='showSysStats' or 194 /bedework/page='calendars'"> 195   196 </xsl:when> 197 <xsl:otherwise> 198 <xsl:value-of select="/bedework/firstday/longdate"/> 199 <xsl:if test="/bedework/periodname!='Day'"> 200 - 201 <xsl:value-of select="/bedework/lastday/longdate"/> 202 </xsl:if> 203 </xsl:otherwise> 204 </xsl:choose> 195 205 </td> 196 206 <td width="50" class="imgCell"> … … 293 303 </xsl:otherwise> 294 304 </xsl:choose> 295 </xsl:template>296 297 <xsl:template name="alerts">298 <table id="alertsTable">299 <tr>300 <td>301 I'm an alert302 </td>303 </tr>304 </table>305 305 </xsl:template> 306 306
