You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xang-cvs@xml.apache.org by md...@locus.apache.org on 2000/03/24 23:22:04 UTC

cvs commit: xml-xang/java/src/org/apache/xang/net/http/object/impl/debug DebugHTTPObjectServer.java DebugHTTPServletRequest.java DebugHTTPServletResponse.java DebugServletInputStream.java DebugServletOutputStream.java

mdierken    00/03/24 14:22:03

  Modified:    java/src/org/apache/xang/net/http/object/impl/debug
                        DebugHTTPObjectServer.java
                        DebugHTTPServletRequest.java
                        DebugHTTPServletResponse.java
                        DebugServletInputStream.java
                        DebugServletOutputStream.java
  Log:
  no message
  
  Revision  Changes    Path
  1.3       +4 -4      xml-xang/java/src/org/apache/xang/net/http/object/impl/debug/DebugHTTPObjectServer.java
  
  Index: DebugHTTPObjectServer.java
  ===================================================================
  RCS file: /home/cvs/xml-xang/java/src/org/apache/xang/net/http/object/impl/debug/DebugHTTPObjectServer.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DebugHTTPObjectServer.java	2000/03/14 00:49:38	1.2
  +++ DebugHTTPObjectServer.java	2000/03/24 22:22:02	1.3
  @@ -49,9 +49,9 @@
    *
    * This software consists of voluntary contributions made by many
    * individuals on behalf of the Apache Software Foundation and was
  - * originally based on software copyright (c) 1999, International
  - * Business Machines, Inc., http://www.apache.org.  For more
  - * information on the Apache Software Foundation, please see
  + * originally based on software copyright (c) 1999, DataChannel, Inc., http://www.datachannel.com
  + * For more information on the Apache Software Foundation, please see
  +
    * <http://www.apache.org/>.
    */
   
  @@ -196,5 +196,5 @@
       /////////
       String realPath="";
   
  -    public final static String RCS_STRING = "$Workfile: DebugHTTPObjectServer.java $ " + "$Revision: 1.2 $";
  +    public final static String RCS_STRING = "$Workfile: DebugHTTPObjectServer.java $ " + "$Revision: 1.3 $";
   }
  
  
  
  1.3       +20 -3     xml-xang/java/src/org/apache/xang/net/http/object/impl/debug/DebugHTTPServletRequest.java
  
  Index: DebugHTTPServletRequest.java
  ===================================================================
  RCS file: /home/cvs/xml-xang/java/src/org/apache/xang/net/http/object/impl/debug/DebugHTTPServletRequest.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DebugHTTPServletRequest.java	2000/03/14 00:49:39	1.2
  +++ DebugHTTPServletRequest.java	2000/03/24 22:22:02	1.3
  @@ -49,9 +49,9 @@
    *
    * This software consists of voluntary contributions made by many
    * individuals on behalf of the Apache Software Foundation and was
  - * originally based on software copyright (c) 1999, International
  - * Business Machines, Inc., http://www.apache.org.  For more
  - * information on the Apache Software Foundation, please see
  + * originally based on software copyright (c) 1999, DataChannel, Inc., http://www.datachannel.com
  + * For more information on the Apache Software Foundation, please see
  +
    * <http://www.apache.org/>.
    */
   
  @@ -225,6 +225,15 @@
           return parameters.keys();
       }
   
  +    public void setAttribute(String name,Object value)
  +    {
  +    }
  +    
  +    public Enumeration getAttributeNames()
  +    {
  +        return null;
  +    }
  +
       /**
        * Returns the value of the named attribute of the request, or
        * null if the attribute does not exist.  This method allows
  @@ -507,6 +516,10 @@
       {
           return null;
       }
  +    public HttpSession getSession ()
  +    {
  +        return null;
  +    }
       
       /**
        * Gets the session id specified with this request.  This may
  @@ -567,6 +580,10 @@
        * @see #getSession
        */
       public boolean isRequestedSessionIdFromUrl ()
  +    {
  +        return false;
  +    }
  +    public boolean isRequestedSessionIdFromURL ()
       {
           return false;
       }
  
  
  
  1.3       +11 -3     xml-xang/java/src/org/apache/xang/net/http/object/impl/debug/DebugHTTPServletResponse.java
  
  Index: DebugHTTPServletResponse.java
  ===================================================================
  RCS file: /home/cvs/xml-xang/java/src/org/apache/xang/net/http/object/impl/debug/DebugHTTPServletResponse.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DebugHTTPServletResponse.java	2000/03/14 00:49:39	1.2
  +++ DebugHTTPServletResponse.java	2000/03/24 22:22:02	1.3
  @@ -49,9 +49,9 @@
    *
    * This software consists of voluntary contributions made by many
    * individuals on behalf of the Apache Software Foundation and was
  - * originally based on software copyright (c) 1999, International
  - * Business Machines, Inc., http://www.apache.org.  For more
  - * information on the Apache Software Foundation, please see
  + * originally based on software copyright (c) 1999, DataChannel, Inc., http://www.datachannel.com
  + * For more information on the Apache Software Foundation, please see
  +
    * <http://www.apache.org/>.
    */
   
  @@ -318,6 +318,10 @@
       {
           return url;
       }
  +    public String encodeURL(String url)
  +    {
  +        return url;
  +    }
   
       /**
        * Encodes the specified URL for use in the
  @@ -342,6 +346,10 @@
        * @see #encodeUrl
        */
       public String encodeRedirectUrl (String url)
  +    {
  +        return url;
  +    }
  +    public String encodeRedirectURL(String url)
       {
           return url;
       }
  
  
  
  1.3       +3 -3      xml-xang/java/src/org/apache/xang/net/http/object/impl/debug/DebugServletInputStream.java
  
  Index: DebugServletInputStream.java
  ===================================================================
  RCS file: /home/cvs/xml-xang/java/src/org/apache/xang/net/http/object/impl/debug/DebugServletInputStream.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DebugServletInputStream.java	2000/03/14 00:49:39	1.2
  +++ DebugServletInputStream.java	2000/03/24 22:22:02	1.3
  @@ -49,9 +49,9 @@
    *
    * This software consists of voluntary contributions made by many
    * individuals on behalf of the Apache Software Foundation and was
  - * originally based on software copyright (c) 1999, International
  - * Business Machines, Inc., http://www.apache.org.  For more
  - * information on the Apache Software Foundation, please see
  + * originally based on software copyright (c) 1999, DataChannel, Inc., http://www.datachannel.com
  + * For more information on the Apache Software Foundation, please see
  +
    * <http://www.apache.org/>.
    */
   
  
  
  
  1.3       +3 -3      xml-xang/java/src/org/apache/xang/net/http/object/impl/debug/DebugServletOutputStream.java
  
  Index: DebugServletOutputStream.java
  ===================================================================
  RCS file: /home/cvs/xml-xang/java/src/org/apache/xang/net/http/object/impl/debug/DebugServletOutputStream.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DebugServletOutputStream.java	2000/03/14 00:49:39	1.2
  +++ DebugServletOutputStream.java	2000/03/24 22:22:02	1.3
  @@ -49,9 +49,9 @@
    *
    * This software consists of voluntary contributions made by many
    * individuals on behalf of the Apache Software Foundation and was
  - * originally based on software copyright (c) 1999, International
  - * Business Machines, Inc., http://www.apache.org.  For more
  - * information on the Apache Software Foundation, please see
  + * originally based on software copyright (c) 1999, DataChannel, Inc., http://www.datachannel.com
  + * For more information on the Apache Software Foundation, please see
  +
    * <http://www.apache.org/>.
    */