cvs commit: apache-1.3/src CHANGES

2000-02-05 Thread lars
lars00/02/04 17:32:36

  Modified:src  CHANGES
  Log:
  added entry to src/CHANGES regarding SUEXEC_BIN
  
  Revision  ChangesPath
  1.1507+4 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1506
  retrieving revision 1.1507
  diff -u -r1.1506 -r1.1507
  --- CHANGES   2000/02/04 23:05:28 1.1506
  +++ CHANGES   2000/02/05 01:32:32 1.1507
  @@ -1,5 +1,9 @@
   Changes with Apache 1.3.12
   
  +  *) The default suexec path was HTTPD_ROOT/sbin/suexec if not
  + configured via APACI. Changed to HTTPD_ROOT/bin/suexec.
  + [Lars Eilebrecht]
  +
 *) Add an explicit charset=iso-8859-1 to pages generated by
ap_send_error_response(), such as the default 404 page.
[Marc Slemko]
  
  
  


cvs commit: apache-1.3/src CHANGES

2000-02-04 Thread lars
lars00/02/04 15:05:39

  Modified:src  CHANGES
  Log:
  Typo...
  
  Revision  ChangesPath
  1.1506+1 -1  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1505
  retrieving revision 1.1506
  diff -u -r1.1505 -r1.1506
  --- CHANGES   2000/02/03 14:22:28 1.1505
  +++ CHANGES   2000/02/04 23:05:28 1.1506
  @@ -293,7 +293,7 @@
 *) Added a CLF '-' respecting %B to the log format.
Suggested by Ragnar Kjørstad [dirkx]
   
  -  *) Added protocol(%m)/method(%H) logging to the log format.
  +  *) Added protocol(%H)/method(%m) logging to the log format.
Suggested by Peter W [EMAIL PROTECTED] [dirkx]
   
 *) Added a HEAD method to 'ab'. [dirkx]
  
  
  


cvs commit: apache-1.3 configure

2000-02-04 Thread lars
lars00/02/04 15:09:54

  Modified:.configure
  Log:
  add --iconsdir, --htdocsdir and --cgidir to Usage output
  
  Revision  ChangesPath
  1.117 +4 -1  apache-1.3/configure
  
  Index: configure
  ===
  RCS file: /export/home/cvs/apache-1.3/configure,v
  retrieving revision 1.116
  retrieving revision 1.117
  diff -u -r1.116 -r1.117
  --- configure 2000/01/17 22:53:17 1.116
  +++ configure 2000/02/04 23:09:52 1.117
  @@ -416,7 +416,10 @@
   echo  --libexecdir=DIR   install program  executables in 
DIR
   echo  --mandir=DIR   install manual pages in DIR
   echo  --sysconfdir=DIR   install configuration files in DIR
  -echo  --datadir=DIR  install read-only  data files in 
DIR
  +echo  --datadir=DIR  install read-only data files in 
DIR
  +echo  --iconsdir=DIR install read-only icon files in 
DIR
  +echo  --htdocsdir=DIRinstall read-only document files 
in DIR
  +echo  --cgidir=DIR   install read-only cgi files in DIR
   echo  --includedir=DIR   install includes files in DIR
   echo  --localstatedir=DIRinstall modifiable data files in 
DIR
   echo  --runtimedir=DIR   install runtime data in DIR
  
  
  


cvs commit: apache-1.3/src/helpers binbuild.sh

2000-01-30 Thread lars
lars00/01/29 16:36:58

  Modified:src/helpers binbuild.sh
  Log:
  remove one space...
  
  Revision  ChangesPath
  1.16  +1 -1  apache-1.3/src/helpers/binbuild.sh
  
  Index: binbuild.sh
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/binbuild.sh,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- binbuild.sh   2000/01/13 16:02:09 1.15
  +++ binbuild.sh   2000/01/30 00:36:55 1.16
  @@ -229,7 +229,7 @@
 echo\
 echo echo \Ready.\  \
 echo echo \ 
++\  \
  -  echo echo \ | You now have successfully installed the Apache $VER   |\ 
 \
  +  echo echo \ | You now have successfully installed the Apache $VER  |\ 
 \
 echo echo \ | HTTP server. To verify that Apache actually works  
|\  \
 echo echo \ | correctly you should first check the (initially
|\  \
 echo echo \ | created or preserved) configuration files: 
|\  \
  
  
  


cvs commit: apache-1.3/src/include httpd.h

2000-01-30 Thread lars
lars00/01/30 11:46:12

  Modified:src/include httpd.h
  Log:
  The path to suexec is usually set by configure, but if
  not the default should be serverroot/bin/suexec.
  
  Revision  ChangesPath
  1.303 +1 -1  apache-1.3/src/include/httpd.h
  
  Index: httpd.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/httpd.h,v
  retrieving revision 1.302
  retrieving revision 1.303
  diff -u -r1.302 -r1.303
  --- httpd.h   2000/01/20 02:55:00 1.302
  +++ httpd.h   2000/01/30 19:46:11 1.303
  @@ -252,7 +252,7 @@
   
   /* The path to the suExec wrapper, can be overridden in Configuration */
   #ifndef SUEXEC_BIN
  -#define SUEXEC_BIN  HTTPD_ROOT /sbin/suexec
  +#define SUEXEC_BIN  HTTPD_ROOT /bin/suexec
   #endif
   
   /* The default string lengths */
  
  
  


cvs commit: apache-1.3/htdocs index.html.it index.html.pt index.html.pt-br

2000-01-30 Thread lars
lars00/01/30 11:59:39

  Modified:htdocs   index.html.it index.html.pt index.html.pt-br
  Log:
  Remove the trailing slash.
  We are running with MultiViews enabled and httpd is not a directory,
  but a file (httpd.html).
  
  Revision  ChangesPath
  1.2   +1 -1  apache-1.3/htdocs/index.html.it
  
  Index: index.html.it
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/index.html.it,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.html.it 1999/08/20 09:35:43 1.1
  +++ index.html.it 2000/01/30 19:59:38 1.2
  @@ -11,7 +11,7 @@
   h1
   Funziona! Il Server Web Apache e' stato installato su questo sito 
Web!/h1/center
   Se riuscite a vedere questa pagina, allora vuol dire che coloro che 
gestiscono
  -questo dominio hanno appena installato il software a 
href=http://www.apache.org/httpd/;Webnbsp;Server
  +questo dominio hanno appena installato il software a 
href=http://www.apache.org/httpd;Webnbsp;Server
   Apache/a correttamente. Ora e' necessario aggiungere il vostro materiale
   in questo direttorio e sostituire questa pagina di prova, oppure configurare
   il server per far riferimento al vostro materiale se collocato altrove.
  
  
  
  1.2   +1 -1  apache-1.3/htdocs/index.html.pt
  
  Index: index.html.pt
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/index.html.pt,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.html.pt 1999/08/19 13:13:44 1.1
  +++ index.html.pt 2000/01/30 19:59:38 1.2
  @@ -19,7 +19,7 @@
P
Se conseguir ver esta pagina, entao as pessoas que possuem este
  dominio acabaram
  - de instalar o software A HREF=http://www.apache.org/httpd/;Apache Web
  + de instalar o software A HREF=http://www.apache.org/httpd;Apache Web
  server/A
com sucesso.  Agora tem de adicionar o conteudo a esta directoria
e substituir esta pagina placeholder, ou apontar o servidor para o
  
  
  
  1.2   +1 -1  apache-1.3/htdocs/index.html.pt-br
  
  Index: index.html.pt-br
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/index.html.pt-br,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.html.pt-br  2000/01/30 16:18:35 1.1
  +++ index.html.pt-br  2000/01/30 19:59:38 1.2
  @@ -19,7 +19,7 @@
P
Se conseguir ver esta pagina, entao as pessoas que possuem este
  dominio acabaram
  - de instalar o software A HREF=http://www.apache.org/httpd/;Apache Web
  + de instalar o software A HREF=http://www.apache.org/httpd;Apache Web
  server/A
com sucesso.  Agora tem de adicionar o conteudo a esta directoria
e substituir esta pagina placeholder, ou apontar o servidor para o
  
  
  


cvs commit: apache-1.3/htdocs/manual/mod mod_mime.html

2000-01-08 Thread lars
lars00/01/08 11:57:30

  Modified:htdocs/manual/mod mod_mime.html
  Log:
  add missing compatiblity info
  
  Revision  ChangesPath
  1.34  +6 -1  apache-1.3/htdocs/manual/mod/mod_mime.html
  
  Index: mod_mime.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_mime.html,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- mod_mime.html 1999/12/09 18:10:39 1.33
  +++ mod_mime.html 2000/01/08 19:57:29 1.34
  @@ -397,7 +397,12 @@
   A
HREF=directive-dict.html#Module
REL=Help
  -STRONGModule:/STRONG/A mod_mimeP
  +STRONGModule:/STRONG/A mod_mimeBR
  +A
  + HREF=directive-dict.html#Compatibility
  + REL=Help
  +STRONGCompatibility:/STRONG/A DefaultLanguage is only available in 
Apache
  +1.3.4 and later.P
   
   The DefaultLanguage directive tells Apache that all files in the
   directive's scope (EMe.g./EM, all files covered by the current
  
  
  


cvs commit: apache-site/info apache_books.html

2000-01-06 Thread lars
lars00/01/06 04:38:18

  Modified:info apache_books.html
  Log:
  Typo...
  
  Revision  ChangesPath
  1.20  +1 -1  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.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- apache_books.html 2000/01/04 23:09:49 1.19
  +++ apache_books.html 2000/01/06 12:38:17 1.20
  @@ -46,7 +46,7 @@
LI
 DL
  DTA href=http://www.refcards.com/about/apache.html;
  -   STRONGApache Quick Reference Card Book/STRONG/A
  +   STRONGApache Quick Reference Card/STRONG/A
  /DT
  DDAuthor: Andrew Ford
   BR
  
  
  


cvs commit: apache-site/info apache_books.html

2000-01-04 Thread lars
lars00/01/04 15:09:53

  Modified:info apache_books.html
  Log:
  add link
  
  Revision  ChangesPath
  1.19  +2 -1  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.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- apache_books.html 2000/01/02 05:49:27 1.18
  +++ apache_books.html 2000/01/04 23:09:49 1.19
  @@ -29,7 +29,8 @@
   UL
LI
 DL
  -   DTSTRONGApache: Das umfassende Referenzwerk./STRONG/DT
  +   DTA HREF=http://www.oreilly.de/catalog/apacheger/;
  +   STRONGApache: Das umfassende Referenzwerk./STRONG/A/DT
  DDAuthor: Ben Laurie, Peter Laurie
BR
Published by: O'Reilly and Associates, Germany
  
  
  


cvs commit: apache-site/info apache_books.html

2000-01-02 Thread lars
lars00/01/01 16:18:59

  Modified:info apache_books.html
  Log:
  more book entries...
  
  Revision  ChangesPath
  1.17  +79 -1 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.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- apache_books.html 1999/10/22 21:09:08 1.16
  +++ apache_books.html 2000/01/02 00:18:58 1.17
  @@ -27,8 +27,41 @@
   
   H21999/H2
   UL
  +
  +
  +
  + LI
  +  DL
  +   DTSTRONGApache: Das umfassende Referenzwerk./STRONG/DT
  +   DDAuthor: Ben Laurie, Peter Laurie
  + BR
  + Published by: O'Reilly and Associates, Germany
  + BR
  + ISBN: 3-89721-127-0
  + BR
  + Language: German
  + BR
  + Note: Includes CD-ROM
  +   /DD
  +  /DL
  + /LI
LI
 DL
  +   DTA href=http://www.refcards.com/about/apache.html;
  +   STRONGApache Quick Reference Card Book/STRONG/A
  +   /DT
  +   DDAuthor: Andrew Ford
  +BR
  +Published by: Ford amp; Mason Ltd
  +BR
  +ISBN: 0-9534897-0-1
  +BR
  +Language: English
  +   /DD
  +  /DL
  + /LI
  + LI
  +  DL
  DTA 
HREF=http://www.idgbooks.com/cgi/fill_out_template.pl?idgbook:0-7645-3306-1:book-idg;
  STRONGApache Server Administrators Handbook/STRONG/A
  /DT
  @@ -76,7 +109,7 @@
 DL
  DTA HREF=http://www.oreilly.com/catalog/apache2/index.html;
  STRONGApache: The Definitive Guide, 2nd Edition/STRONG/A/DT
  -   DDAuthor: Ben Laurie
  +   DDAuthor: Ben Laurie, Peter Laurie
BR
Published by: O'Reilly and Associates
BR
  @@ -90,6 +123,36 @@
/LI
LI
 DL
  +   DTA HREF=http://www.mitp.de/linux/0554/0554.htm;
  +   STRONGDie Apache Administration Bibel/STRONG/A/DT
  +   DDAuthor: Mohammed J. Kabir
  + BR
  + Published by: MITP-Verlag GmbH, Germany
  + BR
  + ISBN: 3-8266-0554-3
  + BR
  + Language: German
  + BR
  + Note: Includes CD-ROM
  +   /DD
  +  /DL
  + /LI
  + LI
  +  DL
  +   DTA 
HREF=http://www.wrox.com/Consumer/Store/Details.asp?ISBN=1861003021;
  +   STRONGProfessional Apache/STRONG/A/DT
  +   DDAuthor: Peter Wainwright, Lars Eilebrecht, Ari Halberstadt, Brian Moon
  + BR
  + Published by: Wrox Press Ltd.
  + BR
  + ISBN: 1-861003-02-1
  + BR
  + Language: English
  +   /DD
  +  /DL
  + /LI
  + LI
  +  DL
  DTA HREF=http://www.dpunkt.de/webserver_betreiben/;
  STRONGWebserver betreiben/STRONG/A -- HTTP und Apache
  /DT
  @@ -191,6 +254,21 @@
   Language: German
   BR
   Note: includes CD-ROM, expanded and upated edition
  +   /DD
  +  /DL
  + /LI
  + LI
  +  DL
  +   DTSTRONGDer Apache Webserver/STRONG/DT
  +   DDAuthor: Stephan Roßbach
  + BR
  + Published by: Addison-Wesley
  + BR
  + ISBN: 3-8273-1328-7
  + BR
  + Language: German
  + BR
  + Note: Includes CD-ROM
  /DD
 /DL
/LI
  
  
  


cvs commit: apache-site index.html

2000-01-02 Thread lars
lars00/01/01 16:27:06

  Modified:.index.html
  Log:
  we no longer need a y2k link on the index page...
  
  Revision  ChangesPath
  1.9   +0 -2  apache-site/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/index.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- index.html1999/12/01 15:32:20 1.8
  +++ index.html2000/01/02 00:27:04 1.9
  @@ -77,8 +77,6 @@
  input type=hidden name=results value=20
  input type=hidden name=what value=ap
  /form
  -   h3a href=foundation/Y2K.html
  -   Apache HTTP Server Y2K Readiness Statement/a/h3
   /td/tr
   /table
   
  
  
  


cvs commit: apache-1.3 STATUS

1999-12-20 Thread lars
lars99/12/19 18:11:17

  Modified:.STATUS
  Log:
  Add entry regarding the mod_vhost_alias Host: header problem.
  
  Revision  ChangesPath
  1.772 +5 -1  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.771
  retrieving revision 1.772
  diff -u -r1.771 -r1.772
  --- STATUS1999/12/17 14:03:21 1.771
  +++ STATUS1999/12/20 02:11:15 1.772
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/12/17 14:03:21 $]
  +  Last modified at [$Date: 1999/12/20 02:11:15 $]
   
   Release:
   
  @@ -19,6 +19,10 @@
   2.0  : In pre-alpha development, see apache-2.0 repository
   
   RELEASE SHOWSTOPPERS:
  +
  +* mod_vhost_alias Host: header check
  +  Message-ID: [EMAIL PROTECTED]
  +
   
   RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
   
  
  
  


cvs commit: apache-1.3/htdocs/manual/mod directives.html mod_vhost_alias.html

1999-12-19 Thread lars
lars99/12/19 08:34:32

  Modified:htdocs/manual/mod directives.html mod_vhost_alias.html
  Log:
  minor fixes
  
  Revision  ChangesPath
  1.60  +4 -0  apache-1.3/htdocs/manual/mod/directives.html
  
  Index: directives.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/directives.html,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- directives.html   1999/11/28 12:14:21 1.59
  +++ directives.html   1999/12/19 16:34:32 1.60
  @@ -217,6 +217,10 @@
   LIA HREF=core.html#userUser/A
   LIA HREF=mod_userdir.html#userdirUserDir/A
   LIA HREF=core.html#virtualhostlt;VirtualHostgt;/A
  +LIA 
HREF=mod_vhost_alias.html#virtualdocumentrootVirtualDocumentRoot/A
  +LIA 
HREF=mod_vhost_alias.html#virtualdocumentrootipVirtualDocumentRootIP/A
  +LIA HREF=mod_vhost_alias.html#virtualscriptaliasVirtualScriptAlias/A
  +LIA 
HREF=mod_vhost_alias.html#virtualscriptaliasipVirtualScriptAliasIP/A
   LIA HREF=mod_include.html#xbithackXBitHack/A
   /UL
   
  
  
  
  1.5   +16 -20apache-1.3/htdocs/manual/mod/mod_vhost_alias.html
  
  Index: mod_vhost_alias.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_vhost_alias.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- mod_vhost_alias.html  1999/07/02 06:56:09 1.4
  +++ mod_vhost_alias.html  1999/12/19 16:34:32 1.5
  @@ -23,13 +23,9 @@
   
   P
   This module is contained in the CODEmod_vhost_alias.c/CODE file
  -and is not compiled in by default. It should be mentioned near the
  -start of the CODEConfiguration/CODE file so that it doesn't
  -override the behaviour of other modules that do filename translation,
  -EMe.g./EM, A HREF=mod_userdir.htmlCODEmod_userdir/CODE/A and
  -A HREF=mod_alias.htmlCODEmod_alias/CODE/A. It provides
  -support for A HREF=../vhosts/mass.htmldynamically configured mass
  -virtual hosting/A.
  +and is not compiled in by default. It provides support for
  +A HREF=../vhosts/mass.htmldynamically configured mass virtual
  +hosting/A.
   /P
   
   H2Directory Name Interpolation/H2
  @@ -149,14 +145,14 @@
   
   H2Directives/H2
   UL
  -  LIA HREF=#VirtualDocumentRootVirtualDocumentRoot/A
  -  LIA HREF=#VirtualDocumentRootIPVirtualDocumentRootIP/A
  -  LIA HREF=#VirtualScriptAliasVirtualScriptAlias/A
  -  LIA HREF=#VirtualScriptAliasIPVirtualScriptAliasIP/A
  +  LIA HREF=#virtualdocumentrootVirtualDocumentRoot/A
  +  LIA HREF=#virtualdocumentrootipVirtualDocumentRootIP/A
  +  LIA HREF=#virtualscriptaliasVirtualScriptAlias/A
  +  LIA HREF=#virtualscriptaliasipVirtualScriptAliasIP/A
   /UL
   HR
   
  -H2A NAME=VirtualDocumentRootVirtualDocumentRoot directive/A/H2
  +H2A NAME=virtualdocumentrootVirtualDocumentRoot directive/A/H2
   P
   A
HREF=directive-dict.html#Syntax
  @@ -191,11 +187,11 @@
   directive's argument. If EMinterpolated-directory/EM is
   CODEnone/CODE then CODEVirtaulDocumentRoot/CODE is turned off.
   This directive cannot be used in the same context as
  -A HREF=#VirtualDocumentRootIPCODEVirtualDocumentRootIP/CODE/A.
  +A HREF=#virtualdocumentrootipCODEVirtualDocumentRootIP/CODE/A.
   /P
   HR
   
  -H2A NAME=VirtualDocumentRootIPVirtualDocumentRootIP directive/A/H2
  +H2A NAME=virtualdocumentrootipVirtualDocumentRootIP directive/A/H2
   P
   A
HREF=directive-dict.html#Syntax
  @@ -223,13 +219,13 @@
   STRONGCompatibility:/STRONG/A VirtualDocumentRootIP is only available 
in 1.3.7 and later./P
   P
   The CODEVirtualDocumentRootIP/CODE directive is like the
  -A HREF=#VirtualDocumentRootCODEVirtualDocumentRoot/CODE/A 
directive,
  +A HREF=#virtualdocumentrootCODEVirtualDocumentRoot/CODE/A 
directive,
   except that it uses the IP address of the server end of the connection
   instead of the server name.
   /P
   HR
   
  -H2A NAME=VirtualScriptAliasVirtualScriptAlias directive/A/H2
  +H2A NAME=virtualscriptaliasVirtualScriptAlias directive/A/H2
   P
   A
HREF=directive-dict.html#Syntax
  @@ -258,7 +254,7 @@
   P
   The CODEVirtualScriptAlias/CODE directive allows you to determine
   where Apache will find CGI scripts in a similar manner to
  -A HREF=#VirtualDocumentRootCODEVirtualDocumentRoot/CODE/A
  +A HREF=#virtualdocumentrootCODEVirtualDocumentRoot/CODE/A
   does for other documents. It matches requests for URIs starting
   CODE/cgi-bin//CODE, much like
   CODEA HREF=mod_alias.html#scriptaliasScriptAlias/A /cgi-bin//CODE
  @@ -266,7 +262,7 @@
   /P
   HR
   
  -H2A NAME=VirtualScriptAliasVirtualScriptAliasIP directive/A/H2
  +H2A NAME=virtualscriptaliasipVirtualScriptAliasIP directive/A/H2
   P
   A
HREF=directive-dict.html#Syntax
  @@ -293,8 +289,8 @@
REL=Help
   STRONGCompatibility:/STRONG/A VirtualScriptAliasIP is only available 
in 1.3.7 and later./P
   P
  -The CODEVirtualScriptAliasIP/CODE directibe is like the
  -A HREF

cvs commit: apache-1.3/htdocs/manual/mod core.html mod_access.html

1999-12-19 Thread lars
lars99/12/19 09:33:15

  Modified:htdocs/manual/mod core.html mod_access.html
  Log:
  Add some links.
  
  Revision  ChangesPath
  1.157 +2 -1  apache-1.3/htdocs/manual/mod/core.html
  
  Index: core.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/core.html,v
  retrieving revision 1.156
  retrieving revision 1.157
  diff -u -r1.156 -r1.157
  --- core.html 1999/11/16 12:16:20 1.156
  +++ core.html 1999/12/19 17:33:14 1.157
  @@ -2598,7 +2598,8 @@
   they either pass the host restriction or enter a valid username and
   password. This can be used to password restrict an area, but to let
   clients from particular addresses in without prompting for a password.
  -
  +P
  +See also A HREF=mod_access.htmlmod_access/A.
   
   PHR
   
  
  
  
  1.19  +3 -0  apache-1.3/htdocs/manual/mod/mod_access.html
  
  Index: mod_access.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_access.html,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- mod_access.html   1999/04/14 11:19:21 1.18
  +++ mod_access.html   1999/12/19 17:33:14 1.19
  @@ -28,6 +28,9 @@
   LIA HREF=#denyfromenvdeny from env=/A
   LIA HREF=#orderorder/A
   /UL
  +DL
  +DDSee also A HREF=core.html#satisfySatisfy/A.
  +/DL
   HR
   
   
  
  
  


cvs commit: apache-1.3/htdocs/manual/mod core.html mod_access.html

1999-12-19 Thread lars
lars99/12/19 10:47:00

  Modified:htdocs/manual/mod core.html mod_access.html
  Log:
  Uhm... forgot require directive...
  
  Revision  ChangesPath
  1.158 +5 -2  apache-1.3/htdocs/manual/mod/core.html
  
  Index: core.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/core.html,v
  retrieving revision 1.157
  retrieving revision 1.158
  diff -u -r1.157 -r1.158
  --- core.html 1999/12/19 17:33:14 1.157
  +++ core.html 1999/12/19 18:46:59 1.158
  @@ -2393,7 +2393,9 @@
   desired./STRONG If you wish to apply access controls only to
   specific methods, while leaving other methods unprotected, then place
   the CODErequire/CODE statement into a A
  -HREF=#limitlt;Limitgt;/A sectionPHR
  +HREF=#limitlt;Limitgt;/A sectionP
  +PSee also A HREF=#satisfySatisfy/A and A 
HREF=mod_access.htmlmod_access/A.
  +HR
   
   H2A NAME=resourceconfigResourceConfig directive/A/H2
   !--%plaintext lt;?INDEX {\tt ResourceConfig} directivegt; --
  @@ -2599,7 +2601,8 @@
   password. This can be used to password restrict an area, but to let
   clients from particular addresses in without prompting for a password.
   P
  -See also A HREF=mod_access.htmlmod_access/A.
  +See also A HREF=#requirerequire/A and 
  +A HREF=mod_access.htmlmod_access/A.
   
   PHR
   
  
  
  
  1.20  +2 -1  apache-1.3/htdocs/manual/mod/mod_access.html
  
  Index: mod_access.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_access.html,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- mod_access.html   1999/12/19 17:33:14 1.19
  +++ mod_access.html   1999/12/19 18:46:59 1.20
  @@ -29,7 +29,8 @@
   LIA HREF=#orderorder/A
   /UL
   DL
  -DDSee also A HREF=core.html#satisfySatisfy/A.
  +DDSee also A HREF=core.html#satisfySatisfy/A
  +and A HREF=core.html#requirerequire/A.
   /DL
   HR
   
  
  
  


cvs commit: apache-site/contributors index.html

1999-12-06 Thread lars
lars99/12/06 09:05:48

  Modified:contributors index.html
  Log:
  I've resigned at CableWireless and will start to work for
  CyberSolutions January 2000...
  
  Revision  ChangesPath
  1.83  +3 -4  apache-site/contributors/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/contributors/index.html,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -r1.82 -r1.83
  --- index.html1999/11/21 20:04:49 1.82
  +++ index.html1999/12/06 17:05:47 1.83
  @@ -21,7 +21,7 @@
   core individuals in the Apache HTTP Server Project.
   /P
   
  -H2Current Apache HTTP Server Group in alphabetical order as of 8 October 
1999:/H2
  +H2Current Apache HTTP Server Group in alphabetical order as of 6 December 
1999:/H2
   
   TABLE BORDER=0
   TR VALIGN=TOP
  @@ -230,9 +230,8 @@
   P
   STRONGName:/STRONG A NAME=larsLars Eilebrecht/ABR
   STRONGEmail:/STRONG A HREF=mailto:[EMAIL PROTECTED][EMAIL 
PROTECTED]/ABR
  -STRONGURL:/STRONG A 
HREF=http://www.home.unix-ag.org/sfx/;http://www.home.unix-ag.org/sfx//ABR
  -STRONGOrganization:/STRONG Cable amp; Wireless ECRC, MunichBR
  -STRONGOccupation:/STRONG Internet EngineerBR
  +STRONGOrganization:/STRONG A 
HREF=http://www.cys.de/;CyberSolutions/A, MunichBR
  +STRONGOccupation:/STRONG Product ManagerBR
   STRONGLocation:/STRONG Munich, GermanyBR
   STRONGComments:/STRONG To err is human, but I can EMreally/EM foul 
