Index: /FCKeditor.Java/trunk/src/changes/changes.xml
===================================================================
--- /FCKeditor.Java/trunk/src/changes/changes.xml	(revision 3076)
+++ /FCKeditor.Java/trunk/src/changes/changes.xml	(revision 3077)
@@ -7,5 +7,4 @@
 	<body>
 		<release version="2.5-SNAPSHOT" date="in SVN" description="Decoupling of the server-side storage, localization of user responses and other minor enhancements.">
-			<!-- <action type="update" issue="2581">Rename UserPathBuilder interface to something more appropriate</action> -->
 			<action dev="mosipov" type="add" issue="2743">Add getUserFilesAbsolutePath to UserPathBuilder interface</action>
 			<action dev="mosipov" type="remove" issue="2618">Extract ImageInfo from java-core.jar</action>
@@ -19,5 +18,5 @@
 			<action dev="mosipov" type="add" issue="2382">add method isCreateFolderEnabled to UserAction interface</action>
 			<action dev="mosipov" type="add" issue="2361">Provide interface for locale resolution</action>
-			<!-- <action dev="th-schwarz" type="add" issue="28">Implement Interface for File Browser Connector and Quick Uploader</action> -->
+			<action dev="th-schwarz" type="add" issue="28">Implement Interface for File Browser Connector and Quick Uploader</action>
 		</release>
 		<release version="2.4.1" date="2008-10-13"
Index: /FCKeditor.Java/trunk/src/site/apt/connector.apt
===================================================================
--- /FCKeditor.Java/trunk/src/site/apt/connector.apt	(revision 3076)
+++ /FCKeditor.Java/trunk/src/site/apt/connector.apt	(revision 3077)
@@ -39,12 +39,15 @@
   Existing, ready-to-go implementations:
 
+   * {{{java-core/apidocs/net/fckeditor/connector/impl/AbstractLocalFileSystemConnector.html}<<<net.fckeditor.connector.impl.AbstractLocalFileSystemConnector>>>}} (abstract class):
+     A standard stub implementation of a connector according to the 
+     {{{http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Server_Side_Integration#The_Commands}Server Side Integration}}
+     It may serve you as a skeleton for your implementation as it does for the
+     two upcoming. 
+   
    * {{{java-core/apidocs/net/fckeditor/connector/impl/ContextConnector.html}<<<net.fckeditor.connector.impl.ContextConnector>>>}} (default):
-     bla bla..
+     A connector serving all files from the current context.
 
    * {{{java-core/apidocs/net/fckeditor/connector/impl/LocalConnector.html}<<<net.fckeditor.connector.impl.LocalConnector>>>}}:
-     bla bla..
-
-   * {{{java-core/apidocs/net/fckeditor/connector/impl/AbstracLocalFileSystemConnector.html}<<<net.fckeditor.connector.impl.AbstracLocalFileSystemConnector>>>}} (abstract class):
-     bla bla..
+     A connector serving all files from any local path.
 
    []
@@ -65,3 +68,7 @@
 * Configuration
 
-  lala
+  A connector (at least a predefined one) interacts very closely with a <<<UserPathBuilder>>>
+  implementation, great care must be excercised while choosing an implementation
+  and userpath properties configuration. An improper configuration may result 
+  in erroneous and undefined behavior. See {{{userpathbuilder.html}UserPathBuilder}}
+  for more details.
Index: /FCKeditor.Java/trunk/src/site/apt/ext_overview.apt
===================================================================
--- /FCKeditor.Java/trunk/src/site/apt/ext_overview.apt	(revision 3076)
+++ /FCKeditor.Java/trunk/src/site/apt/ext_overview.apt	(revision 3077)
@@ -30,11 +30,11 @@
   your needs:
 
+  * <<UserAction>>: Gives you full control over any action the user can do in the
+    File Browser.
+  
+  * <<UserPathBuilder>>: Enables you to construct a user-dependent file path.
+  
   * <<Connector>>: Gives you the ability to handle server-side connector requests
     the way you want.
-
-  * <<UserAction>>: Gives you full control over any action the user can do in the
-    File Browser.
-
-  * <<UserPathBuilder>>: Enables you to construct a user-dependent file path.
 
   * <<Localization>>: Enables you to localize any message returned by tags and
@@ -42,4 +42,5 @@
 
   []
+  
   Please read the extending parts carefully if you intend to deploy the FCKeditor
   in a particular system!
Index: /FCKeditor.Java/trunk/src/site/apt/userpathbuilder.apt
===================================================================
--- /FCKeditor.Java/trunk/src/site/apt/userpathbuilder.apt	(revision 3076)
+++ /FCKeditor.Java/trunk/src/site/apt/userpathbuilder.apt	(revision 3077)
@@ -22,5 +22,5 @@
 				--------------------------------
 
-UserPath Builder
+Userpath builder
 
   The integration pack offers you control over the path under which files from the
@@ -84,7 +84,7 @@
   getter methods and return whatever makes sense to you.
   
-    [Attention:] Every Connector relies on a specific UserPathBuilder implementation
+    [Attention:] Every Connector relies on a specific <<<UserPathBuilder>>> implementation
                  because it serves the paths the way the connector needs them.
                  Make sure that your implemention is accompanied by the correct
                  Connector. E.g. using the <<<ContextPathBuilder>>> with the <<<LocalConnector>>>
-                 would result in erroneous and undefined behavior. 
+                 may result in erroneous and undefined behavior. 
Index: /FCKeditor.Java/trunk/src/site/site.xml
===================================================================
--- /FCKeditor.Java/trunk/src/site/site.xml	(revision 3076)
+++ /FCKeditor.Java/trunk/src/site/site.xml	(revision 3077)
@@ -35,7 +35,7 @@
 		<menu name="Extending the Library">
 			<item name="Overview" href="/ext_overview.html" />
-			<item name="Connector" href="/connector.html" />
 			<item name="UserAction" href="/useraction.html" />
 			<item name="UserPathBuilder" href="/userpathbuilder.html" />
+			<item name="Connector" href="/connector.html" />
 			<item name="Localization" href="/localization.html" />
 		</menu>
