Add Julien C to author comments

This commit is contained in:
Zach Copley 2010-01-26 07:50:01 +00:00
parent 7a0a133401
commit d6a0dec765
3 changed files with 18 additions and 17 deletions

View File

@ -20,7 +20,8 @@
* @category Plugin * @category Plugin
* @package StatusNet * @package StatusNet
* @author Zach Copley <zach@status.net> * @author Zach Copley <zach@status.net>
* @copyright 2009 Control Yourself, Inc. * @author Julien C <chaumond@gmail.com>
* @copyright 2009-2010 Control Yourself, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://laconi.ca/ * @link http://laconi.ca/
*/ */
@ -41,6 +42,7 @@ define('TWITTERBRIDGEPLUGIN_VERSION', '0.9');
* @category Plugin * @category Plugin
* @package StatusNet * @package StatusNet
* @author Zach Copley <zach@status.net> * @author Zach Copley <zach@status.net>
* @author Julien C <chaumond@gmail.com>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://laconi.ca/ * @link http://laconi.ca/
* @link http://twitter.com/ * @link http://twitter.com/
@ -72,16 +74,13 @@ class TwitterBridgePlugin extends Plugin
$m->connect('twitter/authorization', $m->connect('twitter/authorization',
array('action' => 'twitterauthorization')); array('action' => 'twitterauthorization'));
$m->connect('settings/twitter', array('action' => 'twittersettings')); $m->connect('settings/twitter', array('action' => 'twittersettings'));
$m->connect('main/twitterlogin', array('action' => 'twitterlogin')); $m->connect('main/twitterlogin', array('action' => 'twitterlogin'));
return true; return true;
} }
/* /*
* Add a login tab for Twitter Connect * Add a login tab for 'Sign in with Twitter'
* *
* @param Action &action the current action * @param Action &action the current action
* *
@ -100,7 +99,6 @@ class TwitterBridgePlugin extends Plugin
return true; return true;
} }
/** /**
* Add the Twitter Settings page to the Connect Settings menu * Add the Twitter Settings page to the Connect Settings menu
* *

View File

@ -19,10 +19,11 @@
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* @category TwitterauthorizationAction * @category Plugin
* @package StatusNet * @package StatusNet
* @author Zach Copley <zach@status.net> * @author Zach Copley <zach@status.net>
* @copyright 2009 StatusNet, Inc. * @author Julien C <chaumond@gmail.com>
* @copyright 2009-2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/ * @link http://status.net/
*/ */
@ -41,9 +42,10 @@ require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php';
* (Foreign_link) between the StatusNet user and Twitter user and stores the * (Foreign_link) between the StatusNet user and Twitter user and stores the
* access token and secret in the link. * access token and secret in the link.
* *
* @category Twitter * @category Plugin
* @package StatusNet * @package StatusNet
* @author Zach Copley <zach@status.net> * @author Zach Copley <zach@status.net>
* @author Julien C <chaumond@gmail.com>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://laconi.ca/ * @link http://laconi.ca/
* *

View File

@ -2,7 +2,7 @@
/** /**
* StatusNet, the distributed open-source microblogging tool * StatusNet, the distributed open-source microblogging tool
* *
* Settings for Twitter integration * 'Sign in with Twitter' login page
* *
* PHP version 5 * PHP version 5
* *
@ -19,10 +19,11 @@
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* @category Settings * @category Login
* @package StatusNet * @package StatusNet
* @author Evan Prodromou <evan@status.net> * @author Julien Chaumond <chaumond@gmail.com>
* @copyright 2008-2009 StatusNet, Inc. * @author Zach Copley <zach@status.net>
* @copyright 2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/ * @link http://status.net/
*/ */
@ -34,12 +35,12 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php';
/** /**
* Settings for Twitter integration * Page for logging in with Twitter
* *
* @category Settings * @category Login
* @package StatusNet * @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @author Julien Chaumond <chaumond@gmail.com> * @author Julien Chaumond <chaumond@gmail.com>
* @author Zach Copley <zach@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/ * @link http://status.net/
* *