things up.BR
   STRONGOS Expertise:/STRONG Linux, Solaris, (Digital Unix, AIX, FreeBSD) 
and AmigaOSBR
  
  
  


cvs commit: apache-site/systems99 index.html

1999-10-19 Thread lars
lars99/10/18 16:03:55

  Modified:systems99 index.html
  Log:
  *gnar*
  
  Revision  ChangesPath
  1.3   +1 -1  apache-site/systems99/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/systems99/index.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.html1999/10/18 22:47:26 1.2
  +++ index.html1999/10/18 23:03:53 1.3
  @@ -10,7 +10,7 @@
   
   table width=100% border=0
   trtd valign=top
  -  pa href=http://www.apache.org/;img src=../images/asf_logo.gif
  +  pa href=http://www.apache.org/;img 
src=../foundation/images/asf_logo.gif
 alt=The Apache Software Foundation
 border=0 width=387 height=100/a
 /p
  
  
  


cvs commit: apache-site/systems99 index.html

1999-10-19 Thread lars
lars99/10/19 15:46:39

  Modified:systems99 index.html
  Log:
  Add info about presentation...
  
  Revision  ChangesPath
  1.4   +8 -0  apache-site/systems99/index.html
  
  Index: index.html
  ===
  RCS file: /home/cvs/apache-site/systems99/index.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- index.html1999/10/18 23:03:53 1.3
  +++ index.html1999/10/19 22:46:37 1.4
  @@ -71,6 +71,14 @@
   /UL
   
   P
  +Special event:
  +
  +UL
  +LIPresentation of the Apache Web Server Project by Lars Eilebrecht.
  +brLinux-Forum, Hall A3, 20 October, 12:45 CET
  +/UL
  +
  +P
   Further information about Systems 99 and LinuxPark can be found under
   a href=http://www.systems.de/linux/;http://www.systems.de/linux//A
   
  
  
  


cvs commit: apache-site/systems99 systems-hall-a3.gif systems-logo.jpg systems99.gif index.html

1999-10-18 Thread lars
lars99/10/18 15:45:34

  Added:   systems99 systems-hall-a3.gif systems-logo.jpg systems99.gif
index.html
  Log:
  temporary directory with Systems 99 information.
  
  Revision  ChangesPath
  1.1  apache-site/systems99/systems-hall-a3.gif
  
Binary file
  
  
  1.1  apache-site/systems99/systems-logo.jpg
  
Binary file
  
  
  1.1  apache-site/systems99/systems99.gif
  
Binary file
  
  
  1.1  apache-site/systems99/index.html
  
  Index: index.html
  ===
  !doctype html public -//W3C//DTD HTML 4.0 Transitional//EN
   http://www.w3.org/TR/REC-html40/loose.dtd;
  html
  head
  titleThe Apache Software Foundation: Systems 99/title
  /head
  body bgcolor=#FF text=#00
link=#FF vlink=#80 alink=#FF
  
  
  table width=100% border=0
  trtd valign=top
pa href=http://www.apache.org/;img src=images/asf_logo.gif
alt=The Apache Software Foundation
border=0 width=387 height=100/a
/p
pnbsp; /p
  /td/tr
  /table
  
  table width=100% border=0
  trtd width=160 valign=top align=centerp
  ba href=FAQ.htmlFAQ/abr
a href=news.htmlNews amp; Status/abr
a href=mailinglists.htmlMailing Lists/abr
a href=contributing.htmlContributing/abr
a href=contact.htmlContact Info/abr
a href=credits.htmlCredits/abr
  /b
  hr width=50% size=4
  b
a href=bylaws.htmlBylaws/abr
a href=members.htmlMembers/abr
a href=board/Board of Directors/abr
a href=records/Public Records/abr
  /b
  hr width=50% size=4
a href=projects.htmlfont size=-1ASF Projects:/font/abr
  b   a href=../httpd.htmlApache Server/abr
a href=http://jakarta.apache.org/;Jakarta/abr
a href=http://java.apache.org/;Java-Apache/abr
a href=http://perl.apache.org/;mod_perl/abr
a href=http://php.apache.org/;mod_php/abr
a href=conferences.htmlConferences/abr
a href=./Foundation/abr
  /b
  /td
  td valign=top 
  
  div align=centerimg src=systems-logo.jpg alt=Systems 99/div
  h1 align=centerApache goes Systems/h1
  p
  
  Experts consider citeSystems/cite to be the IT-fair with the most 
competent
  visitors in Germany. Starting on the 18th of October of 1999, companies, 
developers
  and end-users will meet in Munich.
   
  P
  The booth of the Apache Software Foundation can be found at the
  LinuxPark in hall A3. 
  Systems 99 is your chance to meet some of the Apache developers and to find 
out
  more about the projects of the Apache Software Foundation.
  
  img src=systems-hall-a3.gif alt= align=right
  p
  Attending members:
  UL
  LIMartin Kraemer
  LIRalf Engelschall
  LILars Eilebrecht
  /UL
  
  P
  Further information about Systems 99 and LinuxPark can be found under
  a href=http://www.systems.de/linux/;http://www.systems.de/linux//A
  
  /p
  
  /td/tr
  /table
  /body
  /html
  
  
  


cvs commit: apache-site/systems99 index.html

1999-10-18 Thread lars
lars99/10/18 15:47:30

  Modified:systems99 index.html
  Log:
  fix typo
  
  Revision  ChangesPath
  1.2   +1 -1  apache-site/systems99/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/systems99/index.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.html1999/10/18 22:45:33 1.1
  +++ index.html1999/10/18 22:47:26 1.2
  @@ -10,7 +10,7 @@
   
   table width=100% border=0
   trtd valign=top
  -  pa href=http://www.apache.org/;img src=images/asf_logo.gif
  +  pa href=http://www.apache.org/;img src=../images/asf_logo.gif
 alt=The Apache Software Foundation
 border=0 width=387 height=100/a
 /p
  
  
  


cvs commit: apache-site related_projects.html

1999-09-18 Thread lars
lars99/09/18 09:24:01

  Modified:.related_projects.html
  Log:
  This should point to Brian Harvard's OS/2 pages.
  
  Revision  ChangesPath
  1.41  +1 -1  apache-site/related_projects.html
  
  Index: related_projects.html
  ===
  RCS file: /home/cvs/apache-site/related_projects.html,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- related_projects.html 1999/05/01 13:15:03 1.40
  +++ related_projects.html 1999/09/18 16:24:00 1.41
  @@ -140,7 +140,7 @@
   time./P
   
   HR
  -H3A NAME=os2 HREF=http://www.slink.com/ApacheOS2/;
  +H3A NAME=os2 HREF=http://silk.apana.org.au/apache/;
   Apache for OS/2/A/H3
   
   The primary motivation for this port is to show that OS/2 is a viable 
  
  
  


cvs commit: apache-devsite binaries.html

1999-08-20 Thread lars
lars99/08/20 14:25:31

  Modified:.binaries.html
  Log:
  no more sunos 4.1.4
  
  Revision  ChangesPath
  1.21  +0 -1  apache-devsite/binaries.html
  
  Index: binaries.html
  ===
  RCS file: /export/home/cvs/apache-devsite/binaries.html,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- binaries.html 1999/06/02 10:19:08 1.20
  +++ binaries.html 1999/08/20 21:25:30 1.21
  @@ -175,7 +175,6 @@
   LIsparc-sun-solaris2.5:Lars Eilebrecht
   LIsparc-sun-solaris2.6:Lars Eilebrecht, Ralf S. Engelschall
   LIsparc-sun-solaris2.7:   Cliff Skolnick
  -LIsparc-sun-sunos4.1.4:Lars Eilebrecht
   LIsparc-sun-sunos4.1.3_U1: Sameer Parekh
   /UL
   
  
  
  


cvs commit: apache-1.3 STATUS

1999-08-20 Thread lars
lars99/08/20 14:28:16

  Modified:.STATUS
  Log:
  just uploaded some binaries dists.
  
  Revision  ChangesPath
  1.752 +3 -5  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.751
  retrieving revision 1.752
  diff -u -r1.751 -r1.752
  --- STATUS1999/08/20 09:39:22 1.751
  +++ STATUS1999/08/20 21:28:13 1.752
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/08/20 09:39:22 $]
  +  Last modified at [$Date: 1999/08/20 21:28:13 $]
   
   Release:
   
  @@ -473,7 +473,6 @@
i686-unknown-linux2   no  Lars Eilebrecht
i686-whatever-linux2  no  Ken Coar
i386-unknown-linux(ELF)   no  Aram Mirzadeh, Michael Douglass
  - i386-unknown-netBSD-1.2.1 N/A Lars Eilebrecht
i386-unknown-netBSD-1.3.2 no  Lars Eilebrecht
i386-unknown-sco3 no  Ben Laurie
i386-unknown-sco5 no  Ben Laurie
  @@ -482,7 +481,7 @@
m88k-dg-dgux5.4R2.01  no  Sameer parekh
m88k-next-nextno  Rob Hartill
mips-dec-ultrix4.4no  Sameer Parekh
  - mips-unknown-linuxno  Lars Eilebrecht
  + mips-unknown-linuxyes Lars Eilebrecht
mips-sgi-irix5.3  no  Mark Imbrianco
mips-sgi-irix6.2  no  Lars Eilebrecht
mips-sgi-irix6.4  no  Lars Eilebrecht
  @@ -494,8 +493,7 @@
rs6000-ibm-aix4.2 no  Bill Stoddard
rs6000-ibm-aix4.3.2   no  Bill Stoddard
sparc-sun-solaris2.5  no  Lars Eilebrecht
  - sparc-sun-solaris2.6  no  Lars Eilebrecht
  + sparc-sun-solaris2.6  yes Lars Eilebrecht
sparc-sun-solaris2.7  no  Cliff Skolnick
  - sparc-sun-sunos4.1.4  no  Lars Eilebrecht, Michael Douglass
sparc-sun-sunos4.1.3_U1   no  Sameer Parekh
sparc-unknown-linux   no  Lars Eilebrecht
  
  
  


cvs commit: apache-1.3 KEYS

