Index: /CKTester/fort.js
===================================================================
--- /CKTester/fort.js	(revision 4124)
+++ /CKTester/fort.js	(revision 4125)
@@ -32,4 +32,5 @@
 		defaultProfilePath : '../profile.js',
 		defaultVariables : '../variables.js',
+		defaultRunnerRoot : '/cktester',
 
 		init : function()
@@ -56,5 +57,5 @@
 				variables = getUrlParam( 'variables' ) || this.defaultVariables,
 				criterias = ( getUrlParam( 'cells' ) || '' ).split( ',' ),
-				// Single cell if cell absolute path is specified as criteria.   
+				// Single cell if cell absolute path is specified as criteria.
 				singleCell = criterias[ 0 ] && criterias[ 0 ].indexOf( '://' ) != -1,
 					// Force cell path as relative to fort root.
@@ -72,5 +73,9 @@
 				!singleCell && ( this.criterias = criterias );
 				// Ignore the profile cell definition, if only with the specified single cell .
-				singleCell && ( this.profile.cells = [ [ cellPath, cellTags ] ] );
+				if ( singleCell )
+				{
+					this.profile.cells = [ [ cellPath, cellTags ] ];
+					this.profile.singleCell = true;
+				}
 
 				this.init();
@@ -99,5 +104,5 @@
 					document.location.search = '';
 				};
-			
+
 			tagsAutoComp.delimChar = ' ';
 			tagsAutoComp.typeAhead = true;
@@ -132,5 +137,7 @@
 					cell =
 					{
-						path : cell [ 0 ],
+						path : profile.singleCell ?
+						        cell[ 0 ]
+								: this.getRelativePath( this.defaultRunnerRoot, cell [ 0 ] ),
 						tags : cell[ 1 ] || [],
 						environment : cell[ 2 ] || []
