cvs commit: apache-1.3 STATUS

2000-01-15 Thread jim
jim 00/01/15 14:35:09

  Modified:.STATUS
  Log:
  Ready to go...
  
  Revision  ChangesPath
  1.794 +3 -13 apache-1.3/STATUS
  
  Index: STATUS
  ===
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.793
  retrieving revision 1.794
  diff -u -r1.793 -r1.794
  --- STATUS2000/01/14 18:47:52 1.793
  +++ STATUS2000/01/15 22:35:08 1.794
  @@ -1,9 +1,9 @@
 1.3 STATUS:
  -  Last modified at [$Date: 2000/01/14 18:47:52 $]
  +  Last modified at [$Date: 2000/01/15 22:35:08 $]
   
   Release:
   
  -1.3.10-dev: Current. We will try to release on 1/19/2000. As such,
  +1.3.10-dev: Current. We will release on 1/19/2000. As such,
  only bug-fixes and doc changes will be allowed.
  Timeline:
   1/15/2000: Code freeze. No changes at all.
  @@ -25,17 +25,7 @@
   
   RELEASE SHOWSTOPPERS:
   
  -* HPUX build failure without -Ae provided to HPUX compiler as a CFLAG.
  -  The error message states this flag is required for "long long" types
  -  to be recognized by HPUX's compiler
  -Ryan submitted a patch for this problem
  -STATUS:  Ryan +1, Jim, +1, Greg +1
  -
  -* DSO emulation for AIX 4.2 appears hosed. Sascha has submitted
  -  a patch which fixes the problems and addresses some concerns.
  -Message-ID: <[EMAIL PROTECTED]>
  - Message-ID: <[EMAIL PROTECTED]>
  - Status: Sascha +1, Jim +1 (untested), Ryan +1 (untested)
  +* NONE !! *
   
   RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
   
  
  
  


cvs commit: apache-2.0/htdocs/manual/user mpm.html

2000-01-15 Thread dreid
dreid   00/01/15 12:15:08

  Added:   htdocs/manual/user mpm.html
  Log:
  Missed this file!  So here it is...
  
  Revision  ChangesPath
  1.1  apache-2.0/htdocs/manual/user/mpm.html
  
  Index: mpm.html
  ===
  
  
  
  Available MPM's for Apache 2.0
  
  
  
  
  Apache 2.0 - Available MPM's
  Dated 15th January 2000
  Apache 2.0 has a new architecture that moves the processing of requests 
from the code server into a MultiProcessing Module (MPM).  By selecting the MPM 
to use you can alter the way the server behaves.  Additionally the introduction 
of the MPM's has led to platforms developing their own optimised modules.  On 
some platforms there is no choice, whilst on others there are different 
options, each with differing processing models.  This list aims to help you 
select a suitable MPM for your system.
  
  Platforms
  
  Unix
  Windows
  OS/2
  BeOS
  
  Unix
  
  
  MPM
  Description
  Maintainer
  
  
  prefork
  The prefork MPM reproduces the behaviour of Apache 1.3.
  ??
  
  
  mpmt_pthread
  This MPM uses a multi-process, multi-threaded model to provide good 
scability and stability.
  Manoj?
  
  
  dexter
  This is Manoj's plaything.  It has a number of hybrid features that Manoj 
has been looking at to improve performance.
  mailto:[EMAIL PROTECTED]">Manoj
  
  
  
  Windows
  
  
  MPM
  Description
  Maintainer
  
  
  winnt
  The Windows MPM.  This is mainly aimed at Windows NT.
  mailto:[EMAIL PROTECTED]">Bill Stoddard
  
  
  
  OS/2
  
  
  MPM
  Description
  Maintainer
  
  
  spmt_os2
  Single process, multiple thread MPM for OS2.
  mailto:[EMAIL PROTECTED]">Brian Havard
  
  
  
  BeOS
  
  
  MPM
  Description
  Maintainer
  
  
  mpmt_beos
  Multi-threaded MPM for BeOS.  This follows the mpmt_pthread model.
  mailto:[EMAIL PROTECTED]">David Reid
  
  
  
  
  David Reid, 15th January 2000
  
  
  
  
  
  