1999-08-07 Thread lars
lars99/08/07 06:35:03

  Modified:.KEYS
  Log:
  update my key...
  
  Revision  ChangesPath
  1.23  +232 -123  apache-1.3/KEYS
  
  Index: KEYS
  ===
  RCS file: /export/home/cvs/apache-1.3/KEYS,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- KEYS  1999/04/16 01:16:27 1.22
  +++ KEYS  1999/08/07 13:35:01 1.23
  @@ -386,133 +386,242 @@
   
   
   Type Bits/KeyIDDate   User ID
  -pub   999/F88341D9 1994/11/08 Lars Eilebrecht [EMAIL PROTECTED]
  +pub   999/F88341D9 1994/11/08 Lars Eilebrecht [EMAIL PROTECTED]
  +  Lars Eilebrecht [EMAIL PROTECTED]
  +  Lars Eilebrecht [EMAIL PROTECTED]
 Lars Eilebrecht [EMAIL PROTECTED]
  -  Lars `SFX' Eilebrecht [EMAIL PROTECTED]
  -  Lars `SFX' Eilebrecht [EMAIL PROTECTED]
  -  Lars `SFX' Eilebrecht [EMAIL PROTECTED]
   
   -BEGIN PGP PUBLIC KEY BLOCK-
  -Version: 2.6.3a
  +Version: 2.6.3ia
   
   mQCKAi6+wOsAAAED53PJgrIYS7iHbZn0ycrnzS03fwvwsDpoAVouoqqBSVNoVXH+
   lL+8HzX/fADvNyk1lYi5kTiYR2meKB1p0qpvj4bQ8ZEmcBemhV0FbESJ4CxIgy6V
  -euxOD3v9gauyf1u4lkfyLIsCepuJqpkH+aOviE9VhTcE/D6Pt/L4g0HZAAURtCFM
  -YXJzIEVpbGVicmVjaHQgPHNmeEB1bml4LWFnLm9yZz6JAJUDBRA2KRwZms08wKmf
  -dd0BASoSA/9ZwyAWilXJNMWsV0KfyUeHZ7CsFA9/KQixLtpSH8ij4raLasr6rurc
  -Sckrd+OiQKPQG0/TSXSAEP7suatV6XTTLEFHJbmqchTZXMSapwxFWGLxdG+buCiO
  -uVxbpop4ZoKz2xb+GtdeyeDr+//gFL+wbEqlZMXfvwgzBCxcOM/tZYkAkgMFEDPN
  -Dtg+j7fy+INB2QEBxpcD527wocmN2jHxCkmImID+YMVF8g1Rij3CEy+oLAZiiNWS
  -Rxj2lWTHhsVZXtzF53+AD79rJqrFhZUCx+W6vG46uLMuu3/VpnEfq2QsD0d6zIUv
  -SDFIxsy/s4knyvgfMeXczHmb7vjGbGsyP9mqjAyN7MUcqgBBANH4HX9CSRN8tC1M
  -YXJzIEVpbGVicmVjaHQgPExhcnMuRWlsZWJyZWNodEB1bml4LWFnLm9yZz6JAJID
  -BRAzzQwFPo+38viDQdkBAa31A+dPvsRw1zWvyMDp2aQwqIawIi2wiFl56lYfpkwW
  -WjsdftuK0HHe+gek0aJ1vLwJFlrivroEukF1JaK3kS/ob2u/TNIZ4MKWjfhbkJW4
  -0Y7gCKCUJPzh6hDw1nYfc4N9XKnwubiRVdW2ig1HVoKZUN9Ad034m30jMHEzqXbO
  -4LQxTGFycyBgU0ZYJyBFaWxlYnJlY2h0IDxTRlhAdW5peC1hZy51bmktc2llZ2Vu
  -LmRlPokAdQMFEDMR9XVLXCU0Hmjw3QEBftADALeK5boLfjNzxZ7g1VPHw6k6QwSU
  -ESwiPJCmGTIT5f941YhHqohgwN5kGR9XDxWCCJAqQfFvbxhiZv0zu4HvQ7FYLVLO
  -2zwZrVvOfR259jvGDFpPqRBq1ccxTNXuvf2a44kAlQIFEDD5Hn++gkWXZmzJrQEB
  -WVYD/R4XFxImsJxzpaykt8Hl4kpQNWYWHd5ae81QFla/vfIplBqeVWr299pUbO1x
  -Bt4EFPi5aya8CGwXs8uRsHKn3u711jfTri1mKpiMBWt149BsUk5lFCnE9gVo5UxY
  -cpM2vb1I5DKeo/8/DuYz1FQhXwOxGqBqIr+ggQ1fN7Q0v5qziQEVAwUQMSxVdPCJ
  -hGMAVxgRAQFafAf+OZxiZqpgeA3iMZzbOr17v4YjL/J4N3phrcy8ssh0rmTBbNHW
  -OfRR0yzGlAXespCSLzBnSQMph2MXc3Al51LK4z487iAQxpu5k/ZKrg5ahZI7X5ok
  -viTcRjmXkpbbXp+sMs6J3ZOOjxO1tWytSXW5/3lKwbjzaURlbUbBA9QQSGAYPnsw
  -Z+CPKRNuUsk2EI3y4DWVjuabOcCeNy4TLfB9UIY81oXfXOyT+i2FwZ0f1befeZuu
  -PICGQIxlEFi3Hd3hDEAgNJ8Hu9C6XACnYieT7dVYtlYH14UTk6/CLKkbWNhd/I5S
  -QMPbijKK2zU5U3vPcolA1UalSBckftDQ2iTmmYkAlQMFEDD5QYseKXCPGoSZUQEB
  -yFYD/jqPx2u8D1aQzKHvZqS9PUYSsPMTgn10FR/tp2c9Ch60f+BQ96fOUCzmRt94
  -Iq1iMZsJ0oTyLLf6wf/Mdb1LhvsGf7rXFATh25OUpPx1qPUWstSToHSn0+Zf8e1B
  -0p6PJ96duI6rimoc8NKppOwSmRvqAD3ATCKpMiOSwWe9+mBZiQBVAwUQMPl9Sgk0
  -Yuy5gjk9AQEX2AIAlCphj4JI/yvodYIlpC2MPOs+hfTvaMPVhSCZZ0EVfZgTZpLQ
  -XQDiUolYBvTHJnjBZyXZozln/df4MBHQgKWwmIkAVQIFEDD5RPk+NMzsOfhZGwEB
  -5EoCAINMQWZZn+12r2nFScCScf5TaKpm+Y6MfEsvVg0trveEJ74ibbFDo8ABZ2g6
  -FgzfDxAMbxNsUQaMrhh0TaSC9EyJAJUCBRAw+O6OHdm2eHD917EBAfj1A/4/cYEE
  -a7jN8+ptmxZKsfZ0xOP2dxsPnicDT4VR16MHN6rkVrto782XSiRx3ZUsd9RjUmfH
  -ZA3mHoJIGo6JRFVOeyjg3LEASSSfZr4YFkhutnf0lDlJOeEKhqvIw/dSO7MDwdLx
  -hOqAFv9UzAlpOm4GLx9p1N61xDl1dIYEnY9cOIkAlQIFEDD5QnyFat0badac6QEB
  -CCMEAKV60AedWZyXWokcwWIbW/PLgNTCh8JL1vijXGnBvT2PuA0L7/rCXPhbb20A
  -rrq+P6xbGFxi42iWieeU2T5zN5IlPObT6cPeRWJkxPnaSf8ZD33Y1almcuhhYMUc
  -7lkL7yqSo1J8TRVCSxjQ4W0+QDUFIEvrigb5Scd7zYHGOqoSiQBVAgUQMPjN2pva
  -UYPwhBsRAQGNhQH/Z6IlBI4hdGb8teelMgY2kf3Iq08NByyygJAI48HqTe0cKIW6
  -BPcBkJqMooJtRJTX6Rkt8fRKe/IPGeHGqyW3eIkA7gMFEDDhUR6K3WTWEs11KQEB
  -TnkGwQEgJMk8SHR+2iBmOJQ2x+kv4LVmPp8hdaKCBdfvJDmrSpuEgrBWFI9PDpSw
  -F7NWLPqESPnWo5dd8YeynzYz3aCiIXAOUB0rG8tujF1dSn/kFUCMqgqvbPOU3sSv
  -6tVlECIAh67GTNHn61IIhLM0KG4v9elo0Lk/SpWwRRPJZW/ltQBApjtR+juFOiq6
  -86+eE9kKBCImCIthBeE/cf6JfwuS4+1ui+MmkkqrnO8+07bdjbkWTSzTL3l12v/t
  -M2p8Fwqps41y+3nIEOzq7Isf4zBjfw2ZKeXbEXq0M0xhcnMgYFNGWCcgRWlsZWJy
  -ZWNodCA8U0ZYQGFwcGwyLmhyei51bmktc2llZ2VuLmRlPokAlQIFEDD5Hv6+gkWX
  -ZmzJrQEBD9QD/iIIvOUqyKRBWjHgJD7zoskxDQH/YVhJu59zoCEOJGwXFPLlT3ce
  -meMCaVLa5XvoDnLYWZ/bfI5nFd9vF9GwwbmP8/x39Z3N2xKfJpD8eH5inu5AwtIs
  -kfXjmcZhSfDgv2XpAaFigz3wIBt+XbkPRxJJxfqD5oJ1ys0qNe0U6jjyiQEVAwUQ
  -MSxVrvCJhGMAVxgRAQHLVgf/cW6FlzmOeIvJ/3yB7vhSOlpivnY00iKnzzCpWLOa
  -saC4NPazhqNIewBa01KSuamIicYkzXk8MeaTq5EaQfJyA+NtdWSm/3/ivKWoO4Ka
  -qJbVPnxaDnB2KBH+2mq0BJ4rS4i2jVZuopbtMAHV+lQUHaVH826YaFPa+425A/H+
  -Oaqn2EdkL80fpIJsACsudYPDGCKS3zcMjspVK1cXqNRDzIOZ8I/XtyNEJpw1yRGf
  -t4jrn4lj9jU4y0v6sFOt6jpuvAmyRN/pebwjYJw1Ye697MMkn0nEafH55Et+XfdB
  -OYNm3Sb

cvs commit: apache-1.3 STATUS

1999-06-13 Thread lars
lars99/06/13 04:25:25

  Modified:.STATUS
  Log:
  update
  
  Revision  ChangesPath
  1.714 +3 -3  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.713
  retrieving revision 1.714
  diff -u -r1.713 -r1.714
  --- STATUS1999/06/11 13:18:57 1.713
  +++ STATUS1999/06/13 11:25:24 1.714
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/06/11 13:18:57 $]
  +  Last modified at [$Date: 1999/06/13 11:25:24 $]
   
   Release:
   
  @@ -94,7 +94,7 @@
   * Mathijs Maassen [EMAIL PROTECTED] path to disable the initial
 check/stat of DocumentRoot.
   Message-ID: [EMAIL PROTECTED]
  - Status: Jim +1 (will add to docs)
  + Status: Jim +1 (will add to docs), Lars +1
   
   * Stipe Tolj's Cygwin32 port
PR#: 2936
  @@ -117,7 +117,7 @@
Message-ID: [EMAIL PROTECTED]
Message-ID: [EMAIL PROTECTED]
Message-ID: [EMAIL PROTECTED]
  - Status: Dean +1, Randy +1, Jim +1
  + Status: Dean +1, Randy +1, Jim +1, Lars +1
Previous Status: Dean +1, Randy +1, Jim +1,
Lars +1 (if someone writes the docs)
   
  
  
  


cvs commit: apache-1.3 STATUS

1999-06-06 Thread lars
lars99/06/05 18:07:50

  Modified:.STATUS
  Log:
  Looks like this was already fixed by Randys last binbuild patch.
  
  Revision  ChangesPath
  1.704 +1 -6  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.703
  retrieving revision 1.704
  diff -u -r1.703 -r1.704
  --- STATUS1999/06/05 15:38:28 1.703
  +++ STATUS1999/06/06 01:07:48 1.704
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/06/05 15:38:28 $]
  +  Last modified at [$Date: 1999/06/06 01:07:48 $]
   
   Release:
   
  @@ -101,11 +101,6 @@
 to refer to URIs for non-static resources.
Message-ID: [EMAIL PROTECTED]
Status: Ken +1 (on concept)
  -
  -* Eli Marmor [EMAIL PROTECTED]'s patch to include apxs in ./configure's
  -  and binbuild.sh's filesystem path editing.
  - Message-ID: PR#4526
  - Status: 
   
   * Ralf's [PATCH] to add EAPI (ctx, hook, mm, etc.) to the base package
Message-ID: [EMAIL PROTECTED]
  
  
  


cvs commit: apache-1.3 STATUS

1999-06-06 Thread lars
lars99/06/05 18:17:42

  Modified:.STATUS
  Log:
  no vetos today ;-)
  
  Revision  ChangesPath
  1.705 +7 -7  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.704
  retrieving revision 1.705
  diff -u -r1.704 -r1.705
  --- STATUS1999/06/06 01:07:48 1.704
  +++ STATUS1999/06/06 01:17:41 1.705
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/06/06 01:07:48 $]
  +  Last modified at [$Date: 1999/06/06 01:17:41 $]
   
   Release:
   
  @@ -100,7 +100,7 @@
   * Salvador Ortiz Garcia [EMAIL PROTECTED]' patch to allow 
DirectoryIndex
 to refer to URIs for non-static resources.
Message-ID: [EMAIL PROTECTED]
  - Status: Ken +1 (on concept)
  + Status: Ken +1 (on concept), Lars +1 (on concept)
   
   * Ralf's [PATCH] to add EAPI (ctx, hook, mm, etc.) to the base package
Message-ID: [EMAIL PROTECTED]
  @@ -109,25 +109,25 @@
   
   * Tony Finch's patch to support mass virtual hosting
Message-ID: [EMAIL PROTECTED]
  - Status: Dean +1, Randy +1
  + Status: Dean +1, Randy +1, Lars +1 (if someone writes the docs)
   
   * Brian Havard's patch to remove dependency of mod_auth_dbm on mod_auth.
 (PR#2598)
Message-ID: [EMAIL PROTECTED]
  - Status:
  + Status: Lars +1 (on concept)
   
   * Aidan Cully's patch to allow assignment of 'ownership' of resources
 to either the server UID or the file's owner.
Message-ID: [EMAIL PROTECTED]
  - Status: Ken +1, Dean +1, Randy +1
  + Status: Ken +1, Dean +1, Randy +1, Lars +0
   
   * John Giannadrea's patch for ceiling on file size for mmap (PR#4122)
Message-ID: [EMAIL PROTECTED]
  - Status: Ken +1, Dean +1, Randy +1
  + Status: Ken +1, Dean +1, Randy +1, Lars +1
   
   * Keith Wannamaker's NT multiple services patch
Message-ID: [EMAIL PROTECTED]
  - Status: Bill +1 (on concept)
  + Status: Bill +1 (on concept), Lars +1 (on concept)
   
   * Jun-ichiro itojun Hagino's [PATCH] IPv6 enable patch
 ftp://ftp.kame.net/pub/kame/misc/apache-134-v6-19990118.diff.gz
  
  
  


cvs commit: apache-1.3 STATUS

1999-06-06 Thread lars
lars99/06/06 06:20:10

  Modified:.STATUS
  Log:
  cygwin32 port
  
  Revision  ChangesPath
  1.706 +5 -1  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.705
  retrieving revision 1.706
  diff -u -r1.705 -r1.706
  --- STATUS1999/06/06 01:17:41 1.705
  +++ STATUS1999/06/06 13:20:09 1.706
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/06/06 01:17:41 $]
  +  Last modified at [$Date: 1999/06/06 13:20:09 $]
   
   Release:
   
  @@ -96,6 +96,10 @@
   
   
   Available Patches:
  +
  +* Stipe Tolj's Cygwin32 port
  +PR#: 2936
  +Status: Lars +1 (on concept)
   
   * Salvador Ortiz Garcia [EMAIL PROTECTED]' patch to allow 
DirectoryIndex
 to refer to URIs for non-static resources.
  
  
  


cvs commit: apache-1.3 STATUS

1999-06-06 Thread lars
lars99/06/06 06:45:51

  Modified:.STATUS
  Log:
  inetd mode sucks...
  
  Revision  ChangesPath
  1.707 +5 -1  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.706
  retrieving revision 1.707
  diff -u -r1.706 -r1.707
  --- STATUS1999/06/06 13:20:09 1.706
  +++ STATUS1999/06/06 13:45:50 1.707
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/06/06 13:20:09 $]
  +  Last modified at [$Date: 1999/06/06 13:45:50 $]
   
   Release:
   
  @@ -245,6 +245,10 @@
 See [EMAIL PROTECTED]
   
   Open issues:
  +
  +* there are still some PRs about inetd mode
  +  Should we deprecate ServerType inetd if the next release is 1.4.0?
  ++1: Lars
   
   * general/3787: SERVER_PORT is always 80 if client comes to any port
 = needs review by the protocol guys, I think.
  
  
  


cvs commit: apache-site/info apache_books.html

1999-05-15 Thread lars
lars99/05/15 09:29:13

  Modified:info apache_books.html
  Log:
  fix urls
  
  Revision  ChangesPath
  1.12  +2 -2  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.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- apache_books.html 1999/05/15 16:25:21 1.11
  +++ apache_books.html 1999/05/15 16:29:12 1.12
  @@ -29,7 +29,7 @@
   UL
LI
 DL
  -   DTA 
HREF=http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:0-7645-3306-1:book-idg;
  +   DTA 
HREF=http://www.idgbooks.com/cgi/fill_out_template.pl?idgbook:0-7645-3306-1:book-idg;
  STRONGApache Server Administrators Handbook/STRONG/A
  /DT
  DDAuthor: Mohammed J. Kabir
  @@ -98,7 +98,7 @@
/LI
LI
 DL
  -   DTA 
HREF=http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:0-7645-3218-9:book-idg;
  +   DTA 
HREF=http://www.idgbooks.com/cgi/fill_out_template.pl?idgbook:0-7645-3218-9:book-idg;
  STRONGApache Server Bible/STRONG/A
  /DT
  DDAuthor: Mohammed J. Kabir
  
  
  


cvs commit: apache-devsite binaries.html

1999-03-30 Thread lars
lars99/03/30 13:06:49

  Modified:.binaries.html
  Log:
  Nobody seems to know these persons...
  
  Revision  ChangesPath
  1.19  +5 -6  apache-devsite/binaries.html
  
  Index: binaries.html
  ===
  RCS file: /export/home/cvs/apache-devsite/binaries.html,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- binaries.html 1999/03/27 22:54:52 1.18
  +++ binaries.html 1999/03/30 21:06:48 1.19
  @@ -125,7 +125,7 @@
   
   H4FreeBSD/H4
   UL
  -LIi386-whatever-freebsd2.1:Andrew Wilson, Brian Tao
  +LIi386-whatever-freebsd2.1:Andrew Wilson
   LIi386-whatever-freebsd2.2.8:  Jim Jagielski
   LIi386-whatever-freebsd3.0:Ken Coar
   LIi686-whatever-freebsd3.1:Ralf S. Engelschall
  @@ -138,16 +138,15 @@
   
   H4Irix/H4
   UL
  -LImips-sgi-irix5.3:Mark Imbrianco
   LImips-sgi-irix6.2:Ralf S. Engelschall, Lars Eilebrecht
   /UL
   
   H4Linux/H4
   UL
   LIarmv4l-whatever-linux2: Rasmus Lerdorf
  -LIi386-whatever-linux(ELF):Aram Mirzadeh, Michael Douglass
  +LIi386-whatever-linux(ELF):Aram Mirzadeh
   LIi386-whatever-linux(a.out):  Sameer Parekh
  -LIi586-whatever-linux2:Ralf S. Engelschall, Lars Eilebrecht
  +LIi586-whatever-linux2:Ralf S. Engelschall, Lars Eilebrecht
   LIi686-whatever-linux2:Lars Eilebrecht
   LImips-whatever-linux2:Lars Eilebrecht
   LIsparc-whatever-linux2:   Lars Eilebrecht
  @@ -155,7 +154,7 @@
   
   H4NetBSD/H4
   UL
  -LIi386-whatever-netBSD:Lars Eilebrecht, Bill lt;[EMAIL PROTECTED]gt;
  +LIi386-whatever-netBSD:Lars Eilebrecht
   /UL
   
   H4NEXT/H4
  @@ -176,7 +175,7 @@
   LIsparc-sun-solaris2.5:Lars Eilebrecht
   LIsparc-sun-solaris2.6:Lars Eilebrecht, Ralf S. Engelschall
   LIsparc-sun-solaris2.7:   Cliff Skolnick
  -LIsparc-sun-sunos4.1.4:Lars Eilebrecht, Michael Douglass
  +LIsparc-sun-sunos4.1.4:Lars Eilebrecht
   LIsparc-sun-sunos4.1.3_U1: Sameer Parekh
   /UL
   
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-26 Thread lars
lars99/03/25 16:15:25

  Modified:.STATUS
  Log:
  update the binary list... the are already available.
  
  Revision  ChangesPath
  1.679 +4 -4  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.678
  retrieving revision 1.679
  diff -u -r1.678 -r1.679
  --- STATUS1999/03/25 23:22:53 1.678
  +++ STATUS1999/03/26 00:15:24 1.679
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/25 23:22:53 $]
  +  Last modified at [$Date: 1999/03/26 00:15:24 $]
   
   Release:
   
  @@ -25,7 +25,7 @@
hppa1.1-hp-hpux   no  Rob Hartill
i386-slackware-linux(a.out)   no  Sameer Parekh
i386-sun-solaris2.5   no  Sameer Parekh
  - i386-sun-solaris2.7   no  Cliff Skolnick
  + i386-sun-solaris2.7   yes Cliff Skolnick
i386-unixware-svr4no  Sameer Parekh
i386-unknown-freebsd2.1   no  Andrew Wilson, Brian Tao
i386-unknown-freebsd2.2.8 yes Jim Jagielski
  @@ -53,8 +53,8 @@
rs6000-ibm-aix4.3.2   no  Bill Stoddard
sparc-sun-solaris2.5  yes Lars Eilebrecht
sparc-sun-solaris2.6  yes Lars Eilebrecht
  - sparc-sun-solaris2.7  no  Cliff Skolnick
  - sparc-sun-sunos4.1.4  no  Lars Eilebrecht, Michael Douglass
  + sparc-sun-solaris2.7  yes Cliff Skolnick
  + sparc-sun-sunos4.1.4  yes Lars Eilebrecht, Michael Douglass
sparc-sun-sunos4.1.3_U1   no  Sameer Parekh
sparc-unknown-linux   yes Lars Eilebrecht
mips-dec-ultrix4.4no  Sameer Parekh
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-25 Thread lars
lars99/03/25 15:22:54

  Modified:.STATUS
  Log:
  
  
  Revision  ChangesPath
  1.678 +3 -7  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.677
  retrieving revision 1.678
  diff -u -r1.677 -r1.678
  --- STATUS1999/03/25 16:22:27 1.677
  +++ STATUS1999/03/25 23:22:53 1.678
  @@ -1,15 +1,11 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/25 16:22:27 $]
  +  Last modified at [$Date: 1999/03/25 23:22:53 $]
   
   Release:
   
  -1.3.6-dev: current.
  -  - Tarball tagging/rolling:  March 22. Monday
  -  - Release date: March 24. Wednesday [ 0:00 CET]
  -  - Announcement: March 24. Wednesday [23:00 CET]
  -  - Release manager:  Lars
  -  - Win32 release:Paul
  +1.3.7-dev: current.
   
  +1.3.6. Tagged and rolled on Mar. 22. Released and announced on 24th.
   1.3.5: Not released.
   1.3.4: Tagged and rolled on Jan. 9.  Released on 11th, announced on 12th.
   1.3.3: Tagged and rolled on Oct. 7.  Released on 9th, announced on 10th.
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-24 Thread lars
lars99/03/24 12:22:43

  Modified:.STATUS
  Log:
  binaries...
  
  Revision  ChangesPath
  1.674 +12 -12apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.673
  retrieving revision 1.674
  diff -u -r1.673 -r1.674
  --- STATUS1999/03/24 17:41:50 1.673
  +++ STATUS1999/03/24 20:22:39 1.674
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/24 17:41:50 $]
  +  Last modified at [$Date: 1999/03/24 20:22:39 $]
   
   Release:
   
  @@ -24,7 +24,7 @@
Platform  Avail.  Volunteer

--
alpha-dec-osf3.0  no  Sameer Parekh
  - alpha-dec-osf4.0  no  Lars Eilebrecht
  + alpha-dec-osf4.0  yes Lars Eilebrecht
armv4l-whatever-linux2yes Rasmus Lerdorf
hppa1.1-hp-hpux   no  Rob Hartill
i386-slackware-linux(a.out)   no  Sameer Parekh
  @@ -35,11 +35,11 @@
i386-unknown-freebsd2.2.8 yes Jim Jagielski
i386-whatever-freebsd3.0  yes Ken Coar
i686-pc-freebsd3.1no  Ralf S. Engelschall
  - i586-unknown-linux2   no  Ralf S. Engelschall, Lars Eilebrecht
  - i686-unknown-linux2   no  Lars Eilebrecht
  + i586-unknown-linux2   yes Ralf S. Engelschall, Lars Eilebrecht
  + i686-unknown-linux2   yes Lars Eilebrecht
i386-unknown-linux(ELF)   no  Aram Mirzadeh, Michael Douglass
  - i386-unknown-netBSD-1.2.1 no  Lars Eilebrecht
  - i386-unknown-netBSD-1.3.2 no  Lars Eilebrecht
  + i386-unknown-netBSD-1.2.1 N/A Lars Eilebrecht
  + i386-unknown-netBSD-1.3.2 yes  Lars Eilebrecht
i386-unknown-sco3 no  Ben Laurie
i386-unknown-sco5 no  Ben Laurie
i386-sni-svr4 yes Martin Kraemer
  @@ -47,22 +47,22 @@
m88k-dg-dgux5.4R2.01  no  Sameer parekh
m88k-next-nextno  Rob Hartill
mips-sgi-irix5.3  no  Mark Imbrianco
  - mips-sgi-irix6.2  no  Lars Eilebrecht
  + mips-sgi-irix6.2  yes Lars Eilebrecht
mips-sgi-irix6.4  no  Lars Eilebrecht
mips-sni-svr4 yes Martin Kraemer
OS/2  yes Brian Havard
rs6000-ibm-aix3.2.5   no  Sameer Parekh
  - rs6000-ibm-aix4.1 no  Lars Eilebrecht
  + rs6000-ibm-aix4.1 yes Lars Eilebrecht
rs6000-ibm-aix4.2 no  Bill Stoddard
rs6000-ibm-aix4.3.2   no  Bill Stoddard
  - sparc-sun-solaris2.5  no  Lars Eilebrecht
  - sparc-sun-solaris2.6  no  Lars Eilebrecht
  + sparc-sun-solaris2.5  yes Lars Eilebrecht
  + sparc-sun-solaris2.6  yes Lars Eilebrecht
sparc-sun-solaris2.7  no  Cliff Skolnick
sparc-sun-sunos4.1.4  no  Lars Eilebrecht, Michael Douglass
sparc-sun-sunos4.1.3_U1   no  Sameer Parekh
  - sparc-unknown-linux   no  Lars Eilebrecht
  + sparc-unknown-linux   yes Lars Eilebrecht
mips-dec-ultrix4.4no  Sameer Parekh
  - mips-unknown-linuxno  Lars Eilebrecht
  + mips-unknown-linuxyes Lars Eilebrecht
   
   
   RELEASE SHOWSTOPPERS:
  
  
  


cvs commit: apache-1.3/src/os/win32 registry.c

1999-03-23 Thread lars
lars99/03/22 16:11:28

  Modified:src/include httpd.h
   src/os/win32 registry.c
  Log:
  let's go for take 2...
  
  Revision  ChangesPath
  1.275 +2 -2  apache-1.3/src/include/httpd.h
  
  Index: httpd.h
  ===
  RCS file: /home/cvs/apache-1.3/src/include/httpd.h,v
  retrieving revision 1.274
  retrieving revision 1.275
  diff -u -r1.274 -r1.275
  --- httpd.h   1999/03/21 05:07:17 1.274
  +++ httpd.h   1999/03/23 00:10:59 1.275
  @@ -413,7 +413,7 @@
* Example: Apache/1.1.0 MrWidget/0.1-alpha 
*/
   
  -#define SERVER_BASEVERSION Apache/1.3.6-dev/* SEE COMMENTS ABOVE */
  +#define SERVER_BASEVERSION Apache/1.3.6/* SEE COMMENTS ABOVE */
   #define SERVER_VERSION  SERVER_BASEVERSION
   enum server_token_type {
   SrvTk_MIN,   /* eg: Apache/1.3.0 */
  @@ -429,7 +429,7 @@
* Always increases along the same track as the source branch.
* For example, Apache 1.4.2 would be '10402100', 2.5b7 would be '2057'.
*/
  -#define APACHE_RELEASE 10306000
  +#define APACHE_RELEASE 10306100
   
   #define SERVER_PROTOCOL HTTP/1.1
   #ifndef SERVER_SUPPORT
  
  
  
  1.17  +1 -1  apache-1.3/src/os/win32/registry.c
  
  Index: registry.c
  ===
  RCS file: /home/cvs/apache-1.3/src/os/win32/registry.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- registry.c1999/03/21 05:07:22 1.16
  +++ registry.c1999/03/23 00:11:27 1.17
  @@ -28,7 +28,7 @@
   
   #define VENDOR   Apache Group
   #define SOFTWARE Apache
  -#define VERSION  1.3.6 dev
  +#define VERSION  1.3.6
   
   #define REGKEY SOFTWARE\\ VENDOR \\ SOFTWARE \\ VERSION
   
  
  
  


cvs commit: apache-1.3/src Configure CHANGES

1999-03-23 Thread lars
lars99/03/22 16:36:59

  Modified:src/include httpd.h
   src/os/win32 registry.c
   src  Configure CHANGES
  Log:
  yet another new dev version.
  
  Revision  ChangesPath
  1.276 +2 -2  apache-1.3/src/include/httpd.h
  
  Index: httpd.h
  ===
  RCS file: /home/cvs/apache-1.3/src/include/httpd.h,v
  retrieving revision 1.275
  retrieving revision 1.276
  diff -u -r1.275 -r1.276
  --- httpd.h   1999/03/23 00:10:59 1.275
  +++ httpd.h   1999/03/23 00:36:33 1.276
  @@ -413,7 +413,7 @@
* Example: Apache/1.1.0 MrWidget/0.1-alpha 
*/
   
  -#define SERVER_BASEVERSION Apache/1.3.6/* SEE COMMENTS ABOVE */
  +#define SERVER_BASEVERSION Apache/1.3.7-dev/* SEE COMMENTS ABOVE */
   #define SERVER_VERSION  SERVER_BASEVERSION
   enum server_token_type {
   SrvTk_MIN,   /* eg: Apache/1.3.0 */
  @@ -429,7 +429,7 @@
* Always increases along the same track as the source branch.
* For example, Apache 1.4.2 would be '10402100', 2.5b7 would be '2057'.
*/
  -#define APACHE_RELEASE 10306100
  +#define APACHE_RELEASE 10307000
   
   #define SERVER_PROTOCOL HTTP/1.1
   #ifndef SERVER_SUPPORT
  
  
  
  1.18  +1 -1  apache-1.3/src/os/win32/registry.c
  
  Index: registry.c
  ===
  RCS file: /home/cvs/apache-1.3/src/os/win32/registry.c,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- registry.c1999/03/23 00:11:27 1.17
  +++ registry.c1999/03/23 00:36:46 1.18
  @@ -28,7 +28,7 @@
   
   #define VENDOR   Apache Group
   #define SOFTWARE Apache
  -#define VERSION  1.3.6
  +#define VERSION  1.3.7 dev
   
   #define REGKEY SOFTWARE\\ VENDOR \\ SOFTWARE \\ VERSION
   
  
  
  
  1.334 +1 -1  apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.333
  retrieving revision 1.334
  diff -u -r1.333 -r1.334
  --- Configure 1999/03/21 05:07:24 1.333
  +++ Configure 1999/03/23 00:36:51 1.334
  @@ -1568,7 +1568,7 @@
#select the special subtarget for shared core generation
SUBTARGET=target_shared
#determine additional suffixes for libhttpd.so
  - V=1 R=3 P=6
  + V=1 R=3 P=7
if [ x$SHLIB_SUFFIX_DEPTH = x0 ]; then
SHLIB_SUFFIX_LIST=
fi
  
  
  
  1.1291+3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1290
  retrieving revision 1.1291
  diff -u -r1.1290 -r1.1291
  --- CHANGES   1999/03/22 23:38:21 1.1290
  +++ CHANGES   1999/03/23 00:36:52 1.1291
  @@ -1,3 +1,6 @@
  +Changes with Apache 1.3.7
  +
  +
   Changes with Apache 1.3.6
   
 *) Removed new PassAllEnv code due to DSO problems. [Lars Eilebrecht]
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-23 Thread lars
lars99/03/23 13:19:49

  Modified:.STATUS
  Log:
  
  
  Revision  ChangesPath
  1.670 +3 -3  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.669
  retrieving revision 1.670
  diff -u -r1.669 -r1.670
  --- STATUS1999/03/23 15:43:48 1.669
  +++ STATUS1999/03/23 21:19:48 1.670
  @@ -1,12 +1,12 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/23 15:43:48 $]
  +  Last modified at [$Date: 1999/03/23 21:19:48 $]
   
   Release:
   
   1.3.6-dev: current.
 - Tarball tagging/rolling:  March 22. Monday
  -  - Release date: March 24. Wednesday
  -  - Announcement: March 24. Wednesday
  +  - Release date: March 24. Wednesday [ 0:00 CET]
  +  - Announcement: March 24. Wednesday [23:00 CET]
 - Release manager:  Lars
 - Win32 release:Paul
   
  
  
  


cvs commit: apache-site/dist README.html .htaccess Announcement.html Announcement.txt

1999-03-23 Thread lars
lars99/03/23 15:24:15

  Modified:dist README.html .htaccess Announcement.html
Announcement.txt
  Log:
  Release 1.3.6
  
  Revision  ChangesPath
  1.20  +5 -3  apache-site/dist/README.html
  
  Index: README.html
  ===
  RCS file: /export/home/cvs/apache-site/dist/README.html,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- README.html   1999/01/12 04:34:14 1.19
  +++ README.html   1999/03/23 23:24:08 1.20
  @@ -1,6 +1,6 @@
  -H2Apache 1.3.4 Released/H2
  +H2Apache 1.3.6 Released/H2
   
  -PApache 1.3.4 is a maintenance release with numerous bug fixes.
  +PApache 1.3.6 is a maintenance release with numerous bug fixes.
   For details, see the A HREF=CHANGES_1.3v1.3 CHANGES/A file.
   
   PFor information about new features in 1.3, see the 
  @@ -13,6 +13,8 @@
   H2Binary Releases/H2
   
   PAre available in the A HREF=binaries/binaries//A directory.
  +BRAs of Apache 1.3.6 every binary distributions contains an
  +install script. See README for details.
   
   H2PGP Signatures/H2
   
  @@ -26,7 +28,7 @@
   distribution./P
   PREe.g.
   % pgpk -a KEYS
  -% pgpv apache_1.3.4.tar.gz.asc
  +% pgpv apache_1.3.6.tar.gz.asc
   /PRE
   
   H2Contributory Patches/Modules/Code/H2
  
  
  
  1.20  +3 -0  apache-site/dist/.htaccess
  
  Index: .htaccess
  ===
  RCS file: /export/home/cvs/apache-site/dist/.htaccess,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- .htaccess 1999/02/26 00:40:02 1.19
  +++ .htaccess 1999/03/23 23:24:09 1.20
  @@ -13,6 +13,9 @@
   AddDescription 1.3.4 compressed source apache_1.3.4.tar.Z
   AddDescription 1.3.4 gzipped source apache_1.3.4.tar.gz
   AddDescription 1.3.4 Win32 binary apache_1_3_4.exe
  +AddDescription 1.3.6 compressed source apache_1.3.6.tar.Z
  +AddDescription 1.3.6 gzipped source apache_1.3.6.tar.gz
  +AddDescription 1.3.6 Win32 binary apache_1_3_6.exe
   AddDescription List of changes in 1.3 /www/apache.org/dist/CHANGES_1.3
   AddDescription List of changes in 1.2 /www/apache.org/dist/CHANGES_1.2
   AddDescription Developer PGP keys /www/apache.org/dist/KEYS
  
  
  
  1.14  +67 -27apache-site/dist/Announcement.html
  
  Index: Announcement.html
  ===
  RCS file: /export/home/cvs/apache-site/dist/Announcement.html,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Announcement.html 1999/01/12 04:34:13 1.13
  +++ Announcement.html 1999/03/23 23:24:10 1.14
  @@ -1,43 +1,64 @@
   HTML
HEAD
  -  TITLEApache 1.3.4 Released/TITLE
  +  TITLEApache 1.3.6 Released/TITLE
/HEAD
BODY
   
  -H1Apache 1.3.4 Released/H1
  +H1Apache 1.3.6 Released/H1
   
   P
   The Apache Group is pleased to announce the release of version
  -1.3.4 of the Apache HTTP server.
  +1.3.6 of the Apache HTTP server.
   
   P
  -This new Apache version incorporates over 90 significant improvements
  -to the server, including avoidance of some denial-of-service attacks,
  -support for 3rd-party WebDAV modules, a complete overhaul of content
  -negotiation, optional column sorting for fancy indexes, the ability to
  -set a DefaultLanguage, and many fixes to improve consistency, portability,
  -and squish bugs.  A complete listing is provided in the src/CHANGES file.
  -
  -P
  -Of special note are the many changes to the Apache configuration process.
  -The default path layout generated by the configure script has been
  -changed to be more consistent with the traditional Apache layout, and
  -several new command-line options have been added to make compilation
  -easier.  Please see the README.configure and INSTALL files for complete
  -information.  In addition, we have moved all of the server configuration
  -directives to a single file (httpd.conf-dist), updated mime.types, and
  -improved the examples for first-time installers.  Finally, a few of the
  -rarely-used command-line options for httpd have been changed to be more
  -consistent with the help options of other programs.
  +This new Apache version incorporates over 60 significant improvements
  +to the server.  Apart from portability and security fixes, documentation
  +enhancements, performance improvements, and assorted other minor
  +features or fixes notable changes are:
   
  +UL
  +LImod_log_config now supports conditional logging based upon
  +   environment variables and support for multiline entries.
  +
  +LINew CustomLog directive %V: This logs the hostname according to the
  +   UseCanonicalName setting (this is the pre-1.3.4 behaviour of %v).
  +
  +LIEnhanced mod_rewrite's mapfile handling: The in-core cache for text
  +   and DBM format mapfiles now uses a hash table with LRU functionality.
  +   Furthermore map lookups for non

cvs commit: apache-site index.html

1999-03-23 Thread lars
lars99/03/23 15:27:37

  Modified:.index.html
  Log:
  update
  
  Revision  ChangesPath
  1.75  +3 -3  apache-site/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/index.html,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- index.html1999/02/16 15:13:40 1.74
  +++ index.html1999/03/23 23:27:36 1.75
  @@ -53,13 +53,13 @@
   
   PHR
   
  -H2 ALIGN=CENTERApache 1.3.4 Now Available/H2
  +H2 ALIGN=CENTERApache 1.3.6 Now Available/H2
   
   PBLOCKQUOTE
   
The Apache Group is pleased to announce the release of the
  - 1.3.4 version of the Apache HTTP server, including a Win32 build.
  - Apache 1.3.4 is the best version of Apache currently available;
  + 1.3.6 version of the Apache HTTP server, including a Win32 build.
  + Apache 1.3.6 is the best version of Apache currently available;
everyone running 1.2.X servers or earlier should upgrade to 1.3, as there
will not be any further 1.2.X releases.
At present, the Win32 port of Apache is not
  
  
  


cvs commit: apache-site/dist .htaccess

1999-03-23 Thread lars
lars99/03/23 15:32:39

  Modified:dist .htaccess
  Log:
  fix filename
  
  Revision  ChangesPath
  1.21  +2 -2  apache-site/dist/.htaccess
  
  Index: .htaccess
  ===
  RCS file: /export/home/cvs/apache-site/dist/.htaccess,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- .htaccess 1999/03/23 23:24:09 1.20
  +++ .htaccess 1999/03/23 23:32:36 1.21
  @@ -12,10 +12,10 @@
   AddDescription 1.3.3 Win32 binary apache_1_3_3.exe
   AddDescription 1.3.4 compressed source apache_1.3.4.tar.Z
   AddDescription 1.3.4 gzipped source apache_1.3.4.tar.gz
  -AddDescription 1.3.4 Win32 binary apache_1_3_4.exe
  +AddDescription 1.3.4 Win32 binary apache_1_3_4_win32.exe
   AddDescription 1.3.6 compressed source apache_1.3.6.tar.Z
   AddDescription 1.3.6 gzipped source apache_1.3.6.tar.gz
  -AddDescription 1.3.6 Win32 binary apache_1_3_6.exe
  +AddDescription 1.3.6 Win32 binary apache_1_3_6_win32.exe
   AddDescription List of changes in 1.3 /www/apache.org/dist/CHANGES_1.3
   AddDescription List of changes in 1.2 /www/apache.org/dist/CHANGES_1.2
   AddDescription Developer PGP keys /www/apache.org/dist/KEYS
  
  
  


cvs commit: apache-site/dist README.html

1999-03-23 Thread lars
lars99/03/23 15:34:17

  Modified:dist README.html
  Log:
  typo
  
  Revision  ChangesPath
  1.21  +1 -1  apache-site/dist/README.html
  
  Index: README.html
  ===
  RCS file: /export/home/cvs/apache-site/dist/README.html,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- README.html   1999/03/23 23:24:08 1.20
  +++ README.html   1999/03/23 23:34:16 1.21
  @@ -13,7 +13,7 @@
   H2Binary Releases/H2
   
   PAre available in the A HREF=binaries/binaries//A directory.
  -BRAs of Apache 1.3.6 every binary distributions contains an
  +BRAs of Apache 1.3.6 every binary distribution contains an
   install script. See README for details.
   
   H2PGP Signatures/H2
  
  
  


cvs commit: apache-site/dist HEADER.html

1999-03-23 Thread lars
lars99/03/23 15:57:16

  Modified:dist HEADER.html
  Log:
  yet another file to update...
  
  Revision  ChangesPath
  1.7   +1 -1  apache-site/dist/HEADER.html
  
  Index: HEADER.html
  ===
  RCS file: /export/home/cvs/apache-site/dist/HEADER.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- HEADER.html   1999/01/12 04:34:14 1.6
  +++ HEADER.html   1999/03/23 23:57:12 1.7
  @@ -5,5 +5,5 @@
   closer mirror to you.BR 
   A HREF=http://www.apache.org/dyn/closer.cgi;Go here to find it./A
   H2
  - A HREF=Announcement.htmlApache 1.3.4 for Unix and Win32/A is now 
available.
  + A HREF=Announcement.htmlApache 1.3.6/A is now available.
   /H2
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-22 Thread lars
lars99/03/22 14:36:58

  Modified:.STATUS
  Log:
  No 1.3.5 release...
  
  Revision  ChangesPath
  1.666 +25 -24apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.665
  retrieving revision 1.666
  diff -u -r1.665 -r1.666
  --- STATUS1999/03/22 20:18:43 1.665
  +++ STATUS1999/03/22 22:36:55 1.666
  @@ -1,15 +1,16 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/22 20:18:43 $]
  +  Last modified at [$Date: 1999/03/22 22:36:55 $]
   
   Release:
   
  -1.3.5-dev: current.
  -  - Tarball tagging/rolling:  March 20. Saturday (23.00 CET)
  -  - Release date: March 22. Monday
  -  - Announcement: March 23. Tuesday
  +1.3.6-dev: current.
  +  - Tarball tagging/rolling:  March 22. Monday
  +  - Release date: March 24. Wednesday
  +  - Announcement: March 24. Wednesday
 - Release manager:  Lars
 - Win32 release:Paul
   
  +1.3.5: Not released.
   1.3.4: Tagged and rolled on Jan. 9.  Released on 11th, announced on 12th.
   1.3.3: Tagged and rolled on Oct. 7.  Released on 9th, announced on 10th.
   1.3.2: Tagged and rolled on Sep. 21. Announced and released on 23rd.
  @@ -18,12 +19,12 @@
  
   2.0  : In pre-alpha development, see apache-2.0 and apache-apr repository
   
  -Binaries (1.3.5):
  +Binaries (1.3.6):
   
Platform  Avail.  Volunteer

--
alpha-dec-osf3.0  no  Sameer Parekh
  - alpha-dec-osf4.0  yes Lars Eilebrecht
  + alpha-dec-osf4.0  no  Lars Eilebrecht
arm-linux(Netwinder-ELF)  no  Rasmus Lerdorf
hppa1.1-hp-hpux   no  Rob Hartill
i386-slackware-linux(a.out)   no  Sameer Parekh
  @@ -31,36 +32,36 @@
i386-sun-solaris2.7   no  Cliff Skolnick
i386-unixware-svr4no  Sameer Parekh
i386-unknown-freebsd2.1   no  Andrew Wilson, Brian Tao
  - i386-unknown-freebsd2.2.8 yes Jim Jagielski
  - i386-whatever-freebsd3.0  yes Ken Coar
  - i686-pc-freebsd3.1yes Ralf S. Engelschall
  - i586-unknown-linux2   yes Ralf S. Engelschall, Lars Eilebrecht
  - i686-unknown-linux2   yes Lars Eilebrecht
  + i386-unknown-freebsd2.2.8 no  Jim Jagielski
  + i386-whatever-freebsd3.0  no  Ken Coar
  + i686-pc-freebsd3.1no  Ralf S. Engelschall
  + i586-unknown-linux2   no  Ralf S. Engelschall, Lars Eilebrecht
  + i686-unknown-linux2   no  Lars Eilebrecht
i386-unknown-linux(ELF)   no  Aram Mirzadeh, Michael Douglass
  - i386-unknown-netBSD-1.2.1 yes Lars Eilebrecht
  - i386-unknown-netBSD-1.3.2 yes Lars Eilebrecht
  + i386-unknown-netBSD-1.2.1 no  Lars Eilebrecht
  + i386-unknown-netBSD-1.3.2 no  Lars Eilebrecht
i386-unknown-sco3 no  Ben Laurie
i386-unknown-sco5 no  Ben Laurie
m68k-apple-aux3.1.1   no  Jim Jagielski
m88k-dg-dgux5.4R2.01  no  Sameer parekh
m88k-next-nextno  Rob Hartill
mips-sgi-irix5.3  no  Mark Imbrianco
  - mips-sgi-irix6.2  yes Lars Eilebrecht
  - mips-sgi-irix6.4  yes Lars Eilebrecht
  - mips-sni-svr4 yes Martin Kraemer
  - OS/2  yes Brian Havard
  + mips-sgi-irix6.2  no  Lars Eilebrecht
  + mips-sgi-irix6.4  no  Lars Eilebrecht
  + mips-sni-svr4 no  Martin Kraemer
  + OS/2  no  Brian Havard
rs6000-ibm-aix3.2.5   no  Sameer Parekh
  - rs6000-ibm-aix4.1 yes Lars Eilebrecht
  + rs6000-ibm-aix4.1 no  Lars Eilebrecht
rs6000-ibm-aix4.2 no  Bill Stoddard
rs6000-ibm-aix4.3.2   no  Bill Stoddard
  - sparc-sun-solaris2.5  yes Lars Eilebrecht
  - sparc-sun-solaris2.6  yes Lars Eilebrecht
  + sparc-sun-solaris2.5  no  Lars Eilebrecht
  + sparc-sun-solaris2.6  no  Lars Eilebrecht
sparc-sun-solaris2.7  no  Cliff Skolnick
  - sparc-sun-sunos4.1.4  yes Lars Eilebrecht, Michael Douglass
  + sparc-sun-sunos4.1.4  no  Lars Eilebrecht, Michael Douglass
sparc-sun-sunos4.1.3_U1   no  Sameer Parekh
  - sparc-unknown-linux   yes Lars Eilebrecht
  + sparc-unknown-linux   no  Lars Eilebrecht
mips-dec-ultrix4.4no  Sameer Parekh
  - mips-unknown-linuxyes Lars Eilebrecht
  + mips-unknown-linuxno  Lars

cvs commit: apache-1.3 Announcement

1999-03-22 Thread lars
lars99/03/22 15:38:26

  Modified:htdocs/manual/mod mod_env.html
   src/modules/standard mod_env.c
   src  CHANGES
   .Announcement
  Log:
  Back out Ken's PassAllEnv code...
  
  Revision  ChangesPath
  1.14  +0 -47 apache-1.3/htdocs/manual/mod/mod_env.html
  
  Index: mod_env.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_env.html,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- mod_env.html  1999/03/20 21:51:37 1.13
  +++ mod_env.html  1999/03/22 23:38:20 1.14
  @@ -30,58 +30,11 @@
   
   H2Directives/H2
   UL
  -LIA HREF=#passallenvPassAllEnv/A
   LIA HREF=#passenvPassEnv/A
   LIA HREF=#setenvSetEnv/A
   LIA HREF=#unsetenvUnsetEnv/A
   /UL
   
  -HR
  -
  -H2A NAME=passallenvPassAllEnv/A/H2
  -A
  - HREF=directive-dict.html#Syntax
  - REL=Help
  -STRONGSyntax:/STRONG/A PassAllEnv EMOn | Off/EMBR
  -A
  - HREF=directive-dict.html#Default
  - REL=Help
  -STRONGDefault:/STRONG/A EMOff/EM
  -BR
  -A
  - HREF=directive-dict.html#Context
  - REL=Help
  -STRONGContext:/STRONG/A directoryBR
  -A
  - HREF=directive-dict.html#Status
  - REL=Help
  -STRONGStatus:/STRONG/A BaseBR
  -A
  - HREF=directive-dict.html#Module
  - REL=Help
  -STRONGModule:/STRONG/A mod_envBR
  -A
  - HREF=directive-dict.html#Compatibility
  - REL=Help
  -STRONGCompatibility:/STRONG/A PassAllEnv is only available in
  -Apache 1.3.5 and later.
  -P
  -This directive controls whether EMall/EM of the server's environment
  -variables should be made available to CGI scripts and SSI documents,
  -or only those explicitly named by
  -A HREF=#passenvCODEPassEnv/CODE/A directives or otherwise
  -created by the server itself.
  -/P
  -BLOCKQUOTESTRONGIt is highly recommended that this functionality
  -be enabled only with extreme caution and after careful examination
  -of whether the entire environment is needed./STRONG/BLOCKQUOTE
  -P
  -Because of security considerations, CODEPassAllEnv/CODE may
  -only appear inside
  -A HREF=core.html#directorySAMPlt;Directorygt;/SAMP/A and
  -A HREF=core.html#locationSAMPlt;Locationgt;/SAMP/A
  -containers in the server configuration files.
  -/P
   HR
   
   H2A NAME=passenvPassEnv/A/H2
  
  
  
  1.28  +20 -125   apache-1.3/src/modules/standard/mod_env.c
  
  Index: mod_env.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_env.c,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- mod_env.c 1999/03/21 16:52:32 1.27
  +++ mod_env.c 1999/03/22 23:38:21 1.28
  @@ -96,56 +96,24 @@
*   *** configuration carefully before accepting this***
*   *** version of the module in a live webserver which used ***
*   *** older versions of the module.***
  - * 20.Mar.1999 Added PassAllEnv to allow copying of the entire parent
  - *   process environment to CGIs and SSIs.
*/
   
   #include httpd.h
   #include http_config.h
   
  -#ifdef WIN32
  -__declspec(dllimport) char **environ;
  -#else
  -#include unistd.h
  -extern char **environ;
  -#endif
  -
  -/*
  - * Server-wide config info for this module
  - */
  -typedef struct env_server_config_rec {
  +typedef struct {
   table *vars;
  -table *parent_env;
   char *unsetenv;
   int vars_present;
   } env_server_config_rec;
   
  -/*
  - * Per-directory config info
  - */
  -typedef struct env_dir_config_rec {
  -int passall;
  -} env_dir_config_rec;
  -
   module MODULE_VAR_EXPORT env_module;
   
  -static void *create_env_dir_config(pool *p, char *dspec)
  -{
  -env_dir_config_rec *dconf;
  -
  -dconf = ap_palloc(p, sizeof(env_dir_config_rec));
  -dconf-passall = 0;
  -return dconf;
  -}
  -
   static void *create_env_server_config(pool *p, server_rec *dummy)
   {
  -env_server_config_rec *new;
  -
  -new = (env_server_config_rec *) ap_palloc(p,
  -   sizeof(env_server_config_rec));
  +env_server_config_rec *new =
  +(env_server_config_rec *) ap_palloc(p, sizeof(env_server_config_rec));
   new-vars = ap_make_table(p, 50);
  -new-parent_env = NULL;
   new-unsetenv = ;
   new-vars_present = 0;
   return (void *) new;
  @@ -155,7 +123,9 @@
   {
   env_server_config_rec *base = (env_server_config_rec *) basev;
   env_server_config_rec *add = (env_server_config_rec *) addv;
  -env_server_config_rec *new;
  +env_server_config_rec *new =
  +(env_server_config_rec *) ap_palloc(p, sizeof(env_server_config_rec));
  +
   table *new_table;
   table_entry *elts;
   array_header *arr;
  @@ -163,8 +133,6 @@
   int i;
   const char *uenv, *unset;
   
  -new = (env_server_config_rec *) ap_palloc(p

cvs commit: apache-1.3/src/helpers binbuild.sh

1999-03-22 Thread lars
lars99/03/22 15:41:40

  Modified:src/helpers binbuild.sh
  Log:
  Remove --user/--group tar options... they are not portable.
  Ignore it for now. I'll have to take a closer at it.
  
  Revision  ChangesPath
  1.9   +1 -1  apache-1.3/src/helpers/binbuild.sh
  
  Index: binbuild.sh
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/binbuild.sh,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- binbuild.sh   1999/03/19 22:57:30 1.8
  +++ binbuild.sh   1999/03/22 23:41:40 1.9
  @@ -201,7 +201,7 @@
   else
 if [ x$GTAR != x ]
 then
  -$GTAR -zcf ../apache_$VER-$OS.tar.gz -C .. --owner=root --group=root 
apache_$VER
  +$GTAR -zcf ../apache_$VER-$OS.tar.gz -C .. apache_$VER
 else
   if [ x$TAR != x ]
   then
  
  
  


cvs commit: apache-1.3/src CHANGES

1999-03-21 Thread lars
lars99/03/20 18:03:07

  Modified:htdocs/manual/mod mod_log_agent.html mod_log_referer.html
   htdocs/manual new_features_1_3.html
   src  CHANGES
  Log:
  Some minor doc updates...
  
  Revision  ChangesPath
  1.10  +2 -1  apache-1.3/htdocs/manual/mod/mod_log_agent.html
  
  Index: mod_log_agent.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_log_agent.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- mod_log_agent.html1998/05/20 14:12:57 1.9
  +++ mod_log_agent.html1999/03/21 02:03:04 1.10
  @@ -17,7 +17,8 @@
   
   This module is contained in the CODEmod_log_agent.c/CODE file, and is not
   compiled in by default. It provides for logging of the client user agents.
  -
  +mod_log_agent is deprecated. Use A 
HREF=mod_log_config.htmlmod_log_config/A
  +instead.
   
   UL
   LIA HREF=#agentlogAgentLog/A
  
  
  
  1.10  +3 -1  apache-1.3/htdocs/manual/mod/mod_log_referer.html
  
  Index: mod_log_referer.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_log_referer.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- mod_log_referer.html  1998/05/20 14:12:57 1.9
  +++ mod_log_referer.html  1999/03/21 02:03:04 1.10
  @@ -17,7 +17,9 @@
   
   This module is contained in the CODEmod_log_referer.c/CODE file, and is 
not
   compiled in by default. It provides for logging of the documents which
  -reference documents on the server.
  +reference documents on the server. As of Apache 1.3.5 it is deprecated.
  +Use A HREF=mod_log_config.html#customlog-conditionalCustomLog
  +(conditional)/A instead.
   
   H2Log file format/H2
   The log file contains a separate line for each refer. Each line has the
  
  
  
  1.78  +19 -2 apache-1.3/htdocs/manual/new_features_1_3.html
  
  Index: new_features_1_3.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/new_features_1_3.html,v
  retrieving revision 1.77
  retrieving revision 1.78
  diff -u -r1.77 -r1.78
  --- new_features_1_3.html 1999/01/10 06:20:49 1.77
  +++ new_features_1_3.html 1999/03/21 02:03:05 1.78
  @@ -64,7 +64,6 @@
   it.  This opens up more opportunities for log rotation, hit
   filtering, real-time splitting of multiple vhosts into separate
   logs, and asynchronous DNS resolving on the fly.
  -
   /DL
   
   PHR
  @@ -201,6 +200,12 @@
   CODEVirtualHost/CODE sections.  This is useful for folks
   trying to debug their virtual host configuration.
   
  +DTSTRONGControl of HTTP methods/STRONG
  +DDA HREF=mod/core.html#limitexceptlt;LimitExceptgt; and
  +lt;/LimitExceptgt;/A are used to enclose a group of access control
  +directives which will then apply to any HTTP access method not listed in
  +the arguments; i.e., it is the opposite of a Limit section and can be
  +used to control both standard and nonstandard/unrecognized methods.
   /DL
   
   PHR
  @@ -208,6 +213,13 @@
   H3A NAME=modModule Enhancements/A/H3
   
   DL
  +DTSTRONGNEW - Pass all of the server's environment variables to
  +CGIs and SSIs./STRONGBR
  +DDWith the A HREF=mod/mod_env.html#passallenvPassAllEnv/A directive 
all
  +of the server's environment variables are made available to CGIs and SSIs
  +within the directive's scope. Please note that this directive is not
  +recommended for general use.
  +
   DTA HREF=mod/mod_negotiation.htmlSTRONGImproved mod_negotiation
   /STRONG/ABR
   DDThe optional content negotiation (MultiViews) module has been completely
  @@ -395,6 +407,11 @@
   CODECustomLog/CODE/A directives, rather than having to
   spell out the complete log format string each time.
   
  +DTSTRONGConditional logging/STRONG
  +DDA 
HREF=mod/mod_log_config.html#customlog-conditionalmod_log_config/A
  +now supports logging based upon environment variables.
  +mod_log_referer and mod_log_agent are now deprecated.
  +
   DTSTRONGmod_cern_meta configurable per-directory/STRONG
   DDA HREF=mod/mod_cern_meta.htmlmod_cern_meta/A is now
   configurable on a per-directory basis.
  @@ -601,7 +618,7 @@
   config files.  So you will see errors in the config file.  This
   should make it easier to start Apache via rsh or crontab.
   
  -DTSTRONGYear-2000 Improvements/STRONG
  +DTA NAME=y2kSTRONGYear-2000 Improvements/STRONG/A
   DDThe default CODEtimefmt/CODE string used by A
   HREF=mod/mod_include.htmlCODEmod_include/CODE/A has been
   modified to display the year using four digits rather than the
  
  
  
  1.1288+2 -2  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file

cvs commit: apache-1.3 Announcement

1999-03-21 Thread lars
lars99/03/20 20:15:27

  Modified:.Announcement
  Log:
  prepare 1.3.5 announcement
  
  Revision  ChangesPath
  1.42  +62 -25apache-1.3/Announcement
  
  Index: Announcement
  ===
  RCS file: /export/home/cvs/apache-1.3/Announcement,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- Announcement  1999/01/10 02:18:19 1.41
  +++ Announcement  1999/03/21 04:15:27 1.42
  @@ -1,39 +1,76 @@
  -Apache 1.3.4 Released
  +Apache 1.3.5 Released
   =
   
   The Apache Group is pleased to announce the release of version
  -1.3.4 of the Apache HTTP server.
  +1.3.5 of the Apache HTTP server.
   
  -This new Apache version incorporates over 90 significant improvements
  -to the server, including avoidance of some denial-of-service attacks,
  -support for 3rd-party WebDAV modules, a complete overhaul of content
  -negotiation, optional column sorting for fancy indexes, the ability to
  -set a DefaultLanguage, and many fixes to improve consistency, portability,
  -and squish bugs.  A complete listing is provided in the src/CHANGES file.
  -
  -Of special note are the many changes to the Apache configuration process.
  -The default path layout generated by the configure script has been
  -changed to be more consistent with the traditional Apache layout, and
  -several new command-line options have been added to make compilation
  -easier.  Please see the README.configure and INSTALL files for complete
  -information.  In addition, we have moved all of the server configuration
  -directives to a single file (httpd.conf-dist), updated mime.types, and
  -improved the examples for first-time installers.  Finally, a few of the
  -rarely-used command-line options for httpd have been changed to be more
  -consistent with the help options of other programs.
  +This new Apache version incorporates over 60 significant improvements
  +to the server.  Apart from portability and security fixes, documentation
  +enhancements, performance improvements, and assorted other minor
  +features or fixes notable changes are:
  +
  + - mod_log_config now supports conditional logging based upon
  +   environment variables and support for multiline entries.
  +
  + - New CustomLog directive %V: This logs the hostname according to the
  +   UseCanonicalName setting (this is the pre-1.3.4 behaviour of %v).
  +
  + - Enhanced mod_rewrite's mapfile handling: The in-core cache for text
  +   and DBM format mapfiles now uses a hash table with LRU functionality.
  +   Furthermore map lookups for non-existent keys are now cached as well.
  +   The changes drastically improve the performance when large rewrite
  +   maps are in use.
  +
  + - Ability to handle DES or MD5 authentication passwords.
  + 
  + - New LimitExcept directive to allow the user to assign authentication
  +   control to any HTTP method that is *not* given in the argument list;
  +   i.e., the logical negation of the Limit directive.
  + 
  + - Improved content negotiation.
  + 
  + - New PassAllEnv directive; makes server's entire environment available
  +   to CGIs and SSIs executed within directive's scope.
  + 
  + - New ScriptInterpreterSource directive to enable searching the
  +   Win32 registry for script interpreters.
  + 
  + - The FAQ document was reorganised.
  + 
  + - Overhauled ApacheBench benchmark program.
  + 
  + - Several new API functions have been added.
   
  -We consider Apache 1.3.4 to be the best version of Apache available and
  +A complete listing with detailed descriptions is provided in the
  +src/CHANGES file.
  +
  +We consider Apache 1.3.5 to be the best version of Apache available and
   we strongly recommend that users of older versions, especially of the
   1.1.x and 1.2.x family, upgrade as soon as possible.  No further releases
   will be made in the 1.2.x family.
  +
   
  -Apache 1.3.4 is available for download from
  +Apache 1.3.5 is available for download from
   
   http://www.apache.org/dist/
   
   Please see the CHANGES_1.3 file in the same directory for a full
  -list of changes.  The distribution is also available via any of
  -the mirrors listed at
  +list of changes.
  +
  +Binary distributions are available from
  +
  +   http://www.apache.org/dist/binaries/
  +
  +As of Apache 1.3.5 binary distributions contain all standard Apache
  +modules as shared objects (if supported by the platform) and include
  +full source code.  Installation is easily done by executing the
  +included install script.  See the README.bindist and INSTALL.bindist
  +files for a complete explanation.  Please note that the binary
  +distributions are only provided for your convenience and current
  +distributions for specific platforms are not always available.
  +
  +The source and binary distributions are also available via any of the
  +mirrors listed at
   
   http://www.apache.org

cvs commit: apache-1.3/src/os/win32 registry.c

1999-03-21 Thread lars
lars99/03/20 20:33:46

  Modified:src/include httpd.h
   src/os/win32 registry.c
  Log:
  roll 1.3.5
  
  Revision  ChangesPath
  1.273 +2 -2  apache-1.3/src/include/httpd.h
  
  Index: httpd.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/httpd.h,v
  retrieving revision 1.272
  retrieving revision 1.273
  diff -u -r1.272 -r1.273
  --- httpd.h   1999/03/20 23:43:24 1.272
  +++ httpd.h   1999/03/21 04:33:41 1.273
  @@ -413,7 +413,7 @@
* Example: Apache/1.1.0 MrWidget/0.1-alpha 
*/
   
  -#define SERVER_BASEVERSION Apache/1.3.5-dev/* SEE COMMENTS ABOVE */
  +#define SERVER_BASEVERSION Apache/1.3.5/* SEE COMMENTS ABOVE */
   #define SERVER_VERSION  SERVER_BASEVERSION
   enum server_token_type {
   SrvTk_MIN,   /* eg: Apache/1.3.0 */
  @@ -429,7 +429,7 @@
* Always increases along the same track as the source branch.
* For example, Apache 1.4.2 would be '10402100', 2.5b7 would be '2057'.
*/
  -#define APACHE_RELEASE 10305000
  +#define APACHE_RELEASE 10305100
   
   #define SERVER_PROTOCOL HTTP/1.1
   #ifndef SERVER_SUPPORT
  
  
  
  1.15  +1 -1  apache-1.3/src/os/win32/registry.c
  
  Index: registry.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/os/win32/registry.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- registry.c1999/01/10 07:49:00 1.14
  +++ registry.c1999/03/21 04:33:44 1.15
  @@ -28,7 +28,7 @@
   
   #define VENDOR   Apache Group
   #define SOFTWARE Apache
  -#define VERSION  1.3.5 dev
  +#define VERSION  1.3.5
   
   #define REGKEY SOFTWARE\\ VENDOR \\ SOFTWARE \\ VERSION
   
  
  
  


cvs commit: apache-1.3/src Configure CHANGES

1999-03-21 Thread lars
lars99/03/20 21:07:29

  Modified:src/include httpd.h
   src/os/win32 registry.c
   src  Configure CHANGES
  Log:
  make source ready for the next round...
  
  Revision  ChangesPath
  1.274 +2 -2  apache-1.3/src/include/httpd.h
  
  Index: httpd.h
  ===
  RCS file: /export/home/cvs/apache-1.3/src/include/httpd.h,v
  retrieving revision 1.273
  retrieving revision 1.274
  diff -u -r1.273 -r1.274
  --- httpd.h   1999/03/21 04:33:41 1.273
  +++ httpd.h   1999/03/21 05:07:17 1.274
  @@ -413,7 +413,7 @@
* Example: Apache/1.1.0 MrWidget/0.1-alpha 
*/
   
  -#define SERVER_BASEVERSION Apache/1.3.5/* SEE COMMENTS ABOVE */
  +#define SERVER_BASEVERSION Apache/1.3.6-dev/* SEE COMMENTS ABOVE */
   #define SERVER_VERSION  SERVER_BASEVERSION
   enum server_token_type {
   SrvTk_MIN,   /* eg: Apache/1.3.0 */
  @@ -429,7 +429,7 @@
* Always increases along the same track as the source branch.
* For example, Apache 1.4.2 would be '10402100', 2.5b7 would be '2057'.
*/
  -#define APACHE_RELEASE 10305100
  +#define APACHE_RELEASE 10306000
   
   #define SERVER_PROTOCOL HTTP/1.1
   #ifndef SERVER_SUPPORT
  
  
  
  1.16  +1 -1  apache-1.3/src/os/win32/registry.c
  
  Index: registry.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/os/win32/registry.c,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- registry.c1999/03/21 04:33:44 1.15
  +++ registry.c1999/03/21 05:07:22 1.16
  @@ -28,7 +28,7 @@
   
   #define VENDOR   Apache Group
   #define SOFTWARE Apache
  -#define VERSION  1.3.5
  +#define VERSION  1.3.6 dev
   
   #define REGKEY SOFTWARE\\ VENDOR \\ SOFTWARE \\ VERSION
   
  
  
  
  1.333 +1 -1  apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.332
  retrieving revision 1.333
  diff -u -r1.332 -r1.333
  --- Configure 1999/03/16 00:26:57 1.332
  +++ Configure 1999/03/21 05:07:24 1.333
  @@ -1568,7 +1568,7 @@
#select the special subtarget for shared core generation
SUBTARGET=target_shared
#determine additional suffixes for libhttpd.so
  - V=1 R=3 P=5
  + V=1 R=3 P=6
if [ x$SHLIB_SUFFIX_DEPTH = x0 ]; then
SHLIB_SUFFIX_LIST=
fi
  
  
  
  1.1289+3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1288
  retrieving revision 1.1289
  diff -u -r1.1288 -r1.1289
  --- CHANGES   1999/03/21 02:03:06 1.1288
  +++ CHANGES   1999/03/21 05:07:25 1.1289
  @@ -1,3 +1,6 @@
  +Changes with Apache 1.3.6
  +
  +
   Changes with Apache 1.3.5
   
 *) M_INVALID needed a value within the scope of METHODS so that unknown
  
  
  


cvs commit: apache-devsite binaries.html

1999-03-21 Thread lars
lars99/03/21 10:55:16

  Modified:.binaries.html
  Log:
  make binary contributor listing more readable...
  
  Revision  ChangesPath
  1.15  +79 -24apache-devsite/binaries.html
  
  Index: binaries.html
  ===
  RCS file: /export/home/cvs/apache-devsite/binaries.html,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- binaries.html 1999/03/20 19:12:44 1.14
  +++ binaries.html 1999/03/21 18:55:15 1.15
  @@ -89,41 +89,96 @@
   Here is a list of platforms and the people who volunteered to compile
   binary releases:
   
  +H4AIX/H4
   UL
  +LIrs6000-ibm-aix3.2.5: Sameer Parekh
  +LIrs6000-ibm-aix4.1:   Lars Eilebrecht
  +LIrs6000-ibm-aix4.2:   Ralf S. Engelschall, Bill Stoddard
  +LIrs6000-ibm-aix4.3.2:Bill Stoddard
  +/UL
  +
  +H4AUX/H4
  +UL
  +LIm68k-apple-aux3.1.1: Jim Jagielski
  +/UL
  +
  +H4DGUX/H4
  +UL
  +LIm88k-dg-dgux5.4R2.01:Sameer parekh
  +/UL
  +
  +H4Digital Unix (aka OSF)/H4
  +UL
   LIalpha-dec-osf3.0:Sameer Parekh
   LIalpha-dec-osf4.0:Lars Eilebrecht
  -LIarm-linux(Netwinder-ELF)Rasmus Lerdorf
  +/UL
  +
  +H4FreeBSD/H4
  +UL
  +LIi386-whatever-freebsd2.1:Andrew Wilson, Brian Tao
  +LIi386-whatever-freebsd2.2.8:  Jim Jagielski
  +LIi386-whatever-freebsd3.0:Ken Coar
  +LIi686-whatever-freebsd3.1:Ralf S. Engelschall
  +/UL
  +
  +H4HPUX/H4
  +UL
   LIhppa1.1-hp-hpux: Rob Hartill
  -LIi386-slackware-linux(a.out):Sameer Parekh
  -LIi386-sun-solaris2.5: Sameer Parekh
  -LIi386-sun-solaris2.7:Cliff Skolnick
  -LIi386-unixware-svr4:  Sameer Parekh
  -LIi386-unknown-freebsd2.1: Andrew Wilson, Brian Tao
  -LIi386-unknown-freebsd2.2.8:  Jim Jagielski
  -LIi386-whatever-freebsd3.0:Ken Coar
  -LIi686-pc-freebsd3.1:  Ralf S. Engelschall
  -LIi586-pc-redhat5.2:   Ralf S. Engelschall
  -LIi386-unknown-linux(ELF): Aram Mirzadeh, Michael Douglass
  -LIi386-unknown-netBSD: Lars Eilebrecht, Bill lt;[EMAIL PROTECTED]gt;
  -LIi386-unknown-sco3:   Ben Laurie
  -LIi386-unknown-sco5:   Ben Laurie
  -LIm68k-apple-aux3.1.1: Jim Jagielski
  -LIm88k-dg-dgux5.4R2.01:Sameer parekh
  -LIm88k-next-next:  Rob Hartill
  +/UL
  +
  +H4Irix/H4
  +UL
   LImips-sgi-irix5.3:Mark Imbrianco
   LImips-sgi-irix6.2:Ralf S. Engelschall, Lars Eilebrecht
  -LImips-sni-svr4:   Martin Kraemer
  -LIrs6000-ibm-aix3.2.5: Sameer Parekh
  -LIrs6000-ibm-aix4.2:   Ralf S. Engelschall, Bill Stoddard
  -LIrs6000-ibm-aix4.3.2:Bill Stoddard
  +/UL
  +
  +H4Linux/H4
  +UL
  +LIarm-linux(Netwinder-ELF)Rasmus Lerdorf
  +LIi386-whatever-linux(ELF):Aram Mirzadeh, Michael Douglass
  +LIi386-whatever-linux(a.out):  Sameer Parekh
  +LIi586-whatever-linux2:Ralf S. Engelschall, Lars Eilebrecht
  +LIi686-whatever-linux2:Lars Eilebrecht
  +LImips-whatever-linux2:Lars Eilebrecht
  +LIsparc-whatever-linux2:   Lars Eilebrecht
  +/UL
  +
  +H4NetBSD/H4
  +UL
  +LIi386-whatever-netBSD:Lars Eilebrecht, Bill lt;[EMAIL PROTECTED]gt;
  +/UL
  +
  +H4NEXT/H4
  +UL
  +LIm88k-next-next:  Rob Hartill
  +/UL
  +
  +H4Solaris/SunOS/H4
  +UL
  +LIi386-sun-solaris2.5: Sameer Parekh
  +LIi386-sun-solaris2.7:Cliff Skolnick
   LIsparc-sun-solaris2.5:Lars Eilebrecht
   LIsparc-sun-solaris2.6:Lars Eilebrecht, Ralf S. Engelschall
   LIsparc-sun-solaris2.7:   Cliff Skolnick
  -LIsparc-sun-sunos4.1.4:Michael Douglass
  +LIsparc-sun-sunos4.1.4:Lars Eilebrecht, Michael Douglass
   LIsparc-sun-sunos4.1.3_U1: Sameer Parekh
  -LIsparc-unknown-linux: Lars Eilebrecht
  +/UL
  +
  +H4SCO/H4
  +UL
  +LIi386-whatever-sco3:  Ben Laurie
  +LIi386-whatever-sco5:  Ben Laurie
  +/UL
  +
  +H4SVR4/H4
  +UL
  +LIi386-unixware-svr4:  Sameer Parekh
  +LImips-sni-svr4:   Martin Kraemer
  +/UL
  +
  +H4Ultrix/H4
  +UL
   LImips-dec-ultrix4.4:  Sameer Parekh
  -LImips-unknown-linux: Lars Eilebrecht
   /UL
   
   P
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-21 Thread lars
lars99/03/21 11:01:26

  Modified:.STATUS
  Log:
  It's binary time.
  
  Revision  ChangesPath
  1.660 +14 -10apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.659
  retrieving revision 1.660
  diff -u -r1.659 -r1.660
  --- STATUS1999/03/21 11:42:06 1.659
  +++ STATUS1999/03/21 19:01:25 1.660
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/21 11:42:06 $]
  +  Last modified at [$Date: 1999/03/21 19:01:25 $]
   
   Release:
   
  @@ -23,7 +23,7 @@
Platform  Avail.  Volunteer

--
alpha-dec-osf3.0  no  Sameer Parekh
  - alpha-dec-osf4.0  no  Lars Eilebrecht
  + alpha-dec-osf4.0  yes Lars Eilebrecht
arm-linux(Netwinder-ELF)  no  Rasmus Lerdorf
hppa1.1-hp-hpux   no  Rob Hartill
i386-slackware-linux(a.out)   no  Sameer Parekh
  @@ -34,28 +34,32 @@
i386-unknown-freebsd2.2.8 no  Jim Jagielski
i386-whatever-freebsd3.0  no  Ken Coar
i686-pc-freebsd3.1no  Ralf S. Engelschall
  - i586-pc-redhat5.2 no  Ralf S. Engelschall
  + i586-unknown-linux2   yes Ralf S. Engelschall, Lars Eilebrecht
  + i686-unknown-linux2   yes Lars Eilebrecht
i386-unknown-linux(ELF)   no  Aram Mirzadeh, Michael Douglass
  - i386-unknown-netBSD   no  Lars Eilebrecht, Bill [EMAIL 
PROTECTED]
  + i386-unknown-netBSD-1.2.1 yes Lars Eilebrecht
  + i386-unknown-netBSD-1.3.2 yes Lars Eilebrecht
i386-unknown-sco3 no  Ben Laurie
i386-unknown-sco5 no  Ben Laurie
m68k-apple-aux3.1.1   no  Jim Jagielski
m88k-dg-dgux5.4R2.01  no  Sameer parekh
m88k-next-nextno  Rob Hartill
mips-sgi-irix5.3  no  Mark Imbrianco
  - mips-sgi-irix6.2  no  Lars Eilebrecht
  + mips-sgi-irix6.2  yes Lars Eilebrecht
  + mips-sgi-irix6.4  yes Lars Eilebrecht
mips-sni-svr4 no  Martin Kraemer
rs6000-ibm-aix3.2.5   no  Sameer Parekh
  + rs6000-ibm-aix4.1 yes Lars Eilebrecht
rs6000-ibm-aix4.2 no  Bill Stoddard
rs6000-ibm-aix4.3.2   no  Bill Stoddard
  - sparc-sun-solaris2.5  no  Lars Eilebrecht
  - sparc-sun-solaris2.6  no  Lars Eilebrecht, Ralf S. Engelschall
  + sparc-sun-solaris2.5  yes Lars Eilebrecht
  + sparc-sun-solaris2.6  yes Lars Eilebrecht, Ralf S. Engelschall
sparc-sun-solaris2.7  no  Cliff Skolnick
  - sparc-sun-sunos4.1.4  no  Michael Douglass
  + sparc-sun-sunos4.1.4  yes Lars Eilebrecht, Michael Douglass
sparc-sun-sunos4.1.3_U1   no  Sameer Parekh
  - sparc-unknown-linux   no  Lars Eilebrecht
  + sparc-unknown-linux   yes Lars Eilebrecht
mips-dec-ultrix4.4no  Sameer Parekh
  - mips-unknown-linuxno  Lars Eilebrecht
  + mips-unknown-linuxyes Lars Eilebrecht
   
   
   RELEASE SHOWSTOPPERS:
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-20 Thread lars
lars99/03/20 04:32:26

  Modified:.STATUS
  Log:
  
  
  Revision  ChangesPath
  1.650 +2 -2  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.649
  retrieving revision 1.650
  diff -u -r1.649 -r1.650
  --- STATUS1999/03/16 22:40:08 1.649
  +++ STATUS1999/03/20 12:32:25 1.650
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/16 22:40:08 $]
  +  Last modified at [$Date: 1999/03/20 12:32:25 $]
   
   Release:
   
  @@ -8,7 +8,7 @@
 - Release date: March 22. Monday
 - Announcement: March 23. Tuesday
 - Release manager:  Lars
  -  - Win32 release:???
  +  - Win32 release:Paul
   
   1.3.4: Tagged and rolled on Jan. 9.  Released on 11th, announced on 12th.
   1.3.3: Tagged and rolled on Oct. 7.  Released on 9th, announced on 10th.
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-20 Thread lars
lars99/03/20 06:35:24

  Modified:.STATUS
  Log:
  Add some more TODOs to the list...
  
  Revision  ChangesPath
  1.651 +29 -3 apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.650
  retrieving revision 1.651
  diff -u -r1.650 -r1.651
  --- STATUS1999/03/20 12:32:25 1.650
  +++ STATUS1999/03/20 14:35:22 1.651
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/20 12:32:25 $]
  +  Last modified at [$Date: 1999/03/20 14:35:22 $]
   
   Release:
   
  @@ -43,8 +43,6 @@
   
   Documentation that needs writing:
   
  -* manual/content-negotiation.html lacks any information about the
  -  TCN additions and when the RVSA algorithm is used.
   
   Available Patches:
   * Keith Wannamaker's NT multiple services patch
  @@ -127,6 +125,31 @@
   
   Needs patch:
   
  +* MaxRequestsPerChild doesn't count requests, only the
  +  number of connections processed.
  +  We can either 'fix' it by renaming the directive to
  +  MaxConnectionsPerChild or really fix it to actually count
  +  the number of requests.
  +  Lars: I think we should really fix.
  +
  +* mod_access/3821: check_dir_access(), reads a-order[31]
  +  = either an if-clause should be added or the M_INVALID changed
  +
  +* mod_so/3493: os/unix/os.c dlclose()s objects before module cleanups
  +  = this is a subtle thing related to pool cleanups, I think.
  +
  +* general/3872: util_script.c doubles up Set-Cookie headers
  +   = needs review by the protocol guys! Roy?
  +
  +* os-linux/3531: Bad file number: flock; Exiting
  +  = When I remember correctly we had such reports also in the past.
  + Some Linux guys should check this.
  +
  +* mod_rewrite/3874: RewriteLock doesn't work for virtual hosts 
  +  = When I find time, I can look at this. But I would appreciate
  + when someone other already can dive into this. My opinion
  + is already appended to the PR.
  +
   * get_path_info bug; ap_get_remote_host should be ap_vformatter instead.
 See: [EMAIL PROTECTED]
   
  @@ -166,6 +189,9 @@
 See [EMAIL PROTECTED]
   
   Open issues:
  +
  +* general/3787: SERVER_PORT is always 80 if client comes to any port
  +  = needs review by the protocol guys, I think.
   
   * Someone other than Dean has to do a security/correctness review on
 psprintf(), bprintf(), and ap_snprintf().  In particular these routines
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-20 Thread lars
lars99/03/20 06:51:12

  Modified:.STATUS
  Log:
  We have two RELEASE SHOWSTOPPERS!
  
  Revision  ChangesPath
  1.652 +13 -19apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.651
  retrieving revision 1.652
  diff -u -r1.651 -r1.652
  --- STATUS1999/03/20 14:35:22 1.651
  +++ STATUS1999/03/20 14:51:11 1.652
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/20 14:35:22 $]
  +  Last modified at [$Date: 1999/03/20 14:51:11 $]
   
   Release:
   
  @@ -20,9 +20,20 @@
   
   RELEASE SHOWSTOPPERS:
   
  +* mod_access/3821: check_dir_access(), reads a-order[31]
  +  = either an if-clause should be added or the M_INVALID changed
   
  +* mod_so/3493: os/unix/os.c dlclose()s objects before module cleanups
  +  = this is a subtle thing related to pool cleanups, I think.
  +
  +
   RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
   
  +* mod_rewrite/3874: RewriteLock doesn't work for virtual hosts 
  +  = When I find time, I can look at this. But I would appreciate
  + when someone other already can dive into this. My opinion
  + is already appended to the PR.
  +
   * Randy's proposed changes for binbuild:
   
 1. Change to build binary only distribution
  @@ -45,6 +56,7 @@
   
   
   Available Patches:
  +
   * Keith Wannamaker's NT multiple services patch
Message-ID: [EMAIL PROTECTED]
Status: Bill +1 (on concept)
  @@ -131,24 +143,6 @@
 MaxConnectionsPerChild or really fix it to actually count
 the number of requests.
 Lars: I think we should really fix.
  -
  -* mod_access/3821: check_dir_access(), reads a-order[31]
  -  = either an if-clause should be added or the M_INVALID changed
  -
  -* mod_so/3493: os/unix/os.c dlclose()s objects before module cleanups
  -  = this is a subtle thing related to pool cleanups, I think.
  -
  -* general/3872: util_script.c doubles up Set-Cookie headers
  -   = needs review by the protocol guys! Roy?
  -
  -* os-linux/3531: Bad file number: flock; Exiting
  -  = When I remember correctly we had such reports also in the past.
  - Some Linux guys should check this.
  -
  -* mod_rewrite/3874: RewriteLock doesn't work for virtual hosts 
  -  = When I find time, I can look at this. But I would appreciate
  - when someone other already can dive into this. My opinion
  - is already appended to the PR.
   
   * get_path_info bug; ap_get_remote_host should be ap_vformatter instead.
 See: [EMAIL PROTECTED]
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-20 Thread lars
lars99/03/20 07:25:30

  Modified:.STATUS
  Log:
  add list of available binaries.
  
  Revision  ChangesPath
  1.654 +40 -1 apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.653
  retrieving revision 1.654
  diff -u -r1.653 -r1.654
  --- STATUS1999/03/20 15:14:12 1.653
  +++ STATUS1999/03/20 15:25:29 1.654
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/20 15:14:12 $]
  +  Last modified at [$Date: 1999/03/20 15:25:29 $]
   
   Release:
   
  @@ -17,6 +17,45 @@
   1.3.0: Tagged and rolled on June 1.  Announced and released on the 6th.
  
   2.0  : In pre-alpha development, see apache-2.0 and apache-apr repository
  +
  +Binaries (1.3.5):
  +
  + Platform  Avail.  Volunteer
  + 
--
  + alpha-dec-osf3.0  no  Sameer Parekh
  + alpha-dec-osf4.0  no  Lars Eilebrecht
  + arm-linux(Netwinder-ELF)  no  Rasmus Lerdorf
  + hppa1.1-hp-hpux   no  Rob Hartill
  + i386-slackware-linux(a.out)   no  Sameer Parekh
  + i386-sun-solaris2.5   no  Sameer Parekh
  + i386-sun-solaris2.7   no  Cliff Skolnick
  + i386-unixware-svr4no  Sameer Parekh
  + i386-unknown-freebsd2.1   no  Andrew Wilson, Brian Tao
  + i386-unknown-freebsd2.2.8 no  Jim Jagielski
  + i686-pc-freebsd3.1no  Ralf S. Engelschall
  + i585-pc-redhat5.2 no  Ralf S. Engelschall
  + i386-unknown-linux(ELF)   no  Aram Mirzadeh, Michael Douglass
  + i386-unknown-netBSD   no  Lars Eilebrecht, Bill [EMAIL 
PROTECTED]
  + i386-unknown-sco3 no  Ben Laurie
  + i386-unknown-sco5 no  Ben Laurie
  + m68k-apple-aux3.1.1   no  Jim Jagielski
  + m88k-dg-dgux5.4R2.01  no  Sameer parekh
  + m88k-next-nextno  Rob Hartill
  + mips-sgi-irix5.3  no  Mark Imbrianco
  + mips-sgi-irix6.2  no  Ralf S. Engelschall, Lars Eilebrecht
  + mips-sni-svr4 no  Martin Kraemer
  + rs6000-ibm-aix3.2.5   no  Sameer Parekh
  + rs6000-ibm-aix4.2 no  Ralf S. Engelschall, Bill Stoddard
  + rs6000-ibm-aix4.3.2   no  Bill Stoddard
  + sparc-sun-solaris2.5  no  Lars Eilebrecht
  + sparc-sun-solaris2.6  no  Lars Eilebrecht, Ralf S. Engelschall
  + sparc-sun-solaris2.7  no  Cliff Skolnick
  + sparc-sun-sunos4.1.4  no  Michael Douglass
  + sparc-sun-sunos4.1.3_U1   no  Sameer Parekh
  + sparc-unknown-linux   no  Lars Eilebrecht
  + mips-dec-ultrix4.4no  Sameer Parekh
  + mips-unknown-linuxno  Lars Eilebrecht
  +
   
   RELEASE SHOWSTOPPERS:
   
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-20 Thread lars
lars99/03/20 07:41:11

  Modified:src/main util.c
   src  CHANGES
   .STATUS
  Log:
  Fix ap_uuencode()
  
  PR: 3411
  Submitted by: Ronald Tschalär [EMAIL PROTECTED]
  Reviewed by: Dirk, Lars, Ronald
  
  Revision  ChangesPath
  1.156 +32 -6 apache-1.3/src/main/util.c
  
  Index: util.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/main/util.c,v
  retrieving revision 1.155
  retrieving revision 1.156
  diff -u -r1.155 -r1.156
  --- util.c1999/03/10 17:42:43 1.155
  +++ util.c1999/03/20 15:41:07 1.156
  @@ -2020,18 +2020,44 @@
   { 
   int i, len = strlen(string); 
   char *p; 
  -char *encoded = (char *) ap_pcalloc(a, (len+2) / 3 * 4); 
  +char *encoded = (char *) ap_palloc(a, (len+2) / 3 * 4); 

   p = encoded; 
  -for (i = 0; i  len; i += 3) { 
  -*p++ = basis_64[string[i]  2]; 
  +#ifndef CHARSET_EBCDIC
  +for (i = 0; i  len-2; i += 3) { 
  +*p++ = basis_64[(string[i]  2)  0x3F]; 
   *p++ = basis_64[((string[i]  0x3)  4) | ((int) (string[i + 1]  
0xF0)  4)]; 
   *p++ = basis_64[((string[i + 1]  0xF)  2) | ((int) (string[i + 2] 
 0xC0)  6)]; 
   *p++ = basis_64[string[i + 2]  0x3F]; 
   } 
  -*p-- = '\0'; 
  -*p-- = '='; 
  -*p-- = '='; 
  +if (i  len) {
  +*p++ = basis_64[(string[i]  2)  0x3F]; 
  +   *p++ = basis_64[((string[i]  0x3)  4) | ((int) (string[i + 1]  
0xF0)  4)]; 
  +   if (i == (len-2))
  +   *p++ = basis_64[((string[i + 1]  0xF)  2)]; 
  +   else
  +   *p++ = '='; 
  +   *p++ = '='; 
  +}
  +#else /*CHARSET_EBCDIC*/
  +for (i = 0; i  len-2; i += 3) { 
  +*p++ = basis_64[(os_toascii[string[i]]  2)  0x3F]; 
  +*p++ = basis_64[((os_toascii[string[i]]  0x3)  4) | ((int) 
(os_toascii[string[i + 1]]  0xF0)  4)]; 
  +*p++ = basis_64[((os_toascii[string[i + 1]]  0xF)  2) | ((int) 
(os_toascii[string[i + 2]]  0xC0)  6)]; 
  +*p++ = basis_64[os_toascii[string[i + 2]]  0x3F]; 
  +} 
  +if (i  len) {
  +*p++ = basis_64[(os_toascii[string[i]]  2)  0x3F]; 
  +   *p++ = basis_64[((os_toascii[string[i]]  0x3)  4) | ((int) 
(os_toascii[string[i + 1]]  0xF0)  4)]; 
  +   if (i == (len-2))
  +   *p++ = basis_64[((os_toascii[string[i + 1]]  0xF)  2)]; 
  +   else
  +   *p++ = '='; 
  +   *p++ = '='; 
  +}
  +#endif /*CHARSET_EBCDIC*/
  +
  +*p = '\0'; 
   return encoded; 
   } 
   
  
  
  
  1.1285+6 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1284
  retrieving revision 1.1285
  diff -u -r1.1284 -r1.1285
  --- CHANGES   1999/03/19 16:34:45 1.1284
  +++ CHANGES   1999/03/20 15:41:08 1.1285
  @@ -1,5 +1,11 @@
   Changes with Apache 1.3.5
   
  +  *) ap_uuencode() always added two trailing '='s and encoding of
  + 8 bit characters on a machine with signed char may produced
  + incorrect results. Additionally ap_uuencode() should now
  + work correctly on EBCDIC platforms.
  + [Ronald Tschalär [EMAIL PROTECTED]] PR#3411
  +
 *) WIN32: Binary installer now runs the configuration DLL before
the reboot prompt (which is only given if MSVCRT.DLL system
DLL is new or updated). This should avoid the configuration
  
  
  
  1.655 +1 -5  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.654
  retrieving revision 1.655
  diff -u -r1.654 -r1.655
  --- STATUS1999/03/20 15:25:29 1.654
  +++ STATUS1999/03/20 15:41:10 1.655
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/20 15:25:29 $]
  +  Last modified at [$Date: 1999/03/20 15:41:10 $]
   
   Release:
   
  @@ -116,10 +116,6 @@
  to be aware of NO_GETTIMEOFDAY and NO_TIMES as well as
  implement a times() alternative. Not only that, but with
  extended_status, we calculate this anyway).
  -
  -* Ronald Tschalär's ap_uuencode() bugfix
  -Message-ID: PR#3411
  -Status: Lars +1 (on concept), Dirkx +1
   
   * Juan Gallego's patch to add CSH-style modifiers (:h, :r, :t, :e)
 to mod_include's variable processing.
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-20 Thread lars
lars99/03/20 07:45:19

  Modified:.STATUS
  Log:
  
  
  Revision  ChangesPath
  1.656 +1 -27 apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.655
  retrieving revision 1.656
  diff -u -r1.655 -r1.656
  --- STATUS1999/03/20 15:41:10 1.655
  +++ STATUS1999/03/20 15:45:18 1.656
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/20 15:41:10 $]
  +  Last modified at [$Date: 1999/03/20 15:45:18 $]
   
   Release:
   
  @@ -456,30 +456,4 @@
   
   * apparently either BrowserMatch or the nokeepalive variable
 cause instability - see PR#1729.
  -
  -Binaries
  -   The goal here is to have two columns of all-Y (where applicable)
  -   for the two stable release versions, and nothing under Old unless
  -   the new version just doesn't work on that platform.
  -
  -1.2.6   1.3.4   Old
  -   aix_4.1N   N 1.2.5, 1.3.1
  -   alphalinux N   N 1.3.0
  -   aux_3.1N   Y
  -   decalphaNT N   N 1.3b6
  -   dunix_4.0  N   N 1.2.4, 1.3.0, 1.3.1
  -   freebsd_2.1N   N 1.2.4
  -   freebsd_2.2N   Y
  -   hpux_10.20 N   N 1.2.5
  -   hpux_11N   N 1.3.2
  -   irix_6.2   N   N 1.2.5
  -   linux_2.x  N   N 1.2.4, 1.3.0
  -   netbsd_1.2 N   N 1.2.4
  -   os2N   Y
  -   reliantunix_5.4Y   Y
  -   solarisN   N 1.2.5, 1.3.0, 1.3.1
  -   sparclinux N   N 1.3.0, 1.3.1
  -   sunos_4.1.xN   N 1.2.5
  -   ultrix_4.4 N   N 1.2.4
  -   win32  -   N 1.3.2  (is symlink okay?)
   
  
  
  


cvs commit: apache-devsite binaries.html

1999-03-20 Thread lars
lars99/03/20 11:12:45

  Modified:.binaries.html
  Log:
  new entry
  
  Revision  ChangesPath
  1.14  +2 -1  apache-devsite/binaries.html
  
  Index: binaries.html
  ===
  RCS file: /export/home/cvs/apache-devsite/binaries.html,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- binaries.html 1999/03/19 22:55:47 1.13
  +++ binaries.html 1999/03/20 19:12:44 1.14
  @@ -100,8 +100,9 @@
   LIi386-unixware-svr4:  Sameer Parekh
   LIi386-unknown-freebsd2.1: Andrew Wilson, Brian Tao
   LIi386-unknown-freebsd2.2.8:  Jim Jagielski
  +LIi386-whatever-freebsd3.0:Ken Coar
   LIi686-pc-freebsd3.1:  Ralf S. Engelschall
  -LIi585-pc-redhat5.2:   Ralf S. Engelschall
  +LIi586-pc-redhat5.2:   Ralf S. Engelschall
   LIi386-unknown-linux(ELF): Aram Mirzadeh, Michael Douglass
   LIi386-unknown-netBSD: Lars Eilebrecht, Bill lt;[EMAIL PROTECTED]gt;
   LIi386-unknown-sco3:   Ben Laurie
  
  
  


cvs commit: apache-1.3/src/support htpasswd.c

1999-03-19 Thread lars
lars99/03/19 13:20:49

  Modified:src/support htpasswd.c
  Log:
  make functions static, fix missing prototype warning
  
  Revision  ChangesPath
  1.24  +5 -5  apache-1.3/src/support/htpasswd.c
  
  Index: htpasswd.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/support/htpasswd.c,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- htpasswd.c1999/03/10 20:58:23 1.23
  +++ htpasswd.c1999/03/19 21:20:48 1.24
  @@ -294,7 +294,7 @@
* Check to see if the specified file can be opened for the given
* access.
*/
  -int accessible(char *fname, char *mode)
  +static int accessible(char *fname, char *mode)
   {
   FILE *s;
   
  @@ -309,7 +309,7 @@
   /*
* Return true if a file is readable.
*/
  -int readable(char *fname)
  +static int readable(char *fname)
   {
   return accessible(fname, r);
   }
  @@ -317,7 +317,7 @@
   /*
* Return true if the specified file can be opened for write access.
*/
  -int writable(char *fname)
  +static int writable(char *fname)
   {
   return accessible(fname, a);
   }
  @@ -325,7 +325,7 @@
   /*
* Return true if the named file exists, regardless of permissions.
*/
  -int exists(char *fname)
  +static int exists(char *fname)
   {
   #ifdef WIN32
   struct _stat sbuf;
  @@ -346,7 +346,7 @@
* Copy from the current position of one file to the current position
* of another.
*/
  -void copy_file(FILE *target, FILE *source)
  +static void copy_file(FILE *target, FILE *source)
   {
   static char line[MAX_STRING_LEN];
   
  
  
  


cvs commit: apache-devsite binaries.html

1999-03-19 Thread lars
lars99/03/19 14:55:47

  Modified:.binaries.html
  Log:
  Add info about email address.
  
  Revision  ChangesPath
  1.13  +6 -2  apache-devsite/binaries.html
  
  Index: binaries.html
  ===
  RCS file: /export/home/cvs/apache-devsite/binaries.html,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- binaries.html 1999/03/17 21:24:08 1.12
  +++ binaries.html 1999/03/19 22:55:47 1.13
  @@ -33,17 +33,21 @@
make sure that you rename the directory to reflect the complete
version number, e.g. codeapache_1.3.5/code./cite/small)
   LICODEcd apache_1.3.x/CODE
  -LICODE./src/helpers/binbuild.sh/CODE
  +LICODE./src/helpers/binbuild.sh lt;your-email-addressgt;/CODE
   /UL
   
   P
  +If you don't specify your email adddress the script will build
  +one for you based on your account and hostname.
   After the execution of binbuild.sh you should see the following
   output:
   
   DL
   DDCODEBuilding Apache 1.3.x binary distribution.../CODE
   DDCODEPlatform is citeplatform/cite.../CODE
  -DDCODEBinary images successfully created.../CODE
  +DDCODEBinary image successfully created.../CODE
  +DDCODEServer version: Apache/1.3.x (Unix)/CODE
  +DDCODEServer built:   citedate/cite/CODE
   DDCODECreating supplementary files.../CODE
   DDCODECreating distribution archive and readme file.../CODE
   DDCODEReady./CODE
  
  
  


cvs commit: apache-1.3/src/helpers binbuild.sh

1999-03-19 Thread lars
lars99/03/19 14:57:31

  Modified:src/helpers binbuild.sh
  Log:
  Add option to let the user specify an email address.
  
  Revision  ChangesPath
  1.8   +12 -3 apache-1.3/src/helpers/binbuild.sh
  
  Index: binbuild.sh
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/binbuild.sh,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- binbuild.sh   1999/03/16 23:46:02 1.7
  +++ binbuild.sh   1999/03/19 22:57:30 1.8
  @@ -7,16 +7,22 @@
   # See http://www.apache.org/docs/LICENSE
   
   
  +CONFIGPARAM=--with-layout=BinaryDistribution --enable-module=most 
--enable-shared=max
   APDIR=`pwd`
   APDIR=`basename $APDIR`
   VER=`echo $APDIR |sed s/apache_//`
   OS=`src/helpers/GuessOS`
  -USER=`src/helpers/buildinfo.sh -n [EMAIL PROTECTED]
   TAR=`src/helpers/PrintPath tar`
   GTAR=`src/helpers/PrintPath gtar`
   GZIP=`src/helpers/PrintPath gzip`
  -CONFIGPARAM=--with-layout=BinaryDistribution --enable-module=most 
--enable-shared=max
   
  +if [ x$1 != x ]
  +then
  +  USER=$1
  +else
  +  USER=`src/helpers/buildinfo.sh -n [EMAIL PROTECTED]
  +fi
  +
   if [ ! -f ./ABOUT_APACHE ]
   then
 echo ERROR: The current directory contains no valid Apache distribution.
  @@ -58,8 +64,11 @@
 echo ERROR: Failed to build Apache. See \build.log\ for details.
 exit 1;
   fi
  +
  +echo Binary image successfully created...
  +
  +./bindist/bin/httpd -v
   
  -echo Binary images successfully created...
   echo Creating supplementary files...
   
   ( echo\
  
  
  


cvs commit: apache-devsite binaries.html

1999-03-16 Thread lars
lars99/03/16 15:45:22

  Modified:.binaries.html
  Log:
  Update
  
  Revision  ChangesPath
  1.11  +88 -45apache-devsite/binaries.html
  
  Index: binaries.html
  ===
  RCS file: /export/home/cvs/apache-devsite/binaries.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- binaries.html 1999/03/16 00:39:51 1.10
  +++ binaries.html 1999/03/16 23:45:21 1.11
  @@ -1,66 +1,105 @@
  -HTMLHEAD
  -TITLEBinary Releases/TITLE
  -/HEADBODY
  +!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 3.2 Final//EN
  +HTML
  + HEAD
  +  TITLEApache Unix Binary Distributions/TITLE
  + /HEAD
  +!-- Background white, links blue (unvisited), navy (visited), red (active) 
--
  + BODY
  +  BGCOLOR=#FF
  +  TEXT=#00
  +  LINK=#FF
  +  VLINK=#80
  +  ALINK=#FF
  + 
  +!--#include virtual=header.html --
  +  H1 ALIGN=CENTERApache Unix Binary Distributions/H1
  +
  +P
  +From Apache 1.3.5 onwards binary releases are made with a script which
  +is part of every standard Apache distribution:
  +
  +P
  +DL
  +DDCODEapache_1.3.x/src/helpers/binbuild.sh/CODE
  +/DL
   
  -H1Binary Releases/H1
  -
  -Binary releases of Apache are defined as having an httpd executable in
  -the src/ directory and a Makefile/Configuration already set to the
  -platform's settings.  The binary is built with only the standard
  -modules.  The .o files should *not* be left in the directory after the
  -build - they just add space to the .tar.gz file to be transferred.
  -
  -P
  -
  -Binaries are to be put in the
  -CODEdist/binaries/(platform)_(version)/CODE directory of the
  -apache web site (as in, dist/binaries/solaris_2.4), with the following
  -format for its filename:
  -
   P
  +To create a binary distribution with this script you have to follow
  +these steps:
   
  -CODEapache_(version)-(platform)-(OSversion).tar.gz/CODE
  -
  -P
  -
  -As in, apache_0.8.16-solaris-2.4.tar.gz.  The name of the directory
  -created by the tar file should not change.  The name of the executable 
should be
  -
  -P
  -
  -CODEhttpd-(platform)/CODE
  -
  -P
  -
  -As in, CODEhttpd-solaris/CODE.
  +UL
  +LICODEgzip -d -c apache_1.3.x.tar.gz | tar xvf -/CODE
  +BR(smallciteYou may use codecvs export/code, but please
  + make sure that you rename the directory to reflect the complete
  + version number, e.g. codeapache_1.3.5/code./cite/small)
  +LICODEcd apache_1.3.x/CODE
  +LICODE./src/helpers/binbuild.sh/CODE
  +/UL
   
   P
  +After the execution of binbuild.sh you should see the following
  +output:
   
  -STRONGCompiling:/STRONG Use the best compiler for the platform, given 
that
  -the object code built with the compiler is free from any restrictions
  -the compiler might put on it.  Set for the first or second level of
  -optimization, and don't compile with debugging since anyone who can use a
  -debugger to backtrace a core dump can probably also compile it themselves
  -anyways.
  +DL
  +DDCODEBuilding Apache 1.3.x binary distribution.../CODE
  +DDCODEPlatform is citeplatform/cite.../CODE
  +DDCODEBinary images successfully created.../CODE
  +DDCODECreating supplementary files.../CODE
  +DDCODECreating distribution archive and readme file.../CODE
  +DDCODEReady./CODE
  +DDCODEYou can find the binary archive
  +  (apache_1.3.x-citeplatform/cite.tar.gz)/CODE
  +DDCODEand the readme file (apache_1.3.x-citeplatform/cite.README) in 
the/CODE
  +DDCODEparent directory./CODE
  +/DL
  +
  +P
  +Before the archive is created the binbuild script checks if the httpd
  +was successfully created. If anything went wrong you will see a
  +corresponding error message. Take a look at the file
  +codebuild.log/code to find out why the build failed.
  +
  +P
  +Binaries are configured with the following APACI options:
  +
  +PRE
  +--with-layout=BinaryDistribution
  +--enable-module=most
  +--enable-shared=max
  +/PRE
  +
  +P
  +If your platform has no DSO support you have to edit binbuild.sh and
  +remove the CODE--enable-shared/CODE option from the
  +CODECONFIGPARAM/CODE variable. If you need to specify compiler
  +options or flags you can simply pass them to the binbuild script, e.g.
  +CODECFLAGS=-Dfoobarnbsp;src/helpers/binbuild.sh/CODE.
  +
  +P
  +After you have successfully built the binary distribution you
  +can upload the archive and README to the Apache site.
  +Feel free to create PGP or MD5 signatures.
   
  +H2Binary Contributors/H2
   P
  -
   Here is a list of platforms and the people who volunteered to compile
  -binary releases.
  +binary releases:
   
   UL
   LIalpha-dec-osf3.0:Sameer Parekh
   LIalpha-dec-osf4.0:Lars Eilebrecht
   LIarm-linux(Netwinder-ELF)Rasmus Lerdorf
   LIhppa1.1-hp-hpux: Rob Hartill
  -LIi386-slackware-linux(a.out): Sameer Parekh
  +LIi386-slackware-linux(a.out):Sameer Parekh
   LIi386

cvs commit: apache-1.3/src/helpers binbuild.sh

1999-03-16 Thread lars
lars99/03/16 15:46:03

  Modified:src/helpers binbuild.sh
  Log:
  Oops...
  
  Revision  ChangesPath
  1.7   +10 -10apache-1.3/src/helpers/binbuild.sh
  
  Index: binbuild.sh
  ===
  RCS file: /export/home/cvs/apache-1.3/src/helpers/binbuild.sh,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- binbuild.sh   1999/01/16 22:00:46 1.6
  +++ binbuild.sh   1999/03/16 23:46:02 1.7
  @@ -9,7 +9,7 @@
   
   APDIR=`pwd`
   APDIR=`basename $APDIR`
  -VER=`echo $APDIR |sed s/apache-//`
  +VER=`echo $APDIR |sed s/apache_//`
   OS=`src/helpers/GuessOS`
   USER=`src/helpers/buildinfo.sh -n [EMAIL PROTECTED]
   TAR=`src/helpers/PrintPath tar`
  @@ -90,7 +90,7 @@
 ./bindist/bin/httpd -V  \
 echo 
-- \
   )  README.bindist
  -cp README.bindist ../apache-$VER-$OS.README
  +cp README.bindist ../apache_$VER-$OS.README
   
   ( echo\
 echo Apache $VER binary installation  \
  @@ -192,28 +192,28 @@
   else
 if [ x$GTAR != x ]
 then
  -$GTAR -zcf ../apache-$VER-$OS.tar.gz -C .. --owner=root --group=root 
apache-$VER
  +$GTAR -zcf ../apache_$VER-$OS.tar.gz -C .. --owner=root --group=root 
apache_$VER
 else
   if [ x$TAR != x ]
   then
  -  $TAR -cf ../apache-$VER-$OS.tar -C .. apache-$VER
  +  $TAR -cf ../apache_$VER-$OS.tar -C .. apache_$VER
 if [ x$GZIP != x ]
 then
  -$GZIP ../apache-$VER-$OS.tar
  +$GZIP ../apache_$VER-$OS.tar
 fi
   else
 echo ERROR: Could not find a 'tar' program!
 echoPlease execute the following commands manually:
  -  echo  tar -cf ../apache-$VER-$OS.tar .
  -  echo  gzip ../apache-$VER-$OS.tar
  +  echo  tar -cf ../apache_$VER-$OS.tar .
  +  echo  gzip ../apache_$VER-$OS.tar
   fi
 fi
   
  -  if [ -f ../apache-$VER-$OS.tar.gz ]  [ -f ../apache-$VER-$OS.README ]
  +  if [ -f ../apache_$VER-$OS.tar.gz ]  [ -f ../apache_$VER-$OS.README ]
 then
   echo Ready.
  -echo You can find the binary archive (apache-$VER-$OS.tar.gz)
  -echo and the readme file (apache-$VER-$OS.README) in the
  +echo You can find the binary archive (apache_$VER-$OS.tar.gz)
  +echo and the readme file (apache_$VER-$OS.README) in the
   echo parent directory.
   exit 0;
 else
  
  
  


cvs commit: apache-1.3/htdocs/manual/mod mod_alias.html

1999-03-15 Thread lars
lars99/03/15 14:14:41

  Modified:htdocs/manual/mod mod_alias.html
  Log:
  Typo.
  
  PR: 4060
  Submitted by: Axel Beckert [EMAIL PROTECTED]
  Reviewed by: Lars
  
  Revision  ChangesPath
  1.23  +1 -1  apache-1.3/htdocs/manual/mod/mod_alias.html
  
  Index: mod_alias.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_alias.html,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- mod_alias.html1998/11/20 17:07:38 1.22
  +++ mod_alias.html1999/03/15 22:14:39 1.23
  @@ -286,7 +286,7 @@
   P
   This directive makes the client know that the Redirect is only
   temporary (status 302). Exactly equivalent to CODERedirect
  -temporary/CODE.
  +temp/CODE.
   /P
   HR
   
  
  
  


cvs commit: apache-1.3/src/support apxs.pl

1999-03-15 Thread lars
lars99/03/15 14:47:37

  Modified:src/support apxs.pl
  Log:
  fix double quote bug.
  
  PR: 4058
  Submitted by: James Cloos [EMAIL PROTECTED]
  Reviewed by: Ralf, Lars
  
  Revision  ChangesPath
  1.20  +1 -1  apache-1.3/src/support/apxs.pl
  
  Index: apxs.pl
  ===
  RCS file: /export/home/cvs/apache-1.3/src/support/apxs.pl,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- apxs.pl   1999/03/14 03:53:03 1.19
  +++ apxs.pl   1999/03/15 22:47:36 1.20
  @@ -91,7 +91,7 @@
   ##
   ##  Initial shared object support check
   ##
  -if (not -x `$CFG_SBINDIR/$CFG_TARGET`) {
  +if (not -x $CFG_SBINDIR/$CFG_TARGET) {
print STDERR apxs:Error: $CFG_SBINDIR/$CFG_TARGET not found or not 
executable\n;
exit(1);
   }
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-14 Thread lars
lars99/03/14 13:59:20

  Modified:.STATUS
  Log:
  Update...
  
  Revision  ChangesPath
  1.645 +5 -10 apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.644
  retrieving revision 1.645
  diff -u -r1.644 -r1.645
  --- STATUS1999/03/13 12:19:57 1.644
  +++ STATUS1999/03/14 21:59:19 1.645
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/13 12:19:57 $]
  +  Last modified at [$Date: 1999/03/14 21:59:19 $]
   
   Release:
   
  @@ -26,19 +26,14 @@
   * Randy's proposed changes for binbuild:
   
 1. Change to build binary only distribution
  + Lars: -0
   
  -  2. Use standard Apache layout
  - [It is currently using the BinaryDistribution layout that mimics
  -  the standard Apache layout _without_ any absolute paths in it
  -  (apart from HTTPD_ROOT /usr/local/apache). This makes it possible
  -  for a user to install it in _any_ directory.]
  - [Roy: I don't understand what Randy wants to change here.]
  -
  -  3. Add 'make dist' target to call binbuild.sh
  +  2. Add 'make dist' target to call binbuild.sh
[Roy: That would require a Makefile, which is what binbuild creates.
  I don't see any point in that.]
  + Lars: -1 (Roy explained why)
   
  -  4. Create toplevel 'setup' script for install to mirror win32 name
  +  3. Create toplevel 'setup' script for install to mirror win32 name
[It is currently creating install-bindist.sh]
   
   * long pathnames with many components and no AllowOverride None
  
  
  


cvs commit: apache-site in_the_news.html

1999-03-07 Thread lars
lars99/03/07 06:31:16

  Modified:.in_the_news.html
  Log:
  add link to zdnet article
  
  Submitted by: Joshua Slive [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.47  +11 -0 apache-site/in_the_news.html
  
  Index: in_the_news.html
  ===
  RCS file: /export/home/cvs/apache-site/in_the_news.html,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- in_the_news.html  1999/01/21 01:07:53 1.46
  +++ in_the_news.html  1999/03/07 14:31:16 1.47
  @@ -33,6 +33,17 @@
   
   P
   STRONG
  +  CITEPC Magazine/CITE, March 23, 1999 Issue:
  +  A HREF=http://www.zdnet.com/pcmag/features/opensource/390830.html;
  +  Apache Rules The Web/A
  +/STRONG
  +BLOCKQUOTE
  +  EMNo program has done more to dispel the notion that open-source
  +   can't survive in the real world than the Web server Apache./EM
  +/BLOCKQUOTE
  +
  +P
  +STRONG
CITEApple Computer, Inc./CITE, January 5, 1999, Press Release:
A HREF=http://www.apple.com/pr/library/1999/jan/05osxserver.html;
 Apple Mac OS X Server Uses Apache/A
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-07 Thread lars
lars99/03/07 10:03:41

  Modified:src/modules/standard mod_rewrite.c mod_rewrite.h
   src  CHANGES
   .STATUS
  Log:
  speed up mod_rewrite...
  
  PR: 3160
  Submitted by: Michael van Elst [EMAIL PROTECTED]
  Reviewed by: Jim, Ralf, Lars
  
  Revision  ChangesPath
  1.136 +112 -37   apache-1.3/src/modules/standard/mod_rewrite.c
  
  Index: mod_rewrite.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_rewrite.c,v
  retrieving revision 1.135
  retrieving revision 1.136
  diff -u -r1.135 -r1.136
  --- mod_rewrite.c 1999/01/01 19:50:22 1.135
  +++ mod_rewrite.c 1999/03/07 18:03:34 1.136
  @@ -208,11 +208,7 @@
   /* whether proxy module is available or not */
   static int proxy_available;
   
  -/* the txt mapfile parsing stuff */
  -static regex_t   *lookup_map_txtfile_regexp = NULL;
  -static regmatch_t lookup_map_txtfile_regmatch[MAX_NMATCH];
   
  -
   /*
   ** +---+
   ** |   |
  @@ -952,10 +948,6 @@
   /* check if proxy module is available */
   proxy_available = (ap_find_linked_module(mod_proxy.c) != NULL);
   
  -/* precompile a static pattern
  -   for the txt mapfile parsing */
  -lookup_map_txtfile_regexp = ap_pregcomp(p, MAPFILE_PATTERN, 
REG_EXTENDED);
  -
   /* create the rewriting lockfile in the parent */
   rewritelock_create(s, p);
   ap_register_cleanup(p, (void *)s, rewritelock_remove, ap_null_cleanup);
  @@ -2729,13 +2721,15 @@
   else {
   rewritelog(r, 5, map lookup FAILED: map=%s[txt] 
  key=%s, s-name, key);
  +set_cache_string(cachep, s-name, CACHEMODE_TS,
  + st.st_mtime, key, );
   return NULL;
   }
   }
   else {
   rewritelog(r, 5, cache lookup OK: map=%s[txt] key=%s 
  - val=%s, s-name, key, value);
  -return value;
  +return value[0] != '\0' ? value : NULL;
   }
   }
   else if (s-type == MAPTYPE_DBM) {
  @@ -2764,13 +2758,15 @@
   else {
   rewritelog(r, 5, map lookup FAILED: map=%s[dbm] 
  key=%s, s-name, key);
  +set_cache_string(cachep, s-name, CACHEMODE_TS,
  + st.st_mtime, key, );
   return NULL;
   }
   }
   else {
   rewritelog(r, 5, cache lookup OK: map=%s[dbm] key=%s 
  - val=%s, s-name, key, value);
  -return value;
  +return value[0] != '\0' ? value : NULL;
   }
   #else
   return NULL;
  @@ -2823,15 +2819,22 @@
   else {
   rewritelog(r, 5, map lookup FAILED: map=%s[txt] 
  key=%s, s-name, key);
  +set_cache_string(cachep, s-name, CACHEMODE_TS,
  + st.st_mtime, key, );
   return NULL;
   }
   }
   else {
   rewritelog(r, 5, cache lookup OK: map=%s[txt] key=%s 
  - val=%s, s-name, key, value);
  +}
  +if (value[0] != '\0') {
  +   value = select_random_value_part(r, value);
  +   rewritelog(r, 5, randomly choosen the subvalue `%s', 
value);
  +}
  +else {
  +value = NULL;
   }
  -value = select_random_value_part(r, value);
  -rewritelog(r, 5, randomly choosen the subvalue `%s', 
value);
   return value;
   }
   }
  @@ -2839,44 +2842,45 @@
   return NULL;
   }
   
  -
   static char *lookup_map_txtfile(request_rec *r, char *file, char *key)
   {
   FILE *fp = NULL;
   char line[1024];
  -char output[1024];
  -char result[1024];
   char *value = NULL;
   char *cpT;
  +size_t skip;
   char *curkey;
   char *curval;
   
   if ((fp = ap_pfopen(r-pool, file, r)) == NULL) {
  -return NULL;
  +   return NULL;
   }
   
  -ap_cpystrn(output, MAPFILE_OUTPUT, sizeof(output));
   while (fgets(line, sizeof(line), fp) != NULL) {
  -if (line[strlen(line)-1] == '\n') {
  -line[strlen(line)-1] = '\0';
  -}
  -if (regexec

cvs commit: apache-devsite how-to-release.html

1999-03-06 Thread lars
lars99/03/06 11:24:47

  Modified:.how-to-release.html
  Log:
  Announce on german mailinglist, too.
  
  Revision  ChangesPath
  1.56  +1 -0  apache-devsite/how-to-release.html
  
  Index: how-to-release.html
  ===
  RCS file: /export/home/cvs/apache-devsite/how-to-release.html,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- how-to-release.html   1999/01/10 16:32:49 1.55
  +++ how-to-release.html   1999/03/06 19:24:46 1.56
  @@ -95,6 +95,7 @@
   LIMailing Lists
UL
 LICODE[EMAIL PROTECTED]/CODE
  +  LICODE[EMAIL PROTECTED]/CODE
/UL
  /UL
 P
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-06 Thread lars
lars99/03/06 11:25:13

  Modified:.STATUS
  Log:
  Who can roll the Win32 distribution?
  
  Revision  ChangesPath
  1.636 +2 -1  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.635
  retrieving revision 1.636
  diff -u -r1.635 -r1.636
  --- STATUS1999/03/05 14:58:25 1.635
  +++ STATUS1999/03/06 19:25:12 1.636
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/05 14:58:25 $]
  +  Last modified at [$Date: 1999/03/06 19:25:12 $]
   
   Release:
   
  @@ -8,6 +8,7 @@
 - Release date: March 22. Monday
 - Announcement: March 23. Tuesday
 - Release manager:  Lars
  +  - Win32 release:???
   
   1.3.4: Tagged and rolled on Jan. 9.  Released on 11th, announced on 12th.
   1.3.3: Tagged and rolled on Oct. 7.  Released on 9th, announced on 10th.
  
  
  


cvs commit: apache-1.3 STATUS

1999-03-05 Thread lars
lars99/03/05 06:58:35

  Modified:.STATUS
  Log:
   WAKE UP! It's time for 1.3.5...
  
  Revision  ChangesPath
  1.635 +6 -3  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.634
  retrieving revision 1.635
  diff -u -r1.634 -r1.635
  --- STATUS1999/03/04 19:28:36 1.634
  +++ STATUS1999/03/05 14:58:25 1.635
  @@ -1,10 +1,13 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/03/04 19:28:36 $]
  +  Last modified at [$Date: 1999/03/05 14:58:25 $]
   
   Release:
   
  -1.3.5-dev: current. Projected release date of March, 12. Lars possible
  -RM.
  +1.3.5-dev: current.
  +  - Tarball tagging/rolling:  March 20. Saturday (23.00 CET)
  +  - Release date: March 22. Monday
  +  - Announcement: March 23. Tuesday
  +  - Release manager:  Lars
   
   1.3.4: Tagged and rolled on Jan. 9.  Released on 11th, announced on 12th.
   1.3.3: Tagged and rolled on Oct. 7.  Released on 9th, announced on 10th.
  
  
  


cvs commit: apache-devsite binaries.html

1999-02-28 Thread lars
lars99/02/28 10:19:57

  Modified:.binaries.html
  Log:
  This page looks pretty much outdated...
  
  Revision  ChangesPath
  1.7   +3 -4  apache-devsite/binaries.html
  
  Index: binaries.html
  ===
  RCS file: /export/home/cvs/apache-devsite/binaries.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- binaries.html 1998/06/01 18:07:46 1.6
  +++ binaries.html 1999/02/28 18:19:56 1.7
  @@ -68,18 +68,17 @@
   LIm88k-dg-dgux5.4R2.01:Sameer parekh
   LIm88k-next-next:  Rob Hartill
   LImips-sgi-irix5.3:Mark Imbrianco
  -LImips-sgi-irix6.2:Ralf S. Engelschall
  +LImips-sgi-irix6.2:Ralf S. Engelschall, Lars Eilebrecht
   LImips-sni-svr4:   Martin Kraemer
   LIrs6000-ibm-aix3.2.5: Sameer Parekh
  -LIrs6000-ibm-aix4.1:   Lars Eilebrecht
   LIrs6000-ibm-aix4.2:   Ralf S. Engelschall
   LIsparc-sun-solaris2.4:Brian Behlendorf
  -LIsparc-sun-solaris2.5:Brian Behlendorf
  +LIsparc-sun-solaris2.5:Brian Behlendorf, Lars Eilebrecht
   LIsparc-sun-solaris2.6:Lars Eilebrecht
   LIsparc-sun-sunos4.1.4:Michael Douglass
   LIsparc-sun-sunos4.1.3_U1: Sameer Parekh
   LIsparc-unknown-linux: Lars Eilebrecht
  -LImips-dec-ultirx4.4:  Sameer Parekh
  +LImips-dec-ultrix4.4:  Sameer Parekh
   /UL
   
   Binaries must be built for every Apache release, including
  
  
  


cvs commit: apache-1.3/src CHANGES

1999-02-27 Thread lars
lars99/02/27 09:39:50

  Modified:src  CHANGES
  Log:
  Add PR#
  
  Revision  ChangesPath
  1.1258+1 -1  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1257
  retrieving revision 1.1258
  diff -u -r1.1257 -r1.1258
  --- CHANGES   1999/02/22 17:07:37 1.1257
  +++ CHANGES   1999/02/27 17:39:46 1.1258
  @@ -11,7 +11,7 @@
[Brian Havard [EMAIL PROTECTED]]
   
 *) Reorganised FAQ document.
  - [Joshua Slive [EMAIL PROTECTED]]
  + [Joshua Slive [EMAIL PROTECTED]] PR#2497
   
 *) src/support/: The ApacheBench benchmark program was overhauled by
David N. Welton: you can now have it generate an HTML TABLE, presumably
  
  
  


cvs commit: apache-1.3 STATUS

1999-02-27 Thread lars
lars99/02/27 09:46:34

  Modified:.STATUS
  Log:
  
  
  Revision  ChangesPath
  1.632 +8 -7  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.631
  retrieving revision 1.632
  diff -u -r1.631 -r1.632
  --- STATUS1999/02/25 15:48:52 1.631
  +++ STATUS1999/02/27 17:46:33 1.632
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/02/25 15:48:52 $]
  +  Last modified at [$Date: 1999/02/27 17:46:33 $]
   
   Release:
   
  @@ -52,7 +52,7 @@
 Allows mod_log_agent and mod_log_referer to be dropped from
 distribution.
MID: [EMAIL PROTECTED]
  - Status: Ken +1
  + Status: Ken +1, Lars +1 (untested)
   
   * Tony Finch's [PATCH] mod_log_config: support for reliably parsable logs
 Allows use of C-style backslash escapes in mod_log_config format 
strings
  @@ -68,7 +68,8 @@
 waiting for a review from Dean for the shared memory
 hard-core stuff. When someone else is also interested
 please review the shared memory deep-level code.
  - Doug: +1 on concept (untested)
  +Doug: +1 on concept (untested)
  +Lars: +1 on concept
   
   * Fred's [PATCH: srm.conf and access.conf refer to httpd.conf
   Message-ID: [EMAIL PROTECTED]
  @@ -77,7 +78,7 @@
   * Jun-ichiro itojun Hagino's [PATCH] IPv6 enable patch
 ftp://ftp.kame.net/pub/kame/misc/apache-134-v6-19990118.diff.gz
   Message-ID: [EMAIL PROTECTED]
  -Status: 
  +Status: Lars +1 (on concept)
   
   * Tony Finch's [PATCH] to mod_log_config.c to get both the 1.3.3
 behaviour of %v and the 1.3.4 behaviour as %V.
  @@ -86,7 +87,7 @@
   
   * Ralf's patch to fix append of target name to layout paths
   Message-ID: [EMAIL PROTECTED]
  -Status: Ralf +1, Roy +1
  +Status: Ralf +1, Roy +1, Lars +1
   
   * Fred's PATCH: Add cgidir, htdocsdir, iconsdir variables in 
Makefile.tmpl
   Message-ID: [EMAIL PROTECTED]
  @@ -94,7 +95,7 @@
   
   * Fred's PATCH: Add Mac OS X Server Layout file layout
   Message-ID: [EMAIL PROTECTED]
  -Status: Roy +1, Dirkx +0
  +Status: Roy +1, Dirkx +0, Lars +0
   
   * Jim Patterson's patch to make mod_info work on Win32
   Message-ID: PR#1442
  @@ -143,7 +144,7 @@
   
   * Greg Stein's ap_sub_req_method_uri()
Message-ID: [EMAIL PROTECTED]
  - Status: Doug +1
  + Status: Doug +1, Lars +1 (concept)
   
   In progress:
   
  
  
  


cvs commit: apache-1.3/htdocs/manual sections.html

1999-02-21 Thread lars
lars99/02/20 17:47:11

  Modified:htdocs/manual sections.html
  Log:
  Updated docs; no FollowSymLinks in DirectoryMatch
  
  PR: 2657
  Obtained from: Brian Thomas [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.9   +6 -4  apache-1.3/htdocs/manual/sections.html
  
  Index: sections.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/sections.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- sections.html 1998/07/03 20:12:34 1.8
  +++ sections.html 1999/02/21 01:47:10 1.9
  @@ -33,9 +33,10 @@
   section).  Semantically however some things, and the most
   notable are CODEAllowOverride/CODE and the two options
   CODEFollowSymLinks/CODE and CODESymLinksIfOwnerMatch/CODE,
  -make no sense in CODElt;Locationgt;/CODE.  The same for
  -CODElt;Filesgt;/CODE -- syntactically everything is fine, but
  -semantically some things are different.
  +make no sense in CODElt;Locationgt;/CODE,
  +CODElt;LocationMatchgt;/CODE or CODElt;DirectoryMatchgt;/CODE.
  +The same for CODElt;Filesgt;/CODE -- syntactically everything
  +is fine, but semantically some things are different.
   
   H2How the sections are merged/H2
   
  @@ -134,7 +135,8 @@
   LI
   It is not possible to use CODEOptions FollowSymLinks/CODE
   or CODEOptions SymLinksIfOwnerMatch/CODE inside a
  -CODElt;Locationgt;/CODE/CODElt;LocationMatchgt;/CODE section
  +CODElt;Locationgt;/CODE, CODElt;LocationMatchgt;/CODE
  +or CODElt;DirectoryMatchgt;/CODE section
   (the options are simply ignored).
   Using the options in question is only possible inside a
   CODElt;Directorygt;/CODE section (or a CODE.htaccess/CODE 
file).
  
  
  


cvs commit: apache-1.3/src CHANGES

1999-02-20 Thread lars
lars99/02/19 18:37:51

  Modified:htdocs/manual/misc FAQ.html
   src  CHANGES
  Log:
  new FAQ doc
  
  Submitted by: Joshua Slive [EMAIL PROTECTED]
  Reviewed by: Bill Stoddard, Lars Eilebrecht
  
  Revision  ChangesPath
  1.141 +1408 -1378apache-1.3/htdocs/manual/misc/FAQ.html
  
  Index: FAQ.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/misc/FAQ.html,v
  retrieving revision 1.140
  retrieving revision 1.141
  diff -u -r1.140 -r1.141
  --- FAQ.html  1999/02/16 15:11:30 1.140
  +++ FAQ.html  1999/02/20 02:37:44 1.141
  @@ -14,7 +14,7 @@
 !--#include virtual=header.html --
 H1 ALIGN=CENTERApache Server Frequently Asked Questions/H1
 P
  -  $Revision: 1.140 $ ($Date: 1999/02/16 15:11:30 $)
  +  $Revision: 1.141 $ ($Date: 1999/02/20 02:37:44 $)
 /P
 P
 The latest version of this FAQ is always available from the main
  @@ -81,8 +81,8 @@
   !--   PR #2300.--
   !-- - how do I tell what version of Apache I am running?   --
   UL
  - LISTRONGBackground/STRONG
  -  OL START=1
  + LISTRONGA. Background/STRONG
  +  OL
  LIA HREF=#whatWhat is Apache?/A
  /LI
  LIA HREF=#whyWhy was Apache created?/A
  @@ -106,55 +106,100 @@
  /LI
 /OL
/LI
  - LISTRONGTechnical Questions/STRONG
  -  OL START=11
  + LISTRONGB. General Technical Questions/STRONG
  +  OL
  LIA HREF=#what2doquot;Why can't I ...?  Why won't ...
   work?quot;  What to do in case of problems/A
  /LI
  LIA HREF=#compatibleHow compatible is Apache with my existing
   NCSA 1.3 setup?/A
  /LI
  -   LIA HREF=#CGIoutsideScriptAliasHow do I enable CGI execution
  -in directories other than the ScriptAlias?/A
  +   LIA HREF=#year2000Is Apache Year 2000 compliant?/A
  /LI
  -   LIA HREF=#premature-script-headersWhat does it mean when my
  -CGIs fail with quot;SAMPPremature end of script
  -headers/SAMPquot;?/A
  +   LIA HREF=#submit_patchHow do I submit a patch to the Apache 
Group?/A
  /LI
  -   LIA HREF=#ssi-part-iHow do I enable SSI (parsed HTML)?/A
  +   LIA HREF=#dominationWhy has Apache stolen my favourite site's
  +Internet address?/A
  /LI
  -   LIA HREF=#ssi-part-iiWhy don't my parsed files get cached?/A
  +   LIA HREF=#apspamWhy am I getting spam mail from the Apache site?/A
  /LI
  -   LIA HREF=#ssi-part-iiiHow can I have my script output parsed?/A
  +   LIA HREF=#redistMay I include the Apache software on a CD or other
  +package I'm distributing?/A
  /LI
  -   LIA HREF=#ssi-part-ivSSIs don't work for VirtualHosts and/or 
  -user home directories/A
  +   LIA HREF=#zoomWhat's the best hardware/operating system/... How do
  +I get the most out of my Apache Web server?/A
  /LI
  -   LIA HREF=#proxyDoes or will Apache act as a Proxy server?/A
  +   LIA HREF=#regexWhat are regular expressions?/A
  /LI
  -   LIA HREF=#multiviewsWhat are quot;multiviewsquot;?/A
  +  /OL
  + /LI
  + LISTRONGC. Building Apache/STRONG
  +  OL
  +   LIA HREF=#bind8.1Why do I get an error about an undefined
  +reference to quot;SAMP__inet_ntoa/SAMPquot; or other
  +SAMP__inet_*/SAMP symbols?/A
  +   /LI
  +   LIA HREF=#cantbuildWhy won't Apache compile with my
  +system's SAMPcc/SAMP?/A
  +   /LI
  +   LIA HREF=#linuxiovecWhy do I get complaints about redefinition
  +of quot;CODEstruct iovec/CODEquot; when compiling under 
Linux?/A
  +   /LI
  +   LIA HREF=#broken-gccI'm using gcc and I get some compilation 
errors, 
  + what is wrong?/A
  +   /LI
  +   LIA HREF=#glibc-cryptI'm using RedHat Linux 5.0, or some other
  +SAMPglibc/SAMP-based Linux system, and I get errors with the
  +CODEcrypt/CODE function when I attempt to build Apache 1.2./A
  +   /LI
  +  /OL
  + /LI
  +
  + LISTRONGD. Error Log Messages and Problems Starting Apache/STRONG
  +  OL
  +   LIA HREF=#setgidWhy do I get quot;SAMPsetgid: Invalid
  +argument/SAMPquot; at startup?/A
  +   /LI
  +   LIA HREF=#nodelayWhy am I getting quot;SAMPhttpd: could not
  +set socket option TCP_NODELAY/SAMPquot; in my error log?/A
  +   /LI
  +   LIA HREF=#peerresetWhy am I getting quot;SAMPconnection
  +reset by peer/SAMPquot; in my error log?/A
  +   /LI
  +   LIA HREF=#wheres-the-dumpThe errorlog says Apache dumped core,
  +but where's the dump file?/A
  +   /LI
  +   LIA HREF=#linux-shmgetWhen I run it under Linux I get quot;shmget:
  +function not foundquot;, what should I do?/A
  +   /LI
  +   LIA HREF=#nfslockingServer hangs, or fails to start, and/or error 
log
  +fills with quot;SAMPfcntl: F_SETLKW: No record locks
  +available/SAMPquot; or similar messages/A
  +   /LI
  +   LIA HREF=#aixccbugWhy am I getting SAMPExpected lt/Directorygt;
  +but saw lt;/Directorygt

cvs commit: apache-1.3/htdocs/manual/misc FAQ.html

1999-02-14 Thread lars
lars99/02/13 16:45:09

  Modified:htdocs/manual/misc FAQ.html
  Log:
  Update y2k FAQ.
  
  Revision  ChangesPath
  1.138 +6 -13 apache-1.3/htdocs/manual/misc/FAQ.html
  
  Index: FAQ.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/misc/FAQ.html,v
  retrieving revision 1.137
  retrieving revision 1.138
  diff -u -r1.137 -r1.138
  --- FAQ.html  1999/02/04 18:15:05 1.137
  +++ FAQ.html  1999/02/14 00:45:08 1.138
  @@ -14,7 +14,7 @@
 !--#include virtual=header.html --
 H1 ALIGN=CENTERApache Server Frequently Asked Questions/H1
 P
  -  $Revision: 1.137 $ ($Date: 1999/02/04 18:15:05 $)
  +  $Revision: 1.138 $ ($Date: 1999/02/14 00:45:08 $)
 /P
 P
 The latest version of this FAQ is always available from the main
  @@ -2046,18 +2046,6 @@
 the century is SAMP20/SAMP rather than SAMP19/SAMP.
 /P
 P
  -  Some aspects of Apache's output may use two-digit years, such as the
  -  automatic listing of directory contents provided by
  -  A HREF=../mod/mod_autoindex.htmlSAMPmod_autoindex/SAMP/A
  -  with the
  -  A HREF=../mod/mod_autoindex.html#indexoptions
  -  SAMPFancyIndexing/SAMP/A
  -  option enabled, but it is improper to depend upon such displays for
  -  specific syntax.  And even that issue is being addressed by the
  -  developers; a future version of Apache should allow you to format that
  -  display as you like.
  -  /P
  -  P
 Although Apache is Year 2000 compliant, you may still get problems
 if the underlying OS has problems with dates past year 2000
 (EMe.g./EM, OS calls which accept or return year numbers).
  @@ -2066,6 +2054,11 @@
 the magic boundary to worry about is the year 2038 and not 2000.
 But modern operating systems shouldn't cause any trouble
 at all.
  +  /P
  +  P
  +  Users of Apache 1.2.x should upgrade to a current version of Apache 1.3
  +  (see A HREF=../new_features_1_3.html#miscyear-2000 improvements in
  +  Apache 1.3/A for details).
 /P
 HR
/LI
  
  
  


cvs commit: apache-1.3/htdocs/manual/misc FAQ.html

1999-02-14 Thread lars
lars99/02/13 17:03:19

  Modified:htdocs/manual/misc FAQ.html
  Log:
  make windoze users happy...
  
  PR: 3860
  Submitted by: Joshua Slive [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.139 +3 -2  apache-1.3/htdocs/manual/misc/FAQ.html
  
  Index: FAQ.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/misc/FAQ.html,v
  retrieving revision 1.138
  retrieving revision 1.139
  diff -u -r1.138 -r1.139
  --- FAQ.html  1999/02/14 00:45:08 1.138
  +++ FAQ.html  1999/02/14 01:03:18 1.139
  @@ -14,7 +14,7 @@
 !--#include virtual=header.html --
 H1 ALIGN=CENTERApache Server Frequently Asked Questions/H1
 P
  -  $Revision: 1.138 $ ($Date: 1999/02/14 00:45:08 $)
  +  $Revision: 1.139 $ ($Date: 1999/02/14 01:03:18 $)
 /P
 P
 The latest version of this FAQ is always available from the main
  @@ -526,7 +526,8 @@
   /P
  /LI
  LISTRONGAsk in the SAMPcomp.infosystems.www.servers.unix/SAMP
  -USENET newsgroup/STRONG
  +or SAMPcomp.infosystems.www.servers.ms-windows/SAMP USENET
  +newsgroup (as appropriate for the platform you use)./STRONG
   P
   A lot of common problems never make it to the bug database because
   there's already high Qamp;A traffic about them in the
  
  
  


cvs commit: apache-site ABOUT_APACHE.html info.html

1999-02-14 Thread lars
lars99/02/13 17:04:05

  Modified:.ABOUT_APACHE.html info.html
  Log:
  make windoze users happy...
  
  PR: 3860
  Submitted by: Joshua Slive [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.24  +5 -1  apache-site/ABOUT_APACHE.html
  
  Index: ABOUT_APACHE.html
  ===
  RCS file: /export/home/cvs/apache-site/ABOUT_APACHE.html,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- ABOUT_APACHE.html 1998/11/21 09:50:30 1.23
  +++ ABOUT_APACHE.html 1999/02/14 01:04:04 1.24
  @@ -387,7 +387,11 @@
  to the USENET newsgroup
  quot;A
  HREF=news:comp.infosystems.www.servers.unix;
  -  SAMPcomp.infosystems.www.servers.unix/SAMP/Aquot;.
  +  SAMPcomp.infosystems.www.servers.unix/SAMP/Aquot; or
  +   quot;A
  +   HREF=news:comp.infosystems.www.servers.ms-windows;
  +  SAMPcomp.infosystems.www.servers.ms-windows/SAMP/Aquot;
  +   (as appropriate for the platform you use).
 /BLOCKQUOTE
 HR
 H2
  
  
  
  1.16  +7 -2  apache-site/info.html
  
  Index: info.html
  ===
  RCS file: /export/home/cvs/apache-site/info.html,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- info.html 1999/01/28 09:15:57 1.15
  +++ info.html 1999/02/14 01:04:04 1.16
  @@ -107,8 +107,13 @@
   A
HREF=news:comp.infosystems.www.servers.unix;
   comp.infosystems.www.servers.unix/A
  -newsgroup. Our policy will be for complete openness, with the
  -exception of reports of security holes.
  +and 
  +A
  + HREF=news:comp.infosystems.www.servers.ms-windows;
  +comp.infosystems.www.servers.ms-windows/A
  +newsgroups. Our policy will be for complete openness,
  +with the exception of reports of
  +A HREF=http://www.apache.org/security_report.html;security holes/A.
   
   PA number of companies now also provide full commercial support for the
   Apache server
  
  
  


cvs commit: apache-1.3 ABOUT_APACHE

1999-02-14 Thread lars
lars99/02/13 18:30:48

  Modified:.ABOUT_APACHE
  Log:
  Update
  
  Revision  ChangesPath
  1.22  +17 -14apache-1.3/ABOUT_APACHE
  
  Index: ABOUT_APACHE
  ===
  RCS file: /export/home/cvs/apache-1.3/ABOUT_APACHE,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- ABOUT_APACHE  1998/09/24 10:32:08 1.21
  +++ ABOUT_APACHE  1999/02/14 02:30:47 1.22
  @@ -3,7 +3,7 @@
   
http://www.apache.org/
   
  - September 1998
  +  February 1999
   
   The Apache Project is a collaborative software development effort aimed
   at creating a robust, commercial-grade, featureful, and freely-available
  @@ -65,17 +65,20 @@
   Less than a year after the group was formed, the Apache server passed
   NCSA's httpd as the #1 server on the Internet.
   
  +The survey by Netcraft (http://www.netcraft.com/survey/) shows that Apache
  +is today more widely used than all other web servers combined.
  +

   
  -Current Apache Group in alphabetical order as of 23 September 1998:
  +Current Apache Group in alphabetical order as of 14 February 1999:
   
  -   Brian Behlendorf   Organic Online, California 
  +   Brian Behlendorf   O'Reilly and Associates, California 
  Ken Coar   IBM Corporation, Research Triangle Park, NC, USA
  Mark J. CoxC2Net Europe, UK 
  -   Lars EilebrechtKreuztal, Germany 
  +   Lars EilebrechtCable  Wireless ECRC, Munich, Germany 
  Ralf S. EngelschallMunich, Germany.
  Roy T. FieldingUC Irvine, California 
  -   Dean GaudetTransmeta Corporation, California 
  +   Dean GaudetCritical Path, California 
  Rob HartillInternet Movie DB, UK 
  Ben Hyde   Gensym, Massachusetts
  Jim Jagielski  jaguNET ISP, Maryland 
  @@ -85,11 +88,11 @@
  Doug MacEachernFreelance Consultant, Summer Seasons, Earth
  Aram W. Mirzadeh   Qosina Corporation, New York 
  Sameer Parekh  C2Net, California 
  -   Marc SlemkoCanada 
  Cliff Skolnick Freelance, California
  +   Marc SlemkoCanada 
  Bill Stoddard  IBM Corp., Research Triangle Park, NC
  Paul SuttonC2Net Europe, UK 
  -   Randy Terbush  Zyzzyva ISP, Nebraska 
  +   Randy Terbush  Covalent Technologies, Nebraska 
  Dirk-Willem van Gulik  Freelance Consultant, Italy 
   
   Apache Emeritae (old group members now off doing other things)
  @@ -101,13 +104,15 @@
  
   Other major contributors
   
  -   Rob McCool (original author of the NCSA httpd),
  +   Howard Fear (mod_include), Florent Guillaume (language negotiation),
  +   Koen Holtman (rewrite of mod_negotiation),
  +   Kevin Hughes (creator of all those nifty icons),
  +   Rasmus Lerdorf (mod_info, mod_php, mod_php3),
  Brandon Long and Beth Frank (NCSA Server Development Team, post-1.3),
  +   Ambarish Malpani (Beginning of the NT port),
  +   Rob McCool (original author of the NCSA httpd 1.3),
  Paul Richards (convinced the group to use remote CVS after 1.0),
  -   Kevin Hughes (creator of all those nifty icons),
  -   Henry Spencer (author of the regex library), Garey Smiley (OS/2 port),
  -   Howard Fear (mod_include), Florent Guillaume (language negotiation), 
  -   Ambarish Malpani (NT port).
  +   Garey Smiley (OS/2 port), Henry Spencer (author of the regex library).
   
   Many 3rd-party modules, frequently used and recommended, are also
   freely-available and linked from the related projects page:
  @@ -233,5 +238,3 @@
   

   Roy Fielding, June 1997
  -
  -If you are interested in other WWW history, see http://www.webhistory.org/
  
  
  


cvs commit: apache-site/contributors index.html

1999-02-14 Thread lars
lars99/02/13 18:33:04

  Modified:.ABOUT_APACHE.html
   contributors index.html
  Log:
  D'oh, forgot the date.
  
  Revision  ChangesPath
  1.26  +1 -1  apache-site/ABOUT_APACHE.html
  
  Index: ABOUT_APACHE.html
  ===
  RCS file: /export/home/cvs/apache-site/ABOUT_APACHE.html,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- ABOUT_APACHE.html 1999/02/14 02:30:32 1.25
  +++ ABOUT_APACHE.html 1999/02/14 02:33:03 1.26
  @@ -22,7 +22,7 @@
   HREF=http://www.apache.org;
  http://www.apache.org//Agt;
  BR
  -   July 1998
  +   February 1999
 /H3
 HR
 H2
  
  
  
  1.66  +1 -1  apache-site/contributors/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/contributors/index.html,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- index.html1999/02/14 02:30:32 1.65
  +++ index.html1999/02/14 02:33:04 1.66
  @@ -21,7 +21,7 @@
   core individuals in the Apache project.
   /P
   
  -H2Current Apache Group in alphabetical order as of 14 July 1998:/H2
  +H2Current Apache Group in alphabetical order as of 14 February 1999:/H2
   
   TABLE BORDER=0
   TR VALIGN=TOP
  
  
  


cvs commit: apache-1.3/htdocs/manual/vhosts details.html name-based.html

1999-02-14 Thread lars
lars99/02/14 06:26:50

  Modified:htdocs/manual/vhosts details.html name-based.html
  Log:
  fix/enhancement
  
  PR: 3745
  Submitted by: Roger Pack [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.10  +1 -1  apache-1.3/htdocs/manual/vhosts/details.html
  
  Index: details.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/vhosts/details.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- details.html  1998/09/17 14:52:03 1.9
  +++ details.html  1999/02/14 14:26:49 1.10
  @@ -126,7 +126,7 @@
   affect the ports assigned in the address set.
   
   PDuring initialization a list for each IP address
  -is generated an inserted into an hash table. If the IP address is
  +is generated and inserted into an hash table. If the IP address is
   used in a CODENameVirtualHost/CODE directive the list contains
   all name-based vhosts for the given IP address. If there are no
   vhosts defined for that address the CODENameVirtualHost/CODE directive
  
  
  
  1.10  +6 -3  apache-1.3/htdocs/manual/vhosts/name-based.html
  
  Index: name-based.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/vhosts/name-based.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- name-based.html   1998/12/18 23:49:44 1.9
  +++ name-based.html   1999/02/14 14:26:49 1.10
  @@ -107,15 +107,18 @@
   familiar with typing www or www.foobar then you will need to add
   CODEServerAlias www www.foobar/CODE.  It isn't possible for the
   server to know what domain the client uses for their name resolution
  -because the client doesn't provide that information in the request./P
  +because the client doesn't provide that information in the request.
  +The CODEServerAlias/CODE directive is generally a way to have different
  +hostnames pointing to the same virtual host.
  +/P
   
   H2Compatibility with Older Browsers/H2
   
   PAs mentioned earlier, there are still some clients in use who
   do not send the required data for the name-based virtual hosts to work
   properly. These clients will always be sent the pages from the
  -CITEprimary/CITE name-based virtual host (the first virtual host
  -appearing in the configuration file for a specific IP address)./P
  +first virtual host listed for that IP address (the
  +CITEprimary/CITE name-based virtual host)./P
   
   PThere is a possible workaround with the
   A HREF=../mod/core.html#serverpathCODEServerPath/CODE/A
  
  
  


cvs commit: apache-1.3 INSTALL

1999-02-11 Thread lars
lars99/02/11 11:59:52

  Modified:.INSTALL
  Log:
  typo...
  
  PR: 3878
  Submitted by: Matthew Tippett [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.53  +1 -1  apache-1.3/INSTALL
  
  Index: INSTALL
  ===
  RCS file: /export/home/cvs/apache-1.3/INSTALL,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- INSTALL   1999/01/24 22:31:47 1.52
  +++ INSTALL   1999/02/11 19:59:51 1.53
  @@ -76,7 +76,7 @@
   under all operating systems therefore you cannot use the DSO 
mechanism
   on all platforms. And Apache currently has only limited built-in
   knowledge on how to compile shared objects because this is heavily
  -platform-dependend. The current state is this:
  +platform-dependent. The current state is this:
   
   o Out-of-the-box supported platforms are:
  - Linux - SunOS - UnixWare
  
  
  


cvs commit: apache-1.3/htdocs/manual handler.html

1999-02-11 Thread lars
lars99/02/11 12:23:01

  Modified:htdocs/manual handler.html
  Log:
  broken link...
  
  PR: 3867
  Submitted by: SAFRAN Philippe [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.18  +1 -1  apache-1.3/htdocs/manual/handler.html
  
  Index: handler.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/handler.html,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- handler.html  1998/11/20 15:56:34 1.17
  +++ handler.html  1999/02/11 20:22:59 1.18
  @@ -29,7 +29,7 @@
   handlers are unrelated to file type. This is advantageous both because
   it is a more elegant solution, but it also allows for both a type
   STRONGand/STRONG a handler to be associated with a file (See also
  -A HREF=mod/mod_mime#multipleextFiles with Multiple Extensions/A)
  +A HREF=mod/mod_mime.html#multipleextFiles with Multiple Extensions/A)
   
   /P
   
  
  
  


cvs commit: apache-site/contributors index.html

1999-01-15 Thread lars
lars99/01/15 07:55:52

  Modified:contributors index.html
  Log:
  Now all german group members are located in Munich... :-)
  
  Revision  ChangesPath
  1.61  +4 -4  apache-site/contributors/index.html
  
  Index: index.html
  ===
  RCS file: /home/cvs/apache-site/contributors/index.html,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- index.html1998/12/19 13:30:04 1.60
  +++ index.html1999/01/15 15:55:51 1.61
  @@ -195,11 +195,11 @@
   
   P
   STRONGName:/STRONG A NAME=larsLars Eilebrecht/ABR
  -STRONGEmail:/STRONG A HREF=mailto:[EMAIL PROTECTED][EMAIL 
PROTECTED]/ABR
  +STRONGEmail:/STRONG A HREF=mailto:[EMAIL PROTECTED][EMAIL 
PROTECTED]/ABR
   STRONGURL:/STRONG A 
HREF=http://www.home.unix-ag.org/sfx/;http://www.home.unix-ag.org/sfx//ABR
  -STRONGOrganization:/STRONG German Unix-AG AssociationBR
  -STRONGOccupation:/STRONG Freelance consultant; writing Apache booksBR
  -STRONGLocation:/STRONG Kreuztal, GermanyBR
  +STRONGOrganization:/STRONG ECRC Network Services, MunichBR
  +STRONGOccupation:/STRONG Internet EngineerBR
  +STRONGLocation:/STRONG Munich, GermanyBR
   STRONGComments:/STRONG To err is human, but I can EMreally/EM foul 
things up.BR
   STRONGOS Expertise:/STRONG Linux, Solaris, (Digital Unix, AIX, FreeBSD) 
and AmigaOSBR
   STRONGContributions:/STRONG Bugs, bug fixes, documentation corrections, 
binary builds.
  
  
  


cvs commit: apache-1.3 STATUS

1999-01-02 Thread lars
lars99/01/02 05:30:21

  Modified:.STATUS
  Log:
  No release today...
  
  Revision  ChangesPath
  1.584 +10 -11apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.583
  retrieving revision 1.584
  diff -u -r1.583 -r1.584
  --- STATUS1999/01/02 09:36:33 1.583
  +++ STATUS1999/01/02 13:30:20 1.584
  @@ -1,12 +1,11 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1999/01/02 09:36:33 $]
  +  Last modified at [$Date: 1999/01/02 13:30:20 $]
   
   Release:
   
   1.3.4-dev: current.
  -Lars is RM.
  -Possible release on January 4. (tagged/rolled on January 2.)
  -Win32 distribution: ??? (any volunteer?)
  +Possible release on ???
  +Lars volunteers as RM for dates after January 21.
   
   1.3.3: Tagged and rolled on Oct. 7.  Released on 9th, announced on 10th.
   1.3.2: Tagged and rolled on Sep. 21. Announced and released on 23rd.
  @@ -137,11 +136,6 @@
 first walk though it line by line 
 the next days before we commit it).
   
  -* Marc's [PATCH] PR#3323: recursive includes
  -Message-ID: [EMAIL PROTECTED]
  - Status: Marc +1, Jim +1 (concept)
  - * Needs more in-depth review *
  -
   * Juan Gallego's patch to add CSH-style modifiers (:h, :r, :t, :e)
 to mod_include's variable processing.
Mesage-ID: PR#3246, also available at
  @@ -159,11 +153,16 @@
   Message-ID: [EMAIL PROTECTED]
   Status: 
   
  +In progress:
  +
  +* Marc's [PATCH] PR#3323: recursive includes
  +Message-ID: [EMAIL PROTECTED]
  + Status: Marc +1, Jim +1 (concept)
  + * Needs more in-depth review *
  +
   * Ronald Tschalär's major update of mod_digest
   Message-ID: [EMAIL PROTECTED]
   Status: 
  -
  -In progress:
   
   * Mark Bixby's freshening up the MPE/iX port (mostly APACI)
Message-ID: [EMAIL PROTECTED]
  
  
  


cvs commit: apache-1.3 STATUS

1998-12-31 Thread lars
lars98/12/31 06:09:11

  Modified:.STATUS
  Log:
  wrong name :-)
  
  Revision  ChangesPath
  1.579 +2 -2  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.578
  retrieving revision 1.579
  diff -u -r1.578 -r1.579
  --- STATUS1998/12/31 01:10:54 1.578
  +++ STATUS1998/12/31 14:09:11 1.579
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/31 01:10:54 $]
  +  Last modified at [$Date: 1998/12/31 14:09:11 $]
   
   Release:
   
  @@ -108,7 +108,7 @@
 First pass for concept; maybe directive should be renamed or
 syntax changed?
Message-ID: [EMAIL PROTECTED]
  - Status: Ken +1 (concept), Lars +1 (concept)
  + Status: Ken +1 (concept), Martin +1 (concept)
   
   * Lars' 'binbuild' patch
   Message-ID: [EMAIL PROTECTED]
  
  
  


cvs commit: apache-1.3 STATUS

1998-12-30 Thread lars
lars98/12/29 16:40:41

  Modified:.STATUS
  Log:
  Already committed...
  
  Revision  ChangesPath
  1.574 +1 -4  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.573
  retrieving revision 1.574
  diff -u -r1.573 -r1.574
  --- STATUS1998/12/29 18:04:29 1.573
  +++ STATUS1998/12/30 00:40:40 1.574
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/29 18:04:29 $]
  +  Last modified at [$Date: 1998/12/30 00:40:40 $]
   
   Release:
   
  @@ -16,9 +16,6 @@
   2.0  : In pre-alpha development, see apache-2.0 repository
   
   RELEASE SHOWSTOPPERS:
  -
  -* APACI: make --config-layout=Apache the default path layout
  -Status: Ralf is working on a patch
   
   * Version component misbehaviour
   See: [EMAIL PROTECTED]
  
  
  


cvs commit: apache-1.3/src CHANGES

1998-12-30 Thread lars
lars98/12/29 17:20:16

  Modified:src  CHANGES
  Log:
  add some PR#
  
  Revision  ChangesPath
  1.1183+2 -1  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1182
  retrieving revision 1.1183
  diff -u -r1.1182 -r1.1183
  --- CHANGES   1998/12/29 09:46:13 1.1182
  +++ CHANGES   1998/12/30 01:20:14 1.1183
  @@ -26,7 +26,7 @@
  negotiation results are consistent across backup/restores and mirrors
- removed possibility of a type map file resolving to another type map
  file as its best variant
  - [Koen Holtman, Roy Fielding, Lars Eilebrecht] PR#3451, 1987
  + [Koen Holtman, Roy Fielding, Lars Eilebrecht] PR#3451, 3299, 1987
   
 *) RFC2396 allows the syntax http://host:/path (with no port number)
but the proxy disallowed it (ap_proxy_canon_netloc()).
  @@ -184,6 +184,7 @@
extension (e.g., .fr, .de) can be labelled as being some other
default language. DefaultLanguage can appear in Directory and 
Files containers as well as .htaccess files.  [Paul Sutton]
  + PR#1180
   
 *) Fix TARGET configuration when configuring and installing using
APACI configure. TARGET now defines the basename of the configuration
  
  
  


cvs commit: apache-1.3 STATUS

1998-12-27 Thread lars
lars98/12/26 16:07:09

  Modified:.STATUS
  Log:
  D'oh... already commited.
  
  Revision  ChangesPath
  1.567 +1 -5  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.566
  retrieving revision 1.567
  diff -u -r1.566 -r1.567
  --- STATUS1998/12/26 23:53:52 1.566
  +++ STATUS1998/12/27 00:07:09 1.567
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/26 23:53:52 $]
  +  Last modified at [$Date: 1998/12/27 00:07:09 $]
   
   Release:
   
  @@ -101,10 +101,6 @@
vhost-xxx.html document out of it. -- rse
   
   Available Patches:
  -
  -* Brian Havard's proxy_util.c patch (WIN32 - CASE_BLIND_FILESYSTEM)
  -Message-ID: [EMAIL PROTECTED]
  -Status: Martin +1, Lars +1
   
   * Lars' 'binbuild' patch
   Message-ID: [EMAIL PROTECTED]
  
  
  


cvs commit: apache-1.3 STATUS

1998-12-26 Thread lars
lars98/12/25 20:32:19

  Modified:.STATUS
  Log:
  
  
  Revision  ChangesPath
  1.565 +5 -5  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.564
  retrieving revision 1.565
  diff -u -r1.564 -r1.565
  --- STATUS1998/12/25 22:51:17 1.564
  +++ STATUS1998/12/26 04:32:18 1.565
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/25 22:51:17 $]
  +  Last modified at [$Date: 1998/12/26 04:32:18 $]
   
   Release:
   
  @@ -101,6 +101,10 @@
   
   Available Patches:
   
  +* Lars' 'binbuild' patch
  +Message-ID: [EMAIL PROTECTED]
  +Status: Lars +1
  +
   * Fabien Coelho's errmsg patch for http_config.c
   Message-ID: PR#3573
   Status: Martin +1 (on concept)
  @@ -167,10 +171,6 @@
   Status: 
   
   In progress:
  -
  -* Lars' 'binbuild' patch/proposal
  -Message-ID: [EMAIL PROTECTED]
  -Status: 
   
   * Ralf's take 2 for MODULE_MAGIC_COOKIE field for module structure
   Message-ID: [EMAIL PROTECTED]
  
  
  


cvs commit: apache-1.3 STATUS

1998-12-26 Thread lars
lars98/12/26 15:53:53

  Modified:.STATUS
  Log:
  
  
  Revision  ChangesPath
  1.566 +6 -1  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.565
  retrieving revision 1.566
  diff -u -r1.565 -r1.566
  --- STATUS1998/12/26 04:32:18 1.565
  +++ STATUS1998/12/26 23:53:52 1.566
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/26 04:32:18 $]
  +  Last modified at [$Date: 1998/12/26 23:53:52 $]
   
   Release:
   
  @@ -45,6 +45,7 @@
   
 - A proposed solution is available.
   See: [EMAIL PROTECTED]
  + [EMAIL PROTECTED]
   
 1. The old way where it is just a source release tarball
plus a pre-compiled src/httpd-gnutriple. It is created
  @@ -100,6 +101,10 @@
vhost-xxx.html document out of it. -- rse
   
   Available Patches:
  +
  +* Brian Havard's proxy_util.c patch (WIN32 - CASE_BLIND_FILESYSTEM)
  +Message-ID: [EMAIL PROTECTED]
  +Status: Martin +1, Lars +1
   
   * Lars' 'binbuild' patch
   Message-ID: [EMAIL PROTECTED]
  
  
  


cvs commit: apache-1.3/src CHANGES

1998-12-25 Thread lars
lars98/12/25 13:59:49

  Modified:src  CHANGES
  Log:
  Don't forget to mention the commit in the CHANGES file...
  
  Revision  ChangesPath
  1.1179+4 -1  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1178
  retrieving revision 1.1179
  diff -u -r1.1178 -r1.1179
  --- CHANGES   1998/12/24 18:07:37 1.1178
  +++ CHANGES   1998/12/25 21:59:47 1.1179
  @@ -163,7 +163,10 @@
to convert binary bytes to hex digits.
[Ronald Tschalär [EMAIL PROTECTED]] PR#3409
   
  -  *) ap_exists_config_define() function is now public
  +  *) Fix SEGV in TCN negotiation if no variants are acceptable.
  + [Martin Plechsmid [EMAIL PROTECTED]] PR#1987
  +
  +  *) API: ap_exists_config_define() function is now public [Doug 
MacEachern]
   
 *) Fix documentation of `Action' directive: It can activate a CGI script
when either a handler or a MIME content type is triggered by the 
request.
  
  
  


cvs commit: apache-1.3 STATUS

1998-12-23 Thread lars
lars98/12/23 12:04:31

  Modified:.STATUS
  Log:
  Update...
  
  Revision  ChangesPath
  1.561 +12 -9 apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.560
  retrieving revision 1.561
  diff -u -r1.560 -r1.561
  --- STATUS1998/12/17 15:12:19 1.560
  +++ STATUS1998/12/23 20:04:30 1.561
  @@ -1,10 +1,11 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/17 15:12:19 $]
  +  Last modified at [$Date: 1998/12/23 20:04:30 $]
   
   Release:
   
   1.3.4-dev: current.
  -(Lars volunteers as release manager)
  +Lars is RM.
  +Possible release on January 4. (tagged/rolled on January 2.)
   
   1.3.3: Tagged and rolled on Oct. 7.  Released on 9th, announced on 10th.
   1.3.2: Tagged and rolled on Sep. 21. Announced and released on 23rd.
  @@ -15,6 +16,13 @@
   
   RELEASE SHOWSTOPPERS:
   
  +* APACI: make --config-layout=Apache the default path layout
  +Status: Ralf is working on a patch
  +
  +* Version component misbehaviour
  +See: [EMAIL PROTECTED]
  +Status: Ralf mentioned that he knows a solution... (?)
  +
   * Paul's [PATCH] Win32 device files
   Message-ID: [EMAIL PROTECTED]
   and [EMAIL PROTECTED]
  @@ -92,7 +100,7 @@
   
   Available Patches:
   
  -* PR#3541 Koen Holtman's cleanup of negociation
  +* PR#3541 Koen Holtman's cleanup of negotiation
