You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by el...@apache.org on 2016/02/11 09:52:57 UTC

svn commit: r1729778 - in /mina/site/trunk/content/mina-project/userguide: ch1-getting-started/first-steps.mdtext ch10-executor-filter/ch10-executor-filter.mdtext

Author: elecharny
Date: Thu Feb 11 08:52:56 2016
New Revision: 1729778

URL: http://svn.apache.org/viewvc?rev=1729778&view=rev
Log:
Fixed some pages

Modified:
    mina/site/trunk/content/mina-project/userguide/ch1-getting-started/first-steps.mdtext
    mina/site/trunk/content/mina-project/userguide/ch10-executor-filter/ch10-executor-filter.mdtext

Modified: mina/site/trunk/content/mina-project/userguide/ch1-getting-started/first-steps.mdtext
URL: http://svn.apache.org/viewvc/mina/site/trunk/content/mina-project/userguide/ch1-getting-started/first-steps.mdtext?rev=1729778&r1=1729777&r2=1729778&view=diff
==============================================================================
--- mina/site/trunk/content/mina-project/userguide/ch1-getting-started/first-steps.mdtext (original)
+++ mina/site/trunk/content/mina-project/userguide/ch1-getting-started/first-steps.mdtext Thu Feb 11 08:52:56 2016
@@ -77,15 +77,17 @@ Put the following jars in the classpath
 * log4j-1.2.17.jar
 
 <DIV class="tip" markdown="1">
-**Logging Tip**
+<strong>Logging Tip</string>
 
-* Log4J 1.2 users: slf4j-api.jar, slf4j-log4j12.jar, and Log4J 1.2.x
-* Log4J 1.3 users: slf4j-api.jar, slf4j-log4j13.jar, and Log4J 1.3.x
-* java.util.logging users: slf4j-api.jar and slf4j-jdk14.jar
+<UL>
+  <LI>Log4J 1.2 users: slf4j-api.jar, slf4j-log4j12.jar, and Log4J 1.2.x</LI>
+  <LI>Log4J 1.3 users: slf4j-api.jar, slf4j-log4j13.jar, and Log4J 1.3.x</LI>
+  <LI>java.util.logging users: slf4j-api.jar and slf4j-jdk14.jar</LI>
+</UL>
 	
-IMPORTANT: Please make sure you are using the right slf4j-*.jar that matches to your logging framework.
-For instance, slf4j-log4j12.jar and log4j-1.3.x.jar can not be used together, and will malfunction.
-If you don't need a logging framework you can use slf4j-nop.jar for no logging or slf4j-simple.jar for
+<strong>IMPORTANT:<strong> Please make sure you are using the right <em>slf4j-*.jar</em> that matches to your logging framework.
+For instance, <em>slf4j-log4j12.jar</em> and <em>log4j-1.3.x.jar</em> can not be used together, and will malfunction.
+If you don't need a logging framework you can use <em>slf4j-nop.jar</em> for no logging or <em>slf4j-simple.jar</em> for
 very basic logging.
 </DIV>
 

Modified: mina/site/trunk/content/mina-project/userguide/ch10-executor-filter/ch10-executor-filter.mdtext
URL: http://svn.apache.org/viewvc/mina/site/trunk/content/mina-project/userguide/ch10-executor-filter/ch10-executor-filter.mdtext?rev=1729778&r1=1729777&r2=1729778&view=diff
==============================================================================
--- mina/site/trunk/content/mina-project/userguide/ch10-executor-filter/ch10-executor-filter.mdtext (original)
+++ mina/site/trunk/content/mina-project/userguide/ch10-executor-filter/ch10-executor-filter.mdtext Thu Feb 11 08:52:56 2016
@@ -21,7 +21,7 @@ Notice:    Licensed to the Apache Softwa
            KIND, either express or implied.  See the License for the
            specific language governing permissions and limitations
            under the License.
-		   
+
 # Chapter 10 - Executor Filter
 
 MINA 1.X version let the user define the Thread Model at the Acceptor level. It was part of the Acceptor configuration. This led to complexity, and the MINA team decided to remove this option, replacing it with a much more versatile system, based on a filter : the __ExecutorFilter__.