Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-26 | Make userxrd work without OStatus enabled | Evan Prodromou | |
2010-11-26 | Make userxrd part of the default hostmeta | Evan Prodromou | |
2010-11-26 | Move user xrd action to core and use hooks to extend | Evan Prodromou | |
Moved the Webfinger user XRD action from the OStatus plugin to core. Added hooks to add OStatus-specific stuff, but kept general stuff in the core. | |||
2010-11-26 | move xrd and hostmeta out of the OStatus plugin and into core | Craig Andrews | |
add event for setting up hostmeta, and use them in the OStatus plugin | |||
2010-11-19 | Merge branch 'master' into 0.9.x | Brion Vibber | |
2010-11-19 | Fix ticket #2700: some numeric IDs were misinterpreted as hex numbers ↵ | Brion Vibber | |
instead of strings when '0x123' passed in. Switched from is_numeric() to a custom self::is_decimal() which is more strict. This makes our behavior match Twitter's API a bit better, so eg this: http://identi.ca/api/statuses/home_timeline/0x6d686b.xml should now be equivalent to: http://identi.ca/api/statuses/home_timeline.xml?screen_name=0x6d686b instead of: http://identi.ca/api/statuses/home_timeline.xml?user_id=7170155 | |||
2010-11-19 | Ticket #2797: replace addslashes() with explicit escape calls on the DB objects | Brion Vibber | |
2010-11-19 | Merge branch 'master' into 0.9.x | Brion Vibber | |
2010-11-19 | Ticket #1987: support since_id on API notice search methods. | Brion Vibber | |
max_id is not yet implemented, as it'll need support added to the search backends. (since_id we get 'for free' by just cropping off the list, it'll do for now) | |||
2010-11-19 | Merge branch 'master' of gitorious.org:statusnet/mainline into 0.9.x | Brion Vibber | |
2010-11-19 | Ticket #2899: clean up inbox/outbox DM form a bit: | Brion Vibber | |
- "To" drop-down list now defaults to showing "Select recipient:" instead of the first person on your list, reducing liklihood of accidentally sending a message to the wrong person. - When there are no mutual subscribers to send to, instead of an empty list the list now shows 'No mutual subscribers.' In both cases, attempting to send when the default is selected displays an error message. I'm not disabling form elements in part because our themes right now don't show disabled button state correctly; we might want to tighten that up a bit more once fixed. | |||
2010-11-19 | Merge branch 'master' of gitorious.org:statusnet/mainline into 0.9.x | Brion Vibber | |
2010-11-18 | Fix regression in PopularNoticeSection: tag parameter was broken, causing ↵ | Brion Vibber | |
sidebar on tag pages to show untagged favorites. | |||
2010-11-17 | Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x | Zach Copley | |
2010-11-17 | Facebook: Gracefully handle disconnection | Zach Copley | |
2010-11-17 | Add $config['attachments']['process_links'] to allow disabling processing of ↵ | Brion Vibber | |
mentioned URL links for attachment info (oEmbed lookups) and dereferencing of redirects that we didn't have shortened ourselves. This option may be useful for intranet sites that don't have direct access to the internet, as they may be unable to successfully fetch those resources. | |||
2010-11-17 | include full updated source of JSON2 and use updated minified version | Evan Prodromou | |
2010-11-17 | use minified version of jquery.cookie.js | Evan Prodromou | |
2010-11-17 | use minified version of jquery.form.js | Evan Prodromou | |
2010-11-17 | Merge branch '0.9.x' into minifyjs | Evan Prodromou | |
2010-11-17 | move EndScriptMessages event into if block | Evan Prodromou | |
2010-11-17 | Use minified version of util.js | Evan Prodromou | |
2010-11-16 | Merge branch 'master' into 0.9.x | Brion Vibber | |
2010-11-16 | Ticket 2895: exclude silenced users from popular notice lists | Brion Vibber | |
2010-11-16 | Prep for ticket #2895: consolidate common code from PopularNoticeList and ↵ | Brion Vibber | |
FavoritedAction for fetching popular notice lists | |||
2010-11-16 | Fix syntax error | Zach Copley | |
2010-11-15 | Store the current user in the CurrentUserDesignAction | Zach Copley | |
2010-11-16 | Merge branch '0.9.x' into facebook-upgrade | Zach Copley | |
2010-11-15 | Merge branch 'master' of gitorious.org:statusnet/mainline into 0.9.x | Brion Vibber | |
2010-11-15 | RemoteProfileAction cleanup: | Brion Vibber | |
- meta robots to prevent spidering - a little notice if silenced | |||
2010-11-15 | Workaround for display of Twitter remote users in remoteprofile (ModPlus ↵ | Brion Vibber | |
plugin): use 73px avatar if no 96px present | |||
2010-11-15 | some User -> Profile cleanup to help in adapting the profile page action to ↵ | Brion Vibber | |
show stuff for remote users. Subscriptions, groups, roles, etc are all on profiles now so go ahead and use em. | |||
2010-11-15 | restore empty showFallback() for attachment display; still needed for one-offs | Brion Vibber | |
2010-11-15 | Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x | Brion Vibber | |
2010-11-15 | Add some basic oEmbed lookup test cases; fixed a bug in discovery fallback. | Brion Vibber | |
2010-11-15 | Drop some debug lines | Brion Vibber | |
2010-11-15 | Swap the Services_oEmbed wrapper in oEmbedHelper out for doing it ourselves... | Brion Vibber | |
- workaround for providers that are skimpy on their data, such as missing width/height or thumbnail_width/thumbnail_height - workaround for YFrog listing "image" instead of "photo" type - generally more lax about formatting: if it comes back and looks kinda ok, we'll take it. - discovery uses system HTML parser, should be more robust if the links include things like ampersands with proper HTML-level escaping | |||
2010-11-15 | Merge remote branch 'gitorious/0.9.x' into 0.9.x | Evan Prodromou | |
2010-11-15 | Merge branch 'atompub' into 0.9.x | Evan Prodromou | |
Conflicts: actions/apistatusesshow.php actions/apitimelineuser.php | |||
2010-11-12 | Encapsulate the oEmbed -> oohembed fallback into oEmbedHelper class. Also ↵ | Brion Vibber | |
added a chance to whitelist sites that don't show discovery info but do have oEmbed API endpoints, and to provide alternate APIs for some common services. Newly supported: - TwitPic: added a local function using TwitPic's API, since the oohembed implementation for TwitPic produced invalid output which Services_oEmbed rejects. (bug filed upstream) Tweaked... - Flickr: works, now using whitelist to use their endpoint directly instead of going through oohembed - Youtube: worked around a bug in Services_oEmbed which broke the direct use of API discovery info, so we don't have to use oohembed. Not currently working... - YFrog: whitelisting their endpoint directly as the oohembed output is broken, but this doesn't appear to work currently as I think things are confused by YFrog's servers giving a '204 No Content' response on our HEAD checks on the original link. | |||
2010-11-12 | Only use saved thumbnails for notice list attachment thumbs -- don't attempt ↵ | Brion Vibber | |
to search enclosures for photo types. We now save thumbs directly for oEmbed photos that don't list a separate thumb entry (like Flickr), so it's not needed. Keeps things cleaner :D | |||
2010-11-12 | Merge branch 'master' of gitorious.org:statusnet/mainline into 0.9.x | Brion Vibber | |
Conflicts: actions/newgroup.php | |||
2010-11-12 | Merge branch 'oembed-thumbnails' into 0.9.x | Brion Vibber | |
2010-11-12 | Add a quick config setting to disable/enable display of thumbnails in ↵ | Brion Vibber | |
regular notice lists (attachments/show_thumbs) - disabling gives the same display as before this feature was added (but changes to oembed handling are still there, and the lightbox popup is gone) | |||
2010-11-10 | Add error logging for a couple send-fail cases in XMPP out | Brion Vibber | |
2010-11-10 | CSS class tweak for inline attachment thumbnails to avoid things thinking ↵ | Brion Vibber | |
they're content links | |||
2010-11-10 | Fix isHTTPS to work correctly for Cherokee and IIS | Craig Andrews | |
2010-11-09 | add title attribute on attachment list items | Brion Vibber | |
2010-11-09 | Merge branch '0.9.x' into facebook-upgrade | Zach Copley | |
2010-11-09 | split out InlineAttachmentList from AttachmentList | Brion Vibber | |