You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2004/06/01 16:29:23 UTC

cvs commit: cocoon-lenya/src/webapp/lenya/xslt/admin/groups overview.xsl

andreas     2004/06/01 07:29:23

  Modified:    src/webapp/lenya/xslt/navigation sitetree2nav.xsl
               src/webapp/lenya/xslt/admin/ipranges overview.xsl
                        ipranges.xsl
               src/webapp/lenya/xslt/admin/users users.xsl overview.xsl
               src/webapp/lenya/xslt/admin/groups overview.xsl
  Log:
  fixed direct user/group/iprange links in the admin area
  
  Revision  Changes    Path
  1.23      +2 -2      cocoon-lenya/src/webapp/lenya/xslt/navigation/sitetree2nav.xsl
  
  Index: sitetree2nav.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-lenya/src/webapp/lenya/xslt/navigation/sitetree2nav.xsl,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- sitetree2nav.xsl	17 May 2004 09:43:46 -0000	1.22
  +++ sitetree2nav.xsl	1 Jun 2004 14:29:22 -0000	1.23
  @@ -26,11 +26,11 @@
       >
   
   <xsl:param name="url"/>
  -<xsl:param name="root"/>
   <xsl:param name="chosenlanguage"/>
   <xsl:param name="defaultlanguage"/>
       
   <xsl:variable name="path-to-context"><xsl:call-template name="create-path-to-context"/></xsl:variable>
  +<xsl:variable name="root" select="$path-to-context"/>
     
   <xsl:template name="create-path-to-context">
     <xsl:param name="local-url" select="$url"/>
  
  
  
  1.7       +2 -2      cocoon-lenya/src/webapp/lenya/xslt/admin/ipranges/overview.xsl
  
  Index: overview.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-lenya/src/webapp/lenya/xslt/admin/ipranges/overview.xsl,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- overview.xsl	28 Apr 2004 15:00:06 -0000	1.6
  +++ overview.xsl	1 Jun 2004 14:29:22 -0000	1.7
  @@ -138,7 +138,7 @@
     <xsl:template match="group">
       <xsl:if test="position() &gt; 1"><br/></xsl:if>
       <span style="white-space: nowrap">
  -    <a href="../../groups/{@id}/index.html"><xsl:value-of select="@id"/></a>
  +    <a href="../../groups/{@id}.html"><xsl:value-of select="@id"/></a>
       <xsl:if test="normalize-space(.) != ''">
         <em>(<xsl:value-of select="."/>)</em>
       </xsl:if>
  
  
  
  1.5       +2 -2      cocoon-lenya/src/webapp/lenya/xslt/admin/ipranges/ipranges.xsl
  
  Index: ipranges.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-lenya/src/webapp/lenya/xslt/admin/ipranges/ipranges.xsl,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ipranges.xsl	28 Apr 2004 15:00:06 -0000	1.4
  +++ ipranges.xsl	1 Jun 2004 14:29:22 -0000	1.5
  @@ -90,7 +90,7 @@
     
     
     <xsl:template match="group">
  -    <a href="../groups/{@id}/index.html"><xsl:value-of select="@id"/></a>
  +    <a href="../groups/{@id}.html"><xsl:value-of select="@id"/></a>
       <xsl:if test="position() != last()">, <xsl:text/>
       </xsl:if>
     </xsl:template>
  
  
  
  1.11      +2 -2      cocoon-lenya/src/webapp/lenya/xslt/admin/users/users.xsl
  
  Index: users.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-lenya/src/webapp/lenya/xslt/admin/users/users.xsl,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- users.xsl	30 Apr 2004 16:34:23 -0000	1.10
  +++ users.xsl	1 Jun 2004 14:29:23 -0000	1.11
  @@ -94,7 +94,7 @@
     
     
     <xsl:template match="group">
  -    <a href="groups/{@id}/index.html"><xsl:value-of select="@id"/></a>
  +    <a href="groups/{@id}.html"><xsl:value-of select="@id"/></a>
       <xsl:if test="position() != last()">, <xsl:text/>
       </xsl:if>
     </xsl:template>
  
  
  
  1.11      +2 -2      cocoon-lenya/src/webapp/lenya/xslt/admin/users/overview.xsl
  
  Index: overview.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-lenya/src/webapp/lenya/xslt/admin/users/overview.xsl,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- overview.xsl	28 Apr 2004 15:00:05 -0000	1.10
  +++ overview.xsl	1 Jun 2004 14:29:23 -0000	1.11
  @@ -133,7 +133,7 @@
     <xsl:template match="group">
       <xsl:if test="position() &gt; 1"><br/></xsl:if>
       <span style="white-space: nowrap">
  -    <a href="../../groups/{@id}/index.html"><xsl:value-of select="@id"/></a>
  +    <a href="../groups/{@id}.html"><xsl:value-of select="@id"/></a>
       <xsl:if test="normalize-space(.) != ''">
         &#160;(<xsl:value-of select="."/>)
       </xsl:if>
  
  
  
  1.10      +2 -2      cocoon-lenya/src/webapp/lenya/xslt/admin/groups/overview.xsl
  
  Index: overview.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-lenya/src/webapp/lenya/xslt/admin/groups/overview.xsl,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- overview.xsl	28 Apr 2004 15:00:08 -0000	1.9
  +++ overview.xsl	1 Jun 2004 14:29:23 -0000	1.10
  @@ -136,7 +136,7 @@
     
     <xsl:template match="member">
       <xsl:if test="position() &gt; 1"><br/></xsl:if>
  -    <a href="../../{local-name(..)}/{@id}/index.html"><xsl:value-of select="@id"/></a>
  +    <a href="../../{local-name(..)}/{@id}.html"><xsl:value-of select="@id"/></a>
       <xsl:if test="normalize-space(.) != ''">
       	<xsl:text>&#160;</xsl:text>(<xsl:value-of select="translate(., ' ', '&#160;')"/>)
       </xsl:if>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-cvs-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-cvs-help@cocoon.apache.org