You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2012/09/11 22:03:11 UTC

svn commit: r1383596 - in /httpd/httpd/branches/2.4.x/docs/manual: mod/ programs/

Author: nd
Date: Tue Sep 11 20:03:10 2012
New Revision: 1383596

URL: http://svn.apache.org/viewvc?rev=1383596&view=rev
Log:
update properties.

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dumpio.html.fr   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dumpio.xml.fr   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_log_forensic.html.fr   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_log_forensic.xml.fr   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy_fcgi.html.fr   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy_fcgi.xml.fr   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy_html.html.fr   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy_html.xml.fr   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_session.html.fr   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_session.xml.fr   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.html   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.xml   (contents, props changed)
    httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.xml.meta   (props changed)
    httpd/httpd/branches/2.4.x/docs/manual/programs/split-logfile.xml   (contents, props changed)
    httpd/httpd/branches/2.4.x/docs/manual/programs/split-logfile.xml.meta   (props changed)

Propchange: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dumpio.html.fr
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_dumpio.xml.fr
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_log_forensic.html.fr
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_log_forensic.xml.fr
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy_fcgi.html.fr
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy_fcgi.xml.fr
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy_html.html.fr
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_proxy_html.xml.fr
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_session.html.fr
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_session.xml.fr
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.html
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.xml?rev=1383596&r1=1383595&r2=1383596&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.xml Tue Sep 11 20:03:10 2012
@@ -1,59 +1,59 @@
-<?xml version='1.0' encoding='UTF-8' ?>
-<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
-<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
-<!-- $LastChangedRevision: 1331547 $ -->
-
-<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements.  See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-
-<manualpage metafile="other.xml.meta">
-<parentdocument href="./">Programs</parentdocument>
-
-<title>log_server_status - Log periodic status summaries</title>
-
-<summary>
-    <p>This perl script is designed to be run at a frequent interval by
-    something like cron. It connects to the server and downloads the status
-    information. It reformats the information to a single line and logs it to
-    a file. Adjust the variables at the top of the script to specify the
-    location of the resulting logfile. <module>mod_status</module> will
-    need to be loaded and configured in order for this script to do its
-    job.</p>
-</summary>
-
-<section id="configure"><title>Usage</title>
-
-<p>The script contains the following section.</p>
-
-<highlight language="perl">
-my $wherelog = "/usr/local/apache2/logs/";  # Logs will be like "/usr/local/apache2/logs/19960312"
-my $server   = "localhost";        # Name of server, could be "www.foo.com"
-my $port     = "80";               # Port on server
-my $request = "/server-status/?auto";    # Request to send
-</highlight>
-
-<p>You'll need to ensure that these variables have the correct values,
-and you'll need to have the <code>/server-status</code> handler
-configured at the location specified, and the specified log location
-needs to be writable by the user which will run the script.</p>
-
-<p>Run the script periodically via cron to produce a daily log file,
-which can then be used for statistical analysis.</p>
-
-</section>
-
-</manualpage>
+<?xml version='1.0' encoding='UTF-8' ?>
+<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
+<!-- $LastChangedRevision$ -->
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manualpage metafile="other.xml.meta">
+<parentdocument href="./">Programs</parentdocument>
+
+<title>log_server_status - Log periodic status summaries</title>
+
+<summary>
+    <p>This perl script is designed to be run at a frequent interval by
+    something like cron. It connects to the server and downloads the status
+    information. It reformats the information to a single line and logs it to
+    a file. Adjust the variables at the top of the script to specify the
+    location of the resulting logfile. <module>mod_status</module> will
+    need to be loaded and configured in order for this script to do its
+    job.</p>
+</summary>
+
+<section id="configure"><title>Usage</title>
+
+<p>The script contains the following section.</p>
+
+<highlight language="perl">
+my $wherelog = "/usr/local/apache2/logs/";  # Logs will be like "/usr/local/apache2/logs/19960312"
+my $server   = "localhost";        # Name of server, could be "www.foo.com"
+my $port     = "80";               # Port on server
+my $request = "/server-status/?auto";    # Request to send
+</highlight>
+
+<p>You'll need to ensure that these variables have the correct values,
+and you'll need to have the <code>/server-status</code> handler
+configured at the location specified, and the specified log location
+needs to be writable by the user which will run the script.</p>
+
+<p>Run the script periodically via cron to produce a daily log file,
+which can then be used for statistical analysis.</p>
+
+</section>
+
+</manualpage>

