diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-20 14:58:47 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-20 14:58:47 -0700 |
commit | 198afa0a1d61c4db2cf6b66e5801af506462ab9b (patch) | |
tree | d42ba4a5afae56af975ebddc784c93be820cbcdb /scripts/twitterqueuehandler.php | |
parent | 45430d2b3b952dda31d232c2726e5980a7e6e56a (diff) |
change scripts to take server and path from commandline
Diffstat (limited to 'scripts/twitterqueuehandler.php')
-rwxr-xr-x | scripts/twitterqueuehandler.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/scripts/twitterqueuehandler.php b/scripts/twitterqueuehandler.php index 7da4f1e20..8c8a59d6a 100755 --- a/scripts/twitterqueuehandler.php +++ b/scripts/twitterqueuehandler.php @@ -27,6 +27,11 @@ if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) { define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); define('LACONICA', true); +// Preset the server at the command line + +$server = ($argc > 2) ? $argv[2] : null; +$path = ($argc > 3) ? $argv[3] : null; + require_once(INSTALLDIR . '/lib/common.php'); require_once(INSTALLDIR . '/lib/twitter.php'); require_once(INSTALLDIR . '/lib/queuehandler.php'); @@ -35,12 +40,12 @@ set_error_handler('common_error_handler'); class TwitterQueueHandler extends QueueHandler { - + function transport() { return 'twitter'; } - + function start() { $this->log(LOG_INFO, "INITIALIZE"); @@ -51,7 +56,7 @@ class TwitterQueueHandler extends QueueHandler { return broadcast_twitter($notice); } - + function finish() { } |