Author: ihabunek
Date: Wed Dec 14 09:48:13 2011
New Revision: 1214131
URL: http://svn.apache.org/viewvc?rev=1214131&view=rev
Log:
In docs, replaced the term "options" with "parameters" to make it consistent
with the configuration syntax (e.g. <param> node in XML).
Modified:
logging/log4php/trunk/src/site/xdoc/docs/appenders.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/console.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/daily-file.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/echo.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/file.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/mail-event.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/mail.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/mongodb.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/null.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/pdo.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/php.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/rolling-file.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/socket.xml
logging/log4php/trunk/src/site/xdoc/docs/appenders/syslog.xml
logging/log4php/trunk/src/site/xdoc/docs/configuration.xml
logging/log4php/trunk/src/site/xdoc/docs/filters.xml
logging/log4php/trunk/src/site/xdoc/docs/layouts/html.xml
logging/log4php/trunk/src/site/xdoc/docs/layouts/pattern.xml
logging/log4php/trunk/src/site/xdoc/docs/layouts/serialized.xml
logging/log4php/trunk/src/site/xdoc/docs/layouts/simple.xml
logging/log4php/trunk/src/site/xdoc/docs/layouts/ttcc.xml
logging/log4php/trunk/src/site/xdoc/docs/layouts/xml.xml
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders.xml Wed Dec 14 09:48:13
2011
@@ -125,7 +125,7 @@
requests. Since we wish to log to a
file, <code>LoggerAppenderFile</code> is used in this case.</li>
<li>A <strong>layout</strong> which
transforms the logging events to string which can be logged.
A layout is required by most appenders,
but some do not require it, such as the database appender.</li>
- <li>Zero or more
<strong>parameters</strong> (also called options) which configure the appender
+ <li>Zero or more
<strong>parameters</strong> which configure the appender
behaviour. In this example, the
<em>file</em> parameter governs the path to the file which will be
used for logging, and <em>append</em>
defines that log messages should be appended to the file,
instead of truncating it.</li>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/console.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/console.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/console.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/console.xml Wed Dec 14
09:48:13 2011
@@ -28,12 +28,12 @@
<p><code>LoggerAppenderConsole</code> writes logging
events to the <code>php://stdout</code> or
the <code>php://stderr</code> stream, the former being
the default target.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/daily-file.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/daily-file.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/daily-file.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/daily-file.xml Wed Dec
14 09:48:13 2011
@@ -28,16 +28,16 @@
<p><code>LoggerAppenderDailyFile</code> writes logging
events to a file. The file is rolled over
once a day. In other words, for each day a new file is
created.</p>
- <p>The path specified in the <code>file</code> option
string should contain the string <code>%s</code>
- which will be substituted with the current date when
logging. The <code>datePattern</code> option
+ <p>The path specified in the <code>file</code>
parameter string should contain the string <code>%s</code>
+ which will be substituted with the current date when
logging. The <code>datePattern</code> parameter
determines how the date will be formatted.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/echo.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/echo.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/echo.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/echo.xml Wed Dec 14
09:48:13 2011
@@ -29,12 +29,12 @@
<code><a class="externalLink" target="_blank"
href="http://php.net/manual/en/function.echo.php">echo()</a>
</code> function. Echo outputs may be buffered.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/file.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/file.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/file.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/file.xml Wed Dec 14
09:48:13 2011
@@ -27,12 +27,12 @@
<p><code>LoggerAppenderFile</code> writes logging
events to a file.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/mail-event.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/mail-event.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/mail-event.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/mail-event.xml Wed Dec
14 09:48:13 2011
@@ -30,12 +30,12 @@
<p>This appender is similar to <code><a
href="mail.html">LoggerAppenderMail</a></code>, except that it
sends each each log event in an individual email
message at the time when it occurs.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/mail.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/mail.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/mail.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/mail.xml Wed Dec 14
09:48:13 2011
@@ -35,12 +35,12 @@
<p class="alert-message warning">When working in
Windows, make sure that the <code>SMTP</code> and <code>smpt_port</code>
values in php.ini are set to the correct values for
your email server (address and port).</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/mongodb.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/mongodb.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/mongodb.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/mongodb.xml Wed Dec 14
09:48:13 2011
@@ -30,12 +30,12 @@
<p><a href="http://www.mongodb.org/" target="_blank"
class="externalLink">MongoDB</a> is a scalable,
high-performance, open source, document-oriented
database.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/null.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/null.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/null.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/null.xml Wed Dec 14
09:48:13 2011
@@ -28,7 +28,7 @@
<p><code>LoggerAppenderNull</code> ignores all logging
requests; it never outputs a message to any
device.</p>
- <p>This appender does not use a layout and has no
configurable options.</p>
+ <p>This appender does not use a layout and has no
configurable parameters.</p>
<subsection name="Examples">
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/pdo.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/pdo.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/pdo.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/pdo.xml Wed Dec 14
09:48:13 2011
@@ -28,13 +28,13 @@
<p><code>LoggerAppenderPDO</code> appender logs to a
database using the PHP's
<a href="http://php.net/manual/en/book.pdo.php"
target="_blank" class="externalLink">PDO extension</a>.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<thead>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
@@ -89,7 +89,7 @@
<td>string</td>
<td>No</td>
<td><em><a
href="#Advanced_configuration">see below</a></em></td>
- <td>A comma separated
list of format strings used in conjunction with <code>insertSql</code>
option.</td>
+ <td>A comma separated
list of format strings used in conjunction with <code>insertSql</code>
parameter.</td>
</tr>
</tbody>
</table>
@@ -102,18 +102,18 @@
</subsection>
<subsection name="Advanced configuration"
id="Advanced_configuration">
- <p>Options <code>insertSql</code> and
<code>insertPattern</code> can be used to change how events are
+ <p>Parameters <code>insertSql</code> and
<code>insertPattern</code> can be used to change how events are
inserted into the database. By manipulating
them, it is possible to use a custom table structure to
suit your needs.</p>
<p class="alert-message warning">WARNING:
Change these settings only if you are sure you know what you are doing.</p>
- <p>The default values of these options are:</p>
+ <p>The default values of these parameters
are:</p>
<table>
<thead>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Default value</th>
</tr>
</thead>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/php.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/php.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/php.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/php.xml Wed Dec 14
09:48:13 2011
@@ -37,7 +37,7 @@
</ul>
- <subsection name="Options">
+ <subsection name="Parameters">
<p>This appender has no configurable
parameters.</p>
</subsection>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/rolling-file.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/rolling-file.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/rolling-file.xml
(original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/rolling-file.xml Wed Dec
14 09:48:13 2011
@@ -37,12 +37,12 @@
<p>This continues until the maximum backup index is
reached, after which the oldest log file is deleted
on each rollover.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/socket.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/socket.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/socket.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/socket.xml Wed Dec 14
09:48:13 2011
@@ -31,13 +31,13 @@
<p>Prior to version <code>2.2</code>, a layout was not
required.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<thead>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
Modified: logging/log4php/trunk/src/site/xdoc/docs/appenders/syslog.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/appenders/syslog.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/syslog.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/syslog.xml Wed Dec 14
09:48:13 2011
@@ -29,13 +29,13 @@
<p>This appender does not require a layout.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<thead>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
@@ -154,7 +154,7 @@
<subsection name="Facilities" id="Facilities">
- <p>The <em>facility</em> option is used to
specify what type of program is logging the message. This
+ <p>The <em>facility</em> parameter is used to
specify what type of program is logging the message. This
allows you to specify (in your machine's syslog
configuration) how messages coming from different
facilities will be handled.</p>
@@ -311,7 +311,7 @@
<layout class="LoggerLayoutTTCC" />
<param name="ident" value="log4php-test" />
<param name="facility" value="LOCAL0" />
- <param name="options" value="NDELAY|PID" />
+ <param name="option" value="NDELAY|PID" />
</appender>
<root>
<appender_ref ref="default" />
@@ -331,7 +331,7 @@ array(
'params' => array(
'ident' => 'log4php-test',
'facility' => 'LOCAL0',
- 'options' => 'NDELAY|PID'
+ 'option' => 'NDELAY|PID'
),
),
),
Modified: logging/log4php/trunk/src/site/xdoc/docs/configuration.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/configuration.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/configuration.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/configuration.xml Wed Dec 14
09:48:13 2011
@@ -139,7 +139,7 @@ return array(
<p>The properites configuration format does not
support filters.</p>
- <p>The following is a high level overview of
all options provided by this format:</p>
+ <p>The following is a high level overview of
this format:</p>
<pre class="prettyprint">
Modified: logging/log4php/trunk/src/site/xdoc/docs/filters.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/filters.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/filters.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/filters.xml Wed Dec 14 09:48:13
2011
@@ -49,8 +49,15 @@
<p>Like appenders and layouts, depending on the
class used, filters may have configurable parameters
which determine their behaviour.</p>
- <p>Here is an XML configuration example:</p>
+ <p>Here is a configuration example:</p>
+ <ul class="tabs">
+ <li class="active"><a
href="#xml">XML</a></li>
+ <li><a href="#php">PHP</a></li>
+ </ul>
+
+ <div class="pill-content" >
+ <div class="active" id="xml">
<pre class="prettyprint linenums"><![CDATA[
<configuration xmlns="http://logging.apache.org/log4php/">
<appender name="defualt" class="LoggerAppenderEcho">
@@ -71,8 +78,8 @@
</configuration>
]]></pre>
- <p>And the same configuration in PHP format:</p>
-
+ </div>
+ <div id="php">
<pre class="prettyprint linenums"><![CDATA[
array(
'appenders' => array(
@@ -104,7 +111,8 @@ array(
)
)
]]></pre>
-
+ </div>
+ </div>
<p>In this example, there are two filters
defined for the <em>default</em> appender.</p>
@@ -162,12 +170,12 @@ array(
<subsection name="LoggerFilterLevelMatch"
id="LoggerFilterLevelMatch">
<p>This filter either accepts the specified
logger level or denies it.</p>
- <h4>Configurable options</h4>
+ <h4>Configurable parameters</h4>
<table>
<thead>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
@@ -209,12 +217,12 @@ array(
<subsection name="LoggerFilterLevelRange"
id="LoggerFilterLevelRange">
<p>This filter accepts or denies logging events
if their log level is within the specified range.</p>
- <h4>Configurable options</h4>
+ <h4>Configurable parameters</h4>
<table>
<thead>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
@@ -262,12 +270,12 @@ array(
<subsection name="LoggerFilterStringMatch"
id="LoggerFilterStringMatch">
<p>This filter allows or denies logging events
if their message contains a given string.</p>
- <h4>Configurable options</h4>
+ <h4>Configurable parameters</h4>
<table>
<thead>
<tr>
- <th>Option</th>
+ <th>Parameter</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
Modified: logging/log4php/trunk/src/site/xdoc/docs/layouts/html.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/layouts/html.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/layouts/html.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/layouts/html.xml Wed Dec 14
09:48:13 2011
@@ -27,8 +27,8 @@
<p>LoggerLayoutHTML formats the log as an HTML
document.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
Modified: logging/log4php/trunk/src/site/xdoc/docs/layouts/pattern.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/layouts/pattern.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/layouts/pattern.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/layouts/pattern.xml Wed Dec 14
09:48:13 2011
@@ -27,8 +27,8 @@
<p>LoggerLayoutPattern is a flexible layout
configurable via a conversion pattern.</p>
- <subsection name="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
Modified: logging/log4php/trunk/src/site/xdoc/docs/layouts/serialized.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/layouts/serialized.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/layouts/serialized.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/layouts/serialized.xml Wed Dec 14
09:48:13 2011
@@ -28,8 +28,8 @@
<p><code>LoggerLayoutSerialized</code> formats the
logging event using the PHP's
<code><a
href="http://php.net/manual/en/function.serialize.php">serialize()</a></code>
function.</p>
- <subsection name="Options" id="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters" id="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>
@@ -44,8 +44,8 @@
<td>boolean</td>
<td>No</td>
<td>false</td>
- <td>If set to true, it will
initilaize the event's location information before serialization.
- This option makes logging
slower and should be used only if required.</td>
+ <td>If set to true, event's
location information will be initialized before serialization.
+ Enabling this parameter makes
logging slower and should be used only if required.</td>
</tr>
</table>
Modified: logging/log4php/trunk/src/site/xdoc/docs/layouts/simple.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/layouts/simple.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/layouts/simple.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/layouts/simple.xml Wed Dec 14
09:48:13 2011
@@ -32,8 +32,8 @@
<code>%p - %m%n</code>.</p>
- <subsection name="Options">
- <p>This layout does not have any configurable
options.</p>
+ <subsection name="Parameters">
+ <p>This layout does not have any configurable
parameters.</p>
</subsection>
<subsection name="Examples">
Modified: logging/log4php/trunk/src/site/xdoc/docs/layouts/ttcc.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/layouts/ttcc.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/layouts/ttcc.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/layouts/ttcc.xml Wed Dec 14
09:48:13 2011
@@ -40,9 +40,9 @@
<code><a
href="pattern.html">LoggerLayoutPattern</a></code> with the <em>conversion
pattern</em> set to
<code>%d{m/d/y H:i:s,u} [%t] %p %c %x - %m%n</code>.</p>
- <subsection name="Options">
+ <subsection name="Parameters">
- <p>The following options are available:</p>
+ <p>The following parameters are available:</p>
<table>
<tr>
Modified: logging/log4php/trunk/src/site/xdoc/docs/layouts/xml.xml
URL:
http://svn.apache.org/viewvc/logging/log4php/trunk/src/site/xdoc/docs/layouts/xml.xml?rev=1214131&r1=1214130&r2=1214131&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/layouts/xml.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/layouts/xml.xml Wed Dec 14
09:48:13 2011
@@ -27,8 +27,8 @@
<p><code>LoggerLayoutXml</code> formats the messages as
an XML document.</p>
- <subsection name="Options" id="Options">
- <p>The following options are available:</p>
+ <subsection name="Parameters" id="Parameters">
+ <p>The following parameters are available:</p>
<table>
<tr>