Propchange: httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.xml
------------------------------------------------------------------------------
    svn:keywords = LastChangedRevision

Propchange: httpd/httpd/branches/2.4.x/docs/manual/programs/log_server_status.xml.meta
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: httpd/httpd/branches/2.4.x/docs/manual/programs/split-logfile.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/programs/split-logfile.xml?rev=1383596&r1=1383595&r2=1383596&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/programs/split-logfile.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/programs/split-logfile.xml Tue Sep 11 20:03:10 2012
@@ -1,58 +1,58 @@
-<?xml version='1.0' encoding='UTF-8' ?>
-<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
-<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
-<!-- $LastChangedRevision: 1332685 $ -->
-
-<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements.  See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-
-<manualpage metafile="other.xml.meta">
-<parentdocument href="./">Programs</parentdocument>
-
-<title>split-logfile - Split up multi-vhost logfiles</title>
-
-<summary>
-    <p>This perl script will take a combined Web server access log file and
-    break its contents into separate files. It assumes that the first field of
-    each line is the virtual host identity, put there using the "<code>%v</code>"
-    variable in <directive module="mod_log_config">LogFormat</directive>.
-    </p>
-</summary>
-
-<section id="split-logfile"><title>Usage</title>
-
-    <p>Create a log file with virtual host information in it:</p>
-
-    <highlight language="config">
-LogFormat "%v %h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-agent}i\"" combined_plus_vhost
-CustomLog logs/access_log combined_plus_vhost
-    </highlight>
-
-    <p>Log files will be created, in the directory where you run the
-    script, for each virtual host name that appears in the combined log file.
-    These logfiles will named after the hostname, with a
-    <code>.log</code> file extension.</p>
-
-    <p>The combined log file is read from stdin. Records read will be appended
-    to any existing log files.</p>
-
-    <example>split-logfile &lt; access_log</example>
-
-
-</section>
-
-</manualpage>
+<?xml version='1.0' encoding='UTF-8' ?>
+<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
+<!-- $LastChangedRevision$ -->
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manualpage metafile="other.xml.meta">
+<parentdocument href="./">Programs</parentdocument>
+
+<title>split-logfile - Split up multi-vhost logfiles</title>
+
+<summary>
+    <p>This perl script will take a combined Web server access log file and
+    break its contents into separate files. It assumes that the first field of
+    each line is the virtual host identity, put there using the "<code>%v</code>"
+    variable in <directive module="mod_log_config">LogFormat</directive>.
+    </p>
+</summary>
+
+<section id="split-logfile"><title>Usage</title>
+
+    <p>Create a log file with virtual host information in it:</p>
+
+    <highlight language="config">
+LogFormat "%v %h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-agent}i\"" combined_plus_vhost
+CustomLog logs/access_log combined_plus_vhost
+    </highlight>
+
+    <p>Log files will be created, in the directory where you run the
+    script, for each virtual host name that appears in the combined log file.
+    These logfiles will named after the hostname, with a
+    <code>.log</code> file extension.</p>
+
+    <p>The combined log file is read from stdin. Records read will be appended
+    to any existing log files.</p>
+
+    <example>split-logfile &lt; access_log</example>
+
+
+</section>
+
+</manualpage>

Propchange: httpd/httpd/branches/2.4.x/docs/manual/programs/split-logfile.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/branches/2.4.x/docs/manual/programs/split-logfile.xml
------------------------------------------------------------------------------
    svn:keywords = LastChangedRevision

Propchange: httpd/httpd/branches/2.4.x/docs/manual/programs/split-logfile.xml.meta
------------------------------------------------------------------------------
    svn:eol-style = native