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

1997-08-20 Thread Roy Fielding
fielding97/08/20 18:14:19

  Modified:.how-to-release.html
  Log:
  And your little dog Toto, too.  (test .tar.Z file using zcat)
  
  Revision  ChangesPath
  1.12  +2 -1  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.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- how-to-release.html   1997/08/21 01:09:41 1.11
  +++ how-to-release.html   1997/08/21 01:14:18 1.12
  @@ -70,8 +70,9 @@
codeb$ mv xapache_1.X.Y.tar apache_1.X.Y.tar/b/codebr
codeb$ compress apache_1.X.Y.tar/b/codebr
   P
  -LI Verify gzip'd tar file (check for errors):br
  +LI Test the packed tar files and check for errors:br
codeb$ gunzip -c apache_1.X.Y.tar.gz | tar tvf -/b/codebr
  + codeb$ zcat apache_1.X.Y.tar.Z | tar tvf -/b/codebr
   P
   LI Cleanup:br
codeb$ rm -rf apache_1.X.Y/b/code
  
  
  


cvs commit: apache-site index.html

1997-08-20 Thread Roy Fielding
fielding97/08/20 19:01:17

  Modified:.index.html
  Log:
  Note proxy bug.  Argh!
  
  Revision  ChangesPath
  1.34  +5 -0  apache-site/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/index.html,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- index.html1997/08/19 18:13:21 1.33
  +++ index.html1997/08/21 02:01:16 1.34
  @@ -60,6 +60,11 @@
   been well tested and is a stable platform.  If you are running any beta of
   1.2, or any older version of the Apache HTTP server, you should upgrade to
   this release for both stability and security reasons.
  +
  +pFONT COLOR=redImportant Note:/FONTWe just dicovered a bug in 1.2.3
  +for mod_proxy.  Proxy users should apply the patch in 
  +the A HREF=patches/apply_to_1.2.3/1.2.3 patch directory/A or wait
  +for 1.2.4.
   /BLOCKQUOTE
   
   P ALIGN=CENTER
  
  
  


cvs commit: apache-site index.html

1997-08-20 Thread Roy Fielding
fielding97/08/20 19:04:02

  Modified:.index.html
  Log:
  typo
  
  Revision  ChangesPath
  1.35  +1 -1  apache-site/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/index.html,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- index.html1997/08/21 02:01:16 1.34
  +++ index.html1997/08/21 02:04:00 1.35
  @@ -61,7 +61,7 @@
   1.2, or any older version of the Apache HTTP server, you should upgrade to
   this release for both stability and security reasons.
   
  -pFONT COLOR=redImportant Note:/FONTWe just dicovered a bug in 1.2.3
  +pFONT COLOR=redImportant Note:/FONTWe just discovered a bug in 1.2.3
   for mod_proxy.  Proxy users should apply the patch in 
   the A HREF=patches/apply_to_1.2.3/1.2.3 patch directory/A or wait
   for 1.2.4.
  
  
  


cvs commit: apache-site index.html

1997-08-20 Thread Roy Fielding
fielding97/08/20 19:05:35

  Modified:.index.html
  Log:
  paste-o
  
  Revision  ChangesPath
  1.36  +1 -1  apache-site/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/index.html,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- index.html1997/08/21 02:04:00 1.35
  +++ index.html1997/08/21 02:05:33 1.36
  @@ -63,7 +63,7 @@
   
   pFONT COLOR=redImportant Note:/FONTWe just discovered a bug in 1.2.3
   for mod_proxy.  Proxy users should apply the patch in 
  -the A HREF=patches/apply_to_1.2.3/1.2.3 patch directory/A or wait
  +the A HREF=dist/patches/apply_to_1.2.3/1.2.3 patch directory/A or wait
   for 1.2.4.
   /BLOCKQUOTE
   
  
  
  


cvs commit: apache/src/modules/proxy proxy_http.c

