aboutsummaryrefslogtreecommitdiffstats
path: root/StartProfiler.php
Commit message (Collapse)AuthorAgeFilesLines
* Removed StartProfiler.php from SVN control and added StartProfiler.sample ↵Aaron Schulz2009-05-071-22/+0
| | | | | | | file. The sample file can be moved to the former name to set profiling. MW will fall back to ProfilerStub.php as usual if there is no StartProfiler.php. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/50316
* Remove StartProfiler.php, removed with no explanation in r50299, causing ↵Andrew Garrett2009-05-071-0/+22
| | | | | | | fatals on all installations. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/50300
* ignore startprofiler.phpAaron Schulz2009-05-071-22/+0
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/50299
* Revert - didn't mean to commit this!Aaron Schulz2009-01-071-2/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/45521
* (bug 16923) New parameter value diff=review for the URLAaron Schulz2009-01-071-1/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/45518
* Partial revert of r37393Alexandre Emsenhuber2008-07-091-4/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/37397
* improved integration into category bar. Note: options is not functional ↵Daniel Kinzler2008-07-091-1/+4
| | | | | | | until SkinJoinCategoryLinks hook is implemented (merge pending) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/37393
* rv againTim Starling2007-07-221-6/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/24314
* * Introduced FileRepoStatus -- result class for file repo operations. Tim Starling2007-07-221-4/+6
| | | | | | | | | | | | * Ported file delete/restore to the filerepo framework. Some user-visible changes in error reporting. * $wgSaveDeletedFiles has been removed, the feature is now enabled unconditionally. Added a "deleted" directory for the default location, protected by a .htaccess file and the practical obscurity of content hashes. * Fixed bug 2735: "Preview" shown in title bar for action=submit on special pages * Removed "restore" links from the deletion log embedded in Special:Undelete * Added img_sha1/oi_sha1 fields, preserved through upload, delete and restore * Referenced the new oi_metadata etc. fields to preserve metadata across upload and delete/restore. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/24313
* sighRob Church2007-07-071-2/+20
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/23830
* Alter wordingRob Church2007-07-071-20/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/23829
* Remove ?>'s from files. They're pointless, and just asking for people to ↵Aryeh Gregor2007-06-291-1/+1
| | | | | | | 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
* revert accidental commitTim Starling2007-06-031-6/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/22673
* Merged filerepo-work branch:Tim Starling2007-05-301-4/+6
| | | | | | | | | | | | | | | | | * 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
* Support command line entry pointsTim Starling2006-07-261-4/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/15826
* Consolidated web initialisation code into includes/WebStart.php. Moved ↵Tim Starling2006-07-141-0/+22
profiling setup to a hook file "StartProfiler.php", following Brion's suggestion to merge Wikimedia's early profiling patch into subversion. Renamed Profiling.php and logProfilingData(), removed unnecessary wfProfileClose() calls. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/15605