summaryrefslogtreecommitdiff
path: root/lib/activitycontext.php
AgeCommit message (Collapse)Author
2010-12-05Convert Notice::asAtomEntry() to use Notice::asActivity() and ↵Evan Prodromou
Activity::asString() We had two ways to generate an activity entry from a notice; one through Notice::asAtomEntry() and one through Notice::asActivity() and Activity::asString(). The code paths had already diverged somewhat. I took the conditions that were in Notice::asAtomEntry() and made sure they were replicated in the other two functions. Then, I rewrote Notice::asAtomEntry() to use the other two functions instead. This change passes the ActivityGenerationTests unit tests, but there may be some other stuff that's not getting covered.
2010-09-15Merge branch '0.9.x' into activityexportEvan Prodromou
2010-09-13accept null constructor for ActivityContextEvan Prodromou
2010-09-13* update/add translator documentationSiebrand Mazeland
* remove superfluous whitespace
2010-08-10Fix for regression with OStatus mention processing (duplicated new and old ↵Brion Vibber
style lead to trying to save a reply entry twice).
2010-08-02urgh. typoJames Walker
2010-08-02add support for Salmon's new "mentioned" rel valueJames Walker
2010-03-20Move activity classes to their own filesEvan Prodromou
Moved the various classes used by the Activity class to their own files. There were >10 classes in the same file, with around 1500 lines in the file. Just too big. This change makes autoloading work for these classes, so also removed the hard require in lib/common.php.