summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-05override linkAttributes() method for subscribersminilistEvan Prodromou
2010-04-05override linkAttributes() method for profileminilistEvan Prodromou
2010-04-05add linkAttributes() method for profilelistEvan Prodromou
2010-04-05lib/default.php has nofollow groupEvan Prodromou
2010-04-05breakout subscribers minilistEvan Prodromou
2010-04-05balance brackets on profileminilistEvan Prodromou
2010-04-05add an event for subscribers minilistEvan Prodromou
2010-04-05add an event for group members minilistEvan Prodromou
2010-04-03Ticket #2272: Block confirmation form should let enter trigger the 'yes' buttonBrion Vibber
Setting focus into the form to make it easier to submit by keyboard. Enter or space will now trigger the button right off without having to mouse around to find the button after we've clicked into the conf form, and keyboarders can also get to the 'no' button more easily.
2010-04-03Ticket #2273: Fix bookmarklet with URls with special charactersBrion Vibber
The tartget page's URL was not being URL-escaped when passed as a parameter into the query string. Result was that any URL-encoded bytes in the link would be unescaped and interpreted as raw UTF-8 when our bookmarklet post target page reads its parameters; this would break 8-bit high characters (eg a Latin-1 %FC turning into a corrupt UTF-8 byte) or reserved chars that needed to be kept escaped (eg a %3F turning into literal ?) Unfortunately as this was a bug in the original bookmarklet's JS code, this'll only fix it for people who grab a fresh copy of the bookmarklet.
2010-04-02Don't save duplicate messages into a user's packed inbox. We've already got ↵Brion Vibber
the packed box loaded at insert time, so we can simply unpack it and check before doing the update query. Should help with dupes that come in when inbox distrib jobs die and get restarted, etc. Conflicts: classes/Inbox.php Looks like this was implemented on master recently and not copied up to testing. Merging to my version on testing as I've added some doc comments and extracted a couple functions for future ease of use.
2010-04-02Ticket 2271: extra whitespace in underlined link for username in notice listsBrion Vibber
Switching to a raw() output for the <span> of the nickname removes the extra whitespace and fixes display.
2010-04-01ProfileMiniListItem does same events as ProfileListItemEvan Prodromou
2010-04-01Temporary hack until notice_profile_id_idx is updatedBrion Vibber
to (profile_id, id) instead of (profile_id, created, id). It's been falling back to PRIMARY instead, which is really very inefficient for a profile that hasn't posted in a few months. Even though forcing the index will cause a filesort, it's usually going to be better. Even for large profiles it seems much faster than the badly-indexed query.
2010-04-01Revert "Revert "if user allows location sharing but turned off browser ↵Evan Prodromou
location use profile location"" This reverts commit 8b24ad8a9c681585e95612084eb629df8b364b74.
2010-04-01Revert "Revert "don't insert the same notice twice into an inbox""Evan Prodromou
This reverts commit a09b27ff41df41a86fdb0abae14239907d5ee6ec.
2010-04-01Revert "don't insert the same notice twice into an inbox"Evan Prodromou
This reverts commit 650074c648d98f81674c6e2b0ebf052c473ada6e.
2010-04-01Revert "if user allows location sharing but turned off browser location use ↵Evan Prodromou
profile location" This reverts commit 4b80ce0be89fe50eabec1a19dbf4a0c26a413423.
2010-04-01if user allows location sharing but turned off browser location use profile ↵Evan Prodromou
location
2010-03-31don't insert the same notice twice into an inboxEvan Prodromou
2010-03-31use Subscription::cancel() to cancel all subscriptions on blockEvan Prodromou
2010-03-31do complete unsubscribe process when deleting a userEvan Prodromou
2010-03-30Shared cache key option for Geonames plugin, lets multi-instance sites share ↵Brion Vibber
their cached geoname lookups. Example: unset($config['plugins']['default']['Geonames']); addPlugin('Geonames', array('cachePrefix' => 'statusnet:shared'));
2010-03-30Some fixes to make the twitterstatusfetcher behave better in a multi-site ↵Zach Copley
configuration
2010-03-30Fix for error output on invalid user ID to api groups listBrion Vibber
2010-03-30Fixes for apigrouplist - notice spew from undefined var, notice spew from ↵Brion Vibber
missing escape in sprintf format
2010-03-30Quick fixes for grouplistall:Brion Vibber
* respect count instead of listing all groups * respect page parameter * don't spew notice on undefined $id * don't spew notice on undefined $group->homepage_url (dropped the element since there's nothing to go in it)
2010-03-29Fix to profile location in FOAF output: longitude was repeating the latitude ↵Brion Vibber
by mistake
2010-03-29Include meta charset header in saved HTML file for long OStatus messages; ↵Brion Vibber
without, DOMDocument::loadHTML assumed Latin-1 instead of UTF-8.
2010-03-28Remove debug line that crept into a commit a while back, breaking realtime ↵Brion Vibber
when Firebug wasn't present
2010-03-28don't try to get to database at initialize timeEvan Prodromou
2010-03-28add an option to run a command as the site ownerEvan Prodromou
2010-03-28continue deleting even if user profile record is missingEvan Prodromou
2010-03-28update README and version number0.9.1Evan Prodromou
2010-03-27move check for bad IDs from activityobject to activity and make simplerEvan Prodromou
2010-03-27reverse order of activity parse test argumentsEvan Prodromou
2010-03-26Really make sure we return 'true' and 'false' strings for boolean vals in ↵Zach Copley
api/statusnet/config.:format.
2010-03-26Return an http auth error, when a client sends in an invalid auth user, even ↵Zach Copley
when http auth is not required.
2010-03-26Drop debug statements on every regex match from Blacklist plugin; filling ↵Brion Vibber
the logs a little faster than ops likes. :)
2010-03-26move base64_url_(encode|decode) to static functions in MagicsigJames Walker
2010-03-26Fix for XHR more text behaviour on conversation pagesSarven Capadisli
2010-03-26Do ostatus queue firstEvan Prodromou
We do the OStatus queue first, so if we're sending a notice to the same server twice (e.g., with OMB), our richer and more featureful notice comes in first.
2010-03-25Tweak to OStatus long message cropping: use original source notice URL for ↵0.9.1rc1Brion Vibber
the link in the text version, don't shorten the link for the HTML so we can append params to it in JS. Conflicts: plugins/OStatus/classes/Ostatus_profile.php
2010-03-25Add doc comments on saveHTMLFile; drop the extra <div> wrapping the contents ↵Brion Vibber
to make it easier to extract without getting extra markup.
2010-03-25Merge branch 'master' of git@gitorious.org:statusnet/mainlineBrion Vibber
2010-03-25Restore lost addition of inline HTML attachment display.Brion Vibber
2010-03-25version number and codenameEvan Prodromou
2010-03-25Merge branch 'master' of git@gitorious.org:statusnet/mainlineEvan Prodromou
2010-03-25If indenting is disabled on the output, this fixes the entity_tags cropSarven Capadisli
2010-03-25Fix for processing indicator for asideSarven Capadisli