Index: /trunk/server/www/app/vendors/shells/suites.php
===================================================================
--- /trunk/server/www/app/vendors/shells/suites.php (revision 296)
+++ /trunk/server/www/app/vendors/shells/suites.php (revision 296)
@@ -0,0 +1,61 @@
+<?php
+/**
+ * Officeshots.org - Test your office documents in different applications
+ * Copyright (C) 2009 Stichting Lone Wolves
+ * Written by Sander Marechal <s.marechal@jejik.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+class SuitesShell extends Shell
+{
+	/**
+	 * Override startup() so no welcome message is printed
+	 */
+	public function startup() {}
+
+	/**
+	 * Main function. Print help and exit.
+	 */
+	public 	function main()
+	{
+		$this->help();
+	}
+
+	/**
+	 * Update the test suites
+	 */
+	public function sync()
+	{
+		$Testsuite = ClassRegistry::init('Testsuite');
+		$Testsuite->synchronise();
+	}
+
+	/**
+	 * Print shell help
+	 */
+	public function help()
+	{
+		$this->out('Commandline interface to the Officeshots test suites');
+		$this->hr();
+		$this->out("Usage: cake suites <command>");
+		$this->hr();
+		$this->out('Commands:');
+		$this->out("\n\tsync\n\t\tSynchronise all ODF testsuites.");
+		$this->out("\n\thelp\n\t\tShow this help");
+		$this->out('');
+	}
+}
+
+?>
Index: /trunk/server/www/app/vendors/shells/cron.php
===================================================================
--- /trunk/server/www/app/vendors/shells/cron.php (revision 293)
+++ /trunk/server/www/app/vendors/shells/cron.php (revision 296)
@@ -47,13 +47,4 @@
 
 	/**
-	 * Update the test suites
-	 */
-	public function syncTestsuites()
-	{
-		$Testsuite = ClassRegistry::init('Testsuite');
-		$Testsuite->synchronise();
-	}
-
-	/**
 	 * Print shell help
 	 */
