Changeset 1524

Show
Ignore:
Timestamp:
08/17/07 12:02:47
Author:
douglm
Message:

Show "all" access instead of "other"

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • releases/bedework-3.4/deployment/webadmin/webapp/resources/default/default/default.xsl

    r1515 r1524  
    38333833              <input type="radio" value="auth" name="whoType"/> authenticated<br/> 
    38343834              <input type="radio" value="unauth" name="whoType"/> unauthenticated<br/> 
    3835               <input type="radio" value="other" name="whoType"/> other users 
     3835              <input type="radio" value="all" name="whoType"/> all users 
    38363836            </p> 
    38373837          </div> 
     
    41284128            <xsl:when test="$who='authenticated'">auth</xsl:when> 
    41294129            <xsl:when test="$who='unauthenticated'">unauth</xsl:when> 
     4130            <xsl:when test="$who='all'">all</xsl:when> 
    41304131            <xsl:when test="invert/principal/property/owner">other</xsl:when> 
    41314132            <xsl:when test="principal/property"><xsl:value-of select="name(principal/property/*)"/></xsl:when> 
  • releases/bedework-3.4/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl

    r1517 r1524  
    73067306              <input type="radio" value="auth" name="whoType"/> authenticated<br/> 
    73077307              <input type="radio" value="unauth" name="whoType"/> unauthenticated<br/> 
    7308               <input type="radio" value="other" name="whoType"/> other users 
     7308              <input type="radio" value="all" name="whoType"/> all users 
    73097309            </p> 
    73107310          </div> 
     
    76177617              <xsl:when test="$who='authenticated'">auth</xsl:when> 
    76187618              <xsl:when test="$who='unauthenticated'">unauth</xsl:when> 
     7619              <xsl:when test="$who='all'">all</xsl:when> 
    76197620              <xsl:when test="invert/principal/property/owner">other</xsl:when> 
    76207621              <xsl:when test="principal/property"><xsl:value-of select="name(principal/property/*)"/></xsl:when> 
     
    76797680                </xsl:when> 
    76807681                <xsl:otherwise> 
    7681                   local 
     7682                  Not inherited 
    76827683                </xsl:otherwise> 
    76837684              </xsl:choose> 
     
    79737974        <xsl:when test="$who='authenticated'">auth</xsl:when> 
    79747975        <xsl:when test="$who='unauthenticated'">unauth</xsl:when> 
     7976        <xsl:when test="$who='all'">all</xsl:when> 
    79757977        <xsl:when test="invert/principal/property/owner">other</xsl:when> 
    79767978        <xsl:when test="principal/property"><xsl:value-of select="name(principal/property/*)"/></xsl:when> 
     
    79907992   --><xsl:choose> 
    79917993       <xsl:when test="inherited"><xsl:value-of select="inherited/href"/></xsl:when> 
    7992        <xsl:otherwise>local</xsl:otherwise> 
     7994       <xsl:otherwise></xsl:otherwise> 
    79937995     </xsl:choose><!-- 
    79947996  --></xsl:variable><!-- 
  • releases/bedework-3.4/deployment/webuser/webapp/resources/demoskins/resources/bedeworkAccess.js

    r1501 r1524  
    5252var otherStr = "other"; 
    5353var grantStr = "grant"; 
     54var allStr = "all"; 
    5455 
    5556var deleteStr = "remove"; 
     
    296297      (whoType == "unauth") || 
    297298      (whoType == "owner") || 
     299      (whoType == "all") || 
    298300      (whoType == "other")) { 
    299301    // Don't set who 
     
    350352    } 
    351353 
     354    if (whoType == "all") { 
     355      return allStr; 
     356    } 
     357 
    352358    return "***************" + whoType; 
    353359  } 
     
    368374    } else if (whoType == "unauth") { 
    369375      res += "      <D:unauthenticated/>\n"; 
     376    } else if (whoType == "all") { 
     377      res += "      <D:all/>\n"; 
    370378    } else if (whoType == "owner") { 
    371379      res += "    <D:property><D:owner/></D:property>\n";