summaryrefslogtreecommitdiff
path: root/plugins/TwitterBridge
AgeCommit message (Collapse)Author
2010-11-05Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-11-02Pull out the 'tweetctl' queue for now; these should go over control signals, ↵Brion Vibber
and actual handling isn't implemented yet anyway.
2010-11-02fakestream.php can now take --all option to pull the latest messages from ↵Brion Vibber
multiple locally-authed accounts when generating simulated sitestreams info
2010-11-02fakestream.php: script to build an emulated Twitter Site Stream from live ↵Brion Vibber
Twitter data, for testing.
2010-11-02Allow custom apiroot for site streams testing on streamtestBrion Vibber
2010-10-29Work in progress on twitter import daemonBrion Vibber
2010-10-29Fixups for twitter streaming daemonBrion Vibber
2010-10-29Work in progress on site streams-aware TwitterDaemonBrion Vibber
2010-10-29TweetInQueueHandler: run incoming tweets through the queues to keep the ↵Brion Vibber
Twitter streaming daemon clear.
2010-10-29Fix a couple 'continue's from old looping code in Twitter importer (-> ↵Brion Vibber
return null)
2010-10-28Work in progress: starting on new TwitterDaemon using the Site Streams API ↵Brion Vibber
-- code is incomplete, pulling bits from streamtest.php pending a chance to test the actual site-streams mode
2010-10-28Merge branch '0.9.x' into twitstreamBrion Vibber
2010-10-28Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-10-26Merge branch '0.9.x' into twitstreamBrion Vibber
2010-10-23Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-10-22Fix for 140-char replies being unexpectedly cropped when bridged to Twitter.Brion Vibber
This drops the '@' -> ' @' hack for CURL meta-chars in outgoing Twitter bridge, added in commit 04b95c25 back in the day. The Twitter bridge has since been switched from using direct CURL calls to using HTTPClient, which even with the CURL backend enabled doesn't trigger this issue, as POST parameters are formatted directly. Prepending the space before we did the message cropping was leading to 140-char messages getting cropped unnecessarily, which was confusing: Examples of broken messages: http://identi.ca/notice/57172587 vs http://twitter.com/marjoleink/status/28398050691 http://identi.ca/notice/57172878 vs http://twitter.com/marjoleink/status/28398492563
2010-10-18Localisation updates from http://translatewiki.netSiebrand Mazeland
2010-10-13Merge branch '0.9.x' into twitstreamBrion Vibber
2010-10-09Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-10-08Merge branch 'fatals' into 0.9.xBrion Vibber
2010-10-08Check for Twitter foreign link actually existing before trying to delete it; ↵Brion Vibber
friendlier error message in TwittersettingsAction
2010-10-05Prelim --all mode on streamtest.php to use site streams; doesn't use the ↵Brion Vibber
destination user for import yet, and not actually tested yet until I'm whitelisted for the beta. :)
2010-10-05Fix up Twitter JSON formatting to be consistent between the polling and ↵Brion Vibber
streaming API interfaces; basic stream tester can now import your notices (ooooh)
2010-10-05Split the guts of Twitter status -> notice import from twitterstatusfetcher ↵Brion Vibber
daemon into TwitterImport class which can be called from other places, letting us reuse code for the streaming API.
2010-10-05Cleanup on input pathBrion Vibber
2010-10-05Buncha cleanupBrion Vibber
2010-10-05Clean up event handling a bitBrion Vibber
2010-10-05Twitter streaming API reader: Cleanup input handling & split from HTTP ↵Brion Vibber
headers to body
2010-10-04Initial stub code for pulling data from Twitter's User Streams and Site ↵Brion Vibber
Streams interfaces. This should allow us to make a much more efficient background importer which can use a relatively small number of connections getting push data for either a single user or for many users with credentials on the site.
2010-10-03Localisation updates from http://translatewiki.netSiebrand Mazeland
2010-10-01Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-09-30Always specify UTF-8 targt charset for html_entity_decode(); default is ↵Brion Vibber
8-bit ISO-8859-1 which causes things to break when we later pass them through things that expect to work with UTF-8. For instance, running through preg_replace() with the /u option results in NULL, leading to problems with OStatus and SubMirror generating their plaintext versions and doing length-cropping.
2010-09-28Localisation updates from http://translatewiki.netSiebrand Mazeland
* first export of L10n for languages other than English. Could use some testing/QA.
2010-09-23Update POT files for plugins.Siebrand Mazeland
2010-09-21Merge remote branch 'gitorious/0.9.x' into 0.9.xEvan Prodromou
2010-09-19Update pot files for plugins.Siebrand Mazeland
2010-09-19* Remove trailing newline in e-mail message.Siebrand Mazeland
* Superfluous whitespace removed.
2010-09-19Update pot files for plugins.Siebrand Mazeland
2010-09-19* i18n/L10n updates.Siebrand Mazeland
* add FIXMEs for bad i18n. * add translator hints.
2010-09-18Remove superfluous whitespaceSiebrand Mazeland
2010-09-18* i18n/L10n updatesSiebrand Mazeland
* whitespace updates.
2010-09-15Merge remote branch 'gitorious/0.9.x' into 0.9.xEvan Prodromou
2010-09-15Update/add pot files for plugins.Siebrand Mazeland
2010-09-10use capturing parens for matching at-mentions in twitterstatusfetcherEvan Prodromou
2010-09-10make our own twitter links if Twitter doesn't give us entitiesEvan Prodromou
2010-09-08change the event we use for deleting a linked status on TwitterEvan Prodromou
2010-09-08move notice_to_status initialization code to run-once scriptEvan Prodromou
2010-09-07text substitution is Unicode-aware for twitterstatusfetcherEvan Prodromou
2010-09-07Fix pkeyget callEvan Prodromou
Fix the pkeyget call in Twitter_synch_Status
2010-09-07staticGet -> pkeyGet in Twitter_synch_statusEvan Prodromou