summaryrefslogtreecommitdiff
path: root/actions
AgeCommit message (Collapse)Author
2010-10-20Consistent punctuation.Siebrand Mazeland
2010-10-20* i18n for many missing messages (???)Siebrand Mazeland
* add translator documentation.
2010-10-20* i18n/L10n fixes.Siebrand Mazeland
* translator documentation updated/added. * superfluous whitespace removed.
2010-10-19Stick OAuth developer help info in a sectionZach Copley
2010-10-19Merge branch 'anon-consumer' into 0.9.xZach Copley
2010-10-19Add support for an anonymous OAuth consumer. Note: this requires aZach Copley
small DB tweak. Oauth_application_user needs to have the primary compound key: (profile_id, application_id, token). http://status.net/open-source/issues/2761 This should also make it possible to have multiple access tokens per application. http://status.net/open-source/issues/2788
2010-10-20Add missing "address"Siebrand Mazeland
2010-10-20Many i18n/L10n updates and lots of descriptions for translators added.Siebrand Mazeland
2010-10-19Merge branch 'master' of gitorious.org:statusnet/mainline into 0.9.xBrion Vibber
2010-10-19Fix PHP notice when submitting 'design' admin panel on a browser that ↵Brion Vibber
doesn't support file uploads such as Mobile Safari
2010-10-19Relax restrictions on URL validation for oauth_callback. We need toZach Copley
allow custom schemes like mustard:// etc.
2010-10-19Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.xZach Copley
2010-10-19OAuth - better log messagesZach Copley
2010-10-18Merge branch '0.9.x'Brion Vibber
2010-10-18* fix bugs in parameter numbering for two messagesSiebrand Mazeland
* add translator documentation
2010-10-18options to nofollow external links in noticesEvan Prodromou
2010-10-16* add plural support where missingSiebrand Mazeland
* update translator documentation.
2010-10-16Update translator documentation.Siebrand Mazeland
2010-10-15Fix for ticket #2837: white screen when hitting 'make admin' button on group ↵Brion Vibber
members list. RedirectingAction->returnToArgs() has been renamed to returnToPrevious() to avoid confusion with the existing Action->returnToArgs which gives the arguments that would be used to pass to one of those. :) Switching to the correct function call gets it working. Thanks to Siebrand for catching it when I could debug it live!
2010-10-15add SSL servers and paths to pathadminpanel.phpEvan Prodromou
2010-10-14let users set their SSL logo through the admin panelEvan Prodromou
2010-10-12Merge branch 'oauth-1.0a' into 0.9.xZach Copley
2010-10-12Print a proper error messageZach Copley
2010-10-12Add a basic group deletion for moderator users.Brion Vibber
2010-10-12Output a log message when issuing a request tokenZach Copley
2010-10-08Fix PHP fatal error in DeletenoticeAction: died when we had a valid notice, ↵Brion Vibber
but weren't logged in due to accessing $this->user before the login check. Moved check up to prepare() from handle() so it's done before usage
2010-10-07Update ApiOauthAccessTokenAction to OAuth 1.0aZach Copley
2010-10-07Added a comment about an open question: Should we allow pin-basedZach Copley
workflow for clients registered as web applications?
2010-10-07Make the verifier pin display a little nicerZach Copley
2010-10-06- Update ApiOauthAuthorizeAction to 1.0aZach Copley
- Fix enumerable bugs - New page for displaying 1.0a verifier (still needs work)
2010-10-06Update ApiOauthRequestTokenAction to support OAuth 1.0aZach Copley
2010-10-01Bugfix in FB-sharing header for empty profile avatarBrion Vibber
2010-10-01Throw in a quick event hook to override the profile list type on showstream ↵Brion Vibber
(should be made more general in future). Replace with a NoticeList to have output include avatar and username -- but CSS still hides them in default theme. Event::addHandler('ShowStreamNoticeList', 'awesome'); function awesome($notice, $action, &$pnl) { $pnl = new NoticeList($notice, $action); return false; }
2010-09-30Add helper metadata on individual notice pages to aid sharing to Facebook ↵Brion Vibber
(use poster's avatar as image, indicate the text content)
2010-09-29Add Start/EndShowNoticeItem event hooks to single notice pageZach Copley
2010-09-25Fix PHP syntax errors introduced during localization fixups in a few files.Brion Vibber
2010-09-23Update OAuth actions in show application page so it will display the right ↵Zach Copley
endpoint URLs
2010-09-23Merge branch '0.9.x'Evan Prodromou
2010-09-22Fix for ticket 2756 - Calls to OAuth endpoints are redirected to theZach Copley
login page when a site is in private mode
2010-09-22Fix for ticket 2756 - Calls to OAuth endpoints are redirected to theZach Copley
login page when a site is in private mode
2010-09-21License admin panel should allow empty or valid URLs for (licenseZach Copley
URL and license image URL) when selecting private or allrightsreserved licenses.
2010-09-21Merge branch 'master' into 0.9.xBrion Vibber
2010-09-20Fix #2323: typo on oauth connections pageBrion Vibber
2010-09-20Fix error when editing OAuth app registration and only changing the icon.Brion Vibber
2010-09-20Fix for #2419: There is no function maxDescription in Oauth_application ↵Brion Vibber
class (broke the 'description too long' error message when editing oauth app registrations)
2010-09-20Ticket #2750: fixes to HTTP caching behavior across login/logout boundariesBrion Vibber
* now ignoring if-modified-since if we failed an etag if-none-match comparison, per spec * now including a hash of user id/nickname in most etags, so we'll update the view properly after login/logout For API methods, checking the API-auth'ed user. (Many change results to include things like 'you're subscribed to this user' or 'this is one of your favorites', so user info is again needed) There'll still be some last-modified stamps that aren't including user info properly, probably.
2010-09-17Basic license admin panel (maybe we can make it fancier later)Zach Copley
2010-09-17Removed periods from instructions on some admin panels for consistencyZach Copley
2010-09-17Fixed typo, and updated copyright dates while I was thereZach Copley
2010-09-13Ticket #2701: old color settings now get reset when changing themes, so you ↵Brion Vibber
don't end up with the previous theme's colors.