aboutsummaryrefslogtreecommitdiffstats
path: root/includes/SpecialLongpages.php
Commit message (Collapse)AuthorAgeFilesLines
* ShortPages and LongPages are almsot identical; remove some duplication.Brion Vibber2004-10-031-24/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/5665
* Split files and classes in different packages for phpdocumentor. I probably ↵Antoine Musso2004-09-031-0/+4
| | | | | | | changed some double quotes to single and used function foo () { shema Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/5069
* Changing comments layout preparing for generated documentation with ↵Antoine Musso2004-09-021-0/+12
| | | | | | | Phpdocumentor Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/5032
* * Support for table name prefixes throughout the code. No support yet for ↵Tim Starling2004-07-181-1/+4
| | | | | | | | | | | | | converting static SQL, which also means no installation. But it has been tested by creating the tables in the ordinary way and then renaming them * DB_WRITE now called DB_MASTER, DB_READ now called DB_SLAVE * Converted to use SQL wrapper functions instead of direct SQL in various places * Experimental method for preserving the chronological order of events when slave servers are used. Untested. * Fixes to the new post-parse existence test feature * Some.. other stuff Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4318
* Replace ugly abuse of log pages to store cached results of query pagesBrion Vibber2004-05-091-7/+11
| | | | | | | | | | | | | | | 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-071-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3502
* Add digit transformation function Language::formatNum() for Arabic and otherBrion Vibber2004-03-061-1/+2
| | | | | | | | languages which need to use localized (decimal) digits. Sample implementation for Arabic. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2624
* Fix for compatibility with short_open_tag = OffBrion Vibber2004-02-181-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2485
* Minor speed improvement on list of long/short pagesMr. E232004-01-271-2/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2365
* Ability to declare all query pages "expensive"Tim Starling2004-01-251-20/+20
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2343
* I was adding a special page (dead-end pages), and I realized that almost allEvan Prodromou2003-12-011-41/+27
| | | | | | | | | | | | | | | | | the special query pages were pretty much identical. I copy-and-pasted one to make the one I was working on, and I realized that that was Wrong. So, I took the common elements and made them into a class, QueryPage.php. Then, I derived each of the existing special pages from QueryPage, and overrode places where they differed. This is a Recipe pattern, btw, for those of you following along at home. Anyways, the upshot is that the query pages are a lot shorter, with just the essentials that make them different from other query pages, and there's one place to make big UI changes for all queries. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2120
* Use wfMsg()'s parametersBrion Vibber2003-11-151-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1956
* changing wfQuery to allow replicationTim Starling2003-09-201-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1681
* Refactor some common code for offsets/limits; some preliminary stuff for ↵Brion Vibber2003-06-031-6/+1
| | | | | | | upload license notes and mysql4 fulltext support (not ready yet) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1378
* Cache slow special pages allpages, lonelypages, longpages, shortpages, ↵Brion Vibber2003-05-161-1/+10
| | | | | | | watnedpages Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1319
* Initial revisionLee Daniel Crocker2003-04-141-0/+47
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1284 http://mediawiki.org/wiki/Special:Code/MediaWiki/1286