- Nov 13, 2000
-
-
Roy T. Fielding authored
for ap_post_read_request, since that is the only opportunity for modules to handle Expect extensions. Submitted by: Justin Erenkrantz <jerenkrantz@eBuilt.com> Reviewed by: Roy Fielding git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86937 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 10, 2000
-
-
William A. Rowe Jr authored
Recap Brad's changes (sorry, missed it on the original update.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86909 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Small fix to thread allocation for NetWare Obtained from: new-httpd 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@86908 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86904 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
nocache=1, we bail out. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86903 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@86902 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86900 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
the hostname is interpolated into the filename, we need to be sure that the result of interpolation doesn't expose parts of the filesystem that should be private. This was done by checking the syntax of the Host: header according to RFC 1123 and RFC 952. However, many people have broken configurations that violate this syntax (frequently because they use underscores in their names), and it also doesn't accommodate the current effort to internationalize the DNS. I don't think the former is a compelling reason to relax the syntax checking, but the latter does justify this change. The only RFC on internationalized DNS at the moment is RFC 2825 which is an introduction to how difficult the whole thing is; the other official documentation is a pile of Internet Drafts produced by the Internationalized Domain Names Working Group of the IETF (with names starting "draft-ietf-idn-"). However they have very little to say about URIs, and the current Internet draft about internationalized URIs (draft-masinter-url-i18n-05) has very little to say about hostnames :-( On the gripping hand there is some useful information at <http://www.apng.org/idns/> where there is some iDNS testbed work going on. The basic idea is that although the format of the hostnames in the DNS itself remains compatible with RFC 1123, the actual hostname presented to the resolver is in UTF8, and therefore the hostname in the URL and Host: header is also in UTF8. This change relaxes the checking so that only character sequences that are sensitive to the filesystem are rejected, i.e. forward slashes, backward slashes, and sequences of more than one dot. PR: 6635 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86897 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 07, 2000
-
-
Martin Kraemer authored
"cc -shared" to create shared libraries on OpenBSD 2.8 and up. Submitted by: brad@comstyle.com / brad@openbsd.org Reviewed by: Martin Kraemer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86858 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 06, 2000
-
-
Tony Finch authored
problems with byteserved PDFs. I've had a couple of reports that things work OK with this patch but more testing would be good. PR: 6711 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86849 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86848 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
problems with byteserved PDFs. I've had a couple of reports that things work OK with this patch but more testing would be good. PR: 6711 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86847 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
With a few final edits to make the language clearer (thank you Greg), effectively as posted for review 11/3/00. Reviewed by: Bill Stoddard, Randy Terbush, Greg Marr git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86845 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 05, 2000
-
-
Tony Finch authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86839 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
it (e.g. PHP) work OK. (How come I forgot to add this to the CHANGES file three days ago?) PR: 6780 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86838 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
for apache to drop the serialisation on linux; and a switch to sysv semaphores is preferred for performance. see <Pine.LNX.4.21.0011041233550.1897-100000@twinlark.arctic.org> in new-httpd archive for more details. Submitted by: Andrew Morton <andrewm@uow.edu.au> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@86837 13f79535-47bb-0310-9956-ffa450edef68
-
- 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
-