- Nov 04, 2000
-
-
Brian Havard authored
given an invalid file name just makes matters worse as nobody checks the return value. In particular, directory_walk() barfs big time when it tries to access index.html on a FAT partition (not 8.3 so invalid) as num_dirs can become -1 in an unsigned int..... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86835 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Change the new comment to reflect configurable behavior. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86834 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Instructional comments about IndexOptions TrackModified for Win32's default configuration file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86833 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Ok, this patch, in retrospect, scared me to death, but there was no apparently robust way to deal with the issue. APR for 2.0 will have some rules to handle this :-) For 1.3.15, it becomes a new directive option: IndexOptions TrackModified Anyone who knows their platform safely handles the stat() call is welcome to add the directive to the IndexOptions of their platform's conf/httpd.conf-whatnot distribution. For Win32, I'm adding it, commented out with NTFS/FAT volume comments. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86832 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 03, 2000
-
-
David Reid authored
Apache to build and run on BONE. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86828 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Resolve mod_autoindex caching problems by returning the mtime as the Last-Modified tag, and assigning the ETag. Already applied to the Apache 2.0 tree. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86813 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Correct the general form of directive path arguments, and the specific cases of non-regex Alias and ScriptAlias path arguments, all to their canonical form. On Win32/NetWare this will assure the following test ap_os_is_path_absolute() is correct. OS2 is excluded since it takes a different approach to canonicalization, and under Unix these changes all expand to no-ops returning the string's identity. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86812 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 02, 2000
-
-
Bill Stoddard authored
status at the end of the response as follows: 'X' - connection aborted before the response completed. '+' - connection may be kept-alive by the server. '-' - connection will be closed by the server. Doc. update will be committed RSN... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86810 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
it (e.g. PHP) work OK. PR: 6780 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86808 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Would every committer please take just a minute to assure you haven't applied/solved one of the lingering 1.3.x issues in the recent or even the distant past? git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86801 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
*) Normalize all NetWare config directive paths and filespecs to their canonical names. [Brad Nicholes <bnicholes@novell.com>] Submitted by: Brad Nicholes Reviewed by: William Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86800 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 28, 2000
-
-
Tony Finch authored
Submitted by: erik quanstrom <quanstro@clark.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86757 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 23, 2000
-
-
Tony Finch authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86716 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86715 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
Submitted by: Joe Orton Reviewed by: Greg Stein git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86714 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 21, 2000
-
-
William A. Rowe Jr authored
This didn't make sense Obtained from: new-httpd list Submitted by: Michael.A.Richmond.1@gsfc.nasa.gov Reviewed by: William Rowe, Ken Coar git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86680 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 20, 2000
-
-
William A. Rowe Jr authored
The things you discover with a really, really clean install git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86676 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 19, 2000
-
-
Tony Finch authored
PR: 6613 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86670 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Fix Netware hole of case sensitivity. All canonical names are now in lowercase. This patch requires further work to return systemcase names, if the NW user expects certain Java and related applications to function properly (at least I recall FirstBill fixed a similar issue in Win32). PR: Several, no doubt, I'll chase them down tonight Obtained from: <s9ed730e.016@prv-mail20.provo.novell.com> Submitted by: Brad Nicholes <BNICHOLES@novell.com> Reviewed by: William Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86667 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
be killed? PR: 4600 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86664 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
application/batch-SMTP to match the official name. Obtained from: ftp://ftp.isi.edu/in-notes/iana/assignments/media-types PR: 6613 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86662 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 18, 2000
-
-
Tony Finch authored
rewrite map lookup keys and default values are now expanded so that the lookup can depend on the requested URI etc. Because the new code is recursive you can now write configurations like the following (with nested map lookups) which wasn't directly possible before -- you had to use a RewriteCond and a %N backref instead, as in http://www.apache.org/docs/vhosts/mass.html#xtra-conf RewriteMap tolower int:tolower RewriteMap host2user txt:/home/www/conf/virtusertbl RewriteRule /(.*) /home/${host2user:${tolower:%{HTTP_HOST}}|www}/public_html PR: 6671 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86636 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 17, 2000
-
-
William A. Rowe Jr authored
Clarify description for ServerTokens (thanks Erwann), and the ScriptInterpreterSource (couldn't help but notice an issue) directives. PR: 6676 Submitted by: Erwann Corvellec <erwann.corvellec@britimmo.com> Reviewed by: William Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86625 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 14, 2000
-
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86590 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
More binaries I'm aware of. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86587 13f79535-47bb-0310-9956-ffa450edef68
-
Wilfredo Sanchez authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86585 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 12, 2000
-
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86566 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86563 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Needed freshening. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86557 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 10, 2000
-
-
Mark J. Cox authored
PR: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86525 13f79535-47bb-0310-9956-ffa450edef68
-
Mark J. Cox authored
PR: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86523 13f79535-47bb-0310-9956-ffa450edef68
-
Mark J. Cox authored
PR: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86522 13f79535-47bb-0310-9956-ffa450edef68
-
Mark J. Cox authored
PR: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86521 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
My bad, sorry FirstBill. Since the other raw reg* fns aren't exported regerror does not belong here. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86520 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Oh what a blunder :-( All better now, but the underlying problems with NW path parsing remain. Obtained from: new-httpd Submitted by: Brad Nicholes [BNICHOLES@novell.com] Reviewed by: wrowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86519 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Changes to get Netware building with 1.3.14-dev Obtained from: new-httpd Submitted by: Brad Nicholes [BNICHOLES@novell.com] Reviewed by: Who can parse an .mcp file but a Novell developer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86518 13f79535-47bb-0310-9956-ffa450edef68
-
Mark J. Cox authored
PR: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86516 13f79535-47bb-0310-9956-ffa450edef68
-
Mark J. Cox authored
PR: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86515 13f79535-47bb-0310-9956-ffa450edef68
-
Mark J. Cox authored
PR: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86513 13f79535-47bb-0310-9956-ffa450edef68
-
Mark J. Cox authored
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86512 13f79535-47bb-0310-9956-ffa450edef68
-