Changeset 1985

Show
Ignore:
Timestamp:
12/09/08 00:58:27
Author:
johnsa
Message:

beginning to add color to calendars

Files:

Legend:

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

    r1984 r1985  
    46294629          <th>Color:</th> 
    46304630          <td> 
    4631             <input type="text" name="calendar.color" value="" size="40"/> 
     4631            <select name="calendar.color"> 
     4632              <option value="">default</option> 
     4633              <xsl:for-each select="document('subColors.xml')/subscriptionColors/color"> 
     4634                <xsl:variable name="subColor" select="@rgb"/> 
     4635                <xsl:variable name="subColorClass" select="."/> 
     4636                <option value="{$subColor}" class="{$subColorClass}"> 
     4637                  <xsl:value-of select="@name"/> 
     4638                </option> 
     4639              </xsl:for-each> 
     4640            </select> 
    46324641          </td> 
    46334642        </tr>