bloritsch    01/06/14 08:17:14

  Modified:    .        changes.xml
               src/org/apache/cocoon/components/language/markup/xsp
                        XSPRequestHelper.java
  Log:
  Bug fix for BUG 2172
  
  Revision  Changes    Path
  1.8       +5 -1      xml-cocoon2/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/changes.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- changes.xml       2001/06/14 15:10:58     1.7
  +++ changes.xml       2001/06/14 15:17:09     1.8
  @@ -4,7 +4,7 @@
   
   <!--
     History of Cocoon changes
  -  $Id: changes.xml,v 1.7 2001/06/14 15:10:58 bloritsch Exp $
  +  $Id: changes.xml,v 1.8 2001/06/14 15:17:09 bloritsch Exp $
   -->
   
   <changes title="History of Changes">
  @@ -24,6 +24,10 @@
    </devs>
   
    <release version="@version@" date="@date@">
  +  <action dev="BL" type="fix" bug="2172">
  +    Fixed typo that created an element &lt;xsp-request:get-user/&gt;
  +    instead of &lt;xsp-request:get-host/&gt; in XSPRequestHelper.
  +  </action>
     <action dev="BL" type="fix" bug="2166">
       Made sure the _static_ classes did not inherit from each other,
       and made all calls to XSPObjectHelper that handled XML elements
  
  
  
  1.7       +2 -2      
xml-cocoon2/src/org/apache/cocoon/components/language/markup/xsp/XSPRequestHelper.java
  
  Index: XSPRequestHelper.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon2/src/org/apache/cocoon/components/language/markup/xsp/XSPRequestHelper.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XSPRequestHelper.java     2001/06/14 15:11:05     1.6
  +++ XSPRequestHelper.java     2001/06/14 15:17:13     1.7
  @@ -22,7 +22,7 @@
    * The <code>Request</code> object helper
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Ricardo Rocha</a>
  - * @version CVS $Revision: 1.6 $ $Date: 2001/06/14 15:11:05 $
  + * @version CVS $Revision: 1.7 $ $Date: 2001/06/14 15:17:13 $
    */
   public class XSPRequestHelper {
     /**
  @@ -571,7 +571,7 @@
       throws SAXException
     {
       Request request = (Request)objectModel.get(Constants.REQUEST_OBJECT);
  -    XSPObjectHelper.elementData(URI, PREFIX, contentHandler, "remote-user", 
request.getRemoteHost());
  +    XSPObjectHelper.elementData(URI, PREFIX, contentHandler, "remote-host", 
request.getRemoteHost());
     }
   
       /**
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     [EMAIL PROTECTED]
To unsubscribe, e-mail:          [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to