Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-22 | Rewrote How Blogspam Plugin Made HTTP Requests. | Christopher Vollick | |
The old way didn't seem to work anymore. It was just sending empty requests. | |||
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-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 | Twitter-bridge: lookup old foreign_user by primary key not url | Zach Copley | |
2010-02-15 | Better log msgs. Removed debugging statement. | Zach Copley | |
2010-02-15 | Fix for regression introduced with my last update to the | Zach Copley | |
TwitterStatusFetcher: the Twitter bridge was not saving a foreign user record when making a foreign link. | |||
2010-02-10 | Queue daemon fixes: | Brion Vibber | |
* skip unnecessary unsubscribes on graceful shutdown -- takes a long time for many queues, slows down our restarts when hitting graceful mem limit * fix control channel (was broken when we switched to support multiple queue servers) | |||
2010-02-09 | Configurable delay between queuedaemon.php spawns/respawns to help stagger ↵ | Brion Vibber | |
out startups and subscriptions. Defaults to 1 second. $config['queue']['spawndelay'] = 1; | |||
2010-02-08 | Better checking for duplicate app names | Zach Copley | |
2010-02-08 | Disable deprecated 'since' parameter on public_timeline API; causes ↵ | Brion Vibber | |
performance problems. (since_id will work cleanly) | |||
2010-02-08 | Allow scripts/decache.php to blow out cache for objects that don't exist ↵ | Brion Vibber | |
(anymore). May miss keys other than the given or primary key, but should work for a lot of common cases where a bad entry's been removed from DB but lingers in cache. | |||
2010-02-08 | readme and version for beta5 | Evan Prodromou | |
2010-02-08 | Delete old Twitter user record when user changes screen name instead of ↵ | Zach Copley | |
updating. Simpler. | |||
2010-02-08 | Store Twitter screen_name, not name, for foreign_user.nickname when saving ↵ | Zach Copley | |
Twitter user. | |||
2010-02-05 | Merge branch 'temp' | Zach Copley | |
2010-02-05 | Actually store the timestamp on each nonce | Zach Copley | |
2010-02-05 | OAuth app name should not be null | Zach Copley | |
2010-02-05 | Fix issue with OAuth request parameters being parsed/stored twice when | Zach Copley | |
calling /api/account/verify_credentials.:format | |||
2010-02-05 | - Fix cache handling in TwitterStatusFetcher | Zach Copley | |
- Other stability fixes | |||
2010-02-05 | Added right margin for notice text. Helps Conversation notices look | Sarven Capadisli | |
better. | |||
2010-02-05 | Confirm dialog for reset OAuth consumer key and secret button | Zach Copley | |
2010-02-05 | Always check for an OAuth request. This allows OAuth clients to set an | Zach Copley | |
auth user, similar to how they can set one via http basic auth, even if one is not required. I think I finally got this right. | |||
2010-02-05 | Linkify notice source when posting from registered OAuth apps | Zach Copley | |
2010-02-05 | Suppress notice input box on OAuth authorization page | Zach Copley | |
2010-02-05 | Better token revocation | Zach Copley | |
2010-02-05 | Allow developers to delete OAuth applications | Zach Copley | |
2010-02-05 | OAuth app names should be unique. | Zach Copley | |
2010-02-05 | Prevents app statistic text from wrapping around avatar | Sarven Capadisli | |
2010-02-05 | Sentence case for app statistics | Sarven Capadisli | |
2010-02-04 | drop debug messages from inbox deletion fix | Brion Vibber | |
2010-02-04 | Inbox::streamNotices() with deletion compensation: inbox paging should more ↵ | Brion Vibber | |
or less work with deleted items now. No change in efficiency for the common case where nothing's deleted: does the same bulk fetch of just the notices we think we'll need as before, then if we turned up short keeps checking one by one until we've filled up to our $limit. This can leave us with overlap between pages, but we already have that when new messages come in between clicks; seems to be the lesser of evils versus not getting a 'before' button. More permanent fix for that will be to switch timeline paging in the UI to use notice IDs. | |||
2010-02-04 | Missed change when refactoring groups. Thanks macno | Eric Helgeson | |
2010-02-04 | Should fix spurious 'nickname taken' and 'email taken' errors on ↵ | Brion Vibber | |
registration. Form's checks for existing nicks & emails would incorrectly return true on the second lookup due to bad interaction with negative caching. (was checking $obj !== false but we return null now on negative cache hits, with false for cache misses) | |||
2010-02-04 | Add time-based cutoffs for public tag cloud, favorited lists to speed up ↵ | Brion Vibber | |
those queries. Defaulting to only looking at last 90 days of activity, can be adjusted up or down. $config['tag']['cutoff'] = 86400 * 90; $config['popular']['cutoff'] = 86400 * 90; Per-user and per-group tag clouds do not use the cutoff (and it doesn't help with indexing on them). | |||
2010-02-03 | Script to update profile URLs | Evan Prodromou | |
2010-02-03 | clear cache for Profile::hasRepeated() at Notice::insert() time | Evan Prodromou | |
2010-02-03 | clearcache.php column flag was conflicting with default flag | Evan Prodromou | |
2010-02-03 | showcache.php column flag was conflicting with default flag | Evan Prodromou | |
2010-02-03 | change 'sitetype' to 'siteplan' to use consistent language | Evan Prodromou | |
2010-02-03 | Merge branch 'master' of git@gitorious.org:statusnet/mainline | Evan Prodromou | |
2010-02-03 | add nickname as unique key for user_group table | Evan Prodromou | |
2010-02-02 | Fix regression breaking file attachments. This is what I get for rushing ↵ | Brion Vibber | |
fixes and not properly testing them. :P | |||
2010-02-02 | Apply xopher's fix to add 'sitetype' parameter to setup_status_network.sh, ↵ | Brion Vibber | |
exposed to the email | |||
2010-02-01 | Improve name validation checks on local File references | Brion Vibber | |
2010-02-01 | fix local file include vulnerability in doc.php | Evan Prodromou | |
Conflicts: actions/doc.php | |||
2010-02-01 | restructuring of User::registerNew() lost password munging | Evan Prodromou | |
2010-01-31 | Add a script to clear the cache for a given key | Evan Prodromou | |
Like showcache.php, clearcache.php clears the cache for a given key. | |||
2010-01-31 | buggy fetch for site owner | Evan Prodromou | |