aboutsummaryrefslogtreecommitdiffstats
path: root/includes/specials/SpecialUncategorizedimages.php
Commit message (Collapse)AuthorAgeFilesLines
* Use consistent notation for "@todo FIXME". Should update ↵Siebrand Mazeland2011-05-171-1/+1
| | | | | | | http://svn.wikimedia.org/doc/todo.html nicely. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/88355
* w/s diff. mostly eol w/s and using only tabs of width 4 to indent.Mark A. Hershberger2011-03-181-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/84262
* Merge querypage-work2 branch from trunk. The most relevant changes are:Roan Kattouw2010-12-221-18/+16
| | | | | | | | | | | | | * QueryPage now uses array-based query building instead of raw SQL * Converted all QueryPage-based special pages that were using old-style wfSpecialFoo functions to new-style SpecialPage subclasses; this is possible because QueryPage is changed to extend SpecialPage * Backward compatibility for extensions is partly preserved: getSQL() is fallen back on for QueryPage subclasses that don't implement getQueryInfo(), but getOrder() will be ignored (implement getOrderFields() instead). This also means that dual compatibility (1.18 compat and b/c with pre-1.18) is trivial Extension changes will be merged after this commit. These changes make it easier to write an API module for QueryPages (bug 14869); this wasn't done in the branch but will be done in trunk soon. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/78786
* Standardised file description headers; second partAlexandre Emsenhuber2010-08-151-4/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/71099
* Correct the address of the FSF in some of the GPL headersDerk-Jan Hartman2010-06-211-1/+1
| | | | | | | | | 59 Temple Place -> 51 Franklin Street Follow up to r68351 Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/68354
* GPL Headers for all!Sam Reed2010-06-211-0/+18
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/68351
* Step 2 in NS_IMAGE -> NS_FILE transition (bug 44) (WARNING: huge commit).Ilmari Karonen2008-12-011-1/+1
| | | | | | | This is a global search and replace of NS_IMAGE and NS_IMAGE_TALK with NS_FILE and NS_FILE_TALK respectively in all core files, excluding those already updated in step 1 (r44004). Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/44121
* Rename all the special page class files back to their proper names.Brion Vibber2008-06-191-0/+48
1) This keeps the filename the same as the classname, which is always nice 2) This avoids duplicate filenames (such as includes/Export.php and includes/specials/Export.php) So I've at least got a chance of figuring out what file is what still... Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/36481