summaryrefslogtreecommitdiff
path: root/actions
AgeCommit message (Collapse)Author
2010-01-24Missing null className for incoming email form legendSarven Capadisli
2010-01-24Updated path to farbtastic stylesheetSarven Capadisli
2010-01-22Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testingEvan Prodromou
2010-01-22do actual language negotiation for help docsEvan Prodromou
2010-01-22restructure doc.php for new useEvan Prodromou
2010-01-22action/doc.php is PHPCS cleanEvan Prodromou
2010-01-21XMPP queued output & initial retooling of DB queue manager to support ↵Brion Vibber
non-Notice objects. Queue handlers for XMPP individual & firehose output now send their XML stanzas to another output queue instead of connecting directly to the chat server. This lets us have as many general processing threads as we need, while all actual XMPP input and output go through a single daemon with a single connection open. This avoids problems with multiple connected resources: * multiple windows shown in some chat clients (psi, gajim, kopete) * extra load on server * incoming message delivery forwarding issues Database changes: * queue_item drops 'notice_id' in favor of a 'frame' blob. This is based on Craig Andrews' work branch to generalize queues to take any object, but conservatively leaving out the serialization for now. Table updater (preserves any existing queued items) in db/rc3to09.sql Code changes to watch out for: * Queue handlers should now define a handle() method instead of handle_notice() * QueueDaemon and XmppDaemon now share common i/o (IoMaster) and respawning thread management (RespawningDaemon) infrastructure. * The polling XmppConfirmManager has been dropped, as the message is queued directly when saving IM settings. * Enable $config['queue']['debug_memory'] to output current memory usage at each run through the event loop to watch for memory leaks To do: * Adapt XMPP i/o to component connection mode for multi-site support. * XMPP input can also be broken out to a queue, which would allow the actual notice save etc to be handled by general queue threads. * Make sure there are no problems with simply pushing serialized Notice objects to queues. * Find a way to improve interactive performance of the database-backed queue handler; polling is pretty painful to XMPP. * Possibly redo the way QueueHandlers are injected into a QueueManager. The grouping used to split out the XMPP output queue is a bit awkward.
2010-01-21Unimplement retweeted_by_me API action until we have a more efficient queryEvan Prodromou
2010-01-21retweet API methods are readonlyEvan Prodromou
2010-01-20mark retweet api actions read-only where applicableEvan Prodromou
2010-01-13remove debugging statement for friends_timelineEvan Prodromou
2010-01-13change double quotes to single quotes in numbered format stringEvan Prodromou
2010-01-13correct check for error in subscribe and unsubscribe actionsEvan Prodromou
2010-01-13add events for subscribing to people and joining groupsEvan Prodromou
2010-01-11Merge branch 'sessionidparam' into 0.9.xEvan Prodromou
Conflicts: lib/command.php
2010-01-11inject session before redirect for loginEvan Prodromou
2010-01-10remove redirect to OTP on login from login, registerEvan Prodromou
2010-01-10Lots of tiny message changes.Siebrand Mazeland
* Mostly punctuation updates so that the same message is used consistently in all of StatusNet. * Some cases of "Title Case" removed, because that does not appear to be used consistently.
2010-01-10fix check for ssl diff in loginEvan Prodromou
2010-01-10correctly check for ssl enabledEvan Prodromou
2010-01-10correctly check for ssl enabledEvan Prodromou
2010-01-10* L10n updates: consistent puctuationSiebrand Mazeland
* i18n updates: number parameters if more than one are being used
2010-01-09Use OTP to set cookies from registration actionEvan Prodromou
2010-01-09Redirect to a one-time-password when ssl and regular server are differentEvan Prodromou
2010-01-08Updated markup for versions pageSarven Capadisli
2010-01-08Added Brigitte Schuster (http://brigitteschuster.com) as one of theSarven Capadisli
contributors to StatusNet. She created the identi.ca, laconi.ca, and status.net logos.
2010-01-07make a list of pluginsEvan Prodromou
2010-01-07add a version action to give credit and list pluginsEvan Prodromou
2010-01-07clear profile location data if unparseable location stringEvan Prodromou
2010-01-07Fixes to bugs where non-local messages were being wrong put in the public ↵Ciaran Gultnieks
timeline and public xmpp feed
2010-01-06Fix broken API method /api/statusnet/groups/leave/:id.:formatZach Copley
2010-01-06Don't output notices from deleted users.Zach Copley
2010-01-05Require users to login to view attachments on private sitesCraig Andrews
Thank you jeff-themovie for this implementation!
2010-01-04Merge branch 'master' into 0.9.xEvan Prodromou
Conflicts: actions/publictagcloud.php classes/Memcached_DataObject.php
2010-01-04Ticket 2141: bugs with weighted popularity lists across year boundary.Brion Vibber
Consolidated several separate implementations of the same weighting algorithm into common_sql_weight() and fixed some bugs... For MySQL, now using timestampdiff() instead of subtraction for the comparison, so we get sane results when the year doesn't match, and utc_timestamp() rather than now() so we don't get negative ages for recent items with local server timezone. Unknown whether the same problems affect PostgreSQL, but note that it lacks the timestampdiff() SQL function.
2010-01-04Ticket 2141: bugs with weighted popularity lists across year boundary.Brion Vibber
Consolidated several separate implementations of the same weighting algorithm into common_sql_weight() and fixed some bugs... For MySQL, now using timestampdiff() instead of subtraction for the comparison, so we get sane results when the year doesn't match, and utc_timestamp() rather than now() so we don't get negative ages for recent items with local server timezone. Unknown whether the same problems affect PostgreSQL, but note that it lacks the timestampdiff() SQL function.
2010-01-04Don't spew notices when building tag cloud if there is no popularity sum to ↵Brion Vibber
divide by.
2010-01-04Updated element id for notice_data-geoSarven Capadisli
2009-12-29If we got an identified location at ajax check time, renormalize lat/lon and ↵Brion Vibber
naming. This'll match other displays of the names more consistently (Opera Plaza, San Francisco, CA, US instead of Opera Plaza, US)
2009-12-29Implement user interface for user to preview what location they are sharing ↵Craig Andrews
with a notice
2009-12-28Merge branch 'locshunt' into 0.9.xEvan Prodromou
2009-12-28Merge branch 'master' into 0.9.xEvan Prodromou
2009-12-28Move location-argument-handling code into a single functionEvan Prodromou
Moved the important parts of the location-argument-handling stuff to a single function. Handles defaults and overrides correctly, and easy to use. Changed Web and API channels to use it.
2009-12-28let users set location prefs from profile formEvan Prodromou
2009-12-28remove namespace setting from location; it's unusedEvan Prodromou
2009-12-28add events for unblocking a profileEvan Prodromou
2009-12-28events for blocking a userEvan Prodromou
2009-12-24Paths admin panel should not insist on an ssl server being specified,Zach Copley
ever.
2009-12-24Move ssl settings from site admin panel to paths admin panelZach Copley
2009-12-24Paths admin panel should not insist on an ssl server being specified,Zach Copley
ever.