cvs commit: apache-2.0/htdocs/manual/developer hooks.html modules.html

2000-01-15 Thread dreid
dreid   00/01/15 12:13:51

  Added:   htdocs/manual/developer hooks.html modules.html
  Log:
  The remaining files for the new documentation.
  
  Revision  ChangesPath
  1.1  apache-2.0/htdocs/manual/developer/hooks.html
  
  Index: hooks.html
  ===
  
  
  
  Apache 2.0 Hook Functions
  
  
  
  
  
  Apache Hook Functions
  
  In general, a hook function is one that Apache will call at some
  point during the processing of a request. Modules can provide
  functions that are called, and specify when they get called in
  comparison to other modules.
  
  Creating a hook function
  
  In order to create a new hook, four things need to be done:
  
  Declare the hook function
  
  Use the DECLARE_HOOK macro, which needs to be given the name of the
  hook, the return type of the hook function and the arguments. For
  example, if the hook returns an int and takes a
  request_rec * and an int and is called
  "do_something", then declare it like this:
  
  DECLARE_HOOK(int,do_something,(request_rec *r,int n))
  
  This should go in a header which modules will include if they want
  to use the hook.
  
  Create the hook structure
  
  Each source file that exports a hook has a private structure which
  is used to record the module functions that use the hook. This is
  declared as follows:
  
  
  HOOK_STRUCT(
  HOOK_LINK(do_something)
  ...
 )
  
  
  Implement the hook caller
  
  The source file that exports the hook has to implement a function
  that will call the hook. There are currently three possible ways to do
  this. In all cases, the calling function is called
  ap_run_hookname().
  
  Void hooks
  
  If the return value of a hook is void, then all the hooks are
  called, and the caller is implemented like this:
  
  IMPLEMENT_HOOK_VOID(do_something,(request_rec *r,int
  n),(r,n))
  
  The second and third arguments are the dummy argument declaration and
  the dummy arguments as they will be used when calling the hook. In
  other words, this macro expands to something like this:
  
  
  void ap_run_do_something(request_rec *r,int n)
  {
  ...
  do_something(r,n);
  }
  
  
  Hooks that return a value
  
  If the hook returns a value, then it can either be run until the first
  hook that does something interesting, like so:
  
  IMPLEMENT_HOOK_RUN_FIRST(int,do_something,(request_rec *r,int 
n),(r,n),DECLINED)
  
  The first hook that doesn't return DECLINED stops
  the loop and its return value is returned from the hook caller. Note
  that DECLINED is the tradition Apache hook return meaning "I
  didn't do anything", but it can be whatever suits you.
  
  Alternatively, all hooks can be run until an error occurs. This
  boils down to permitting two return values, one of which means
  "I did something, and it was OK" and the other meaning "I did
  nothing". The first function that returns a value other than one of
  those two stops the loop, and its return is the return value. Declare
  these like so:
  
  IMPLEMENT_HOOK_RUN_ALL(int,do_something,(request_rec *r,int
  n),(r,n),OK,DECLINED)
  
  Again, OK and DECLINED are the traditional
  values. You can use what you want.
  
  Call the hook callers
  
  At appropriate moments in the code, call the hook caller, like
  so:
  
  
  int n,ret;
  request_rec *r;
  
  ret=ap_run_do_something(r,n);
  
  
  Hooking the hook
  
  A module that wants a hook to be called needs to do two
  things.
  
  Implement the hook function
  
  Include the appropriate header, and define a static function of the
  correct type:
  
  
  static int my_something_doer(request_rec *r,int n)
  {
  ...
  return OK;
  }
  
  
  Add a hook registering function
  
  During initialisation, Apache will call each modules hook
  registering function, which is included in the module structure:
  
  
  static void my_register_hooks()
  {
  ap_hook_do_something(my_something_doer,NULL,NULL,HOOK_MIDDLE);
  }
  
  mode MODULE_VAR_EXPORT my_module =
  {
  ...
  my_register_hooks   /* register hooks */
  };
  
  
  Controlling hook calling order
  
  In the example above, we didn't use the three arguments in the hook
  registration function that control calling order. There are two
  mechanisms for doing this. The first, rather crude, method, allows us
  to specify roughly where the hook is run relative to other
  modules. The final argument control this. There are three possible
  values:
  
  
  HOOK_FIRST
  HOOK_MIDDLE
  HOOK_LAST
  
  
  All modules using any particular value may be run in any order
  relative to each other, but, of course, all modules using
  HOOK_FIRST will be run before HOOK_MIDDLE which are
  before HOOK_LAST. Modules that don't care when they are run
  should use HOOK_MIDDLE. (I spaced these out so people
  could do stuff like HOOK_FIRST-2 to get in slightly earlier,
  but is this wise? - Ben)
  
  Note 

