Aap: Difference between revisions

From RoggeWiki
Jump to navigation Jump to search
(Importing text file)
 
(Importing text file)
Line 1: Line 1:
<?php
total 1308
 
-rw-r--r-- 1 tom  vboxusers    14 Apr 22  2004 .htaccess
/**
-rw-r--r-- 1 root root      10737 Nov 30  2008 Doxyfile
  * Maintenance script allows creating or editing pages using
-rw-r--r-- 1 root root      39246 Feb 13  2009 FiveUpgrade.inc
  * the contents of a text file
-rw-r--r-- 1 root root        228 Jun 25  2008 Makefile
  *
-rw-r--r-- 1 root root        3133 Mar 24  2009 README
  * @file
-rw-r----- 1 root root          0 Aug 18 16:59 aap
  * @ingroup Maintenance
-rw-r--r-- 1 root root        5522 Aug 21  2008 addwiki.php
  * @author Rob Church <robchur@gmail.com>
-rw-r--r-- 1 root root        1853 Apr 15  2003 apache-ampersand.diff
  */
drwxr-xr-x 2 root root      12288 May 28 09:17 archives
 
-rw-r--r-- 1 root root        2298 May 20 2008 attachLatest.php
$options = array( 'help', 'nooverwrite', 'norc' );
-rw-r--r-- 1 root root        2385 May 20 2008 attribute.php
$optionsWithArgs = array( 'title', 'user', 'comment' );
-rw-r--r-- 1 root root        8851 Sep 18 2008 backup.inc
require_once( 'commandLine.inc' );
-rw-r--r-- 1 root root        4911 May 20 2008 backupPrefetch.inc
echo( "Import Text File\n\n" );
-rw-r--r-- 1 root root        1971 Sep 19  2008 benchmarkPurge.php
 
