Index: /FCKeditor.Java/branches/2.4.x/build.xml
===================================================================
--- /FCKeditor.Java/branches/2.4.x/build.xml	(revision 2539)
+++ /FCKeditor.Java/branches/2.4.x/build.xml	(revision 2540)
@@ -26,5 +26,5 @@
 	        description="Creates a clean FCKeditor distribution">
 		<property name="fckeditor-tmp" location="fckeditor-tmp" />
-		<property name="fckeditor-basename" value="FCKeditor_2.6.2" />
+		<property name="fckeditor-basename" value="FCKeditor_2.6.3" />
 		<property name="fckeditor-destfile"
 		          value="${fckeditor-basename}_clean.zip"
Index: /FCKeditor.Java/branches/2.4.x/pom.xml
===================================================================
--- /FCKeditor.Java/branches/2.4.x/pom.xml	(revision 2539)
+++ /FCKeditor.Java/branches/2.4.x/pom.xml	(revision 2540)
@@ -17,4 +17,5 @@
 		<slf4jVersion>${slf4j.version}</slf4jVersion>
 		<currentVersion>${version}</currentVersion>
+		<FCKeditorVersion>2.6.3</FCKeditorVersion>
 	</properties>
 	<build>
Index: /FCKeditor.Java/branches/2.4.x/src/site/apt/demo.apt.vm
===================================================================
--- /FCKeditor.Java/branches/2.4.x/src/site/apt/demo.apt.vm	(revision 2539)
+++ /FCKeditor.Java/branches/2.4.x/src/site/apt/demo.apt.vm	(revision 2540)
@@ -28,5 +28,5 @@
 
   The demo is intended for novices, beginners, and for everyone who wants to see
-  the FCKeditor (version 2.6.2) in action right out of the box. It's also a good
+  the FCKeditor (version ${FCKeditorVersion}) in action right out of the box. It's also a good
   reference for you to see how all integral parts work together.
 