Message-ID: PR#3541
Status: 
   
  @@ -100,11 +108,6 @@
   Message-ID: [EMAIL PROTECTED]
   Status: 
   
  -* Ralf's [PATCH] Cleanup command line options
  -Message-ID: [EMAIL PROTECTED]
  -Status: Ralf +1, Roy +1, Jim 0 (is a 1.3.3-1.3.4 bump the place?)
  -Lars 0 (for 1.3)
  -
   * Michael van Elst's patch [PR#3160] to improve mod_rewrite's
 in-core cache handling by using a hash table.
   Message-ID: [EMAIL PROTECTED]
  @@ -466,7 +469,7 @@
  for the two stable release versions, and nothing under Old unless
  the new version just doesn't work on that platform.
   
  -1.2.6   1.3.3   Old
  +1.2.6   1.3.4   Old
  aix_4.1N   N 1.2.5, 1.3.1
  alphalinux N   N 1.3.0
  aux_3.1N   N 1.3.0
  
  
  


cvs commit: apache-1.3 STATUS

1998-12-23 Thread lars
lars98/12/23 13:05:37

  Modified:.STATUS
  Log:
  yet another update...
  
  Revision  ChangesPath
  1.562 +24 -2 apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.561
  retrieving revision 1.562
  diff -u -r1.561 -r1.562
  --- STATUS1998/12/23 20:04:30 1.561
  +++ STATUS1998/12/23 21:05:32 1.562
  @@ -1,11 +1,12 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/23 20:04:30 $]
  +  Last modified at [$Date: 1998/12/23 21:05:32 $]
   
   Release:
   
   1.3.4-dev: current.
   Lars is RM.
   Possible release on January 4. (tagged/rolled on January 2.)
  +Win32 distribution: ??? (any volunteer?)
   
   1.3.3: Tagged and rolled on Oct. 7.  Released on 9th, announced on 10th.
   1.3.2: Tagged and rolled on Sep. 21. Announced and released on 23rd.
  @@ -100,7 +101,26 @@
   
   Available Patches:
   
  -* PR#3541 Koen Holtman's cleanup of negotiation
  +* Jim Patterson's patch to make mod_info work on Win32
  +Message-ID: PR#1442
  +Status: Lars +1 (on concept)
  +
  +* Peter Greis' new '%m' CustomLog option: the time taken to serve the
  +  request, in milli-seconds.
  +Message-ID: PR#2838
  +Status: 
  +
  +* Ask Bjoern Hansen's patch to make Apache set Cache-Control and Pragma
  +  headers if r-no_cache is set and r-headers_out contains an
  +  Expires header.
  +Message-ID: PR#3023
  +Status: 
  +
  +* Ronald Tschalär's ap_uuencode() bugfix
  +Message-ID: PR#3411
  +Status: Lars +1 (on concept)
  +
  +* Koen Holtman's cleanup of negotiation
