summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Cleanup effort in prep for GA push:Jim Jagielski2011-09-23151-1419/+1419
| | | | | | | Trim trailing whitespace... no func change git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1174747 13f79535-47bb-0310-9956-ffa450edef68
* docco xformsJim Jagielski2011-09-2318-19/+145
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1174720 13f79535-47bb-0310-9956-ffa450edef68
* some docco updatesJim Jagielski2011-09-232-4/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1174718 13f79535-47bb-0310-9956-ffa450edef68
* Pulls the examples out of the paragraph text and into a table so thatRich Bowen2011-09-222-16/+42
| | | | | | | they are more visually distinct. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173918 13f79535-47bb-0310-9956-ffa450edef68
* Bring error messages for TLS stapling related options in syncKaspar Brand2011-09-211-5/+5
| | | | | | | with their directive names. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173772 13f79535-47bb-0310-9956-ffa450edef68
* update transformationsKaspar Brand2011-09-216-5/+224
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173760 13f79535-47bb-0310-9956-ffa450edef68
* mod_ssl:Kaspar Brand2011-09-212-1/+193
| | | | | | | | | | - document the SSLStapling* directives (code committed in r829619 for 2.2.3, see PR 43822) - add SSLCARevocationCheck to the list of configuration changes in the 2.4 upgrade notes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173755 13f79535-47bb-0310-9956-ffa450edef68
* update xformsStefan Fritsch2011-09-208-11/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173370 13f79535-47bb-0310-9956-ffa450edef68
* %L works without mod_unique_id, tooStefan Fritsch2011-09-201-4/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173368 13f79535-47bb-0310-9956-ffa450edef68
* Save one call of ap_escape_html on the uri. Reflow code to be more readable.Stefan Fritsch2011-09-201-9/+8
| | | | | | | | Submitted by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> PR: 51697 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173328 13f79535-47bb-0310-9956-ffa450edef68
* Adds brief introduction to the table to address initial confusion when IRich Bowen2011-09-202-0/+8
| | | | | | | showed this doc to someone unfamiliar with the directive. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173140 13f79535-47bb-0310-9956-ffa450edef68
* Rebuilds translation generated docs.Rich Bowen2011-09-209-8/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173102 13f79535-47bb-0310-9956-ffa450edef68
* Replace log example with one that matches 2.4 logging.Rich Bowen2011-09-202-38/+27
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173098 13f79535-47bb-0310-9956-ffa450edef68
* Rebuild HTML transformations.Rich Bowen2011-09-208-34/+50
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173087 13f79535-47bb-0310-9956-ffa450edef68
* Adds some examples of using the ErrorLogFormat token handlers.Rich Bowen2011-09-201-28/+51
| | | | | | | Standardizes the spelling of behavio(u)r to be consistent throughout the file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173086 13f79535-47bb-0310-9956-ffa450edef68
* Add ssl_log_xerror() and ssl_log_rxerror(), modeled after ssl_log_cxerror().Kaspar Brand2011-09-194-29/+132
| | | | | | | | | Add SSL_X509_NAME_to_string(), which converts an X509 distinguished name to an RFC 2253 formatted string. Adapt ssl_log_*error() to make use of SSL_X509_NAME_to_string(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172797 13f79535-47bb-0310-9956-ffa450edef68
* Fix issues found by PVS-Studio static analyzer:Stefan Fritsch2011-09-193-12/+9
| | | | | | | | | | | | | | | | mod_mime_magic: cut'n'paste error rsl_encoding vs. rsl_separator, also simplify code a bit mod_header: wrong string initialization (leading to segfault if format argument is missing) util_win32: duplicate sizeof (untested; Windows people, please review) PR: 51542 Submitted by: Andrey Karpov <karpov viva64 com>, Stefan Fritsch git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172732 13f79535-47bb-0310-9956-ffa450edef68
* Remove from documentation STATUS things that have already been done.Rich Bowen2011-09-191-9/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172715 13f79535-47bb-0310-9956-ffa450edef68
* Add wrappers for malloc, calloc, realloc that check for out of memoryStefan Fritsch2011-09-1918-89/+110
| | | | | | | | | | | | situations. Use them in most places where malloc, and friends are used. This results in clean error messages in an out of memory situation instead of segfaulting or silently malfunctioning. In some places, it just allows to remove some logging code. PR 51568, PR 51569, PR 51571. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172686 13f79535-47bb-0310-9956-ffa450edef68
* Punctuation error.Rich Bowen2011-09-192-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172633 13f79535-47bb-0310-9956-ffa450edef68
* Removes CookieLog from ja, ko, and tr documentation.Rich Bowen2011-09-193-54/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172632 13f79535-47bb-0310-9956-ffa450edef68
* Rebuild docs mentioning CookieLogRich Bowen2011-09-1921-3211/+3125
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172627 13f79535-47bb-0310-9956-ffa450edef68
* Removes the CookieLog directive, which has been documented as deprecated for ↵Rich Bowen2011-09-192-27/+0
| | | | | | more than a decade. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172625 13f79535-47bb-0310-9956-ffa450edef68
* Rebuild HTML.Rich Bowen2011-09-193-3/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172622 13f79535-47bb-0310-9956-ffa450edef68
* Removes the promise if more documentation to come. These docs areRich Bowen2011-09-193-3/+9
| | | | | | | probably sufficient as is. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172618 13f79535-47bb-0310-9956-ffa450edef68
* Style cleanupDaniel Ruggeri2011-09-191-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172562 13f79535-47bb-0310-9956-ffa450edef68
* Give a slightly more direct hint when no global ServerName is set. I stillEric Covener2011-09-191-1/+2
| | | | | | | | | think this buries the lead, but it's hard to rewrite to change the emphasis yet maintain googleability. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172410 13f79535-47bb-0310-9956-ffa450edef68
* Rebuild mod_log_config grammar changes.Rich Bowen2011-09-194-21/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172409 13f79535-47bb-0310-9956-ffa450edef68
* Additional grammatical nits.Rich Bowen2011-09-191-18/+19
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172408 13f79535-47bb-0310-9956-ffa450edef68
* Rebuilding other new French translations.Rich Bowen2011-09-193-7/+30
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172402 13f79535-47bb-0310-9956-ffa450edef68
* Rebuilds French translation updates.Rich Bowen2011-09-194-5/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172401 13f79535-47bb-0310-9956-ffa450edef68
* Rebuild transformations.Rich Bowen2011-09-199-37/+97
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172399 13f79535-47bb-0310-9956-ffa450edef68
* Nitpick - Be consistent with ending each format description with a fullstop.Rich Bowen2011-09-191-13/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172397 13f79535-47bb-0310-9956-ffa450edef68
* Updates.Lucien Gentis2011-09-188-22/+138
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172274 13f79535-47bb-0310-9956-ffa450edef68
* Fix cut'n'paste error: ErrorLog -> ErrorLogFormatStefan Fritsch2011-09-1814-14/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172208 13f79535-47bb-0310-9956-ffa450edef68
* Trying to make it slightly clearer that 'name' in these examples is a ↵Rich Bowen2011-09-182-12/+12
| | | | | | variable to be replaced. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172177 13f79535-47bb-0310-9956-ffa450edef68
* Altering the "somewhat similar" to default example to actually be theRich Bowen2011-09-182-4/+22
| | | | | | | default format. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172173 13f79535-47bb-0310-9956-ffa450edef68
* PR51371: cross-compile issues with cgi and apr_procattr_limit_*.Eric Covener2011-09-173-13/+27
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172019 13f79535-47bb-0310-9956-ffa450edef68
* Log better information and prevent leak of an X509 structure for ↵Daniel Ruggeri2011-09-171-6/+42
| | | | | | SSLProxyMachineCertificateChainFile git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172010 13f79535-47bb-0310-9956-ffa450edef68
* * Correctly obey ServerName / ServerAlias if the Host header from theRuediger Pluem2011-09-172-12/+29
| | | | | | | | | | | request matches the VirtualHost address. PR: 51709 Submitted by: Micha Lenk <micha lenk.info> Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172002 13f79535-47bb-0310-9956-ffa450edef68
* Fix cut'n'paste errors: APR_DECLARE -> AP_DECLARE / part2.Guenter Knauf2011-09-171-2/+2
| | | | | | | Submitted by: NormW <normw gknw.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171850 13f79535-47bb-0310-9956-ffa450edef68
* fix spelling error in a couple of log messagesJeff Trawick2011-09-171-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171849 13f79535-47bb-0310-9956-ffa450edef68
* Continue if the platform doesnt support file perms.Guenter Knauf2011-09-171-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171847 13f79535-47bb-0310-9956-ffa450edef68
* Add comment that the check for empty brigade at the start of the function isStefan Fritsch2011-09-161-0/+1
| | | | | | | essential. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171655 13f79535-47bb-0310-9956-ffa450edef68
* Fix cut'n'paste errors: APR_DECLARE -> AP_DECLAREStefan Fritsch2011-09-161-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171652 13f79535-47bb-0310-9956-ffa450edef68
* update xformsStefan Fritsch2011-09-157-26/+21
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171274 13f79535-47bb-0310-9956-ffa450edef68
* Un-deprecate AddOutputFilterByType and update docs. Its limitations haveStefan Fritsch2011-09-152-23/+7
| | | | | | | been fixed by the move to mod_filter. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171273 13f79535-47bb-0310-9956-ffa450edef68
* Implement AddOutputFilterByType by doing strcmp()s instead of creatingStefan Fritsch2011-09-151-41/+60
| | | | | | | | lots of ap_expr's. This is more efficient and fixes string escaping issues in the old code. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171268 13f79535-47bb-0310-9956-ffa450edef68
* replace non-threadsafe use of srand() and rand() with ap_random_pick()Stefan Fritsch2011-09-151-15/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171251 13f79535-47bb-0310-9956-ffa450edef68
* use random value as multipart range boundary to prevent leaking informationStefan Fritsch2011-09-151-7/+5
| | | | | | | about the used MPM git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1171250 13f79535-47bb-0310-9956-ffa450edef68