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

1998-07-14 Thread dgaudet
dgaudet 98/07/14 01:20:32

  Modified:htdocs/manual/misc perf.html
  Log:
  eliminate incorrectness regarding linux... there is far more I could say if I 
had the energy
  
  Revision  ChangesPath
  1.23  +4 -5  apache-1.3/htdocs/manual/misc/perf.html
  
  Index: perf.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/misc/perf.html,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- perf.html 1998/05/20 20:21:30 1.22
  +++ perf.html 1998/07/14 08:20:31 1.23
  @@ -74,11 +74,10 @@
   Linux
   /A/H3
   
  -The most common problem on Linux shows up on heavily-loaded systems
  -where the whole server will appear to freeze for a couple of minutes
  -at a time, and then come back to life.  This has been traced to a
  -listen() queue overload - certain Linux implementations have a low
  -value set for the incoming connection queue which can cause problems.
  +There are no known problems with heavily loaded systems running Linux
  +kernels 2.0.32 or later.  Earlier kernels have some problems, and an
  +upgrade to the latest 2.0.x is a good idea to eliminate various security
  +and denial of service attacks.
   
   PHR
   
  
  
  


cvs commit: apache-site related_projects.html

1998-07-14 Thread dgaudet
dgaudet 98/07/14 01:26:21

  Modified:.related_projects.html
  Log:
  add blurb from Melissa London [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.29  +10 -1 apache-site/related_projects.html
  
  Index: related_projects.html
  ===
  RCS file: /export/home/cvs/apache-site/related_projects.html,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- related_projects.html 1998/06/30 07:18:23 1.28
  +++ related_projects.html 1998/07/14 08:26:20 1.29
  @@ -40,7 +40,7 @@
   LIA HREF=#apacheweekApache Week/A (free weekly newsletter)
   LIA HREF=#ravenCovalent Raven/A
   LIA HREF=#matriceMatrice W3/A
  -LIA 
HREF=http://www.redhat.com/products/product-details.phtml?id=rhsa;Red Hat 
Secure Web Server/a
  +LIA HREF=#redhatRed Hat Secure Server/a
   LIA HREF=#strongholdStronghold/A
   LIA HREF=#tenonWebTen, a MacOS port of Apache/A
   /UL
  @@ -180,6 +180,15 @@
   end user's accesses to your site.  Find out more at
   A HREF=http://www.matrice.it;Matrice's web site/A.
   /BLOCKQUOTE
  +
  +hr
  +h3a name=redhatRed Hat Secure Server/a/h3
  +The A HREF=http://www.redhat.com/products/product-details.phtml?id=rhsa;
  +Red Hat Secure Server/a is an integration of the popular Apache web server
  +with the award-winning Red Hat Linux OS that has RSA key technology, and it's
  +the out-of-the-box answer to your secure web serving needs.  Shop, sell, and
  +transact via the web without worry. Available only to customers in the United
  +States and Canada.
   
   HR
   H3A NAME=strongholdStronghold/A/H3
  
  
  


cvs commit: apache-site related_projects.html

1998-07-14 Thread dgaudet
dgaudet 98/07/14 01:27:43

  Modified:.related_projects.html
  Log:
  fix missing tag
  
  Revision  ChangesPath
  1.30  +1 -1  apache-site/related_projects.html
  
  Index: related_projects.html
  ===
  RCS file: /export/home/cvs/apache-site/related_projects.html,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- related_projects.html 1998/07/14 08:26:20 1.29
  +++ related_projects.html 1998/07/14 08:27:42 1.30
  @@ -150,7 +150,7 @@
   /BLOCKQUOTE
   
   HR
  -H3A NAME=quickrefApache Quick Reference Card/A
  +H3A NAME=quickrefApache Quick Reference Card/A/h3
   
   BLOCKQUOTE
   A compact, tri-fold double-sided page listing all major directives, 
available at
  
  
  


cvs commit: apache-1.3/src/main http_main.c

1998-07-14 Thread martin
martin  98/07/14 02:49:11

  Modified:src/main http_main.c
  Log:
  Add missing Usage() line for new -D define switch
  
  Revision  ChangesPath
  1.373 +1 -0  apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===
  RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.372
  retrieving revision 1.373
  diff -u -u -r1.372 -r1.373
  --- http_main.c   1998/07/13 11:32:39 1.372
  +++ http_main.c   1998/07/14 09:49:10 1.373
  @@ -883,6 +883,7 @@
   #ifdef SHARED_CORE
   fprintf(stderr,   -L directory : specify an alternate location for 
shared object files\n);
   #endif
  +fprintf(stderr,   -D name  : define a name for use in IfDefine 
name directives\n);
   fprintf(stderr,   -d directory : specify an alternate initial 
ServerRoot\n);
   fprintf(stderr,   -f file  : specify an alternate 
ServerConfigFile\n);
   fprintf(stderr,   -C \directive\   : process directive before reading 
config files\n);
  
  
  


cvs commit: apache-1.3/src/main http_main.c

1998-07-14 Thread martin
martin  98/07/14 02:57:58

  Modified:src/main http_main.c
  Log:
  Adjust SHARED_CORE main() code to accept the same options as the real main.
  Especially -D name and -t were rejected.
  
  Reviewed by: Ralf Engelschall
  
  Revision  ChangesPath
  1.374 +4 -1  apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===
  RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.373
  retrieving revision 1.374
  diff -u -u -r1.373 -r1.374
  --- http_main.c   1998/07/14 09:49:10 1.373
  +++ http_main.c   1998/07/14 09:57:56 1.374
  @@ -5607,8 +5607,9 @@
* but only handle the -L option 
*/
   llp_dir = SHARED_CORE_DIR;
  -while ((c = getopt(argc, argv, C:c:Xd:f:vVhlL:Z:)) != -1) {
  +while ((c = getopt(argc, argv, D:C:c:Xd:f:vVhlL:SZ:t)) != -1) {
switch (c) {
  + case 'D':
case 'C':
case 'c':
case 'X':
  @@ -5618,7 +5619,9 @@
case 'V':
case 'h':
case 'l':
  + case 'S':
case 'Z':
  + case 't':
case '?':
break;
case 'L':
  
  
  


cvs commit: apache-1.3/src/helpers MakeEtags

1998-07-14 Thread bhyde
bhyde   98/07/14 13:25:16

  Added:   src/helpers MakeEtags
  Log:
  The craft knowledge about how to setup emacs TAGS tables.
  
  Revision  ChangesPath
  1.1  apache-1.3/src/helpers/MakeEtags
  
  Index: MakeEtags
  ===
  #!/bin/sh
  
  # This file illustrates how to generate a useful TAGS file via etags
  # for emacs.  This should be invoked from the src directory i.e.:
  #helpers/MakeEtags
  # and will create a TAGS file in the src directory.
  
  # Once you have created src/TAGS in emacs you'll need to setup
  # tag-table-alist with an entry to assure it finds the single src/TAGS
  # file from the many source directories.  Something along these lines:
  # (setq tag-table-alist
  # '((/home/me/work/apache-1.3/src/ 
  #. /home/me/work/apache-1.3/src/)
  #  ))
  
  # This requires a special version of etags, i.e. the
  # one called Exuberant ctags available at:
  #http://fly.hiwaay.net/~darren/ctags/
  # Once that is setup you'll need to point to the
  # executable here:
  
  etags=~/local/bin/etags
  
  # Exuberant etags is necessary since it can ignore some defined symbols
  # that obscure the function signatures.
  
  ignore=API_EXPORT,API_EXPORT_NONSTD,__declspec
  
  # Create an etags file at the root of the source
  # tree, then create symbol links to it from each
  # directory in the source tree.  By passing etags
  # absolute pathnames we get a tag file that is
  # NOT portable when we move the directory tree.
  
  find . -name '*.[ch]' -print | $etags -I $ignore  -L -
  
  
  
  


cvs commit: apache-site/contributors index.html

1998-07-14 Thread martin
martin  98/07/14 14:32:29

  Modified:contributors index.html
  Log:
  Make my EMail address SPAM proof. Or at least a little bit... Update my info
  
  Revision  ChangesPath
  1.48  +3 -2  apache-site/contributors/index.html
  
  Index: index.html
  ===
  RCS file: /home/cvs/apache-site/contributors/index.html,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -u -r1.47 -r1.48
  --- index.html1998/06/25 03:29:43 1.47
  +++ index.html1998/07/14 21:32:28 1.48
  @@ -56,6 +56,7 @@
TDSTRONGA HREF=#kosutAlexei Kosut/A/STRONG
   TR VALIGN=TOP
   TDSTRONGA HREF=#kraemerMartin Kraemer/A/STRONG
  + TDEBCDIC Port to BS2000 mainframes.
   TR VALIGN=TOP
TDSTRONGA HREF=#laurieBen Laurie/A/STRONG
TDSCO and QNX porting, Apache-SSL author, pedant.
  @@ -306,11 +307,11 @@
   P
   
   STRONGName:/STRONG A NAME=kraemerMartin Kraemer/ABR
  -STRONGEmail:/STRONG A HREF=mailto:[EMAIL PROTECTED][EMAIL 
PROTECTED]/ABR
  +STRONGEmail:/STRONG Martin.Kraemer#64;mch.sni.deBR
   STRONGOrganization:/STRONG Siemens Nixdorf Information Systems AGBR
   STRONGOccupation:/STRONG Software Development EngineerBR
   STRONGLocation:/STRONG Munich, GermanyBR
  -STRONGComments:/STRONG The freshman. I like portable code that's 
easily understood.BR
  +STRONGComments:/STRONG I like portable code that's easily understood.BR
   STRONGContributions:/STRONG Various proxy patches, the BS2000 EBCDIC 
port, SVR4 patchesBR
   
   P