cvs commit: apache-2.0/htdocs/manual/developer index.html

2000-01-15 Thread dreid
dreid   00/01/15 10:35:04

  Added:   htdocs/manual/developer index.html
  Log:
  Another file for the documentation.
  
  Revision  ChangesPath
  1.1  apache-2.0/htdocs/manual/developer/index.html
  
  Index: index.html
  ===
  
  
  
  Apache-2.0 Developer Documentation
  
  
  
  Developer Documentation for Apache-2.0
  Apache Hook Functions
  Converting Apache 1.3 Modules to Apache 2.0
  MPM listing
  
  
  
  
  


cvs commit: apache-2.0/htdocs/manual/user index.html

2000-01-15 Thread dreid
dreid   00/01/15 10:34:15

  Added:   htdocs/manual index.html
   htdocs/manual/user index.html
  Log:
  This attempts to make more sense of the documentation along the lines of my
  suggestion about a week ago.  Now when I figure out how to move files...
  
  Revision  ChangesPath
  1.1  apache-2.0/htdocs/manual/index.html
  
  Index: index.html
  ===
  
  
  
  Apache-2.0 Documentation
  
  
  
  Manual Index for Apache-2.0
  The documentation has been split into 2 sections.  One is for people 
installing and configuring an Apache server, the other is for those who are 
developing the server.
  Where do you want to go today?
  
  
  
  I'm configuring/installing a server
  
  
  I'm a developer
  
  
  
  
  David Reid, 15th January 2000
  
  
  
  
  
  
  1.1  apache-2.0/htdocs/manual/user/index.html
  
  Index: index.html
  ===
  
  
  
  Apache-2.0 Administrator Documentation
  
  
  
  Administrator Documentation for Apache-2.0
  MPM listing
  
  
  
  
  


cvs commit: apache-2.0/htdocs/manual/user - New directory

2000-01-15 Thread dreid
dreid   00/01/15 10:32:47

  apache-2.0/htdocs/manual/user - New directory


cvs commit: apache-2.0/htdocs/manual/developer - New directory

2000-01-15 Thread dreid
dreid   00/01/15 10:32:34

  apache-2.0/htdocs/manual/developer - New directory


cvs commit: apache-2.0/htdocs/manual - New directory

2000-01-15 Thread dreid
dreid   00/01/15 10:32:06

  apache-2.0/htdocs/manual - New directory


cvs commit: apache-2.0/htdocs mpm.html

2000-01-15 Thread dreid
dreid   00/01/15 09:25:18

  Added:   htdocs   mpm.html
  Log:
  This is the first pass at a file to give people an idea of which MPM's are
  available.
  
  Revision  ChangesPath
  1.1  apache-2.0/htdocs/mpm.html
  
  Index: mpm.html
  ===
  
  
  
  Available MPM's for Apache 2.0
  
  
  
  
  Apache 2.0 - Available MPM's
  Dated 15th January 2000
  Apache 2.0 has a new architecture that may allow you to select the model 
