Index: /FCKeditor.Java/branches/2.4/build.xml
===================================================================
--- /FCKeditor.Java/branches/2.4/build.xml	(revision 1969)
+++ /FCKeditor.Java/branches/2.4/build.xml	(revision 1970)
@@ -21,5 +21,7 @@
 <project name="fckeditor-java" basedir=".">
 
-	<target name="deploy-fckeditor" description="Deploys the FCKeditor into the webapp for testing purposes">
+	<target name="deploy-fckeditor"
+	        description="Deploys the FCKeditor into the webapp for testing purposes"
+	>
 		<copy todir="java-demo/src/main/webapp/fckeditor">
 			<fileset dir="../fckeditor">
@@ -31,4 +33,26 @@
 			</fileset>
 		</copy>
+	</target>
+
+	<target name="clean-fckeditor"
+	        description="Creates a clean FCKeditor distribution"
+	>
+		<property name="fckeditor-tmp" location="fckeditor-tmp" />
+		<property name="fckeditor-basename" value="FCKeditor_2.6" />
+		<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/src/site/apt/demo.apt
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/apt/demo.apt	(revision 1969)
+++ /FCKeditor.Java/branches/2.4/src/site/apt/demo.apt	(revision 1970)
@@ -22,10 +22,19 @@
                                     ------------------------------
 
-Demo
+Demo Web Application
   
-  Put the file FCKeditor-[version].war in the webapps folder of your servlet container. 
-To run the demo, you just have to point yout browser at http://domainName.ext/fckeditor-java.
+  The demo is intended for novices, beginners and for everyone who wants to see
+  the FCKeditor in action right out of the box. It's also a good reference for 
+  you to see how all integral parts work together.
 
-  The upload and viewing of files is disabled by default. To enable this, you have to put a 
-file named 'fckeditor.properties' in the root of the classpath of fckeditor-java with the 
-following content: connector.sessionDataImpl=net.fckeditor.impl.BasicSessionData
+  It takes two simple steps to see the demo in action:
+
+   [[1]] Deploy the <<<fckeditor-java-demo-2.4-beta-1.war>>> in your servlet container 
+         or application server and make sure that the context is enabled.
+        
+   [[2]] Open up your browser and point to {{http://localhost:8080/fckeditor-java-demo-2.4-beta-1}}.
+         (assuming your server is running local at port 8080 for testing purposes)
+
+   []
+
+  You are now ready to explore the FCKeditor!
Index: /FCKeditor.Java/branches/2.4/src/site/apt/installation.apt
===================================================================
--- /FCKeditor.Java/branches/2.4/src/site/apt/installation.apt	(revision 1969)
+++ /FCKeditor.Java/branches/2.4/src/site/apt/installation.apt	(revision 1970)
@@ -109,4 +109,32 @@
   []
 
+* 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
+  zip file (1,25 MiB) to create a clean distribution zip file (984 KiB).
+
++----------------------------------------------------------------------------------+
+<target name="clean-fckeditor" description="Creates a clean FCKeditor distribution">
+  <!-- Adapt properties to your needs -->
+  <property name="fckeditor-tmp" location="fckeditor-tmp" />
+  <property name="fckeditor-basename" value="FCKeditor_2.6" />
+  <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>
++----------------------------------------------------------------------------------+
+
 A word on Logging
 
