Index: /FCKeditor.Java/branches/2.4/src/site/apt/installation.apt
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/apt/installation.apt	(revision 1812)
+++ /FCKeditor.Java/branches/2.4/src/site/apt/installation.apt	(revision 1813)
@@ -91,2 +91,20 @@
 		  
 	[]
+
+*	A word on Logging
+	
+	We use a state-of-the-art logging facade slf4j which gives us full and 
+	high-performance flexibility on a logging subsystem.
+	
+	There are two possible scenarios which should be of your concern:
+	
+	[[1]] You don't want to log at all, just leave <<<slf4j-nop-1.4.3.jar>>> on 
+		  your classpath and you're done.
+	
+	[[2]] You want to log the library operations or your webapp logs arleady, 
+		  obtain the appropriate wrapper for your logging system and put it on 
+		  your classpath.
+	
+	[]
+		  
+	For more information about slf4j see the {{{http://www.slf4j.org}website}}.
Index: Keditor.Java/branches/2.4/src/site/apt/integration/config-overview.apt
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/apt/integration/config-overview.apt	(revision 1812)
+++ 	(revision )
@@ -1,9 +1,0 @@
-Overview
-
-  * required libs
-  
-  * web.xml
-  
-  * properties handling: fckeditor.properties, static setter
-  
-  * SessionData
Index: /FCKeditor.Java/branches/2.4/src/site/apt/integration/connector.apt
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/apt/integration/connector.apt	(revision 1813)
+++ /FCKeditor.Java/branches/2.4/src/site/apt/integration/connector.apt	(revision 1813)
@@ -0,0 +1,52 @@
+ 						------------------------------
+                           	File Browser Connector
+                        ------------------------------
+					
+Integration
+
+*	File Browser Connector
+
+	The Connector is not mandatory. If you do <<not>> plan to provide userfile
+	interaction, you can skip this section.
+	
+		[Note:]	The Connector by default is not present and disabled for 
+				security reasons!
+	
+	It takes two steps do enable it:
+	
+	[[1]] Declare the ConnectorServlet in your <<<web.xml>>>
+
++-------------------------------------------------------------------+
+  <web-app version="2.4">
+    ...
+    <servlet>
+      <servlet-name>Connector</servlet-name>
+        <servlet-class>
+          net.fckeditor.connector.ConnectorServlet
+      </servlet-class>
+      <load-on-startup>1</load-on-startup>
+    </servlet>
+    ...
+    <servlet-mapping>
+      <servlet-name>Connector</servlet-name>
+      <url-pattern>
+        /fckeditor/editor/filemanager/connectors/*
+      </url-pattern>
+    </servlet-mapping>
+    ...
+  </web-app>
++-------------------------------------------------------------------+
+	
+	Assuming you installed the editor in the <<</fckeditor>>> folder in your webapp.\
+	The Connector is now declared but <still> disabled. The response is going to be
+	an error message.
+	
+	[[2]] Create a <<<fckeditor.properties>>> file in your classpath and add:
+	
++-------------------------------------------------------------------+
+  connector.sessionDataImpl=net.fckeditor.impl.BasicSessionData
++-------------------------------------------------------------------+
+
+	[]
+	
+	The Connector is now enabled.
Index: Keditor.Java/branches/2.4/src/site/apt/integration/integration.apt
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/apt/integration/integration.apt	(revision 1812)
+++ 	(revision )
@@ -1,99 +1,0 @@
-					---------------------
-						Integration
-					---------------------
-					
-Integration
-
-*	A word on Logging
-	
-	We use a state-of-the-art logging facade slf4j which gives us full and 
-	high-performance flexibility on a logging subsystem.
-	
-	There are two possible scenarios which should be of your concern:
-	
-	[[1]] You don't want to log at all, just leave <<<slf4j-nop-1.4.3.jar>>> on 
-		  your classpath and you're done.
-	
-	[[2]] You want to log the library operations or your webapp logs arleady, 
-		  obtain the appropriate wrapper for your logging system and put it on 
-		  your classpath.
-	
-	[]
-		  
-	For more information about slf4j see the {{{http://www.slf4j.org}website}}.
-	
-*	Tag library
-
-	Define the tag extension in each JSP page that uses the FCKeditor.Java taglib.
-	The uri directives must match the URI defined in the tld in the jar file.
-	The prefix identifies the tags in the tag library within the JSP page.
-
-+--------------------------------------------------------------------+
-  <%@ taglib uri="http://www.fckeditor.net/tags" prefix="FCK" %>
-+--------------------------------------------------------------------+
-
-    The declaration, if you are using a JSP XML syntax, looks like:
-
-+--------------------------------------------------------------------+
-  <jsp:root version="2.0" xmlns:jsp="http://java.sun.com/JSP/Page"
-     xmlns:FCK="http://www.fckeditor.net/tags">
-+--------------------------------------------------------------------+
-	
-	Now you are set to use the taglib. A brief usage would be:
-	
-+--------------------------------------------------------------------+
-  <FCK:editor instanceName="EditorDefault">
-    <jsp:attribute name="value">This is some <strong>sample text </strong>. 
-	  You are using <a href="http://www.fckeditor.net"> FCKeditor</a>.
-    </jsp:attribute>
-  </FCK:editor>
-+--------------------------------------------------------------------+
-	
-	For a more complete overview, take a look at the {{{tagreference.html}tag reference}}.
-
-*	File Browser Connector
-
-	The Connector is not mandatory. If you do <<not>> plan to provide userfile
-	interaction, you can skip this section.
-	
-		[Note:]	The Connector by default is not present and disabled for 
-				security reasons!
-	
-	It takes two steps do enable it:
-	
-	[[1]] Declare the ConnectorServlet in your <<<web.xml>>>
-
-+-------------------------------------------------------------------+
-  <web-app version="2.4">
-    ...
-    <servlet>
-      <servlet-name>Connector</servlet-name>
-        <servlet-class>
-          net.fckeditor.connector.ConnectorServlet
-      </servlet-class>
-      <load-on-startup>1</load-on-startup>
-    </servlet>
-    ...
-    <servlet-mapping>
-      <servlet-name>Connector</servlet-name>
-      <url-pattern>
-        /fckeditor/editor/filemanager/connectors/*
-      </url-pattern>
-    </servlet-mapping>
-    ...
-  </web-app>
-+-------------------------------------------------------------------+
-	
-	Assuming you installed the editor in the <<</fckeditor>>> folder in your webapp.\
-	The Connector is now declared but <still> disabled. The response is going to be
-	an error message.
-	
-	[[2]] Create a <<<fckeditor.properties>>> file in your classpath and add:
-	
-+-------------------------------------------------------------------+
-  connector.sessionDataImpl=net.fckeditor.impl.BasicSessionData
-+-------------------------------------------------------------------+
-
-	[]
-	
-	The Connector is now enabled.
Index: /FCKeditor.Java/branches/2.4/src/site/apt/integration/overview.apt
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/apt/integration/overview.apt	(revision 1813)
+++ /FCKeditor.Java/branches/2.4/src/site/apt/integration/overview.apt	(revision 1813)
@@ -0,0 +1,9 @@
+Overview
+
+  * required libs
+  
+  * web.xml
+  
+  * properties handling: fckeditor.properties, static setter
+  
+  * SessionData
Index: /FCKeditor.Java/branches/2.4/src/site/apt/integration/taglibrary.apt
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/apt/integration/taglibrary.apt	(revision 1813)
+++ /FCKeditor.Java/branches/2.4/src/site/apt/integration/taglibrary.apt	(revision 1813)
@@ -0,0 +1,34 @@
+					---------------------
+						Tag Library
+					---------------------
+					
+Integration
+	
+*	Tag library
+
+	Define the tag extension in each JSP page that uses the FCKeditor.Java taglib.
+	The uri directives must match the URI defined in the tld in the jar file.
+	The prefix identifies the tags in the tag library within the JSP page.
+
++--------------------------------------------------------------------+
+  <%@ taglib uri="http://www.fckeditor.net/tags" prefix="FCK" %>
++--------------------------------------------------------------------+
+
+    The declaration, if you are using a JSP XML syntax, looks like:
+
++--------------------------------------------------------------------+
+  <jsp:root version="2.0" xmlns:jsp="http://java.sun.com/JSP/Page"
+     xmlns:FCK="http://www.fckeditor.net/tags">
++--------------------------------------------------------------------+
+	
+	Now you are set to use the taglib. A brief usage would be:
+	
++--------------------------------------------------------------------+
+  <FCK:editor instanceName="EditorDefault">
+    <jsp:attribute name="value">This is some <strong>sample text </strong>. 
+	  You are using <a href="http://www.fckeditor.net"> FCKeditor</a>.
+    </jsp:attribute>
+  </FCK:editor>
++--------------------------------------------------------------------+
+	
+	For a more complete overview, take a look at the {{{tagreference.html}tag reference}}.
Index: /FCKeditor.Java/branches/2.4/src/site/site.xml
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/site.xml	(revision 1812)
+++ /FCKeditor.Java/branches/2.4/src/site/site.xml	(revision 1813)
@@ -3,4 +3,5 @@
 
 	<version position="left" />
+	
 	<bannerLeft>
 		<name>fckeditor-java</name>
@@ -8,6 +9,6 @@
 		<href>http://www.fckeditor.net/fckeditor-java</href>
 	</bannerLeft>
+	
 	<body>
-
 		<head>
 			<link rel="shortcut icon" href="images/favicon.ico"
@@ -22,14 +23,14 @@
 		</menu>
 		<menu name="Integration">
-			<item name="Overview" href="intergration/overview.html" />
+			<item name="Overview" href="integration/overview.html" />
 			<item name="Tag library" href="integration/taglibrary.html" />
 			<item name="Connector" href="integration/connector.html" />
 		</menu>
-		<menu name="Reference" >
+		<menu name="Reference">
 			<item name="Tag library" href="tagreference.html" />
 			<item name="Configuration" href="fckeditor-properties.html" />
 		</menu>
 		<menu name="Developers">
-		<item name="TBD" href="dev/tbd.html" />
+		<item name="TBD" />
 		</menu>
 		<menu ref="reports" />
