fielding    99/09/01 15:48:17

  Modified:    src      CHANGES Configuration.tmpl
               src/modules README
               src/modules/experimental Makefile.tmpl
               src/modules/standard Makefile.tmpl
  Removed:     src/modules/experimental mod_auth_digest.c
  Log:
  Moved mod_auth_digest.c from experimental to standard.
  
  Revision  Changes    Path
  1.8       +2 -0      apache-2.0/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/CHANGES,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- CHANGES   1999/08/31 21:57:32     1.7
  +++ CHANGES   1999/09/01 22:48:10     1.8
  @@ -1,5 +1,7 @@
   Changes with Apache 2.0-dev
   
  +  *) Moved mod_auth_digest.c from experimental to standard. [Roy Fielding]
  +
     *) Change all pools to APR contexts.  This is the first step to
        incorporating APR into Apache. [Ryan Bloom]
   
  
  
  
  1.4       +2 -3      apache-2.0/src/Configuration.tmpl
  
  Index: Configuration.tmpl
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/Configuration.tmpl,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Configuration.tmpl        1999/08/30 07:16:49     1.3
  +++ Configuration.tmpl        1999/09/01 22:48:11     1.4
  @@ -374,8 +374,7 @@
   
   ## "auth_digest" implements HTTP/1.1 Digest Authentication (RFC 2617)
   ## rather than the less secure Basic Auth used by the other modules.
  -## This is an updated version of mod_digest, but it is not as well tested
  -## and is therefore marked experimental.  Use either the one above, or
  +## This is an updated version of mod_digest. Use either the one above, or
   ## this one below, but not both digest modules.
   ## Note: if you add this module in then you might also need the
   ## truerand library (available for example from
  @@ -386,7 +385,7 @@
   ## WWW-Authenticate and Proxy-Authenticate headers are parsed in the
   ## post-read-request phase and it needs to know if this is a proxy request.
   
  -# AddModule modules/experimental/mod_auth_digest.o
  +# AddModule modules/standard/mod_auth_digest.o
   
   ## Optional Proxy
   ##
  
  
  
  1.2       +0 -4      apache-2.0/src/modules/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/README,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- README    1999/08/24 06:55:06     1.1
  +++ README    1999/09/01 22:48:13     1.2
  @@ -17,10 +17,6 @@
     evolve radically in the future.  This code isn't supported
     officially.
   
  -extra/
  -
  -  This is the directory for third-party modules, such as mod_jserv.
  -
   test/
   
     This directory houses modules which test various components 
  
  
  
  1.2       +0 -9      apache-2.0/src/modules/experimental/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/experimental/Makefile.tmpl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile.tmpl     1999/08/24 06:55:12     1.1
  +++ Makefile.tmpl     1999/09/01 22:48:14     1.2
  @@ -12,12 +12,3 @@
    $(INCDIR)/util_uri.h $(INCDIR)/http_config.h \
    $(INCDIR)/http_log.h $(INCDIR)/http_protocol.h \
    $(INCDIR)/http_request.h $(INCDIR)/http_core.h
  -mod_digest.o: mod_digest.c $(INCDIR)/httpd.h \
  - $(INCDIR)/ap_config.h $(INCDIR)/ap_mmn.h \
  - $(INCDIR)/ap_config_auto.h $(OSDIR)/os.h \
  - $(INCDIR)/ap_ctype.h $(INCDIR)/hsregex.h \
  - $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
  - $(INCDIR)/util_uri.h $(INCDIR)/http_config.h \
  - $(INCDIR)/http_core.h $(INCDIR)/http_log.h \
  - $(INCDIR)/http_protocol.h $(INCDIR)/util_md5.h \
  - $(INCDIR)/ap_md5.h
  
  
  
  1.4       +9 -0      apache-2.0/src/modules/standard/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/standard/Makefile.tmpl,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Makefile.tmpl     1999/09/01 14:38:40     1.3
  +++ Makefile.tmpl     1999/09/01 22:48:17     1.4
  @@ -102,6 +102,15 @@
    $(INCDIR)/util_uri.h $(INCDIR)/http_config.h \
    $(INCDIR)/ap_hooks.h $(INCDIR)/http_core.h \
    $(INCDIR)/http_log.h $(INCDIR)/http_protocol.h
  +mod_auth_digest.o: mod_auth_digest.c $(INCDIR)/httpd.h \
  + $(INCDIR)/ap_config.h $(INCDIR)/ap_mmn.h \
  + $(INCDIR)/ap_config_auto.h $(OSDIR)/os.h \
  + $(INCDIR)/ap_ctype.h $(INCDIR)/hsregex.h \
  + $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
  + $(INCDIR)/util_uri.h $(INCDIR)/http_config.h \
  + $(INCDIR)/http_core.h $(INCDIR)/http_log.h \
  + $(INCDIR)/http_protocol.h $(INCDIR)/util_md5.h \
  + $(INCDIR)/ap_md5.h
   mod_autoindex.o: mod_autoindex.c $(INCDIR)/httpd.h \
    $(INCDIR)/ap_config.h $(INCDIR)/ap_mmn.h \
    $(INCDIR)/ap_config_auto.h $(OSDIR)/os.h \
  
  
  

Reply via email to