- Aug 26, 2010
-
-
Rainer Jung authored
the header name. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@989651 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
Example formating is not verbatim. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@989600 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 25, 2010
-
-
Stefan Fritsch authored
- make the documentation more doxygen friendly, as suggested by Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@989377 13f79535-47bb-0310-9956-ffa450edef68
-
Richard Bowen authored
virtual host is. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@989142 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@989121 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@988988 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@988987 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 24, 2010
-
-
Jeff Trawick authored
message, and it should indicate whether or not retry will be attempted git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@988635 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@988618 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@988616 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 23, 2010
-
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@988078 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
syntax to the docs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@988071 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
The files have been erroneously added in r987255. These pages have moved to the developer directory. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@988069 13f79535-47bb-0310-9956-ffa450edef68
-
Jean-Frederic Clere authored
See http://www.mail-archive.com/dev@httpd.apache.org/msg47171.html git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@988038 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 22, 2010
-
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987862 13f79535-47bb-0310-9956-ffa450edef68
-
Stefan Fritsch authored
PR: 45856 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987861 13f79535-47bb-0310-9956-ffa450edef68
-
Stefan Fritsch authored
arg can't be NULL and the message created by missing_container_arg() is good enough git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987860 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987858 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
A proxy worker is shared, if its URL is a leading substring of the URL of another worker defined later in the configuration. Before this change this - triggered the "worker ... already used by another worker" message - resulted in a hard to understand configuration for this worker - Attributes explicitely given in the later worker overwrote attributes in the worker which was defined first - General proxy attributes (e.g. ProxyTimeout ) overwrote attributes in the worker which was defined first New behaviour: - Talk about "sharing" of workers and log both worker URLs in the info log message instead of the "already used" message - Do not overwrite attributes. If attributes were explicitely given in the later worker, log a warning that those are ignored because of sharing. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987854 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987853 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 21, 2010
-
-
Stefan Fritsch authored
loaded. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987806 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 20, 2010
-
-
Jeff Trawick authored
curr_parent can't be NULL (or we segfault elsewhere), so don't check for NULL git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987631 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
segfault will occur right before the function returns anyway (IOW, caller must not pass in NULL for that arg) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987629 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987503 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
We may as well use apr_snprintf() though, as well as comment on the available space for "::\0" (for people like me). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987498 13f79535-47bb-0310-9956-ffa450edef68
-
Rainer Jung authored
remove remaining uses of sprintf() in the dav modules. This is a regression in 2.3.7 introduced by r931434. It calls sizeof() for a function parameter, which only returns the pointer size, not the size of the char array. Thus the "creationdate" property got truncated to three characters. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987484 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
... by popular demand, and add documentation. Submitted by: Daniel Ruggeri <DRuggeri primary.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987359 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 19, 2010
-
-
Jeff Trawick authored
require a mongo argv[0]. Get the vprintf formatter to handle the padding and avoid creating the padding altogether. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987339 13f79535-47bb-0310-9956-ffa450edef68
-
Nick Kew authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987299 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987255 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
- remove references to implementation details - re-order information to fit the order of the page - add more links to glossary and other pages git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987254 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
match is found. For ServerName, copy information about how multiple occurrences are handled from the vhost doc. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987251 13f79535-47bb-0310-9956-ffa450edef68
-
Daniel Earl Poirier authored
name-based virtual hosts. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987242 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987153 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987146 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987143 13f79535-47bb-0310-9956-ffa450edef68
-
Jim Jagielski authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@987141 13f79535-47bb-0310-9956-ffa450edef68
-
- Aug 18, 2010
-
-
Stefan Fritsch authored
PR: 45331 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@986979 13f79535-47bb-0310-9956-ffa450edef68
-
Stefan Fritsch authored
error even if ldc->ldap != NULL. PR 46076 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@986974 13f79535-47bb-0310-9956-ffa450edef68
-
Stefan Fritsch authored
PR: 49639 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@986921 13f79535-47bb-0310-9956-ffa450edef68
-