summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-28Fix charset setting for plugin localizations; default setting was blanking ↵Brion Vibber
out non-ASCII chars. Needed for eg Bulgarian translation of Facebook plugin, was previously showing all as ???s. Now works yay!
2010-04-28add rsd to the list of login actionsBrion Vibber
Allows rsd.xml to be reached on private sites. Fixes http://status.net/trac/ticket/2309 Conflicts: index.php
2010-04-23Test cases and fixes for Atom and RSS content decoding.Brion Vibber
Fix extraction of Atom <content type="text"> and <content type="html">; we were failing to escape plaintext source data to HTML, and doing an extraneous double-deescape on HTML source resulting in breakage of notices containing text that looks like HTML. Only <content type="xhtml"> was working correctly previously. Fixes for RSS2 content processing: we were failing to load <content:encoded> at all due to using wrong element name, and were applying an extraneous de-escape for <description> rather than the escaping that is required to turn plaintext into HTML. (Per spec, <description> must be plaintext.)
2010-04-23Rerun feed discovery and update the feed, salmon, and hub for the given ↵Brion Vibber
OStatus remote profile. Restarts subscription fresh as well. update-profile.php -sexample.com http://example.com/path/to/profile/url
2010-04-23Ticket #93: pretty up the auto-submit for OpenID logins a bit.Brion Vibber
* throwing in our spinner * cleanup of texts * "If this doesn't go through click the button" instead of just a mystery button * slightly faster submission: immediate at end of page rather than waiting for jQuery to confirm document setup completion
2010-04-23Fix to regression in last commit; wrong field name for homepage blacklistBrion Vibber
2010-04-23Fix for Blacklist plugin: was saving an empty entry if blacklist was empty, ↵Brion Vibber
which would match *all* possible nickname registrations, preventing all registration on mozilla.status.net. Now saving only non-empty lines, and only matching non-empty lines so we don't fail if we still have a bogus entry.
2010-04-23Fix keys / keyTypes for Blacklist plugin - was spewing notices for undefined ↵Brion Vibber
array indexes when saving blacklist entries from admin panel
2010-04-23Fix to make blowing of replies stream cache more consistent when receiving ↵Brion Vibber
replies. (Was being done at mail notify time instead of at save time for local replies; now moved to reply save time internally so it can't get forgotten)
2010-04-22OStatus: CLI script to force a renewal on the given PuSH subscription. May ↵Brion Vibber
help when we get out of sync with the hub. php plugins/OStatus/scripts/resub-feed.php -smysite http://example.com/some/atom/feed
2010-04-21Fix exceptions with bad gravatar URLsEvan Prodromou
2010-04-21fix reference error in RSSCloud pluginEvan Prodromou
2010-04-21Revert "Update release notes and version number for 0.9.2"Brion Vibber
This reverts commit 98f0d970da98e5b6de18972d033320a191152eb4. Per xopher we're not yet ready to push 0.9.2 theme directories live; we also haven't merged down various things from testing that need to be in the release such as installer fixes.
2010-04-20Update release notes and version number for 0.9.2Zachary Copley
2010-04-20Fix email notifications for @-replies that come via OStatus.Brion Vibber
* Moved notification sending from Notice::saveReplies to distrib queue handler, so it'll pull from the reply set we've saved regardless of how we got it. * Set up gettext infrastructure for command-line scripts; gets localization mail notifications etc working from background queues. * Adjusted locale switching: common_switch_locale() works at runtime for bg scripts, forces a message catalog update
2010-04-20Ticket #2291: fix typo in SMS docBrion Vibber
2010-04-19Disable the send-notice form at the top of the page OStatus subscription ↵Brion Vibber
confirmation page to work around bugs in Cloudy theme. This is really just a hack for the broken CSS in the Cloudy theme, I think; copying from other non-notice-navigation pages that do this as well. There will be plenty of others also broken.
2010-04-19Fix ticket #2289: registration links were showing in top nav bar, login page ↵Brion Vibber
message when site set to invite-only or closed registration, when the 'register' action can't be used.
2010-04-15Allow setconfig.php to Print Entire ConfigChristopher Vollick
Previously it only printed out the configuration in the DB. Now it can also print out the entire current configuration.
2010-04-14Ticket #2205: pass geo locations over Twitter bridge (will only be used if ↵Brion Vibber
enabled on the Twitter side)
2010-04-14Fix for "#foo !foo" in same notice failing during save, causing failout ↵Brion Vibber
before distribution. Move saveGroups after saveTags when saving notices; groups may save additional tags, so need to be moved after so the check for duplicates actually works.
2010-04-14move comment to correct placeBrion Vibber
2010-04-12showplugins.php: dump list of activated plugins and their settings on this siteBrion Vibber
2010-04-10Allow blocking someone who's not currently subscribed to you (prevents ↵Brion Vibber
seeing @-replies from them, or them subbing to you in future)
2010-04-10catch UserNoProfileException and continueEvan Prodromou
2010-04-09Fix for strip_geo's decaching; also added --all option to run over all ↵Brion Vibber
notices by given profile to help in fixing up cache inconsistencies
2010-04-09fix attributes on homepage outputEvan Prodromou
2010-04-09Merge branch 'master' of gitorious.org:statusnet/mainlineEvan Prodromou
2010-04-09Run block checks on remote OStatus repliesBrion Vibber
2010-04-09Fix localization for license notice in page footer (for ticket #2274: i18n ↵Brion Vibber
cleanup)
2010-04-09Avoid E_NOTICE spew when listing group members who aren't adminsBrion Vibber
2010-04-09Undefined Variable in foafgroup.phpChristopher Vollick
Probably just left over from the past.
2010-04-09Merge branch 'master' of gitorious.org:statusnet/mainlineEvan Prodromou
2010-04-08scripts/strip_geo.php to remove geodata from notices by a given user/profile.Brion Vibber
May be slow or run out of memory if run on particularly prolific posters -- not yet optimized for that case. Note that geodata that has already been sent out to other services (via ostatus, omb, twitter, etc) will not be removed from them. (fixed version -- previous had accidentally undone another commit)
2010-04-08In single-user mode, link #hashtags to the user's tagged stream rather than ↵Brion Vibber
the global tag action, which isn't registered. Previously they would end up pointing to the home URL.
2010-04-08Fix for error during handling of HTTP error response case in Geonames lookupsBrion Vibber
2010-04-08drop onStartShowHeadElements handler from MobileProfile; just duplicated the ↵Brion Vibber
original code path, and after removing the bogus notice-spewing code it was running those things twice.
2010-04-08Merge branch 'master' of gitorious.org:statusnet/mainlineEvan Prodromou
2010-04-07fixup_blocks.php: finds any stray subscriptions in violation of blocks, and ↵Brion Vibber
removes them.
2010-04-07Merge branch 'master' of git@gitorious.org:statusnet/mainlineEvan Prodromou
2010-04-07show PEAR_Error message, not the objectEvan Prodromou
2010-04-07Made it so that settag would list tags.Christopher Vollick
Very useful to be able to know what tags a site already has.
2010-04-06Handle attempt to subscribe a local user via their remote webfinger ↵Brion Vibber
reference more gracefully. The ensure* family of functions will now return an OStatusShadowException in this case, which gives us a pleasant error message instead of a giant exception backtrace when you do 'sub somebody@this.local.server'. Can be extended later to allow actually using the local profile, since we could figure it out.
2010-04-06Set a default 2-second timeout on Geonames web service lookups. After a ↵Brion Vibber
failure, further lookups in the same process will be skipped for the next 60 seconds (also configurable). Makes a Geonames outage much less disruptive to site operations.
2010-04-06Allow Meteor plugin to be configurable via configuration database or file.Brion Vibber
As there's no admin control panel yet, this is mainly meant for batch administration and using setconfig.php
2010-04-06Add a User-Agent fragment blacklist to MobileProfile: sticking iPad on the ↵Brion Vibber
regular theme, which works better on its larger screen (was tripped on 'mobile' in the UA though we had no explicit check for 'ipad' previously)
2010-04-06Comment out unreachable code spewing notices due to use of undefined ↵Brion Vibber
variables in MobileProfile. This needs some cleanup...
2010-04-05Some localization cleanup and doc to aid in customization:Brion Vibber
* added locale/en/LC_MESSAGES/statusnet.po to make it easier to start customizing English texts * added notes to locale/README about customizing and how to disable languages you haven't customized * renamed PO templates from *.po to *.pot to match general conventions and reduce confusion for people trying to find which file they're supposed to edit
2010-04-05Clean up and clarify output on fix-shadow.phpBrion Vibber
2010-04-05use nofollow for subscribers listEvan Prodromou