Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-18 | Added Authorization plugin | Craig Andrews | |
Added LDAPAuthorization plugin | |||
2009-11-17 | Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x | Evan Prodromou | |
Conflicts: classes/statusnet.ini | |||
2009-11-16 | disallow email on faves from sandboxed users | Evan Prodromou | |
2009-11-16 | more rights denied to silenced and sandboxed | Evan Prodromou | |
2009-11-16 | don't allow sandboxed users to post public notices | Evan Prodromou | |
2009-11-16 | Move rights check to profile and add right for new notices | Evan Prodromou | |
Added a right for new notices, realized that the hasRight() method should be on the profile, and moved it. Makes this a less atomic commit but that's the way it goes sometimes. | |||
2009-11-16 | change uses of User_role to Profile_role | Evan Prodromou | |
2009-11-16 | move role functions to Profile class | Evan Prodromou | |
2009-11-16 | getSubscribers and getSubscriptions were not handling the case where ↵ | Craig Andrews | |
limit=null correctly | |||
2009-11-09 | Revert "Remove more contractions" | Brion Vibber | |
This reverts commit 5ab709b73977131813884558bf56d97172a7aa26. Missed this one yesterday... | |||
2009-11-08 | Remove more contractions | Siebrand Mazeland | |
* doesn't * won't * isn't * don't | |||
2009-10-29 | get location from a Profile | Evan Prodromou | |
2009-10-24 | Merge branch '0.9.x' into location | Evan Prodromou | |
2009-10-21 | new data structures for location | Evan Prodromou | |
2009-10-15 | Added support for profile designs to the twitter API | Trever Fischer | |
2009-10-04 | Merge branch '0.8.x' into 0.9.x | Evan Prodromou | |
Conflicts: classes/Profile.php | |||
2009-10-02 | copy-and-paste typo in profile deletion | Evan Prodromou | |
2009-10-02 | Merge branch '0.8.x' into deleteuser | Evan Prodromou | |
2009-09-15 | Remove unnecessary Profile::pkeyGet | Craig Andrews | |
Thanks for the info, Evan. | |||
2009-09-13 | Add missing pkeyGet override to the Profile class | Craig Andrews | |
2009-08-27 | Merge branch '0.8.x' into 0.9.x | Evan Prodromou | |
Conflicts: EVENTS.txt actions/finishremotesubscribe.php actions/postnotice.php actions/public.php actions/remotesubscribe.php actions/showstream.php actions/updateprofile.php actions/userauthorization.php classes/laconica.ini lib/common.php lib/oauthstore.php lib/omb.php | |||
2009-08-26 | define LACONICA and accept LACONICA for backwards compatibility | Evan Prodromou | |
2009-08-25 | change LACONICA to STATUSNET | Evan Prodromou | |
2009-08-25 | a distributed -> the distributed | Evan Prodromou | |
2009-08-25 | change Laconica and Control Yourself to StatusNet in PHP files | Evan Prodromou | |
2009-08-21 | check correct setting in Profile bio length | Evan Prodromou | |
2009-08-21 | Profile class has methods to check bio length | Evan Prodromou | |
2009-08-21 | data classes allow >140 bios in profiles | Evan Prodromou | |
2009-07-26 | first version of deleting users | Evan Prodromou | |
2009-07-23 | Merge commit 'br3nda/0.8.x-profile-pgfix' into 0.8.x | Craig Andrews | |
2009-07-23 | fixed up a limit offset to be ANSI SQL compliant | Brenda Wallace | |
2009-07-17 | Removed noisy debugging statements | Zach Copley | |
2009-07-09 | cache frequently-used subscriber, subscription, notice and fave count values | Evan Prodromou | |
2009-06-25 | break up big inbox queries into lots of small ones | Evan Prodromou | |
2009-06-20 | Update copyright dates in files modified in 2009 | Evan Prodromou | |
2009-06-20 | change Controlez-Vous to Control Yourself | Evan Prodromou | |
2009-06-17 | Make the personal tag streams actually work | Evan Prodromou | |
2009-06-08 | Merge branch '0.7.x' into 0.8.x | Evan Prodromou | |
Conflicts: classes/Notice.php classes/Profile.php lib/common.php lib/util.php scripts/getvaliddaemons.php scripts/stopdaemons.sh | |||
2009-05-29 | Ticket #1567 - Change max_id to return notices <= ID instead of < ID | Zach Copley | |
2009-05-18 | Added personal tag page: http://example.com/MY_NICK/tag/A_TAG | Robin Millette | |
2009-05-01 | make profile notice getting use ids | Evan Prodromou | |
2009-02-06 | Move common_avatar_* functions to Avatar | Evan Prodromou | |
Moved the common_avatar_* functions to the Avatar class. Typically either as methods on the object or as static methods. Replaced all the uses of the functions in other modules. | |||
2009-02-04 | Fixed #1134; Consolidated image scaling functions. | Sean Murphy | |
2009-01-21 | move membership/adminship tests to profile | Evan Prodromou | |
2008-12-25 | Some fixups of patches not already migrated to trunk to bring inline with ↵ | Zach Copley | |
PEAR coding stds darcs-hash:20081225144601-7b5ce-4846f3d036c36037836d15ed672c10ba33f9f84c.gz | |||
2008-12-11 | Actually crop your avatar when hitting 'crop' button on profile | Zach Copley | |
darcs-hash:20081212043018-7b5ce-bc83b66e19007aa0a04fbb40053217ef92c44779.gz | |||
2008-12-23 | change function headers to K&R style | Evan Prodromou | |
Another huge change, for PEAR code standards compliance. Function headers have to be in K&R style (opening brace on its own line), instead of having the opening brace on the same line as the function and parameters. So, a little perl magic found all the function definitions and move the opening brace to the next line (properly indented... usually). darcs-hash:20081223193323-84dde-a28e36ecc66672c783c2842d12fc11043c13ab28.gz | |||
2008-12-23 | replace NULL with null | Evan Prodromou | |
Another global search-and-replace update. Here, I've replaced the PHP keyword 'NULL' with its lowercase version. This is another PEAR code standards change. darcs-hash:20081223192129-84dde-4a0182e0ec16a01ad88745ad3e08f7cb501aee0b.gz | |||
2008-12-23 | replace all tabs with four spaces | Evan Prodromou | |
The PEAR coding standards decree: no tabs, but indent by four spaces. I've done a global search-and-replace on all tabs, replacing them by four spaces. This is a huge change, but it will go a long way to getting us towards phpcs-compliance. And that means better code readability, and that means more participation. darcs-hash:20081223191907-84dde-21e8efe210e6d5d54e935a22d0cee5c7bbfc007d.gz | |||
2008-12-10 | edit throttling | Evan Prodromou | |
darcs-hash:20081210174722-84dde-4c79d7f73230d008195bd19738bc9a6017b940e9.gz |