You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2001/11/13 06:21:31 UTC

cvs commit: httpd-2.0/docs/manual env.html

jerenkrantz    01/11/12 21:21:31

  Modified:    .        CHANGES
               docs/manual env.html
  Log:
  Document the new 'redirect-carefully' option.
  
  Revision  Changes    Path
  1.434     +5 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.433
  retrieving revision 1.434
  diff -u -r1.433 -r1.434
  --- CHANGES	2001/11/12 23:49:06	1.433
  +++ CHANGES	2001/11/13 05:21:30	1.434
  @@ -1,5 +1,10 @@
   Changes with Apache 2.0.29-dev
   
  +  *) Add 'redirect-carefully' environment option to disable sending
  +     redirects under special circumstances.  This is helpful for 
  +     Microsoft's WebFolders when accessing a directory resource via
  +     DAV methods.  [Justin Erenkrantz]
  +
     *) Begin to abstract out the underlying transport layer.
        The first step is to remove the socket from the conn_rec,
        the server now lives in a context that is passed to the
  
  
  
  1.20      +10 -1     httpd-2.0/docs/manual/env.html
  
  Index: env.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/env.html,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- env.html	2001/09/22 18:53:20	1.19
  +++ env.html	2001/11/13 05:21:31	1.20
  @@ -270,8 +270,17 @@
   
       <p>This disables <a
       href="mod/core.html#keepalive">KeepAlive</a> when set.</p>
  -    <hr />
   
  +    <h2>redirect-carefully</h2>
  +
  +    <p>This forces the server to be more careful when sending a redirect
  +    to the client.  This is typically used when a client has a known
  +    problem handling redirects.  This was originally implemented as a
  +    result of a problem with Microsoft's WebFolders software which has
  +    a problem handling redirects on directory resources via DAV 
  +    methods.</p>
  +
  +    <hr />
       <h2><a id="examples" name="examples">Examples</a></h2>
   
       <h3>Changing protocol behavior with misbehaving clients</h3>