used for processing requests.  These are built as modules and   On some 
platforms there is no choice, whilst on others there are different options, 
each with differing processing models.  This list aims to help you select a 
suitable MPM for your system.
  
  Platforms
  
  Unix
  Windows
  OS/2
  BeOS
  
  Unix
  
  
  MPM
  Description
  Maintainer
  
  
  prefork
  The prefork MPM reproduces the behaviour of Apache 1.3.
  ??
  
  
  mpmt_pthread
  This MPM uses a multi-process, multi-threaded model to provide good 
scability and stability.
  Manoj?
  
  
  dexter
  This is Manoj's plaything.  It has a number of hybrid features that Manoj 
has been looking at to improve performance.
  mailto:[EMAIL PROTECTED]">Manoj
  
  
  
  Windows
  
  
  MPM
  Description
  Maintainer
  
  
  winnt
  The Windows MPM.  This is mainly aimed at Windows NT.
  mailto:[EMAIL PROTECTED]">Bill Stoddard
  
  
  
  OS/2
  
  
  MPM
  Description
  Maintainer
  
  
  spmt_os2
  Single process, multiple thread MPM for OS2.
  mailto:[EMAIL PROTECTED]">Brian Havard
  
  
  
  BeOS
  
  
  MPM
  Description
  Maintainer
  
  
  mpmt_beos
  Multi-threaded MPM for BeOS.  This follows the mpmt_pthread model.
  mailto:[EMAIL PROTECTED]">David Reid
  
  
  
  
  David Reid, 15th January 2000
  
  
  
  
  
  


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

2000-01-15 Thread rse
rse 00/01/15 08:40:42

  Modified:src  CHANGES
   src/main http_config.c
  Log:
  Fixed parsing of TAKE13-based configuration directives.
  
  Submitted by: Steffen Roller <[EMAIL PROTECTED]>
  Reviewed by: Ralf S. Engelschall
  PR: 5550
  
  Revision  ChangesPath
  1.1499+3 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1498
  retrieving revision 1.1499
  diff -u -r1.1498 -r1.1499
  --- CHANGES   2000/01/14 09:15:22 1.1498
  +++ CHANGES   2000/01/15 16:40:40 1.1499
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.10
   
  +  *) Fixed parsing of TAKE13-based configuration directives.
  + [Steffen Roller <[EMAIL PROTECTED]>] PR#5550
  +
 *) rename the lookup() function to hashTableLookup() (in expat-lite)
to prevent name clashes with modules / third-party software.
[Ralf S. Engelschall, Greg Stein]
  
  
  
  1.150 +1 -1  apache-1.3/src/main/http_config.c
  
  Index: http_config.c
  ===
  RCS file: /home/cvs/apache-1.3/src/main/http_config.c,v
  retrieving revision 1.149
  retrieving revision 1.150
  diff -u -r1.149 -r1.150
  --- http_config.c 2000/01/01 17:07:34 1.149
  +++ http_config.c 2000/01/15 16:40:42 1.150
  @@ -881,7 +881,7 @@
w2 = *args ? ap_getword_conf(parms->pool, &args) : NULL;
w3 = *args ? ap_getword_conf(parms->pool, &args) : NULL;
   
  - if (*w == '\0' || (*w2 && !w3) || *args != 0)
  + if (*w == '\0' || (w2 && *w2 && !w3) || *args != 0)
return ap_pstrcat(parms->pool, cmd->name,
" takes one or three arguments",
cmd->errmsg ? ", " : NULL, cmd->errmsg, NULL);
  
  
  


cvs commit: apache-1.3/src Configure

2000-01-15 Thread rbb
rbb 00/01/15 08:10:47

  Modified:src  Configure
  Log:
  Add -Ae flag to HPUX compiler.  This allows HPUX to compile with the
  long long variable types.
  
  Revision  ChangesPath
  1.389 +2 -2  apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.388
  retrieving revision 1.389
  diff -u -r1.388 -r1.389
  --- Configure 2000/01/15 16:01:07 1.388
  +++ Configure 2000/01/15 16:10:46 1.389
  @@ -1395,7 +1395,7 @@
   'HI-UX')
