Changeset 1285

Show
Ignore:
Timestamp:
02/12/07 02:06:12
Author:
johnsa
Message:

user client:

clean (a little) the freebusy access form
some style changes to current access listing

Files:

Legend:

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

    r1284 r1285  
    690690table.scheduling td { 
    691691  white-space: nowrap; 
     692} 
     693table.scheduling td.acls { 
     694  white-space: normal; 
     695} 
     696table.scheduling .grant { 
     697  color: #080; 
     698  background-color: inherit; 
     699} 
     700table.scheduling .deny { 
     701  color: #800; 
     702  background-color: inherit; 
    692703} 
    693704table#manage td { 
  • trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl

    r1284 r1285  
    34683468          <input type="text" name="who" size="20"/> 
    34693469          <input type="radio" value="user" name="whoType" checked="checked"/> user 
    3470           <input type="radio" value="group" name="whoType"/> group 
    3471         </p> 
    3472         <p>OR</p> 
    3473         <p> 
    3474           <input type="radio" value="auth" name="whoType"/> authenticated<br/> 
    3475           <input type="radio" value="other" name="whoType"/> other users 
    3476         </p> 
    3477         <p> 
     3470          <input type="radio" value="group" name="whoType"/> group<br/> 
     3471          OR 
     3472          <input type="radio" value="auth" name="whoType"/> authenticated 
     3473          <input type="radio" value="other" name="whoType"/> other users<br/> 
    34783474          <em>note: this will set a user or group's access to 
    34793475              "read-free-busy" and any 
     
    67126708            </xsl:choose> 
    67136709          </td> 
    6714           <td
     6710          <td class="acls"
    67156711            <xsl:if test="grant"> 
    67166712              grant: 
    6717               <xsl:for-each select="grant/*"> 
    6718                 <xsl:value-of select="name(.)"/> 
    6719                 <xsl:if test="position() != last()">, </xsl:if> 
    6720               </xsl:for-each><br/> 
     6713              <span class="grant"> 
     6714                <xsl:for-each select="grant/*"> 
     6715                  <xsl:value-of select="name(.)"/> 
     6716                  <xsl:if test="position() != last()">, </xsl:if> 
     6717                </xsl:for-each> 
     6718              </span><br/> 
    67216719            </xsl:if> 
    67226720            <xsl:if test="deny"> 
    67236721              deny: 
    6724               <xsl:for-each select="deny/*"> 
    6725                 <xsl:value-of select="name(.)"/> 
    6726                 <xsl:if test="position() != last()">, </xsl:if> 
    6727               </xsl:for-each> 
     6722              <span class="deny"> 
     6723                <xsl:for-each select="deny/*"> 
     6724                  <xsl:value-of select="name(.)"/> 
     6725                  <xsl:if test="position() != last()">, </xsl:if> 
     6726                </xsl:for-each> 
     6727              </span> 
    67286728            </xsl:if> 
    67296729          </td>