| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/78508
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/77711
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/76892
|
|
|
|
|
|
|
|
|
|
| |
$comment definition.
This not only fixes the issue of line 189, but also the one at line 156.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/73754
|
|
|
|
|
|
|
|
|
|
| |
table due to null comment.
Also correct indefinite/infinite/infinity protection.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/73587
|
|
|
|
|
|
|
|
| |
* use tabs for indentation
* removed trailing whitespaces
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/72867
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/66751
|
|
|
|
|
|
|
| |
follows
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/63693
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This adds --source-wiki-url parameter to importImages.php for a wiki
from which to fetch the original uploader and comment.
Useful when going from local uploads to a shared repository.
Original code at http://www.howtopedia.org/public/mw-smart-import.tbz
"I release it with the least restrictive license applicable,
considering the code is derivative work of the respective
maintenance scripts from the MW distribution.
Feel free to commit this or modifications of it to your repos."
http://lists.wikimedia.org/pipermail/mediawiki-l/2010-February/033230.html
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/62087
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/59908
|
|
|
|
|
|
|
| |
with a type-specific end token. For HTML and SQL, this causes vim to highlight the embedded text with the HTML or SQL file type plugins respectively, which is very neat.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/59780
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/57286
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/57285
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/57284
|
|
|
|
|
|
|
| |
commandLine.inc/Maintenance.php using the full path every time.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/54312
|
|
|
|
|
|
|
| |
patch by Karun Dambiec
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/50942
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/49247
|
|
|
|
|
|
|
| |
Includes related Article changes -- fixing an E_NOTICE and reporting errors in the debug log.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/47964
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/44029
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/43994
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/35098
|
|
|
|
|
|
|
|
|
|
| |
--override option
* More useful output (no. of files added, overwritten, skipped)
* Trim some whitespace and kill a dud global \o/
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/24418
|
|
|
|
|
|
|
| |
mess with the files and add trailing whitespace. (Yes, I looked over every one and reverted those that were bogus. Slash-enter a million times in less worked well enough, although it was a bit mind-numbing.)
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/23531
|
|
|
|
|
|
|
|
|
|
| |
$wgFileExtensions
* Let the user know if no suitable files are found
* Missing release note from r22772
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/22815
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/22772
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Added support for configuration of an arbitrary number of commons-style file repositories.
* Split Image.php into filerepo/File.php and filerepo/LocalFile.php
* Renamed Image::getImagePath() to File::getPath()
* Added initial support for timestamp-based file fetching (OldLocalFile), to be expanded upon by aaron.
* Changed the interface for Image/File object creation: use wfFindFile() or wfLocalFile() depending on semantics
* ImageGallery::add() now accepts a title object as the first parameter
* Moved file handling operations on upload from SpecialUpload to File
* Removed path-related functions from ImageFunctions.php. Removed static path accessors from File.
* Added a Content-Disposition header to thumb.php output
* Improved thumb.php error handling
* Updated the unit test suite to kind of partially work with modern computers. RunTests.php doesn't work just yet. Fixed an actual regression that the test suite detected -- moved some defines to Defines.php where they will be loaded consistently.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/22580
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/22049
|
|
|
|
|
|
|
|
|
|
| |
importTextFile.php, not "MediaWiki default" as it could cause pages to be overwritten
* Use "Maintenance script" as the username for importImages.php, too
* Clarified reserved username comment
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/20751
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/19502
|
|
|
|
|
|
|
| |
and also for performance. Interfaces and semantics have been largely preserved, except for a minor change involving setLoaded().
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/17004
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/16477
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/16465
|
|
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/14236
|