summaryrefslogtreecommitdiff
path: root/plugins/OStatus/extlib
AgeCommit message (Collapse)Author
2010-03-24Updated Math_Biginteger from upstream - removing safe* workaroundsJames Walker
2010-03-18Remove hkit and do our own hcard parsingEvan Prodromou
Parsing hcards for the data we need wasn't hard enough to justify using hkit. It was dependent on a number of external systems (something to run tidy), and only could handle XHTML. We now parse HTML with the PHP dom libraries used elsewhere, and scrape out our own hcards. Seems to work nicer and faster and most of all works with Google Buzz profile URLs.
2010-03-12updating phpseclib to latest cvs - fixes a bunch of key generation issuesJames Walker
2010-03-12Adding Crypt library from http://phpseclib.sourceforge.net/James Walker
2010-03-12removing deprecated PEAR Crypt_RSAJames Walker
2010-02-25add hkit for hCard parsingEvan Prodromou
2010-02-22adding magic sig stuffJames Walker
2010-02-20drop no-longer-used XML_Feed_Parser extlib package from OStatus pluginBrion Vibber
2010-02-08First steps on converting FeedSub into the pub/sub basis for OStatus ↵Brion Vibber
communications: * renamed FeedSub plugin to OStatus * now setting avatar on subscriptions * general fixes for subscription * integrated PuSH hub to handle only user timelines on canonical ID url; sends updates directly * set $config['feedsub']['nohub'] = true to test w/ foreign feeds that don't have hubs (won't actually receive updates though) * a few bits of code documentation * HMAC support for verified distributions (safest if sub setup is on HTTPS) And a couple core changes: * minimizing HTML output for exceptions in API requests to aid in debugging * fix for rel=self link in apitimelineuser when id given This does not not yet include any of the individual subscription management (Salmon notifications for sub/unsub, etc) nor a nice UI for user subscriptions. Needs some further cleanup to treat posts as status updates instead of link references.