1997-08-20 Thread Roy Fielding
fielding97/08/20 19:24:32

  Modified:src/modules/proxy Tag: APACHE_1_2_X proxy_http.c
  Log:
  Fix bug introduced by last change in 1.2.3, resulting in the proxy
  always making requests with the full-URI instead of just the URI path.
  
  Submitted by: Marc Slemko
  Reviewed by:  Roy Fielding
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.17.2.4  +1 -1  apache/src/modules/proxy/proxy_http.c
  
  Index: proxy_http.c
  ===
  RCS file: /export/home/cvs/apache/src/modules/proxy/proxy_http.c,v
  retrieving revision 1.17.2.3
  retrieving revision 1.17.2.4
  diff -u -r1.17.2.3 -r1.17.2.4
  --- proxy_http.c  1997/08/17 21:00:48 1.17.2.3
  +++ proxy_http.c  1997/08/21 02:24:30 1.17.2.4
  @@ -250,7 +250,7 @@
   bpushfd(f, sock, sock);
   
   hard_timeout (proxy send, r);
  -bvputs(f, r-method,  , url,  HTTP/1.0\015\012, NULL);
  +bvputs(f, r-method,  , urlptr,  HTTP/1.0\015\012, NULL);
   bvputs(f, Host: , desthost, NULL);
   if (destportstr != NULL  destport != DEFAULT_PORT)
bvputs(f, :, destportstr, \015\012, NULL);
  
  
  


cvs commit: apache/src CHANGES

1997-08-20 Thread Roy Fielding
fielding97/08/20 19:28:56

  Modified:src  Tag: APACHE_1_2_X CHANGES
  Log:
  Note 1.2.3 proxy bug.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.286.2.50 +6 -0  apache/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.286.2.49
  retrieving revision 1.286.2.50
  diff -u -r1.286.2.49 -r1.286.2.50
  --- CHANGES   1997/08/17 21:00:46 1.286.2.49
  +++ CHANGES   1997/08/21 02:28:53 1.286.2.50
  @@ -1,4 +1,10 @@
   
  +Changes with Apache 1.2.4
  +
  +  *) The ProxyRemote change in 1.2.3 introduced a bug resulting in the proxy
  + always making requests with the full-URI instead of just the URI path.
  + [Marc Slemko]
  +
   Changes with Apache 1.2.3
   
 *) The request to a remote proxy was mangled if it was generated as the
  
  
  


cvs commit: apache/src/modules/proxy proxy_http.c

1997-08-20 Thread Roy Fielding
fielding97/08/20 19:44:31

  Modified:src  Tag: APACHE_1_2_X CHANGES
   src/modules/proxy Tag: APACHE_1_2_X proxy_http.c
  Log:
  Modify last fix so that it uses the full-URI for ProxyRemote requests
  and the URI path for normal requests.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.286.2.51 +1 -1  apache/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.286.2.50
  retrieving revision 1.286.2.51
  diff -u -r1.286.2.50 -r1.286.2.51
  --- CHANGES   1997/08/21 02:28:53 1.286.2.50
  +++ CHANGES   1997/08/21 02:44:27 1.286.2.51
  @@ -3,7 +3,7 @@
   
 *) The ProxyRemote change in 1.2.3 introduced a bug resulting in the proxy
always making requests with the full-URI instead of just the URI path.
  - [Marc Slemko]
  + [Marc Slemko, Roy Fielding]
   
   Changes with Apache 1.2.3
   
  
  
  
  No   revision
  
  
  No   revision
  
  
  1.17.2.5  +2 -1  apache/src/modules/proxy/proxy_http.c
  
  Index: proxy_http.c
  ===
  RCS file: /export/home/cvs/apache/src/modules/proxy/proxy_http.c,v
  retrieving revision 1.17.2.4
  retrieving revision 1.17.2.5
  diff -u -r1.17.2.4 -r1.17.2.5
  --- proxy_http.c  1997/08/21 02:24:30 1.17.2.4
  +++ proxy_http.c  1997/08/21 02:44:30 1.17.2.5
  @@ -250,7 +250,8 @@
   bpushfd(f, sock, sock);
   
   hard_timeout (proxy send, r);
  -bvputs(f, r-method,  , urlptr,  HTTP/1.0\015\012, NULL);
  +bvputs(f, r-method,  , proxyhost ? url : urlptr,  HTTP/1.0\015\012,
  +   NULL);
   bvputs(f, Host: , desthost, NULL);
   if (destportstr != NULL  destport != DEFAULT_PORT)
bvputs(f, :, destportstr, \015\012, NULL);