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/10/03 04:07:55 UTC

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

jsdever     2002/10/02 19:07:55

  Modified:    httpclient/xdocs logging.xml news.xml status.xml
  Log:
  Announce new httpclient-dev mailing list.
  Documentation updates.
  
  Revision  Changes    Path
  1.4       +7 -3      jakarta-commons/httpclient/xdocs/logging.xml
  
  Index: logging.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/logging.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- logging.xml	8 Aug 2002 01:56:44 -0000	1.3
  +++ logging.xml	3 Oct 2002 02:07:54 -0000	1.4
  @@ -18,13 +18,14 @@
               Commons Logging configuration, HttpClient can be configured
               for a variety of logging behaviours.
            </p><p>
  +         </p><p>
               There are two specific types of loggers used within
               <em>HttpClient</em>: the standard <code>log</code> used for each 
               class and the <code>wireLog</code> used for wire messages.  
               Commons Logging allows for various logging systems to do the
               actual output.  The most basic is SimpleLog which uses stdout
               to write log messages.  All the following examples are shown with
  -            SimpleLog to highlight the utility withing <em>HttpClient</em>
  +            SimpleLog to highlight the utility within <em>HttpClient</em>
            </p><p>
               <u>log</u><br />
               The logging output can be configured on a class by class basis if
  @@ -33,7 +34,10 @@
               information on authentication routines, you could turn up the 
               logging level for the Authenticator by setting the following 
               property:<br />
  -            org.apache.commons.logging.simplelog.log.org.apache.commons.httpclient.Authenticator=trace
  +            <code>org.apache.commons.logging.simplelog.log.org.apache.commons.httpclient.Authenticator=trace</code><br \>
  +            The default log level for all classes can be set to a default by
  +            using the following:<br />
  +            <code>org.apache.commons.logging.simplelog.defaultlog=info</code><br \>
            </p><p>
               <u>wireLog</u><br />
               There is one log that cuts across several classes that is used for
  
  
  
  1.6       +11 -1     jakarta-commons/httpclient/xdocs/news.xml
  
  Index: news.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/news.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- news.xml	19 Jul 2002 22:32:45 -0000	1.5
  +++ news.xml	3 Oct 2002 02:07:54 -0000	1.6
  @@ -9,6 +9,16 @@
      </properties>
   
      <body>
  +      <section name="2 October, 2002 - httpclient-dev mailing list created">
  +         <p>There has been so much traffic on the commons-dev mailing list
  +            specific to HttpClient, that a new mailing list was created
  +            to partition the traffic.  If you wish to subscribe to this new
  +            mailing list, you can send mail to
  +            <a href="mailto:httpclient-dev@jakarta.apache.org">
  +            httpclient-dev@jakarta.apache.org</a>
  +         </p>
  +      </section>
  + 
         <section name="12 July, 2002 - HttpClient 2.0 Release Planning">
            <p>The <em>HttpClient</em> project has go through some very active
               development leading up to Alpha 1 last year, but unfortunately 
  
  
  
  1.13      +5 -22     jakarta-commons/httpclient/xdocs/status.xml
  
  Index: status.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/xdocs/status.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- status.xml	19 Sep 2002 15:13:54 -0000	1.12
  +++ status.xml	3 Oct 2002 02:07:55 -0000	1.13
  @@ -88,16 +88,16 @@
            <ul>
               <li>Jeff Dever</li>
               <li>dIon Gillard</li>
  +            <li>Ortwin Gl�ck</li>
  +            <li>Sung-Gu Park</li>
               <li>Marc A. Saegesser</li>
               <li>Rodney Waldhoff</li>
  -            <li>Ortwin Gl�ck</li>
               <!-- Past committers
               <li>Morgan Delagrange</li>
               <li>B.C. Holmes</li>
               <li>Costin Manolache</li>
               <li>Vincent Massol</li>
               <li>Remy Maucherat</li>
  -            <li>Sung-Gu Park</li>
               <li>Juergen Pill</li>
               <li>Doug Sale</li>
               -->
  @@ -109,7 +109,8 @@
            Like to help? The team has identified the following action items.
            To volunteer for a task, add your name to the list below, or
            send an email to
  -         <a href="mailto:commons-dev@jakarta.apache.org?subject=[httpclient]">commons-dev@jakarta.apache.org</a>.
  +         <a href="mailto:httpclient-dev@jakarta.apache.org">
  +            httpclient-dev@jakarta.apache.org</a>.
            </p>
   
            <table border="1">
  @@ -123,24 +124,6 @@
                <td>
                  <strong>Documentation</strong>
                  Additional documentation is always welcome.
  -             </td>
  -             <td align="center">&#xA0;</td>
  -           </tr>
  -
  -           <tr>
  -             <td>
  -               <strong>Convert to commons-logging</strong>
  -               HttpClient's logging API has become its own commons component.
  -               Migrate HttpClient to use commons-logging, and remove the old 
  -               HttpClient-packaged version.
  -             </td>
  -             <td align="center">&#xA0;</td>
  -           </tr>
  -
  -           <tr>
  -             <td>
  -               <strong>Digest Authentication</strong>
  -               Add support for Digest authentication to the Authenticator class.
                </td>
                <td align="center">&#xA0;</td>
              </tr>
  
  
  

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


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

Posted by Jeff Dever <js...@sympatico.ca>.
Ah oui onsieur Gillard!  Merci Beaucoup!


dion@multitask.com.au wrote:

> jsdever@apache.org wrote on 03/10/2002 12:07:55 PM:
>
> >   +         <p>There has been so much traffic on the commons-dev mailing
> list
> >   +            specific to HttpClient, that a new mailing list was
> created
> >   +            to partition the traffic.  If you wish to subscribe to
> this new
> >   +            mailing list, you can send mail to
> >   +            <a href="mailto:httpclient-dev@jakarta.apache.org">
>
> This one should be httpclient-dev-subscribe, right?
>
> >   +            httpclient-dev@jakarta.apache.org</a>
> --
> dIon Gillard, Multitask Consulting
> Work:      http://www.multitask.com.au
> Developers: http://adslgateway.multitask.com.au/developers
>
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>


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


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

Posted by di...@multitask.com.au.
jsdever@apache.org wrote on 03/10/2002 12:07:55 PM:

>   +         <p>There has been so much traffic on the commons-dev mailing 
list
>   +            specific to HttpClient, that a new mailing list was 
created
>   +            to partition the traffic.  If you wish to subscribe to 
this new
>   +            mailing list, you can send mail to
>   +            <a href="mailto:httpclient-dev@jakarta.apache.org">

This one should be httpclient-dev-subscribe, right?

>   +            httpclient-dev@jakarta.apache.org</a>
--
dIon Gillard, Multitask Consulting
Work:      http://www.multitask.com.au
Developers: http://adslgateway.multitask.com.au/developers




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