Copied: trunk/modules/writer (from rev 144, trunk/programs/writer) ( => )
Deleted: trunk/run.php
===================================================================
--- trunk/run.php 2007-06-11 12:23:40 UTC (rev 145)
+++ trunk/run.php 2007-06-11 13:19:18 UTC (rev 146)
@@ -1,42 +0,0 @@
-#!/usr/bin/php
-<?php
-/**
- * run.php - this is a simple script to run callicore
- *
- * this can be run via the shebang line on *nix systems - windows users can either
- * associate the file extension with the php cli or create a shortcut
- * C:\WINDOWS\system32\cmd.exe /k "C:\Program Files\php-gtk\php.exe" run.php (for dos window)
- * or "C:\Program Files\php-gtk\php-win.exe" run.php (your php cli locations may vary)
- * you should pass an arg that is the name of the callicore program you want to run
- * e.g. run.php writer
- *
- * You do not have to use this script to run a callicore program, you can write
- * your own, just use CC::run('name of program'); to start callicore
- *
- * This is released under the GPL, see docs/gpl.txt for details
- *
- * @author Elizabeth Smith <emsmith@callicore.net>
- * @copyright Elizabeth Smith (c)2006
- * @link http://callicore.net/desktop
- * @license http://www.opensource.org/licenses/gpl-license.php GPL
- * @version $Id$
- * @since Php 5.2.0
- * @package callicore
- * @subpackage desktop
- * @category bin
- * @filesource
- */
-
-error_reporting(E_ALL | E_STRICT);
-
-include (dirname(__FILE__) . '/lib/cc.class.php');
-
-// This particular script checks argv for a program name
-if (isset($argv) && isset($argv[1]))
-{
- $program = (string) $argv[1];
-}
-
-CC::run($program);
-Gtk::main();
-?>
\ No newline at end of file