Index: /CKReleaser/trunk/includes/docsprocessor.js
===================================================================
--- /CKReleaser/trunk/includes/docsprocessor.js	(revision 3026)
+++ /CKReleaser/trunk/includes/docsprocessor.js	(revision 3027)
@@ -6,5 +6,5 @@
 CKRELEASER.loadCode( 'tools/json/json2.js' );
 
-CKRELEASER.docsProcessor = function( )
+CKRELEASER.docsProcessor = function()
 {
 };
@@ -24,5 +24,7 @@
 			var jsdocPath = jsdocLocation.getAbsolutePath();
 
-			var o = { output : "" };
+			var o = {
+				output :""
+			};
 
 			var configurationCode = 'var configuration = ' + CKRELEASER.io.readFile( confLocation.getAbsolutePath() ) + '\n;';
@@ -32,10 +34,15 @@
 			var confDir = confLocation.getParent();
 
-			scope.configuration.t = confDir.replace( "\\", "/" ) + "/" + scope.configuration.t;
-			scope.configuration.d = confDir.replace( "\\", "/" ) + "/" + scope.configuration.d;
+			var f;
+
+			f = new File( confDir.replace( "\\", "/" ), scope.configuration.t );
+			scope.configuration.t = new String( f.getAbsolutePath() );
+			f = new File( confDir.replace( "\\", "/" ), scope.configuration.d );
+			scope.configuration.d = new String( f.getAbsolutePath() );
 
 			for ( var i = 0 ; i < scope.configuration._.length ; i++ )
 			{
-				scope.configuration._[i] = confDir.replace( "\\", "/" ) + "/" + scope.configuration._[i];
+				f = new File( confDir.replace( "\\", "/" ), scope.configuration._[i] );
+				scope.configuration._[i] = new String( f.getAbsolutePath() );
 			}
 
