summaryrefslogtreecommitdiffstats
path: root/docs/man (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Update transformsDaniel Earl Poirier2010-10-191-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1024268 13f79535-47bb-0310-9956-ffa450edef68
* Update transformations.Graham Leggett2010-10-131-5/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1022233 13f79535-47bb-0310-9956-ffa450edef68
* Update transformations.Graham Leggett2010-10-051-1/+50
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1004483 13f79535-47bb-0310-9956-ffa450edef68
* Update transformations.Graham Leggett2010-09-291-4/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1002855 13f79535-47bb-0310-9956-ffa450edef68
* Update transformations.Graham Leggett2010-09-131-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@996396 13f79535-47bb-0310-9956-ffa450edef68
* Update transformations.Graham Leggett2010-03-301-3/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@928922 13f79535-47bb-0310-9956-ffa450edef68
* Update transformsDaniel Earl Poirier2010-02-251-2/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@916381 13f79535-47bb-0310-9956-ffa450edef68
* Update transformations.Graham Leggett2010-02-162-4/+19
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@910732 13f79535-47bb-0310-9956-ffa450edef68
* update transformationTakashi Sato2009-12-251-1/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@893876 13f79535-47bb-0310-9956-ffa450edef68
* Strip SHARED_CORE deadwood.Nick Kew2009-12-221-3/+0
| | | | | | | PR 46239 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@893044 13f79535-47bb-0310-9956-ffa450edef68
* update transformationNilgun Belma Buguner2009-11-032-8/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@832316 13f79535-47bb-0310-9956-ffa450edef68
* update transformationsStefan Fritsch2009-10-191-6/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@826808 13f79535-47bb-0310-9956-ffa450edef68
* Update the ab.xml file with the addition of the -u option to ab toGraham Leggett2009-09-061-3/+6
| | | | | | | support PUT requests. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@811869 13f79535-47bb-0310-9956-ffa450edef68
* Add support for HTTP PUT to ab.Graham Leggett2009-09-061-1/+1
| | | | | | | Submiited by: Jeff Barnes <jbarnesweb yahoo.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@811806 13f79535-47bb-0310-9956-ffa450edef68
* update transformationNilgun Belma Buguner2009-03-282-8/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759492 13f79535-47bb-0310-9956-ffa450edef68
* * Update transformationRuediger Pluem2009-03-272-10/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759120 13f79535-47bb-0310-9956-ffa450edef68
* update transformationNilgun Belma Buguner2009-02-1612-0/+1429
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@744891 13f79535-47bb-0310-9956-ffa450edef68
* update transformationNilgun Belma Buguner2009-02-041-5/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@740553 13f79535-47bb-0310-9956-ffa450edef68
* Mostly revert r733493: signal based rotationRainer Jung2009-01-161-1/+1
| | | | | | | | | | | | for rotatelogs. Prefer adding reliable piped logs to the error loggers in httpd, so that one could simply kill rotatelogs and httpd automatically starts new instances of all loggers. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@734973 13f79535-47bb-0310-9956-ffa450edef68
* Allow size units B, K, M, G and combination ofRainer Jung2009-01-111-3/+5
| | | | | | | time and size based rotation for rotatelogs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@733531 13f79535-47bb-0310-9956-ffa450edef68
* rotatelogs: Add flag for verbose (debug) output.Rainer Jung2009-01-111-1/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@733520 13f79535-47bb-0310-9956-ffa450edef68
* Allow to trigger rotatelogs log file rotation fromRainer Jung2009-01-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | using HUP and INT signals to the rotatelogs process. This is helpful, when log activity is low, but you want rotatelogs to close the open log files. SIGHUP triggers checking the rules given during startup, SIGINT forces rotate independently form those rules. When the signal triggers a rotation, the open file is closed immediately. The new file is opened when new log data arrives, or in case "-f" was given it is opened immediately. Based on my patch in BZ 44427. Note on Windows: The new functionality is undefined when SIGHUP or SIGINT are not available. Does the use case make sense on Windows? If so, which signals should we use? git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@733493 13f79535-47bb-0310-9956-ffa450edef68
* * Update transformationRuediger Pluem2009-01-111-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@733468 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAndré Malo2008-10-221-2/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@707042 13f79535-47bb-0310-9956-ffa450edef68
* revert bogus transformation (r657505)Takashi Sato2008-05-181-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@657524 13f79535-47bb-0310-9956-ffa450edef68
* update transformationTakashi Sato2008-05-181-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@657505 13f79535-47bb-0310-9956-ffa450edef68
* * Update transformationRuediger Pluem2008-04-211-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@650175 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAndré Malo2008-03-071-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@634611 13f79535-47bb-0310-9956-ffa450edef68
* Add in new option for rotatelogs: -fJim Jagielski2008-02-291-1/+4
| | | | | | | | | | This forces rotatelogs to create the logfile as soon as started not as soon as it sees it's first line of input. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@632355 13f79535-47bb-0310-9956-ffa450edef68
* * Update transformation.Ruediger Pluem2007-12-091-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@602740 13f79535-47bb-0310-9956-ffa450edef68
* Update transformationsVincent Bray2007-11-231-7/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@597745 13f79535-47bb-0310-9956-ffa450edef68
* generated rotatelogs docsJeff Trawick2007-11-201-23/+34
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@596831 13f79535-47bb-0310-9956-ffa450edef68
* Update the generated man page for -D change.Joshua Slive2007-07-311-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@561489 13f79535-47bb-0310-9956-ffa450edef68
* Explain that POST data should be sent as the correct MIME type. Sander Temme2007-05-241-3/+3
| | | | | | | | Submitted by Vincent Bray noodlet at gmail dot com, edited and reviewed by sctemme git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@541138 13f79535-47bb-0310-9956-ffa450edef68
* Docs update. Sync with transformsJim Jagielski2007-02-082-2/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@504899 13f79535-47bb-0310-9956-ffa450edef68
* apxs: Enhance -q flag to print all known variables and their valuesSander Temme2007-02-011-3/+3
| | | | | | | when invoked without variable name(s). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@502323 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAndré Malo2006-08-181-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@432667 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAndré Malo2005-11-131-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@333013 13f79535-47bb-0310-9956-ffa450edef68
* Update transformations.Justin Erenkrantz2005-11-131-1/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@332898 13f79535-47bb-0310-9956-ffa450edef68
* Update the transformations to reflect the new graceful-stop argument.Colm MacCarthaigh2005-08-262-4/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@240275 13f79535-47bb-0310-9956-ffa450edef68
* Add -t option to htcacheclean to clean out empty directories.Justin Erenkrantz2005-08-111-4/+7
| | | | | | | | | | | | | | | | * support/htcacheclean.c: Implement -t option. * docs/man/htcacheclean.8, docs/manual/programs/htcacheclean.html.en, docs/manual/programs/htcacheclean.xml: Document -t option. Justin did some minor tweaks as he agrees with Andreas and Rudiger that apr_dir_remove should return an error if the directory isn't empty; hence, remove the apr_dir_read calls. Submitted by: Colm MacCarthaigh Reviewed by: Justin Erenkrantz, Andreas Steinmetz, Rudiger Pluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@231351 13f79535-47bb-0310-9956-ffa450edef68
* `build all`André Malo2005-06-301-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@202449 13f79535-47bb-0310-9956-ffa450edef68
* Finish committing the transformations that I accidentally started inJoshua Slive2005-05-031-3/+3
| | | | | | | the last commit. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@167960 13f79535-47bb-0310-9956-ffa450edef68
* Add generated htdbm(1) man-page.Erik Abele2005-03-261-0/+169
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@159109 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAndré Malo2004-12-101-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@111535 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAndré Malo2004-11-241-8/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@106361 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAndré Malo2004-11-141-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105767 13f79535-47bb-0310-9956-ffa450edef68
* update transformationAndré Malo2004-11-101-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105748 13f79535-47bb-0310-9956-ffa450edef68
* add generated manpage for htcacheclean(8)André Malo2004-11-071-0/+74
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105714 13f79535-47bb-0310-9956-ffa450edef68
* Update transformations.Joe Orton2004-10-011-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105357 13f79535-47bb-0310-9956-ffa450edef68