- Aug 20, 2001
-
-
William A. Rowe Jr authored
Replaced by HTTP_UNAUTHORIZED.html.var git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90409 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
My bad. We need to use the constants defined in httpd.h. The essential reason is that these errors will grow to include 'other' things, like custom error responses, DAV error responses, and so on. They may also start including 'sub errors' - local langauge explanations of specific failures. Let's use the httpd.h constants rather than numbers, they are easier to read. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90408 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This is a combined typemap/error response file for multiple langauges, as originally contributed by Lars. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90407 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
moved to httpd-2.0/docroot/images/... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90406 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This is the Body:tag\n<Content>*tag\n patch for type map files. If the content can be served, it sends a file bucket of the type map file itself, forward spaced to the <Content>, set to the length of <Content>. <Content> may contain any binary data. The end tag must exist, anything between the tag and \n is ignored. This version (v.s. the patch sent to the list) includes error reporting if the end tag cannot be located. We need to change the etag code to accept an additional argument, so we can set the cache controls properly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90405 13f79535-47bb-0310-9956-ffa450edef68
-
Ian Holsman authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90403 13f79535-47bb-0310-9956-ffa450edef68
-
Ian Holsman authored
Submitted by: dougm@apache.org Reviewed by: ianh@apache.org git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90402 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
Submitted by: Chris Pepper git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90401 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
connections in the process. When this occurs, a graceful shutdown of the child is initiated so any leaked resources & hosed memory is disposed of ASAP. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90400 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Per Martin, Mark's and my discussion, index.html will _still_ override the typemap, and enabling multiviews will undo the optimization. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90398 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90397 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90396 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90395 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
failures in CGIs on OS/2. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90394 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90393 13f79535-47bb-0310-9956-ffa450edef68
-
Justin Erenkrantz authored
(the AC_* way of doing what Martin committed) - Fix the configuration check for mod_auth_digest so that: - Everything is on separate lines so that the preprocessor doesn't scream - It adds the path to APR. (APR_SOURCE_DIR looks right, but I'm not sure.) By the time the modules are configured, the CPPFLAGS and such are not setup to point at APR. This should probably be rectified and then this can be taken out - so you could assume that apr.h is in your CPPFLAGS somewhere when configuring the modules. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90392 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
rather than in libdb. Also, be more precise in telling what is actually checked for (we are NOT testing for main(), but we are testing for dbopen(), right?). Without the first fix, configuration would fail completely for FreeBSD git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90391 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
depending on how you look at it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90385 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
allow filter to be configured without 'CaseFilterIn On' PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90383 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90379 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 19, 2001
-
-
William A. Rowe Jr authored
This is the same patch as httpd-std.conf rev 1.38, just keeping them in-sync git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90378 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This patch; enables Multiviews only for htdocs/manual/ enables .var type map files to shortcut Multiviews changes the DirectoryIndex to index.html.var before index.html, again to avoid multiviews if a typemap exists. locates the /manual resource by an alias, so the user may easily change their DocumentRoot and still have access to the documentation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90377 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
My bad, sorry. Here is ... This Variant type-map file is the authoritative reference to our "It Worked" page variants. Of course it isn't yet (although it is complete), please review httpd-std.conf as well as this list for inconsistencies (I documented those I discovered). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90376 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This Variant type-map file is the authoritative reference to our "It Worked" page variants. Of course it isn't yet (although it is complete), please review httpd-std.conf as well as this list for inconsistencies (I documented those I discovered). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90375 13f79535-47bb-0310-9956-ffa450edef68
-
Ian Holsman authored
int buffer_len = 1; char test_buffer[buffer_len]; git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90367 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90366 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Assure that non-FancyIndexed listings properly shortcut dir entries, and display and href the trailing slash, as well. PR: 8206 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90364 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This doesn't belong in the distro (certainly not installed in a docroot.) This sort of history should be in CVS and CHANGES. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90362 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90361 13f79535-47bb-0310-9956-ffa450edef68
-
Justin Erenkrantz authored
--enable-modules=most will disable a module if it can not be built --enable-modules=all will error if a module can not be built --enable-modules=foo will error if the specified module can not be built (even if --enable-modules=most is set) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90360 13f79535-47bb-0310-9956-ffa450edef68
-
Doug MacEachern authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90359 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Add the advertising clause text to our own README when we link and copy the openssl binaries. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90358 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
This is Apache 2.0, which has been essentially rewritten. This citation was inconsistent with the rest of our credits. We still thank Ambarish Malpani of ValiCert, Inc. for his contribution, but we have many, many others to thank, and this one accolade was out of place. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90357 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90356 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90355 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90354 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
A little more clarity in DescriptionWidth. Better phrasing recommended by Bill Rowe on SuppressDescription git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90353 13f79535-47bb-0310-9956-ffa450edef68
-
Graham Leggett authored
configuration to httpd-std.conf and httpd-win.conf PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90352 13f79535-47bb-0310-9956-ffa450edef68
-
Graham Leggett authored
to the docs. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90351 13f79535-47bb-0310-9956-ffa450edef68
-
Lars Eilebrecht authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90350 13f79535-47bb-0310-9956-ffa450edef68
-