Changeset 2035
- Timestamp:
- 01/26/09 15:10:17
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webadmin/webapp/resources/default/default/default.css
r2032 r2035 1000 1000 margin: 0 25px 0 -35px; 1001 1001 } 1002 .aliasTree li { 1003 list-style: none !important; 1004 } 1005 .aliasTree li ul { 1006 margin-left: 10px; 1007 padding-left: 10px; 1008 } 1002 1009 #bwPublicCalDisplay { 1003 1010 margin: 1em 0 -1em 1em; trunk/deployment/webadmin/webapp/resources/default/default/default.xsl
r2034 r2035 2204 2204 </td> 2205 2205 <td> 2206 <ul class=" calendarTree">2206 <ul class="aliasTree"> 2207 2207 <xsl:apply-templates select="form/subscriptions/calsuite/calendars/calendar" mode="showEventFormAliases"> 2208 2208 <xsl:with-param name="root">true</xsl:with-param> … … 2377 2377 <xsl:param name="root">false</xsl:param> 2378 2378 <li> 2379 <xsl:attribute name="class"> 2380 <xsl:choose> 2381 <xsl:when test="calType = 0">folder</xsl:when> 2382 <xsl:otherwise>calendar</xsl:otherwise> 2383 </xsl:choose> 2384 </xsl:attribute> 2385 2386 <xsl:choose> 2387 <xsl:when test="$root = 'true'"> 2388 <!-- treat the root calendar as the root of calendar suite; --> 2389 <strong> 2390 <xsl:value-of select="/bedework/currentCalSuite/name"/> 2391 </strong> 2392 </xsl:when> 2393 <xsl:otherwise> 2394 <input type="checkbox" name="alias"> 2395 <xsl:attribute name="value"><xsl:value-of select="path"/></xsl:attribute> 2396 </input> 2397 <xsl:value-of select="name"/> 2398 </xsl:otherwise> 2399 </xsl:choose> 2379 <xsl:if test="$root != 'true'"> 2380 <!-- hide the root calendar. --> 2381 <input type="checkbox" name="alias"> 2382 <xsl:attribute name="value"><xsl:value-of select="path"/></xsl:attribute> 2383 </input> 2384 <xsl:value-of select="name"/> 2385 </xsl:if> 2400 2386 2401 2387 <xsl:if test="calendar[isSubscription = 'true' or calType = '0']">
