svn commit: r1934652 - httpd/httpd/branches/2.4.x/docs/manual/mod
| Newsgroups | gmane.comp.apache.cvs |
|---|---|
| Message-ID | <177982022562.3737544.13366223542039848519@svn03-he-fi> |
Author: jailletc36
Date: Tue May 26 18:30:25 2026
New Revision: 1934652
Log:
Add a missing space in the syntax of GlobalLog.
While at it, remove some trailing spaces and add some "" to improve syntax highlight in an example. This also makes doc closer to trunk.
Modified:
httpd/httpd/branches/2.4.x/docs/manual/mod/mod_log_config.xml
Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_log_config.xml
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_log_config.xml Tue May 26 18:02:04 2026 (r1934651)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_log_config.xml Tue May 26 18:30:25 2026 (r1934652)
@@ -599,7 +599,7 @@ CustomLog "referer.log" referer env=!loc
LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost_common
</highlight>
</example>
-
+
</usage>
</directivesynopsis>
@@ -623,7 +623,7 @@ CustomLog "referer.log" referer env=!loc
<example><title>Example</title>
<highlight language="config">
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\""
-TransferLog logs/access_log
+TransferLog "logs/access_log"
</highlight>
</example>
</usage>
@@ -632,7 +632,7 @@ TransferLog logs/access_log
<directivesynopsis>
<name>GlobalLog</name>
<description>Sets filename and format of log file</description>
-<syntax>GlobalLog<var>file</var>|<var>pipe</var>
+<syntax>GlobalLog <var>file</var>|<var>pipe</var>
<var>format</var>|<var>nickname</var>
[env=[!]<var>environment-variable</var>|
expr=<var>expression</var>]</syntax>