]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
synctwitterfriends.php uses commandline.inc
authorEvan Prodromou <evan@controlyourself.ca>
Mon, 22 Jun 2009 23:31:13 +0000 (16:31 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Mon, 22 Jun 2009 23:31:13 +0000 (16:31 -0700)
scripts/synctwitterfriends.php

index 7f418894e68fa505fdd629cf0811c373b799901f..fe53ff44d634fa92895dd00c34ccc804fa245295 100755 (executable)
  * along with this program.     If not, see <http://www.gnu.org/licenses/>.
  */
 
-// Abort if called from a web server
-if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
-    print "This script must be run from the command line\n";
-    exit();
-}
-
 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
-define('LACONICA', true);
 
 // Uncomment this to get useful console output
-//define('SCRIPT_DEBUG', true);
 
-// Preset the server at the command line
+$helptext = <<<END_OF_TWITTER_HELP
+Batch script for synching local friends with Twitter friends.
 
-$server = ($argc > 1) ? $argv[1] : null;
-$path   = ($argc > 2) ? $argv[2] : null;
+END_OF_TWITTER_HELP;
 
-require_once(INSTALLDIR . '/lib/common.php');
+require_once INSTALLDIR.'/scripts/commandline.inc';
 
 // Make a lockfile
 $lockfilename = lockFilename();