greenrd     01/01/23 10:53:49

  Modified:    .        changes.xml
               src/org/apache/cocoon/processor/xsp/library/java request.xsl
  Log:
  fixed request:is-user-in-role
  
  Revision  Changes    Path
  1.194     +5 -2      xml-cocoon/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/changes.xml,v
  retrieving revision 1.193
  retrieving revision 1.194
  diff -u -r1.193 -r1.194
  --- changes.xml       2001/01/23 18:40:59     1.193
  +++ changes.xml       2001/01/23 18:53:36     1.194
  @@ -4,7 +4,7 @@
   
   <!--
     History of Cocoon changes   
  -  $Id: changes.xml,v 1.193 2001/01/23 18:40:59 greenrd Exp $ 
  +  $Id: changes.xml,v 1.194 2001/01/23 18:53:36 greenrd Exp $ 
   -->
   
   <changes title="History of Changes">
  @@ -18,13 +18,16 @@
     </devs>
   
    <release version="@version@" date="@date@">
  +  <action dev="RDG" type="fix" due-to="Werner Guttmann" due-to-email="[EMAIL 
PROTECTED]">
  +   Fixed syntax errors in &lt;request:is-user-in-role&gt;
  +  </action>
     <action dev="RDG" type="fix">
      response.sendRedirect no longer throws an Exception; processing is 
instead stopped inside the Cocoon
      Engine for that request, after this processor/producer returns. This is 
needed to fix a redirect problem
      with Tomcat (see below).
     </action>
     <action dev="RDG" type="fix" due-to="Steffen Stundzig" 
due-to-email="[EMAIL PROTECTED]">
  -   Fixed &lt;response:contains-header&gt;.
  +   Fixed undeclared var in &lt;response:contains-header&gt;.
     </action>
     <action dev="RDG" type="add">
      Added notes on each jar, with details of which are required, to 
Installing documentation.
  
  
  
  1.12      +2 -2      
xml-cocoon/src/org/apache/cocoon/processor/xsp/library/java/request.xsl
  
  Index: request.xsl
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon/src/org/apache/cocoon/processor/xsp/library/java/request.xsl,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- request.xsl       2000/05/08 15:02:05     1.11
  +++ request.xsl       2001/01/23 18:53:45     1.12
  @@ -979,13 +979,13 @@
           <xsl:when test="$as = 'string'">
             String.valueOf(
               request.isUserInRole(
  -              String.valueOf(<xsl:copy-of select="$role"/>),
  +              String.valueOf(<xsl:copy-of select="$role"/>)
               )
             )
           </xsl:when>
           <xsl:when test="$as = 'boolean'">
             request.isUserInRole(
  -            String.valueOf(<xsl:copy-of select="$role"/>),
  +            String.valueOf(<xsl:copy-of select="$role"/>)
             )
           </xsl:when>
         </xsl:choose>
  
  
  

Reply via email to