You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by gr...@locus.apache.org on 2000/10/17 22:17:54 UTC

cvs commit: xml-cocoon/src/org/apache/cocoon/processor/xsp/library/java response.xsl

greenrd     00/10/17 13:17:54

  Modified:    .        changes.xml
               src/org/apache/cocoon/processor/xsp/library/java
                        response.xsl
  Log:
  fixed some stupid bugs in response taglib
  
  Revision  Changes    Path
  1.127     +4 -1      xml-cocoon/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/changes.xml,v
  retrieving revision 1.126
  retrieving revision 1.127
  diff -u -r1.126 -r1.127
  --- changes.xml	2000/10/17 04:36:26	1.126
  +++ changes.xml	2000/10/17 20:17:52	1.127
  @@ -4,7 +4,7 @@
   
   <!--
     History of Cocoon changes   
  -  $Id: changes.xml,v 1.126 2000/10/17 04:36:26 balld Exp $ 
  +  $Id: changes.xml,v 1.127 2000/10/17 20:17:52 greenrd Exp $ 
   -->
   
   <changes title="History of Changes">
  @@ -17,6 +17,9 @@
     </devs>
   
    <release version="@version@" date="@date@">
  +  <action dev="RDG" type="fix" due-to="Reichel Volker" due-to-email="Volker.Reichel@freenet.de">
  +   Fixed some stupid bugs in response taglib
  +  </action>
     <action dev="DB" type="update">
      added code to esql logicsheet to deal with queries that return an update count
     </action>
  
  
  
  1.12      +4 -4      xml-cocoon/src/org/apache/cocoon/processor/xsp/library/java/response.xsl
  
  Index: response.xsl
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/processor/xsp/library/java/response.xsl,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- response.xsl	2000/09/17 14:20:31	1.11
  +++ response.xsl	2000/10/17 20:17:53	1.12
  @@ -73,7 +73,7 @@
       <xsp:expr>
         <xsl:choose>
           <xsl:when test="$as = 'node'">
  -          XSPRequestLibrary.getCharacterEncoding(response, document)
  +          XSPResponseLibrary.getCharacterEncoding(response, document)
           </xsl:when>
           <xsl:when test="$as = 'string'">
             response.getCharacterEncoding()
  @@ -93,7 +93,7 @@
       <xsp:expr>
         <xsl:choose>
           <xsl:when test="$as = 'node'">
  -          XSPRequestLibrary.getLocale(response, document)
  +          XSPResponseLibrary.getLocale(response, document)
           </xsl:when>
           <xsl:when test="$as = 'string'">
             response.getLocale(response).toString()
  @@ -226,7 +226,7 @@
       </xsp:logic>
     </xsl:template>
   
  -  <xsl:template match="response:add-header">
  +  <xsl:template match="response:add-int-header">
       <xsl:variable name="name">
         <xsl:call-template name="value-for-name"/>
       </xsl:variable>
  @@ -457,7 +457,7 @@
       </xsp:logic>
     </xsl:template>
   
  -  <xsl:template match="response:set-header">
  +  <xsl:template match="response:set-int-header">
       <xsl:variable name="name">
         <xsl:call-template name="value-for-name"/>
       </xsl:variable>