Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 70199 invoked by uid 500); 25 Jan 2002 00:28:45 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 70186 invoked by uid 500); 25 Jan 2002 00:28:44 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 25 Jan 2002 00:24:47 -0000 Message-ID: <20020125002447.92658.qmail@icarus.apache.org> From: gstein@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/docs/conf httpd-nw.conf httpd-std.conf httpd-win.conf X-Spam-Rating: 64.125.133.20 1.6.2 0/1000/N gstein 02/01/24 16:24:47 Modified: docs/conf httpd-nw.conf httpd-std.conf httpd-win.conf Log: Enable the BrowserMatch for Microsoft's DAV client -- we know it is broken. Add a match for the WebDrive client. It is similarly broken. Sync up the NetWare and Windows .conf files a bit. Submitted by: Sander Striker , Greg Stein Revision Changes Path 1.14 +11 -12 httpd-2.0/docs/conf/httpd-nw.conf Index: httpd-nw.conf =================================================================== RCS file: /home/cvs/httpd-2.0/docs/conf/httpd-nw.conf,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- httpd-nw.conf 22 Jan 2002 04:11:40 -0000 1.13 +++ httpd-nw.conf 25 Jan 2002 00:24:47 -0000 1.14 @@ -832,24 +832,23 @@ # -# The following directives modify normal HTTP response behavior. -# The first directive disables keepalive for Netscape 2.x and browsers that -# spoof it. There are known problems with these browser implementations. -# The second directive is for Microsoft Internet Explorer 4.0b2 -# which has a broken HTTP/1.1 implementation and does not properly -# support keepalive when it is used on 301 or 302 (redirect) responses. +# The following directives modify normal HTTP response behavior to +# handle known problems with browser implementations. # BrowserMatch "Mozilla/2" nokeepalive BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 - -# -# The following directive disables HTTP/1.1 responses to browsers which -# are in violation of the HTTP/1.0 spec by not being able to grok a -# basic 1.1 response. -# BrowserMatch "RealPlayer 4\.0" force-response-1.0 BrowserMatch "Java/1\.0" force-response-1.0 BrowserMatch "JDK/1\.0" force-response-1.0 + +# +# The following directive disables redirects on non-GET requests for +# a directory that does not include the trailing slash. This fixes a +# problem with Microsoft WebFolders which does not appropriately handle +# redirects for folders with DAV methods. +# +BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully +BrowserMatch "^WebDrive" redirect-carefully # # Allow server status reports, with the URL of http://servername/server-status 1.79 +2 -1 httpd-2.0/docs/conf/httpd-std.conf Index: httpd-std.conf =================================================================== RCS file: /home/cvs/httpd-2.0/docs/conf/httpd-std.conf,v retrieving revision 1.78 retrieving revision 1.79 diff -u -r1.78 -r1.79 --- httpd-std.conf 22 Jan 2002 04:11:40 -0000 1.78 +++ httpd-std.conf 25 Jan 2002 00:24:47 -0000 1.79 @@ -909,7 +909,8 @@ # problem with Microsoft WebFolders which does not appropriately handle # redirects for folders with DAV methods. # -#BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully +BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully +BrowserMatch "^WebDrive" redirect-carefully # # Allow server status reports, with the URL of http://servername/server-status 1.57 +2 -1 httpd-2.0/docs/conf/httpd-win.conf Index: httpd-win.conf =================================================================== RCS file: /home/cvs/httpd-2.0/docs/conf/httpd-win.conf,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- httpd-win.conf 22 Jan 2002 04:11:40 -0000 1.56 +++ httpd-win.conf 25 Jan 2002 00:24:47 -0000 1.57 @@ -841,7 +841,8 @@ # problem with Microsoft WebFolders which does not appropriately handle # redirects for folders with DAV methods. # -#BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully +BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully +BrowserMatch "^WebDrive" redirect-carefully # # Allow server status reports, with the URL of http://servername/server-status