1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-06 16:49:32 +03:00
Commit Graph

79 Commits

Author SHA1 Message Date
André Malo
15fe279e68 update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1202314 13f79535-47bb-0310-9956-ffa450edef68
2011-11-15 17:17:36 +00:00
Rainer Jung
402dbbad20 Update transformations.
Sorry for the noise, blame it to the
simplified chinese cleanup.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199540 13f79535-47bb-0310-9956-ffa450edef68
2011-11-08 23:46:40 +00:00
Rainer Jung
a90ae4579d Update transformations.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199509 13f79535-47bb-0310-9956-ffa450edef68
2011-11-08 22:53:44 +00:00
Stefan Fritsch
a83284e103 update xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1178089 13f79535-47bb-0310-9956-ffa450edef68
2011-10-01 20:57:36 +00:00
Stefan Fritsch
f81846b591 update xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173370 13f79535-47bb-0310-9956-ffa450edef68
2011-09-20 21:03:41 +00:00
Rich Bowen
c8de086646 Replace log example with one that matches 2.4 logging.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173098 13f79535-47bb-0310-9956-ffa450edef68
2011-09-20 11:57:52 +00:00
Rich Bowen
ea63c89aa4 Rebuild transformations for r1127905
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1127920 13f79535-47bb-0310-9956-ffa450edef68
2011-05-26 14:01:00 +00:00
Rich Bowen
931cdd59ae Update copyright to 2011
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1054597 13f79535-47bb-0310-9956-ffa450edef68
2011-01-03 12:42:10 +00:00
Rich Bowen
9870cb2364 Mention the %200{var}i syntax in the conditional logging doc.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1031155 13f79535-47bb-0310-9956-ffa450edef68
2010-11-04 19:02:51 +00:00
Rich Bowen
e448aedd17 Add link to mod_log_config and BufferedLogs, as per
https://issues.apache.org/bugzilla/show_bug.cgi?id=50110


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1028766 13f79535-47bb-0310-9956-ffa450edef68
2010-10-29 14:31:17 +00:00
Rich Bowen
0da0c88843 A note about per-module logging.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1001245 13f79535-47bb-0310-9956-ffa450edef68
2010-09-25 15:57:41 +00:00
Rich Bowen
bd73f43343 Missed a few mentions of mod_rewrite that shouldn't be in here any more.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1001240 13f79535-47bb-0310-9956-ffa450edef68
2010-09-25 15:39:06 +00:00
Rich Bowen
809cf003c4 RewriteLog is no more. This doc could probably do with a major overhaul,
in light of the new changes to logging.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1001238 13f79535-47bb-0310-9956-ffa450edef68
2010-09-25 15:26:51 +00:00
Stefan Fritsch
800bdf5581 update transformations
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@992810 13f79535-47bb-0310-9956-ffa450edef68
2010-09-05 16:01:15 +00:00
Rainer Jung
ef099e0503 Update transforms.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@989750 13f79535-47bb-0310-9956-ffa450edef68
2010-08-26 15:14:53 +00:00
Rainer Jung
4a2b5e06c2 Update transormations.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@988078 13f79535-47bb-0310-9956-ffa450edef68
2010-08-23 11:34:55 +00:00
William A. Rowe Jr
41c2aed7da It seems we haven't built in some time
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@981360 13f79535-47bb-0310-9956-ffa450edef68
2010-08-02 03:48:08 +00:00
Rainer Jung
0fa11f3ff9 Adding sub second timestamps and request end time to mod_log_config.
Add special format tokens to %{...}t. The extended syntax allows the
form: "WHICH:WHAT".

WHICH is either:
- "begin": use the time when the request started
- "end": take "now" as the time
You can omit WHICH, default is "begin".
If you omit WHICH, the separating column is not allowed.

WHAT is either:
- "sec": timestamp in Unix seconds
- "msec": timestamp in Unix milliseconds
- "msec_frac": millisecond fraction of the Unix timestamp,
               3 digits, 0-padded
- "usec": timestamp in Unix microseconds
- "usec_frac": microsecond fraction of the Unix timestamp
               6 digits, 0-padded
- anything different from those tokens: use strftime()
You can omit WHAT, default is the formatted timestamp as
used by the Common Log Format.

