cvs commit: apache-apr/pthreads/src/modules/standard mod_status.c

1999-04-01 Thread manoj
manoj   99/03/31 22:24:49

  Modified:pthreads/src/modules/standard mod_status.c
  Log:
  Some tweaks to mod_status. It now correctly reports the number of
  connections being processed, and notes that they are connections instead
  of requests.
  
  Revision  ChangesPath
  1.8   +3 -2  apache-apr/pthreads/src/modules/standard/mod_status.c
  
  Index: mod_status.c
  ===
  RCS file: /home/cvs/apache-apr/pthreads/src/modules/standard/mod_status.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -u -r1.7 -r1.8
  --- mod_status.c  1999/03/23 22:03:20 1.7
  +++ mod_status.c  1999/04/01 06:24:48 1.8
  @@ -317,7 +317,8 @@
tid_buffer[i][j] = (int) score_record.tid;
if (res == SERVER_READY)
ready++;
  - else if (res != SERVER_DEAD)
  + else if (res != SERVER_DEAD && res != SERVER_ACCEPTING
  +  && res != SERVER_QUEUEING && res != SERVER_STARTING)
busy++;
if (ap_extended_status) {
lres = score_record.access_count;
  @@ -424,7 +425,7 @@
   }/* ap_extended_status */
   
   if (!short_report)
  - ap_rprintf(r, "\n%d requests currently being processed, %d idle 
servers\n"
  + ap_rprintf(r, "\n%d connections currently being processed, %d idle 
servers\n"
,busy, ready);
   else
ap_rprintf(r, "BusyServers: %d\nIdleServers: %d\n", busy, ready);
  
  
  


cvs commit: apache-1.3 ABOUT_APACHE

1999-04-01 Thread dougm
dougm   99/03/31 16:42:14

  Modified:.ABOUT_APACHE
  Log:
  back to one summer a year
  
  Revision  ChangesPath
  1.23  +1 -1  apache-1.3/ABOUT_APACHE
  
  Index: ABOUT_APACHE
  ===
  RCS file: /export/home/cvs/apache-1.3/ABOUT_APACHE,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- ABOUT_APACHE  1999/02/14 02:30:47 1.22
  +++ ABOUT_APACHE  1999/04/01 00:42:14 1.23
  @@ -85,7 +85,7 @@
  Alexei Kosut   Stanford University, California 
  Martin Kraemer Munich, Germany
  Ben Laurie Freelance Consultant, UK 
  -   Doug MacEachernFreelance Consultant, Summer Seasons, Earth
  +   Doug MacEachernCritical Path, California
  Aram W. Mirzadeh   Qosina Corporation, New York 
  Sameer Parekh  C2Net, California 
  Cliff Skolnick Freelance, California
  
  
  


cvs commit: apache-site/info apache_books.html

1999-04-01 Thread dougm
dougm   99/03/31 16:39:26

  Modified:contributors index.html
   info apache_books.html
  Log:
  some updates
  
  Revision  ChangesPath
  1.69  +4 -3  apache-site/contributors/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/contributors/index.html,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -r1.68 -r1.69
  --- index.html1999/03/20 23:29:19 1.68
  +++ index.html1999/04/01 00:39:24 1.69
  @@ -374,9 +374,10 @@
   
   
   Name: Doug MacEachern
  -email: [EMAIL PROTECTED]
  -Occupation: Freelance Consultant 
  -Location: Boston, MA, USA. 
  +email: [EMAIL PROTECTED]
  +Organization: http://www.cp.net/";>Critical 
Path 
  +Occupation: Senior Software Engineer 
  +Location: San Francisco, CA, USA 
   Contributions: http://perl.apache.org/";>mod_perl,
   various API additions
   
  
  
  
  1.10  +16 -0 apache-site/info/apache_books.html
  
  Index: apache_books.html
  ===
  RCS file: /export/home/cvs/apache-site/info/apache_books.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- apache_books.html 1999/03/17 04:48:12 1.9
  +++ apache_books.html 1999/04/01 00:39:25 1.10
  @@ -29,6 +29,22 @@
   

 
  +   http://www.oreilly.com/catalog/wrapmod/index.html";>
  +   Writing Apache Modules with Perl and C
  +   Author: Lincoln Stein & Doug MacEachern
  + 
  + Published by: O'Reilly and Associates
  + 
  + ISBN: 1-56592-567-X
  + 
  + Language: English
  + 
  + Note: http://www.apachemod.com/";>companion site
  +   
  +  
  + 
  + 
  +  
  http://www.oreilly.com/catalog/apache2/index.html";>
  Apache: The Definitive Guide, 2nd Edition
  Author: Ben Laurie
  
  
  


cvs commit: apache-devsite index.html

1999-04-01 Thread coar
coar99/03/31 16:29:29

  Modified:.index.html
  Log:
Now that the API dictionary has been built (such as it is,
and temporary and incomplete as it is) on Taz, add a pointer
to it for the curious and masochistic.
  
  Revision  ChangesPath
  1.29  +7 -0  apache-devsite/index.html
  
  Index: index.html
  ===
  RCS file: /home/cvs/apache-devsite/index.html,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- index.html1999/03/13 15:27:33 1.28
  +++ index.html1999/04/01 00:29:27 1.29
  @@ -71,6 +71,13 @@
  
  (last modified on )
  
  +   A prototype reference dictionary
  +   for the Apache HTTP Server API
  +   
  +   (note: this link may not take you anywhere useful; the
  +   documents may be missing or in a state of flux.
  +   Caveat spectator.)
  +   
  Some notes on debugging
  
  (last modified on )
  
  
  


cvs commit: apache-devsite/apidoc footer.html header.html api-dict.html

1999-04-01 Thread coar
coar99/03/31 16:17:17

  Modified:apidoc   api-dict.html
  Added:   apidoc   footer.html header.html
  Log:
Foo, the uplevel files aren't subdirectory-clean.  Make
copies here and edit them appropriately.
  
  Revision  ChangesPath
  1.5   +2 -2  apache-devsite/apidoc/api-dict.html
  
  Index: api-dict.html
  ===
  RCS file: /home/cvs/apache-devsite/apidoc/api-dict.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- api-dict.html 1999/04/01 00:08:45 1.4
  +++ api-dict.html 1999/04/01 00:17:15 1.5
  @@ -13,7 +13,7 @@
 VLINK="#80"
 ALINK="#FF"
>
  -
  +
 
  Apache Web server API Dictionary
 
  @@ -37,6 +37,6 @@
   
   
   
  -
  +

   
  
  
  
  1.1  apache-devsite/apidoc/footer.html
  
  Index: footer.html
  ===

  
  
  
  1.1  apache-devsite/apidoc/header.html
  
  Index: header.html
  ===
  
   
  
  
  
  


cvs commit: apache-devsite/apidoc api-dict.html

1999-04-01 Thread coar
coar99/03/31 16:08:46

  Modified:apidoc   api-dict.html
  Log:
Foo, forgot to update the page dressing to fit into the
actual home on taz..
  
  Revision  ChangesPath
  1.4   +2 -2  apache-devsite/apidoc/api-dict.html
  
  Index: api-dict.html
  ===
  RCS file: /home/cvs/apache-devsite/apidoc/api-dict.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- api-dict.html 1999/04/01 00:06:18 1.3
  +++ api-dict.html 1999/04/01 00:08:45 1.4
  @@ -13,7 +13,7 @@
 VLINK="#80"
 ALINK="#FF"
>
  -
  +
 
  Apache Web server API Dictionary
 
  @@ -37,6 +37,6 @@
   
   
   
  -
  +

   
  
  
  


cvs commit: apache-devsite/apidoc api-dict.html

1999-04-01 Thread coar
coar99/03/31 16:06:19

  Modified:apidoc   api-dict.html
  Log:
Add a little more information about the partial nature of the
documentation..
  
  Revision  ChangesPath
  1.3   +7 -2  apache-devsite/apidoc/api-dict.html
  
  Index: api-dict.html
  ===
  RCS file: /home/cvs/apache-devsite/apidoc/api-dict.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- api-dict.html 1999/03/06 18:16:23 1.2
  +++ api-dict.html 1999/04/01 00:06:18 1.3
  @@ -1,10 +1,11 @@
  -
  +http://www.w3.org/TR/REC-html40/loose.dtd";>
   

 Apache Web server API Dictionary
 

  - 
  +

 
  
  +The intent of this and the related pages is to provide definitive
  +documentation for the Apache Web server API (application programming
  +interface).  Unfortunately, it does not yet live up to that intention,
  +but it's something, anyway.
   This file is  under construction.