case "$CC" in
*/cc|cc )
  - CFLAGS="$CFLAGS -Aa -D_HIUX_SOURCE"
  + CFLAGS="$CFLAGS -Aa -Ae -D_HIUX_SOURCE"
OPTIM=" "
TOPTIM=""
;;
  @@ -1404,7 +1404,7 @@
   'HP-UX'|'HP-UX 10'|'HP-UX 11')
case "$CC" in
*/cc|cc )
  - CFLAGS="$CFLAGS -Aa -D_HPUX_SOURCE"
  + CFLAGS="$CFLAGS -Aa -Ae -D_HPUX_SOURCE"
OPTIM=" "
TOPTIM=""
;;
  
  
  


cvs commit: apache-1.3/src/os/unix os.c

2000-01-15 Thread sascha
sascha  00/01/15 08:01:09

  Modified:src  Configure
   src/os/unix os.c
  Log:
  Disable dl emulation code for AIX < 4.3, if no dl functions are needed.
  
  Revision  ChangesPath
  1.388 +8 -0  apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.387
  retrieving revision 1.388
  diff -u -u -r1.387 -r1.388
  --- Configure 2000/01/14 16:10:34 1.387
  +++ Configure 2000/01/15 16:01:07 1.388
  @@ -1795,6 +1795,14 @@
   fi
   
   
  +## Don't force DL emulation, if not necessary. Currently only used
  +## by os/unix/os.c. 
  +##
  +if [ "x$using_shlib" != "x1" ] ; then
  +CFLAGS="$CFLAGS -DNO_DL_NEEDED"
  +fi
  +
  +
   ## Set the value of the shared libary flags, if they aren't explicitly
   ## set in the configuration file
   ##
  
  
  
  1.20  +1 -1  apache-1.3/src/os/unix/os.c
  
  Index: os.c
  ===
  RCS file: /home/cvs/apache-1.3/src/os/unix/os.c,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -u -r1.19 -r1.20
  --- os.c  1999/12/09 19:21:56 1.19
  +++ os.c  2000/01/15 16:01:09 1.20
  @@ -17,7 +17,7 @@
* Insert the DSO emulation code for AIX for releases of AIX prior
* to 4.3. Use the native DSO code for 4.3 and later.
*/
  -#ifdef AIX
  +#if defined(AIX) && !defined(NO_DL_NEEDED)
   #if AIX < 43
   #include "os-aix-dso.c"
   #endif
  
  
  


cvs commit: apache-2.0/src/build buildcheck.sh

2000-01-15 Thread ben
ben 00/01/15 07:37:53

  Modified:src/build buildcheck.sh
  Log:
  We're building Apache, not PHP.
  
  Revision  ChangesPath
  1.2   +6 -6  apache-2.0/src/build/buildcheck.sh
  
  Index: buildcheck.sh
  ===
  RCS file: /export/home/cvs/apache-2.0/src/build/buildcheck.sh,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildcheck.sh 2000/01/11 13:10:58 1.1
  +++ buildcheck.sh 2000/01/15 15:37:52 1.2
  @@ -7,14 +7,14 @@
   if test -z "$ac_version"; then
   echo "buildconf: autoconf not found."
   echo "   You need autoconf version 2.13 or newer installed"
  -echo "   to build PHP from CVS."
  +echo "   to build Apache from CVS."
   exit 1
   fi
   IFS=.; set $ac_version; IFS=' '
   if test "$1" = "2" -a "$2" -lt "13" || test "$1" -lt "2"; then
   echo "buildconf: autoconf version $ac_version found."
   echo "   You need autoconf version 2.13 or newer installed"
  -echo "   to build PHP from CVS."
  +echo "   to build Apache from CVS."
   exit 1
   else
   echo "buildconf: autoconf version $ac_version (ok)"
  @@ -25,14 +25,14 @@
   if test "$am_version" = ""; then
   echo "buildconf: automake not found."
   echo "   You need automake version 1.4 or newer installed"
  -echo "   to build PHP from CVS."
  +echo "   to build Apache from CVS."
   exit 1
   fi
   IFS=.; set $am_version; IFS=' '
   if test "$1" = "1" -a "$2" -lt "4" || test "$1" -lt "1"; then
   echo "buildconf: automake version $am_version found."
   echo "   You need automake version 1.4 or newer installed"
  -echo "   to build PHP from CVS."
  +echo "   to build Apache from CVS."
   exit 1
   else
   echo "buildconf: automake version $am_version (ok)"
  @@ -43,7 +43,7 @@
   if test "$lt_pversion" = ""; then
   echo "buildconf: libtool not found."
   echo "   You need libtool version 1.3 or newer installed"
  -echo "   to build PHP from CVS."
  +echo "   to build Apache from CVS."
   exit 1
   fi
   lt_version=`echo $lt_pversion|sed -e 's/\([a-z]*\)$/.\1/'`
  @@ -54,7 +54,7 @@
   else
   echo "buildconf: libtool version $lt_pversion found."
   echo "   You need libtool version 1.3.3 or newer installed"
  -echo "   to build PHP from CVS."
  +echo "   to build Apache from CVS."
   exit 1
   fi
   
  
  
  


