]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Merge branch '0.8.x' of git@gitorious.org:+laconica-developers/laconica/dev into...
authorEvan Prodromou <evan@controlyourself.ca>
Fri, 19 Jun 2009 06:25:27 +0000 (23:25 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 19 Jun 2009 06:25:27 +0000 (23:25 -0700)
1  2 
scripts/twitterstatusfetcher.php

index d332fb5554194dfdfafbce8d38d981c65b3838b0,88605c3491b1bbdca23a3344510db2b9ce2a9ea4..20f42cef853e6feab9565d5fbbf5b8e5a284ebdf
@@@ -35,32 -35,16 +35,35 @@@ define('POLL_INTERVAL', 60); // in seco
  // Uncomment this to get useful logging
  define('SCRIPT_DEBUG', true);
  
 -require_once(INSTALLDIR . '/lib/common.php');
 -require_once(INSTALLDIR . '/lib/daemon.php');
 +require_once INSTALLDIR . '/lib/common.php';
 +require_once INSTALLDIR . '/lib/daemon.php';
 +
 +/**
 + * Fetcher for statuses from Twitter
 + *
 + * Fetches statuses from Twitter and inserts them as notices in local
 + * system.
 + *
 + * @category Twitter
 + * @package  Laconica
 + * @author   Zach Copley <zach@controlyourself.ca>
 + * @author   Evan Prodromou <evan@controlyourself.ca>
 + * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
 + * @link     http://laconi.ca/
 + */
  
+ // NOTE: an Avatar path MUST be set in config.php for this
+ // script to work: e.g.: $config['avatar']['path'] = '/laconica/avatar';
  class TwitterStatusFetcher extends Daemon
  {
 +    private $_children = array();
  
 -    private $children = array();
 +    /**
 +     * Name of this daemon
 +     *
 +     * @return string Name of the daemon.
 +     */
  
      function name()
      {