Index: stSwarm/.gitignore
===================================================================
--- /TestSwarm/.gitignore	(revision 4290)
+++ 	(revision )
@@ -1,1 +1,0 @@
-config.ini
Index: /TestSwarm/js/inject.js
===================================================================
--- /TestSwarm/js/inject.js	(revision 4290)
+++ /TestSwarm/js/inject.js	(revision 4291)
@@ -193,29 +193,4 @@
 		};
 	}
-	else if ( typeof CKTester != 'undefined' )
-	{
-		var fort = CKTester.fort;
-
-		fort.allComplete = function(){
-			submit({
-				fail : this.totalFailed,
-				error : 0,
-				total : this.totalPassed + this.totalFailed
-			});
-		};
-
-		var _runCell =  fort.runCell;
-		fort.runCell = function()
-		{
-			window.TestSwarm.heartbeat();
-			_runCell.apply( this, arguments );
-		};
-
-		window.TestSwarm.serialize = function(){
-			remove( 'tagsAutoComplete' );
-			remove( 'testFrame' );
-			trimSerialize();
-		};
-	}
 	function trimSerialize(doc) {
 		doc = doc || document;
Index: stSwarm/scripts/testswarm-ckeditor.pl.txt
===================================================================
--- /TestSwarm/scripts/testswarm-ckeditor.pl.txt	(revision 4290)
+++ 	(revision )
@@ -1,200 +1,0 @@
-#!/usr/bin/perl
-
-# CONFIGURE
-
-# The location of the TestSwarm that you're going to run against.
-
-my $SWARM = "http://testswarm.ckeditor.com";
-my $SWARM_INJECT = "/js/inject.js";
-
-# Your TestSwarm username.
-
-my $USER = "cksource";
-
-# Your authorization token.
-
-my $AUTH_TOKEN = "";
-
-# The maximum number of times you want the tests to be run.
-
-my $MAX_RUNS = 1;
-
-# The type of revision control system being used.
-# Currently "svn" or "git" are supported.
-
-my $RCS_TYPE = "svn";
-
-# The URL from which a copy will be checked out.
-
-my $RCS_URL = "http://svn.fckeditor.net/CKEditor/trunk/";
-
-# The directory in which the checkouts will occur.
-
-my $BASE_DIR = "CKEDITOR_CHECKOUT_PATH";
-
-# A script tag loading in the TestSwarm injection script will
-# be added at the bottom of the <head> in the following file.
-
-my $INJECT_FILE = "_tests/cktester/fort.html";
-
-# Any build commands that need to happen.
-
-#my $BUILD = "make jquery";
-
-# The name of the job that will be submitted
-# (pick a descriptive, but short, name to make it easy to search)
-
-# Note: The string {REV} will be replaced with the current
-#       commit number/hash.
-
-my $JOB_NAME = "CKEditor Commit #{REV}";
-
-# The browsers you wish to run against. Options include:
-#  - "all" all available browsers.
-#  - "popular" the most popular browser (99%+ of all browsers in use)
-#  - "current" the current release of all the major browsers
-#  - "gbs" the browsers currently supported in Yahoo's Graded Browser Support
-#  - "beta" upcoming alpha/beta of popular browsers
-#  - "popularbeta" the most popular browser and their upcoming releases
-
-my $BROWSERS = "popularbeta";
-
-# All the suites that you wish to run within this job
-# (can be any number of suites)
-
-my %SUITES = (cells=core);
-
-# Comment these out if you wish to define a custom set of SUITES above
-my $SUITE = "http://dev.jquery.com/~john/changeset/{REV}";
-sub BUILD_SUITES {
-	%SUITES = map { /(\w+).js$/; $1 => "$SUITE/test/?$1%20module"; } glob("test/unit/*.js");
-}
-
-########### NO NEED TO CONFIGURE BELOW HERE ############
-
-my $DEBUG = 1;
-my $curdate = time;
-my $co_dir = "tmp-$curdate";
-
-print "chdir $BASE_DIR\n" if ( $DEBUG );
-chdir( $BASE_DIR );
-
-# Check out a specific revision
-if ( $RCS_TYPE eq "svn" ) {
-	print "svn co $RCS_URL $co_dir\n" if ( $DEBUG );
-	`svn co $RCS_URL $co_dir`;
-} elsif ( $RCS_TYPE eq "git" ) {
-	print "git clone $RCS_URL $co_dir\n" if ( $DEBUG );
-	`git clone $RCS_URL $co_dir`;
-}
-
-if ( ! -e $co_dir ) {
-	die "Problem checking out source.";
-}
-
-print "chdir $co_dir\n" if ( $DEBUG );
-chdir( $co_dir );
-
-my $rev;
-
-# Figure out the revision of the checkout
-if ( $RCS_TYPE eq "svn" ) {
-	print "svn info | grep Revision\n" if ( $DEBUG );
-	$rev = `svn info | grep Revision`;
-	$rev =~ s/Revision: //;
-} elsif ( $RCS_TYPE eq "git" ) {
-	print "git log --abbrev-commit | head -1\n" if ( $DEBUG );
-	$rev = `git log --abbrev-commit | head -1`;
-	$rev =~ s/commit.*?(\w+).*$/$1/;
-}
-
-$rev =~ s/\s*//g;
-
-print "Revision: $rev\n" if ( $DEBUG );
-
-if ( ! $rev ) {
-	remove_tmp();
-	die "Revision information not found.";
-
-} elsif ( ! -e "../$rev" ) {
-	print "chdir $BASE_DIR\n" if ( $DEBUG );
-	chdir( $BASE_DIR );
-
-	print "rename $co_dir $rev\n" if ( $DEBUG );
-	rename( $co_dir, $rev );
-
-	print "chdir $rev\n" if ( $DEBUG );
-	chdir ( $rev );
-
-	if ( $BUILD ) {
-		print "$BUILD\n" if ( $DEBUG );
-		`$BUILD`;
-	}
-
-	if ( exists &BUILD_SUITES ) {
-		&BUILD_SUITES();
-	}
-
-	foreach my $file ( glob($INJECT_FILE) ) {
-		my $inject_file = `cat $file`;
-
-		# Inject the TestSwarm injection script into the test suite
-		$inject_file =~ s/<\/head>/<script>document.write("<scr" + "ipt src='$SWARM$SWARM_INJECT?" + (new Date).getTime() + "'><\/scr" + "ipt>");<\/script><\/head>/;
-
-		open( F, ">$file" );
-		print F $inject_file;
-		close( F );
-	}
-
-	my %props = (
-		"state" => "addjob",
-		"output" => "dump",
-		"user" => $USER,
-		"max" => $MAX_RUNS,
-		"job_name" => $JOB_NAME,
-		"browsers" => $BROWSERS,
-		"auth" => $AUTH_TOKEN
-	);
-
-	my $query = "";
-
-	foreach my $prop ( keys %props ) {
-		$query .= ($query ? "&" : "") . $prop . "=" . clean($props{$prop});
-	}
-
-	foreach my $suite ( sort keys %SUITES ) {
-		$query .= "&suites[]=" . clean($suite) .
-		          "&urls[]=" . clean($SUITES{$suite});
-	}
-
-	print "curl -d \"$query\" $SWARM\n" if ( $DEBUG );
-
-	my $results = `curl -d "$query" $SWARM`;
-
-	print "Results: $results\n" if ( $DEBUG );
-
-	if ( $results ) {
-		open( F, ">$rev/results.txt" );
-		print F "$SWARM$results";
-		close( F );
-
-	} else {
-		die "Job not submitted properly.";
-	}
-
-# Otherwise, give up and clean up
-} else {
-	remove_tmp();
-}
-
-sub remove_tmp {
-	chdir( $BASE_DIR );
-	`rm -rf $co_dir`;
-}
-
-sub clean {
-  my $str = shift;
-	$str =~ s/{REV}/$rev/g;
-	$str =~ s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
-	$str;
-}
Index: stSwarm/testswarm.iml
===================================================================
--- /TestSwarm/testswarm.iml	(revision 4290)
+++ 	(revision )
@@ -1,10 +1,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module relativePaths="true" type="JAVA_MODULE" version="4">
-  <component name="NewModuleRootManager" inherit-compiler-output="true">
-    <exclude-output />
-    <content url="file://$MODULE_DIR$" />
-    <orderEntry type="inheritedJdk" />
-    <orderEntry type="sourceFolder" forTests="false" />
-  </component>
-</module>
-
Index: stSwarm/testswarm.ipr
===================================================================
--- /TestSwarm/testswarm.ipr	(revision 4290)
+++ 	(revision )
@@ -1,194 +1,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project relativePaths="false" version="4">
-  <component name="BuildJarProjectSettings">
-    <option name="BUILD_JARS_ON_MAKE" value="false" />
-  </component>
-  <component name="CodeStyleSettingsManager">
-    <option name="PER_PROJECT_SETTINGS" />
-    <option name="USE_PER_PROJECT_SETTINGS" value="false" />
-  </component>
-  <component name="CompilerConfiguration">
-    <option name="DEFAULT_COMPILER" value="Javac" />
-    <option name="DEPLOY_AFTER_MAKE" value="0" />
-    <resourceExtensions>
-      <entry name=".+\.(properties|xml|html|dtd|tld)" />
-      <entry name=".+\.(gif|png|jpeg|jpg)" />
-    </resourceExtensions>
-    <wildcardResourcePatterns>
-      <entry name="?*.properties" />
-      <entry name="?*.xml" />
-      <entry name="?*.gif" />
-      <entry name="?*.png" />
-      <entry name="?*.jpeg" />
-      <entry name="?*.jpg" />
-      <entry name="?*.html" />
-      <entry name="?*.dtd" />
-      <entry name="?*.tld" />
-      <entry name="?*.ftl" />
-    </wildcardResourcePatterns>
-  </component>
-  <component name="CopyrightManager" default="">
-    <module2copyright />
-  </component>
-  <component name="DependencyValidationManager">
-    <option name="SKIP_IMPORT_STATEMENTS" value="false" />
-  </component>
-  <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
-  <component name="InspectionProjectProfileManager">
-    <option name="PROJECT_PROFILE" value="Project Default" />
-    <option name="USE_PROJECT_PROFILE" value="true" />
-    <version value="1.0" />
-    <profiles>
-      <profile version="1.0" is_locked="false">
-        <option name="myName" value="Project Default" />
-        <option name="myLocal" value="false" />
-        <inspection_tool class="AntDuplicateImportedTargetsInspection" enabled="false" level="WARNING" enabled_by_default="false" />
-        <inspection_tool class="AntDuplicateTargetsInspection" enabled="false" level="ERROR" enabled_by_default="false" />
-        <inspection_tool class="AntMissingPropertiesFileInspection" enabled="false" level="ERROR" enabled_by_default="false" />
-        <inspection_tool class="CssInvalidElementInspection" enabled="false" level="ERROR" enabled_by_default="false" />
-        <inspection_tool class="CssInvalidImportInspection" enabled="false" level="WARNING" enabled_by_default="false" />
-        <inspection_tool class="CssInvalidShorthandPropertyValue" enabled="false" level="ERROR" enabled_by_default="false" />
-        <inspection_tool class="CssNegativeValueInspection" enabled="false" level="ERROR" enabled_by_default="false" />
-        <inspection_tool class="CssNoGenericFontName" enabled="false" level="WARNING" enabled_by_default="false" />
-        <inspection_tool class="CssOptimizeSimilarPropertiesInspection" enabled="false" level="INFO" enabled_by_default="false" />
-        <inspection_tool class="CssOverwrittenProperties" enabled="false" level="WARNING" enabled_by_default="false" />
-        <inspection_tool class="CssRgbFunctionInspection" enabled="false" level="ERROR" enabled_by_default="false" />
-        <inspection_tool class="CssUnitlessNumber" enabled="false" level="WARNING" enabled_by_default="false" />
-        <inspection_tool class="CssUnknownProperty" enabled="false" level="WARNING" enabled_by_default="false">
-          <option name="myCustomPropertiesEnabled" value="false" />
-          <option name="myCustomPropertiesList">
-            <value>
-              <list size="0" />
-            </value>
-          </option>
-        </inspection_tool>
-        <inspection_tool class="CssUnusedSymbolInspection" enabled="false" level="WARNING" enabled_by_default="false" />
-        <inspection_tool class="CyclomaticComplexityJS" enabled="true" level="WARNING" enabled_by_default="true">
-          <option name="m_limit" value="10" />
-        </inspection_tool>
-        <inspection_tool class="FunctionWithMultipleLoopsJS" enabled="true" level="WARNING" enabled_by_default="true" />
-        <inspection_tool class="FunctionWithMultipleReturnPointsJS" enabled="true" level="WARNING" enabled_by_default="true" />
-        <inspection_tool class="NestingDepthJS" enabled="true" level="WARNING" enabled_by_default="true">
-          <option name="m_limit" value="5" />
-        </inspection_tool>
-        <inspection_tool class="ParametersPerFunctionJS" enabled="true" level="WARNING" enabled_by_default="true">
-          <option name="m_limit" value="5" />
-        </inspection_tool>
-        <inspection_tool class="ReuseOfLocalVariableJS" enabled="true" level="WARNING" enabled_by_default="true" />
-        <inspection_tool class="StatementsPerFunctionJS" enabled="true" level="WARNING" enabled_by_default="true">
-          <option name="m_limit" value="30" />
-        </inspection_tool>
-        <inspection_tool class="ThreeNegationsPerFunctionJS" enabled="true" level="WARNING" enabled_by_default="true" />
-        <inspection_tool class="UNUSED_IMPORT" enabled="false" level="WARNING" enabled_by_default="false" />
-        <inspection_tool class="W3CssValidation" enabled="false" level="WARNING" enabled_by_default="false">
-          <option name="myCssVersion" value="css3" />
-        </inspection_tool>
-      </profile>
-    </profiles>
-    <list size="4">
-      <item index="0" class="java.lang.String" itemvalue="INFO" />
-      <item index="1" class="java.lang.String" itemvalue="WARNING" />
-      <item index="2" class="java.lang.String" itemvalue="ERROR" />
-      <item index="3" class="java.lang.String" itemvalue="SERVER PROBLEM" />
-    </list>
-  </component>
-  <component name="JavadocGenerationManager">
-    <option name="OUTPUT_DIRECTORY" />
-    <option name="OPTION_SCOPE" value="protected" />
-    <option name="OPTION_HIERARCHY" value="true" />
-    <option name="OPTION_NAVIGATOR" value="true" />
-    <option name="OPTION_INDEX" value="true" />
-    <option name="OPTION_SEPARATE_INDEX" value="true" />
-    <option name="OPTION_DOCUMENT_TAG_USE" value="false" />
-    <option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" />
-    <option name="OPTION_DOCUMENT_TAG_VERSION" value="false" />
-    <option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="true" />
-    <option name="OPTION_DEPRECATED_LIST" value="true" />
-    <option name="OTHER_OPTIONS" value="" />
-    <option name="HEAP_SIZE" />
-    <option name="LOCALE" />
-    <option name="OPEN_IN_BROWSER" value="true" />
-  </component>
-  <component name="ProjectDetails">
-    <option name="projectName" value="testswarm" />
-  </component>
-  <component name="ProjectFileVersion" converted="true" />
-  <component name="ProjectKey">
-    <option name="state" value="project://D:\workspaces\2009\testswarm\testswarm.ipr" />
-  </component>
-  <component name="ProjectModuleManager">
-    <modules>
-      <module fileurl="file://$PROJECT_DIR$/testswarm.iml" filepath="$PROJECT_DIR$/testswarm.iml" />
-    </modules>
-  </component>
-  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_5" assert-keyword="true" jdk-15="true" project-jdk-name="IDEA 10372 (1)" project-jdk-type="IDEA JDK">
-    <output url="file://$PROJECT_DIR$/out" />
-  </component>
-  <component name="SvnBranchConfigurationManager">
-    <option name="mySupportsUserInfoFilter" value="true" />
-  </component>
-  <component name="VcsDirectoryMappings">
-    <mapping directory="" vcs="Git" />
-  </component>
-  <component name="masterDetails">
-    <option name="states">
-      <map>
-        <entry key="ProjectJDKs.UI">
-          <value>
-            <UIState>
-              <option name="proportions">
-                <SplitterProportionsDataImpl>
-                  <option name="proportions">
-                    <list>
-                      <option value="0.2" />
-                    </list>
-                  </option>
-                </SplitterProportionsDataImpl>
-              </option>
-              <option name="lastEditedConfigurable" value="1.6" />
-            </UIState>
-          </value>
-        </entry>
-        <entry key="ScopeChooserConfigurable.UI">
-          <value>
-            <UIState>
-              <option name="proportions">
-                <SplitterProportionsDataImpl />
-              </option>
-            </UIState>
-          </value>
-        </entry>
-      </map>
-    </option>
-    <option name="myStates">
-      <map>
-        <entry key="ProjectJDKs.UI">
-          <value>
-            <UIState>
-              <option name="proportions">
-                <SplitterProportionsDataImpl>
-                  <option name="proportions">
-                    <list>
-                      <option value="0.2" />
-                    </list>
-                  </option>
-                </SplitterProportionsDataImpl>
-              </option>
-              <option name="lastEditedConfigurable" value="1.6" />
-            </UIState>
-          </value>
-        </entry>
-        <entry key="ScopeChooserConfigurable.UI">
-          <value>
-            <UIState>
-              <option name="proportions">
-                <SplitterProportionsDataImpl />
-              </option>
-            </UIState>
-          </value>
-        </entry>
-      </map>
-    </option>
-  </component>
-</project>
-