cvs commit: apache-1.3/src/lib/expat-lite CHANGES

2000-01-15 Thread gstein
gstein  00/01/15 02:46:15

  Modified:src/lib/expat-lite CHANGES
  Log:
  document our changes from the standard Expat distribution.
  
  Revision  ChangesPath
  1.2   +34 -10apache-1.3/src/lib/expat-lite/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-1.3/src/lib/expat-lite/CHANGES,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CHANGES   1999/05/31 11:12:54 1.1
  +++ CHANGES   2000/01/15 10:46:14 1.2
  @@ -18,24 +18,48 @@
   We also retain expat/expat.html for attribution to James Clark and
   licensing information.
   
  -In addition, we remove expat/xmltok/dllmain.c from our version since
  -we statically link expat-lite into the executable (rather than
  -building a DLL on the Win32 platform). The *.dsp files are also
  -removed, since we place those elsewhere in the Apache source
  -distribution and they will have a very different structure.
  +Note that Apache has replaced (with custom versions) the .dsp files
  +normally distributed with Expat. Other changes are detailed further
  +below.
   
  -Makefile.tmpl has been created from scratch to provide build
  -instructions to the Apache build system.
   
  +=== FILES ADDED ===
  +
   This file (CHANGES) has been added to document changes from the
   original Expat distribution.
   
  +Makefile.tmpl has been created from scratch to provide build
  +instructions to the Apache build system.
  +
  +xmlparse.def and xmltok.def have been added.
   
  -=== CHANGES TO ORIGINAL ===
  +.cvsignore has been added.
  +
   
  -There have been no changes made to any Expat file at this point in
  -time (May 31, 1999).
  +=== CHANGES TO ORIGINAL ===
   
   The files, in their original state from the Expat distribution, have
   been tagged within CVS with the "EXPAT_1_1" tag. That tag may be used
   as a reference for changes made by the Apache Group.
  +
  +The following changes have been made:
  +
  +June, 1999:
  +
  +  - modified xmldef.h to define XML_BYTE_ORDER in terms of the
  +AP_BYTE_ORDER symbol.
  +  - removed compilation warnings from: xmlparse.c, xmltok.c, xmltok.h, 
  +xmltok_impl.c, xmltok_ns.c
  +
  +November, 1999:
  +
  +  - xmlparse.{def,dsp,mak} and xmltok.{def,dsp,mak} were added.
  +NOTE: the .dsp files are different from the standard Expat
  +   distribution.
  +  - dllmain.c (from the Expat distribution) was added
  +
  +January, 2000:
  +
  +  - Renamed lookup() in hashtable.[ch] to hashTableLookup() to prevent
  +possible conflicts with third-party libraries and modules. Updated
  +calls in xmlparse.c accordingly.
  
  
  


cvs commit: apache-site/mirrors index.html mirrors.check mirrors.list

2000-01-15 Thread pier
pier00/01/14 20:54:11

  Modified:mirrors  index.html mirrors.check mirrors.list
  Log:
  Basically one month of modifications in one batch...
  