Index: Keditor.Java/branches/2.4.x/src/site/apt/installation.apt
===================================================================
--- /FCKeditor.Java/branches/2.4.x/src/site/apt/installation.apt	(revision 2539)
+++ 	(revision )
@@ -1,74 +1,0 @@
-~~ FCKeditor - The text editor for Internet - http://www.fckeditor.net
-~~ Copyright (C) 2003-2008 Frederico Caldeira Knabben
-~~ 
-~~ == BEGIN LICENSE ==
-~~ 
-~~ Licensed under the terms of any of the following licenses at your
-~~ choice:
-~~ 
-~~  - GNU General Public License Version 2 or later (the "GPL")
-~~    http://www.gnu.org/licenses/gpl.html
-~~ 
-~~  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
-~~    http://www.gnu.org/licenses/lgpl.html
-~~ 
-~~  - Mozilla Public License Version 1.1 or later (the "MPL")
-~~    http://www.mozilla.org/MPL/MPL-1.1.html
-~~ 
-~~ == END LICENSE ==
-~~ @version $Id$
-                        ------------------------------
-                                Installation
-                        ------------------------------
-
-Installation Guide
-
-  After downloading an appropriate distribution, you need to install it into
-  your webapp. Read the applying topics in this guide from top to bottom.
-
-* Integration pack installation
-
-  Installing the integration pack, it's dependencies, and a required SLF4J binding.
-
-** Using Maven 2
-
-   If you have already declared the depedency reference as described in the
-   {{{download.html}download guide}}, Maven has already installed everything for
-   you. Declare the chosen SFL4J binding and corresponding backend (may be optional)
-   in the dependencies section of your POM within the <runtime> scope.
-
-** Manual installation
-
-   Simply put the downloaded core jar, it's dependencies and your favorite SFL4J
-   binding together with the corresponding backend (may be optional) in to your 
-   classpath (usually <<<WEB-INF/lib>>>) and you are ready to go.
-
-* FCKeditor installation
-
-  Although the public distribution is fine, it still contains a lot of superfluous
-  files for a Java environment. Use the following <<<Ant>>> target on the FCKeditor
-  2.6.2 zip file (1,26 MiB) to create a cleaner and smaller distribution zip file
-  (996 KiB). After the minification you can unzip the smaller distribution zip
-  file into your webapp.
-
-+------------------------------------------------------------------------------+
-<target name="clean-fckeditor" description="Creates a clean FCKeditor distribution">
-  <!-- Adapt these properties to your needs -->
-  <property name="fckeditor-tmp" location="fckeditor-tmp" />
-  <property name="fckeditor-basename" value="FCKeditor_2.6.2" />
-  <property name="fckeditor-destfile" value="${fckeditor-basename}_clean.zip" />
-
-  <delete file="${fckeditor-destfile}" />
-  <unzip dest="${fckeditor-tmp}" src="${fckeditor-basename}.zip" />
-  <zip destfile="${fckeditor-destfile}">
-    <zipfileset dir="${fckeditor-tmp}/fckeditor" prefix="fckeditor">
-      <include name="_samples/_plugins/" />
-      <include name="editor/" />
-      <include name="fckconfig.js" />
-      <include name="*.xml" />
-      <exclude name="editor/filemanager/connectors/" />
-    </zipfileset>
-  </zip>
-  <delete dir="${fckeditor-tmp}" />
-</target>
-+------------------------------------------------------------------------------+
Index: /FCKeditor.Java/branches/2.4.x/src/site/apt/installation.apt.vm
===================================================================
--- /FCKeditor.Java/branches/2.4.x/src/site/apt/installation.apt.vm	(revision 2540)
+++ /FCKeditor.Java/branches/2.4.x/src/site/apt/installation.apt.vm	(revision 2540)
@@ -0,0 +1,74 @@
+~~ FCKeditor - The text editor for Internet - http://www.fckeditor.net
+~~ Copyright (C) 2003-2008 Frederico Caldeira Knabben
+~~ 
+~~ == BEGIN LICENSE ==
+~~ 
+~~ Licensed under the terms of any of the following licenses at your
+~~ choice:
+~~ 
+~~  - GNU General Public License Version 2 or later (the "GPL")
+~~    http://www.gnu.org/licenses/gpl.html
+~~ 
+~~  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
+~~    http://www.gnu.org/licenses/lgpl.html
+~~ 
+~~  - Mozilla Public License Version 1.1 or later (the "MPL")
+~~    http://www.mozilla.org/MPL/MPL-1.1.html
+~~ 
+~~ == END LICENSE ==
+~~ @version $Id$
+                        ------------------------------
+                                Installation
+                        ------------------------------
+
+Installation Guide
+
+  After downloading an appropriate distribution, you need to install it into
+  your webapp. Read the applying topics in this guide from top to bottom.
+
+* Integration pack installation
+
+  Installing the integration pack, it's dependencies, and a required SLF4J binding.
+
+** Using Maven 2
+
+   If you have already declared the depedency reference as described in the
+   {{{download.html}download guide}}, Maven has already installed everything for
+   you. Declare the chosen SFL4J binding and corresponding backend (may be optional)
+   in the dependencies section of your POM within the <runtime> scope.
+
+** Manual installation
+
+   Simply put the downloaded core jar, it's dependencies and your favorite SFL4J
+   binding together with the corresponding backend (may be optional) in to your 
+   classpath (usually <<<WEB-INF/lib>>>) and you are ready to go.
+
+* FCKeditor installation
+
+  Although the public distribution is fine, it still contains a lot of superfluous
+  files for a Java environment. Use the following <<<Ant>>> target on the FCKeditor
+  ${FCKeditorVersion} zip file (1,31 MiB) to create a cleaner and smaller distribution
+  zip file (0,99 MiB). After the minification you can unzip the smaller distribution zip
+  file into your webapp.
+
++------------------------------------------------------------------------------+
+<target name="clean-fckeditor" description="Creates a clean FCKeditor distribution">
+  <!-- Adapt these properties to your needs -->
+  <property name="fckeditor-tmp" location="fckeditor-tmp" />
+  <property name="fckeditor-basename" value="FCKeditor_${FCKeditorVersion}" />
+  <property name="fckeditor-destfile" value="${fckeditor-basename}_clean.zip" />
+
+  <delete file="${fckeditor-destfile}" />
+  <unzip dest="${fckeditor-tmp}" src="${fckeditor-basename}.zip" />
+  <zip destfile="${fckeditor-destfile}">
+    <zipfileset dir="${fckeditor-tmp}/fckeditor" prefix="fckeditor">
+      <include name="_samples/_plugins/" />
+      <include name="editor/" />
+      <include name="fckconfig.js" />
+      <include name="*.xml" />
+      <exclude name="editor/filemanager/connectors/" />
+    </zipfileset>
+  </zip>
+  <delete dir="${fckeditor-tmp}" />
+</target>
++------------------------------------------------------------------------------+