The implementation uses a new request_config for mod_log_config
to pass the request end time around between different calls to
log formatters, but the end time is only generated if needed.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@979120 13f79535-47bb-0310-9956-ffa450edef68
2010-07-25 21:08:15 +00:00
Rainer Jung
822088c8c5 Replace "back-slash" with "backslash" in docs.
I kept "back slash" when explicitely used in
comparison with "forward slash".


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@965792 13f79535-47bb-0310-9956-ffa450edef68
2010-07-20 10:48:02 +00:00
Igor Galić
138805ae77 Fixing up mod_lua with context and overrides
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@937323 13f79535-47bb-0310-9956-ffa450edef68
2010-04-23 15:04:17 +00:00
Igor Galić
59ec76e2f5 Adding a missing <br />. No more commits after half past three.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936907 13f79535-47bb-0310-9956-ffa450edef68
2010-04-22 15:44:56 +00:00
Igor Galić
08a37e7528 Adding an cache hit/miss example, regarding PR#48241
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936805 13f79535-47bb-0310-9956-ffa450edef68
2010-04-22 12:07:44 +00:00
André Malo
6cb10f671c update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@930746 13f79535-47bb-0310-9956-ffa450edef68
2010-04-04 20:22:49 +00:00
Rich Bowen
2eb2e95754 Adds a related modules list. Trying to work up the steam to overhaul the
'conditional logging' section.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@930607 13f79535-47bb-0310-9956-ffa450edef68
2010-04-04 01:29:01 +00:00
Rich Bowen
a85a7ee5ea 'Apache' -> 'Apache HTTP Server' etc
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@927046 13f79535-47bb-0310-9956-ffa450edef68
2010-03-24 13:11:51 +00:00
Rich Bowen
b134f9aac1 2009 -> 2010 in the copyright statement. Nobody seems to know if this is
actually necessary, but it's sort of an annual tradition. We think
tradition is pretty important.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@895795 13f79535-47bb-0310-9956-ffa450edef68
2010-01-04 21:41:42 +00:00
Graham Leggett
6baacf4a7e Update transformations.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@808213 13f79535-47bb-0310-9956-ffa450edef68
2009-08-26 22:48:47 +00:00
Ruediger Pluem
d593d89ad6 * Update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759120 13f79535-47bb-0310-9956-ffa450edef68
2009-03-27 12:44:01 +00:00
Ruediger Pluem
e4f6dc8e21 * Update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@732126 13f79535-47bb-0310-9956-ffa450edef68
2009-01-06 21:30:28 +00:00
Takashi Sato
eb0076cdb9 update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@708603 13f79535-47bb-0310-9956-ffa450edef68
2008-10-28 16:31:45 +00:00
Takashi Sato
de5118cb30 update transformations
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@670238 13f79535-47bb-0310-9956-ffa450edef68
2008-06-21 17:44:43 +00:00
Takashi Sato
600b208cae update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@660544 13f79535-47bb-0310-9956-ffa450edef68
2008-05-27 14:53:45 +00:00
Noirin Plunkett
2e1af8db42 Copyright year update
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@613134 13f79535-47bb-0310-9956-ffa450edef68
2008-01-18 11:44:40 +00:00
Erik Abele
169ecb06c6 Transformations.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@586436 13f79535-47bb-0310-9956-ffa450edef68
2007-10-19 13:30:31 +00:00
Jason S. Lingohr
13a83c6f84 Build transformations.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@583992 13f79535-47bb-0310-9956-ffa450edef68
2007-10-12 00:17:52 +00:00
Jim Jagielski
5b0ec0d47f Update doccos
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@571782 13f79535-47bb-0310-9956-ffa450edef68
2007-09-01 12:21:29 +00:00
André Malo
05d4dddbd9 fix transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@567150 13f79535-47bb-0310-9956-ffa450edef68
2007-08-17 21:18:00 +00:00
William A. Rowe Jr
37af7a852e Sync anchor href alt titles
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@567134 13f79535-47bb-0310-9956-ffa450edef68
2007-08-17 20:42:56 +00:00
Jim Jagielski
611d2fc34b Updates docs w/ transforms. Use Andre's patch to lib/DocUtil.pm
to work around some OS X issues which mangled paths


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@432570 13f79535-47bb-0310-9956-ffa450edef68
2006-08-18 13:09:12 +00:00
Jim Jagielski
a187478d9e Update docs and transforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@432360 13f79535-47bb-0310-9956-ffa450edef68
2006-08-17 19:41:07 +00:00
Roy T. Fielding
5347b4715f update collective copyright notice in manual
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@421086 13f79535-47bb-0310-9956-ffa450edef68
2006-07-12 02:42:24 +00:00
Noirin Plunkett
5da80fcaed Adding updated mod_ssl HOWTO to the website
Also committing transforms with new (2006) copyright notice.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@369229 13f79535-47bb-0310-9956-ffa450edef68
2006-01-15 16:04:23 +00:00
André Malo
1537670b90 update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@352028 13f79535-47bb-0310-9956-ffa450edef68
2005-12-03 21:56:02 +00:00
Justin Erenkrantz
885446fabb Plug some holes in the current documentation.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@332942 13f79535-47bb-0310-9956-ffa450edef68
2005-11-13 08:01:43 +00:00
Justin Erenkrantz
d147d2bcb0 Update transformations after version bump.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@332905 13f79535-47bb-0310-9956-ffa450edef68
2005-11-13 06:16:08 +00:00
André Malo
6fcf2b437f build extraclean all (extraclean just to make sure I got them all :-)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@239209 13f79535-47bb-0310-9956-ffa450edef68
2005-08-22 18:17:15 +00:00
Joshua Slive
1a522a1797 Finish committing the transformations that I accidentally started in
the last commit.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@167960 13f79535-47bb-0310-9956-ffa450edef68
2005-05-03 19:12:51 +00:00
Astrid Malo
9df8cb2bb0 update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@124062 13f79535-47bb-0310-9956-ffa450edef68
2005-01-04 02:56:02 +00:00
André Malo
22c4b97f1e update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@106804 13f79535-47bb-0310-9956-ffa450edef68
2004-11-28 13:39:02 +00:00
André Malo
2fd79b7da0 update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102714 13f79535-47bb-0310-9956-ffa450edef68
2004-02-21 00:31:45 +00:00