-rw-r--r-- 1 root root        1281 Feb  1 2009 changePassword.php
if( count( $args ) < 1 || isset( $options['help'] ) ) {
-rw-r--r-- 1 root root        894 Aug  8 2008 checkAutoLoader.php
showHelp();
-rw-r--r-- 1 root root        672 Aug  9 2008 checkBadRedirects.php
} else {
-rw-r--r-- 1 root root        1151 Feb 17  2009 checkImages.php
 
-rw-r--r-- 1 root root        931 Jul 21  2008 checkUsernames.php
$filename = $args[0];
-rw-r--r-- 1 root root        3144 Mar 24  2009 cleanupCaps.php
echo( "Using {$filename}..." );
-rw-r--r-- 1 root root        3995 May 20  2008 cleanupDupes.inc
if( is_file( $filename ) ) {
-rw-r--r-- 1 root root        5200 Jan  7  2009 cleanupImages.php
 
-rw-r--r-- 1 root root        2972 May 22  2008 cleanupSpam.php
$title = isset( $options['title'] ) ? $options['title'] : titleFromFilename( $filename );
-rw-r--r-- 1 root root        2128 Feb 16  2009 cleanupTable.inc
$title = Title::newFromUrl( $title );
-rw-r--r-- 1 root root        5265 Jan  2  2009 cleanupTitles.php
 
-rw-r--r-- 1 root root        2313 Mar 24  2009 cleanupWatchlist.php
if( is_object( $title ) ) {
-rw-r--r-- 1 root root        525 May 20  2008 clear_interwiki_cache.php
 
-rw-r--r-- 1 root root        955 Jul 21  2008 clear_stats.php
echo( "\nUsing title '" . $title->getPrefixedText() . "'..." );
-rw-r--r-- 1 root root        6931 Feb 23  2009 commandLine.inc
if( !$title->exists() || !isset( $options['nooverwrite'] ) ) {
-rw-r--r-- 1 root root        7816 Feb  5  2009 convertLinks.inc
 
-rw-r--r-- 1 root root        296 May 20  2008 convertLinks.php
$text = file_get_contents( $filename );
-rw-r--r-- 1 root root        176 May 20  2008 counter.php
$user = isset( $options['user'] ) ? $options['user'] : 'Maintenance script';
-rw-r--r-- 1 root root        1397 May 20  2008 createAndPromote.php
$user = User::newFromName( $user );
-rw-r--r-- 1 root root        1650 May 20  2008 deleteArchivedFiles.inc
 
-rw-r--r-- 1 root root        734 May 20  2008 deleteArchivedFiles.php
if( is_object( $user ) ) {
-rw-r--r-- 1 root root        676 May 20  2008 deleteArchivedRevisions.inc
 
-rw-r--r-- 1 root root        781 Jul 21  2008 deleteArchivedRevisions.php
echo( "\nUsing username '" . $user->getName() . "'..." );
-rw-r--r-- 1 root root        1982 Jan  3  2009 deleteBatch.php
$wgUser =& $user;
-rw-r--r-- 1 root root        1039 May 20  2008 deleteDefaultMessages.php
$comment = isset( $options['comment'] ) ? $options['comment'] : 'Importing text file';
-rw-r--r-- 1 root root        1565 Jul 21  2008 deleteImageMemcached.php
$flags = 0 | ( isset( $options['norc'] ) ? EDIT_SUPPRESS_RC : 0 );
-rw-r--r-- 1 root root        1837 May 20  2008 deleteOldRevisions.inc
 
-rw-r--r-- 1 root root        677 May 20  2008 deleteOldRevisions.php
echo( "\nPerforming edit..." );
-rw-r--r-- 1 root root        853 May 20  2008 deleteOrphanedRevisions.inc.php
$article = new Article( $title );
-rw-r--r-- 1 root root        1447 May 20  2008 deleteOrphanedRevisions.php
$article->doEdit( $text, $comment, $flags );
-rw-r--r-- 1 root root        1122 Jul 21  2008 deleteRevision.php
echo( "done.\n" );
drwxr-xr-x 2 root root        4096 May 28 09:17 dtrace
 
-rw-r--r-- 1 root root        3482 Mar  2  2009 dumpBackup.php
} else {
-rw-r--r-- 1 root root      28073 Mar  3  2008 dumpHTML.inc
echo( "invalid username.\n" );
-rw-r--r-- 1 root root        204 Feb 27  2008 dumpHTML.php
}
-rw-r--r-- 1 root root        6905 May 20  2008 dumpInterwiki.inc
 
-rw-r--r-- 1 root root        473 Jun 10  2009 dumpInterwiki.php
} else {
-rw-r--r-- 1 root root        1912 May 20  2008 dumpLinks.php
echo( "page exists.\n" );
-rw-r--r-- 1 root root        1506 May 20  2008 dumpSisterSites.php
}
-rw-r--r-- 1 root root      13711 Dec 14  2008 dumpTextPass.php
 
-rw-r--r-- 1 root root        2879 May 20  2008 dumpUploads.php
} else {
-rw-r--r-- 1 root root        1685 Sep 25  2008 edit.php
echo( "invalid title.\n" );
-rw-r--r-- 1 root root        1758 Jul 22  2008 eval.php
}
-rw-r--r-- 1 root root        3133 Apr  6  2005 fetchInterwiki.pl
 
-rw-r--r-- 1 root root        778 May 20  2008 fetchText.php
} else {
-rw-r--r-- 1 root root        4313 Jun 10  2009 findhooks.php
echo( "does not exist.\n" );
-rw-r--r-- 1 root root        5327 May 20  2008 fixSlaveDesync.php
}
-rw-r--r-- 1 root root        2975 May 20  2008 fixTimestamps.php
 
-rw-r--r-- 1 root root        838 May 20  2008 fixUserRegistration.php
}
-rw-r--r-- 1 root root      114782 Jun 10  2009 fuzz-tester.php
 
drwxr-xr-x 2 root root        4096 May 28 09:17 gearman
function titleFromFilename( $filename ) {
-rw-r--r-- 1 root root      11494 Feb 24  2009 generateSitemap.php
$parts = explode( '/', $filename );
-rw-r--r-- 1 root root        641 May 20  2008 getLagTimes.php
$parts = explode( '.', $parts[ count( $parts ) - 1 ] );
-rw-r--r-- 1 root root        478 Jul 21  2008 getSlaveServer.php
return $parts[0];
drwxr-xr-x 2 root root        4096 May 28 09:17 ibm_db2
}
-rw-r--r-- 1 root root        4694 Sep 18  2008 importDump.php
 
