Changeset 1523
- Timestamp:
- 08/17/07 11:46:00
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webadmin/webapp/resources/default/default/default.xsl
r1515 r1523 3833 3833 <input type="radio" value="auth" name="whoType"/> authenticated<br/> 3834 3834 <input type="radio" value="unauth" name="whoType"/> unauthenticated<br/> 3835 <input type="radio" value=" other" name="whoType"/> otherusers3835 <input type="radio" value="all" name="whoType"/> all users 3836 3836 </p> 3837 3837 </div> … … 4128 4128 <xsl:when test="$who='authenticated'">auth</xsl:when> 4129 4129 <xsl:when test="$who='unauthenticated'">unauth</xsl:when> 4130 <xsl:when test="$who='all'">all</xsl:when> 4130 4131 <xsl:when test="invert/principal/property/owner">other</xsl:when> 4131 4132 <xsl:when test="principal/property"><xsl:value-of select="name(principal/property/*)"/></xsl:when> trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r1517 r1523 7306 7306 <input type="radio" value="auth" name="whoType"/> authenticated<br/> 7307 7307 <input type="radio" value="unauth" name="whoType"/> unauthenticated<br/> 7308 <input type="radio" value=" other" name="whoType"/> otherusers7308 <input type="radio" value="all" name="whoType"/> all users 7309 7309 </p> 7310 7310 </div> … … 7617 7617 <xsl:when test="$who='authenticated'">auth</xsl:when> 7618 7618 <xsl:when test="$who='unauthenticated'">unauth</xsl:when> 7619 <xsl:when test="$who='all'">all</xsl:when> 7619 7620 <xsl:when test="invert/principal/property/owner">other</xsl:when> 7620 7621 <xsl:when test="principal/property"><xsl:value-of select="name(principal/property/*)"/></xsl:when> … … 7679 7680 </xsl:when> 7680 7681 <xsl:otherwise> 7681 local7682 Not inherited 7682 7683 </xsl:otherwise> 7683 7684 </xsl:choose> … … 7973 7974 <xsl:when test="$who='authenticated'">auth</xsl:when> 7974 7975 <xsl:when test="$who='unauthenticated'">unauth</xsl:when> 7976 <xsl:when test="$who='all'">all</xsl:when> 7975 7977 <xsl:when test="invert/principal/property/owner">other</xsl:when> 7976 7978 <xsl:when test="principal/property"><xsl:value-of select="name(principal/property/*)"/></xsl:when> … … 7990 7992 --><xsl:choose> 7991 7993 <xsl:when test="inherited"><xsl:value-of select="inherited/href"/></xsl:when> 7992 <xsl:otherwise> local</xsl:otherwise>7994 <xsl:otherwise></xsl:otherwise> 7993 7995 </xsl:choose><!-- 7994 7996 --></xsl:variable><!-- trunk/deployment/webuser/webapp/resources/demoskins/resources/bedeworkAccess.js
r1501 r1523 52 52 var otherStr = "other"; 53 53 var grantStr = "grant"; 54 var allStr = "all"; 54 55 55 56 var deleteStr = "remove"; … … 296 297 (whoType == "unauth") || 297 298 (whoType == "owner") || 299 (whoType == "all") || 298 300 (whoType == "other")) { 299 301 // Don't set who … … 350 352 } 351 353 354 if (whoType == "all") { 355 return allStr; 356 } 357 352 358 return "***************" + whoType; 353 359 } … … 368 374 } else if (whoType == "unauth") { 369 375 res += " <D:unauthenticated/>\n"; 376 } else if (whoType == "all") { 377 res += " <D:all/>\n"; 370 378 } else if (whoType == "owner") { 371 379 res += " <D:property><D:owner/></D:property>\n";