Pier
  
  Revision  ChangesPath
  1.76  +61 -3 apache-site/mirrors/index.html
  
  Index: index.html
  ===
  RCS file: /home/cvs/apache-site/mirrors/index.html,v
  retrieving revision 1.75
  retrieving revision 1.76
  diff -u -r1.75 -r1.76
  --- index.html1999/10/25 19:03:38 1.75
  +++ index.html2000/01/15 04:54:10 1.76
  @@ -23,10 +23,14 @@
   HTTP:
   
   
  +ftp://ftp.mirror.ac.uk/sites/ftp.apache.org/";>ac.uk -
  +
   http://sunsite.org.uk/packages/apache/";>ac.uk -
   
   http://www.hensa.ac.uk/mirrors/apache/";>ac.uk -
  -
  +
  +http://www.mirror.ac.uk/sites/ftp.apache.org/";>ac.uk -
  +
   http://apache.design.am/";>am -
   
   http://www.infoap.com.ar/apache/";>ar -
  @@ -59,6 +63,8 @@
   
   http://apache.matrix.com.br/";>br -
   
  +http://redes.ucpel.tche.br/apache";>br -
  +
   http://apache.kawartha.com/";>ca -
   
   http://dolemite.toronto.com/apache/";>ca -
  @@ -75,10 +81,14 @@
   
   http://sunsite.cnlab-switch.ch/www/mirror/apache/";>ch -
   
  +http://apache.fullserver.cl/";>cl -
  +
   http://apache.keylab.net/";>cn -
   
   http://proxy.iinchina.net:8000/";>cn -
   
  +http://apache.mirrors.rossfell.co.uk/";>co.uk -
  +
   http://apache.rmplc.co.uk/";>co.uk -
   
   http://uk-mirror.www.ai.net/pub/apache/";>co.uk -
  @@ -97,6 +107,10 @@
   
   http://apache.ucr.ac.cr/";>cr -
   
  +http://linux.co.cr/apache/";>cr -
  +
  +http://apache.gin.cz";>cz -
  +
   http://ftp.mendelu.cz/ftp/mirrors/apache.org/";>cz -
   
   http://sunsite.mff.cuni.cz/web/apache/";>cz -
  @@ -135,18 +149,20 @@
   
   http://apache.raketti.net/";>fi -
   
  -http://apache.zopps.fi/";>fi -
  -
   http://ftp.pspt.fi/apache/";>fi -
   
   http://www.zoo-gate.fi/mirrors/apache/";>fi -
   
   http://apache.linuxfr.org/";>fr -
   
  +http://apache.mirrors.easynet.fr";>fr -
  +
   http://cafe.fiifo.u-psud.fr/apache/";>fr -
   
   http://www.cge-ol.fr/apache/";>fr -
   
  +http://apache.otenet.gr/";>gr -
  +
   http://www.ntua.gr/apache/";>gr -
   
   http://apache.genesis.com.hk/";>hk -
  @@ -171,6 +187,8 @@
   
   http://apache.csn.ul.ie";>ie -
   
  +http://apache.mirrors.esat.net/";>ie -
  +
   http://bioinformatics.weizmann.ac.il/software/apache/";>il -
   
   http://www.ibm.net.il/apache/";>il -
  @@ -237,6 +255,10 @@
   
   http://sunsite.icm.edu.pl/pub/www/apache/";>pl -
   
  +http://www.apache.cordef.com.pl";>pl -
  +
  +http://www.apache.cordef.com.pl";>pl -
  +
   http://www.task.gda.pl/pub/www/apache/";>pl -
   
   http://apache.leirianet.pt";>pt -
  @@ -249,6 +271,10 @@
   
   http://ftp.di.fct.unl.pt/apache/";>pt -
   
  +http://ftp.telepac.pt/pub/apache/";>pt -
  +
  +http://linux.iplei.pt/apache";>pt -
  +
   http://linux.ispgaya.pt/apache/";>pt -
   
   http://apache.logicnet.ro/";>ro -
  @@ -271,6 +297,8 @@
   
   http://apache.dc.luth.se/";>se -
   
  +http://apache.zsh.net/";>se -
  +
   http://swamp.chl.chalmers.se/apache/";>se -
   
   http://apache.hjc.edu.sg/";>sg -
  @@ -307,6 +335,10 @@
   
   http://www.neon.dp.ua/www.apache.org/";>ua -
   
  +http://apache.gmxuk.net";>uk -
  +
  +http://apache.mirror.boo.com/";>uk -
  +
   http://apache.ameth.org/";>us -
   
   http://apache.comnetcom.net/";>us -
  @@ -315,6 +347,8 @@
   
   http://apache.dreamcatchers.net/";>us -
   
  +http://apache.dybn.2y.net";>us -
  +
   http://apache.fy-net.com/";>us -
   
   http://apache.gathered.net/";>us -
  @@ -361,6 +395,8 @@
   
   http://www.tux.org/pub/net/apache/";>us -
   
  +http://www.twoguys.org/apache/";>us -
  +
   http://www.fon.bg.ac.yu/mirror/apache/";>yu -
   
   http://apache.is.co.za/";>za -
  @@ -372,6 +408,8 @@
   Apache software via FTP:
   
   
  +ftp://unix.hensa.ac.uk/mirrors/apache/";>ac.uk -
  +
   ftp://ftp.infoap.com.ar/pub/apache/dist/";>ar -
   
   ftp://gd.tuwien.ac.at/pub/infosys/servers/http/apache/dist/";>at 
