summaryrefslogtreecommitdiff
path: root/actions
AgeCommit message (Collapse)Author
2009-10-16Workaround for Facebook data store API behavior regression, fixes savingBrion Vibber
of empty notice prefix text in facebook settings. Filed bug upstream at http://bugs.developers.facebook.com/show_bug.cgi?id=7110 Per documentation, saving a pref value of "" or "0" will delete the pref key: http://wiki.developers.facebook.com/index.php/Data.setUserPreference which used to do what we want... Now Facebook throws back an error "Parameter value is required" when we do this. Workaround appends a space to empty string or "0" at save time, then trims the string when we load it. The input string was already trimmed at pref save time, so this won't alter any user-visible behavior. Thanks to ^demon in #mediawiki for pointing out the behavior regression after testing the identi.ca Facebook app!
2009-10-13Include long-form attachment URL in notice if URL shortening is disabled.Brion Vibber
Previously, the attachment URL would simply be dropped when shortening returned false instead of a short URL... the attachment was present if you clicked through to notice details but didn't appear in the timeline, making it nigh-impossible to see the attachment.
2009-10-07Fixed E_NOTICE when the "lite" parameter isn't included in the requestJeffery To
2009-10-07Fixed E_NOTICE - GroupList expects an owner object in the constructor, not ↵Jeffery To
an array of search terms
2009-09-29Twitter API returns server errors in preferred formatEvan Prodromou
2009-09-29stop overwriting created timestamp on group editEvan Prodromou
2009-09-27Forgot to add home_timeline to the list of methods that only requireZach Copley
bareauth.
2009-09-19Make statuses/home_timeline return the same thing as ↵Zach Copley
statuses/friends_timeline to support apps trying to use the new retweet API method.
2009-09-17Merge remote branch 'cvollick/userTagPagination' into 0.8.xCraig Andrews
2009-09-16Pagination of user/tag was navigating to wrong page.Christopher Vollick
Fixes bug #1736.
2009-09-15Make it impossible to delete self-subscriptions via the APIZach Copley
2009-09-13Response for request token doesn't contain omb_versionCraig Andrews
Fixes http://status.net/trac/ticket/681 Sorry it took a year to accept this patch, dho :'-(
2009-09-12Check if the avatar exists before trying to delete it.Craig Andrews
Fixes http://status.net/trac/ticket/1868
2009-09-11Add a parameter named 'inreplyto' to the 'notice/new' page, so urls can ↵Craig Andrews
inclue 'inreplyto' id's. Also add 'inreplyto' to the urls sent in emails.
2009-09-07Don't "hightlight" search terms (by surrounding them in ↵Craig Andrews
<strong>$term</strong>) when the term appears in an HTML attribute Fixes http://status.net/trac/ticket/1852
2009-09-03Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.xSarven Capadisli
2009-09-03Created autofocus method to give focus to an element (primarily a formSarven Capadisli
control) on page onload. Updated some of the pages to use autofocus.
2009-09-03Fix spellingCraig Andrews
2009-09-03add basic auth support for cgi servers on the api (trac #1832)mEDI
2009-09-02Fixed bug in which you cannot turn off importing friends timelines flagZach Copley
2009-09-01Fixes foaf notices, use Profile for information that's missing in Remote_profileCarlos Perilla
2009-08-27added my email address next to my name at the top of the filesCraig Andrews
2009-08-27Implement the is_member and membership group api'sCraig Andrews
2009-08-26define LACONICA and accept LACONICA for backwards compatibilityEvan Prodromou
2009-08-25global search and replace for laconica -> statusnetEvan Prodromou
2009-08-25change LACONICA to STATUSNETEvan Prodromou
2009-08-25change controlyourself.ca to status.netEvan Prodromou
2009-08-25change laconi.ca to status.netEvan Prodromou
2009-08-25a distributed -> the distributedEvan Prodromou
2009-08-25change Laconica and Control Yourself to StatusNet in PHP filesEvan Prodromou
2009-08-25Rename Laconica to StatusNetEvan Prodromou
2009-08-24Merge branch '0.8.x' into testingEvan Prodromou
Conflicts: actions/twitterauthorization.php lib/oauthclient.php lib/twitter.php lib/twitterapi.php lib/twitteroauthclient.php scripts/twitterstatusfetcher.php
2009-08-24Moved some stuff to a base classZach Copley
2009-08-24Allow removal of Twitter account. Deleted dead code.Zach Copley
2009-08-24Make the TwitterQueuehandler post to Twitter using OAuthZach Copley
2009-08-24Twitter OAuth server dance workingZach Copley
2009-08-20Change the notice type defines all into class constants and adapt all files.Marcel van der Boom
2009-08-19Resolve Group Aliases in showgroup.phpChristopher Vollick
For Example, let's say 'alias' was an alias for the group 'group'. Previously, if you went to '/group/group' it'd work, but '/group/alias' it'd say "No Such Group". This was untrue. Now it checks aliases when it can't find a group with a given name. If it finds one it redirects you to the original group.
2009-08-16Merge commit 'jeff-themovie/0.8.x-openid-enabled' into 0.8.xCraig Andrews
2009-08-16Fix bug bug 1563 "opensearch content type incorrectly set"brion
http://laconi.ca/trac/ticket/1563 OpenSearch description info is now sent with correct Content-Type: application/opensearchdescription+xml instead of text/html.
2009-08-16Revert "Revert "Return a 404 when a page is request that has no notices""Evan Prodromou
This reverts commit 1b204fde39271acd38bb8f9dd16734f15c68138a.
2009-08-16Revert "Revert "Return a 404 when a page is request that has no notices""Evan Prodromou
This reverts commit 6c597eabecf2368224938a136d7ac588702bbfd7.
2009-08-14Revert "Return a 404 when a page is request that has no notices"Evan Prodromou
An empty list still exists; we should not return a 404 for empty lists. This reverts commit 355effe6315ab7927a54f44fc9ce903085769b5f.
2009-08-14Revert "Return a 404 when a page is request that has no notices"Evan Prodromou
An empty list still exists; we shouldn't return a 404. This reverts commit c29892c87573e0575b9a4a13210c562e08411148.
2009-08-13Added a configuration option to disable OpenID.Jeffery To
If $config['openid']['enabled'] is set to false, OpenID is removed from the navigation and direct accesses to OpenID login pages redirect to the login page. If OpenID is enabled, $config['site']['openidonly'] is ignored, i.e. OpenID is required to go OpenID-only.
2009-08-12Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.xEvan Prodromou
2009-08-11Return a 404 when a page is request that has no noticesCraig Andrews
2009-08-11Return a 404 when a page is request that has no noticesCraig Andrews
2009-08-11oEmbed provider does not use the twitter api library classes any moreCraig Andrews
2009-08-11reformat newnotice.phpEvan Prodromou