Changeset 1081
- Timestamp:
- 11/11/06 07:46:21
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webadmin/webapp/resources/default/default/default.css
r1080 r1081 405 405 margin: 0 1em; 406 406 } 407 #sharingBox table td, 408 #sharingBox table th { 409 white-space: nowrap; 410 } 407 411 #shareForm { 408 412 margin: 1em 0; trunk/deployment/webadmin/webapp/resources/default/default/default.xsl
r1080 r1081 9 9 standalone="yes" 10 10 omit-xml-declaration="yes"/> 11 <xsl:strip-space elements="*"/> 11 12 12 13 <!-- ======================================== --> … … 2095 2096 <th class="commonHeader">Current access:</th> 2096 2097 <th class="commonHeader">Inherited from:</th> 2098 <!--<th class="commonHeader">Reset to default:</th>--> 2097 2099 </tr> 2098 2100 <xsl:for-each select="acl/ace"> 2101 <xsl:variable name="who"> 2102 <xsl:choose> 2103 <xsl:when test="invert"> 2104 <xsl:choose> 2105 <xsl:when test="invert/principal/href"><xsl:value-of select="invert/principal/href"/></xsl:when> 2106 <xsl:when test="invert/principal/property"><xsl:value-of select="name(invert/principal/property/*)"/></xsl:when> 2107 <xsl:otherwise><xsl:value-of select="name(invert/principal/*)"/></xsl:otherwise> 2108 </xsl:choose> 2109 </xsl:when> 2110 <xsl:otherwise> 2111 <xsl:choose> 2112 <xsl:when test="principal/href"><xsl:value-of select="principal/href"/></xsl:when> 2113 <xsl:when test="principal/property"><xsl:value-of select="name(principal/property/*)"/></xsl:when> 2114 <xsl:otherwise><xsl:value-of select="name(principal/*)"/></xsl:otherwise> 2115 </xsl:choose> 2116 </xsl:otherwise> 2117 </xsl:choose> 2118 </xsl:variable> 2099 2119 <tr> 2100 2120 <th class="thin"> 2101 2121 <xsl:choose> 2102 2122 <xsl:when test="invert"> 2103 <em>Deny to 2104 <xsl:choose> 2105 <xsl:when test="invert/principal/href"> 2106 <xsl:value-of select="invert/principal/href"/> 2107 </xsl:when> 2108 <xsl:when test="invert/principal/property"> 2109 <xsl:value-of select="name(invert/principal/property/*)"/> 2110 </xsl:when> 2111 <xsl:otherwise> 2112 <xsl:value-of select="name(invert/principal/*)"/> 2113 </xsl:otherwise> 2114 </xsl:choose> 2115 </em> 2123 <em>Deny to <xsl:value-of select="$who"/></em> 2116 2124 </xsl:when> 2117 2125 <xsl:otherwise> 2118 <xsl:choose> 2119 <xsl:when test="principal/href"> 2120 <xsl:value-of select="principal/href"/> 2121 </xsl:when> 2122 <xsl:when test="principal/property"> 2123 <xsl:value-of select="name(principal/property/*)"/> 2124 </xsl:when> 2125 <xsl:otherwise> 2126 <xsl:value-of select="name(principal/*)"/> 2127 </xsl:otherwise> 2128 </xsl:choose> 2126 <xsl:value-of select="$who"/> 2129 2127 </xsl:otherwise> 2130 2128 </xsl:choose> … … 2135 2133 </xsl:for-each> 2136 2134 <xsl:for-each select="deny/node()"> 2137 deny-<xsl:value-of select="name(.)"/>   2135 deny-<xsl:value-of select="name(.)"/> 2136    2138 2137 </xsl:for-each> 2139 2138 </td> … … 2141 2140 <xsl:value-of select="inherited/href"/> 2142 2141 </td> 2142 <!--<td class="center"> 2143 <a href="{$calendar-setAccess}&calPath={$calPath}&how=default&who={$who}"> 2144 reset to default 2145 </a> 2146 </td>--> 2143 2147 </tr> 2144 2148 </xsl:for-each> … … 2148 2152 <table cellpadding="0" id="shareFormTable" class="common"> 2149 2153 <tr> 2150 <th colspan="2" class="commonHeader"> Add:</th>2154 <th colspan="2" class="commonHeader">Set access:</th> 2151 2155 </tr> 2152 2156 <tr> … … 2162 2166 <input type="radio" value="other" name="whoType"/> other users<br/> 2163 2167 <input type="radio" value="owner" name="whoType"/> owner 2168 </p> 2169 <p class="padTop"> 2170 <input type="checkbox" value="yes" name="notWho"/> invert (deny to) 2164 2171 </p> 2165 2172 </td> … … 2238 2245 <input type="radio" value="N" name="how"/> 2239 2246 <strong>None</strong> 2247 </li> 2248 <li class="padTop"> 2249 <input type="radio" value="default" name="how"/> 2250 <strong>Restore default access</strong> 2240 2251 </li> 2241 2252 </ul>
