]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix have_options arguments
authorEvan Prodromou <evan@controlyourself.ca>
Mon, 22 Jun 2009 23:48:04 +0000 (16:48 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Mon, 22 Jun 2009 23:48:04 +0000 (16:48 -0700)
scripts/facebookqueuehandler.php
scripts/jabberqueuehandler.php
scripts/ombqueuehandler.php
scripts/pingqueuehandler.php
scripts/publicqueuehandler.php
scripts/smsqueuehandler.php
scripts/triminboxes.php
scripts/twitterqueuehandler.php

index f01e45a3b4346e268750fd4d29a3cbc50954a1bd..05a35577fea71b87f34a35f3746b6a0c68e9c8d7 100755 (executable)
@@ -20,8 +20,8 @@
 
 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
 
-$shortoptions = 'i';
-$longoptions = array('id');
+$shortoptions = 'i::';
+$longoptions = array('id::');
 
 $helptext = <<<END_OF_FACEBOOK_HELP
 Daemon script for pushing new notices to Facebook.
@@ -59,8 +59,8 @@ class FacebookQueueHandler extends QueueHandler
 
 }
 
-if (have_option('-i')) {
-    $id = get_option_value('-i');
+if (have_option('i')) {
+    $id = get_option_value('i');
 } else if (have_option('--id')) {
     $id = get_option_value('--id');
 } else if (count($args) > 0) {
index be0f187a98012a72bd56652cf2d46bb112518b7e..a449932364d70bcf4585cf4a613911cfbc0d749e 100755 (executable)
 
 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
 
-$shortoptions = 'r';
-$longoptions = array('resource');
+$shortoptions = 'r::';
+$longoptions = array('resource::');
 
 $helptext = <<<END_OF_JABBER_HELP
 Daemon script for pushing new notices to Jabber users.
 
-    -r --resource       Jabber Resource ID
+    -r --resource       Jabber Resource ID (default to config)
 
 END_OF_JABBER_HELP;
 
@@ -63,8 +63,8 @@ if (common_config('xmpp','enabled')==false) {
     exit();
 }
 
-if (have_option('-r')) {
-    $resource = get_option_value('-r');
+if (have_option('r')) {
+    $resource = get_option_value('r');
 } else if (have_option('--resource')) {
     $resource = get_option_value('--resource');
 } else if (count($args) > 0) {
index deb5f8d7d29dd5be7568c4307b52ff4d63cd9722..1587192b6fb5b9c1532e6af18411fa76dbc44ba4 100755 (executable)
@@ -20,8 +20,8 @@
 
 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
 
-$shortoptions = 'i';
-$longoptions = array('id');
+$shortoptions = 'i::';
+$longoptions = array('id::');
 
 $helptext = <<<END_OF_OMB_HELP
 Daemon script for pushing new notices to OpenMicroBlogging subscribers.
@@ -72,8 +72,8 @@ class OmbQueueHandler extends QueueHandler
     }
 }
 
-if (have_option('-i')) {
-    $id = get_option_value('-i');
+if (have_option('i')) {
+    $id = get_option_value('i');
 } else if (have_option('--id')) {
     $id = get_option_value('--id');
 } else if (count($args) > 0) {
index 1bde4bc5fd5c30211ac33e3e47d14a61cd7bb05f..23678ea4b5278f16e6dd0f69c93e0b340931fe56 100644 (file)
@@ -20,8 +20,8 @@
 
 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
 
-$shortoptions = 'i';
-$longoptions = array('id');
+$shortoptions = 'i::';
+$longoptions = array('id::');
 
 $helptext = <<<END_OF_PING_HELP
 Daemon script for pushing new notices to ping servers.
@@ -54,8 +54,8 @@ class PingQueueHandler extends QueueHandler {
        }
 }
 
-if (have_option('-i')) {
-    $id = get_option_value('-i');
+if (have_option('i')) {
+    $id = get_option_value('i');
 } else if (have_option('--id')) {
     $id = get_option_value('--id');
 } else if (count($args) > 0) {
index c10c679108974b3666f9557432bedf419fe933ba..58ecc1745eb8d7b7a181f4fe5cc7b6a0440e6c56 100755 (executable)
@@ -20,8 +20,8 @@
 
 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
 
-$shortoptions = 'r';
-$longoptions = array('resource');
+$shortoptions = 'r::';
+$longoptions = array('resource::');
 
 $helptext = <<<END_OF_PUBLIC_HELP
 Daemon script for pushing new notices to public XMPP subscribers.
@@ -61,8 +61,8 @@ if (common_config('xmpp','enabled')==false) {
     exit();
 }
 
-if (have_option('-r')) {
-    $resource = get_option_value('-r');
+if (have_option('r')) {
+    $resource = get_option_value('r');
 } else if (have_option('--resource')) {
     $resource = get_option_value('--resource');
 } else if (count($args) > 0) {
index c793ee550b24228fdf0100c8fbd99387acad219c..94b846d987bc22f3a6fdb7016c58ef7b73f5c24b 100755 (executable)
@@ -58,8 +58,8 @@ class SmsQueueHandler extends QueueHandler
     }
 }
 
-if (have_option('-i')) {
-    $id = get_option_value('-i');
+if (have_option('i')) {
+    $id = get_option_value('i');
 } else if (have_option('--id')) {
     $id = get_option_value('--id');
 } else if (count($args) > 0) {
index 5575dd4fc1251e0def93c554bd7b66ba3cc47a5f..b2135d6825ee2f52eccbe481a8c56cbfa3958861 100644 (file)
@@ -35,8 +35,8 @@ require_once INSTALLDIR.'/scripts/commandline.inc';
 
 $id = null;
 
-if (have_option('-u')) {
-    $id = get_option_value('-u');
+if (have_option('u')) {
+    $id = get_option_value('u');
 } else if (have_option('--start-user-id')) {
     $id = get_option_value('--start-user-id');
 } else {
index 826e12c75c14ad0dcec58871551ccafd4640111c..00e735d983610b99bf689c8a8bc740cbf33af1ae 100755 (executable)
@@ -59,8 +59,8 @@ class TwitterQueueHandler extends QueueHandler
 
 }
 
-if (have_option('-i')) {
-    $id = get_option_value('-i');
+if (have_option('i')) {
+    $id = get_option_value('i');
 } else if (have_option('--id')) {
     $id = get_option_value('--id');
 } else if (count($args) > 0) {