aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/importLogs.inc
Commit message (Collapse)AuthorAgeFilesLines
* WARNING: HUGE COMMITAlexandre Emsenhuber2008-05-201-4/+3
| | | | | | | | | | | | | | | | | | 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
* The war on redundant ampersand usage!Nick Jenkins2007-01-221-1/+1
| | | | | | | | | | | | * Convert "$dbw =& wfGetDB( DB_MASTER );" --> "$dbw = wfGetDB( DB_MASTER );" * convert "$skin =& $wgUser->getSkin();" --> "$skin = $wgUser->getSkin();" For the time being have not changed the function definitions of wfGetDB() or User::getSkin() [i.e. they are still both return-by-ref], so as to ensure the interface does not change for extensions [some of which may still be trying to run on PHP4 environments]. However presumably at some point this can be changed too. Also includes tiny tweak to newlines in parserTests - will show 1 rather than 2 newlines between the "Reading tests from" strings when in quiet mode. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/19598
* Use Doxygen @addtogroup instead of phpdoc @package && @subpackageAntoine Musso2007-01-201-4/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/19502
* For the maintenance/ directory files:Nick Jenkins2007-01-121-0/+3
| | | | | | | | | | | | * Removing unused local vars. * Removing unused global declarations. * removing one or two pass-by-refs parameter declarations where not required by PHP5. * Adding some local variable declarations / initializations (initialized to either to array(), null) to keep static code analyzer happy. * Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );". * Add one or two braces to if-else blocks. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/19145
* Update the FSF's address in all these GPL stub headersBrion Vibber2006-04-051-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/13489
* * s~\t+$~~Ævar Arnfjörð Bjarmason2006-01-071-8/+8
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/12476
* * s~ +$~~Ævar Arnfjörð Bjarmason2006-01-071-5/+5
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/12472
* Code cleanup: normalize case for intval(), strval(), floatval() calls.Brion Vibber2005-08-161-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/10564
* Replacing obsolete Database member functions.Tim Starling2004-10-241-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/6053
* Phpdoc comments and place holder. Part of the subpackage "maintenance", ↵Antoine Musso2004-09-031-5/+17
| | | | | | | archives in subpackage "maintenanceArchive" Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/5060
* Old log page -> logging table importer.Brion Vibber2004-08-251-0/+132
Not yet fully functional. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4929