Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-31 | Merge branch 'master' of git@gitorious.org:statusnet/mainline into testing | Brion Vibber | |
2010-03-31 | use Subscription::cancel() to cancel all subscriptions on block | Evan Prodromou | |
2010-03-31 | do complete unsubscribe process when deleting a user | Evan Prodromou | |
2010-03-30 | Ticket #1281: JID validation now more or less follows spec instead of ↵ | Brion Vibber | |
calling e-mail validator Basic splitting/validation code submitted via http://status.net/wiki/XMPP/JID_validation -- Copyright 2009 Patrick Georgi <patrick@georgi-clan.de> Licensed under ISC-L, which is compatible with everything else that keeps the copyright notice intact. Added PEAR Net_IDNA package to extlib to handle IDN normalization (also used by Validate's email verifier if present). * added test suite, supplemented my own test cases with JID validation and normalization test cases from libpurple * follows XMPP rules for validation of name part * fixes for normalization with non-ASCII names * will do domain checks if $config['email']['check_domain'] is on, checking for an XMPP-server SRV record or any lookup. (We don't actually need to ping those direct though.) * some more obscure stringprep validation rules aren't quite followed yet, but we err on the side of permissiveness. * we still don't actually let you save your address with a resource on it, as we strip resources when looking up users who've sent us presence or message updates. I would recommend saving the outgoing resource as a separate field if/when we add that..? | |||
2010-03-30 | Shared cache key option for Geonames plugin, lets multi-instance sites share ↵ | Brion Vibber | |
their cached geoname lookups. Example: unset($config['plugins']['default']['Geonames']); addPlugin('Geonames', array('cachePrefix' => 'statusnet:shared')); | |||
2010-03-30 | Shared cache key option for Geonames plugin, lets multi-instance sites share ↵ | Brion Vibber | |
their cached geoname lookups. Example: unset($config['plugins']['default']['Geonames']); addPlugin('Geonames', array('cachePrefix' => 'statusnet:shared')); | |||
2010-03-30 | Update call for renamed OStatus functions -- installer now no longer fails ↵ | Brion Vibber | |
with a PHP fatal error when trying to set up the subscription to update@status.net. | |||
2010-03-30 | Some fixes to make the twitterstatusfetcher behave better in a multi-site ↵ | Zach Copley | |
configuration | |||
2010-03-30 | Fix for error output on invalid user ID to api groups list | Brion Vibber | |
2010-03-30 | Fix for error output on invalid user ID to api groups list | Brion Vibber | |
2010-03-30 | Fixes for apigrouplist - notice spew from undefined var, notice spew from ↵ | Brion Vibber | |
missing escape in sprintf format | |||
2010-03-30 | Quick fixes for grouplistall: | Brion Vibber | |
* respect count instead of listing all groups * respect page parameter * don't spew notice on undefined $id * don't spew notice on undefined $group->homepage_url (dropped the element since there's nothing to go in it) | |||
2010-03-30 | Fixes for apigrouplist - notice spew from undefined var, notice spew from ↵ | Brion Vibber | |
missing escape in sprintf format | |||
2010-03-30 | Quick fixes for grouplistall: | Brion Vibber | |
* respect count instead of listing all groups * respect page parameter * don't spew notice on undefined $id * don't spew notice on undefined $group->homepage_url (dropped the element since there's nothing to go in it) | |||
2010-03-29 | Fix to profile location in FOAF output: longitude was repeating the latitude ↵ | Brion Vibber | |
by mistake | |||
2010-03-29 | Fix to profile location in FOAF output: longitude was repeating the latitude ↵ | Brion Vibber | |
by mistake | |||
2010-03-29 | Include meta charset header in saved HTML file for long OStatus messages; ↵ | Brion Vibber | |
without, DOMDocument::loadHTML assumed Latin-1 instead of UTF-8. | |||
2010-03-29 | Include meta charset header in saved HTML file for long OStatus messages; ↵ | Brion Vibber | |
without, DOMDocument::loadHTML assumed Latin-1 instead of UTF-8. | |||
2010-03-29 | Tweak to Eugene Crosser's patch to make transactions and acks configurable; ↵ | Brion Vibber | |
disabling them gets basic message delivery working under MorbidQ, and may help with RabbitMQ etc. I swapped the settings from negative to positive ($config['queue']['stomp_transactions'] = false rather than $config['queue']['stomp_no_transactions'] = true), gave them defaults (both on for best ActiveMQ experience), and added notes to the README about configuring them. | |||
2010-03-29 | Make stomp queue manager work with basic servers | Eugene Crosser | |
Signed-off-by: Eugene Crosser <crosser@average.org> | |||
2010-03-29 | Merge branch 'master' into testing | Brion Vibber | |
Conflicts: plugins/Blacklist/BlacklistPlugin.php | |||
2010-03-29 | Renamed HTTPResponse class to StatusNet_HTTPResponse to avoid conflict with ↵ | Brion Vibber | |
PECL HTTP extension. The class isn't referenced by name by any other code I can see so this should have no side effects. | |||
2010-03-29 | Add $config['db']['annotate_queries'] option to include caller ID comments ↵ | Brion Vibber | |
into queries. Comment can then be seen in process list, slow query logs on the server, aiding in tracking down unexpected slow queries. SELECT /* queuedaemon.php Ostatus_profile->processPost */ * FROM notice WHERE ( notice.uri = 'http://stormcloud.local/mublog2/notice/479' ) INSERT /* POST Notice::saveNew */ INTO notice (profile_id , content .... | |||
2010-03-28 | RSSCloudPlugin's onRouterInitialized() should expect pass by value instead ↵ | Zach Copley | |
of reference | |||
2010-03-28 | Remove debug line that crept into a commit a while back, breaking realtime ↵ | Brion Vibber | |
when Firebug wasn't present | |||
2010-03-28 | don't try to get to database at initialize time | Evan Prodromou | |
2010-03-28 | add an option to run a command as the site owner | Evan Prodromou | |
2010-03-28 | continue deleting even if user profile record is missing | Evan Prodromou | |
2010-03-28 | update README and version number0.9.1 | Evan Prodromou | |
2010-03-27 | move check for bad IDs from activityobject to activity and make simpler | Evan Prodromou | |
2010-03-27 | reverse order of activity parse test arguments | Evan Prodromou | |
2010-03-27 | Some fixes to make the twitterstatusfetcher behave better in a multi-site ↵ | Zach Copley | |
configuration | |||
2010-03-26 | Really make sure we return 'true' and 'false' strings for boolean vals in ↵ | Zach Copley | |
api/statusnet/config.:format. | |||
2010-03-26 | Return an http auth error, when a client sends in an invalid auth user, even ↵ | Zach Copley | |
when http auth is not required. | |||
2010-03-26 | Really make sure we return 'true' and 'false' strings for boolean vals in ↵ | Zach Copley | |
api/statusnet/config.:format. | |||
2010-03-26 | Revert "Make sure we return 'true' and 'false' strings for boolean vals in ↵ | Zach Copley | |
api/statusnet/config.:format" This reverts commit 419c38cc0bf3f2649be9ad18e983b9f0ac8dfec0. | |||
2010-03-26 | Make sure we return 'true' and 'false' strings for boolean vals in ↵ | Zach Copley | |
api/statusnet/config.:format | |||
2010-03-26 | Return an http auth error, when a client sends in an invalid auth user, even ↵ | Zach Copley | |
when http auth is not required. | |||
2010-03-26 | Drop debug statements on every regex match from Blacklist plugin; filling ↵ | Brion Vibber | |
the logs a little faster than ops likes. :) | |||
2010-03-26 | Drop debug statements on every regex match from Blacklist plugin; filling ↵ | Brion Vibber | |
the logs a little faster than ops likes. :) | |||
2010-03-26 | move base64_url_(encode|decode) to static functions in Magicsig | James Walker | |
2010-03-26 | move base64_url_(encode|decode) to static functions in Magicsig | James Walker | |
2010-03-26 | Fix for XHR more text behaviour on conversation pages | Sarven Capadisli | |
2010-03-26 | Do ostatus queue first | Evan Prodromou | |
We do the OStatus queue first, so if we're sending a notice to the same server twice (e.g., with OMB), our richer and more featureful notice comes in first. | |||
2010-03-25 | Tweak to OStatus long message cropping: use original source notice URL for ↵0.9.1rc1 | Brion Vibber | |
the link in the text version, don't shorten the link for the HTML so we can append params to it in JS. Conflicts: plugins/OStatus/classes/Ostatus_profile.php | |||
2010-03-25 | Add doc comments on saveHTMLFile; drop the extra <div> wrapping the contents ↵ | Brion Vibber | |
to make it easier to extract without getting extra markup. | |||
2010-03-25 | Merge branch 'master' of git@gitorious.org:statusnet/mainline | Brion Vibber | |
2010-03-25 | Restore lost addition of inline HTML attachment display. | Brion Vibber | |
2010-03-25 | version number and codename | Evan Prodromou | |
2010-03-25 | Merge branch 'master' of git@gitorious.org:statusnet/mainline | Evan Prodromou | |