bloritsch 01/06/14 08:17:02
Modified: . Tag: cocoon_20_branch changes.xml
src/org/apache/cocoon/components/language/markup/xsp Tag:
cocoon_20_branch XSPRequestHelper.java
Log:
Bug Fix for BUG 2172
Revision Changes Path
No revision
No revision
1.2.2.8 +5 -1 xml-cocoon2/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/xml-cocoon2/changes.xml,v
retrieving revision 1.2.2.7
retrieving revision 1.2.2.8
diff -u -r1.2.2.7 -r1.2.2.8
--- changes.xml 2001/06/14 15:11:30 1.2.2.7
+++ changes.xml 2001/06/14 15:16:55 1.2.2.8
@@ -4,7 +4,7 @@
<!--
History of Cocoon changes
- $Id: changes.xml,v 1.2.2.7 2001/06/14 15:11:30 bloritsch Exp $
+ $Id: changes.xml,v 1.2.2.8 2001/06/14 15:16:55 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 <xsp-request:get-user/>
+ instead of <xsp-request:get-host/> 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
No revision
No revision
1.5.2.2 +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.5.2.1
retrieving revision 1.5.2.2
diff -u -r1.5.2.1 -r1.5.2.2
--- XSPRequestHelper.java 2001/06/14 15:11:35 1.5.2.1
+++ XSPRequestHelper.java 2001/06/14 15:16:58 1.5.2.2
@@ -22,7 +22,7 @@
* The <code>Request</code> object helper
*
* @author <a href="mailto:[EMAIL PROTECTED]">Ricardo Rocha</a>
- * @version CVS $Revision: 1.5.2.1 $ $Date: 2001/06/14 15:11:35 $
+ * @version CVS $Revision: 1.5.2.2 $ $Date: 2001/06/14 15:16:58 $
*/
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]