-rw-r--r-- 1 root root        2265 Dec  2  2008 importImages.inc.php
function showHelp() {
-rw-r--r-- 1 root root        5894 Mar  3  2009 importImages.php
print <<<EOF
-rw-r--r-- 1 root root        4118 May 20  2008 importLogs.inc
USAGE: php importTextFile.php <options> <filename>
-rw-r--r-- 1 root root        477 May 20  2008 importLogs.php
 
-rw-r--r-- 1 root root        2233 Feb 17  2009 importTextFile.php
<filename> : Path to the file containing page content to import
-rw-r--r-- 1 root root        9944 May 20  2008 importUseModWiki.php
 
-rw-r--r-- 1 root root        2456 May 20  2008 initEditCount.php
Options:
-rw-r--r-- 1 root root        1916 Feb  5  2009 initStats.inc
 
-rw-r--r-- 1 root root        798 May 20  2008 initStats.php
--title <title>
-rw-r--r-- 1 root root      18868 May 20  2008 installExtension.php
Title for the new page; default is to use the filename as a base
-rw-r--r-- 1 root root        5189 Aug  5  2008 interwiki.sql
--user <user>
drwxr-xr-x 2 root root        4096 May 28 09:17 language
User to be associated with the edit
-rw-r--r-- 1 root root        3611 Mar 14  2009 mcc.php
--comment <comment>
-rw-r--r-- 1 root root        1309 Jul 21  2008 mctest.php
Edit summary
-rw-r--r-- 1 root root        2175 Mar  8 18:58 moveBatch.php
--nooverwrite
drwxr-xr-x 2 root root        4096 May 28 09:17 mssql
Don't overwrite existing content
-rw-r--r-- 1 root root        5963 Jun 25  2008 mwdocgen.php
--norc
-rw-r--r-- 1 root root        8626 Mar  3  2008 mwdoxygen.cfg
Don't update recent changes
-rw-r--r-- 1 root root        416 May 20  2008 namespace2sql.php
--help
-rw-r--r-- 1 root root        8494 Jan 14  2009 namespaceDupes.php
Show this information
-rw-r--r-- 1 root root        1398 May 20  2008 nextJobDB.php
 
-rw-r--r-- 1 root root        2877 May 20  2008 nukeNS.php
EOF;
-rw-r--r-- 1 root root        2108 Nov 21  2008 nukePage.inc
}
-rw-r--r-- 1 root root        634 May 20  2008 nukePage.php
drwxr-xr-x 2 root root        4096 May 28 09:17 ora
-rw-r--r-- 1 root root        5884 Feb 13  2009 orphans.php
-rw-r--r-- 1 root root        1576 Oct 24  2008 ourusers.php
-rw-r--r-- 1 root root      40951 Mar 25  2009 parserTests.inc
-rw-r--r-- 1 root root        2653 Feb  6  2009 parserTests.php
-rw-r--r-- 1 root root      157809 Mar  8 23:34 parserTests.txt
-rw-r--r-- 1 root root        780 May 20  2008 parserTestsParserHook.php
-rw-r--r-- 1 root root        791 May 20  2008 parserTestsParserTime.php
-rw-r--r-- 1 root root        1399 Aug 26  2008 parserTestsStaticParserHook.php
-rw-r--r-- 1 root root        863 May 20  2008 patchSql.php
-rw-r--r-- 1 root root        1653 Feb  5  2009 populateCategory.inc
-rw-r--r-- 1 root root        1839 Feb 16  2009 populateCategory.php
-rw-r--r-- 1 root root        2980 Feb  5  2009 populateParentId.inc
-rw-r--r-- 1 root root        401 May  2  2008 populateParentId.php
drwxr-xr-x 3 root root        4096 May 28 09:17 postgres
-rw-r--r-- 1 root root        6826 May 20  2008 preprocessorFuzzTest.php
-rw-r--r-- 1 root root        719 May 20  2008 purgeList.php
-rw-r--r-- 1 root root        1695 May 20  2008 purgeOldText.inc
-rw-r--r-- 1 root root        609 May 20  2008 purgeOldText.php
-rw-r--r-- 1 root root        3966 May 22  2008 reassignEdits.inc.php
-rw-r--r-- 1 root root        1770 May 20  2008 reassignEdits.php
-rw-r--r-- 1 root root        2728 Mar 12  2009 rebuildFileCache.php
-rw-r--r-- 1 root root        5829 May 20  2008 rebuildImages.php
-rw-r--r-- 1 root root        7291 May 20  2008 rebuildInterwiki.inc
-rw-r--r-- 1 root root        523 Jun 10  2009 rebuildInterwiki.php
-rw-r--r-- 1 root root        1163 May 20  2008 rebuildall.php
-rw-r--r-- 1 root root        461 Jul 21  2008 rebuildmessages.php
-rw-r--r-- 1 root root        7360 May 20  2008 rebuildrecentchanges.inc
-rw-r--r-- 1 root root        480 May 20  2008 rebuildrecentchanges.php
-rw-r--r-- 1 root root        1994 May 20  2008 rebuildtextindex.inc
-rw-r--r-- 1 root root        704 Jul 21  2008 rebuildtextindex.php
-rw-r--r-- 1 root root        637 May 20  2008 refreshImageCount.php
-rw-r--r-- 1 root root        4873 Jan 14  2009 refreshLinks.inc
-rw-r--r-- 1 root root        1640 Jan 14  2009 refreshLinks.php
-rw-r--r-- 1 root root        1374 Aug 11  2008 removeUnusedAccounts.inc
-rw-r--r-- 1 root root        2491 Aug 11  2008 removeUnusedAccounts.php
-rw-r--r-- 1 root root        1929 Dec 25  2008 renameDbPrefix.php
-rw-r--r-- 1 root root        1575 May 20  2008 renamewiki.php
-rw-r--r-- 1 root root        3014 May 20  2008 renderDump.php
-rw-r--r-- 1 root root        1584 Mar 18  2009 runJobs.php
-rw-r--r-- 1 root root        344 Feb  5  2009 showJobs.php
-rw-r--r-- 1 root root        1232 May 20  2008 showStats.php
-rw-r--r-- 1 root root        1412 Aug  1  2008 sql.php
drwxr-xr-x 3 root root        4096 May 28 09:17 sqlite
-rw-r--r-- 1 root root        2652 Dec 27  2008 stats.php
drwxr-xr-x 2 root root        4096 May 28 09:17 storage
-rw-r--r-- 1 root root      45697 Mar 20  2009 tables.sql
-rw-r--r-- 1 root root        960 Dec 18  2007 testRunner.postgres.sql
-rw-r--r-- 1 root root        905 Jan  5  2007 testRunner.sql
-rw-r--r-- 1 root root        746 Jul 19  2008 undelete.php
-rw-r--r-- 1 root root        1909 Jul 19  2008 update.php
-rw-r--r-- 1 root root        1352 Dec 16  2008 updateArticleCount.inc.php
-rw-r--r-- 1 root root        1135 May 20  2008 updateArticleCount.php
-rw-r--r-- 1 root root        3103 Jan 18  2009 updateRestrictions.php
-rw-r--r-- 1 root root        3057 May 20  2008 updateSearchIndex.inc
-rw-r--r-- 1 root root        1215 May 20  2008 updateSearchIndex.php
-rw-r--r-- 1 root root        3177 Aug 31  2008 updateSpecialPages.php
-rw-r--r-- 1 root root      65282 Dec 15  2009 updaters.inc
-rw-r--r-- 1 root root        1047 Jan 11  2010 upgrade1_5.php
-rw-r--r-- 1 root root        8787 Feb  5  2009 userDupes.inc
-rw-r--r-- 1 root root        6116 May 20  2008 userOptions.inc
-rw-r--r-- 1 root root        572 May 20  2008 userOptions.php
-rw-r--r-- 1 root root        627 May 22  2006 users.sql
-rw-r--r-- 1 root root        199 Jul 19  2008 waitForSlave.php
-rw-r--r-- 1 root root      12836 Jul  4  2008 wikipedia-interwiki.sql
-rw-r--r-- 1 root root        8341 Jun 11  2008 wiktionary-interwiki.sql