Message-ID: PR#3541
Status: 
   
  @@ -357,6 +377,8 @@
   * should have a pretty little icon for Apache on Win32
   
   * proxy module doesn't load on Win95.  Why?  Good question.  PR#1462.
  +
  +* Proxy cache garbage collection doesn't work. PR#1891
   
   * Directory /, Directory C:/ both fail to do anything, 
 while Directory * SEGVs.
  @@ -438,7 +460,7 @@
- mod_auth_db.c  (do we want to even try this?  We should have some
 db of some sort... what else can we pick from under win32?)
- mod_auth_dbm.c
  - - mod_info.c (PR re exporting symbols for it...)
  + - mod_info.c (PR#1442 re exporting symbols for it...)
- mod_log_agent.c
- mod_log_referer.c
- mod_mime_magic.c (needs access to mod_mime API stage...)
  
  
  


cvs commit: apache-1.3 STATUS

1998-12-23 Thread lars
lars98/12/23 13:31:54

  Modified:.STATUS
  Log:
  
  
  Revision  ChangesPath
  1.563 +4 -0  apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.562
  retrieving revision 1.563
  diff -u -r1.562 -r1.563
  --- STATUS1998/12/23 21:05:32 1.562
  +++ STATUS1998/12/23 21:31:52 1.563
  @@ -1,5 +1,5 @@
 1.3 STATUS:
  -  Last modified at [$Date: 1998/12/23 21:05:32 $]
  +  Last modified at [$Date: 1998/12/23 21:31:52 $]
   
   Release:
   
  @@ -100,6 +100,10 @@
vhost-xxx.html document out of it. -- rse
   
   Available Patches:
  +
  +* Fabien Coelho's errmsg patch for http_config.c
  +Message-ID: PR#3573
  +Status: Martin +1 (on concept)
   
   * Jim Patterson's patch to make mod_info work on Win32
   Message-ID: PR#1442
  
  
  


cvs commit: apache-1.3/htdocs/manual/vhosts name-based.html

1998-12-18 Thread lars
lars98/12/18 15:49:45

  Modified:htdocs/manual/vhosts name-based.html
  Log:
  Some updates/modifications (based on the patch from the PR).
  
  PR: 3549
  Submitted by: Joshua Slive [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.9   +30 -15apache-1.3/htdocs/manual/vhosts/name-based.html
  
  Index: name-based.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/vhosts/name-based.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- name-based.html   1998/09/17 12:33:12 1.8
  +++ name-based.html   1998/12/18 23:49:44 1.9
  @@ -40,34 +40,49 @@
   H2Using non-IP Virtual Hosts/H2
   
   PUsing the new virtual hosts is quite easy, and superficially looks
  -like the old method. You simply add to one of the Apache configuration
  -files (most likely CODEhttpd.conf/CODE or CODEsrm.conf/CODE)
  -code similar to the following:/P
  +like the old method. The notable difference between IP-based and
  +name-based virtual host configuration is the
  +A HREF=../mod/core.html#namevirtualhostCODENameVirtualHost/CODE/A
  +directive which specifies an IP address that should be used as a
  +target for name-based virtual hosts./P
  +
  +PFor example, suppose that both SAMPwww.domain.tld/SAMP and
  +SAMPwww.otherdomain.tld/SAMP point at the IP address
  +SAMP111.22.33.44/SAMP.  Then you simply add to one of the Apache
  +configuration files (most likely CODEhttpd.conf/CODE or
  +CODEsrm.conf/CODE) code similar to the following:/P
  +
  +
  +
   PRE
   NameVirtualHost 111.22.33.44
   
   lt;VirtualHost 111.22.33.44gt;
   ServerName www.domain.tld
  -DocumentRoot /web/domain
  +DocumentRoot /www/domain
   lt;/VirtualHostgt;
  -/PRE
   
  -PThe notable difference between IP-based and name-based virtual host
  -configuration is the
  -A HREF=../mod/core.html#namevirtualhostCODENameVirtualHost/CODE/A
  -directive which specifies an IP address that should be used as a target for
  -name-based virtual hosts.
  +lt;VirtualHost 111.22.33.44gt;
  +ServerName www.otherdomain.tld
  +DocumentRoot /www/otherdomain
  +lt;/VirtualHostgt;
  +/PRE
   
   POf course, any additional directives can (and should) be placed
   into the CODElt;VirtualHostgt;/CODE section. To make this work,
  -all that is needed is to make sure that the name
  -SAMPwww.domain.tld/SAMP points to the IP address
  -SAMP111.22.33.44/SAMP/P
  +all that is needed is to make sure that the names
  +SAMPwww.domain.tld/SAMP and SAMPwww.otherdomain.tld/SAMP
  +are pointing to the IP address SAMP111.22.33.44/SAMP/P
   
   PNote: When you specify an IP address in a CODENameVirtualHost/CODE
   directive then requests to that IP address will only ever be served
  -by matching lt;VirtualHostgt;s.  The main server will 
STRONGnever/STRONG
  -be served from the specified IP address.
  +by matching lt;VirtualHostgt;s.  The main server will
  +STRONGnever/STRONG be served from the specified IP address.
  +If you start to use virtual hosts you should stop to use the main server
  +as an independent server and rather use it as a place for
  +configuration directives that are common for all your virtual hosts.
  +In other words, you should add a lt;VirtualHostgt; section for
  +EMevery/EM server (hostname) you want to maintain on your server.
   
   PAdditionally, many servers may wish to be accessible by more than
   one name. For example, the example server might want to be accessible
  
  
  


cvs commit: apache-1.3 STATUS

1998-12-17 Thread lars
lars98/12/16 18:42:25

  Modified:.STATUS
  Log:
  
  
  Revision  ChangesPath
  1.559 +15 -1 apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.558
  retrieving revision 1.559
  diff -u -r1.558 -r1.559
  --- STATUS1998/12/16 19:10:46 1.558
  +++ STATUS1998/12/17 02:42:23 1.559
  @@ -32,6 +32,9 @@
   RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
   
   * How should an Apache binary release tarball look?
  +
  +  - A proposed solution is available.
  +See: [EMAIL PROTECTED]
   
 1. The old way where it is just a source release tarball
plus a pre-compiled src/httpd-gnutriple. It is created
  @@ -99,6 +102,7 @@
   * Ralf's [PATCH] Cleanup command line options
   Message-ID: [EMAIL PROTECTED]
   Status: Ralf +1, Roy +1, Jim 0 (is a 1.3.3-1.3.4 bump the place?)
  +Lars 0 (for 1.3)
   
   * Michael van Elst's patch [PR#3160] to improve mod_rewrite's
 in-core cache handling by using a hash table.
  @@ -117,7 +121,7 @@
 to mod_include's variable processing.
Mesage-ID: PR#3246, also available at
   http://www.physics.mcgill.ca/~juan/mod_include.patch
  - Status: Ken -0 for 1.3/+0 for 2.0
  + Status: Ken -0 for 1.3/+0 for 2.0, Lars -0 for 1.3
   
   * Eric Prud'hommeaux's mod_dir mods for file-level access control.
   Message-ID: [EMAIL PROTECTED]
  @@ -130,9 +134,19 @@
   Message-ID: [EMAIL PROTECTED]
   Status: 
   
  +* Ronald Tschalär's major update of mod_digest
  +Message-ID: [EMAIL PROTECTED]
  +Status: 
  +
   In progress:
   
  +* Lars' 'binbuild' patch/proposal
  +Message-ID: [EMAIL PROTECTED]
  +Status: 
  +
   * Ralf's take 2 for MODULE_MAGIC_COOKIE field for module structure
  +Message-ID: [EMAIL PROTECTED]
  +Status:

   * Mark Bixby's freshening up the MPE/iX port (mostly APACI)
Message-ID: [EMAIL PROTECTED]
  
  
  


cvs commit: apache-1.3 Makefile.tmpl

1998-12-13 Thread lars
lars98/12/12 18:08:59

  Modified:.Makefile.tmpl
  Log:
  Fix a little bug.
  There was still one @@ServerRoot@@ in the installed httpd.conf.
  
  Revision  ChangesPath
  1.54  +1 -1  apache-1.3/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===
  RCS file: /export/home/cvs/apache-1.3/Makefile.tmpl,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- Makefile.tmpl 1998/12/05 21:10:40 1.53
  +++ Makefile.tmpl 1998/12/13 02:08:58 1.54
  @@ -408,7 +408,7 @@
-e 's;@@ServerRoot@@/icons;$(datadir)/icons;' \
-e 's;@@ServerRoot@@/cgi-bin;$(datadir)/cgi-bin;' \
-e 's;@@ServerRoot@@/proxy;$(proxycachedir);' \
  - -e 's;@@ServerRoot@@;$(prefix);' \
  + -e 's;@@ServerRoot@@;$(prefix);g' \
-e 's;logs/accept.lock;$(runtimedir)/$(TARGET).lock;' \
-e 
's;logs/apache_runtime_status;$(runtimedir)/$(TARGET).scoreboard;' \
-e 's;logs/httpd.pid;$(runtimedir)/$(TARGET).pid;' \
  
  
  


cvs commit: apache-1.3/conf httpd.conf-dist httpd.conf-dist-win

1998-12-12 Thread lars
lars98/12/12 09:04:30

  Modified:conf httpd.conf-dist httpd.conf-dist-win
  Log:
  Generalize virtual host comments.
  Added info about NameVirtualHost directive and '-S' option.
  
  Revision  ChangesPath
  1.36  +16 -9 apache-1.3/conf/httpd.conf-dist
  
  Index: httpd.conf-dist
  ===
  RCS file: /export/home/cvs/apache-1.3/conf/httpd.conf-dist,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- httpd.conf-dist   1998/11/10 03:27:58 1.35
  +++ httpd.conf-dist   1998/12/12 17:04:29 1.36
  @@ -814,23 +814,30 @@
   
   ### Section 3: Virtual Hosts
   #
  +# VirtualHost: If you want to maintain multiple domains/hostnames on your
  +# machine you can setup VirtualHost containers for them.
  +# Please see the documentation at URL:http://www.apache.org/docs/vhosts/
  +# for further details before you try to setup virtual hosts.
  +# You may use the command line option '-S' to verify your virtual host
  +# configuration.
   
   #
  -# VirtualHost: Allows the daemon to respond to requests for more than one
  -# server address, if your server machine is configured to accept IP packets
  -# for multiple addresses. This can be accomplished with the ifconfig 
  -# alias flag, or through kernel patches like VIF.
  +# If you want to use name-based virtual hosts you need to define at
  +# least one IP address (and port number) for them.
   #
  -# Almost any Apache directive may go into a VirtualHost# container.
  -# See the documentation at URL:http://www.apache.org/docs/vhosts.html, and
  -# also the BindAddress entry.
  +#NameVirtualHost 12.34.56.78:80
  +#NameVirtualHost 12.34.56.78
  +
  +#
  +# VirtualHost example:
  +# Almost any Apache directive may go into a VirtualHost container.
   #
  -#VirtualHost host.some_domain.com
  +#VirtualHost ip.address.of.host.some_domain.com
   #ServerAdmin [EMAIL PROTECTED]
   #DocumentRoot /www/docs/host.some_domain.com
   #ServerName host.some_domain.com
   #ErrorLog logs/host.some_domain.com-error_log
  -#TransferLog logs/host.some_domain.com-access_log
  +#CustomLog logs/host.some_domain.com-access_log common
   #/VirtualHost
   
   #VirtualHost _default_:*
  
  
  
  1.21  +17 -10apache-1.3/conf/httpd.conf-dist-win
  
  Index: httpd.conf-dist-win
  ===
  RCS file: /export/home/cvs/apache-1.3/conf/httpd.conf-dist-win,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- httpd.conf-dist-win   1998/10/22 20:56:52 1.20
  +++ httpd.conf-dist-win   1998/12/12 17:04:29 1.21
  @@ -749,23 +749,30 @@
   
   ### Section 3: Virtual Hosts
   #
  +# VirtualHost: If you want to maintain multiple domains/hostnames on your
  +# machine you can setup VirtualHost containers for them.
  +# Please see the documentation at URL:http://www.apache.org/docs/vhosts/
  +# for further details before you try to setup virtual hosts.
  +# You may use the command line option '-S' to verify your virtual host
  +# configuration.
   
   #
  -# VirtualHost: Allows the daemon to respond to requests for more than one
  -# server address, if your server machine is configured to accept IP packets
  -# for multiple addresses. This can be accomplished with the ifconfig 
  -# alias flag, or through kernel patches like VIF.
  +# If you want to use name-based virtual hosts you need to define at
  +# least one IP address (and port number) for them.
   #
  -# Almost any Apache directive may go into a VirtualHost# container.
  -# See the documentation at URL:http://www.apache.org/docs/vhosts.html, and
  -# also the BindAddress entry.
  +#NameVirtualHost 12.34.56.78:80
  +#NameVirtualHost 12.34.56.78
  +
  +#
  +# VirtualHost example:
  +# Almost any Apache directive may go into a VirtualHost container.
   #
  -#VirtualHost host.some_domain.com
  +#VirtualHost ip.address.of.host.some_domain.com
   #ServerAdmin [EMAIL PROTECTED]
   #DocumentRoot /www/docs/host.some_domain.com
   #ServerName host.some_domain.com
  -#ErrorLog logs/host.some_domain.com-error.log
  -#TransferLog logs/host.some_domain.com-access.log
  +#ErrorLog logs/host.some_domain.com-error_log
  +#CustomLog logs/host.some_domain.com-access_log common
   #/VirtualHost
   
   #VirtualHost _default_:*
  
  
  


  1   2   >