Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-18 | Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing | Brion Vibber | |
2010-02-18 | OStatus sub/unsub updates: | Brion Vibber | |
- fix for PuSH unsub verification - send Salmon notification on unsub | |||
2010-02-18 | Minor adjustment to edit icon position | Sarven Capadisli | |
2010-02-18 | Fixes long strings from not breaking | Sarven Capadisli | |
2010-02-18 | always distribute to inbox of author immediately | Evan Prodromou | |
2010-02-18 | Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing | Evan Prodromou | |
2010-02-18 | more work on salmon | Evan Prodromou | |
2010-02-17 | Merge branch 'master' into testing | Brion Vibber | |
2010-02-17 | Queues: redid the breakout control model so we can start up and subscribe to ↵ | Brion Vibber | |
queues without running through the complete site list, which is ok at 1k sites but too slow at 10k. All breakout queues that we're going to need to listen to now need to be explicitly listed in $config['queue']['breakout']. Until XMPP is moved to component model, this setting will let the individual processes work with their own queues: $config['queue']['breakout'][] = 'xmpp/xmppout/' . $config['site']['nickname']; | |||
2010-02-17 | Twitter bridge - fix for Ticket #2192 | Zach Copley | |
2010-02-17 | Better logging for Twitter bridge account linking process | Zach Copley | |
2010-02-17 | Upgrade Twitter bridge to use OAuth 1.0a. It's more secure, and allows | Zach Copley | |
us to automatically send in a callback url instead of having to manually configure one for each StatusNet instance. | |||
2010-02-17 | Twitter bridge - fix for Ticket #2192 | Zach Copley | |
2010-02-17 | Better logging for Twitter bridge account linking process | Zach Copley | |
2010-02-17 | Merge branch 'master' into testing | Brion Vibber | |
2010-02-17 | Fix exception on bad plugin load | Brion Vibber | |
2010-02-17 | parse_url returns an associative array - not an object | Craig Andrews | |
2010-02-17 | PostDebug plugin - saves POST data to debug log or directory to help debug ↵ | Brion Vibber | |
form submission and server-to-server communications. Some sensitive items are sanitized but not all - don't just shove out the log results publicly! | |||
2010-02-17 | - Set the root of a new local conversation to a new conversation.id | Zach Copley | |
- Output conversation URIs from conversation.uri | |||
2010-02-17 | - conversation.uri needs to be nullable | Zach Copley | |
- factory method for creating new local conversations | |||
2010-02-16 | New Conversation DO to handle remote notices as conversation roots | Zach Copley | |
2010-02-16 | Merge branch 'testing' of gitorious.org:statusnet/mainline into testing | Zach Copley | |
* 'testing' of gitorious.org:statusnet/mainline: OStatus: override source link with the source domain and link to original message OStatus: moving parts of profile processing to Activity from feedmunger. Pausing before refactoring DB schema a bit to clean up feed vs person vs group info | |||
2010-02-16 | More sensical profile::getUri() | Zach Copley | |
2010-02-17 | OStatus: override source link with the source domain and link to original ↵ | Brion Vibber | |
message | |||
2010-02-17 | Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing | Brion Vibber | |
2010-02-17 | OStatus: moving parts of profile processing to Activity from feedmunger. ↵ | Brion Vibber | |
Pausing before refactoring DB schema a bit to clean up feed vs person vs group info | |||
2010-02-16 | Merge branch 'testing' of gitorious.org:statusnet/mainline into testing | Zach Copley | |
* 'testing' of gitorious.org:statusnet/mainline: OStatus: migrated notice parsing to use Activity helper classes; on the way to killing FeedMunger | |||
2010-02-16 | Take remote profiles into account when looking up canonical profile URIs | Zach Copley | |
2010-02-16 | OStatus: migrated notice parsing to use Activity helper classes; on the way ↵ | Brion Vibber | |
to killing FeedMunger | |||
2010-02-16 | OStatus: check only direct children in ActivityUtil::child; fixes pulling ↵ | Brion Vibber | |
actor's info when we wanted post info | |||
2010-02-16 | OStatus: temporary output mode hack for apitimelineuser until PuSH feed ↵ | Brion Vibber | |
generation is updated to use the shared code instead of output buffering | |||
2010-02-16 | OStatus: fix up some recent regressions in subscription setup; fix state ↵ | Brion Vibber | |
checks and verification token, and avatar save on setup. Needs updates for new atom code next... | |||
2010-02-16 | OStatus: fix for low-level remote subscribe | Brion Vibber | |
2010-02-16 | Add rel="avatar" to img links in <activity:actor> stanzas | Zach Copley | |
2010-02-16 | restructure Activity classes to push more DOM stuff to ActivityUtils | Evan Prodromou | |
2010-02-16 | Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing | Evan Prodromou | |
2010-02-16 | add a FIXME to Profile | Evan Prodromou | |
2010-02-16 | Merge branch 'master' into testing | Brion Vibber | |
Conflicts: lib/stompqueuemanager.php | |||
2010-02-16 | Stomp queue restructuring for mass scalability: | Brion Vibber | |
- Multiplexing queues into groups and for multiple sites. - Sharing vs breakout configurable per site and per queue via $config['queue']['breakout'] - Detect how many times a message is redelivered, discard if it's killed too many daemons - count configurable with $config['queue']['max_retries'] - can dump the items to files in $config['queue']['dead_letter_dir'] Queue daemon memory & resource leak fixes: - avoid unnecessary reconnections to memcached server (switch persistent connections back in on second initialization, assuming it's child process) - monkey-patch for leaky .ini loads in DB_DataObject::databaseStructure() - was leaking 200k per active switch - applied leak fixes to Status_network as well, using intermediate base Safe_DataObject for both it and Memcache_DataObject Misc queue fixes: - correct handling of child processes exiting due to signal termination instead of regular exit - shutdown instead of infinite respawn loop if we're already past the soft memory limit at startup - Added --all option for xmppdaemon... still opens one xmpp connection per site that has xmpp active Cache updates: - add Cache::increment() method with native support for memcached atomic increment | |||
2010-02-16 | Pull fix from testing branch: use new encoding funcs w/ stomp queues | Brion Vibber | |
2010-02-16 | Minor optimization to only bind an hover event to the notice at hand. | Sarven Capadisli | |
2010-02-16 | Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing | Sarven Capadisli | |
2010-02-16 | Fix to allow any notice item with an attachment to use the overlay view | Sarven Capadisli | |
2010-02-16 | move some nickname-guessing code to lib/util.php from OpenID | Evan Prodromou | |
2010-02-16 | add a couple of FIXME comments | Evan Prodromou | |
2010-02-16 | change find() to staticGet() to use cache | Evan Prodromou | |
2010-02-16 | Upgrade Twitter bridge to use OAuth 1.0a. It's more secure, and allows | Zach Copley | |
us to automatically send in a callback url instead of having to manually configure one for each StatusNet instance. | |||
2010-02-15 | Temporary debug hack tracking down 'revoked accesstoken' issue with OMB posts | Brion Vibber | |
2010-02-15 | Use static class method for looking up Twitter user | Zach Copley | |
2010-02-15 | Use static class method for looking up Twitter user | Zach Copley | |