Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-26 | 'on' is what checkboxes use for boolean true | Evan Prodromou | |
2010-02-06 | Move authorization for admin panels to AdminPanelAction class | Evan Prodromou | |
2010-02-06 | Moderator can make users admins of a group | Evan Prodromou | |
2010-02-05 | Don't spew warnings on usage of MEMCACHE_COMPRESSED constant when memcache ↵ | Brion Vibber | |
PHP extension is not present. Switched to a locally-defined Cache::COMPRESSED, translating that to MEMCACHE_COMPRESSED in the plugin. | |||
2010-02-05 | Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing | Zach Copley | |
2010-02-05 | Actually store the timestamp on each nonce | Zach Copley | |
2010-02-04 | Merge branch 'master' of gitorious.org:statusnet/mainline into testing | Brion Vibber | |
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-02 | 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-02 | Linkify notice source when posting from registered OAuth apps | Zach Copley | |
2010-02-02 | Better token revocation | Zach Copley | |
2010-02-02 | Allow developers to delete OAuth applications | Zach Copley | |
2010-02-01 | readme and version for beta50.9.0beta5 | Evan Prodromou | |
2010-02-01 | Don't enqueue into plugin or SMS queues when disabled (breaks unqueuehandler ↵ | Brion Vibber | |
if SMS queue isn't attached) | |||
2010-01-31 | move schema.type.php to typeschema.php like other files | Evan Prodromou | |
2010-01-31 | Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing | Evan Prodromou | |
2010-01-31 | Add Really Simple Discovery (RSD) support | Evan Prodromou | |
Anil Dash suggested that all implementers of the Twitter API include support for the remedial RSD format. This commit adds an RSD action that returns the API root and additional API data to help client developers discover and use our Twitter-compatible API. http://dashes.com/anil/2009/12/the-twitter-api-is-finished.html http://tales.phrasewise.com/rfc/rsd | |||
2010-01-31 | Add a robots.txt URL to the site root | Evan Prodromou | |
Adds a robots.txt file to the site root. Defaults defined by 'robotstxt' section of config. New events StartRobotsTxt and EndRobotsTxt to let plugins add information. Probably not useful if path is not /, but won't hurt anything, either. | |||
2010-01-30 | on exceptions, stomp logs the error and reenqueues | Evan Prodromou | |
2010-01-30 | removed describeTable from base class, and fixed it up in pgsql | Brenda Wallace | |
2010-01-30 | getTableDef() mostly working in postgres | Brenda Wallace | |
2010-01-30 | move the schema DDL sql off into seperate files for each db we support | Brenda Wallace | |
2010-01-29 | for single-user mode, retrieve either site owner or defined nickname | Evan Prodromou | |
2010-01-28 | Fix more fatal errors in queue edge cases | Brion Vibber | |
2010-01-28 | Don't attempt to resend XMPP messages that can't be broadcast due to the ↵ | Brion Vibber | |
profile being deleted. | |||
2010-01-28 | Merge branch 'master' of git@gitorious.org:statusnet/mainline | Brion Vibber | |
2010-01-28 | Wrap each bit of distrib queue handler's saving operation in a try/catch; ↵ | Brion Vibber | |
log exceptions but let everything else continue. | |||
2010-01-28 | Move sessions settings to its own panel | Zach Copley | |
2010-01-29 | Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing | Zach Copley | |
2010-01-29 | Adjust API authentication to also check for OAuth protocol params in the | Zach Copley | |
HTTP Authorization header, as defined in OAuth HTTP Authorization Scheme. | |||
2010-01-28 | Manual failover for stomp queues. | Brion Vibber | |
If an array of multiple servers is put in $config['queue']['stomp_server'], enqueues will pick a random server to send to (failing over automatically if any are down). Queue handling daemons connect all servers so they get events no matter where they were delivered. In case of disconnection, daemons should now handle it gracefully and attempt to reconnect every 60 seconds or so, automatically resubscribing to all queues once it's back up. Can put to 'native' failover for reads as well by disabling $config['stomp']['manual_failover'] = false; but this is untested and may explode in addition to requiring that your ActiveMQ cluster actually be set up to handle its own data distribution. Additionally, can choose which queues to mark as persistent by setting $config['stomp']['persistent'] to an array of queue names. | |||
2010-01-28 | Merge commit 'origin/master' into testing | Brion Vibber | |
2010-01-28 | Remove redundant session token field from form (was already being added by ↵ | Zach Copley | |
base class). | |||
2010-01-28 | Can now set $config['queue']['stomp_persistent'] = false; to explicitly ↵ | Brion Vibber | |
disable persistence when we queue items | |||
2010-01-28 | Removed unused variable assignment for avatar URL and added missing fn | Sarven Capadisli | |
2010-01-27 | dropping the setcookie() call from common_ensure_session() since we're ↵ | Brion Vibber | |
pretty sure it's unnecessary | |||
2010-01-27 | append '/' on cookie path for now (may still need some refactoring) | Brion Vibber | |
2010-01-28 | Merge branch 'master' of git@gitorious.org:statusnet/mainline | Evan Prodromou | |
2010-01-28 | set session cookie correctly | Evan Prodromou | |
2010-01-27 | Fix for Mapstraction plugin's zoomed map links | Brion Vibber | |
Move definition of NICKNAME_FMT above plugin initialization but below loading of Validate package. A merge error when refactoring setup lead to this not being defined yet when plugins were initialized, causing the router setup in MapstractionPlugin which tried to use this constant to fail. Result was bogus links and if you hit the URL directly the action would be "unrecognized". | |||
2010-01-27 | debug log line for control channel sub | Brion Vibber | |
2010-01-27 | increment software beta version | Evan Prodromou | |
2010-01-27 | Adds an emergency switch so we can run inbox distribution at save time ↵ | Brion Vibber | |
(bypassing 'distrib' queue) Set $config['queue']['inboxes'] = false to do so | |||
2010-01-28 | Remove debugging statement | Zach Copley | |
2010-01-28 | Some adjustments to the way API auth works after merging testing and 0.9.x | Zach Copley | |
2010-01-27 | HTTP auth provided is evaluated even if it's not required | Michele | |
2010-01-27 | Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing | Evan Prodromou | |
2010-01-27 | camelcase the uap param names | Evan Prodromou | |
2010-01-27 | move leaderboard to after the header | Evan Prodromou | |
2010-01-27 | Moved rectangle ad into aside and leaderboard to the right in header. | Sarven Capadisli | |
Intention for this layout was to reduce whitespace in header area |