You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by gi...@locus.apache.org on 2000/12/30 22:38:34 UTC

cvs commit: xml-cocoon/src/org/apache/cocoon/environment/http HttpRequest22.java HttpRequest23.java

giacomo     00/12/30 13:38:34

  Modified:    src/org/apache/cocoon/environment/http Tag: xml-cocoon2
                        HttpRequest22.java HttpRequest23.java
  Log:
  Changed getUri() to the conformant getURI() in all classes
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.2   +1 -1      xml-cocoon/src/org/apache/cocoon/environment/http/Attic/HttpRequest22.java
  
  Index: HttpRequest22.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/environment/http/Attic/HttpRequest22.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- HttpRequest22.java	2000/12/05 22:01:58	1.1.2.1
  +++ HttpRequest22.java	2000/12/30 21:38:33	1.1.2.2
  @@ -110,7 +110,7 @@
       }
   
       public String getRequestURI() {
  -        return this.env.getUri();
  +        return this.env.getURI();
       }
   
       public String getServletPath() {
  
  
  
  1.1.2.2   +2 -2      xml-cocoon/src/org/apache/cocoon/environment/http/Attic/HttpRequest23.java
  
  Index: HttpRequest23.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/environment/http/Attic/HttpRequest23.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- HttpRequest23.java	2000/12/05 22:02:00	1.1.2.1
  +++ HttpRequest23.java	2000/12/30 21:38:33	1.1.2.2
  @@ -44,10 +44,10 @@
       /* The HttpServletRequest interface methods */
   
       public String getRequestURI() {
  -        return this.env.getUri();
  +        return this.env.getURI();
       }
   
       public StringBuffer getRequestURL() {
  -        return new StringBuffer (this.env.getUri());
  +        return new StringBuffer (this.env.getURI());
       }
   }