You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ih...@apache.org on 2012/10/06 08:17:02 UTC

svn commit: r1394938 - /logging/log4php/trunk/src/site/xdoc/docs/appenders/echo.xml

Author: ihabunek
Date: Sat Oct  6 06:17:02 2012
New Revision: 1394938

URL: http://svn.apache.org/viewvc?rev=1394938&view=rev
Log:
Minor indentation fix.

Modified:
    logging/log4php/trunk/src/site/xdoc/docs/appenders/echo.xml

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=1394938&r1=1394937&r2=1394938&view=diff
==============================================================================
--- logging/log4php/trunk/src/site/xdoc/docs/appenders/echo.xml (original)
+++ logging/log4php/trunk/src/site/xdoc/docs/appenders/echo.xml Sat Oct  6 06:17:02 2012
@@ -72,37 +72,37 @@
 				
 					<div class="tab-content" >
 						<div class="tab-pane">
-	<pre class="prettyprint"><![CDATA[
-	<configuration xmlns="http://logging.apache.org/log4php/">
-	    <appender name="default" class="LoggerAppenderEcho">
-	        <layout class="LoggerLayoutSimple" />
-	        <param name="htmlLineBreaks" value="true" />
-	    </appender>
-	    <root>
-	        <appender_ref ref="default" />
-	    </root>
-	</configuration>
-	]]></pre>
+<pre class="prettyprint"><![CDATA[
+<configuration xmlns="http://logging.apache.org/log4php/">
+    <appender name="default" class="LoggerAppenderEcho">
+        <layout class="LoggerLayoutSimple" />
+        <param name="htmlLineBreaks" value="true" />
+    </appender>
+    <root>
+        <appender_ref ref="default" />
+    </root>
+</configuration>
+]]></pre>
 						</div>
 						<div class="tab-pane">
-	<pre class="prettyprint"><![CDATA[
-	array(
-	    'appenders' => array(
-	        'default' => array(
-	            'class' => 'LoggerAppenderEcho',
-	            'layout' => array(
-	                'class' => 'LoggerLayoutSimple',
-	            ),
-	            'params' => array(
-	                'htmlLineBreaks' => 'true',
-	            ),
-	        ),
-	    ),
-	    'rootLogger' => array(
-	        'appenders' => array('default'),
-	    ),
-	);
-	]]></pre>
+<pre class="prettyprint"><![CDATA[
+array(
+    'appenders' => array(
+        'default' => array(
+            'class' => 'LoggerAppenderEcho',
+            'layout' => array(
+                'class' => 'LoggerLayoutSimple',
+            ),
+            'params' => array(
+                'htmlLineBreaks' => 'true',
+            ),
+        ),
+    ),
+    'rootLogger' => array(
+        'appenders' => array('default'),
+    ),
+);
+]]></pre>
 						</div>
 					</div>
 				</div>