Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-13 | suppress notices for non-present sections | Brion Vibber | |
2010-10-13 | Filter table definitions to scrub out unsupported features before trying to ↵ | Brion Vibber | |
alter a table. This lets us skip those where we end up trying to change unsupported features. | |||
2010-10-13 | Merge branch '1.0.x' into schema-x | Brion Vibber | |
2010-10-12 | Add a doc page that links to the StatusNet wiki API page | Craig Andrews | |
Add a redirect action that merely redirects to another action Redirect /api to /doc/api so users don't get the "lame" "No such user" error message | |||
2010-10-12 | some of the ensureTable stuff partially working | Brion Vibber | |
2010-10-12 | Merge branch '0.9.x' into 1.0.x | Brion Vibber | |
2010-10-12 | Improve cache-friendliness of user_group->delete(). | Brion Vibber | |
Doesn't clear all possible cached entries, but this should get the ones that matter most: lookups by id, nickname, and alias. This should ensure that if a group name gets reused as a new group or alias, it should work properly. There are some user-visible areas that aren't clear such as the 'top groups' lists on the GroupsAction sidebar; if a deleted group appears in those lists it'll go away within an hour when the cached query expires. | |||
2010-10-12 | Cascading deletion for user_group; doesn't yet work properly with caching. | Brion Vibber | |
2010-10-12 | Add a basic group deletion for moderator users. | Brion Vibber | |
2010-10-12 | Merge branch 'master' of gitorious.org:statusnet/mainline into 0.9.x | Brion Vibber | |
2010-10-12 | Followup to IIS installer tweaks in [9bb48c36]: | Brion Vibber | |
* skip 0-byte config files when initializing, go ahead and redirect to installer if no non-0-byte files * tweak warning on installer.php to let you know if you have a 0-byte config.php that's not writable, as opposed to generally already having a config.php with data in it | |||
2010-10-12 | Initial version of ModHelper plugin, with basic functionality but the UI ↵ | Brion Vibber | |
stripped out until it's easier to get it done. * users need to have 'modhelper' role manually added via userrole.php for now * modhelper users can sandbox/unsandbox and silence/unsilence any user ** note that no new logging has been added for these moderator actions * no user deletion for modhelpers * probably no UserFlags special views for modhelpers | |||
2010-10-11 | fix for column prefixes in table/index building | Brion Vibber | |
2010-10-11 | fix for index gen | Brion Vibber | |
2010-10-11 | tweak for strings | Brion Vibber | |
2010-10-11 | tweak for mysql | Brion Vibber | |
2010-10-11 | Start reworking things to build create table stuff (can view via ↵ | Brion Vibber | |
dumpschema.php --build) | |||
2010-10-11 | PgsqlSchema can now pull primary, unique, mutli-value, *and* foreign keys :D | Brion Vibber | |
2010-10-11 | Now pulling non-primary/unique index data for PG as well... need to sort out ↵ | Brion Vibber | |
conflicts with the other data and make foreign references work right :D | |||
2010-10-11 | quick syntax fix | Brion Vibber | |
2010-10-11 | Ticket #2811 use more consistent max limit for OAuth application ↵ | Brion Vibber | |
registration descriptions; now using the field max of 255 rather than $config['site']['textlimit'] as fallback if $config['application']['desclimit'] is unset or out of bounds. | |||
2010-10-09 | Localisation updates from http://translatewiki.net. | Siebrand Mazeland | |
2010-10-08 | Merge branch 'schema-x' of /Users/brion/pages/mublog into schema-x | Brion Vibber | |
2010-10-08 | Starting on adapting postgresql schema class to look stuff up in the new ↵ | Brion Vibber | |
drupalish format... Fetching basic column data and unique indexes. Still needs detail work, multi-value indexes, foreign keys, and distinguishing the primary key. Since we don't get comments and such, for cleaner comparisons we should probably do a filtering on supported features. | |||
2010-10-08 | Merge branch '0.9.x' into 1.0.x | Brion Vibber | |
2010-10-08 | Merge branch 'fatals' into 0.9.x | Brion Vibber | |
2010-10-08 | execution guard fixes in Facebook plugin files | Brion Vibber | |
2010-10-08 | Normalize execution guards in OpenID plugin files; avoids annoying fatal ↵ | Brion Vibber | |
errors when .php files get spidered. | |||
2010-10-08 | Check for Twitter foreign link actually existing before trying to delete it; ↵ | Brion Vibber | |
friendlier error message in TwittersettingsAction | |||
2010-10-08 | Fix fatal error in FacebookremoveAction if we end up getting called double ↵ | Brion Vibber | |
and the foreign_link entry has already been removed. | |||
2010-10-08 | Normalize execution guards in imap plugin files. | Brion Vibber | |
2010-10-08 | Normalize execution guards on OStatus php files; mostly helps cut down on ↵ | Brion Vibber | |
annoying 'class not found' errors when something spiders the dirs. :P | |||
2010-10-08 | Fix PHP fatal error in DeletenoticeAction: died when we had a valid notice, ↵ | Brion Vibber | |
but weren't logged in due to accessing $this->user before the login check. Moved check up to prepare() from handle() so it's done before usage | |||
2010-10-07 | Some more poking at schema stuff, on the road towards a more portable ↵ | Brion Vibber | |
table-modification with the new schema bits | |||
2010-10-07 | fix up some more 'not null's and such | Brion Vibber | |
2010-10-07 | Fix detection of auto_increment fields in MySQL (sets them as 'serial' type) | Brion Vibber | |
2010-10-07 | Add --all option on dumpschema.php to check all core tables | Brion Vibber | |
2010-10-07 | stop str_repeat from whinging about being run with repeat value of 0. :P | Brion Vibber | |
2010-10-07 | some more cleanup on table defs | Brion Vibber | |
2010-10-07 | Some cleanup on detecting types | Brion Vibber | |
2010-10-07 | Add --diff option to dumpschema.php to run a (quickie text) diff betwen the ↵ | Brion Vibber | |
theoretical and detected schemas for the given tables | |||
2010-10-07 | output tweak hack for primary keys on single line | Brion Vibber | |
2010-10-07 | Pretty up the table dumper :D | Brion Vibber | |
2010-10-07 | Finish patching up the index fetching in new schema stuff for mysql | Brion Vibber | |
2010-10-07 | tweak for Managed_DataObject table defs | Brion Vibber | |
2010-10-07 | Merge branch '0.9.x' into 1.0.x | Brion Vibber | |
2010-10-07 | Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x | Brion Vibber | |
2010-10-07 | Merge branch 'master' into 0.9.x | Brion Vibber | |
2010-10-07 | Merge branch 'bitly' | Brion Vibber | |
2010-10-07 | Add a README for BitlyUrlPlugin | Brion Vibber | |