aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/archives
Commit message (Collapse)AuthorAgeFilesLines
* Merge 'real' beta4 from HEADBrion Vibber2004-06-271-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4179
* alter table statement for rc_ipTim Starling2004-06-171-0/+7
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4094
* profiling table, for profiling live wikisTim Starling2004-06-131-0/+10
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4063
* transactions, using updateArticle() instead of quickEdit()Tim Starling2004-06-111-2/+13
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3985
* used quickEdit()Tim Starling2004-06-021-1/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3841
* nowiki handlingGabriel Wicke2004-06-021-1/+2
| | | | | | | | * unstrip done for nowiki separately (unstripNoWiki()) * unstripNoWiki() called *after* doBlockLevels Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3835
* Short tags fixBrion Vibber2004-05-281-1/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3715
* bug fixesTim Starling2004-05-241-5/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3675
* patch to remove lcc_title column from linkscc table for 1.3Jerome Jamnicky2004-05-241-0/+6
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3674
* various bug fixesTim Starling2004-05-232-5/+8
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3667
* 1.2 -> 1.3 conversion using the web-based installer1.3.0beta1Tim Starling2004-05-221-0/+6
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3655
* various changes aimed at making a bare-bones 1.3 command line installer, for ↵Tim Starling2004-05-222-120/+129
| | | | | | | wikimedia Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3653
* Add categorylinks table to separately list category relationships. ActualBrion Vibber2004-05-152-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | _page_ links to category pages like [[:category:Some cat]] will stay in links/brokenlinks and not be listed in the category page list anymore. A link can optionally specify a sort key like this: [[category:cat|Sort me]]. The page will then be sorted in category lists according to the given text instead of the page name; thus categories may be sorted arbitrarily, by last name or whatever. There is also a timestamp field included on gwicke's request; this is not used yet. Also it will currently be updated at every edit of the page, this can be changed by implementing differential updating for the cat links. TODO: * Make sure that automatic sort keys are updated on page rename. * Make sure cateory pages get cache-invalidated and purged * Use proper text sorting instead of raw binary sort * Allow specification of the display style on category pages: comma list or bullet list or number list; by sortkey or by timestamp; etc Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3582
* Add an objectcache table for limited caching when memcached isn'tBrion Vibber2004-05-092-1/+11
| | | | | | | | | | available. Currently using for the message cache to avoid reading every message separately. This now is only slightly slower than memcached in my tests when $wgUseDatabaseMessages is enabled, so it's a bit of a speedup for common hosts. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3516
* Replace ugly abuse of log pages to store cached results of query pagesBrion Vibber2004-05-092-0/+16
| | | | | | | | | | | | | | | with a table that stores up to 1000 rows for each 'expensive' special page. This can be paged through, reducing the annoyingness of 50 result limits on the old system. Rebuilding the cache can be forced by adding "recache=1" URL parameter, but this will need to be refined with some sort of controls to prevent abuse. Added the user realname update to the installer's updater list, also. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3513
* include_once -> require_onceTim Starling2004-05-073-9/+9
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3502
* htaccessing some directories for dev using cvs tree as www tree ;)Antoine Musso2004-04-211-0/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3253
* Add final newlineBrion Vibber2004-04-181-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3205
* Added a user_real_name column to the user table, and added a patch SQL fileEvan Prodromou2004-04-181-0/+5
| | | | | | | | | | | | | | | | | | | to add this field. User.php stores and fetches the field, and has accessors for it. User login allows setting the field on account creation. The Preferences page allows changing the real name. The labels are available for the real name, and the explanation of the email field on login has been expanded to include an explanation of the real name field, too. Update script checks for the field, and adds it if it's missing. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3204
* Added text conversion phase, misc. improvementsTim Starling2004-03-271-17/+74
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2859
* Modification to moveCustomMessages.php to create redirects, related ↵Tim Starling2004-03-231-13/+50
| | | | | | | modifications in other files Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2806
* script to move "custom messages" to the Template namespaceTim Starling2004-03-231-0/+45
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2804
* Some changes to the link tables. They now all use a key on cur_id for the ↵Brion Vibber2004-03-112-0/+53
| | | | | | | | | | | | | *_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
* Made linkscc title column case sensitiveMr. E232004-03-101-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2685
* Mark some old scripts as obsolete; this keeps them from being accidentally ↵Brion Vibber2004-03-033-1/+22
| | | | | | | run via web, among other things Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2605
* Note ipb_expiry changeBrion Vibber2004-02-271-0/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2528
* Fix for compatibility with short_open_tag = OffBrion Vibber2004-02-183-3/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2485
* Two blocking features: IP range blocks, and expiry times configurable ↵Tim Starling2004-02-141-0/+8
| | | | | | | | | block-by-block. Possible issue: uses strtotime(), which is very handy but in English Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2473
* Add index to recentchanges to optimize Special:NewpagesBrion Vibber2004-01-252-0/+14
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2360
* better conversion/backwards compatibilityTim Starling2004-01-181-0/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2304
* * Recent Changes improvements: object oriented back end, move page ↵Tim Starling2004-01-171-0/+6
| | | | | | | | | | | annotation and (untested) message queue feed. * Misc. bugs fixed in DatabaseFunctions.php and Skin.php. * install-utils, install and update utilise Database objects instead of handling their own connections * schema change for RC improvement -- added rc_type, rc_moved_to_title and rc_moved_to_ns Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2294
* A patch to cache articles after conversion to HTML but before insertionMr. E232004-01-071-0/+15
| | | | | | | | into a full page. Significant speed improvements on cache hits, especially on pages with many links. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2264
* Article.php:Mr. E232003-12-131-0/+9
| | | | | | | | | | | | | | | | | * Made updating of page view stats faster my buffering them in a HEAP table until many pages can be updated at once. tables.sql: * hitcounter table patch-hitcounter.sql: * hitcounter table update.php: * Creating hitcounter table when necessary Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2190
* Add forgotten index patchBrion Vibber2003-11-202-0/+38
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2021
* Add manual patch for linkscc table creationBrion Vibber2003-11-192-0/+14
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2002
* Nov. branch merge. Various features backported from stable, various bug fixes.Tim Starling2003-11-091-0/+10
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1914
* missing ipblocks infoBrion Vibber2003-09-222-0/+8
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1703
* More wfQuery() conversionTim Starling2003-09-202-41/+41
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1687
* Patch to create interwiki table in database for interwiki mappings.Brion Vibber2003-08-212-0/+22
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1590
* Refactor some common code for offsets/limits; some preliminary stuff for ↵Brion Vibber2003-06-031-0/+5
| | | | | | | upload license notes and mysql4 fulltext support (not ready yet) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1378
* changed KEY to INDEXErik Moeller2003-05-231-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1351
* newlineBrion Vibber2003-05-231-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1349
* Patch for speeding up "Oldest articles" special page.Erik Moeller2003-05-232-0/+9
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1348
* Initial revisionLee Daniel Crocker2003-04-1414-0/+1804
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1284 http://mediawiki.org/wiki/Special:Code/MediaWiki/1286