You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by js...@apache.org on 2002/12/17 02:07:59 UTC

cvs commit: jakarta-commons/httpclient/xdocs logging.xml

jsdever     2002/12/16 17:07:59

  Modified:    httpclient RELEASE_PLAN_2_0.txt project.xml
                        release_notes.txt
               httpclient/src/java/org/apache/commons/httpclient
                        AutoCloseInputStream.java
               httpclient/xdocs logging.xml
  Removed:     httpclient/src/java/org/apache/commons/httpclient
                        Base64.java URIUtil.java
  Log:
  Final cleanups for 2.0 Alpha 2
  
  Revision  Changes    Path
  1.6       +11 -8     jakarta-commons/httpclient/RELEASE_PLAN_2_0.txt
  
  Index: RELEASE_PLAN_2_0.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/RELEASE_PLAN_2_0.txt,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- RELEASE_PLAN_2_0.txt	8 Aug 2002 18:21:55 -0000	1.5
  +++ RELEASE_PLAN_2_0.txt	17 Dec 2002 01:07:59 -0000	1.6
  @@ -63,6 +63,9 @@
      VERSIONING_GUIDELINES.txt document at:
      http://cvs.apache.org/viewcvs/~checkout~/jakarta-commons/VERSIONING-GUIDELINES.txt
   
  + * Releases will be done according to:
  +   http://jakarta.apache.org/commons/releases.html
  +
      
   Release Manager:
   
  @@ -86,17 +89,17 @@
   
   The previous 2.0 release plan called for a time ordered development
   strategy.  There were set dates for given phases of the implementation.
  -This approach will be abandoned in favour of a milestone based 
  -development plan.
  +This approach will be abandoned in favour of a feature completion 
  +based development plan.
   
   Milestone development will begin immeadiately on approval
   of this release plan.  All repository changes that are non-trivial 
   will require a bugzilla bug or feature enhancement request.
   It will be the responsibility of the release manager to categorize
  -bugs/features into release milestones, but will always remain
  +bugs/features into release versions, but will always remain
   subject to the will of the majority.  In order to declare that a
  -milestone has been reached, all bugs/features categorized into 
  -that target milestone must be completed and a vote must pass 
  +release has been reached, all bugs/features categorized into 
  +that target release must be completed and a vote must pass 
   subject to lazy approval.
   
   The following procedure will be followed:
  @@ -108,8 +111,8 @@
   
   Milestone Development Phases:
   
  -2.0 Milestone development
  -Desinations: 2.0M1, 2.0M2
  +2.0 Alpha development
  +Desinations: 2.0A1, 2.0A2
   During the previous period of development, many new features
   were added, depenancies were changes, interfaces were impacted.
   During Milestone development, the nature of the changes will
  
  
  
  1.15      +0 -7      jakarta-commons/httpclient/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/project.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- project.xml	16 Dec 2002 19:15:57 -0000	1.14
  +++ project.xml	17 Dec 2002 01:07:59 -0000	1.15
  @@ -96,13 +96,6 @@
       	<roles><role>Java Developer</role></roles>
       </contributor>
   
  -    <contributor>
  -    	<name>Oleg Kalnichevski</name>
  -    	<email>oleg.kalnichevski@bearingpoint.com</email>
  -    	<organization></organization>
  -    	<roles><role>Java Developer</role></roles>
  -    </contributor>
  -    
     </contributors>
   
     
  
  
  
  1.2       +32 -1     jakarta-commons/httpclient/release_notes.txt
  
  Index: release_notes.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/release_notes.txt,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- release_notes.txt	12 Oct 2001 17:55:34 -0000	1.1
  +++ release_notes.txt	17 Dec 2002 01:07:59 -0000	1.2
  @@ -1,7 +1,38 @@
  -Release 2.0 Beta 1
  +Release 2.0 Alpha 2
   ------------------
   Changes since Release 2.0 Alpha 1:
   
  + * Mavenized builds.
  + 
  + * Digest authentication.  NTLM authentication.
  + 
  + * Multipart post.
  + 
  + * Added a StatusLine class to manage the status line of a
  +   http response.
  +
  + * Added ability to cusomize SocketFactory for http and https. 
  +   New Protocol class to allow for more protocols than just http/s.
  +
  + * Removed the HttpMultiClient, added multi-thread support to 
  +   HttpClient.
  + 
  + * Revamp the streaming policy.  Added AutoCloseInputStream,
  +   ChunkedInputStream, ChunkedOutputStream, ContentLengthInputStream,
  +   ResponseConsumedWatcher
  + 
  + * Commons Logging.  Dependancy on the commons-logging.jar
  + 
  + * Added httpclient.util package.  Move Base64 and URIUtil classs 
  +   into util.
  +
  + * Added a HttpURLConnection wrapper.  Allows for wrapping 
  +   HttpClient into the java standard library.  Partial support only.
  +
  + * Added httpclient.cookie package.  Complete overhaul of cookie
  +   handling.  Allows for user specified CookiePolicy and 
  +   various cookie specification classes.
  +  
    * Removed previously deprecated Cookie.createCookieHeader(String,
      String,boolean,Cookie[]) method (port number is required for
      future compatibility).
  
  
  
  1.4       +4 -4      jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/AutoCloseInputStream.java
  
  Index: AutoCloseInputStream.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/AutoCloseInputStream.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- AutoCloseInputStream.java	9 Dec 2002 09:16:16 -0000	1.3
  +++ AutoCloseInputStream.java	17 Dec 2002 01:07:59 -0000	1.4
  @@ -6,7 +6,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  
  
  
  1.8       +2 -16     jakarta-commons/httpclient/xdocs/logging.xml
  
  Index: logging.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/logging.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- logging.xml	3 Dec 2002 15:16:42 -0000	1.7
  +++ logging.xml	17 Dec 2002 01:07:59 -0000	1.8
  @@ -56,22 +56,8 @@
                System.setProperty("org.apache.commons.logging.simplelog.log.httpclient.wire ", "debug");<br />
                System.setProperty("org.apache.commons.logging.simplelog.log.org.apache.commons.httpclient", "trace");<br />
               </blockquote>
  -         </p><p>
  - 
  -            TODO: put the logging guidelines here
            </p>
  -
  -
  -         <ul>
  -            <li>
  -            </li>
  -            <br/>&#xA0;
  -            <li>
  -            </li>
  -            <br/>&#xA0;
  -            <li>
  -            </li>
  -         </ul>
  + 
         </section>
      </body>
   </document>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>