summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2010-02-02Merge branch '0.9.x' into 1.0.xCraig Andrews
Conflicts: EVENTS.txt lib/imqueuehandler.php lib/jabber.php lib/util.php plugins/Xmpp/Sharing_XMPP.php
2010-02-02Merge branch 'testing' of git@gitorious.org:statusnet/mainline into 0.9.xBrion Vibber
2010-02-02Linkify notice source when posting from registered OAuth appsZach Copley
2010-02-02Better token revocationZach Copley
2010-02-02Allow developers to delete OAuth applicationsZach Copley
2010-02-02Linkify notice source when posting from registered OAuth appsZach Copley
2010-02-02Better token revocationZach Copley
2010-02-02Allow developers to delete OAuth applicationsZach Copley
2010-02-01readme and version for beta50.9.0beta5Evan Prodromou
2010-02-01Merge branch 'testing' of git@gitorious.org:statusnet/mainline into 0.9.xBrion Vibber
2010-02-01Don't enqueue into plugin or SMS queues when disabled (breaks unqueuehandler ↵Brion Vibber
if SMS queue isn't attached)
2010-01-31Merge branch 'testing' into 0.9.xEvan Prodromou
Conflicts: actions/apioauthauthorize.php
2010-01-31move schema.type.php to typeschema.php like other filesEvan Prodromou
2010-01-31Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testingEvan Prodromou
2010-01-31Add Really Simple Discovery (RSD) supportEvan 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-31Add a robots.txt URL to the site rootEvan 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-30on exceptions, stomp logs the error and reenqueuesEvan Prodromou
2010-01-30removed describeTable from base class, and fixed it up in pgsqlBrenda Wallace
2010-01-30getTableDef() mostly working in postgresBrenda Wallace
2010-01-30move the schema DDL sql off into seperate files for each db we supportBrenda Wallace
2010-01-29Pass username and nickname to autoregister so auth plugins can set the ↵Craig Andrews
nickname correct when creating a new user. Continues fixing what Eric Helgeson pointed out in 01eb4e8f003bf62575ec16dfb6127d7534be9c88
2010-01-29autoRegister() expects a username existing in ldap, not the suggested_nicknameEric Helgeson
2010-01-29for single-user mode, retrieve either site owner or defined nicknameEvan Prodromou
2010-01-28Fix more fatal errors in queue edge casesBrion Vibber
2010-01-28Don't attempt to resend XMPP messages that can't be broadcast due to the ↵Brion Vibber
profile being deleted.
2010-01-28Merge branch 'master' of git@gitorious.org:statusnet/mainlineBrion Vibber
2010-01-28Wrap each bit of distrib queue handler's saving operation in a try/catch; ↵Brion Vibber
log exceptions but let everything else continue.
2010-01-28Move sessions settings to its own panelZach Copley
2010-01-28Move sessions settings to its own panelZach Copley
2010-01-29Adjust API authentication to also check for OAuth protocol params in theZach Copley
HTTP Authorization header, as defined in OAuth HTTP Authorization Scheme.
2010-01-29Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testingZach Copley
2010-01-29Adjust API authentication to also check for OAuth protocol params in theZach Copley
HTTP Authorization header, as defined in OAuth HTTP Authorization Scheme.
2010-01-28Manual 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-28Merge commit 'origin/master' into testingBrion Vibber
2010-01-28Merge branch '0.9.x' into 1.0.xCraig Andrews
2010-01-28Add backwards compatibility for the XMPP configuration before XMPP was made ↵Craig Andrews
into a plugin
2010-01-28Remove redundant session token field from form (was already being added by ↵Zach Copley
base class).
2010-01-28Remove redundant session token field from form (was already being added by ↵Zach Copley
base class).
2010-01-28Can now set $config['queue']['stomp_persistent'] = false; to explicitly ↵Brion Vibber
disable persistence when we queue items
2010-01-28Removed unused variable assignment for avatar URL and added missing fnSarven Capadisli
2010-01-28Removed unused variable assignment for avatar URL and added missing fnSarven Capadisli
2010-01-27dropping the setcookie() call from common_ensure_session() since we're ↵Brion Vibber
pretty sure it's unnecessary
2010-01-27append '/' on cookie path for now (may still need some refactoring)Brion Vibber
2010-01-28Merge branch 'master' of git@gitorious.org:statusnet/mainlineEvan Prodromou
2010-01-28set session cookie correctlyEvan Prodromou
2010-01-27Fix for Mapstraction plugin's zoomed map linksBrion 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-27debug log line for control channel subBrion Vibber
2010-01-27Merge branch '0.9.x' into 1.0.xCraig Andrews
Conflicts: lib/queuemanager.php
2010-01-27increment software beta versionEvan Prodromou
2010-01-27Adds 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