-
  @@ -398,6 +436,8 @@
   
   ftp://ftp.iinchina.net/apache/dist/";>cn -
   
  +ftp://apache.mirrors.rossfell.co.uk/mirrors/apache";>co.uk -
  +
   ftp://ftp.flirble.org/pub/web/apache/dist/";>co.uk -
   
   ftp://ftp.gbnet.net/pub/apache/dist/";>co.uk -
  @@ -410,6 +450,8 @@
   
   ftp://ftp.ucr.ac.cr/pub/Unix/apache/dist/";>cr -
   
  +ftp://ftp.gin.cz/pub/MIRRORS/www.apache.org";>cz -
  +
   ftp://ftp.mendelu.cz/pub/mirrors/apache.org/dist/";>cz -
   
   ftp://sunsite.mff.cuni.cz/Net/Infosystems/WWW/Servers/Apache/dist/";>cz
 -
  @@ -466,6 +508,8 @@
   
   ftp://malone.piksi.itb.ac.id/pub/apache/";>id -
   
  +f

cvs commit: apache-site/mirrors mirrors.list

2000-01-15 Thread pier
pier00/01/14 20:29:29

  Modified:mirrors  mirrors.list
  Log:
  Removed "zopps.fi" mirror as requested by
  Martti Kuparinen <[EMAIL PROTECTED]>
  
  Revision  ChangesPath
  1.89  +0 -1  apache-site/mirrors/mirrors.list
  
  Index: mirrors.list
  ===
  RCS file: /home/cvs/apache-site/mirrors/mirrors.list,v
  retrieving revision 1.88
  retrieving revision 1.89
  diff -u -r1.88 -r1.89
  --- mirrors.list  1999/10/25 19:03:39 1.88
  +++ mirrors.list  2000/01/15 04:29:28 1.89
  @@ -174,7 +174,6 @@
   http es  http://www.rediris.es/ftp/mirror/apache/[EMAIL 
PROTECTED]
   http fi  http://apache.eunet.fi/ [EMAIL PROTECTED]
   http fi  http://apache.raketti.net/  [EMAIL PROTECTED]
  -http fi  http://apache.zopps.fi/ [EMAIL PROTECTED]
   http fi  http://ftp.pspt.fi/apache/  [EMAIL PROTECTED]
   http fi  http://www.zoo-gate.fi/mirrors/apache/  [EMAIL PROTECTED]
   http fr  http://apache.linuxfr.org/  [EMAIL PROTECTED]