aboutsummaryrefslogtreecommitdiffstats
path: root/includes/SpecialMaintenance.php
Commit message (Collapse)AuthorAgeFilesLines
* Use of $wgRequest, fixed two subfunctions to use the new link table but then ↵Tim Starling2004-04-011-24/+47
| | | | | | | realised neither of them will work anyway. Also some code formatting Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2895
* Some changes to the link tables. They now all use a key on cur_id for the ↵Brion Vibber2004-03-111-1/+4
| | | | | | | | | | | | | *_from column instead of strings, and have a unique index to force prevent any duplicate entries. There's not yet a clean step in the update script, so just clear out your links tables (patch-linktables.sql) and rebuild them with refreshLinks.php. This saves trouble in a number of places where we can now do joins with the link tables to get other info (such as cur_is_redirect!) as well as the name, and fewer bits need to be juggled on page renaming, as outgoing links no longer have to be changed (cur_id remains the same when a page is renamed). rebuildLinks.inc and some of the tools in the 'maintenance page' still need to be updated to work with the new setup. (Special:Maintenance needs a *lot* of cleanup in general. It's kind of a catch-all of vaguely defined features which suck performance like a hydroelectric dam.) Also I've slipped in some extra debug code. And, I think 'indexes.sql' is a big waste of time and should all be moved into tables.sql. Building indexes separately doesn't help on InnoDB and won't do anything on MyISAM either if you're just going to replace the table after it's built with an imported one from a dump which creates it with indexes. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2687
* Fix for compatibility with short_open_tag = OffBrion Vibber2004-02-181-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2485
* Use wfMsg()'s parametersBrion Vibber2003-11-151-6/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1956
* Nov. branch merge. Various features backported from stable, various bug fixes.Tim Starling2003-11-091-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1914
* changing wfQuery to allow replicationTim Starling2003-09-201-7/+7
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1681
* Protect against mispeelingspage with apostrophe, fix mysterious space in ↵Brion Vibber2003-07-111-1/+1
| | | | | | | dellog page for french Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1476
* Enhances special page links; allow some parameters to be passed via ↵Brion Vibber2003-07-021-9/+14
| | | | | | | wikilinks to special pages to make it easier to cite things like backlinks, contribs, options for recentchanges, etc Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1419
* Refactor some common code for offsets/limits; some preliminary stuff for ↵Brion Vibber2003-06-031-36/+6
| | | | | | | upload license notes and mysql4 fulltext support (not ready yet) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1378
* Initial revisionLee Daniel Crocker2003-04-141-0/+368
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1284 http://mediawiki.org/wiki/Special:Code/MediaWiki/1286