summaryrefslogtreecommitdiff
path: root/plugins/TwitterBridge
AgeCommit message (Collapse)Author
2010-08-03Merge branch '0.9.x' into 1.0.xEvan Prodromou
2010-08-02Remove the 'Enable Twitter import' checkbox from Twitter admin panel by ↵Brion Vibber
default; can be re-added with setting: addPlugin('TwitterBridge', array('adminImportControl' => true, ....)); Added a note on the label that it requires manual daemon setup. (Note that by default the admin panel won't be shown, so it's no biggie to be hiding this for now.)
2010-07-08Handle the case where a screen name has shifted from one Twitter ID to anotherZach Copley
2010-06-10Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 1.0.xBrion Vibber
Conflicts: lib/default.php lib/util.php plugins/UrlShortener/UrlShortenerPlugin.php (has been removed?)
2010-06-10Fix for compile error (misnamed function) in ↵Brion Vibber
4211b7f01188b4ab64407e32b380366a048102f4
2010-06-03Skip enqueueing to outgoing bridges on incoming remote messages. Twitter, ↵Brion Vibber
Facebook, RSSCloud, and OStatus checks were enqueued on these when they'd never do anything but churn the queue servers. Notice::isLocal() can replace a number of manual checks for $notice->is_local being LOCAL_PUBLIC or LOCAL_NONPUBLIC.
2010-05-27- Implement statusesHomeTimeline() in TwitterBasicAuthClient1.0.xZach Copley
- Make TwitterStatusFetcher pull home_timeline (includes retweets) instead of friends_timeline
2010-05-27Add implementation of API method home_timeline methodMarcel van der Boom
2010-05-19Locale switch cleanup: use common_switch_locale() which is safer for ↵Brion Vibber
updating gettext state. Also moved a few calls to reduce chance of hitting an exception before switching back. Should help with problems where xmppdaemon would get stuck in wrong locale.
2010-05-03Pull localization updates from 0.9.x branch0.9.2Brion Vibber
2010-04-14Merge branch 'master' into testingBrion Vibber
2010-04-14Ticket #2205: pass geo locations over Twitter bridge (will only be used if ↵Brion Vibber
enabled on the Twitter side)
2010-04-09i18n cleanup: fix bad string breakdown in license agreement checkbox on ↵Brion Vibber
registration form. Note that much of that form is duplicated several times for Twitter, Facebook, and OpenID registrations -- these need to be refactored to avoid having multiple out-of-sync copies of code and messages.
2010-04-05Some localization cleanup and doc to aid in customization:Brion Vibber
* added locale/en/LC_MESSAGES/statusnet.po to make it easier to start customizing English texts * added notes to locale/README about customizing and how to disable languages you haven't customized * renamed PO templates from *.po to *.pot to match general conventions and reduce confusion for people trying to find which file they're supposed to edit
2010-03-30Some fixes to make the twitterstatusfetcher behave better in a multi-site ↵Zach Copley
configuration
2010-03-18Minor syntax err in TwitterBridge README exampleZach Copley
2010-03-04Another typoroot
2010-03-05Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.xZach Copley
2010-03-05A better way to safely delete Foreign_linksZach Copley
2010-03-05Fix for errant deletion of all Twitter foreign_linksZach Copley
2010-03-04Merge commit 'origin/testing' into 0.9.xBrion Vibber
Conflicts: lib/action.php lib/adminpanelaction.php
2010-03-03Don't expose global Twitter consumer key and secret, because that would be ↵Zach Copley
idiotic.
2010-03-03Show global key and secret, if defined, in Twitter bridge admin panelZach Copley
2010-03-02Remove double word from Twitter bridge READMEZach Copley
2010-03-02- Have Twitter bridge check for a global key and secret if it can'tZach Copley
find one in the local config - Refuse to work at all if the consumer key and secret aren't set
2010-03-02Merge branch 'testing' of git@gitorious.org:statusnet/mainline into 0.9.xBrion Vibber
2010-03-01Some wording / spelling fixesZach Copley
2010-03-01- Make 'Sign in with Twitter' optionalZach Copley
- Updates to the Twitter bridge plugin README
2010-03-01Initial Twitter bridge admin panelZach Copley
2010-03-01Merge branch 'testing' of gitorious.org:statusnet/mainline into 0.9.xBrion Vibber
Conflicts: db/08to09.sql locale/statusnet.po scripts/update_po_templates.php
2010-02-17Twitter bridge - fix for Ticket #2192Zach Copley
2010-02-17Twitter bridge - fix for Ticket #2192Zach Copley
2010-02-17Better logging for Twitter bridge account linking processZach Copley
2010-02-17Better logging for Twitter bridge account linking processZach Copley
2010-02-16Upgrade Twitter bridge to use OAuth 1.0a. It's more secure, and allowsZach Copley
us to automatically send in a callback url instead of having to manually configure one for each StatusNet instance.
2010-02-16Upgrade Twitter bridge to use OAuth 1.0a. It's more secure, and allowsZach Copley
us to automatically send in a callback url instead of having to manually configure one for each StatusNet instance.
2010-02-15Use static class method for looking up Twitter userZach Copley
2010-02-15Use static class method for looking up Twitter userZach Copley
2010-02-15Twitter-bridge: lookup old foreign_user by primary key not urlZach Copley
2010-02-15Twitter-bridge: lookup old foreign_user by primary key not urlZach Copley
2010-02-15Better log msgs. Removed debugging statement.Zach Copley
2010-02-15Better log msgs. Removed debugging statement.Zach Copley
2010-02-15Fix for regression introduced with my last update to theZach Copley
TwitterStatusFetcher: the Twitter bridge was not saving a foreign user record when making a foreign link.
2010-02-15Fix for regression introduced with my last update to theZach Copley
TwitterStatusFetcher: the Twitter bridge was not saving a foreign user record when making a foreign link.
2010-02-06Delete old Twitter user record when user changes screen name instead of ↵Zach Copley
updating. Simpler.
2010-02-06Store Twitter screen_name, not name, for foreign_user.nickname when saving ↵Zach Copley
Twitter user.
2010-02-06Delete old Twitter user record when user changes screen name instead of ↵Zach Copley
updating. Simpler.
2010-02-05Store Twitter screen_name, not name, for foreign_user.nickname when saving ↵Zach Copley
Twitter user.
2010-02-04Make Twitter bridge truncate and add a link back to the original notice when ↵Zach Copley
notice content is > 140c
2010-02-04- Fix cache handling in TwitterStatusFetcherZach Copley
- Other stability fixes