summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-01-27Better alignment for notice in shownotice pageSarven Capadisli
2010-01-26Updated geolocation sharing in notice form for Realtime popSarven Capadisli
2010-01-26Setting the geo location cookie expire date far into the future: 2029 ;)Sarven Capadisli
2010-01-26Merge branch 'master' of git@gitorious.org:statusnet/mainlineSarven Capadisli
2010-01-26Updated howto create a themeSarven Capadisli
2010-01-26Added version info for MobileProfile pluginSarven Capadisli
2010-01-26Fixed innerHTML problem in IE7 and 8 for badge scriptSarven Capadisli
2010-01-26Removed mobile stylesheet from core output. If Mobile support isSarven Capadisli
seeked, MobileProfile plugin should be used.
2010-01-26Better alignment for notice options in MobileProfileSarven Capadisli
2010-01-26Updated notice item view where a) notice text no longer wraps aroundSarven Capadisli
(under author's photo) b) supplemental notice content and options will start right under notice text.
2010-01-26Missing null className for incoming email form legendSarven Capadisli
2010-01-26Updated path to farbtastic stylesheetSarven Capadisli
2010-01-26Moved farbtastic's stylesheet to use relative paths for its own imagesSarven Capadisli
2010-01-26Updated UI for notice aside content and notice options in MobileProfileSarven Capadisli
2010-01-26Inline script for maxlength is deprecatedSarven Capadisli
2010-01-26Using visibility:hidden instead of display:none for checkboxSarven Capadisli
2010-01-26An update to geolocation cookie to use a single file and set theSarven Capadisli
expiry date to 30 days from now.
2010-01-26Quick hack to avoid breaking with geonames off when there's some old cookie ↵Brion Vibber
state. This code's a little rough and tumble; any breakage halts JS execution and leaves the spinner going and no message submitted.
2010-01-26Some JS cleaning up for NoticeLocationAttach (which fixes also fixes aSarven Capadisli
few bugs in WebKit)
2010-01-26Took out focus out of textare when location share is enabled/disabled.Sarven Capadisli
Also avoids the conflict with the URL fragment on the conversation page.
2010-01-26Added missing position paramaterSarven Capadisli
2010-01-26JSLinting on JSONSarven Capadisli
2010-01-25Offload inbox updates to a queue handler to speed up posting onlineEvan Prodromou
Moved much of the writing that happens when posting a notice to a new queuehandler, distribqueuehandler. This updates tags, groups, replies and inboxes at queue time (or at Web time, if queues are disabled). To make this work well, I had to break up the monolithic Notice::blowCaches() and make cache blowing happen closer to where data is updated. Squashed commit of the following: commit 5257626c62750ac4ac1db0ce2b71410c5711cfa3 Author: Evan Prodromou <evan@status.net> Date: Mon Jan 25 14:56:41 2010 -0500 slightly better handling of blowing tag memory cache commit 8a22a3cdf6ec28685da129a0313e7b2a0837c9ef Author: Evan Prodromou <evan@status.net> Date: Mon Jan 25 01:42:56 2010 -0500 change 'distribute' to 'distrib' so not too long for dbqueue commit 7a063315b0f7fad27cb6fbd2bdd74e253af83e4f Author: Evan Prodromou <evan@status.net> Date: Mon Jan 25 01:39:15 2010 -0500 change handle_notice() to handle() in distributqueuehandler commit 1a39ccd28b9994137d7bfd21bb4f230546938e77 Author: Evan Prodromou <evan@status.net> Date: Mon Jan 25 16:05:25 2010 -0500 error with queuemanager commit e6b3bb93f305cfd2de71a6340b8aa6fb890049b7 Author: Evan Prodromou <evan@status.net> Date: Mon Jan 25 01:11:34 2010 -0500 Blow memcache at different point rather than one big function for Notice class commit 94d557cdc016187d1d0647ae1794cd94d6fb8ac8 Author: Evan Prodromou <evan@status.net> Date: Mon Jan 25 00:48:44 2010 -0500 Blow memcache at different point rather than one big function for Notice class commit 1c781dd08c88a35dafc5c01230b4872fd6b95182 Author: Evan Prodromou <evan@status.net> Date: Wed Jan 20 08:54:18 2010 -0500 move broadcasting and distributing to new queuehandler commit da3e46d26b84e4f028f34a13fd2ee373e4c1b954 Author: Evan Prodromou <evan@status.net> Date: Wed Jan 20 08:53:12 2010 -0500 Move distribution of notices to new distribute queue handler
2010-01-25Fix presence notification on XMPP thread (now foreground, not background)Brion Vibber
2010-01-24Use new StatusNetwork->serverName() to get full domain for wildcard config ↵Brion Vibber
until we rebuild queues to be based on nicknames. Fixes live bug with new *.status.net sites breaking queuedaemon.php
2010-01-24defaults for nickname and wildcardEvan Prodromou
2010-01-24save nickname and wildcard when setting up status networkEvan Prodromou
2010-01-24set correct key types for User_flag_profileEvan Prodromou
2010-01-24add function doc comment to User_flag_profile::create()Evan Prodromou
2010-01-22Fix unqueuemanager for updated QueueHandler interfaceBrion Vibber
2010-01-22Fix for stuck queue messages: wrap processing in stomp transactions so our ↵Brion Vibber
lack of an ACK if PHP dies actually triggers redelivery. Previously, messages once delivered would just get stuck in the queue seemingly forever if they never got ACKed. Note this could lead to partial duplication, for instance if the OMB or Twitter queue handlers die after 1/2 of the outgoing sends. Recommendations: * catch exceptions more aggressively within queue handlers (so only PHP fatal errors are likely to kill in the middle) * for processing that involves sending to multiple clients, consider a second queue similar to the XMPP output, eg for OMB: - first queue gets delivery list and builds message data, enqueueing it for each target address - second queue can handle each individual outgoing message (and attempt redelivery etc separately) This would also protect better against a recurring error preventing delivery in the second part, and could spread out any slow sends over multiple threads.
2010-01-22XMPP 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. Conflicts: scripts/xmppdaemon.php
2010-01-22Memcached_DataObject unnecessarily require_once'd itselfEvan Prodromou
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-20update changes in README0.9.0beta3Evan Prodromou
2010-01-20mark retweet api actions read-only where applicableEvan Prodromou
2010-01-20add class and function doc comments to PuSH pluginEvan Prodromou
2010-01-20whitespace changes to make phpcs happy for PuSH pluginEvan Prodromou
2010-01-20correctly get replies for a notice in PuSH pluginEvan Prodromou
2010-01-20use standard plugin configuration for PubSubHubBubEvan Prodromou
2010-01-20Revert "DEBUG HACK: error checking for xml_parse in XMPPHP input stream"Evan Prodromou
This reverts commit 906450e2f5b78a1c6f2dec2e21b9b5841df210f4. 1) It was a quick debug hack 2) it doesn't meet the requirements for changing extlib/ libraries
2010-01-20Merge branch 'master' of git@gitorious.org:statusnet/mainlineEvan Prodromou
2010-01-20update friends, not user, timeline for recipients of notice in PuSH pluginEvan Prodromou
2010-01-20DEBUG HACK: error checking for xml_parse in XMPPHP input streamBrion Vibber
2010-01-19Extra debug instrumentation for xmppdaemonBrion Vibber
2010-01-19allow all rights reserved, private dataEvan Prodromou
2010-01-18Merge branch 'master' of git@gitorious.org:statusnet/mainlineEvan Prodromou
2010-01-18add event for showing content license in actionEvan Prodromou
2010-01-16Cleanup for memcached host/port split -- apparently we use ';' on purpose, ↵Brion Vibber
restoring. Keeping fix for the notices spewing into the log.