Revision as of 15:59, 18 August 2010

total 1308 -rw-r--r-- 1 tom vboxusers 14 Apr 22 2004 .htaccess -rw-r--r-- 1 root root 10737 Nov 30 2008 Doxyfile -rw-r--r-- 1 root root 39246 Feb 13 2009 FiveUpgrade.inc -rw-r--r-- 1 root root 228 Jun 25 2008 Makefile -rw-r--r-- 1 root root 3133 Mar 24 2009 README -rw-r----- 1 root root 0 Aug 18 16:59 aap -rw-r--r-- 1 root root 5522 Aug 21 2008 addwiki.php -rw-r--r-- 1 root root 1853 Apr 15 2003 apache-ampersand.diff drwxr-xr-x 2 root root 12288 May 28 09:17 archives -rw-r--r-- 1 root root 2298 May 20 2008 attachLatest.php -rw-r--r-- 1 root root 2385 May 20 2008 attribute.php -rw-r--r-- 1 root root 8851 Sep 18 2008 backup.inc -rw-r--r-- 1 root root 4911 May 20 2008 backupPrefetch.inc -rw-r--r-- 1 root root 1971 Sep 19 2008 benchmarkPurge.php -rw-r--r-- 1 root root 1281 Feb 1 2009 changePassword.php -rw-r--r-- 1 root root 894 Aug 8 2008 checkAutoLoader.php -rw-r--r-- 1 root root 672 Aug 9 2008 checkBadRedirects.php -rw-r--r-- 1 root root 1151 Feb 17 2009 checkImages.php -rw-r--r-- 1 root root 931 Jul 21 2008 checkUsernames.php -rw-r--r-- 1 root root 3144 Mar 24 2009 cleanupCaps.php -rw-r--r-- 1 root root 3995 May 20 2008 cleanupDupes.inc -rw-r--r-- 1 root root 5200 Jan 7 2009 cleanupImages.php -rw-r--r-- 1 root root 2972 May 22 2008 cleanupSpam.php -rw-r--r-- 1 root root 2128 Feb 16 2009 cleanupTable.inc -rw-r--r-- 1 root root 5265 Jan 2 2009 cleanupTitles.php -rw-r--r-- 1 root root 2313 Mar 24 2009 cleanupWatchlist.php -rw-r--r-- 1 root root 525 May 20 2008 clear_interwiki_cache.php -rw-r--r-- 1 root root 955 Jul 21 2008 clear_stats.php -rw-r--r-- 1 root root 6931 Feb 23 2009 commandLine.inc -rw-r--r-- 1 root root 7816 Feb 5 2009 convertLinks.inc -rw-r--r-- 1 root root 296 May 20 2008 convertLinks.php -rw-r--r-- 1 root root 176 May 20 2008 counter.php -rw-r--r-- 1 root root 1397 May 20 2008 createAndPromote.php -rw-r--r-- 1 root root 1650 May 20 2008 deleteArchivedFiles.inc -rw-r--r-- 1 root root 734 May 20 2008 deleteArchivedFiles.php -rw-r--r-- 1 root root 676 May 20 2008 deleteArchivedRevisions.inc -rw-r--r-- 1 root root 781 Jul 21 2008 deleteArchivedRevisions.php -rw-r--r-- 1 root root 1982 Jan 3 2009 deleteBatch.php -rw-r--r-- 1 root root 1039 May 20 2008 deleteDefaultMessages.php -rw-r--r-- 1 root root 1565 Jul 21 2008 deleteImageMemcached.php -rw-r--r-- 1 root root 1837 May 20 2008 deleteOldRevisions.inc -rw-r--r-- 1 root root 677 May 20 2008 deleteOldRevisions.php -rw-r--r-- 1 root root 853 May 20 2008 deleteOrphanedRevisions.inc.php -rw-r--r-- 1 root root 1447 May 20 2008 deleteOrphanedRevisions.php -rw-r--r-- 1 root root 1122 Jul 21 2008 deleteRevision.php drwxr-xr-x 2 root root 4096 May 28 09:17 dtrace -rw-r--r-- 1 root root 3482 Mar 2 2009 dumpBackup.php -rw-r--r-- 1 root root 28073 Mar 3 2008 dumpHTML.inc -rw-r--r-- 1 root root 204 Feb 27 2008 dumpHTML.php -rw-r--r-- 1 root root 6905 May 20 2008 dumpInterwiki.inc -rw-r--r-- 1 root root 473 Jun 10 2009 dumpInterwiki.php -rw-r--r-- 1 root root 1912 May 20 2008 dumpLinks.php -rw-r--r-- 1 root root 1506 May 20 2008 dumpSisterSites.php -rw-r--r-- 1 root root 13711 Dec 14 2008 dumpTextPass.php -rw-r--r-- 1 root root 2879 May 20 2008 dumpUploads.php -rw-r--r-- 1 root root 1685 Sep 25 2008 edit.php -rw-r--r-- 1 root root 1758 Jul 22 2008 eval.php -rw-r--r-- 1 root root 3133 Apr 6 2005 fetchInterwiki.pl -rw-r--r-- 1 root root 778 May 20 2008 fetchText.php -rw-r--r-- 1 root root 4313 Jun 10 2009 findhooks.php -rw-r--r-- 1 root root 5327 May 20 2008 fixSlaveDesync.php -rw-r--r-- 1 root root 2975 May 20 2008 fixTimestamps.php -rw-r--r-- 1 root root 838 May 20 2008 fixUserRegistration.php -rw-r--r-- 1 root root 114782 Jun 10 2009 fuzz-tester.php drwxr-xr-x 2 root root 4096 May 28 09:17 gearman -rw-r--r-- 1 root root 11494 Feb 24 2009 generateSitemap.php -rw-r--r-- 1 root root 641 May 20 2008 getLagTimes.php -rw-r--r-- 1 root root 478 Jul 21 2008 getSlaveServer.php drwxr-xr-x 2 root root 4096 May 28 09:17 ibm_db2 -rw-r--r-- 1 root root 4694 Sep 18 2008 importDump.php -rw-r--r-- 1 root root 2265 Dec 2 2008 importImages.inc.php -rw-r--r-- 1 root root 5894 Mar 3 2009 importImages.php -rw-r--r-- 1 root root 4118 May 20 2008 importLogs.inc -rw-r--r-- 1 root root 477 May 20 2008 importLogs.php -rw-r--r-- 1 root root 2233 Feb 17 2009 importTextFile.php -rw-r--r-- 1 root root 9944 May 20 2008 importUseModWiki.php -rw-r--r-- 1 root root 2456 May 20 2008 initEditCount.php -rw-r--r-- 1 root root 1916 Feb 5 2009 initStats.inc -rw-r--r-- 1 root root 798 May 20 2008 initStats.php -rw-r--r-- 1 root root 18868 May 20 2008 installExtension.php -rw-r--r-- 1 root root 5189 Aug 5 2008 interwiki.sql drwxr-xr-x 2 root root 4096 May 28 09:17 language -rw-r--r-- 1 root root 3611 Mar 14 2009 mcc.php -rw-r--r-- 1 root root 1309 Jul 21 2008 mctest.php -rw-r--r-- 1 root root 2175 Mar 8 18:58 moveBatch.php drwxr-xr-x 2 root root 4096 May 28 09:17 mssql -rw-r--r-- 1 root root 5963 Jun 25 2008 mwdocgen.php -rw-r--r-- 1 root root 8626 Mar 3 2008 mwdoxygen.cfg -rw-r--r-- 1 root root 416 May 20 2008 namespace2sql.php -rw-r--r-- 1 root root 8494 Jan 14 2009 namespaceDupes.php -rw-r--r-- 1 root root 1398 May 20 2008 nextJobDB.php -rw-r--r-- 1 root root 2877 May 20 2008 nukeNS.php -rw-r--r-- 1 root root 2108 Nov 21 2008 nukePage.inc -rw-r--r-- 1 root root 634 May 20 2008 nukePage.php drwxr-xr-x 2 root root 4096 May 28 09:17 ora -rw-r--r-- 1 root root 5884 Feb 13 2009 orphans.php -rw-r--r-- 1 root root 1576 Oct 24 2008 ourusers.php -rw-r--r-- 1 root root 40951 Mar 25 2009 parserTests.inc -rw-r--r-- 1 root root 2653 Feb 6 2009 parserTests.php -rw-r--r-- 1 root root 157809 Mar 8 23:34 parserTests.txt -rw-r--r-- 1 root root 780 May 20 2008 parserTestsParserHook.php -rw-r--r-- 1 root root 791 May 20 2008 parserTestsParserTime.php -rw-r--r-- 1 root root 1399 Aug 26 2008 parserTestsStaticParserHook.php -rw-r--r-- 1 root root 863 May 20 2008 patchSql.php -rw-r--r-- 1 root root 1653 Feb 5 2009 populateCategory.inc -rw-r--r-- 1 root root 1839 Feb 16 2009 populateCategory.php -rw-r--r-- 1 root root 2980 Feb 5 2009 populateParentId.inc -rw-r--r-- 1 root root 401 May 2 2008 populateParentId.php drwxr-xr-x 3 root root 4096 May 28 09:17 postgres -rw-r--r-- 1 root root 6826 May 20 2008 preprocessorFuzzTest.php -rw-r--r-- 1 root root 719 May 20 2008 purgeList.php -rw-r--r-- 1 root root 1695 May 20 2008 purgeOldText.inc -rw-r--r-- 1 root root 609 May 20 2008 purgeOldText.php -rw-r--r-- 1 root root 3966 May 22 2008 reassignEdits.inc.php -rw-r--r-- 1 root root 1770 May 20 2008 reassignEdits.php -rw-r--r-- 1 root root 2728 Mar 12 2009 rebuildFileCache.php -rw-r--r-- 1 root root 5829 May 20 2008 rebuildImages.php -rw-r--r-- 1 root root 7291 May 20 2008 rebuildInterwiki.inc -rw-r--r-- 1 root root 523 Jun 10 2009 rebuildInterwiki.php -rw-r--r-- 1 root root 1163 May 20 2008 rebuildall.php -rw-r--r-- 1 root root 461 Jul 21 2008 rebuildmessages.php -rw-r--r-- 1 root root 7360 May 20 2008 rebuildrecentchanges.inc -rw-r--r-- 1 root root 480 May 20 2008 rebuildrecentchanges.php -rw-r--r-- 1 root root 1994 May 20 2008 rebuildtextindex.inc -rw-r--r-- 1 root root 704 Jul 21 2008 rebuildtextindex.php -rw-r--r-- 1 root root 637 May 20 2008 refreshImageCount.php -rw-r--r-- 1 root root 4873 Jan 14 2009 refreshLinks.inc -rw-r--r-- 1 root root 1640 Jan 14 2009 refreshLinks.php -rw-r--r-- 1 root root 1374 Aug 11 2008 removeUnusedAccounts.inc -rw-r--r-- 1 root root 2491 Aug 11 2008 removeUnusedAccounts.php -rw-r--r-- 1 root root 1929 Dec 25 2008 renameDbPrefix.php -rw-r--r-- 1 root root 1575 May 20 2008 renamewiki.php -rw-r--r-- 1 root root 3014 May 20 2008 renderDump.php -rw-r--r-- 1 root root 1584 Mar 18 2009 runJobs.php -rw-r--r-- 1 root root 344 Feb 5 2009 showJobs.php -rw-r--r-- 1 root root 1232 May 20 2008 showStats.php -rw-r--r-- 1 root root 1412 Aug 1 2008 sql.php drwxr-xr-x 3 root root 4096 May 28 09:17 sqlite -rw-r--r-- 1 root root 2652 Dec 27 2008 stats.php drwxr-xr-x 2 root root 4096 May 28 09:17 storage -rw-r--r-- 1 root root 45697 Mar 20 2009 tables.sql -rw-r--r-- 1 root root 960 Dec 18 2007 testRunner.postgres.sql -rw-r--r-- 1 root root 905 Jan 5 2007 testRunner.sql -rw-r--r-- 1 root root 746 Jul 19 2008 undelete.php -rw-r--r-- 1 root root 1909 Jul 19 2008 update.php -rw-r--r-- 1 root root 1352 Dec 16 2008 updateArticleCount.inc.php -rw-r--r-- 1 root root 1135 May 20 2008 updateArticleCount.php -rw-r--r-- 1 root root 3103 Jan 18 2009 updateRestrictions.php -rw-r--r-- 1 root root 3057 May 20 2008 updateSearchIndex.inc -rw-r--r-- 1 root root 1215 May 20 2008 updateSearchIndex.php -rw-r--r-- 1 root root 3177 Aug 31 2008 updateSpecialPages.php -rw-r--r-- 1 root root 65282 Dec 15 2009 updaters.inc -rw-r--r-- 1 root root 1047 Jan 11 2010 upgrade1_5.php -rw-r--r-- 1 root root 8787 Feb 5 2009 userDupes.inc -rw-r--r-- 1 root root 6116 May 20 2008 userOptions.inc -rw-r--r-- 1 root root 572 May 20 2008 userOptions.php -rw-r--r-- 1 root root 627 May 22 2006 users.sql -rw-r--r-- 1 root root 199 Jul 19 2008 waitForSlave.php -rw-r--r-- 1 root root 12836 Jul 4 2008 wikipedia-interwiki.sql -rw-r--r-- 1 root root 8341 Jun 11 2008 wiktionary-interwiki.sql