RIGHT:[[:t/解析]]

#contents


*呼び出し関係 [#r61ecb2d]
 require_once( './includes/WebStart.php' );
 	require_once( './StartProfiler.php' );
 	wfProfileIn( 'WebStart.php-conf' );
 	require_once( './includes/Defines.php' );
 	require_once( './includes/DefaultSettings.php' );
 	require_once( './includes/templates/NoLocalSettings.php' );
 	require_once( './LocalSettings.php' );
 -	wfProfileOut
 -		略。
 	wfProfileIn( 'WebStart.php-ob_start' );
 	require_once( './includes/OutputHandler.php' );
 	require_once( './includes/Setup.php' );
 
 -require_once( "includes/Wiki.php" );
 -	なし。
 -wfProfileIn( 'main-misc-setup' );
 -	なし。
 -OutputPage::setEncodings();
 -	なし。
 -WebRequest->getVal( 'maxlag' );
 -	WebRequest->getGPCVal( $_REQUEST, $name, $default );
 -		StubContLang->checkTitleEncoding( $data );
 -			lib/globalfunctions.php/wfDebugDieBacktrace
 -				なし。
 -			Language->fallback8bitEncoding
 -				$this->load();
 -					self::loadLocalisation( $this->getCode() );
 -						wfProfileIn
 -							なし。
 -						wfGetPrecompiledData( self::getFileName( "Messages", $code, '.ser' ) );
 -							wfDebug
 -								StubObject::isRealObject
 -									なし。
 -								$wgOut->_unstub();
 -									wfProfileIn
 -										なし。
 -									wfDebug
 -										略。
 -									lib/profilerstub.php/wfProfileOut( $fname );
 -										略。
 -									wfDebug
 -										略。
 -								$wgOut->debug( $text );
 -									なし。
 -							wfErrorLog
 -								wfSuppressWarnings
 -									なし。
 -								wfRestoreWarnings
 -									wfSuppressWarnings
 -										なし。
 -						wfDebug
 -							略。
 -						lib/profilerstub.php/wfProfileOut( __METHOD__ );
 -							略。
 						$memcKey = wfMemcKey('localisation', $code );
 						$cache = $wgMemc->get( $memcKey );
 						if ( self::isLocalisationOutOfDate( $cache ) ) {
 						$wgMemc->delete( $memcKey );
 						wfProfileIn( __METHOD__ );
 -							なし。
 						$filename = self::getMessagesFileName( $code );
 						require( $filename );
 						$newDeps = self::loadLocalisation( $fallback, $disableCache );
 						$secondary = self::$mLocalisationCache[$fallback];
 						$wgMemc->set( $memcKey, $cache );
 -					$this->fixUpSettings();
 -						lib/profilerstub.php/wfProfileOut( __METHOD__ );
 -							略。
 -		WebRequest::normalizeUnicode( $data );
 -			WebRequest::normalizeUnicode( $val );
 -			UtfNormal::cleanUp
 -					UtfNormal::quickIsNFCVerify
 -						UtfNormal::loadData
 -							require_once( dirname(__FILE__) . '/UtfNormalData.inc' );
 -					UtfNormal::NFC
 -							UtfNormal::loadData
 -								require_once( dirname(__FILE__) . '/UtfNormalData.inc' );
 -							UtfNormal::fastCombiningSort
 -								UtfNormal::loadData();
 -									require_once( dirname(__FILE__) . '/UtfNormalData.inc' );
 -							UtfNormal::fastDecompose
 -								UtfNormal::loadData();
 -									require_once( dirname(__FILE__) . '/UtfNormalData.inc' );
 -						UtfNormal::fastCompose( UtfNormal::NFD( $string ) );
 -							UtfNormal::loadData();
 -								require_once( dirname(__FILE__) . '/UtfNormalData.inc' );
 
 MediaWiki->checkMaxLag
 	$wgLoadBalancer->getMaxLag
 
 MediaWiki->checkInitialQueries
 	$output->setPrintable
 	Title::newMainPage
 	$ret = Title::newFromID
 	$ret = Title::newFromURL
 	$lang->findVariantLink
 
 -includes\AjaxDispatcher.php
 -	includes\AjaxFunctions.php
 -		なし。
 
 AjaxDispatcher->performAction();
 MediaWiki->restInPeace( $wgLoadBalancer );
 	wfLogProfilingData();
 	$loadBalancer->closeAll();
 	wfDebug
 -		略。
 
 -lib/profilerstub.php/wfProfileOut
 
 MediaWiki->initialize
 	wfProfileIn
 -		略。
 	$this->preliminaryChecks
 	$this->initializeSpecialCases
 	$this->initializeArticle
 	$this->performAction
 	$output->redirect
 -	wfProfileOut
 -		略。
 MediaWiki->finalCleanup
 	wfProfileIn
 -		略。
 	$this->doUpdates
 	$this->doJobs
 	$loadBalancer->saveMasterPos
 	$loadBalancer->commitAll
 	$output->output
 	wfProfileOut
 -		略。
 MediaWiki->doUpdates
 	wfProfileIn
 -		略。
 	wfGetDB
 	$up->doUpdate
 	$dbw->trxLevel
 	$dbw->commit
 	wfProfileOut
 -		略。
 MediaWiki->restInPeace
 	wfLogProfilingData();
 	$loadBalancer->closeAll();
 	wfDebug
 -		略。


*ソースコード [#l37d91bc]


|img_auth.php(51)|function wfForbidden()|
|profileinfo.php(76)|function profile_point($name, $count, $time)|
|profileinfo.php(83)|function add_child($child)|
|profileinfo.php(87)|function display($indent = 0.0)|
|profileinfo.php(122)|function name()|
|profileinfo.php(126)|function count()|
|profileinfo.php(130)|function time()|
|profileinfo.php(134)|function fmttime()|
|profileinfo.php(139)|function compare_point($a, $b)|
|profileinfo.php(188)|function makeurl($_filter = false, $_sort = false, $_expand = false)|
|Test.php(69)|function plan( $plan, $why = '' )|
|Test.php(89)|function pass( $desc = '' )|
|Test.php(94)|function fail( $desc = '' )|
|Test.php(99)|function ok( $cond, $desc = '' )|
|Test.php(103)|function is( $got, $expected, $desc = '' )|
|Test.php(108)|function isnt( $got, $expected, $desc = '' )|
|Test.php(113)|function like( $got, $expected, $desc = '' )|
|Test.php(118)|function unlike( $got, $expected, $desc = '' )|
|Test.php(123)|function cmp_ok($got, $op, $expected, $desc = '')|
|Test.php(166)|function diag($message)|
|Test.php(181)|function include_ok( $file, $desc = '' )|
|Test.php(187)|function require_ok( $file, $desc = '' )|
|Test.php(193)|function is_deeply( $got, $expected, $desc = '' )|
|Test.php(204)|function isa_ok( $obj, $expected, $desc = '' )|
|Test.php(210)|function proclaim(|
|Test.php(240)|function report_failure( $desc, $got, $expected, $negate, $todo )|
|Test.php(258)|function test_ends ()|
|thumb.php(121)|function thumbGetHandler( $fileName )|
|trackback.php(12)|function XMLsuccess()|
|trackback.php(23)|function XMLerror($err = "Invalid request.")|
|install-utils.inc(3)|function install_version_checks()|
|install-utils.inc(34)|function copyfile( $sdir, $name, $ddir, $perms = 0664 )|
|install-utils.inc(38)|function copyfileto( $sdir, $sname, $ddir, $dname, $perms = 0664 )|
|install-utils.inc(53)|function copydirectory( $source, $dest )|
|install-utils.inc(63)|function readconsole( $prompt = '' )|
|install-utils.inc(92)|function dbsource( $fname, $db = false )|


**config [#o12a2dfa]
|config\index.php(153)|function hideall()|
|config\index.php(160)|function toggleDBarea(id,defaultroot)|
|config\index.php(222)|function getEncoded( $data )|
|config\index.php(226)|function getSitename() { return $this->getEncoded( $this->Sitename ); }|
|config\index.php(227)|function getSysopName() { return $this->getEncoded( $this->SysopName ); }|
|config\index.php(228)|function getSysopPass() { return $this->getEncoded( $this->SysopPass ); }|
|config\index.php(230)|function setSchema( $schema )|
|config\index.php(1304)|function writeSuccessMessage()|
|config\index.php(1327)|function escapePhpString( $string )|
|config\index.php(1339)|function writeLocalSettings( $conf )|
|config\index.php(1534)|function dieout( $text )|
|config\index.php(1538)|function importVar( &$var, $name, $default = "" )|
|config\index.php(1550)|function importPost( $name, $default = "" )|
|config\index.php(1554)|function importCheck( $name )|
|config\index.php(1558)|function importRequest( $name, $default = "" )|
|config\index.php(1564)|function aField( &$conf, $field, $text, $type = "text", $value = "", $onclick = '' )|
|config\index.php(1610)|function getLanguageList()|
|config\index.php(1643)|function locate_executable($loc, $names, $versioninfo = false)|
|config\index.php(1662)|function testMemcachedServer( $server )|
|config\index.php(1706)|function database_picker($conf)|
|config\index.php(1719)|function database_switcher($db)|
|config\index.php(1727)|function printListItem( $item )|


**includes [#u66adcbf]
|includes\AjaxDispatcher.php(22)|function __construct()|
|includes\AjaxDispatcher.php(53)|function performAction()|
|includes\AjaxFunctions.php(21)|function js_unescape($source, $iconv_to = 'UTF-8')|
|includes\AjaxFunctions.php(64)|function code2utf($num){|
|includes\AjaxFunctions.php(76)|function wfSajaxSearch( $term )|
|includes\AjaxFunctions.php(143)|function wfAjaxWatch($pageID = "", $watch = "")|
|includes\AjaxResponse.php(20)|function __construct( $text = NULL )|
|includes\AjaxResponse.php(35)|function setCacheDuration( $duration )|
|includes\AjaxResponse.php(39)|function setVary( $vary )|
|includes\AjaxResponse.php(43)|function setResponseCode( $code )|
|includes\AjaxResponse.php(47)|function setContentType( $type )|
|includes\AjaxResponse.php(51)|function disable()|
|includes\AjaxResponse.php(55)|function addText( $text )|
|includes\AjaxResponse.php(61)|function printText()|
|includes\AjaxResponse.php(67)|function sendHeaders()|
|includes\AjaxResponse.php(128)|function checkLastModified ( $timestamp )|
|includes\AjaxResponse.php(175)|function loadFromMemcached( $mckey, $touched )|
|includes\AjaxResponse.php(194)|function storeInMemcached( $mckey, $expiry = 86400 )|
|includes\Article.php(44)|function __construct( &$title, $oldId = null )|
|includes\Article.php(55)|function setRedirectedFrom( $from )|
|includes\Article.php(62)|function followRedirect()|
|includes\Article.php(103)|function getTitle()|
|includes\Article.php(111)|function clear()|
|includes\Article.php(139)|function getContent()|
|includes\Article.php(174)|function getSection($text,$section)|
|includes\Article.php(183)|function getOldID()|
|includes\Article.php(195)|function getOldIDFromRequest()|
|includes\Article.php(229)|function loadContent()|
|includes\Article.php(248)|function pageData( $dbr, $conditions )|
|includes\Article.php(274)|function pageDataFromTitle( $dbr, $title )|
|includes\Article.php(284)|function pageDataFromId( $dbr, $id )|
|includes\Article.php(295)|function loadPageData( $data = 'fromdb' )|
|includes\Article.php(330)|function fetchContent( $oldid = 0 )|
|includes\Article.php(398)|function forUpdate( $x = NULL )|
|includes\Article.php(407)|function getDB()|
|includes\Article.php(418)|function getSelectOptions( $options = '' )|
|includes\Article.php(432)|function getID()|
|includes\Article.php(443)|function exists()|
|includes\Article.php(450)|function getCount()|
|includes\Article.php(471)|function isCountable( $text )|
|includes\Article.php(487)|function isRedirect( $text = false )|
|includes\Article.php(502)|function isCurrent()|
|includes\Article.php(513)|function loadLastEdit()|
|includes\Article.php(532)|function getTimestamp()|
|includes\Article.php(540)|function getUser()|
|includes\Article.php(545)|function getUserText()|
|includes\Article.php(550)|function getComment()|
|includes\Article.php(555)|function getMinorEdit()|
|includes\Article.php(560)|function getRevIdFetched()|
|includes\Article.php(570)|function getContributors($limit = 0, $offset = 0)|
|includes\Article.php(604)|function view(){|
|includes\Article.php(854)|function addTrackbacks()|
|includes\Article.php(885)|function deletetrackback()|
|includes\Article.php(909)|function render()|
|includes\Article.php(919)|function purge()|
|includes\Article.php(944)|function doPurge()|
|includes\Article.php(972)|function insertOn( $dbw )|
|includes\Article.php(1012)|function updateRevisionOn( &$dbw, $revision, $lastRevision = null, $lastRevIsRedirect = null )|
|includes\Article.php(1057)|function updateRedirectOn( &$dbw, $redirectTitle, $lastRevIsRedirect = null )|
|includes\Article.php(1097)|function updateIfNewerOn( &$dbw, $revision )|
|includes\Article.php(1128)|function replaceSection($section, $text, $summary = '', $edittime = NULL)|
|includes\Article.php(1168)|function insertNewArticle( $text, $summary, $isminor, $watchthis, $suppressRC=false, $comment=false )|
|includes\Article.php(1200)|function updateArticle( $text, $summary, $minor, $watchthis, $forceBot = false, $sectionanchor = '' )|
|includes\Article.php(1261)|function doEdit( $text, $summary, $flags = 0 )|
|includes\Article.php(1450)|function showArticle( $text, $subtitle , $sectionanchor = '', $me2, $now, $summary, $oldid )|
|includes\Article.php(1461)|function doRedirect( $noRedir = false, $sectionAnchor = '' )|
|includes\Article.php(1474)|function markpatrolled()|
|includes\Article.php(1536)|function watch()|
|includes\Article.php(1565)|function doWatch()|
|includes\Article.php(1583)|function unwatch()|
|includes\Article.php(1612)|function doUnwatch()|
|includes\Article.php(1630)|function protect()|
|includes\Article.php(1638)|function unprotect()|
|includes\Article.php(1649)|function updateRestrictions( $limit = array(), $reason = '', $cascade = 0, $expiry = null )|
|includes\Article.php(1765)|function flattenRestrictions( $limit )|
|includes\Article.php(1782)|function delete()|
|includes\Article.php(1905)|function getLastNAuthors( $num, $revLatest = 0 )|
|includes\Article.php(1948)|function confirmDelete( $par, $reason )|
|includes\Article.php(1999)|function showLogExtract( &$out )|
|includes\Article.php(2014)|function doDelete( $reason )|
|includes\Article.php(2042)|function doDeleteArticle( $reason )|
|includes\Article.php(2137)|function rollback()|
|includes\Article.php(2251)|function viewUpdates()|
|includes\Article.php(2281)|function editUpdates( $text, $summary, $minoredit, $timestamp_of_pagechange, $newid, $changed = true )|
|includes\Article.php(2362)|function createUpdates( $rev )|
|includes\Article.php(2378)|function setOldSubtitle( $oldid=0 )|
|includes\Article.php(2424)|function preSaveTransform( $text )|
|includes\Article.php(2436)|function tryFileCache()|
|includes\Article.php(2463)|function isFileCacheable()|
|includes\Article.php(2504)|function checkTouched()|
|includes\Article.php(2514)|function getTouched()|
|includes\Article.php(2525)|function getLatest()|
|includes\Article.php(2541)|function quickEdit( $text, $comment = '', $minor = 0 )|
|includes\Article.php(2565)|function incViewCount( $id )|
|includes\Article.php(2634)|static function onArticleCreate($title)|
|includes\Article.php(2648)|static function onArticleDelete( $title )|
|includes\Article.php(2668)|static function onArticleEdit( $title )|
|includes\Article.php(2693)|function info()|
|includes\Article.php(2751)|function pageCountInfo( $title )|
|includes\Article.php(2784)|function getUsedTemplates()|
|includes\Article.php(2813)|public static function getRedirectAutosummary( $text )|
|includes\Article.php(2829)|public static function getBlankingAutosummary( $oldtext, $text )|
|includes\Article.php(2849)|public static function getAutosummary( $oldtext, $newtext, $flags )|
|includes\Article.php(2892)|public function outputWikiText( $text, $cache = true )|
|includes\AuthPlugin.php(47)|function userExists( $username )|
|includes\AuthPlugin.php(63)|function authenticate( $username, $password )|
|includes\AuthPlugin.php(74)|function modifyUITemplate( &$template )|
|includes\AuthPlugin.php(85)|function setDomain( $domain )|
|includes\AuthPlugin.php(96)|function validDomain( $domain )|
|includes\AuthPlugin.php(112)|function updateUser( &$user )|
|includes\AuthPlugin.php(132)|function autoCreate()|
|includes\AuthPlugin.php(141)|function allowPasswordChange()|
|includes\AuthPlugin.php(158)|function setPassword( $user, $password )|
|includes\AuthPlugin.php(170)|function updateExternalDB( $user )|
|includes\AuthPlugin.php(180)|function canCreateAccounts()|
|includes\AuthPlugin.php(195)|function addUser( $user, $password, $email='', $realname='' )|
|includes\AuthPlugin.php(209)|function strict()|
|includes\AuthPlugin.php(224)|function initUser( &$user )|
|includes\AuthPlugin.php(232)|function getCanonicalName( $username )|
|includes\AutoLoader.php(7)|function __autoload($className)|
|includes\AutoLoader.php(332)|function wfLoadAllExtensions()|
|includes\BagOStuff.php(40)|function __construct()|
|includes\BagOStuff.php(44)|function set_debug($bool)|
|includes\BagOStuff.php(51)|function get($key)|
|includes\BagOStuff.php(56)|function set($key, $value, $exptime=0)|
|includes\BagOStuff.php(61)|function delete($key, $time=0)|
|includes\BagOStuff.php(66)|function lock($key, $timeout = 0)|
|includes\BagOStuff.php(71)|function unlock($key)|
|includes\BagOStuff.php(78)|function get_multi($keys)|
|includes\BagOStuff.php(85)|function set_multi($hash, $exptime=0)|
|includes\BagOStuff.php(90)|function add($key, $value, $exptime=0)|
|includes\BagOStuff.php(97)|function add_multi($hash, $exptime=0)|
|includes\BagOStuff.php(102)|function delete_multi($keys, $time=0)|
|includes\BagOStuff.php(107)|function replace($key, $value, $exptime=0)|
|includes\BagOStuff.php(112)|function incr($key, $value=1)|
|includes\BagOStuff.php(128)|function decr($key, $value=1)|
|includes\BagOStuff.php(145)|function _debug($text)|
|includes\BagOStuff.php(153)|static function convertExpiry( $exptime )|
|includes\BagOStuff.php(175)|function HashBagOStuff()|
|includes\BagOStuff.php(179)|function _expire($key)|
|includes\BagOStuff.php(187)|function get($key)|
|includes\BagOStuff.php(195)|function set($key,$value,$exptime=0)|
|includes\BagOStuff.php(199)|function delete($key,$time=0)|
|includes\BagOStuff.php(225)|function SqlBagOStuff($tablename = 'objectcache')|
|includes\BagOStuff.php(229)|function get($key)|
|includes\BagOStuff.php(255)|function set($key,$value,$exptime=0)|
|includes\BagOStuff.php(274)|function delete($key,$time=0)|
|includes\BagOStuff.php(280)|function getTableName()|
|includes\BagOStuff.php(284)|function _query($sql)|
|includes\BagOStuff.php(301)|function _strencode($str)|
|includes\BagOStuff.php(305)|function _blobencode($str)|
|includes\BagOStuff.php(308)|function _blobdecode($str)|
|includes\BagOStuff.php(315)|function _freeresult($result)|
|includes\BagOStuff.php(320)|function _dberror($result)|
|includes\BagOStuff.php(328)|function garbageCollect()|
|includes\BagOStuff.php(340)|function expireall()|
|includes\BagOStuff.php(346)|function deleteall()|
|includes\BagOStuff.php(359)|function _serialize( &$data )|
|includes\BagOStuff.php(373)|function _unserialize( $serial )|
|includes\BagOStuff.php(391)|function _doquery($sql)|
|includes\BagOStuff.php(395)|function _doinsert($t, $v)|
|includes\BagOStuff.php(400)|function _fetchobject($result)|
|includes\BagOStuff.php(404)|function _freeresult($result)|
|includes\BagOStuff.php(408)|function _dberror($result)|
|includes\BagOStuff.php(412)|function _maxdatetime()|
|includes\BagOStuff.php(419)|function _fromunixtime($ts)|
|includes\BagOStuff.php(423)|function _strencode($s)|
|includes\BagOStuff.php(427)|function _blobencode($s)|
|includes\BagOStuff.php(431)|function _blobdecode($s)|
|includes\BagOStuff.php(435)|function getTableName()|
|includes\BagOStuff.php(464)|function get($key)|
|includes\BagOStuff.php(472)|function set($key, $value, $exptime=0)|
|includes\BagOStuff.php(477)|function delete($key, $time=0)|
|includes\BagOStuff.php(482)|function lock($key, $waitTimeout = 0 )|
|includes\BagOStuff.php(487)|function unlock($key)|
|includes\BagOStuff.php(498)|function get($key)|
|includes\BagOStuff.php(506)|function set($key, $value, $exptime=0)|
|includes\BagOStuff.php(511)|function delete($key, $time=0)|
|includes\BagOStuff.php(526)|function get($key)|
|includes\BagOStuff.php(534)|function set($key, $value, $exptime=0)|
|includes\BagOStuff.php(539)|function delete($key, $time=0)|
|includes\BagOStuff.php(544)|function lock($key, $waitTimeout = 0 )|
|includes\BagOStuff.php(549)|function unlock($key)|
|includes\BagOStuff.php(561)|function __construct( $handler = 'db3', $dir = false )|
|includes\BagOStuff.php(574)|function encode( $value, $expiry )|
|includes\BagOStuff.php(583)|function decode( $blob )|
|includes\BagOStuff.php(594)|function getReader()|
|includes\BagOStuff.php(606)|function getWriter()|
|includes\BagOStuff.php(614)|function get( $key )|
|includes\BagOStuff.php(638)|function set( $key, $value, $exptime=0 )|
|includes\BagOStuff.php(652)|function delete( $key, $time = 0 )|
|includes\BagOStuff.php(664)|function add( $key, $value, $exptime = 0 )|
|includes\Block.php(25)|function __construct( $address = '', $user = 0, $by = 0, $reason = '',|
|includes\Block.php(50)|static function newFromDB( $address, $user = 0, $killExpired = true )|
|includes\Block.php(61)|static function newFromID( $id ) |
|includes\Block.php(74)|function clear()|
|includes\Block.php(86)|function &getDBOptions( &$options )|
|includes\Block.php(111)|function load( $address = '', $user = 0, $killExpired = true )|
|includes\Block.php(181)|function loadFromResult( ResultWrapper $res, $killExpired = true ) |
|includes\Block.php(217)|function loadRange( $address, $killExpired = true, $user = 0 )|
|includes\Block.php(250)|function isAddressInRange( $addr, $range )|
|includes\Block.php(254)|function initFromRow( $row )|
|includes\Block.php(277)|function initialiseRange()|
|includes\Block.php(343)|function delete()|
|includes\Block.php(361)|function insert()|
|includes\Block.php(412)|function doRetroactiveAutoblock()|
|includes\Block.php(440)|function doAutoblock( $autoblockip, $justInserted = false )|
|includes\Block.php(522)|function deleteIfExpired()|
|includes\Block.php(538)|function isExpired()|
|includes\Block.php(548)|function isValid()|
|includes\Block.php(553)|function updateTimestamp()|
|includes\Block.php(572)|function getIntegerAddr()|
|includes\Block.php(577)|function getNetworkBits()|
|includes\Block.php(585)|public function getBy()|
|includes\Block.php(592)|function getByName()|
|includes\Block.php(600)|function forUpdate( $x = NULL )|
|includes\Block.php(604)|function fromMaster( $x = NULL )|
|includes\Block.php(608)|function getRedactedName()|
|includes\Block.php(619)|static function encodeExpiry( $expiry, $db )|
|includes\Block.php(630)|static function decodeExpiry( $expiry )|
|includes\Block.php(638)|static function getAutoblockExpiry( $timestamp )|
|includes\Block.php(648)|static function normaliseRange( $range )|
|includes\Block.php(680)|static function purgeExpired()|
|includes\Block.php(685)|static function infinity()|
|includes\CacheDependency.php(19)|function __construct( $value = false, $deps = array() )|
|includes\CacheDependency.php(30)|function isExpired()|
|includes\CacheDependency.php(43)|function initialiseDeps()|
|includes\CacheDependency.php(52)|function getValue()|
|includes\CacheDependency.php(59)|function storeToCache( $cache, $key, $expiry = 0 )|
|includes\CacheDependency.php(81)|static function getValueFromCache( $cache, $key, $expiry = 0, $callback = false, |
|includes\CacheDependency.php(111)|function loadDependencyValues() {}|
|includes\CacheDependency.php(132)|function __construct( $filename, $timestamp = null )|
|includes\CacheDependency.php(137)|function loadDependencyValues()|
|includes\CacheDependency.php(149)|function isExpired()|
|includes\CacheDependency.php(185)|function __construct( Title $title )|
|includes\CacheDependency.php(191)|function loadDependencyValues()|
|includes\CacheDependency.php(198)|function __sleep()|
|includes\CacheDependency.php(202)|function getTitle()|
|includes\CacheDependency.php(209)|function isExpired()|
|includes\CacheDependency.php(242)|function __construct( LinkBatch $linkBatch )|
|includes\CacheDependency.php(246)|function calculateTimestamps()|
|includes\CacheDependency.php(272)|function loadDependencyValues()|
|includes\CacheDependency.php(276)|function __sleep()|
|includes\CacheDependency.php(280)|function getLinkBatch()|
|includes\CacheDependency.php(288)|function isExpired()|
|includes\CacheDependency.php(321)|function __construct( $name )|
|includes\CacheDependency.php(326)|function isExpired()|
|includes\CacheDependency.php(337)|function __construct( $name )|
|includes\CacheDependency.php(342)|function isExpired()|
|includes\Categoryfinder.php(39)|function __construct()|
|includes\Categoryfinder.php(48)|function seed ( $article_ids , $categories , $mode = "AND" )|
|includes\Categoryfinder.php(67)|function run ()|
|includes\Categoryfinder.php(91)|function check ( $id , &$conds )|
|includes\Categoryfinder.php(135)|function scan_next_layer ()|
|includes\CategoryPage.php(14)|function view()|
|includes\CategoryPage.php(40)|function openShowCategory()|
|includes\CategoryPage.php(44)|function closeShowCategory()|
|includes\CategoryPage.php(61)|function __construct( $title, $from = '', $until = '' )|
|includes\CategoryPage.php(77)|function getHTML()|
|includes\CategoryPage.php(97)|function clearCategoryState()|
|includes\CategoryPage.php(108)|function getSkin()|
|includes\CategoryPage.php(119)|function addSubcategory( $title, $sortkey, $pageLength )|
|includes\CategoryPage.php(135)|function getSubcategorySortChar( $title, $sortkey )|
|includes\CategoryPage.php(150)|function addImage( $title, $sortkey, $pageLength )|
|includes\CategoryPage.php(166)|function addPage( $title, $sortkey, $pageLength )|
|includes\CategoryPage.php(174)|function finaliseCategoryState()|
|includes\CategoryPage.php(183)|function doCategoryQuery()|
|includes\CategoryPage.php(231)|function getCategoryTop()|
|includes\CategoryPage.php(241)|function getSubcategorySection()|
|includes\CategoryPage.php(256)|function getPagesSection()|
|includes\CategoryPage.php(271)|function getImageSection()|
|includes\CategoryPage.php(282)|function getCategoryBottom()|
|includes\CategoryPage.php(302)|function formatList( $articles, $articles_start_char, $cutoff = 6 )|
|includes\CategoryPage.php(321)|function columnList( $articles, $articles_start_char )|
|includes\CategoryPage.php(380)|function shortList( $articles, $articles_start_char )|
|includes\CategoryPage.php(405)|function pagingLinks( $title, $first, $last, $limit, $query = array() )|
|includes\ChangesList.php(12)|function newFromParent( $rc )|
|includes\ChangesList.php(31)|function __construct( &$skin )|
|includes\ChangesList.php(43)|public static function newFromUser( &$user )|
|includes\ChangesList.php(57)|function preCacheMessages()|
|includes\ChangesList.php(71)|function recentChangesFlags( $new, $minor, $patrolled, $nothing = ' ', $bot = false )|
|includes\ChangesList.php(84)|function beginRecentChangesList()|
|includes\ChangesList.php(96)|function endRecentChangesList()|
|includes\ChangesList.php(105)|function insertMove( &$s, $rc )|
|includes\ChangesList.php(118)|function insertDateHeader(&$s, $rc_timestamp)|
|includes\ChangesList.php(134)|function insertLog(&$s, $title, $logtype)|
|includes\ChangesList.php(140)|function insertDiffHist(&$s, &$rc, $unpatrolled)|
|includes\ChangesList.php(166)|function insertArticleLink(&$s, &$rc, $unpatrolled, $watched)|
|includes\ChangesList.php(181)|function insertTimestamp(&$s, $rc)|
|includes\ChangesList.php(188)|function insertUserRelatedLinks(&$s, &$rc)|
|includes\ChangesList.php(194)|function insertComment(&$s, &$rc)|
|includes\ChangesList.php(205)|function usePatrol()|
|includes\ChangesList.php(213)|function numberofWatchingusers( $count )|
|includes\ChangesList.php(236)|function recentChangesLine( &$rc, $watched = false )|
|includes\ChangesList.php(307)|function recentChangesLine( &$baseRC, $watched = false )|
|includes\ChangesList.php(418)|function recentChangesBlockGroup( $block )|
|includes\ChangesList.php(567)|function maybeWatchedLink( $link, $watched=false )|
|includes\ChangesList.php(583)|function arrow( $dir, $alt='' )|
|includes\ChangesList.php(596)|function sideArrow()|
|includes\ChangesList.php(608)|function downArrow()|
|includes\ChangesList.php(617)|function spacerArrow()|
|includes\ChangesList.php(625)|function recentChangesBlockLine( $rcObj )|
|includes\ChangesList.php(680)|function recentChangesBlock()|
|includes\ChangesList.php(700)|function endRecentChangesList()|
|includes\CoreParserFunctions.php(8)|static function intFunction( $parser, $part1 = '' /*, ... */ )|
|includes\CoreParserFunctions.php(17)|static function ns( $parser, $part1 = '' )|
|includes\CoreParserFunctions.php(38)|static function urlencode( $parser, $s = '' )|
|includes\CoreParserFunctions.php(42)|static function lcfirst( $parser, $s = '' )|
|includes\CoreParserFunctions.php(47)|static function ucfirst( $parser, $s = '' )|
|includes\CoreParserFunctions.php(52)|static function lc( $parser, $s = '' )|
|includes\CoreParserFunctions.php(57)|static function uc( $parser, $s = '' )|
|includes\CoreParserFunctions.php(62)|static function localurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getLocalURL', $s, $arg ); }|
|includes\CoreParserFunctions.php(63)|static function localurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeLocalURL', $s, $arg ); }|
|includes\CoreParserFunctions.php(64)|static function fullurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getFullURL', $s, $arg ); }|
|includes\CoreParserFunctions.php(65)|static function fullurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeFullURL', $s, $arg ); }|
|includes\CoreParserFunctions.php(67)|static function urlFunction( $func, $s = '', $arg = null )|
|includes\CoreParserFunctions.php(87)|static function formatNum( $parser, $num = '' )|
|includes\CoreParserFunctions.php(91)|static function grammar( $parser, $case = '', $word = '' )|
|includes\CoreParserFunctions.php(95)|static function plural( $parser, $text = '', $arg0 = null, $arg1 = null, $arg2 = null, $arg3 = null, $arg4 = null )|
|includes\CoreParserFunctions.php(100)|static function displaytitle( $parser, $param = '' )|
|includes\CoreParserFunctions.php(112)|static function isRaw( $param )|
|includes\CoreParserFunctions.php(124)|static function statisticsFunction( $func, $raw = null )|
|includes\CoreParserFunctions.php(133)|static function numberofpages( $parser, $raw = null ) { return self::statisticsFunction( 'pages', $raw ); }|
|includes\CoreParserFunctions.php(134)|static function numberofusers( $parser, $raw = null ) { return self::statisticsFunction( 'users', $raw ); }|
|includes\CoreParserFunctions.php(135)|static function numberofarticles( $parser, $raw = null ) { return self::statisticsFunction( 'articles', $raw ); }|
|includes\CoreParserFunctions.php(136)|static function numberoffiles( $parser, $raw = null ) { return self::statisticsFunction( 'images', $raw ); }|
|includes\CoreParserFunctions.php(137)|static function numberofadmins( $parser, $raw = null ) { return self::statisticsFunction( 'admins', $raw ); }|
|includes\CoreParserFunctions.php(138)|static function numberofedits( $parser, $raw = null ) { return self::statisticsFunction( 'edits', $raw ); }|
|includes\CoreParserFunctions.php(140)|static function pagesinnamespace( $parser, $namespace = 0, $raw = null )|
|includes\CoreParserFunctions.php(150)|static function language( $parser, $arg = '' )|
|includes\CoreParserFunctions.php(156)|static function pad( $string = '', $length = 0, $char = 0, $direction = STR_PAD_RIGHT )|
|includes\CoreParserFunctions.php(164)|static function padleft( $parser, $string = '', $length = 0, $char = 0 )|
|includes\CoreParserFunctions.php(168)|static function padright( $parser, $string = '', $length = 0, $char = 0 )|
|includes\CoreParserFunctions.php(172)|static function anchorencode( $parser, $text )|
|includes\CoreParserFunctions.php(180)|static function special( $parser, $text )|
|includes\CoreParserFunctions.php(189)|public static function defaultsort( $parser, $text )|
|includes\Credits.php(26)|function showCreditsPage($article)|
|includes\Credits.php(50)|function getCredits($article, $cnt, $showIfMax=true)|
|includes\Credits.php(69)|function getAuthorCredits($article)|
|includes\Credits.php(101)|function getContributorCredits($article, $cnt, $showIfMax)|
|includes\Credits.php(172)|function creditLink($user_name, $link_text = '')|
|includes\Credits.php(182)|function creditOthersLink($article)|
|includes\Database.php(25)|function DBObject($data)|
|includes\Database.php(29)|function isLOB()|
|includes\Database.php(33)|function data()|
|includes\Database.php(45)|function __construct ($info)|
|includes\Database.php(58)|function name()|
|includes\Database.php(62)|function tableName()|
|includes\Database.php(66)|function defaultValue()|
|includes\Database.php(70)|function maxLength()|
|includes\Database.php(74)|function nullable()|
|includes\Database.php(78)|function isKey()|
|includes\Database.php(82)|function isMultipleKey()|
|includes\Database.php(86)|function type()|
|includes\Database.php(107)|function __construct( Database &$db, $error )|
|includes\Database.php(119)|function __construct( Database &$db, $error = 'unknown error' )|
|includes\Database.php(128)|function useOutputPage()|
|includes\Database.php(133)|function useMessageCache()|
|includes\Database.php(138)|function getText()|
|includes\Database.php(142)|function getLogMessage()|
|includes\Database.php(147)|function getPageTitle()|
|includes\Database.php(152)|function getHTML()|
|includes\Database.php(239)|function __construct( Database &$db, $error, $errno, $sql, $fname )|
|includes\Database.php(252)|function getText()|
|includes\Database.php(261)|function getSQL()|
|includes\Database.php(270)|function getLogMessage()|
|includes\Database.php(275)|function getPageTitle()|
|includes\Database.php(279)|function getHTML()|
|includes\Database.php(327)|function failFunction( $function = NULL )|
|includes\Database.php(335)|function setOutputPage( $out )|
|includes\Database.php(342)|function debug( $debug = NULL )|
|includes\Database.php(350)|function bufferResults( $buffer = NULL )|
|includes\Database.php(365)|function ignoreErrors( $ignoreErrors = NULL )|
|includes\Database.php(373)|function trxLevel( $level = NULL )|
|includes\Database.php(380)|function errorCount( $count = NULL )|
|includes\Database.php(387)|function getLBInfo( $name = NULL )|
|includes\Database.php(399)|function setLBInfo( $name, $value = NULL )|
|includes\Database.php(410)|function cascadingDeletes()|
|includes\Database.php(417)|function cleanupTriggers()|
|includes\Database.php(425)|function strictIPs()|
|includes\Database.php(432)|function realTimestamps()|
|includes\Database.php(439)|function implicitGroupby()|
|includes\Database.php(447)|function searchableIPs()|
|includes\Database.php(454)|function lastQuery() { return $this->mLastQuery; }|
|includes\Database.php(455)|function isOpen() { return $this->mOpened; }|
|includes\Database.php(458)|function setFlag( $flag )|
|includes\Database.php(462)|function clearFlag( $flag )|
|includes\Database.php(466)|function getFlag( $flag )|
|includes\Database.php(473)|function getProperty( $name )|
|includes\Database.php(491)|function __construct( $server = false, $user = false, $password = false, $dbName = false,|
|includes\Database.php(536)|static function newFromParams( $server, $user, $password, $dbName, $failFunction = false, $flags = 0 )|
|includes\Database.php(545)|function open( $server, $user, $password, $dbName )|
|includes\Database.php(642)|function close()|
|includes\Database.php(658)|function reportConnection(^Q^Error( $error = 'Unknown error' )|
|includes\Database.php(686)|public function query( $sql, $fname = '', $tempIgnore = false )|
|includes\Database.php(793)|function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false )|
|includes\Database.php(820)|function prepare( $sql, $func = 'Database::prepare' )|
|includes\Database.php(827)|function freePrepared( $prepared )|
|includes\Database.php(836)|function execute( $prepared, $args = null )|
|includes\Database.php(852)|function safeQuery( $query, $args = null )|
|includes\Database.php(871)|function fillPrepared( $preparedQuery, $args )|
|includes\Database.php(887)|function fillPreparedArg( $matches )|
|includes\Database.php(911)|function freeResult( $res )|
|includes\Database.php(926)|function fetchObject( $res )|
|includes\Database.php(942)| function fetchRow( $res )|
|includes\Database.php(953)|function numRows( $res )|
|includes\Database.php(965)|function numFields( $res ) { return mysql_num_fields( $res ); }|
|includes\Database.php(972)|function fieldName( $res, $n ) { return mysql_field_name( $res, $n ); }|
|includes\Database.php(984)|function insertId() { return mysql_insert_id( $this->mConn ); }|
|includes\Database.php(990)|function dataSeek( $res, $row ) { return mysql_data_seek( $res, $row ); }|
|includes\Database.php(996)|function lastErrno()|
|includes\Database.php(1008)|function lastError()|
|includes\Database.php(1029)|function affectedRows() { return mysql_affected_rows( $this->mConn ); }|
|includes\Database.php(1040)|function set( $table, $var, $value, $cond, $fname = 'Database::set' )|
|includes\Database.php(1053)|function selectField( $table, $var, $cond='', $fname = 'Database::selectField', $options = array() )|
|includes\Database.php(1082)|function makeSelectOptions( $options )|
|includes\Database.php(1136)|function select( $table, $vars, $conds='', $fname = 'Database::select', $options = array() )|
|includes\Database.php(1196)|function selectRow( $table, $vars, $conds, $fname = 'Database::selectRow', $options = array() )|
|includes\Database.php(1217)|function estimateRowCount( $table, $vars='*', $conds='', $fname = 'Database::estimateRowCount', $options = array() )|
|includes\Database.php(1245)|static function generalizeSQL( $sql )|
|includes\Database.php(1270)|function fieldExists( $table, $field, $fname = 'Database::fieldExists' )|
|includes\Database.php(1293)|function indexExists( $table, $index, $fname = 'Database::indexExists' )|
|includes\Database.php(1307)|function indexInfo( $table, $index, $fname = 'Database::indexInfo' )|
|includes\Database.php(1332)|function tableExists( $table )|
|includes\Database.php(1352)|function fieldInfo( $table, $field )|
|includes\Database.php(1368)|function fieldType( $res, $index )|
|includes\Database.php(1375)|function indexUnique( $table, $index )|
|includes\Database.php(1392)|function insert( $table, $a, $fname = 'Database::insert', $options = array() )|
|includes\Database.php(1436)|function makeUpdateOptions( $options )|
|includes\Database.php(1459)|function update( $table, $values, $conds, $fname = 'Database::update', $options = array() )|
|includes\Database.php(1478)|function makeList( $a, $mode = LIST_COMMA )|
|includes\Database.php(1516)|function selectDB( $db )|
|includes\Database.php(1533)|function tableName( $name )|
|includes\Database.php(1559)|public function tableNames()|
|includes\Database.php(1577)|public function tableNamesN()|
|includes\Database.php(1589)|function tableNamesWithUseIndex( $tables, $use_index )|
|includes\Database.php(1606)|function strencode( $s )|
|includes\Database.php(1614)|function addQuotes( $s )|
|includes\Database.php(1629)|function escapeLike( $s )|
|includes\Database.php(1640)|function nextSequenceValue( $seqName )|
|includes\Database.php(1648)|function useIndexClause( $index )|
|includes\Database.php(1665)|function replace( $table, $uniqueIndexes, $rows, $fname = 'Database::replace' )|
|includes\Database.php(1701)|function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = 'Database::deleteJoin' )|
|includes\Database.php(1719)|function textFieldSize( $table, $field )|
|includes\Database.php(1738)|function lowPriorityOption()|
|includes\Database.php(1747)|function delete( $table, $conds, $fname = 'Database::delete' )|
|includes\Database.php(1766)|function insertSelect( $destTable, $srcTable, $varMap, $conds, $fname = 'Database::insertSelect',|
|includes\Database.php(1799)|function limitResult($sql, $limit, $offset=false)|
|includes\Database.php(1807)|function limitResultForUpdate($sql, $num)|
|includes\Database.php(1820)|function conditional( $cond, $trueVal, $falseVal )|
|includes\Database.php(1827)|function wasDeadlock()|
|includes\Database.php(1847)|function deadlockLoop()|
|includes\Database.php(1893)|function masterPosWait( $file, $pos, $timeout )|
|includes\Database.php(1918)|function getSlavePos()|
|includes\Database.php(1931)|function getMasterPos()|
|includes\Database.php(1944)|function begin( $fname = 'Database::begin' )|
|includes\Database.php(1952)|function commit( $fname = 'Database::commit' )|
|includes\Database.php(1960)|function rollback( $fname = 'Database::rollback' )|
|includes\Database.php(1969)|function immediateBegin( $fname = 'Database::immediateBegin' )|
|includes\Database.php(1977)|function immediateCommit( $fname = 'Database::immediateCommit' )|
|includes\Database.php(1984)|function timestamp( $ts=0 )|
|includes\Database.php(1991)|function timestampOrNull( $ts = null )|
|includes\Database.php(2002)|function resultObject( $result )|
|includes\Database.php(2013)|function aggregateValue ($valuedata,$valuename='value')|
|includes\Database.php(2020)|function getSoftwareLink()|
|includes\Database.php(2027)|function getServerVersion()|
|includes\Database.php(2034)|function ping()|
|includes\Database.php(2047)|function getLag()|
|includes\Database.php(2079)|function getStatus($which="%")|
|includes\Database.php(2091)|function maxListLen()|
|includes\Database.php(2095)|function encodeBlob($b)|
|includes\Database.php(2099)|function decodeBlob($b)|
|includes\Database.php(2110)|public function setTimeout( $timeout )|
|includes\Database.php(2122)|function sourceFile( $filename, $lineCallback = false, $resultCallback = false )|
|includes\Database.php(2139)|function sourceStream( $fp, $lineCallback = false, $resultCallback = false )|
|includes\Database.php(2198)|protected function replaceVars( $ins )|
|includes\Database.php(2225)|protected function tableNameCallback( $matches )|
|includes\Database.php(2253)|function ResultWrapper( &$database, $result )|
|includes\Database.php(2261)|function numRows()|
|includes\Database.php(2268)|function fetchObject()|
|includes\Database.php(2275)|function fetchRow()|
|includes\Database.php(2282)|function free()|
|includes\Database.php(2288)|function seek( $row )|
|includes\Database.php(2292)|function rewind()|
|includes\DatabaseFunctions.php(15)|function wfQuery( $sql, $db, $fname = '' )|
|includes\DatabaseFunctions.php(35)|function wfSingleQuery( $sql, $dbi, $fname = '' )|
|includes\DatabaseFunctions.php(55)|function wfIgnoreSQLErrors( $newstate, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(73)|function wfFreeResult( $res, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(88)|function wfFetchObject( $res, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(101)|function wfFetchRow( $res, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(114)|function wfNumRows( $res, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(127)|function wfNumFields( $res, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(143)|function wfFieldName( $res, $n, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(157)|function wfInsertId( $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(169)|function wfDataSeek( $res, $row, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(181)|function wfLastErrno( $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(193)|function wfLastError( $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(205)|function wfAffectedRows( $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(217)|function wfLastDBquery( $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(235)|function wfSetSQL( $table, $var, $value, $cond, $dbi = DB_MASTER )|
|includes\DatabaseFunctions.php(254)|function wfGetSQL( $table, $var, $cond='', $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(272)|function wfFieldExists( $table, $field, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(289)|function wfIndexExists( $table, $index, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(307)|function wfInsertArray( $table, $array, $fname = 'wfInsertArray', $dbi = DB_MASTER )|
|includes\DatabaseFunctions.php(326)|function wfGetArray( $table, $vars, $conds, $fname = 'wfGetArray', $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(345)|function wfUpdateArray( $table, $values, $conds, $fname = 'wfUpdateArray', $dbi = DB_MASTER )|
|includes\DatabaseFunctions.php(358)|function wfTableName( $name, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(370)|function wfStrencode( $s, $dbi = DB_LAST )|
|includes\DatabaseFunctions.php(382)|function wfNextSequenceValue( $seqName, $dbi = DB_MASTER )|
|includes\DatabaseFunctions.php(394)|function wfUseIndexClause( $index, $dbi = DB_SLAVE )|
|includes\DatabaseOracle.php(10)|function __construct($data)|
|includes\DatabaseOracle.php(14)|function getData()|
|includes\DatabaseOracle.php(32)|function __construct(&$db, $stmt)|
|includes\DatabaseOracle.php(44)|function free()|
|includes\DatabaseOracle.php(48)|function seek($row)|
|includes\DatabaseOracle.php(52)|function numRows()|
|includes\DatabaseOracle.php(56)|function numFields()|
|includes\DatabaseOracle.php(60)|function fetchObject()|
|includes\DatabaseOracle.php(74)|function fetchAssoc()|
|includes\DatabaseOracle.php(100)|function DatabaseOracle($server = false, $user = false, $password = false, $dbName = false,|
|includes\DatabaseOracle.php(116)|function cascadingDeletes()|
|includes\DatabaseOracle.php(119)|function cleanupTriggers()|
|includes\DatabaseOracle.php(122)|function strictIPs()|
|includes\DatabaseOracle.php(125)|function realTimestamps()|
|includes\DatabaseOracle.php(128)|function implicitGroupby()|
|includes\DatabaseOracle.php(131)|function searchableIPs()|
|includes\DatabaseOracle.php(135)|static function newFromParams( $server = false, $user = false, $password = false, $dbName = false,|
|includes\DatabaseOracle.php(145)|function open( $server, $user, $password, $dbName )|
|includes\DatabaseOracle.php(181)|function close()|
|includes\DatabaseOracle.php(190)|function execFlags()|
|includes\DatabaseOracle.php(194)|function doQuery($sql)|
|includes\DatabaseOracle.php(217)|function queryIgnore($sql, $fname = '')|
|includes\DatabaseOracle.php(221)|function freeResult($res)|
|includes\DatabaseOracle.php(225)|function fetchObject($res)|
|includes\DatabaseOracle.php(229)|function fetchRow($res)|
|includes\DatabaseOracle.php(233)|function numRows($res)|
|includes\DatabaseOracle.php(237)|function numFields($res)|
|includes\DatabaseOracle.php(241)|function fieldName($stmt, $n)|
|includes\DatabaseOracle.php(248)|function insertId()|
|includes\DatabaseOracle.php(252)|function dataSeek($res, $row)|
|includes\DatabaseOracle.php(256)|function lastError()|
|includes\DatabaseOracle.php(264)|function lastErrno()|
|includes\DatabaseOracle.php(272)|function affectedRows()|
|includes\DatabaseOracle.php(280)|function indexInfo( $table, $index, $fname = 'Database::indexExists' )|
|includes\DatabaseOracle.php(284)|function indexUnique ($table, $index, $fname = 'Database::indexUnique' )|
|includes\DatabaseOracle.php(288)|function insert( $table, $a, $fname = 'Database::insert', $options = array() )|
|includes\DatabaseOracle.php(313)|function insertOneRow($table, $row, $fname)|
|includes\DatabaseOracle.php(368)|function tableName( $name )|
|includes\DatabaseOracle.php(383)|function nextSequenceValue($seqName)|
|includes\DatabaseOracle.php(394)|function useIndexClause($index)|
|includes\DatabaseOracle.php(407)|function replace( $table, $uniqueIndexes, $rows, $fname = 'Database::replace' )|
|includes\DatabaseOracle.php(457)|function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = "Database::deleteJoin" )|
|includes\DatabaseOracle.php(474)|function textFieldSize( $table, $field )|
|includes\DatabaseOracle.php(491)|function lowPriorityOption()|
|includes\DatabaseOracle.php(495)|function limitResult($sql, $limit, $offset)|
|includes\DatabaseOracle.php(510)|function conditional( $cond, $trueVal, $falseVal )|
|includes\DatabaseOracle.php(514)|function wasDeadlock()|
|includes\DatabaseOracle.php(518)|function timestamp($ts = 0)|
|includes\DatabaseOracle.php(525)|function aggregateValue ($valuedata,$valuename='value')|
|includes\DatabaseOracle.php(529)|function reportQueryError($error, $errno, $sql, $fname, $tempIgnore = false)|
|includes\DatabaseOracle.php(553)|function getSoftwareLink()|
|includes\DatabaseOracle.php(560)|function getServerVersion()|
|includes\DatabaseOracle.php(567)|function tableExists($table)|
|includes\DatabaseOracle.php(580)|function fieldExists( $table, $field )|
|includes\DatabaseOracle.php(584)|function fieldInfo( $table, $field )|
|includes\DatabaseOracle.php(588)|function begin( $fname = '' )|
|includes\DatabaseOracle.php(591)|function immediateCommit( $fname = '' )|
|includes\DatabaseOracle.php(594)|function commit( $fname = '' )|
|includes\DatabaseOracle.php(600)|function limitResultForUpdate($sql, $num)|
|includes\DatabaseOracle.php(604)|function strencode($s)|
|includes\DatabaseOracle.php(608)|function encodeBlob($b)|
|includes\DatabaseOracle.php(611)|function decodeBlob($b)|
|includes\DatabaseOracle.php(615)|function addQuotes( $s )|
|includes\DatabaseOracle.php(621)|function quote_ident( $s )|
|includes\DatabaseOracle.php(626)|function selectDB( $db )|
|includes\DatabaseOracle.php(640)|function makeSelectOptions( $options )|
|includes\DatabaseOracle.php(673)|public function setTimeout( $timeout )|
|includes\DatabaseOracle.php(677)|function ping()|
|includes\DatabasePostgres.php(15)|static function fromText($db, $table, $field)|
|includes\DatabasePostgres.php(45)|function name()|
|includes\DatabasePostgres.php(49)|function tableName()|
|includes\DatabasePostgres.php(53)|function type()|
|includes\DatabasePostgres.php(57)|function nullable()|
|includes\DatabasePostgres.php(61)|function maxLength()|
|includes\DatabasePostgres.php(74)|function DatabasePostgres($server = false, $user = false, $password = false, $dbName = false,|
|includes\DatabasePostgres.php(90)|function cascadingDeletes()|
|includes\DatabasePostgres.php(93)|function cleanupTriggers()|
|includes\DatabasePostgres.php(96)|function strictIPs()|
|includes\DatabasePostgres.php(99)|function realTimestamps()|
|includes\DatabasePostgres.php(102)|function implicitGroupby()|
|includes\DatabasePostgres.php(105)|function searchableIPs()|
|includes\DatabasePostgres.php(109)|static function newFromParams( $server, $user, $password, $dbName, $failFunction = false, $flags = 0)|
|includes\DatabasePostgres.php(118)|function open( $server, $user, $password, $dbName )|
|includes\DatabasePostgres.php(486)|function close()|
|includes\DatabasePostgres.php(495)|function doQuery( $sql )|
|includes\DatabasePostgres.php(499)|function queryIgnore( $sql, $fname = '' )|
|includes\DatabasePostgres.php(503)|function freeResult( $res )|
|includes\DatabasePostgres.php(509)|function fetchObject( $res )|
|includes\DatabasePostgres.php(522)|function fetchRow( $res )|
|includes\DatabasePostgres.php(530)|function numRows( $res )|
|includes\DatabasePostgres.php(537)|function numFields( $res ) { return pg_num_fields( $res ); }|
|includes\DatabasePostgres.php(538)|function fieldName( $res, $n ) { return pg_field_name( $res, $n ); }|
|includes\DatabasePostgres.php(543)|function insertId()|
|includes\DatabasePostgres.php(547)|function dataSeek( $res, $row ) { return pg_result_seek( $res, $row ); }|
|includes\DatabasePostgres.php(548)|function lastError()|
|includes\DatabasePostgres.php(556)|function lastErrno()|
|includes\DatabasePostgres.php(560)|function affectedRows()|
|includes\DatabasePostgres.php(572)|function estimateRowCount( $table, $vars='*', $conds='', $fname = 'Database::estimateRowCount', $options = array() )|
|includes\DatabasePostgres.php(592)|function indexInfo( $table, $index, $fname = 'Database::indexExists' )|
|includes\DatabasePostgres.php(610)|function indexUnique ($table, $index, $fname = 'Database::indexUnique' )|
|includes\DatabasePostgres.php(622)|function insert( $table, $a, $fname = 'Database::insert', $options = array() )|
|includes\DatabasePostgres.php(651)|function tableName( $name )|
|includes\DatabasePostgres.php(666)|function nextSequenceValue( $seqName )|
|includes\DatabasePostgres.php(678)|function useIndexClause( $index )|
|includes\DatabasePostgres.php(691)|function replace( $table, $uniqueIndexes, $rows, $fname = 'Database::replace' )|
|includes\DatabasePostgres.php(741)|function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = "Database::deleteJoin" )|
|includes\DatabasePostgres.php(758)|function textFieldSize( $table, $field )|
|includes\DatabasePostgres.php(775)|function lowPriorityOption()|
|includes\DatabasePostgres.php(779)|function limitResult($sql, $limit,$offset=false)|
|includes\DatabasePostgres.php(792)|function conditional( $cond, $trueVal, $falseVal )|
|includes\DatabasePostgres.php(796)|function wasDeadlock()|
|includes\DatabasePostgres.php(800)|function timestamp( $ts=0 )|
|includes\DatabasePostgres.php(807)|function aggregateValue ($valuedata,$valuename='value')|
|includes\DatabasePostgres.php(812)|function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false )|
|includes\DatabasePostgres.php(833)|function getSoftwareLink()|
|includes\DatabasePostgres.php(840)|function getServerVersion()|
|includes\DatabasePostgres.php(855)|function relationExists( $table, $types, $schema = false )|
|includes\DatabasePostgres.php(877)|function tableExists ($table, $schema = false)|
|includes\DatabasePostgres.php(881)|function sequenceExists ($sequence, $schema = false)|
|includes\DatabasePostgres.php(885)|function triggerExists($table, $trigger)|
|includes\DatabasePostgres.php(905)|function ruleExists($table, $rule)|
|includes\DatabasePostgres.php(914)|function constraintExists($table, $constraint)|
|includes\DatabasePostgres.php(932)|function schemaExists( $schema )|
|includes\DatabasePostgres.php(946)|function fieldExists( $table, $field, $fname = 'DatabasePostgres::fieldExists' )|
|includes\DatabasePostgres.php(961)|function fieldInfo( $table, $field )|
|includes\DatabasePostgres.php(965)|function begin( $fname = 'DatabasePostgres::begin' )|
|includes\DatabasePostgres.php(969)|function immediateCommit( $fname = 'DatabasePostgres::immediateCommit' )|
|includes\DatabasePostgres.php(972)|function commit( $fname = 'DatabasePostgres::commit' )|
|includes\DatabasePostgres.php(978)|function limitResultForUpdate($sql, $num)|
|includes\DatabasePostgres.php(982)|function setup_database()|
|includes\DatabasePostgres.php(1049)|function encodeBlob($b)|
|includes\DatabasePostgres.php(1052)|function decodeBlob($b)|
|includes\DatabasePostgres.php(1056)|function strencode( $s ) { ## Should not be called by us|
|includes\DatabasePostgres.php(1060)|function addQuotes( $s )|
|includes\DatabasePostgres.php(1070)|function quote_ident( $s )|
|includes\DatabasePostgres.php(1075)|function selectDB( $db )|
|includes\DatabasePostgres.php(1089)|function makeSelectOptions( $options )|
|includes\DatabasePostgres.php(1122)|public function setTimeout( $timeout )|
|includes\DatabasePostgres.php(1126)|function ping()|
|includes\DateFormatter.php(32)|function DateFormatter()|
|includes\DateFormatter.php(101)|function &getInstance()|
|includes\DateFormatter.php(118)|function reformat( $preference, $text )|
|includes\DateFormatter.php(147)|function replace( $matches )|
|includes\DateFormatter.php(232)|function getMonthRegex()|
|includes\DateFormatter.php(247)|function makeIsoMonth( $monthName )|
|includes\DateFormatter.php(259)|function makeIsoYear( $year )|
|includes\DateFormatter.php(275)|function makeNormalYear( $iso )|
|includes\DifferenceEngine.php(34)|function DifferenceEngine( $titleObj = null, $old = 0, $new = 0, $rcid = 0 )|
|includes\DifferenceEngine.php(65)|function showDiffPage( $diffOnly = false )|
|includes\DifferenceEngine.php(199)|function renderNewRevision()|
|includes\DifferenceEngine.php(232)|function showFirstRevision()|
|includes\DifferenceEngine.php(284)|function showDiff( $otitle, $ntitle )|
|includes\DifferenceEngine.php(301)|function getDiff( $otitle, $ntitle )|
|includes\DifferenceEngine.php(316)|function getDiffBody()|
|includes\DifferenceEngine.php(367)|function generateDiffBody( $otext, $ntext )|
|includes\DifferenceEngine.php(441)|function localiseLineNumbers( $text )|
|includes\DifferenceEngine.php(446)|function localiseLineNumbersCb( $matches )|
|includes\DifferenceEngine.php(455)|function getMultiNotice()|
|includes\DifferenceEngine.php(481)|function addHeader( $diff, $otitle, $ntitle, $multi = '' )|
|includes\DifferenceEngine.php(507)|function setText( $oldText, $newText )|
|includes\DifferenceEngine.php(523)|function loadRevisionData()|
|includes\DifferenceEngine.php(602)|function loadText()|
|includes\DifferenceEngine.php(632)|function loadNewText()|
|includes\DifferenceEngine.php(666)|function reverse()|
|includes\DifferenceEngine.php(670)|function norig()|
|includes\DifferenceEngine.php(674)|function nclosing()|
|includes\DifferenceEngine.php(687)|function _DiffOp_Copy ($orig, $closing = false)|
|includes\DifferenceEngine.php(694)|function reverse()|
|includes\DifferenceEngine.php(707)|function _DiffOp_Delete ($lines)|
|includes\DifferenceEngine.php(712)|function reverse()|
|includes\DifferenceEngine.php(725)|function _DiffOp_Add ($lines)|
|includes\DifferenceEngine.php(730)|function reverse()|
|includes\DifferenceEngine.php(743)|function _DiffOp_Change ($orig, $closing)|
|includes\DifferenceEngine.php(748)|function reverse()|
|includes\DifferenceEngine.php(781)|function diff ($from_lines, $to_lines)|
|includes\DifferenceEngine.php(877)|function _line_hash( $line )|
|includes\DifferenceEngine.php(902)|function _diag ($xoff, $xlim, $yoff, $ylim, $nchunks)|
|includes\DifferenceEngine.php(980)|function _lcs_pos ($ypos)|
|includes\DifferenceEngine.php(1021)|function _compareseq ($xoff, $xlim, $yoff, $ylim)|
|includes\DifferenceEngine.php(1081)|function _shift_boundaries ($lines, &$changed, $other_changed)|
|includes\DifferenceEngine.php(1210)|function Diff($from_lines, $to_lines)|
|includes\DifferenceEngine.php(1226)|function reverse ()|
|includes\DifferenceEngine.php(1240)|function isEmpty ()|
|includes\DifferenceEngine.php(1255)|function lcs ()|
|includes\DifferenceEngine.php(1272)|function orig()|
|includes\DifferenceEngine.php(1290)|function closing()|
|includes\DifferenceEngine.php(1305)|function _check ($from_lines, $to_lines)|
|includes\DifferenceEngine.php(1363)|function MappedDiff($from_lines, $to_lines,|
|includes\DifferenceEngine.php(1425)|function format($diff)|
|includes\DifferenceEngine.php(1485)|function _block($xbeg, $xlen, $ybeg, $ylen, &$edits)|
|includes\DifferenceEngine.php(1505)|function _start_diff()|
|includes\DifferenceEngine.php(1509)|function _end_diff()|
|includes\DifferenceEngine.php(1515)|function _block_header($xbeg, $xlen, $ybeg, $ylen)|
|includes\DifferenceEngine.php(1524)|function _start_block($header)|
|includes\DifferenceEngine.php(1528)|function _end_block()|
|includes\DifferenceEngine.php(1531)|function _lines($lines, $prefix = ' ')|
|includes\DifferenceEngine.php(1536)|function _context($lines)|
|includes\DifferenceEngine.php(1540)|function _added($lines)|
|includes\DifferenceEngine.php(1543)|function _deleted($lines)|
|includes\DifferenceEngine.php(1547)|function _changed($orig, $closing)|
|includes\DifferenceEngine.php(1568)|function _HWLDF_WordAccumulator ()|
|includes\DifferenceEngine.php(1575)|function _flushGroup ($new_tag)|
|includes\DifferenceEngine.php(1590)|function _flushLine ($new_tag)|
|includes\DifferenceEngine.php(1600)|function addWords ($words, $tag = '')|
|includes\DifferenceEngine.php(1617)|function getLines()|
|includes\DifferenceEngine.php(1632)|function WordLevelDiff ($orig_lines, $closing_lines)|
|includes\DifferenceEngine.php(1644)|function _split($lines)|
|includes\DifferenceEngine.php(1677)|function orig ()|
|includes\DifferenceEngine.php(1693)|function closing ()|
|includes\DifferenceEngine.php(1718)|function TableDiffFormatter()|
|includes\DifferenceEngine.php(1723)|function _block_header( $xbeg, $xlen, $ybeg, $ylen )|
|includes\DifferenceEngine.php(1729)|function _start_block( $header )|
|includes\DifferenceEngine.php(1733)|function _end_block()|
|includes\DifferenceEngine.php(1736)|function _lines( $lines, $prefix=' ', $color='white' )|
|includes\DifferenceEngine.php(1740)|function addedLine( $line )|
|includes\DifferenceEngine.php(1745)|function deletedLine( $line )|
|includes\DifferenceEngine.php(1750)|function contextLine( $line )|
|includes\DifferenceEngine.php(1754)|function emptyLine()|
|includes\DifferenceEngine.php(1758)|function _added( $lines )|
|includes\DifferenceEngine.php(1765)|function _deleted($lines)|
|includes\DifferenceEngine.php(1772)|function _context( $lines )|
|includes\DifferenceEngine.php(1780)|function _changed( $orig, $closing )|
|includes\DjVuImage.php(35)|function __construct( $filename )|
|includes\DjVuImage.php(43)|public function isValid()|
|includes\DjVuImage.php(53)|public function getImageSize()|
|includes\DjVuImage.php(71)|function dump()|
|includes\DjVuImage.php(81)|private function dumpForm( $file, $length, $indent )|
|includes\DjVuImage.php(106)|function getInfo()|
|includes\DjVuImage.php(138)|private function readChunk( $file )|
|includes\DjVuImage.php(149)|private function skipChunk( $file, $chunkLength )|
|includes\DjVuImage.php(158)|private function getMultiPageInfo( $file, $formLength )|
|includes\DjVuImage.php(185)|private function getPageInfo( $file, $formLength )|
|includes\DjVuImage.php(224)|function retrieveMetaData()|
|includes\DjVuImage.php(249)|function convertDumpToXML( $dump )|
|includes\DjVuImage.php(308)|function parseFormDjvu( $line, &$xml )|
|includes\EditPage.php(52)|function EditPage( $article )|
|includes\EditPage.php(68)|private function getContent( $def_text = '' )|
|includes\EditPage.php(164)|private function getPreloadedText($preload)|
|includes\EditPage.php(188)|function extractMetaDataFromArticle ()|
|includes\EditPage.php(278)|function submit()|
|includes\EditPage.php(293)|function edit()|
|includes\EditPage.php(457)|function previewOnOpen()|
|includes\EditPage.php(469)|function importFormData( &$request )|
|includes\EditPage.php(576)|function tokenOk( &$request )|
|includes\EditPage.php(589)|function showIntro()|
|includes\EditPage.php(614)|function attemptSave()|
|includes\EditPage.php(879)|function initialiseForm()|
|includes\EditPage.php(897)|function showEditForm( $formCallback=null )|
|includes\EditPage.php(1288)|private function showPreview( $text )|
|includes\EditPage.php(1312)|function doLivePreviewScript()|
|includes\EditPage.php(1324)|function getLastDelete()|
|includes\EditPage.php(1359)|function getPreviewText()|
|includes\EditPage.php(1430)|function blockedPage()|
|includes\EditPage.php(1457)|function userNotLoggedInPage()|
|includes\EditPage.php(1477)|function userNotConfirmedPage()|
|includes\EditPage.php(1492)|function noSuchSectionPage()|
|includes\EditPage.php(1508)|function spamPage( $match = false )|
|includes\EditPage.php(1526)|function mergeChangesInto( &$editText ){|
|includes\EditPage.php(1568)|function checkUnicodeCompliantBrowser()|
|includes\EditPage.php(1589)|function sectionAnchor( $text )|
|includes\EditPage.php(1610)|function getEditToolbar()|
|includes\EditPage.php(1752)|public static function getCheckboxes( &$tabindex, $skin, $checked )|
|includes\EditPage.php(1793)|public function getEditButtons(&$tabindex)|
|includes\EditPage.php(1874)|function livePreview()|
|includes\EditPage.php(1899)|function getDiff()|
|includes\EditPage.php(1926)|function safeUnicodeInput( $request, $field )|
|includes\EditPage.php(1941)|function safeUnicodeOutput( $text )|
|includes\EditPage.php(1962)|function makesafe( $invalue )|
|includes\EditPage.php(2004)|function unmakesafe( $invalue )|
|includes\EditPage.php(2032)|function noCreatePermission()|
|includes\Exception.php(9)|function useOutputPage()|
|includes\Exception.php(14)|function useMessageCache()|
|includes\Exception.php(20)|function msg( $key, $fallback /*[, params...] */ )|
|includes\Exception.php(30)|function getHTML()|
|includes\Exception.php(43)|function getText()|
|includes\Exception.php(55)|function getPageTitle()|
|includes\Exception.php(67)|function getLogMessage()|
|includes\Exception.php(76)|function reportHTML()|
|includes\Exception.php(95)|function reportText()|
|includes\Exception.php(102)|function report()|
|includes\Exception.php(115)|function htmlHeader()|
|includes\Exception.php(135)|function htmlFooter()|
|includes\Exception.php(147)|function getHTML()|
|includes\Exception.php(151)|function getText()|
|includes\Exception.php(165)|function __construct( $title, $msg )|
|includes\Exception.php(171)|function report()|
|includes\Exception.php(181)|function wfInstallExceptionHandler()|
|includes\Exception.php(188)|function wfReportException( Exception $e )|
|includes\Exception.php(223)|function wfExceptionHandler( $e )|
|includes\Exif.php(107)|function __construct( $file )|
|includes\Exif.php(321)|function makeFlatExifTags()|
|includes\Exif.php(331)|function extractTags( &$tagset )|
|includes\Exif.php(344)|function makeFilteredData()|
|includes\Exif.php(365)|function makeFormattedData( )|
|includes\Exif.php(377)|function getData()|
|includes\Exif.php(384)|function getFilteredData()|
|includes\Exif.php(391)|function getFormattedData()|
|includes\Exif.php(408)|function version()|
|includes\Exif.php(420)|function isByte( $in )|
|includes\Exif.php(430)|function isASCII( $in )|
|includes\Exif.php(448)|function isShort( $in )|
|includes\Exif.php(458)|function isLong( $in )|
|includes\Exif.php(468)|function isRational( $in )|
|includes\Exif.php(478)|function isUndefined( $in )|
|includes\Exif.php(488)|function isSlong( $in )|
|includes\Exif.php(498)|function isSrational( $in )|
|includes\Exif.php(518)|function validate( $tag, $val )|
|includes\Exif.php(564)|function debug( $in, $fname, $action = NULL )|
|includes\Exif.php(591)|function debugFile( $fname, $io )|
|includes\Exif.php(624)|function FormatExif( $exif )|
|includes\Exif.php(636)|function getFormattedData()|
|includes\Exif.php(1047)|function msg( $tag, $val, $arg = null )|
|includes\Exif.php(1064)|function formatNum( $num )|
|includes\Exif.php(1080)|function formatFraction( $num )|
|includes\Exif.php(1102)|function gcd( $a, $b )|
|includes\Export.php(53)|function __construct( &$db, $history = WikiExporter::CURRENT,|
|includes\Export.php(70)|function setOutputSink( &$sink )|
|includes\Export.php(74)|function openStream()|
|includes\Export.php(79)|function closeStream()|
|includes\Export.php(89)|function allPages()|
|includes\Export.php(100)|function pagesByRange( $start, $end )|
|includes\Export.php(111)|function pageByTitle( $title )|
|includes\Export.php(117)|function pageByName( $name )|
|includes\Export.php(126)|function pagesByName( $names )|
|includes\Export.php(138)|function do_list_authors ( $page , $revision , $cond )|
|includes\Export.php(162)|function dumpFrom( $cond = '' )|
|includes\Export.php(259)|function outputStream( $resultset )|
|includes\Export.php(293)|function schemaVersion()|
|includes\Export.php(307)|function openStream()|
|includes\Export.php(322)|function siteInfo()|
|includes\Export.php(334)|function sitename()|
|includes\Export.php(339)|function generator()|
|includes\Export.php(344)|function homelink()|
|includes\Export.php(348)|function caseSetting()|
|includes\Export.php(355)|function namespaces()|
|includes\Export.php(369)|function closeStream()|
|includes\Export.php(382)|function openPage( $row )|
|includes\Export.php(399)|function closePage()|
|includes\Export.php(411)|function writeRevision( $row )|
|includes\Export.php(472)|function writeOpenStream( $string )|
|includes\Export.php(476)|function writeCloseStream( $string )|
|includes\Export.php(480)|function writeOpenPage( $page, $string )|
|includes\Export.php(484)|function writeClosePage( $string )|
|includes\Export.php(488)|function writeRevision( $rev, $string )|
|includes\Export.php(496)|function write( $string )|
|includes\Export.php(508)|function DumpFileOutput( $file )|
|includes\Export.php(512)|function write( $string )|
|includes\Export.php(524)|function DumpPipeOutput( $command, $file = null )|
|includes\Export.php(537)|function DumpGZipOutput( $file )|
|includes\Export.php(547)|function DumpBZip2Output( $file )|
|includes\Export.php(557)|function Dump7ZipOutput( $file )|
|includes\Export.php(575)|function DumpFilter( &$sink )|
|includes\Export.php(579)|function writeOpenStream( $string )|
|includes\Export.php(583)|function writeCloseStream( $string )|
|includes\Export.php(587)|function writeOpenPage( $page, $string )|
|includes\Export.php(594)|function writeClosePage( $string )|
|includes\Export.php(601)|function writeRevision( $rev, $string )|
|includes\Export.php(611)|function pass( $page )|
|includes\Export.php(621)|function pass( $page )|
|includes\Export.php(634)|function DumpNamespaceFilter( &$sink, $param )|
|includes\Export.php(674)|function pass( $page )|
|includes\Export.php(688)|function writeOpenPage( $page, $string )|
|includes\Export.php(693)|function writeClosePage( $string )|
|includes\Export.php(705)|function writeRevision( $rev, $string )|
|includes\Export.php(718)|function DumpMultiWriter( $sinks )|
|includes\Export.php(723)|function writeOpenStream( $string )|
|includes\Export.php(729)|function writeCloseStream( $string )|
|includes\Export.php(735)|function writeOpenPage( $page, $string )|
|includes\Export.php(741)|function writeClosePage( $string )|
|includes\Export.php(747)|function writeRevision( $rev, $string )|
|includes\Export.php(754)|function xmlsafe( $string )|
|includes\ExternalEdit.php(23)|function __construct( $article, $mode )|
|includes\ExternalEdit.php(31)|function edit()|
|includes\ExternalStore.php(15)|function fetchFromURL($url)|
|includes\ExternalStore.php(35)|function &getStoreObject( $proto )|
|includes\ExternalStore.php(59)|function insert( $url, $data )|
|includes\ExternalStoreDB.php(34)|function &getLoadBalancer( $cluster )|
|includes\ExternalStoreDB.php(44)|function &getSlave( $cluster )|
|includes\ExternalStoreDB.php(50)|function &getMaster( $cluster )|
|includes\ExternalStoreDB.php(56)|function getTable( &$db )|
|includes\ExternalStoreDB.php(68)|function fetchFromURL($url)|
|includes\ExternalStoreDB.php(96)|function &fetchBlob( $cluster, $id, $itemID )|
|includes\ExternalStoreDB.php(133)|function store( $cluster, $data )|
|includes\ExternalStoreHttp.php(11)|function fetchFromURL($url)|
|includes\FakeTitle.php(7)|function error() { throw new MWException( "Attempt to call member function of FakeTitle\n" ); }|
|includes\FakeTitle.php(10)|function __call( $name, $args ) { $this->error(); }|
|includes\FakeTitle.php(13)|function getInterwikiLink()  { $this->error(); }|
|includes\FakeTitle.php(14)|function getInterwikiCached() { $this->error(); }|
|includes\FakeTitle.php(15)|function isLocal() { $this->error(); }|
|includes\FakeTitle.php(16)|function isTrans() { $this->error(); }|
|includes\FakeTitle.php(17)|function getText() { $this->error(); }|
|includes\FakeTitle.php(18)|function getPartialURL() { $this->error(); }|
|includes\FakeTitle.php(19)|function getDBkey() { $this->error(); }|
|includes\FakeTitle.php(20)|function getNamespace() { $this->error(); }|
|includes\FakeTitle.php(21)|function getNsText() { $this->error(); }|
|includes\FakeTitle.php(22)|function getSubjectNsText() { $this->error(); }|
|includes\FakeTitle.php(23)|function getInterwiki() { $this->error(); }|
|includes\FakeTitle.php(24)|function getFragment() { $this->error(); }|
|includes\FakeTitle.php(25)|function getDefaultNamespace() { $this->error(); }|
|includes\FakeTitle.php(26)|function getIndexTitle() { $this->error(); }|
|includes\FakeTitle.php(27)|function getPrefixedDBkey() { $this->error(); }|
|includes\FakeTitle.php(28)|function getPrefixedText() { $this->error(); }|
|includes\FakeTitle.php(29)|function getFullText() { $this->error(); }|
|includes\FakeTitle.php(30)|function getPrefixedURL() { $this->error(); }|
|includes\FakeTitle.php(31)|function getFullURL() {$this->error(); }|
|includes\FakeTitle.php(32)|function getLocalURL() { $this->error(); }|
|includes\FakeTitle.php(33)|function escapeLocalURL() { $this->error(); }|
|includes\FakeTitle.php(34)|function escapeFullURL() { $this->error(); }|
|includes\FakeTitle.php(35)|function getInternalURL() { $this->error(); }|
|includes\FakeTitle.php(36)|function getEditURL() { $this->error(); }|
|includes\FakeTitle.php(37)|function getEscapedText() { $this->error(); }|
|includes\FakeTitle.php(38)|function isExternal() { $this->error(); }|
|includes\FakeTitle.php(39)|function isSemiProtected() { $this->error(); }|
|includes\FakeTitle.php(40)|function isProtected() { $this->error(); }|
|includes\FakeTitle.php(41)|function userIsWatching() { $this->error(); }|
|includes\FakeTitle.php(42)|function userCan() { $this->error(); }|
|includes\FakeTitle.php(43)|function userCanCreate() { $this->error(); }|
|includes\FakeTitle.php(44)|function userCanEdit() { $this->error(); }|
|includes\FakeTitle.php(45)|function userCanMove() { $this->error(); }|
|includes\FakeTitle.php(46)|function isMovable() { $this->error(); }|
|includes\FakeTitle.php(47)|function userCanRead() { $this->error(); }|
|includes\FakeTitle.php(48)|function isTalkPage() { $this->error(); }|
|includes\FakeTitle.php(49)|function isCssJsSubpage() { $this->error(); }|
|includes\FakeTitle.php(50)|function isValidCssJsSubpage() { $this->error(); }|
|includes\FakeTitle.php(51)|function getSkinFromCssJsSubpage() { $this->error(); }|
|includes\FakeTitle.php(52)|function isCssSubpage() { $this->error(); }|
|includes\FakeTitle.php(53)|function isJsSubpage() { $this->error(); }|
|includes\FakeTitle.php(54)|function userCanEditCssJsSubpage() { $this->error(); }|
|includes\FakeTitle.php(55)|function loadRestrictions( $res ) { $this->error(); }|
|includes\FakeTitle.php(56)|function getRestrictions($action) { $this->error(); }|
|includes\FakeTitle.php(57)|function isDeleted() { $this->error(); }|
|includes\FakeTitle.php(58)|function getArticleID( $flags = 0 ) { $this->error(); }|
|includes\FakeTitle.php(59)|function getLatestRevID() { $this->error(); }|
|includes\FakeTitle.php(60)|function resetArticleID( $newid ) { $this->error(); }|
|includes\FakeTitle.php(61)|function invalidateCache() { $this->error(); }|
|includes\FakeTitle.php(62)|function getTalkPage() { $this->error(); }|
|includes\FakeTitle.php(63)|function getSubjectPage() { $this->error(); }|
|includes\FakeTitle.php(64)|function getLinksTo() { $this->error(); }|
|includes\FakeTitle.php(65)|function getTemplateLinksTo() { $this->error(); }|
|includes\FakeTitle.php(66)|function getBrokenLinksFrom() { $this->error(); }|
|includes\FakeTitle.php(67)|function getSquidURLs() { $this->error(); }|
|includes\FakeTitle.php(68)|function moveNoAuth() { $this->error(); }|
|includes\FakeTitle.php(69)|function isValidMoveOperation() { $this->error(); }|
|includes\FakeTitle.php(70)|function moveTo() { $this->error(); }|
|includes\FakeTitle.php(71)|function moveOverExistingRedirect() { $this->error(); }|
|includes\FakeTitle.php(72)|function moveToNewTitle() { $this->error(); }|
|includes\FakeTitle.php(73)|function isValidMoveTarget() { $this->error(); }|
|includes\FakeTitle.php(74)|function getParentCategories() { $this->error(); }|
|includes\FakeTitle.php(75)|function getParentCategoryTree() { $this->error(); }|
|includes\FakeTitle.php(76)|function pageCond() { $this->error(); }|
|includes\FakeTitle.php(77)|function getPreviousRevisionID() { $this->error(); }|
|includes\FakeTitle.php(78)|function getNextRevisionID() { $this->error(); }|
|includes\FakeTitle.php(79)|function equals() { $this->error(); }|
|includes\FakeTitle.php(80)|function exists() { $this->error(); }|
|includes\FakeTitle.php(81)|function isAlwaysKnown() { $this->error(); }|
|includes\FakeTitle.php(82)|function touchLinks() { $this->error(); }|
|includes\FakeTitle.php(83)|function trackbackURL() { $this->error(); }|
|includes\FakeTitle.php(84)|function trackbackRDF() { $this->error(); }|
|includes\Feed.php(45)|function __construct( $Title, $Description, $Url, $Date = '', $Author = '', $Comments = '' )|
|includes\Feed.php(57)|function xmlEncode( $string )|
|includes\Feed.php(63)|function getTitle() { return $this->xmlEncode( $this->Title ); }|
|includes\Feed.php(64)|function getUrl() { return $this->xmlEncode( $this->Url ); }|
|includes\Feed.php(65)|function getDescription() { return $this->xmlEncode( $this->Description ); }|
|includes\Feed.php(66)|function getLanguage()|
|includes\Feed.php(70)|function getDate() { return $this->Date; }|
|includes\Feed.php(71)|function getAuthor() { return $this->xmlEncode( $this->Author ); }|
|includes\Feed.php(72)|function getComments() { return $this->xmlEncode( $this->Comments ); }|
|includes\Feed.php(88)|function outHeader()|
|includes\Feed.php(96)|function outItem( $item )|
|includes\Feed.php(103)|function outFooter()|
|includes\Feed.php(118)|function httpHeaders()|
|includes\Feed.php(135)|function contentType()|
|includes\Feed.php(147)|function outXmlHeader()|
|includes\Feed.php(167)|function formatTime( $ts )|
|includes\Feed.php(174)|function outHeader()|
|includes\Feed.php(193)|function outItem( $item )|
|includes\Feed.php(209)|function outFooter()|
|includes\Feed.php(223)|function formatTime( $ts )|
|includes\Feed.php(231)|function outHeader()|
|includes\Feed.php(256)|function getFeedId()|
|includes\Feed.php(265)|function getSelfUrl()|
|includes\Feed.php(274)|function outItem( $item )|
|includes\Feed.php(297)|function outFooter() {?>|
|includes\FileStore.php(12)|static function get( $group )|
|includes\FileStore.php(26)|private function __construct( $group, $directory, $path, $hash )|
|includes\FileStore.php(41)|static function lock()|
|includes\FileStore.php(62)|static function unlock()|
|includes\FileStore.php(73)|private static function lockName()|
|includes\FileStore.php(88)|function insert( $key, $sourcePath, $flags=0 )|
|includes\FileStore.php(104)|function export( $key, $destPath, $flags=0 )|
|includes\FileStore.php(109)|private function copyFile( $sourcePath, $destPath, $flags=0 )|
|includes\FileStore.php(162)|function delete( $key )|
|includes\FileStore.php(183)|static function deleteFile( $path )|
|includes\FileStore.php(198)|function stream( $key )|
|includes\FileStore.php(229)|static function validKey( $key )|
|includes\FileStore.php(243)|static function calculateKey( $path, $extension )|
|includes\FileStore.php(273)|function filePath( $key )|
|includes\FileStore.php(286)|function urlPath( $key )|
|includes\FileStore.php(294)|private function hashPath( $key, $separator )|
|includes\FileStore.php(317)|function add( FSTransaction $transaction )|
|includes\FileStore.php(328)|function commit()|
|includes\FileStore.php(336)|function rollback()|
|includes\FileStore.php(342)|function __construct()|
|includes\FileStore.php(347)|function addCommit( $action, $path )|
|includes\FileStore.php(351)|function addRollback( $action, $path )|
|includes\FileStore.php(355)|private function apply( $actions )|
|includes\GlobalFunctions.php(40)|function iconv( $from, $to, $string )|
|includes\GlobalFunctions.php(50)|function mb_substr( $str, $start )|
|includes\GlobalFunctions.php(70)|function mb_strlen( $str, $enc="" )|
|includes\GlobalFunctions.php(93)|function array_diff_key( $left, $right )|
|includes\GlobalFunctions.php(110)|function wfClone( $object )|
|includes\GlobalFunctions.php(123)|function wfSeedRandom()|
|includes\GlobalFunctions.php(134)|function wfRandom()|
|includes\GlobalFunctions.php(150)|function wfUrlencode ( $s )|
|includes\GlobalFunctions.php(171)|function wfDebug( $text, $logonly = false )|
|includes\GlobalFunctions.php(211)|function wfDebugLog( $logGroup, $text, $public = true )|
|includes\GlobalFunctions.php(227)|function wfLogDBError( $text )|
|includes\GlobalFunctions.php(239)|function wfErrorLog( $text, $file )|
|includes\GlobalFunctions.php(252)|function wfLogProfilingData()|
|includes\GlobalFunctions.php(286)|function wfReadOnly()|
|includes\GlobalFunctions.php(323)|function wfMsg( $key )|
|includes\GlobalFunctions.php(332)|function wfMsgNoTrans( $key )|
|includes\GlobalFunctions.php(360)|function wfMsgForContent( $key )|
|includes\GlobalFunctions.php(374)|function wfMsgForContentNoTrans( $key )|
|includes\GlobalFunctions.php(388)|function wfMsgNoDB( $key )|
|includes\GlobalFunctions.php(397)|function wfMsgNoDBForContent( $key )|
|includes\GlobalFunctions.php(418)|function wfMsgReal( $key, $args, $useDB = true, $forContent=false, $transform = true )|
|includes\GlobalFunctions.php(431)|function wfMsgWeirdKey ( $key )|
|includes\GlobalFunctions.php(454)|function wfMsgGetKey( $key, $useDB, $forContent = false, $transform = true )|
|includes\GlobalFunctions.php(500)|function wfMsgReplaceArgs( $message, $args )|
|includes\GlobalFunctions.php(533)|function wfMsgHtml( $key )|
|includes\GlobalFunctions.php(550)|function wfMsgWikiHtml( $key )|
|includes\GlobalFunctions.php(567)|function wfMsgExt( $key, $options )|
|includes\GlobalFunctions.php(617)|function wfAbruptExit( $error = false ){|
|includes\GlobalFunctions.php(647)|function wfErrorExit()|
|includes\GlobalFunctions.php(656)|function wfDie( $msg='' )|
|includes\GlobalFunctions.php(667)|function wfDebugDieBacktrace( $msg = '' )|
|includes\GlobalFunctions.php(677)|function wfHostname()|
|includes\GlobalFunctions.php(697)|function wfReportTime()|
|includes\GlobalFunctions.php(720)|function wfDebugBacktrace()|
|includes\GlobalFunctions.php(729)|function wfBacktrace()|
|includes\GlobalFunctions.php(780)|function wfShowingResults( $offset, $limit )|
|includes\GlobalFunctions.php(788)|function wfShowingResultsNum( $offset, $limit, $num )|
|includes\GlobalFunctions.php(796)|function wfViewPrevNext( $offset, $limit, $link, $query = '', $atend = false )|
|includes\GlobalFunctions.php(840)|function wfNumLink( $offset, $limit, &$title, $query = '' )|
|includes\GlobalFunctions.php(857)|function wfClientAcceptsGzip()|
|includes\GlobalFunctions.php(883)|function wfCheckLimits( $deflimit = 50, $optionname = 'rclimit' )|
|includes\GlobalFunctions.php(898)|function wfEscapeWikiText( $text )|
|includes\GlobalFunctions.php(909)|function wfQuotedPrintable( $string, $charset = '' )|
|includes\GlobalFunctions.php(932)|function wfTime()|
|includes\GlobalFunctions.php(940)|function wfSetVar( &$dest, $source )|
|includes\GlobalFunctions.php(951)|function wfSetBit( &$dest, $bit, $state = true )|
|includes\GlobalFunctions.php(968)|function wfArrayToCGI( $array1, $array2 = NULL )|
|includes\GlobalFunctions.php(994)|function wfAppendQuery( $url, $query )|
|includes\GlobalFunctions.php(1010)|function wfPurgeSquidServers ($urlArr)|
|includes\GlobalFunctions.php(1019)|function wfEscapeShellArg( )|
|includes\GlobalFunctions.php(1065)|function wfMerge( $old, $mine, $yours, &$result ){|
|includes\GlobalFunctions.php(1124)|function wfVarDump( $var )|
|includes\GlobalFunctions.php(1137)|function wfHttpError( $code, $label, $desc )|
|includes\GlobalFunctions.php(1172)|function wfResetOutputBuffers( $resetGzipEncoding=true )|
|includes\GlobalFunctions.php(1215)|function wfClearOutputBuffers()|
|includes\GlobalFunctions.php(1223)|function wfAcceptToPrefs( $accept, $def = '*/*' )|
|includes\GlobalFunctions.php(1259)|function mimeTypeMatch( $type, $avail )|
|includes\GlobalFunctions.php(1287)|function wfNegotiateType( $cprefs, $sprefs )|
|includes\GlobalFunctions.php(1330)|function wfArrayLookup( $a, $b )|
|includes\GlobalFunctions.php(1338)|function wfTimestampNow()|
|includes\GlobalFunctions.php(1346)|function wfSuppressWarnings( $end = false )|
|includes\GlobalFunctions.php(1368)|function wfRestoreWarnings()|
|includes\GlobalFunctions.php(1426)|function wfTimestamp($outputtype=TS_UNIX,$ts=0)|
|includes\GlobalFunctions.php(1499)|function wfTimestampOrNull( $outputtype = TS_UNIX, $ts = null )|
|includes\GlobalFunctions.php(1512)|function wfIsWindows()|
|includes\GlobalFunctions.php(1523)|function swap( &$x, &$y )|
|includes\GlobalFunctions.php(1529)|function wfGetCachedNotice( $name )|
|includes\GlobalFunctions.php(1578)|function wfGetNamespaceNotice()|
|includes\GlobalFunctions.php(1600)|function wfGetSiteNotice()|
|includes\GlobalFunctions.php(1631)|function &wfGetMimeMagic()|
|includes\GlobalFunctions.php(1645)|function wfTempDir()|
|includes\GlobalFunctions.php(1659)|function wfMkdirParents( $fullDir, $mode = 0777 )|
|includes\GlobalFunctions.php(1706)| function wfIncrStats( $key )|
|includes\GlobalFunctions.php(1720)|function wfPercent( $nr, $acc = 2, $round = true )|
|includes\GlobalFunctions.php(1732)|function wfEncryptPassword( $userid, $password )|
|includes\GlobalFunctions.php(1745)|function wfAppendToArrayIfNotDefault( $key, $value, $default, &$changed )|
|includes\GlobalFunctions.php(1763)|function wfEmptyMsg( $msg, $wfMsgOut )|
|includes\GlobalFunctions.php(1774)|function in_string( $needle, $str )|
|includes\GlobalFunctions.php(1778)|function wfSpecialList( $page, $details )|
|includes\GlobalFunctions.php(1789)|function wfUrlProtocols()|
|includes\GlobalFunctions.php(1813)|function wfShellExec( $cmd, &$retval=null )|
|includes\GlobalFunctions.php(1862)|function wfUsePHP( $req_ver )|
|includes\GlobalFunctions.php(1882)|function wfUseMW( $req_ver )|
|includes\GlobalFunctions.php(1892)|function wfRegexReplacement( $string )|
|includes\GlobalFunctions.php(1907)|function wfBaseName( $path )|
|includes\GlobalFunctions.php(1925)|function wfRelativePath( $path, $from )|
|includes\GlobalFunctions.php(1954)|function wfMakeUrlIndex( $url )|
|includes\GlobalFunctions.php(2010)|function wfDoUpdates()|
|includes\GlobalFunctions.php(2026)|function wfExplodeMarkup( $separator, $text )|
|includes\GlobalFunctions.php(2044)|function wfBaseConvert( $input, $sourceBase, $destBase, $pad=1, $lowercase=true )|
|includes\GlobalFunctions.php(2122)|function wfCreateObject( $name, $p ){|
|includes\GlobalFunctions.php(2147)|function wfGetHTTP( $url, $timeout = 'default' ) { |
|includes\GlobalFunctions.php(2150)|function wfIsLocalURL( $url ) { |
|includes\GlobalFunctions.php(2157)|function wfSetupSession()|
|includes\GlobalFunctions.php(2176)|function wfGetPrecompiledData( $name )|
|includes\GlobalFunctions.php(2189)|function wfGetCaller( $level = 2 )|
|includes\GlobalFunctions.php(2204)|function wfGetAllCallers()|
|includes\GlobalFunctions.php(2217)|function wfMemcKey( /*... */ )|
|includes\GlobalFunctions.php(2231)|function wfForeignMemcKey( $db, $prefix /*, ... */ )|
|includes\GlobalFunctions.php(2245)|function wfWikiID()|
|includes\GlobalFunctions.php(2264)|function &wfGetDB( $db = DB_LAST, $groups = array() )|
|includes\HistoryBlob.php(17)|public function setMeta( $meta );|
|includes\HistoryBlob.php(24)|public function getMeta();|
|includes\HistoryBlob.php(31)|public function addItem( $text );|
|includes\HistoryBlob.php(36)|public function getItem( $hash );|
|includes\HistoryBlob.php(42)|public function setText( $text );|
|includes\HistoryBlob.php(47)|function getText();|
|includes\HistoryBlob.php(60)|public function ConcatenatedGzipHistoryBlob()|
|includes\HistoryBlob.php(71)|public function setMeta( $metaData )|
|includes\HistoryBlob.php(77)|public function getMeta()|
|includes\HistoryBlob.php(83)|public function addItem( $text )|
|includes\HistoryBlob.php(94)|public function getItem( $hash )|
|includes\HistoryBlob.php(104)|public function setText( $text )|
|includes\HistoryBlob.php(111)|public function getText()|
|includes\HistoryBlob.php(120)|public function removeItem( $hash )|
|includes\HistoryBlob.php(126)|public function compress()|
|includes\HistoryBlob.php(134)|public function uncompress()|
|includes\HistoryBlob.php(143)|function __sleep()|
|includes\HistoryBlob.php(149)|function __wakeup()|
|includes\HistoryBlob.php(156)|public function isHappy( $maxFactor, $factorThreshold )|
|includes\HistoryBlob.php(196)|function HistoryBlobStub( $hash = '', $oldid = 0 )|
|includes\HistoryBlob.php(204)|function setLocation( $id )|
|includes\HistoryBlob.php(211)|function setReferrer( $id )|
|includes\HistoryBlob.php(218)|function getReferrer()|
|includes\HistoryBlob.php(223)|function getText()|
|includes\HistoryBlob.php(271)|function getHash()|
|includes\HistoryBlob.php(289)|function HistoryBlobCurStub( $curid = 0 )|
|includes\HistoryBlob.php(297)|function setLocation( $id )|
|includes\HistoryBlob.php(302)|function getText()|
|includes\Hooks.php(30)|function wfRunHooks($event, $args = null)|
|includes\HTMLCacheUpdate.php(29)|function __construct( $titleTo, $table )|
|includes\HTMLCacheUpdate.php(38)|function doUpdate()|
|includes\HTMLCacheUpdate.php(54)|function insertJobs( ResultWrapper $res )|
|includes\HTMLCacheUpdate.php(84)|function getPrefix()|
|includes\HTMLCacheUpdate.php(105)|function getFromField()|
|includes\HTMLCacheUpdate.php(109)|function getToCondition()|
|includes\HTMLCacheUpdate.php(132)|function invalidateIDs( ResultWrapper $res )|
|includes\HTMLCacheUpdate.php(201)|function __construct( $title, $table, $start, $end, $id = 0 )|
|includes\HTMLCacheUpdate.php(212)|function run()|
|includes\HTMLFileCache.php(22)|function HTMLFileCache( &$title )|
|includes\HTMLFileCache.php(27)|function fileCacheName()|
|includes\HTMLFileCache.php(46)|function isFileCached()|
|includes\HTMLFileCache.php(50)|function fileCacheTime()|
|includes\HTMLFileCache.php(54)|function isFileCacheGood( $timestamp )|
|includes\HTMLFileCache.php(67)|function useGzip()|
|includes\HTMLFileCache.php(73)|function fetchRawText()|
|includes\HTMLFileCache.php(77)|function fetchPageText()|
|includes\HTMLFileCache.php(87)|function loadFromFileCache()|
|includes\HTMLFileCache.php(109)|function checkCacheDirs()|
|includes\HTMLFileCache.php(118)|function saveToFileCache( $origtext )|
|includes\HTMLForm.php(16)|function HTMLForm( &$request )|
|includes\HTMLForm.php(26)|function fieldset( $name, $content )|
|includes\HTMLForm.php(36)|function checkbox( $varname, $checked=false )|
|includes\HTMLForm.php(52)|function textbox( $varname, $value='', $size=20 )|
|includes\HTMLForm.php(66)|function radiobox( $varname, $fields )|
|includes\HTMLForm.php(81)|function textareabox ( $varname, $value='', $size=20 )|
|includes\HTMLForm.php(95)|function arraybox( $varname , $size=20 )|
|includes\HTMLForm.php(123)|function HTMLSelectGroups($selectname, $selectmsg, $selected=array(), $multiple=false, $size=6, $reverse=false)|
|includes\HttpFunctions.php(12)|static function get( $url, $timeout = 'default' )|
|includes\HttpFunctions.php(62)|static function isLocalURL( $url )|
|includes\Image.php(68)|public static function newFromName( $name )|
|includes\Image.php(81)|function newFromTitle( $title )|
|includes\Image.php(85)|function Image( $title )|
|includes\Image.php(108)|static function normalizeExtension( $ext )|
|includes\Image.php(128)|function getCacheKeys( )|
|includes\Image.php(142)|function loadFromCache()|
|includes\Image.php(209)|function saveToCache()|
|includes\Image.php(242)|function loadFromFile()|
|includes\Image.php(319)|function loadFromDB()|
|includes\Image.php(381)|function loadFromRow( &$row )|
|includes\Image.php(404)|function load()|
|includes\Image.php(425)|function maybeUpgradeRow()|
|includes\Image.php(439)|function upgradeRow()|
|includes\Image.php(488)|static function splitMime( $mime )|
|includes\Image.php(500)|function getName()|
|includes\Image.php(508)|function getTitle()|
|includes\Image.php(516)|function getURL()|
|includes\Image.php(528)|function getViewURL()|
|includes\Image.php(547)|function getImagePath()|
|includes\Image.php(558)|function getWidth( $page = 1 )|
|includes\Image.php(578)|function getHeight( $page = 1 )|
|includes\Image.php(595)|function getMetadata()|
|includes\Image.php(604)|function getSize()|
|includes\Image.php(612)|function getMimeType()|
|includes\Image.php(621)|function getMediaType()|
|includes\Image.php(636)|function canRender()|
|includes\Image.php(651)|function mustRender()|
|includes\Image.php(664)|function allowInlineDisplay()|
|includes\Image.php(679)|function isSafeFile()|
|includes\Image.php(708)|function isTrustedFile()|
|includes\Image.php(718)|function getEscapeLocalURL( $query=false)|
|includes\Image.php(726)|function getEscapeFullURL()|
|includes\Image.php(740)|function imageUrl( $name, $fromSharedDirectory = false )|
|includes\Image.php(758)|function exists()|
|includes\Image.php(767)|function thumbUrlFromName( $thumbName, $subdir = 'thumb' )|
|includes\Image.php(789)|function thumbUrl( $width, $subdir = 'thumb' )|
|includes\Image.php(798)|function getTransformScript()|
|includes\Image.php(815)|function getUnscaledThumb( $page = false )|
|includes\Image.php(833)|function thumbName( $params )|
|includes\Image.php(862)|function createThumb( $width, $height = -1 )|
|includes\Image.php(889)|function getThumbnail( $width, $height=-1, $render = true )|
|includes\Image.php(906)|function transform( $params, $flags = 0 )|
|includes\Image.php(967)|function migrateThumbFile( $thumbName )|
|includes\Image.php(996)|function getHandler()|
|includes\Image.php(1004)|function iconThumb()|
|includes\Image.php(1022)|function getLastError()|
|includes\Image.php(1029)|function getThumbnails( $shared = false )|
|includes\Image.php(1057)|function purgeMetadataCache()|
|includes\Image.php(1066)|function purgeCache( $archiveFiles = array(), $shared = false )|
|includes\Image.php(1102)|function purgeDescription()|
|includes\Image.php(1114)|function purgeEverything( $urlArr=array() )|
|includes\Image.php(1127)|function checkDBSchema(&$db)|
|includes\Image.php(1166)|function nextHistoryLine()|
|includes\Image.php(1214)|function resetHistory()|
|includes\Image.php(1232)|function getFullPath( $fromSharedRepository = false )|
|includes\Image.php(1252)|public static function isHashed( $shared )|
|includes\Image.php(1260)|function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '', $watch = false )|
|includes\Image.php(1418)|function getLinksTo( $options = '' )|
|includes\Image.php(1447)|function getExifData()|
|includes\Image.php(1472)|function isLocal()|
|includes\Image.php(1481)|function wasDeleted()|
|includes\Image.php(1497)|function delete( $reason, $suppress=false )|
|includes\Image.php(1563)|function deleteOld( $archiveName, $reason, $suppress=false )|
|includes\Image.php(1607)|private function prepareDeleteCurrent( $reason, $suppress=false )|
|includes\Image.php(1637)|private function prepareDeleteOld( $archiveName, $reason, $suppress=false )|
|includes\Image.php(1675)|private function prepareDeleteVersion( $path, $reason, $table, $fieldMap, $where, $suppress=false, $fname )|
|includes\Image.php(1755)|function restore( $versions=array(), $Unsuppress=false )|
|includes\Image.php(1953)|function isMultipage()|
|includes\Image.php(1962)|function pageCount()|
|includes\Image.php(1971)|static function getCommonsDB()|
|includes\Image.php(1986)|static function scaleHeight( $srcWidth, $srcHeight, $dstWidth )|
|includes\Image.php(2002)|function getImageSize( $fileName )|
|includes\Image.php(2011)|static function getThumbType( $ext, $mime )|
|includes\Image.php(2039)|function ArchivedFile( $title, $id=0, $key='' )|
|includes\Image.php(2107)|function isDeleted( $field )|
|includes\Image.php(2117)|function userCan( $field )|
|includes\ImageFunctions.php(12)|function wfImageDir( $fname )|
|includes\ImageFunctions.php(33)|function wfImageThumbDir( $fname, $shared = false )|
|includes\ImageFunctions.php(47)|function wfDeprecatedThumbDir( $thumbName , $subdir='thumb', $shared=false)|
|includes\ImageFunctions.php(62)|function wfImageArchiveDir( $fname , $subdir='archive', $shared=false )|
|includes\ImageFunctions.php(82)|function wfGetHashPath ( $dbkey, $fromSharedDirectory = false )|
|includes\ImageFunctions.php(98)|function wfImageArchiveUrl( $name, $subdir='archive' )|
|includes\ImageFunctions.php(118)|function wfScaleSVGUnit( $length )|
|includes\ImageFunctions.php(149)|function wfGetSVGsize( $filename )|
|includes\ImageFunctions.php(189)|function wfIsBadImage( $name, $contextTitle = false )|
|includes\ImageFunctions.php(249)|function wfFitBoxWidth( $boxWidth, $boxHeight, $maxHeight )|
|includes\ImageGallery.php(38)|function __construct( )|
|includes\ImageGallery.php(48)|function setParsing( $val = true )|
|includes\ImageGallery.php(57)|function setCaption( $caption )|
|includes\ImageGallery.php(66)|public function setCaptionHtml( $caption )|
|includes\ImageGallery.php(75)|public function setPerRow( $num )|
|includes\ImageGallery.php(86)|public function setWidths( $num )|
|includes\ImageGallery.php(97)|public function setHeights( $num )|
|includes\ImageGallery.php(108)|function useSkin( $skin )|
|includes\ImageGallery.php(117)|function getSkin()|
|includes\ImageGallery.php(133)|function add( $image, $html='' )|
|includes\ImageGallery.php(144)|function insert( $image, $html='' )|
|includes\ImageGallery.php(152)|function isEmpty()|
|includes\ImageGallery.php(162)|function setShowBytes( $f )|
|includes\ImageGallery.php(172)|function setShowFilename( $f )|
|includes\ImageGallery.php(186)|function toHTML()|
|includes\ImageGallery.php(270)|public function count()|
|includes\ImageGallery.php(279)|public function setContextTitle( $title )|
|includes\ImageGallery.php(288)|public function getContextTitle()|
|includes\ImagePage.php(25)|function render()|
|includes\ImagePage.php(31)|function view()|
|includes\ImagePage.php(99)|function showTOC( $metadata )|
|includes\ImagePage.php(118)|function makeMetadataTable( $exif )|
|includes\ImagePage.php(144)|function visibleMetadataFields()|
|includes\ImagePage.php(162)|function getContent()|
|includes\ImagePage.php(169)|function openShowImage()|
|includes\ImagePage.php(365)|function printSharedImageText()|
|includes\ImagePage.php(390)|function getUploadUrl()|
|includes\ImagePage.php(400)|function uploadLinksBox()|
|includes\ImagePage.php(423)|function closeShowImage()|
|includes\ImagePage.php(433)|function imageHistory()|
|includes\ImagePage.php(469)|function imageLinks()|
|includes\ImagePage.php(499)|function delete()|
|includes\ImagePage.php(556)|function doDelete( $reason )|
|includes\ImagePage.php(605)|function doDeleteOldImage( $oldimage )|
|includes\ImagePage.php(622)|function revert()|
|includes\ImagePage.php(690)|function blockedIPpage()|
|includes\ImagePage.php(698)|function doPurge()|
|includes\ImagePage.php(719)|function ImageHistoryList( &$skin )|
|includes\ImagePage.php(723)|function beginImageHistoryList()|
|includes\ImagePage.php(730)|function endImageHistoryList()|
|includes\ImagePage.php(735)|function imageHistoryLine( $iscur, $timestamp, $img, $user, $usertext, $size, $description, $width, $height )|
|includes\ImageQueryPage.php(24)|protected function outputResults( $out, $skin, $dbr, $res, $num, $offset )|
|includes\ImageQueryPage.php(48)|private function prepareImage( $row )|
|includes\ImageQueryPage.php(62)|protected function getCellHtml( $row )|
|includes\IP.php(38)|public static function isIPAddress( $ip )|
|includes\IP.php(47)|public static function isIPv6( $ip )|
|includes\IP.php(56)|public static function isIPv4( $ip )|
|includes\IP.php(68)|public static function IPv4toIPv6( $ip )|
|includes\IP.php(94)|public static function toUnsigned6( $ip )|
|includes\IP.php(111)|public static function sanitizeIP( $ip )|
|includes\IP.php(135)|public static function toOctet( $ip_int )|
|includes\IP.php(152)|public static function parseCIDR6( $range )|
|includes\IP.php(189)|public static function parseRange6( $range )|
|includes\IP.php(235)|public static function isValid( $ip )|
|includes\IP.php(243)|public static function isValidBlock( $ipblock )|
|includes\IP.php(252)|public static function isPublic( $ip )|
|includes\IP.php(292)|public static function toArray( $ipblock )|
|includes\IP.php(314)|public static function toHex( $ip )|
|includes\IP.php(329)|public static function toUnsigned( $ip )|
|includes\IP.php(352)|public static function toSigned( $ip )|
|includes\IP.php(368)|public static function parseCIDR( $range )|
|includes\IP.php(406)|public static function parseRange( $range )|
|includes\IP.php(447)|    public static function isInRange( $addr, $range )|
|includes\IP.php(464)|    public static function canonicalize( $addr )|
|includes\JobQueue.php(45)|static function pop($offset=0)|
|includes\JobQueue.php(130)|static function factory( $command, $title, $params = false, $id = 0 )|
|includes\JobQueue.php(142)|static function makeBlob( $params )|
|includes\JobQueue.php(150)|static function extractBlob( $blob )|
|includes\JobQueue.php(167)|static function batchInsert( $jobs )|
|includes\JobQueue.php(183)|function __construct( $command, $title, $params = false, $id = 0 )|
|includes\JobQueue.php(197)|function insert()|
|includes\JobQueue.php(212)|protected function insertFields()|
|includes\JobQueue.php(221)|function toString()|
|includes\JobQueue.php(243)|function getLastError()|
|includes\JobQueue.php(253)|function __construct( $title, $params = '', $id = 0 )|
|includes\JobQueue.php(261)|function run()|
|includes\Licenses.php(38)|function __construct( $str = null )|
|includes\Licenses.php(51)|function makeLicenses()|
|includes\Licenses.php(78)|function trimStars( $str )|
|includes\Licenses.php(89)|function stackItem( &$list, $path, $item )|
|includes\Licenses.php(97)|function makeHtml( &$tagset, $depth = 0 )|
|includes\Licenses.php(122)|function outputOption( $val, $attribs = null, $depth )|
|includes\Licenses.php(127)|function msg( $str )|
|includes\Licenses.php(139)|function getLicenses() { return $this->licenses; }|
|includes\Licenses.php(146)|function getHtml() { return $this->html; }|
|includes\Licenses.php(168)|function License( $str )|
|includes\LinkBatch.php(15)|function __construct( $arr = array() )|
|includes\LinkBatch.php(21)|function addObj( $title )|
|includes\LinkBatch.php(29)|function add( $ns, $dbkey )|
|includes\LinkBatch.php(44)|function setArray( $array )|
|includes\LinkBatch.php(51)|function isEmpty()|
|includes\LinkBatch.php(58)|function getSize()|
|includes\LinkBatch.php(66)| function execute()|
|includes\LinkBatch.php(75)|function executeInto( &$cache )|
|includes\LinkBatch.php(112)|function doQuery()|
|includes\LinkBatch.php(145)|function constructSet( $prefix, &$db )|
|includes\LinkCache.php(19)|static function &singleton()|
|includes\LinkCache.php(27)|function __construct()|
|includes\LinkCache.php(41)|function forUpdate( $update = NULL )|
|includes\LinkCache.php(45)|function getGoodLinkID( $title )|
|includes\LinkCache.php(53)|function isBadLink( $title )|
|includes\LinkCache.php(57)|function addGoodLinkObj( $id, $title )|
|includes\LinkCache.php(63)|function addBadLinkObj( $title )|
|includes\LinkCache.php(71)|function clearBadLink( $title )|
|includes\LinkCache.php(76)|function clearLink( $title )|
|includes\LinkCache.php(82)|function getPageLinks() { return $this->mPageLinks; }|
|includes\LinkCache.php(83)|function getGoodLinks() { return $this->mGoodLinks; }|
|includes\LinkCache.php(84)|function getBadLinks() { return array_keys( $this->mBadLinks ); }|
|includes\LinkCache.php(91)|function addLink( $title )|
|includes\LinkCache.php(105)|function addLinkObj( &$nt )|
|includes\LinkCache.php(166)|function clear()|
|includes\Linker.php(15)|function __construct() {}|
|includes\Linker.php(20)|function postParseLinkColour( $s = NULL )|
|includes\Linker.php(25)|function getExternalLinkAttributes( $link, $text, $class='' )|
|includes\Linker.php(34)|function getInterwikiLinkAttributes( $link, $text, $class='' )|
|includes\Linker.php(49)|function getInternalLinkAttributes( $link, $text, $broken = false )|
|includes\Linker.php(71)|function getInternalLinkAttributesObj( &$nt, $text, $broken = false )|
|includes\Linker.php(95)|function makeLink( $title, $text = '', $query = '', $trail = '' )|
|includes\Linker.php(120)|function makeKnownLink( $title, $text = '', $query = '', $trail = '', $prefix = '',$aprops = '')|
|includes\Linker.php(141)|function makeBrokenLink( $title, $text = '', $query = '', $trail = '' )|
|includes\Linker.php(162)|function makeStubLink( $title, $text = '', $query = '', $trail = '' )|
|includes\Linker.php(186)|function makeLinkObj( $nt, $text= '', $query = '', $trail = '', $prefix = '' )|
|includes\Linker.php(272)|function makeKnownLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' , $aprops = '', $style = '' )|
|includes\Linker.php(317)|function makeBrokenLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' )|
|includes\Linker.php(356)|function makeStubLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' )|
|includes\Linker.php(373)|function makeSizeLinkObj( $size, $nt, $text = '', $query = '', $trail = '', $prefix = '' )|
|includes\Linker.php(388)|function makeSelfLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' )|
|includes\Linker.php(397)|function fnamePart( $url )|
|includes\Linker.php(408)|function makeImage( $url, $alt = '' )|
|includes\Linker.php(413)|function makeExternalImage( $url, $alt = '' )|
|includes\Linker.php(422)|function makeImageLinkObj( $nt, $label, $alt, $align = '', $params = array(), $framed = false,|
|includes\Linker.php(512)|function makeThumbLinkObj( $img, $label = '', $alt, $align = 'right', $params = array(), $framed=false , $manual_thumb = "" )|
|includes\Linker.php(586)|function makeBrokenImageLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' )|
|includes\Linker.php(615)|function makeMediaLink( $name, /* wtf?! */ $url, $alt = '' )|
|includes\Linker.php(630)|function makeMediaLinkObj( $title, $text = '' )|
|includes\Linker.php(654)|function specialLink( $name, $key = '' )|
|includes\Linker.php(664)|function makeExternalLink( $url, $text, $escape = true, $linktype = '', $ns = null )|
|includes\Linker.php(684)|function userLink( $userId, $userText )|
|includes\Linker.php(702)|public function userToolLinks( $userId, $userText, $redContribsWhenNoEdits = false )|
|includes\Linker.php(736)|public function userToolLinksRedContribs( $userId, $userText )|
|includes\Linker.php(747)|function userTalkLink( $userId, $userText )|
|includes\Linker.php(759)|function blockLink( $userId, $userText )|
|includes\Linker.php(771)|function revUserLink( $rev )|
|includes\Linker.php(788)|function revUserTools( $rev )|
|includes\Linker.php(818)|function formatComment($comment, $title = NULL, $local = false)|
|includes\Linker.php(906)|function commentBlock( $comment, $title = NULL, $local = false )|
|includes\Linker.php(926)|function revComment( Revision $rev, $local = false )|
|includes\Linker.php(940)|function tocIndent()|
|includes\Linker.php(945)|function tocUnindent($level)|
|includes\Linker.php(952)|function tocLine( $anchor, $tocline, $tocnumber, $level )|
|includes\Linker.php(960)|function tocLineEnd()|
|includes\Linker.php(965)|function tocList($toc)|
|includes\Linker.php(985)|public function editSectionLinkForOther( $title, $section )|
|includes\Linker.php(1001)|public function editSectionLink( $nt, $section, $hint='' )|
|includes\Linker.php(1023)|public function makeHeadline( $level, $attribs, $anchor, $text, $link )|
|includes\Linker.php(1033)|static function splitTrail( $trail )|
|includes\Linker.php(1063)|function generateRollback( $rev )|
|includes\Linker.php(1084)|public function formatTemplates( $templates, $preview = false, $section = false)|
|includes\Linker.php(1134)|public function formatSize( $size )|
|includes\Linker.php(1170)|public function tooltipAndAccesskey($name)|
|includes\Linker.php(1199)|public function tooltip($name)|
|includes\LinkFilter.php(17)|static function matchEntry( $text, $filterEntry )|
|includes\LinkFilter.php(25)|private static function makeRegex( $filterEntry )|
|includes\LinkFilter.php(53)| public static function makeLike( $filterEntry , $prot = 'http://' )|
|includes\LinksUpdate.php(32)|function LinksUpdate( $title, $parserOutput, $recursive = true )|
|includes\LinksUpdate.php(72)|function doUpdate()|
|includes\LinksUpdate.php(81)|function doIncrementalUpdate()|
|includes\LinksUpdate.php(137)|function doDumbUpdate()|
|includes\LinksUpdate.php(167)|function queueRecursiveJobs()|
|includes\LinksUpdate.php(205)|function invalidatePages( $namespace, $dbkeys )|
|includes\LinksUpdate.php(246)|function invalidateCategories( $cats )|
|includes\LinksUpdate.php(250)|function invalidateImageDescriptions( $images )|
|includes\LinksUpdate.php(254)|function dumbTableUpdate( $table, $insertions, $fromField )|
|includes\LinksUpdate.php(271)|function makeWhereFrom2d( &$arr, $prefix )|
|includes\LinksUpdate.php(281)|function incrTableUpdate( $table, $prefix, $deletions, $insertions )|
|includes\LinksUpdate.php(317)|function getLinkInsertions( $existing = array() )|
|includes\LinksUpdate.php(338)|function getTemplateInsertions( $existing = array() )|
|includes\LinksUpdate.php(358)|function getImageInsertions( $existing = array() )|
|includes\LinksUpdate.php(374)|function getExternalInsertions( $existing = array() )|
|includes\LinksUpdate.php(393)|function getCategoryInsertions( $existing = array() )|
|includes\LinksUpdate.php(412)|function getInterlangInsertions( $existing = array() )|
|includes\LinksUpdate.php(430)|function getLinkDeletions( $existing )|
|includes\LinksUpdate.php(447)|function getTemplateDeletions( $existing )|
|includes\LinksUpdate.php(464)|function getImageDeletions( $existing )|
|includes\LinksUpdate.php(473)|function getExternalDeletions( $existing )|
|includes\LinksUpdate.php(482)|function getCategoryDeletions( $existing )|
|includes\LinksUpdate.php(491)|function getInterlangDeletions( $existing )|
|includes\LinksUpdate.php(499)|function getExistingLinks()|
|includes\LinksUpdate.php(518)|function getExistingTemplates()|
|includes\LinksUpdate.php(537)|function getExistingImages()|
|includes\LinksUpdate.php(553)|function getExistingExternals()|
|includes\LinksUpdate.php(569)|function getExistingCategories()|
|includes\LinksUpdate.php(586)|function getExistingInterlangs()|
|includes\LoadBalancer.php(25)|function __construct( $servers, $failFunction = false, $waitTimeout = 10, $waitForMasterNow = false )|
|includes\LoadBalancer.php(58)|static function newFromParams( $servers, $failFunction = false, $waitTimeout = 10 )|
|includes\LoadBalancer.php(67)|function pickRandom( $weights )|
|includes\LoadBalancer.php(94)|function getRandomNonLagged( $loads )|
|includes\LoadBalancer.php(135)|function getReaderIndex()|
|includes\LoadBalancer.php(235)|function getGroupIndex( $group )|
|includes\LoadBalancer.php(250)|function waitFor( $file, $pos )|
|includes\LoadBalancer.php(276)|function doWait( $index )|
|includes\LoadBalancer.php(318)|function &getConnection( $i, $fail = true, $groups = array() )|
|includes\LoadBalancer.php(376)|function openConnection( $i, $fail = false )|
|includes\LoadBalancer.php(403)|function isOpen( $index )|
|includes\LoadBalancer.php(420)|function reallyOpenConnection( &$server )|
|includes\LoadBalancer.php(435)|function reportConnection(^Q^Error( &$conn )|
|includes\LoadBalancer.php(468)|function getWriterIndex()|
|includes\LoadBalancer.php(478)|function force( $i )|
|includes\LoadBalancer.php(485)|function haveIndex( $i )|
|includes\LoadBalancer.php(492)|function isNonZeroLoad( $i )|
|includes\LoadBalancer.php(499)|function getServerCount()|
|includes\LoadBalancer.php(506)|function saveMasterPos()|
|includes\LoadBalancer.php(529)|function loadMasterPos()|
|includes\LoadBalancer.php(538)|function closeAll()|
|includes\LoadBalancer.php(547)|function commitAll()|
|includes\LoadBalancer.php(556)|function waitTimeout( $value = NULL )|
|includes\LoadBalancer.php(560)|function getLaggedSlaveMode()|
|includes\LoadBalancer.php(565)|function allowLagged($mode=null)|
|includes\LoadBalancer.php(571)|function pingAll()|
|includes\LoadBalancer.php(587)|function getMaxLag()|
|includes\LoadBalancer.php(606)|function getLagTimes()|
|includes\LogPage.php(45)|function __construct( $type, $rc = true )|
|includes\LogPage.php(50)|function saveContent()|
|includes\LogPage.php(93)|function validTypes()|
|includes\LogPage.php(101)|function isLogType( $type )|
|includes\LogPage.php(108)|public static function logName( $type )|
|includes\LogPage.php(123)|function logHeader( $type )|
|includes\LogPage.php(131)|function actionText( $type, $action, $title = NULL, $skin = NULL, $params = array(), $filterWikilinks=false, $translate=false )|
|includes\LogPage.php(217)|function addEntry( $action, $target, $comment, $params = array() )|
|includes\LogPage.php(236)|function makeParamBlob( $params )|
|includes\LogPage.php(244)|function extractParams( $blob )|
|includes\LogPage.php(259)|public static function formatBlockFlags( $flags )|
|includes\LogPage.php(276)|public static function formatBlockFlag( $flag )|
|includes\MacBinary.php(29)|function __construct( $filename )|
|includes\MacBinary.php(40)|function open( $filename )|
|includes\MacBinary.php(53)|function isValid()|
|includes\MacBinary.php(61)|function dataForkLength()|
|includes\MacBinary.php(70)|function extractData( $destination )|
|includes\MacBinary.php(83)|function close()|
|includes\MacBinary.php(98)|function loadHeader()|
|includes\MacBinary.php(181)|function calcCRC( $data, $seed = 0 )|
|includes\MacBinary.php(234)|function copyBytesTo( $destination, $bytesToCopy )|
|includes\MacBinary.php(247)|function hexdump( $data )|
|includes\MagicWord.php(110)|function __construct($id = 0, $syn = '', $cs = false)|
|includes\MagicWord.php(125)|static function &get( $id )|
|includes\MagicWord.php(137)|static function getVariableIDs()|
|includes\MagicWord.php(154)|function load( $id )|
|includes\MagicWord.php(169)|function initRegex()|
|includes\MagicWord.php(192)|function getRegex()|
|includes\MagicWord.php(204)|function getRegexCase()|
|includes\MagicWord.php(214)|function getRegexStart()|
|includes\MagicWord.php(224)|function getBaseRegex()|
|includes\MagicWord.php(235)|function match( $text )|
|includes\MagicWord.php(243)|function matchStart( $text )|
|includes\MagicWord.php(253)|function matchVariableStartToEnd( $text )|
|includes\MagicWord.php(276)|function matchAndRemove( &$text )|
|includes\MagicWord.php(282)|function matchStartAndRemove( &$text )|
|includes\MagicWord.php(292)|function pregRemoveAndRecord( )|
|includes\MagicWord.php(300)|function replace( $replacement, $subject, $limit=-1 )|
|includes\MagicWord.php(311)|function substituteCallback( $text, $callback )|
|includes\MagicWord.php(320)|function getVariableRegex(){|
|includes\MagicWord.php(330)|function getVariableStartToEndRegex()|
|includes\MagicWord.php(340)|function getSynonym( $i )|
|includes\MagicWord.php(344)|function getSynonyms()|
|includes\MagicWord.php(352)|function getWasModified(){|
|includes\MagicWord.php(363)|function replaceMultiple( $magicarr, $subject, &$result ){|
|includes\MagicWord.php(380)|function addToArray( &$array, $value )|
|includes\MagicWord.php(387)|function isCaseSensitive()|
|includes\Math.php(23)|function __construct( $tex )|
|includes\Math.php(27)|function setOutputMode( $mode )|
|includes\Math.php(31)|function render()|
|includes\Math.php(174)|function _error( $msg, $append = '' )|
|includes\Math.php(181)|function _recall()|
|includes\Math.php(234)|function _doRender()|
|includes\Math.php(247)|function _linkToMathImage()|
|includes\Math.php(256)|function _getHashPath()|
|includes\Math.php(265)|public static function renderMath( $tex )|
|includes\MediaTransformOutput.php(12)|function getWidth()|
|includes\MediaTransformOutput.php(19)|function getHeight()|
|includes\MediaTransformOutput.php(26)|function getUrl()|
|includes\MediaTransformOutput.php(33)|function getPath()|
|includes\MediaTransformOutput.php(49)|function isError()|
|includes\MediaTransformOutput.php(56)|protected function linkWrap( $linkAttribs, $contents )|
|includes\MediaTransformOutput.php(77)|function ThumbnailImage( $url, $width, $height, $path = false )|
|includes\MediaTransformOutput.php(102)|function toHtml( $attribs = array(), $linkAttribs = false )|
|includes\MediaTransformOutput.php(120)|function __construct( $msg, $width, $height /*, ... */ )|
|includes\MediaTransformOutput.php(133)|function toHtml( $attribs = array(), $linkAttribs = false )|
|includes\MediaTransformOutput.php(140)|function toText()|
|includes\MediaTransformOutput.php(144)|function getHtmlMsg()|
|includes\MediaTransformOutput.php(148)|function isError()|
|includes\MediaTransformOutput.php(159)|function __construct( $params )|
|includes\memcached-client.php(248)|   function memcached ($args)|
|includes\memcached-client.php(282)|   function add ($key, $val, $exp = 0)|
|includes\memcached-client.php(299)|   function decr ($key, $amt=1)|
|includes\memcached-client.php(316)|   function delete ($key, $time = 0)|
|includes\memcached-client.php(352)|   function disconnect_all ()|
|includes\memcached-client.php(370)|   function enable_compress ($enable)|
|includes\memcached-client.php(383)|   function forget_dead_hosts ()|
|includes\memcached-client.php(399)|   function get ($key)|
|includes\memcached-client.php(448)|   function get_multi ($keys)|
|includes\memcached-client.php(514)|   function incr ($key, $amt=1)|
|includes\memcached-client.php(532)|   function replace ($key, $value, $exp=0)|
|includes\memcached-client.php(556)|   function run_command ($sock, $cmd)|
|includes\memcached-client.php(590)|   function set ($key, $value, $exp=0)|
|includes\memcached-client.php(605)|   function set_compress_threshold ($thresh)|
|includes\memcached-client.php(622)|   function set_debug ($dbg)|
|includes\memcached-client.php(639)|   function set_servers ($list)|
|includes\memcached-client.php(659)|   function set_timeout ($seconds, $microseconds)|
|includes\memcached-client.php(677)|   function _close_sock ($sock)|
|includes\memcached-client.php(696)|   function _connect_sock (&$sock, $host)|
|includes\memcached-client.php(742)|   function _dead_sock ($sock)|
|includes\memcached-client.php(762)|   function get_sock ($key)|
|includes\memcached-client.php(817)|   function _hashfunc ($key)|
|includes\memcached-client.php(838)|   function _incrdecr ($cmd, $key, $amt=1)|
|includes\memcached-client.php(871)|   function _load_items ($sock, &$ret)|
|includes\memcached-client.php(937)|   function _set ($cmd, $key, $val, $exp)|
|includes\memcached-client.php(1002)|   function sock_to_host ($host)|
|includes\memcached-client.php(1025)|   function _debugprint($str){|
|includes\memcached-client.php(1035)|   function _safe_fwrite($f, $buf, $len = false)|
|includes\memcached-client.php(1057)|   function _safe_fwrite($f, $buf, $len = false)|
|includes\memcached-client.php(1069)|   function _flush_read_buffer($f)|
|includes\MemcachedSessions.php(14)|function memsess_key( $id )|
|includes\MemcachedSessions.php(21)|function memsess_open( $save_path, $session_name )|
|includes\MemcachedSessions.php(29)|function memsess_close()|
|includes\MemcachedSessions.php(37)|function memsess_read( $id )|
|includes\MemcachedSessions.php(47)|function memsess_write( $id, $data )|
|includes\MemcachedSessions.php(56)|function memsess_destroy( $id )|
|includes\MemcachedSessions.php(65)|function memsess_gc( $maxlifetime )|
|includes\MessageCache.php(27)|function __construct( &$memCached, $useDB, $expiry, $memcPrefix)|
|includes\MessageCache.php(49)|function getParserOptions()|
|includes\MessageCache.php(59)|function loadFromLocal( $hash )|
|includes\MessageCache.php(89)|function saveToLocal( $serialized, $hash )|
|includes\MessageCache.php(112)|function loadFromScript( $hash )|
|includes\MessageCache.php(135)|function saveToScript($array, $hash)|
|includes\MessageCache.php(158)|function escapeForScript($string)|
|includes\MessageCache.php(167)|function setCache( $cache )|
|includes\MessageCache.php(180)|function load()|
|includes\MessageCache.php(298)|function loadFromDB()|
|includes\MessageCache.php(340)|function getKeys()|
|includes\MessageCache.php(353)|function replace( $title, $text )|
|includes\MessageCache.php(395)|function lock()|
|includes\MessageCache.php(408)|function unlock()|
|includes\MessageCache.php(426)|function get( $key, $useDB = true, $forContent = true, $isFullKey = false )|
|includes\MessageCache.php(514)|function getMsgFromNamespace( $title )|
|includes\MessageCache.php(578)|function transform( $message )|
|includes\MessageCache.php(594)|function disable() { $this->mDisable = true; }|
|includes\MessageCache.php(595)|function enable() { $this->mDisable = false; }|
|includes\MessageCache.php(596)|function disableTransform() { $this->mDisableTransform = true; }|
|includes\MessageCache.php(597)|function enableTransform() { $this->mDisableTransform = false; }|
|includes\MessageCache.php(598)|function setTransform( $x ) { $this->mDisableTransform = $x; }|
|includes\MessageCache.php(599)|function getTransform() { return $this->mDisableTransform; }|
|includes\MessageCache.php(608)|function addMessage( $key, $value, $lang = 'en' )|
|includes\MessageCache.php(618)|function addMessages( $messages, $lang = 'en' )|
|includes\MessageCache.php(634)|function addMessagesByLang( $messages )|
|includes\MessageCache.php(647)|function getExtensionMessagesFor( $lang = 'en' )|
|includes\MessageCache.php(663)|function clear()|
|includes\MessageCache.php(673)|static function loadAllMessages()|
|includes\Metadata.php(29)|function wfDublinCoreRdf($article)|
|includes\Metadata.php(40)|function wfCreativeCommonsRdf($article)|
|includes\Metadata.php(73)|function rdfSetup()|
|includes\Metadata.php(94)|function dcPrologue($url)|
|includes\Metadata.php(111)|function dcEpilogue()|
|includes\Metadata.php(121)|function dcBasics($article)|
|includes\Metadata.php(153)|function ccPrologue()|
|includes\Metadata.php(167)|function ccSubPrologue($type, $url)|
|includes\Metadata.php(175)|function ccSubEpilogue($type)|
|includes\Metadata.php(182)|function ccLicense($terms)|
|includes\Metadata.php(209)|function ccTerm($term, $name)|
|includes\Metadata.php(216)|function ccEpilogue()|
|includes\Metadata.php(223)|function dcElement($name, $value)|
|includes\Metadata.php(231)|function dcDate($timestamp)|
|includes\Metadata.php(240)|function dcReallyFullUrl($title)|
|includes\Metadata.php(247)|function dcPageOrString($name, $page, $str)|
|includes\Metadata.php(260)|function dcPage($name, $title)|
|includes\Metadata.php(267)|function dcUrl($name, $url)|
|includes\Metadata.php(275)|function dcPerson($name, $id, $user_name='', $user_real_name='')|
|includes\Metadata.php(296)|function dcRights()|
|includes\Metadata.php(314)|function ccGetTerms($url)|
|includes\Metadata.php(332)|function getKnownLicenses()|
|includes\MimeMagic.php(109)|function __construct()|
|includes\MimeMagic.php(237)|static function &singleton()|
|includes\MimeMagic.php(247)|function getExtensionsForType($mime)|
|includes\MimeMagic.php(263)|function getTypesForExtension($ext)|
|includes\MimeMagic.php(273)|function guessTypesForExtension($ext)|
|includes\MimeMagic.php(288)|function isMatchingExtension($extension,$mime)|
|includes\MimeMagic.php(308)|function isPHPImageType( $mime )|
|includes\MimeMagic.php(334)|function isRecognizableExtension( $extension )|
|includes\MimeMagic.php(354)|function guessMimeType( $file, $useExt=true )|
|includes\MimeMagic.php(478)|function detectMimeType( $file, $useExt=true )|
|includes\MimeMagic.php(626)|function getMediaType($path=NULL,$mime=NULL)|
|includes\MimeMagic.php(692)|function findMediaType($extMime)|
|includes\Namespace.php(50)|static function isMovable( $index )|
|includes\Namespace.php(58)|static function isMain( $index )|
|includes\Namespace.php(66)|static function isTalk( $index )|
|includes\Namespace.php(74)|static function getTalk( $index )|
|includes\Namespace.php(83)|static function getSubject( $index )|
|includes\Namespace.php(94)|static function getCanonicalName( $index )|
|includes\Namespace.php(103)|static function getCanonicalIndex( $name )|
|includes\Namespace.php(123)| static function canTalk( $index )|
|includes\Namespace.php(134)|public static function isContent( $index )|
|includes\ObjectCache.php(14)|function add ($key, $val, $exp = 0) { return true; }|
|includes\ObjectCache.php(15)|function decr ($key, $amt=1) { return null; }|
|includes\ObjectCache.php(16)|function delete ($key, $time = 0) { return false; }|
|includes\ObjectCache.php(17)|function disconnect_all () { }|
|includes\ObjectCache.php(18)|function enable_compress ($enable) { }|
|includes\ObjectCache.php(19)|function forget_dead_hosts () { }|
|includes\ObjectCache.php(20)|function get ($key) { return null; }|
|includes\ObjectCache.php(21)|function get_multi ($keys) { return array_pad(array(), count($keys), null); }|
|includes\ObjectCache.php(22)|function incr ($key, $amt=1) { return null; }|
|includes\ObjectCache.php(23)|function replace ($key, $value, $exp=0) { return false; }|
|includes\ObjectCache.php(24)|function run_command ($sock, $cmd) { return null; }|
|includes\ObjectCache.php(25)|function set ($key, $value, $exp=0){ return true; }|
|includes\ObjectCache.php(26)|function set_compress_threshold ($thresh){ }|
|includes\ObjectCache.php(27)|function set_debug ($dbg) { }|
|includes\ObjectCache.php(28)|function set_servers ($list) { }|
|includes\ObjectCache.php(35)|function &wfGetCache( $inputType )|
|includes\ObjectCache.php(55)|function _debugprint( $text )|
|includes\ObjectCache.php(106)|function &wfGetMainCache()|
|includes\ObjectCache.php(112)|function &wfGetMessageCacheStorage()|
|includes\ObjectCache.php(118)|function &wfGetParserCacheStorage()|
|includes\OutputHandler.php(6)|function wfOutputHandler( $s )|
|includes\OutputHandler.php(24)|function wfGzipHandler( $s )|
|includes\OutputHandler.php(51)|function wfMangleFlashPolicy( $s )|
|includes\OutputHandler.php(58)|function wfDoContentLength( $length )|
|includes\OutputPage.php(35)|function __construct()|
|includes\OutputPage.php(56)|public function redirect( $url, $responsecode = '302' )|
|includes\OutputPage.php(68)|function setStatusCode( $statusCode ) { $this->mStatusCode = $statusCode; }|
|includes\OutputPage.php(71)|function addMeta( $name, $val ) { array_push( $this->mMetatags, array( $name, $val ) ); }|
|includes\OutputPage.php(72)|function addKeyword( $text ) { array_push( $this->mKeywords, $text ); }|
|includes\OutputPage.php(73)|function addScript( $script ) { $this->mScripts .= "\t\t".$script; }|
|includes\OutputPage.php(79)|function addInlineScript( $script )|
|includes\OutputPage.php(84)|function getScript() { |
|includes\OutputPage.php(88)|function getHeadItems()|
|includes\OutputPage.php(96)|function addHeadItem( $name, $value )|
|includes\OutputPage.php(100)|function setETag($tag) { $this->mETag = $tag; }|
|includes\OutputPage.php(101)|function setArticleBodyOnly($only) { $this->mArticleBodyOnly = $only; }|
|includes\OutputPage.php(102)|function getArticleBodyOnly($only) { return $this->mArticleBodyOnly; }|
|includes\OutputPage.php(104)|function addLink( $linkarr )|
|includes\OutputPage.php(109)|function addMetadataLink( $linkarr )|
|includes\OutputPage.php(124)|function checkLastModified ( $timestamp )|
|includes\OutputPage.php(177)|function getPageTitleActionText ()|
|includes\OutputPage.php(200)|public function setRobotpolicy( $str ) { $this->mRobotpolicy = $str; }|
|includes\OutputPage.php(201)|public function setHTMLTitle( $name ) {$this->mHTMLtitle = $name; }|
|includes\OutputPage.php(202)|public function setPageTitle( $name )|
|includes\OutputPage.php(215)|public function getHTMLTitle() { return $this->mHTMLtitle; }|
|includes\OutputPage.php(216)|public function getPageTitle() { return $this->mPagetitle; }|
|includes\OutputPage.php(217)|public function setSubtitle( $str ) { $this->mSubtitle = /*$this->parse(*/$str/*)*/; } // @bug 2514|
|includes\OutputPage.php(218)|public function getSubtitle() { return $this->mSubtitle; }|
|includes\OutputPage.php(219)|public function isArticle() { return $this->mIsarticle; }|
|includes\OutputPage.php(220)|public function setPrintable() { $this->mPrintable = true; }|
|includes\OutputPage.php(221)|public function isPrintable() { return $this->mPrintable; }|
|includes\OutputPage.php(222)|public function setSyndicated( $show = true ) { $this->mShowFeedLinks = $show; }|
|includes\OutputPage.php(223)|public function isSyndicated() { return $this->mShowFeedLinks; }|
|includes\OutputPage.php(224)|public function setOnloadHandler( $js ) { $this->mOnloadHandler = $js; }|
|includes\OutputPage.php(225)|public function getOnloadHandler() { return $this->mOnloadHandler; }|
|includes\OutputPage.php(226)|public function disable() { $this->mDoNothing = true; }|
|includes\OutputPage.php(228)|public function setArticleRelated( $v )|
|includes\OutputPage.php(234)|public function setArticleFlag( $v )|
|includes\OutputPage.php(241)|public function isArticleRelated() { return $this->mIsArticleRelated; }|
|includes\OutputPage.php(243)|public function getLanguageLinks() { return $this->mLanguageLinks; }|
|includes\OutputPage.php(244)|public function addLanguageLinks($newLinkArray)|
|includes\OutputPage.php(247)|public function setLanguageLinks($newLinkArray)|
|includes\OutputPage.php(251)|public function getCategoryLinks()|
|includes\OutputPage.php(258)|public function addCategoryLinks($categories)|
|includes\OutputPage.php(278)|public function setCategoryLinks($categories)|
|includes\OutputPage.php(283)|public function suppressQuickbar() { $this->mSuppressQuickbar = true; }|
|includes\OutputPage.php(284)|public function isQuickbarSuppressed() { return $this->mSuppressQuickbar; }|
|includes\OutputPage.php(286)|public function addHTML( $text ) { $this->mBodytext .= $text; }|
|includes\OutputPage.php(287)|public function clearHTML() { $this->mBodytext = ''; }|
|includes\OutputPage.php(288)|public function getHTML() { return $this->mBodytext; }|
|includes\OutputPage.php(289)|public function debug( $text ) { $this->mDebugtext .= $text; }|
|includes\OutputPage.php(292)|public function setParserOptions( $options )|
|includes\OutputPage.php(296)|public function parserOptions( $options = null )|
|includes\OutputPage.php(309)|public function setRevisionId( $revid )|
|includes\OutputPage.php(322)|public function addWikiText( $text, $linestart = true )|
|includes\OutputPage.php(327)|public function addWikiTextWithTitle($text, &$title, $linestart = true)|
|includes\OutputPage.php(331)|function addWikiTextTitleTidy($text, &$title, $linestart = true)|
|includes\OutputPage.php(335)|public function addWikiTextTitle($text, &$title, $linestart, $tidy = false)|
|includes\OutputPage.php(358)|public function addParserOutputNoText( &$parserOutput )|
|includes\OutputPage.php(381)|function addParserOutput( &$parserOutput )|
|includes\OutputPage.php(397)|public function addPrimaryWikiText( $text, $article, $cache = true )|
|includes\OutputPage.php(416)|public function addSecondaryWikiText( $text, $linestart = true )|
|includes\OutputPage.php(424)|public function addWikiTextTidy(  $text, $linestart = true )|
|includes\OutputPage.php(435)|public function addTemplate( &$template )|
|includes\OutputPage.php(449)|public function parse( $text, $linestart = true, $interface = false )|
|includes\OutputPage.php(465)|public function tryParserCache( &$article, $user )|
|includes\OutputPage.php(479)|public function setSquidMaxage( $maxage )|
|includes\OutputPage.php(487)|public function enableClientCache( $state )|
|includes\OutputPage.php(491)|function uncacheableBecauseRequestvars()|
|includes\OutputPage.php(497)|public function sendCacheControl()|
|includes\OutputPage.php(553)|public function output()|
|includes\OutputPage.php(689)|public function out( $ins )|
|includes\OutputPage.php(703)|public static function setEncodings()|
|includes\OutputPage.php(721)|public function reportTime()|
|includes\OutputPage.php(732)|function blockedPage( $return = true )|
|includes\OutputPage.php(768)|public function showErrorPage( $title, $msg )|
|includes\OutputPage.php(786)|public function errorpage( $title, $msg )|
|includes\OutputPage.php(796)|public function versionRequired( $version )|
|includes\OutputPage.php(812)|public function permissionRequired( $permission )|
|includes\OutputPage.php(853)|public function sysopRequired()|
|includes\OutputPage.php(861)|public function developerRequired()|
|includes\OutputPage.php(868)|public function loginToUse()|
|includes\OutputPage.php(896)|public function databaseError( $fname, $sql, $error, $errno )|
|includes\OutputPage.php(905)|public function readOnlyPage( $source = null, $protected = false )|
|includes\OutputPage.php(960)|public function fatalError( $message )|
|includes\OutputPage.php(965)|public function unexpectedValueError( $name, $val )|
|includes\OutputPage.php(970)|public function fileCopyError( $old, $new )|
|includes\OutputPage.php(975)|public function fileRenameError( $old, $new )|
|includes\OutputPage.php(980)|public function fileDeleteError( $name )|
|includes\OutputPage.php(985)|public function fileNotFoundError( $name )|
|includes\OutputPage.php(989)|public function showFatalError( $message )|
|includes\OutputPage.php(998)|public function showUnexpectedValueError( $name, $val )|
|includes\OutputPage.php(1002)|public function showFileCopyError( $old, $new )|
|includes\OutputPage.php(1006)|public function showFileRenameError( $old, $new )|
|includes\OutputPage.php(1010)|public function showFileDeleteError( $name )|
|includes\OutputPage.php(1014)|public function showFileNotFoundError( $name )|
|includes\OutputPage.php(1023)|public function returnToMain( $auto = true, $returnto = NULL )|
|includes\OutputPage.php(1059)|private function addKeywords( &$parserOutput )|
|includes\OutputPage.php(1080)|public function headElement()|
|includes\OutputPage.php(1132)|public function getHeadLinks()|
|includes\OutputPage.php(1183)|public function rateLimited()|
|includes\OutputPage.php(1196)|public function showNewSectionLink()|
|includes\PageHistory.php(33)|function __construct($article)|
|includes\PageHistory.php(47)|function history()|
|includes\PageHistory.php(120)|function beginHistoryList()|
|includes\PageHistory.php(146)|function endHistoryList()|
|includes\PageHistory.php(154)|function submitButton( $bits = array() )|
|includes\PageHistory.php(180)|function historyLine( $row, $next, $counter = '', $notificationtimestamp = false, $latest = false, $firstInList = false )|
|includes\PageHistory.php(259)|function revLink( $rev )|
|includes\PageHistory.php(275)|function curLink( $rev, $latest )|
|includes\PageHistory.php(288)|function lastLink( $rev, $next, $counter )|
|includes\PageHistory.php(314)|function diffButtons( $rev, $firstInList, $counter )|
|includes\PageHistory.php(358)|function getLatestId()|
|includes\PageHistory.php(375)|function fetchRevisions($limit, $offset, $direction)|
|includes\PageHistory.php(409)|function getNotificationTimestamp()|
|includes\PageHistory.php(442)|function feed( $type )|
|includes\PageHistory.php(470)|function feedEmpty()|
|includes\PageHistory.php(489)|function feedItem( $row )|
|includes\PageHistory.php(519)|function stripComment( $text )|
|includes\PageHistory.php(531)|function __construct( $pageHistory )|
|includes\PageHistory.php(536)|function getQueryInfo()|
|includes\PageHistory.php(545)|function getIndexField()|
|includes\PageHistory.php(549)|function formatRow( $row )|
|includes\PageHistory.php(562)|function getStartBody()|
|includes\PageHistory.php(568)|function getEndBody()|
|includes\PageQueryPage.php(18)|public function formatResult( $skin, $row )|
|includes\Pager.php(8)|function getNavigationBar();|
|includes\Pager.php(9)|function getBody();|
|includes\Pager.php(74)|function __construct()|
|includes\Pager.php(97)|function doQuery()|
|includes\Pager.php(117)|function extractResultInfo( $offset, $limit, ResultWrapper $res )|
|includes\Pager.php(170)|function reallyDoQuery( $offset, $limit, $ascending )|
|includes\Pager.php(196)|function getBody()|
|includes\Pager.php(228)|function makeLink($text, $query = NULL)|
|includes\Pager.php(241)|function getStartBody()|
|includes\Pager.php(248)|function getEndBody()|
|includes\Pager.php(256)|function getEmptyBody()|
|includes\Pager.php(264)|function getTitle()|
|includes\Pager.php(271)|function getSkin()|
|includes\Pager.php(284)|function getDefaultQuery()|
|includes\Pager.php(298)|function getNumRows()|
|includes\Pager.php(308)|function getPagingQueries()|
|includes\Pager.php(338)|function getPagingLinks( $linkTexts, $disabledTexts = array() )|
|includes\Pager.php(353)|function getLimitLinks()|
|includes\Pager.php(401)|function __construct()|
|includes\Pager.php(409)|function getNavigationBar()|
|includes\Pager.php(436)|function __construct()|
|includes\Pager.php(440)|function getNavigationBar()|
|includes\Pager.php(471)|function __construct()|
|includes\Pager.php(486)|function getStartBody()|
|includes\Pager.php(532)|function getEndBody()|
|includes\Pager.php(536)|function getEmptyBody()|
|includes\Pager.php(542)|function formatRow( $row )|
|includes\Pager.php(559)|function getIndexField()|
|includes\Pager.php(563)|function getTableClass()|
|includes\Pager.php(567)|function getNavClass()|
|includes\Pager.php(571)|function getSortHeaderClass()|
|includes\Pager.php(578)|function getNavigationBar()|
|includes\Pager.php(622)|function getLimitSelect()|
|includes\Pager.php(639)|function getHiddenFields( $blacklist = array() )|
|includes\Pager.php(657)|function getLimitForm()|
|includes\Parser.php(127)|function Parser()|
|includes\Parser.php(137)|function firstCallInit()|
|includes\Parser.php(191)|function clearState()|
|includes\Parser.php(243)|function setOutputType( $ot )|
|includes\Parser.php(259)|function uniqPrefix()|
|includes\Parser.php(275)|public function parse( $text, &$title, $options, $linestart = true, $clearState = true, $revid = null )|
|includes\Parser.php(387)|function recursiveTagParse( $text )|
|includes\Parser.php(401)|function preprocess( $text, $title, $options )|
|includes\Parser.php(425)|function getRandomString()|
|includes\Parser.php(429)|function &getTitle() { return $this->mTitle; }|
|includes\Parser.php(430)|function getOptions() { return $this->mOptions; }|
|includes\Parser.php(432)|function getFunctionLang()|
|includes\Parser.php(455)|function extractTagsAndParams($elements, $text, &$matches, $uniq_prefix = ''){|
|includes\Parser.php(534)|function strip( $text, $state, $stripcomments = false , $dontstrip = array () )|
|includes\Parser.php(646)|function unstrip( $text, $state )|
|includes\Parser.php(656)|function unstripNoWiki( $text, $state )|
|includes\Parser.php(663)|function unstripForHTML( $text )|
|includes\Parser.php(674)|function insertStripItem( $text, &$state )|
|includes\Parser.php(694)|function tidy( $text )|
|includes\Parser.php(717)|function externalTidy( $text )|
|includes\Parser.php(768)|function internalTidy( $text )|
|includes\Parser.php(793)|function doTableStuff ( $text )|
|includes\Parser.php(986)|function internalParse( $text )|
|includes\Parser.php(1044)|function &doMagicLinks( &$text )|
|includes\Parser.php(1061)|function magicLinkCallback( $m )|
|includes\Parser.php(1103)|function doHeadings( $text )|
|includes\Parser.php(1120)|function doAllQuotes( $text )|
|includes\Parser.php(1137)|function doQuotes( $text )|
|includes\Parser.php(1307)|function replaceExternalLinks( $text )|
|includes\Parser.php(1392)|function replaceFreeExternalLinks( $text )|
|includes\Parser.php(1479)|static function replaceUnusualEscapes( $url )|
|includes\Parser.php(1490)|private static function replaceUnusualEscapesCallback( $matches )|
|includes\Parser.php(1508)|function maybeMakeExternalImage( $url )|
|includes\Parser.php(1528)|function replaceInternalLinks( $s )|
|includes\Parser.php(1826)|function makeLinkHolder( &$nt, $text = '', $query = '', $trail = '', $prefix = '' )|
|includes\Parser.php(1867)|function makeKnownLinkHolder( $nt, $text = '', $query = '', $trail = '', $prefix = '' )|
|includes\Parser.php(1886)|function armorLinks( $text )|
|includes\Parser.php(1895)|function areSubpagesAllowed()|
|includes\Parser.php(1908)|function maybeDoSubpageLink($target, &$text)|
|includes\Parser.php(2055)|function doBlockLevels( $text, $linestart )|
|includes\Parser.php(2225)|function findColonNoLinks($str, &$before, &$after)|
|includes\Parser.php(2386)|function getVariableValue( $index )|
|includes\Parser.php(2580)|function initialiseVariables()|
|includes\Parser.php(2609)|function replace_callback ($text, $callbacks)|
|includes\Parser.php(2783)|function replaceVariables( $text, $args = array(), $argsOnly = false )|
|includes\Parser.php(2829)|function variableSubstitution( $matches )|
|includes\Parser.php(2863)|static function createAssocArgs( $args )|
|includes\Parser.php(2896)|function braceSubstitution( $piece )|
|includes\Parser.php(3258)|function fetchTemplate( $title )|
|includes\Parser.php(3289)|function interwikiTransclude( $title, $action )|
|includes\Parser.php(3302)|function fetchScaryTemplateMaybeFromCache($url)|
|includes\Parser.php(3332)|function argSubstitution( $matches )|
|includes\Parser.php(3358)|function incrementIncludeSize( $type, $size )|
|includes\Parser.php(3370)|function stripNoGallery( &$text )|
|includes\Parser.php(3380)|function stripToc( $text )|
|includes\Parser.php(3416)|function formatHeadings( $text, $isMain=true )|
|includes\Parser.php(3665)|function preSaveTransform( $text, &$title, $user, $options, $clearState = true )|
|includes\Parser.php(3689)|function pstPass2( $text, &$stripState, $user )|
|includes\Parser.php(3761)|function getUserSig( &$user )|
|includes\Parser.php(3792)|function validateSig( $text )|
|includes\Parser.php(3806)|function cleanSig( $text, $parsing = false )|
|includes\Parser.php(3827)|function cleanSigInSig( $text )|
|includes\Parser.php(3837)|function startExternalParse( &$title, $options, $outputType, $clearState = true )|
|includes\Parser.php(3854)|function transformMsg( $text, $options )|
|includes\Parser.php(3898)|function setHook( $tag, $callback )|
|includes\Parser.php(3930)|function setFunctionHook( $id, $callback, $flags = 0 )|
|includes\Parser.php(3965)|function getFunctionHooks()|
|includes\Parser.php(3978)|function replaceLinkHolders( &$text, $options = 0 )|
|includes\Parser.php(4267)|function replaceLinkHoldersText( $text )|
|includes\Parser.php(4285)|function replaceLinkHoldersTextCallback( $matches )|
|includes\Parser.php(4303)|function renderPreTag( $text, $attribs )|
|includes\Parser.php(4322)|function renderImageGallery( $text, $params )|
|includes\Parser.php(4389)|function makeImage( $nt, $options )|
|includes\Parser.php(4488)|function disableCache()|
|includes\Parser.php(4501)|function attributeStripCallback( &$text, $args )|
|includes\Parser.php(4512)|function Title( $x = NULL ) { return wfSetVar( $this->mTitle, $x ); }|
|includes\Parser.php(4513)|function Options( $x = NULL ) { return wfSetVar( $this->mOptions, $x ); }|
|includes\Parser.php(4514)|function OutputType( $x = NULL ) { return wfSetVar( $this->mOutputType, $x ); }|
|includes\Parser.php(4520)|function getTags() { return array_keys( $this->mTagHooks ); }|
|includes\Parser.php(4539)|private function extractSections( $text, $section, $mode, $newtext='' )|
|includes\Parser.php(4657)|public function getSection( $text, $section, $deftext='' )|
|includes\Parser.php(4661)|public function replaceSection( $oldtext, $section, $text )|
|includes\Parser.php(4669)|function getRevisionTimestamp()|
|includes\Parser.php(4701)|public function setDefaultSort( $sort )|
|includes\Parser.php(4711)|public function getDefaultSort()|
|includes\Parser.php(4730)|function replace( $matches ) { |
|includes\Parser.php(4746)|function __construct()|
|includes\Parser.php(4751)|function unstripGeneral( $text )|
|includes\Parser.php(4758)|function unstripNoWiki( $text )|
|includes\Parser.php(4765)|function unstripBoth( $text )|
|includes\ParserCache.php(11)|public static function &singleton()|
|includes\ParserCache.php(26)|function __construct( &$memCached )|
|includes\ParserCache.php(30)|function getKey( &$article, &$user )|
|includes\ParserCache.php(45)|function getETag( &$article, &$user )|
|includes\ParserCache.php(49)|function get( &$article, &$user )|
|includes\ParserCache.php(90)|function save( $parserOutput, &$article, &$user ){|
|includes\ParserOptions.php(28)|function getUseTeX()                        { return $this->mUseTeX; }|
|includes\ParserOptions.php(29)|function getUseDynamicDates()               { return $this->mUseDynamicDates; }|
|includes\ParserOptions.php(30)|function getInterwikiMagic()                { return $this->mInterwikiMagic; }|
|includes\ParserOptions.php(31)|function getAllowExternalImages()           { return $this->mAllowExternalImages; }|
|includes\ParserOptions.php(32)|function getAllowExternalImagesFrom()       { return $this->mAllowExternalImagesFrom; }|
|includes\ParserOptions.php(33)|function getEditSection()                   { return $this->mEditSection; }|
|includes\ParserOptions.php(34)|function getNumberHeadings()                { return $this->mNumberHeadings; }|
|includes\ParserOptions.php(35)|function getAllowSpecialInclusion()         { return $this->mAllowSpecialInclusion; }|
|includes\ParserOptions.php(36)|function getTidy()                          { return $this->mTidy; }|
|includes\ParserOptions.php(37)|function getInterfaceMessage()              { return $this->mInterfaceMessage; }|
|includes\ParserOptions.php(38)|function getMaxIncludeSize()                { return $this->mMaxIncludeSize; }|
|includes\ParserOptions.php(39)|function getRemoveComments()                { return $this->mRemoveComments; }|
|includes\ParserOptions.php(41)|function getSkin()|
|includes\ParserOptions.php(48)|function getDateFormat()|
|includes\ParserOptions.php(55)|function setUseTeX( $x )                    { return wfSetVar( $this->mUseTeX, $x ); }|
|includes\ParserOptions.php(56)|function setUseDynamicDates( $x )           { return wfSetVar( $this->mUseDynamicDates, $x ); }|
|includes\ParserOptions.php(57)|function setInterwikiMagic( $x )            { return wfSetVar( $this->mInterwikiMagic, $x ); }|
|includes\ParserOptions.php(58)|function setAllowExternalImages( $x )       { return wfSetVar( $this->mAllowExternalImages, $x ); }|
|includes\ParserOptions.php(59)|function setAllowExternalImagesFrom( $x )   { return wfSetVar( $this->mAllowExternalImagesFrom, $x ); }|
|includes\ParserOptions.php(60)|function setDateFormat( $x )                { return wfSetVar( $this->mDateFormat, $x ); }|
|includes\ParserOptions.php(61)|function setEditSection( $x )               { return wfSetVar( $this->mEditSection, $x ); }|
|includes\ParserOptions.php(62)|function setNumberHeadings( $x )            { return wfSetVar( $this->mNumberHeadings, $x ); }|
|includes\ParserOptions.php(63)|function setAllowSpecialInclusion( $x )     { return wfSetVar( $this->mAllowSpecialInclusion, $x ); }|
|includes\ParserOptions.php(64)|function setTidy( $x )                      { return wfSetVar( $this->mTidy, $x); }|
|includes\ParserOptions.php(65)|function setSkin( $x )                      { $this->mSkin = $x; }|
|includes\ParserOptions.php(66)|function setInterfaceMessage( $x )          { return wfSetVar( $this->mInterfaceMessage, $x); }|
|includes\ParserOptions.php(67)|function setMaxIncludeSize( $x )            { return wfSetVar( $this->mMaxIncludeSize, $x ); }|
|includes\ParserOptions.php(68)|function setRemoveComments( $x )            { return wfSetVar( $this->mRemoveComments, $x ); }|
|includes\ParserOptions.php(70)|function __construct( $user = null )|
|includes\ParserOptions.php(78)|static function newFromUser( $user )|
|includes\ParserOptions.php(83)|function initialiseFromUser( $userInput )|
|includes\ParserOutput.php(25)|function ParserOutput( $text = '', $languageLinks = array(), $categoryLinks = array(),|
|includes\ParserOutput.php(46)|function getText()                   { return $this->mText; }|
|includes\ParserOutput.php(47)|function &getLanguageLinks()          { return $this->mLanguageLinks; }|
|includes\ParserOutput.php(48)|function getCategoryLinks()          { return array_keys( $this->mCategories ); }|
|includes\ParserOutput.php(49)|function &getCategories()            { return $this->mCategories; }|
|includes\ParserOutput.php(50)|function getCacheTime()              { return $this->mCacheTime; }|
|includes\ParserOutput.php(51)|function getTitleText()              { return $this->mTitleText; }|
|includes\ParserOutput.php(52)|function &getLinks()                 { return $this->mLinks; }|
|includes\ParserOutput.php(53)|function &getTemplates()             { return $this->mTemplates; }|
|includes\ParserOutput.php(54)|function &getImages()                { return $this->mImages; }|
|includes\ParserOutput.php(55)|function &getExternalLinks()         { return $this->mExternalLinks; }|
|includes\ParserOutput.php(56)|function getNoGallery()              { return $this->mNoGallery; }|
|includes\ParserOutput.php(57)|function getSubtitle()               { return $this->mSubtitle; }|
|includes\ParserOutput.php(59)|function containsOldMagic()          { return $this->mContainsOldMagic; }|
|includes\ParserOutput.php(60)|function setText( $text )            { return wfSetVar( $this->mText, $text ); }|
|includes\ParserOutput.php(61)|function setLanguageLinks( $ll )     { return wfSetVar( $this->mLanguageLinks, $ll ); }|
|includes\ParserOutput.php(62)|function setCategoryLinks( $cl )     { return wfSetVar( $this->mCategories, $cl ); }|
|includes\ParserOutput.php(63)|function setContainsOldMagic( $com ) { return wfSetVar( $this->mContainsOldMagic, $com ); }|
|includes\ParserOutput.php(64)|function setCacheTime( $t )          { return wfSetVar( $this->mCacheTime, $t ); }|
|includes\ParserOutput.php(65)|function setTitleText( $t )          { return wfSetVar($this->mTitleText, $t); }|
|includes\ParserOutput.php(66)|function setSubtitle( $st )          { return wfSetVar( $this->mSubtitle, $st ); }|
|includes\ParserOutput.php(68)|function addCategory( $c, $sort )    { $this->mCategories[$c] = $sort; }|
|includes\ParserOutput.php(69)|function addImage( $name )           { $this->mImages[$name] = 1; }|
|includes\ParserOutput.php(70)|function addLanguageLink( $t )       { $this->mLanguageLinks[] = $t; }|
|includes\ParserOutput.php(71)|function addExternalLink( $url )     { $this->mExternalLinks[$url] = 1; }|
|includes\ParserOutput.php(73)|function setNewSection( $value )|
|includes\ParserOutput.php(76)|function getNewSection()|
|includes\ParserOutput.php(80)|function addLink( $title, $id = null )|
|includes\ParserOutput.php(92)|function addTemplate( $title, $id )|
|includes\ParserOutput.php(110)|function expired( $touched )|
|includes\ParserOutput.php(124)|function addHeadItem( $section, $tag = false )|
|includes\PatrolLog.php(17)|public static function record( $change, $auto = false )|
|includes\PatrolLog.php(43)|public static function makeActionText( $title, $params, $skin )|
|includes\PatrolLog.php(73)|private static function buildParams( $change, $auto )|
|includes\Profiler.php(11)|function wfProfileIn($functionname)|
|includes\Profiler.php(19)|function wfProfileOut($functionname = 'missing')|
|includes\Profiler.php(24)|function wfGetProfilingOutput($start, $elapsed)|
|includes\Profiler.php(29)|function wfProfileClose()|
|includes\Profiler.php(36)|function memory_get_usage()|
|includes\Profiler.php(49)|function __construct()|
|includes\Profiler.php(60)|function profileIn($functionname)|
|includes\Profiler.php(68)|function profileOut($functionname)|
|includes\Profiler.php(101)|function close()|
|includes\Profiler.php(107)|function getOutput()|
|includes\Profiler.php(124)|function getCallTree($start = 0)|
|includes\Profiler.php(128)|function remapCallTree($stack)|
|includes\Profiler.php(163)|function getCallTreeLine($entry)|
|includes\Profiler.php(175)|function getTime()|
|includes\Profiler.php(180)|function getUserTime()|
|includes\Profiler.php(185)|function getFunctionReport()|
|includes\Profiler.php(291)|function calltreeCount($stack, $start)|
|includes\Profiler.php(303)|function logToDB($name, $timeSum, $eventCount)|
|includes\Profiler.php(343)|function getCurrentSection()|
|includes\Profiler.php(348)|static function getCaller( $level )|
|includes\ProfilerSimple.php(14)|function __construct()|
|includes\ProfilerSimple.php(35)|function setMinimum( $min )|
|includes\ProfilerSimple.php(39)|function setProfileID( $id )|
|includes\ProfilerSimple.php(43)|function getProfileID()|
|includes\ProfilerSimple.php(51)|function profileIn($functionname)|
|includes\ProfilerSimple.php(59)|function profileOut($functionname)|
|includes\ProfilerSimple.php(96)|function getFunctionReport()|
|includes\ProfilerSimple.php(100)|function getCpuTime($ru=null)|
|includes\ProfilerSimple.php(112)|function getTime($time=null)|
|includes\ProfilerSimple.php(119)|function debug( $s )|
|includes\ProfilerSimpleUDP.php(12)|function getFunctionReport()|
|includes\ProfilerStub.php(6)|function wfProfileIn( $fn = '' )|
|includes\ProfilerStub.php(13)|function wfProfileOut( $fn = '' )|
|includes\ProfilerStub.php(22)|function wfGetProfilingOutput( $s, $e ) {}|
|includes\ProfilerStub.php(23)|function wfProfileClose() {}|
|includes\ProtectionForm.php(32)|function __construct( &$article )|
|includes\ProtectionForm.php(78)|function execute()|
|includes\ProtectionForm.php(90)|function show( $err = null )|
|includes\ProtectionForm.php(149)|function save()|
|includes\ProtectionForm.php(194)|function buildForm()|
|includes\ProtectionForm.php(261)|function buildSelector( $action, $selected )|
|includes\ProtectionForm.php(279)|function buildOption( $key, $selected )|
|includes\ProtectionForm.php(291)|function buildReasonInput()|
|includes\ProtectionForm.php(305)|function buildCascadeInput()|
|includes\ProtectionForm.php(311)|function buildExpiryInput()|
|includes\ProtectionForm.php(330)|function buildSubmit()|
|includes\ProtectionForm.php(337)|function buildScript()|
|includes\ProtectionForm.php(344)|function buildCleanupScript()|
|includes\ProtectionForm.php(362)|function showLogExtract( &$out )|
|includes\ProxyTools.php(12)|function wfGetForwardedFor()|
|includes\ProxyTools.php(39)|function wfGetAgent()|
|includes\ProxyTools.php(61)|function wfGetIP()|
|includes\ProxyTools.php(112)|function wfIsTrustedProxy( $ip )|
|includes\ProxyTools.php(131)|function wfProxyCheck()|
|includes\ProxyTools.php(178)|function wfParseCIDR( $range )|
|includes\ProxyTools.php(186)|function wfIsLocallyBlockedProxy( $ip )|
|includes\ProxyTools.php(219)|function wfIsAOLProxy( $ip )|
|includes\QueryPage.php(78)|function setListoutput( $bool )|
|includes\QueryPage.php(87)|function getName()|
|includes\QueryPage.php(96)|function getTitle()|
|includes\QueryPage.php(115)|function getSQL()|
|includes\QueryPage.php(122)|function sortDescending()|
|includes\QueryPage.php(126)|function getOrder()|
|includes\QueryPage.php(136)|function isExpensive( )|
|includes\QueryPage.php(147)|function isCached()|
|includes\QueryPage.php(156)|function isSyndicated()|
|includes\QueryPage.php(166)|function formatResult( $skin, $result )|
|includes\QueryPage.php(173)|function getPageHeader( )|
|includes\QueryPage.php(183)|function linkParameters()|
|includes\QueryPage.php(193)|function tryLastResult( )|
|includes\QueryPage.php(200)|function recache( $limit, $ignoreErrors = true )|
|includes\QueryPage.php(279)|function doQuery( $offset, $limit, $shownavigation=true )|
|includes\QueryPage.php(383)|protected function outputResults( $out, $skin, $dbr, $res, $num, $offset )|
|includes\QueryPage.php(430)|function openList( $offset )|
|includes\QueryPage.php(434)|function closeList()|
|includes\QueryPage.php(442)|function preprocessResults( &$db, &$res ) {}|
|includes\QueryPage.php(447)|function doFeed( $class = '', $limit = 50 )|
|includes\QueryPage.php(478)|function feedResult( $row )|
|includes\QueryPage.php(503)|function feedItemDesc( $row )|
|includes\QueryPage.php(507)|function feedItemAuthor( $row )|
|includes\QueryPage.php(511)|function feedTitle()|
|includes\QueryPage.php(518)|function feedDesc()|
|includes\QueryPage.php(522)|function feedUrl()|
|includes\RawPage.php(22)|function __construct( &$article, $request = false )|
|includes\RawPage.php(95)|function view()|
|includes\RawPage.php(147)|function getRawText()|
|includes\RawPage.php(162)|function getArticleText()|
|includes\RawPage.php(212)|function parseArticleText( $text )|
|includes\RecentChange.php(50)|public static function newFromRow( $row )|
|includes\RecentChange.php(57)|public static function newFromCurRow( $row, $rc_this_oldid = 0 )|
|includes\RecentChange.php(72)|public static function newFromId( $rcid )|
|includes\RecentChange.php(86)|function setAttribs( $attribs )|
|includes\RecentChange.php(91)|function setExtra( $extra )|
|includes\RecentChange.php(96)|function &getTitle()|
|includes\RecentChange.php(104)|function getMovedToTitle()|
|includes\RecentChange.php(114)|function save()|
|includes\RecentChange.php(213)|function markPatrolled( $rcid )|
|includes\RecentChange.php(286)|public static function notifyNew( $timestamp, &$title, $minor, &$user, $comment, $bot = "default",|
|includes\RecentChange.php(431)|function loadFromRow( $row )|
|includes\RecentChange.php(439)|function loadFromCurRow( $row )|
|includes\RecentChange.php(474)|public function getAttribute( $name )|
|includes\RecentChange.php(482)|function diffLinkTrail( $forceCur )|
|includes\RecentChange.php(498)|function cleanupForIRC( $text )|
|includes\RecentChange.php(502)|function getIRCLine()|
|includes\RecentChange.php(569)|function getCharacterDifference( $old = 0, $new = 0 )|
|includes\Revision.php(23)|public static function newFromId( $id )|
|includes\Revision.php(40)|public static function newFromTitle( &$title, $id = 0 )|
|includes\Revision.php(62)|public static function loadFromId( &$db, $id )|
|includes\Revision.php(80)|public static function loadFromPageId( $db, $pageid, $id = 0 )|
|includes\Revision.php(102)|public static function loadFromTitle( &$db, $title, $id = 0 )|
|includes\Revision.php(128)|public static function loadFromTimestamp( &$db, &$title, $timestamp )|
|includes\Revision.php(145)|private static function newFromConds( $conditions )|
|includes\Revision.php(165)|private static function loadFromConds( $db, $conditions )|
|includes\Revision.php(189)|public static function fetchAllRevisions( &$title )|
|includes\Revision.php(207)|public static function fetchRevision( &$title )|
|includes\Revision.php(227)|private static function fetchFromConds( $db, $conditions )|
|includes\Revision.php(254)|static function selectFields()|
|includes\Revision.php(273)|function Revision( $row )|
|includes\Revision.php(343)|function getId()|
|includes\Revision.php(350)|function getTextId()|
|includes\Revision.php(357)|function getSize()|
|includes\Revision.php(365)|function getTitle()|
|includes\Revision.php(387)|function setTitle( $title )|
|includes\Revision.php(394)|function getPage()|
|includes\Revision.php(402)|function getUser()|
|includes\Revision.php(414)|function getRawUser()|
|includes\Revision.php(422)|function getUserText()|
|includes\Revision.php(434)|function getRawUserText()|
|includes\Revision.php(442)|function getComment()|
|includes\Revision.php(454)|function getRawComment()|
|includes\Revision.php(461)|function isMinor()|
|includes\Revision.php(469)|function isDeleted( $field )|
|includes\Revision.php(477)|function getText()|
|includes\Revision.php(489)|function getRawText()|
|includes\Revision.php(501)|function revText()|
|includes\Revision.php(512)|function getTimestamp()|
|includes\Revision.php(519)|function isCurrent()|
|includes\Revision.php(526)|function getPrevious()|
|includes\Revision.php(538)|function getNext()|
|includes\Revision.php(557)|public static function getRevisionText( $row, $prefix = 'old_' )|
|includes\Revision.php(632)|function compressRevisionText( &$text )|
|includes\Revision.php(658)|function insertOn( &$dbw )|
|includes\Revision.php(731)|function loadText()|
|includes\Revision.php(797)|function newNullRevision( &$dbw, $pageId, $summary, $minor )|
|includes\Revision.php(833)|function userCan( $field )|
|includes\Revision.php(851)|static function getTimestampFromID( $id )|
|includes\Revision.php(864)|static function countByPageId( $db, $id )|
|includes\Revision.php(873)|static function countByTitle( $db, $title )|
|includes\Sanitizer.php(342)|static function removeHTMLtags( $text, $processCallback = null, $args = array() )|
|includes\Sanitizer.php(528)|static function removeHTMLcomments( $text )|
|includes\Sanitizer.php(577)|static function validateTagAttributes( $attribs, $element )|
|includes\Sanitizer.php(613)|static function checkCss( $value )|
|includes\Sanitizer.php(653)|static function fixTagAttributes( $text, $element )|
|includes\Sanitizer.php(676)|static function encodeAttribute( $text )|
|includes\Sanitizer.php(697)|static function safeEncodeAttribute( $text )|
|includes\Sanitizer.php(738)|static function escapeId( $id )|
|includes\Sanitizer.php(760)|static function escapeClass( $class )|
|includes\Sanitizer.php(774)|private static function armorLinksCallback( $matches )|
|includes\Sanitizer.php(786)|static function decodeTagAttributes( $text )|
|includes\Sanitizer.php(824)|private static function getTagAttributeCallback( $set )|
|includes\Sanitizer.php(858)|private static function normalizeAttributeValue( $text )|
|includes\Sanitizer.php(864)|private static function normalizeWhitespace( $text )|
|includes\Sanitizer.php(885)|static function normalizeCharReferences( $text )|
|includes\Sanitizer.php(895)|static function normalizeCharReferencesCallback( $matches )|
|includes\Sanitizer.php(923)|static function normalizeEntity( $name )|
|includes\Sanitizer.php(934)|static function decCharReference( $codepoint )|
|includes\Sanitizer.php(943)|static function hexCharReference( $codepoint )|
|includes\Sanitizer.php(957)|private static function validateCodepoint( $codepoint )|
|includes\Sanitizer.php(975)|public static function decodeCharReferences( $text )|
|includes\Sanitizer.php(986)|static function decodeCharReferencesCallback( $matches )|
|includes\Sanitizer.php(1007)|static function decodeChar( $codepoint )|
|includes\Sanitizer.php(1023)|static function decodeEntity( $name )|
|includes\Sanitizer.php(1042)|static function attributeWhitelist( $element )|
|includes\Sanitizer.php(1056)|static function setupAttributeWhitelist()|
|includes\Sanitizer.php(1202)|static function stripAllTags( $text )|
|includes\Sanitizer.php(1223)|static function hackDocType()|
|includes\Sanitizer.php(1233)|static function cleanUrl( $url, $hostname=true )|
|includes\SearchEngine.php(22)|function searchText( $term )|
|includes\SearchEngine.php(35)|function searchTitle( $term )|
|includes\SearchEngine.php(48)|function getNearMatch( $searchterm )|
|includes\SearchEngine.php(148)|public static function legalSearchChars()|
|includes\SearchEngine.php(160)|function setLimitOffset( $limit, $offset = 0 )|
|includes\SearchEngine.php(172)|function setNamespaces( $namespaces )|
|includes\SearchEngine.php(181)|function searchableNamespaces()|
|includes\SearchEngine.php(198)|function filter( $text )|
|includes\SearchEngine.php(208)|public static function create()|
|includes\SearchEngine.php(235)|function update( $id, $title, $text )|
|includes\SearchEngine.php(247)|function updateTitle( $id, $title )|
|includes\SearchEngine.php(265)|function termMatches()|
|includes\SearchEngine.php(269)|function numRows()|
|includes\SearchEngine.php(278)|function hasResults()|
|includes\SearchEngine.php(293)|function getTotalHits()|
|includes\SearchEngine.php(304)|function hasSuggestion()|
|includes\SearchEngine.php(315)|function getSuggestion()|
|includes\SearchEngine.php(325)|function next()|
|includes\SearchEngine.php(335)|function SearchResult( $row )|
|includes\SearchEngine.php(343)|function getTitle()|
|includes\SearchEngine.php(350)|function getScore()|
|includes\SearchEngine.php(359)|function search( $term )|
|includes\SearchEngine.php(362)|function setLimitOffset($l, $o) {}|
|includes\SearchEngine.php(363)|function legalSearchChars() {}|
|includes\SearchEngine.php(364)|function update() {}|
|includes\SearchEngine.php(365)|function setnamespaces() {}|
|includes\SearchEngine.php(366)|function searchtitle() {}|
|includes\SearchEngine.php(367)|function searchtext() {}|
|includes\SearchMySQL.php(33)|function searchText( $term )|
|includes\SearchMySQL.php(45)|function searchTitle( $term )|
|includes\SearchMySQL.php(56)|function queryRedirect()|
|includes\SearchMySQL.php(69)|function queryNamespaces()|
|includes\SearchMySQL.php(82)|function queryLimit()|
|includes\SearchMySQL.php(92)|function queryRanking( $filteredTerm, $fulltext )|
|includes\SearchMySQL.php(103)|function getQuery( $filteredTerm, $fulltext )|
|includes\SearchMySQL.php(117)|function getIndexField( $fulltext )|
|includes\SearchMySQL.php(132)|function queryMain( $filteredTerm, $fulltext )|
|includes\SearchMySQL.php(149)|function update( $id, $title, $text )|
|includes\SearchMySQL.php(167)|    function updateTitle( $id, $title )|
|includes\SearchMySQL.php(182)|function MySQLSearchResultSet( $resultSet, $terms )|
|includes\SearchMySQL.php(187)|function termMatches()|
|includes\SearchMySQL.php(191)|function numRows()|
|includes\SearchMySQL.php(195)|function next()|
|includes\SearchMySQL4.php(28)|function SearchMySQL4( $db )|
|includes\SearchMySQL4.php(33)|function parseQuery( $filteredText, $fulltext )|
|includes\SearchOracle.php(25)|function __construct($db)|
|includes\SearchOracle.php(36)|function searchText( $term )|
|includes\SearchOracle.php(48)|function searchTitle($term)|
|includes\SearchOracle.php(59)|function queryRedirect()|
|includes\SearchOracle.php(72)|function queryNamespaces()|
|includes\SearchOracle.php(85)|function queryLimit($sql)|
|includes\SearchOracle.php(95)|function queryRanking($filteredTerm, $fulltext)|
|includes\SearchOracle.php(106)|function getQuery( $filteredTerm, $fulltext )|
|includes\SearchOracle.php(119)|function getIndexField($fulltext)|
|includes\SearchOracle.php(131)|function queryMain( $filteredTerm, $fulltext )|
|includes\SearchOracle.php(141)|function parseQuery($filteredText, $fulltext)|
|includes\SearchOracle.php(179)|function update($id, $title, $text)|
|includes\SearchOracle.php(199)|function updateTitle($id, $title)|
|includes\SearchOracle.php(214)|function __construct($resultSet, $terms)|
|includes\SearchOracle.php(219)|function termMatches()|
|includes\SearchOracle.php(223)|function numRows()|
|includes\SearchOracle.php(227)|function next()|
|includes\SearchPostgres.php(26)|function SearchPostgres( $db )|
|includes\SearchPostgres.php(39)|function searchTitle( $term )|
|includes\SearchPostgres.php(43)|function searchText( $term )|
|includes\SearchPostgres.php(52)|function parseQuery( $term )|
|includes\SearchPostgres.php(117)|function searchQuery( $term, $fulltext, $colname )|
|includes\SearchPostgres.php(172)|function update( $pageid, $title, $text )|
|includes\SearchPostgres.php(181)|function updateTitle( $id, $title )|
|includes\SearchPostgres.php(191)|function PostgresSearchResult( $row )|
|includes\SearchPostgres.php(195)|function getScore()|
|includes\SearchPostgres.php(204)|function PostgresSearchResultSet( $resultSet, $terms )|
|includes\SearchPostgres.php(209)|function termMatches()|
|includes\SearchPostgres.php(213)|function numRows()|
|includes\SearchPostgres.php(217)|function next()|
|includes\SearchTsearch2.php(32)|function SearchTsearch2( &$db )|
|includes\SearchTsearch2.php(37)|function getIndexField( $fulltext )|
|includes\SearchTsearch2.php(41)|function parseQuery( $filteredText, $fulltext )|
|includes\SearchTsearch2.php(76)|function queryRanking($filteredTerm, $fulltext)|
|includes\SearchTsearch2.php(86)|function queryMain( $filteredTerm, $fulltext )|
|includes\SearchTsearch2.php(97)|function update( $id, $title, $text )|
|includes\SearchTsearch2.php(110)|function updateTitle($id,$title)|
|includes\SearchUpdate.php(11)|function SearchUpdate( $id, $title, $text = false )|
|includes\SearchUpdate.php(26)|function doUpdate()|
|includes\SiteConfiguration.php(22)|function get( $setting, $wiki, $suffix, $params = array() )|
|includes\SiteConfiguration.php(46)|function getAll( $wiki, $suffix, $params )|
|includes\SiteConfiguration.php(58)|function getBool( $setting, $wiki, $suffix )|
|includes\SiteConfiguration.php(63)|function &getLocalDatabases()|
|includes\SiteConfiguration.php(68)|function initialise()|
|includes\SiteConfiguration.php(72)|function extractVar( $setting, $wiki, $suffix, &$var, $params )|
|includes\SiteConfiguration.php(80)|function extractGlobal( $setting, $wiki, $suffix, $params )|
|includes\SiteConfiguration.php(88)|function extractAllGlobals( $wiki, $suffix, $params )|
|includes\SiteConfiguration.php(98)|function siteFromDB( $db )|
|includes\SiteConfiguration.php(113)|function isLocalVHost( $vhost )|
|includes\SiteStats.php(11)|static function recache()|
|includes\SiteStats.php(15)|static function load( $recache = false )|
|includes\SiteStats.php(32)|static function loadAndLazyInit()|
|includes\SiteStats.php(65)|static function doLoad( $db )|
|includes\SiteStats.php(69)|static function views()|
|includes\SiteStats.php(74)|static function edits()|
|includes\SiteStats.php(79)|static function articles()|
|includes\SiteStats.php(84)|static function pages()|
|includes\SiteStats.php(89)|static function users()|
|includes\SiteStats.php(94)|static function images()|
|includes\SiteStats.php(99)|static function admins()|
|includes\SiteStats.php(107)|static function pagesInNs( $ns )|
|includes\SiteStats.php(127)|function __construct( $views, $edits, $good, $pages = 0, $users = 0 )|
|includes\SiteStats.php(135)|function appendUpdate( &$sql, $field, $delta )|
|includes\SiteStats.php(148)|function doUpdate()|
|includes\Skin.php(28)|function Skin() { parent::__construct(); }|
|includes\Skin.php(35)|static function getSkinNames()|
|includes\Skin.php(71)|static function normalizeKey( $key )|
|includes\Skin.php(110)|static function &newFromKey( $key )|
|includes\Skin.php(140)|function getStylesheet()|
|includes\Skin.php(145)|public function getSkinName()|
|includes\Skin.php(149)|function qbSetting()|
|includes\Skin.php(157)|function initPage( &$out )|
|includes\Skin.php(187)|function preloadExistence()|
|includes\Skin.php(206)|function addMetadataLinks( &$out )|
|includes\Skin.php(242)|function outputPage( &$out )|
|includes\Skin.php(275)|static function makeVariablesScript( $data )|
|includes\Skin.php(294)|static function makeGlobalVariablesScript( $data )|
|includes\Skin.php(336)|function getHeadScripts()|
|includes\Skin.php(371)|function userCanPreview( $action )|
|includes\Skin.php(385)|function getUserStylesheet()|
|includes\Skin.php(406)|function getUserJs()|
|includes\Skin.php(438)|function getUserStyles()|
|includes\Skin.php(450)|function doGetUserStyles()|
|includes\Skin.php(469)|function reallyDoGetUserStyles()|
|includes\Skin.php(509)|function getBodyOptions()|
|includes\Skin.php(540)|function getLogo()|
|includes\Skin.php(549)|function beforeContent()|
|includes\Skin.php(553)|function doBeforeContent()|
|includes\Skin.php(616)|function getCategoryLinks ()|
|includes\Skin.php(661)|function drawCategoryBrowser($tree, &$skin)|
|includes\Skin.php(678)|function getCategories()|
|includes\Skin.php(685)|function getQuickbarCompensator( $rows = 1 )|
|includes\Skin.php(693)|function afterContent()|
|includes\Skin.php(702)|function bottomScripts()|
|includes\Skin.php(708)|function printSource()|
|includes\Skin.php(714)|function printFooter()|
|includes\Skin.php(720)|function doAfterContent() { }|
|includes\Skin.php(722)|function pageTitleLinks()|
|includes\Skin.php(775)|function getUndeleteLink()|
|includes\Skin.php(794)|function printableLink()|
|includes\Skin.php(809)|function pageTitle()|
|includes\Skin.php(815)|function pageSubtitle()|
|includes\Skin.php(829)|function subPageSubtitle()|
|includes\Skin.php(861)|function showIPinHeader()|
|includes\Skin.php(866)|function nameAndLogin()|
|includes\Skin.php(912)|function getSearchLink()|
|includes\Skin.php(917)|function escapeSearchLink()|
|includes\Skin.php(921)|function searchForm()|
|includes\Skin.php(935)|function topLinks()|
|includes\Skin.php(962)|function extensionTabLinks()|
|includes\Skin.php(978)|function variantLinks()|
|includes\Skin.php(994)|function bottomLinks()|
|includes\Skin.php(1037)|function pageStats()|
|includes\Skin.php(1076)|function getCopyright( $type = 'detect' )|
|includes\Skin.php(1109)|function getCopyrightIcon()|
|includes\Skin.php(1129)|function getPoweredBy()|
|includes\Skin.php(1136)|function lastModified()|
|includes\Skin.php(1153)|function logoText( $align = '' )|
|includes\Skin.php(1169)|function specialPagesList()|
|includes\Skin.php(1196)|function mainPageLink()|
|includes\Skin.php(1201)|function copyrightLink()|
|includes\Skin.php(1207)|private function footerLink ( $desc, $page )|
|includes\Skin.php(1220)|function privacyLink()|
|includes\Skin.php(1224)|function aboutLink()|
|includes\Skin.php(1228)|function disclaimerLink()|
|includes\Skin.php(1232)|function editThisPage()|
|includes\Skin.php(1256)|function editUrlOptions()|
|includes\Skin.php(1266)|function deleteThisPage()|
|includes\Skin.php(1280)|function protectThisPage()|
|includes\Skin.php(1299)|function watchThisPage()|
|includes\Skin.php(1320)|function moveThisPage()|
|includes\Skin.php(1332)|function historyLink()|
|includes\Skin.php(1339)|function whatLinksHere()|
|includes\Skin.php(1347)|function userContribsLink()|
|includes\Skin.php(1355)|function showEmailUser( $id )|
|includes\Skin.php(1366)|function emailUserLink()|
|includes\Skin.php(1374)|function watchPageLinksLink()|
|includes\Skin.php(1386)|function trackbackLink()|
|includes\Skin.php(1393)|function otherLanguages()|
|includes\Skin.php(1424)|function bugReportsLink()|
|includes\Skin.php(1430)|function dateLink()|
|includes\Skin.php(1453)|function talkLink()|
|includes\Skin.php(1501)|function commentLink()|
|includes\Skin.php(1523)|static function makeMainPageUrl( $urlaction = '' )|
|includes\Skin.php(1529)|static function makeSpecialUrl( $name, $urlaction = '' )|
|includes\Skin.php(1534)|static function makeSpecialUrlSubpage( $name, $subpage, $urlaction = '' )|
|includes\Skin.php(1539)|static function makeI18nUrl( $name, $urlaction = '' )|
|includes\Skin.php(1545)|static function makeUrl( $name, $urlaction = '' )|
|includes\Skin.php(1553)|static function makeInternalOrExternalUrl( $name )|
|includes\Skin.php(1562)|static function makeNSUrl( $name, $urlaction = '', $namespace = NS_MAIN )|
|includes\Skin.php(1569)|static function makeUrlDetails( $name, $urlaction = '' )|
|includes\Skin.php(1581)|static function makeKnownUrlDetails( $name, $urlaction = '' )|
|includes\Skin.php(1591)|static function checkTitle( &$title, $name )|
|includes\Skin.php(1606)|function buildSidebar()|
|includes\SkinTemplate.php(30)|function set($varName, $value)|
|includes\SkinTemplate.php(34)|function translate($value)|
|includes\SkinTemplate.php(100)|function initPage( &$out )|
|includes\SkinTemplate.php(118)|function setupTemplate( $classname, $repository=false, $cache_dir=false )|
|includes\SkinTemplate.php(128)|function outputPage( &$out )|
|includes\SkinTemplate.php(478)|function printOrError( $str )|
|includes\SkinTemplate.php(487)|function buildPersonalUrls()|
|includes\SkinTemplate.php(589)|function tabAction( $title, $message, $selected, $query='', $checkEdit=false )|
|includes\SkinTemplate.php(611)|function makeTalkUrlDetails( $name, $urlaction = '' )|
|includes\SkinTemplate.php(624)|function makeArticleUrlDetails( $name, $urlaction = '' )|
|includes\SkinTemplate.php(639)|function buildContentActionUrls ()|
|includes\SkinTemplate.php(815)|function buildNavUrls ()|
|includes\SkinTemplate.php(929)|function getNameSpaceKey ()|
|includes\SkinTemplate.php(936)|function setupUserCss()|
|includes\SkinTemplate.php(993)|function setupUserJs()|
|includes\SkinTemplate.php(1017)|function setupPageCss()|
|includes\SkinTemplate.php(1032)|function getUserStylesheet()|
|includes\SkinTemplate.php(1054)|public function getUserJs()|
|includes\SkinTemplate.php(1083)|function QuickTemplate()|
|includes\SkinTemplate.php(1091)|function set( $name, $value )|
|includes\SkinTemplate.php(1098)|function setRef($name, &$value)|
|includes\SkinTemplate.php(1105)|function setTranslator( &$t )|
|includes\SkinTemplate.php(1112)|function execute()|
|includes\SkinTemplate.php(1120)|function text( $str )|
|includes\SkinTemplate.php(1127)|function jstext( $str )|
|includes\SkinTemplate.php(1134)|function html( $str )|
|includes\SkinTemplate.php(1141)|function msg( $str )|
|includes\SkinTemplate.php(1148)|function msgHtml( $str )|
|includes\SkinTemplate.php(1156)|function msgWiki( $str )|
|includes\SkinTemplate.php(1168)|function haveData( $str )|
|includes\SkinTemplate.php(1175)|function haveMsg( $str )|
|includes\SpecialAllmessages.php(10)|function wfSpecialAllmessages()|
|includes\SpecialAllmessages.php(64)|function makePhp( $messages )|
|includes\SpecialAllmessages.php(87)|function makeHTMLText( $messages )|
|includes\SpecialAllpages.php(11)|function wfSpecialAllpages( $par=NULL, $specialPage )|
|includes\SpecialAllpages.php(55)|function namespaceForm ( $namespace = NS_MAIN, $from = '' )|
|includes\SpecialAllpages.php(88)|function showToplevel ( $namespace = NS_MAIN, $including = false )|
|includes\SpecialAllpages.php(189)|function showline( $inpoint, $outpoint, $namespace = NS_MAIN )|
|includes\SpecialAllpages.php(208)|function showChunk( $namespace = NS_MAIN, $from, $including = false )|
|includes\SpecialAllpages.php(345)|function getNamespaceKeyAndText ($ns, $text)|
|includes\SpecialAncientpages.php(13)|function getName()|
|includes\SpecialAncientpages.php(17)|function isExpensive()|
|includes\SpecialAncientpages.php(21)|function isSyndicated() { return false; }|
|includes\SpecialAncientpages.php(23)|function getSQL()|
|includes\SpecialAncientpages.php(41)|function sortDescending()|
|includes\SpecialAncientpages.php(45)|function formatResult( $skin, $result )|
|includes\SpecialAncientpages.php(55)|function wfSpecialAncientpages()|
|includes\SpecialBlockip.php(11)|function wfSpecialBlockip( $par )|
|includes\SpecialBlockip.php(47)|function IPBlockForm( $par )|
|includes\SpecialBlockip.php(67)|function showForm( $err )|
|includes\SpecialBlockip.php(265)|function doSubmit()|
|includes\SpecialBlockip.php(390)|function showSuccess()|
|includes\SpecialBlockip.php(399)|function showLogFragment( $out, $title )|
|includes\SpecialBlockip.php(412)|private function blockLogFlags()|
|includes\SpecialBlockip.php(429)|private function getConvenienceLinks()|
|includes\SpecialBlockip.php(446)|private function getUnblockLink( $skin )|
|includes\SpecialBlockip.php(463)|private function getBlockListLink( $skin )|
|includes\SpecialBlockme.php(10)|function wfSpecialBlockme()|
|includes\SpecialBooksources.php(21)|public function __construct()|
|includes\SpecialBooksources.php(30)|public function execute( $isbn = false )|
|includes\SpecialBooksources.php(46)|private function cleanIsbn( $isbn )|
|includes\SpecialBooksources.php(55)|private function makeForm()|
|includes\SpecialBooksources.php(74)|private function showList()|
|includes\SpecialBooksources.php(106)|private function makeListItem( $label, $url )|
|includes\SpecialBrokenRedirects.php(15)|function getName()|
|includes\SpecialBrokenRedirects.php(19)|function isExpensive( ) { return true; }|
|includes\SpecialBrokenRedirects.php(20)|function isSyndicated() { return false; }|
|includes\SpecialBrokenRedirects.php(22)|function getPageHeader( )|
|includes\SpecialBrokenRedirects.php(27)|function getSQL()|
|includes\SpecialBrokenRedirects.php(43)|function getOrder()|
|includes\SpecialBrokenRedirects.php(47)|function formatResult( $skin, $result )|
|includes\SpecialBrokenRedirects.php(87)|function wfSpecialBrokenRedirects()|
|includes\SpecialCategories.php(7)|function wfSpecialCategories()|
|includes\SpecialCategories.php(24)|function getQueryInfo()|
|includes\SpecialCategories.php(32)|function getIndexField()|
|includes\SpecialCategories.php(37)|function getBody()|
|includes\SpecialCategories.php(53)|function formatRow($result)|
|includes\SpecialConfirmemail.php(8)|function wfSpecialConfirmemail( $par )|
|includes\SpecialConfirmemail.php(27)|function execute( $code )|
|includes\SpecialConfirmemail.php(51)|function showRequestForm()|
|includes\SpecialConfirmemail.php(84)|function attemptConfirm( $code )|
|includes\SpecialContributions.php(12)|function __construct( $target, $namespace = false )|
|includes\SpecialContributions.php(24)|function getDefaultQuery()|
|includes\SpecialContributions.php(30)|function getQueryInfo()|
|includes\SpecialContributions.php(46)|function getUserCond()|
|includes\SpecialContributions.php(60)|function getNamespaceCond()|
|includes\SpecialContributions.php(68)|function getIndexField()|
|includes\SpecialContributions.php(72)|function getStartBody()|
|includes\SpecialContributions.php(76)|function getEndBody()|
|includes\SpecialContributions.php(80)|function getNavigationBar()|
|includes\SpecialContributions.php(110)|function formatRow( $row )|
|includes\SpecialContributions.php(171)|function wfSpecialContributions( $par = null )|
|includes\SpecialContributions.php(259)|function contributionsSub( $nt, $id )|
|includes\SpecialContributions.php(300)|function contributionsForm( $options )|
|includes\SpecialDeadendpages.php(13)|function getName( )|
|includes\SpecialDeadendpages.php(17)|function getPageHeader()|
|includes\SpecialDeadendpages.php(26)|function isExpensive( )|
|includes\SpecialDeadendpages.php(30)|function isSyndicated() { return false; }|
|includes\SpecialDeadendpages.php(35)|function sortDescending()|
|includes\SpecialDeadendpages.php(42)|function getSQL()|
|includes\SpecialDeadendpages.php(56)|function wfSpecialDeadendpages()|
|includes\SpecialDisambiguations.php(9)|function getName()|
|includes\SpecialDisambiguations.php(13)|function isExpensive( ) { return true; }|
|includes\SpecialDisambiguations.php(14)|function isSyndicated() { return false; }|
|includes\SpecialDisambiguations.php(17)|function getPageHeader( )|
|includes\SpecialDisambiguations.php(22)|function getSQL()|
|includes\SpecialDisambiguations.php(79)|function getOrder()|
|includes\SpecialDisambiguations.php(83)|function formatResult( $skin, $result )|
|includes\SpecialDisambiguations.php(100)|function wfSpecialDisambiguations()|
|includes\SpecialDoubleRedirects.php(14)|function getName()|
|includes\SpecialDoubleRedirects.php(18)|function isExpensive( ) { return true; }|
|includes\SpecialDoubleRedirects.php(19)|function isSyndicated() { return false; }|
|includes\SpecialDoubleRedirects.php(21)|function getPageHeader( )|
|includes\SpecialDoubleRedirects.php(26)|function getSQLText( &$dbr, $namespace = null, $title = null )|
|includes\SpecialDoubleRedirects.php(53)|function getSQL()|
|includes\SpecialDoubleRedirects.php(58)|function getOrder()|
|includes\SpecialDoubleRedirects.php(62)|function formatResult( $skin, $result )|
|includes\SpecialDoubleRedirects.php(97)|function wfSpecialDoubleRedirects()|
|includes\SpecialEmailuser.php(12)|function wfSpecialEmailuser( $par )|
|includes\SpecialEmailuser.php(80)|function EmailUserForm( $target )|
|includes\SpecialEmailuser.php(88)|function showForm()|
|includes\SpecialEmailuser.php(138)|function doSubmit()|
|includes\SpecialEmailuser.php(179)|function showSuccess( &$user )|
|includes\SpecialExport.php(24)|function wfExportGetPagesFromCategory( $title )|
|includes\SpecialExport.php(55)|function wfSpecialExport( $page = '' )|
|includes\SpecialFewestrevisions.php(12)|function getName()|
|includes\SpecialFewestrevisions.php(16)|function isExpensive()|
|includes\SpecialFewestrevisions.php(20)|function isSyndicated()|
|includes\SpecialFewestrevisions.php(24)|function getSql()|
|includes\SpecialFewestrevisions.php(39)|function sortDescending()|
|includes\SpecialFewestrevisions.php(43)|function formatResult( $skin, $result )|
|includes\SpecialFewestrevisions.php(59)|function wfSpecialFewestrevisions()|
|includes\SpecialImagelist.php(10)|function wfSpecialImagelist()|
|includes\SpecialImagelist.php(35)|function __construct()|
|includes\SpecialImagelist.php(57)|function getFieldNames()|
|includes\SpecialImagelist.php(71)|function isFieldSortable( $field )|
|includes\SpecialImagelist.php(76)|function getQueryInfo()|
|includes\SpecialImagelist.php(88)|function getDefaultSort()|
|includes\SpecialImagelist.php(92)|function getStartBody()|
|includes\SpecialImagelist.php(112)|function formatValue( $field, $value )|
|includes\SpecialImagelist.php(141)|function getForm()|
|includes\SpecialImagelist.php(157)|function getTableClass()|
|includes\SpecialImagelist.php(161)|function getNavClass()|
|includes\SpecialImagelist.php(165)|function getSortHeaderClass()|
|includes\SpecialImport.php(28)|function wfSpecialImport( $page = '' )|
|includes\SpecialImport.php(166)|function __construct( $importer, $upload, $interwiki )|
|includes\SpecialImport.php(173)|function open()|
|includes\SpecialImport.php(178)|function reportPage( $title, $origTitle, $revisionCount, $successCount )|
|includes\SpecialImport.php(215)|function close()|
|includes\SpecialImport.php(238)|function setTitle( $title )|
|includes\SpecialImport.php(248)|function setID( $id )|
|includes\SpecialImport.php(252)|function setTimestamp( $ts )|
|includes\SpecialImport.php(257)|function setUsername( $user )|
|includes\SpecialImport.php(261)|function setUserIP( $ip )|
|includes\SpecialImport.php(265)|function setText( $text )|
|includes\SpecialImport.php(269)|function setComment( $text )|
|includes\SpecialImport.php(273)|function setMinor( $minor )|
|includes\SpecialImport.php(277)|function getTitle()|
|includes\SpecialImport.php(281)|function getID()|
|includes\SpecialImport.php(285)|function getTimestamp()|
|includes\SpecialImport.php(289)|function getUser()|
|includes\SpecialImport.php(293)|function getText()|
|includes\SpecialImport.php(297)|function getComment()|
|includes\SpecialImport.php(301)|function getMinor()|
|includes\SpecialImport.php(305)|function importOldRevision()|
|includes\SpecialImport.php(398)|function WikiImporter( $source )|
|includes\SpecialImport.php(403)|function throwXmlError( $err )|
|includes\SpecialImport.php(410)|function doImport()|
|includes\SpecialImport.php(437)|function debug( $data )|
|includes\SpecialImport.php(441)|function notice( $data )|
|includes\SpecialImport.php(456)|function setPageCallback( $callback )|
|includes\SpecialImport.php(471)|function setPageOutCallback( $callback )|
|includes\SpecialImport.php(482)|function setRevisionCallback( $callback )|
|includes\SpecialImport.php(491)|function setTargetNamespace( $namespace )|
|includes\SpecialImport.php(508)|function importRevision( &$revision )|
|includes\SpecialImport.php(518)|function debugRevisionHandler( &$revision )|
|includes\SpecialImport.php(536)|function pageCallback( $title )|
|includes\SpecialImport.php(550)|function pageOutCallback( $title, $origTitle, $revisionCount, $successCount )|
|includes\SpecialImport.php(559)|function donothing( $parser, $x, $y="" )|
|includes\SpecialImport.php(563)|function in_start( $parser, $name, $attribs )|
|includes\SpecialImport.php(571)|function in_mediawiki( $parser, $name, $attribs )|
|includes\SpecialImport.php(583)|function out_mediawiki( $parser, $name )|
|includes\SpecialImport.php(592)|function in_siteinfo( $parser, $name, $attribs )|
|includes\SpecialImport.php(608)|function out_siteinfo( $parser, $name )|
|includes\SpecialImport.php(615)|function in_page( $parser, $name, $attribs )|
|includes\SpecialImport.php(643)|function out_page( $parser, $name )|
|includes\SpecialImport.php(661)|function in_nothing( $parser, $name, $attribs )|
|includes\SpecialImport.php(665)|function char_append( $parser, $data )|
|includes\SpecialImport.php(669)|function out_append( $parser, $name )|
|includes\SpecialImport.php(731)|function in_revision( $parser, $name, $attribs )|
|includes\SpecialImport.php(752)|function out_revision( $parser, $name )|
|includes\SpecialImport.php(768)|function in_contributor( $parser, $name, $attribs )|
|includes\SpecialImport.php(784)|function out_contributor( $parser, $name )|
|includes\SpecialImport.php(799)|function ImportStringSource( $string )|
|includes\SpecialImport.php(804)|function atEnd()|
|includes\SpecialImport.php(808)|function readChunk()|
|includes\SpecialImport.php(823)|function ImportStreamSource( $handle )|
|includes\SpecialImport.php(827)|function atEnd()|
|includes\SpecialImport.php(831)|function readChunk()|
|includes\SpecialImport.php(835)|static function newFromFile( $filename )|
|includes\SpecialImport.php(843)|static function newFromUpload( $fieldname = "xmlimport" )|
|includes\SpecialImport.php(860)|function newFromURL( $url )|
|includes\SpecialImport.php(869)|public static function newFromInterwiki( $interwiki, $page, $history=false )|
|includes\SpecialIpblocklist.php(10)|function wfSpecialIpblocklist()|
|includes\SpecialIpblocklist.php(54)|function IPUnblockForm( $ip, $id, $reason )|
|includes\SpecialIpblocklist.php(60)|function showForm( $err )|
|includes\SpecialIpblocklist.php(119)|function doSubmit()|
|includes\SpecialIpblocklist.php(164)|function showList( $msg )|
|includes\SpecialIpblocklist.php(221)|function searchForm()|
|includes\SpecialIpblocklist.php(248)|function formatRow( $block )|
|includes\SpecialIpblocklist.php(329)|function __construct( $form, $conds = array() )|
|includes\SpecialIpblocklist.php(335)|function getStartBody()|
|includes\SpecialIpblocklist.php(364)|function formatRow( $row )|
|includes\SpecialIpblocklist.php(370)|function getQueryInfo()|
|includes\SpecialIpblocklist.php(381)|function getIndexField()|
|includes\SpecialListredirects.php(16)|function getName() { return( 'Listredirects' ); }|
|includes\SpecialListredirects.php(17)|function isExpensive() { return( true ); }|
|includes\SpecialListredirects.php(18)|function isSyndicated() { return( false ); }|
|includes\SpecialListredirects.php(19)|function sortDescending() { return( false ); }|
|includes\SpecialListredirects.php(21)|function getSQL()|
|includes\SpecialListredirects.php(28)|function formatResult( $skin, $result )|
|includes\SpecialListredirects.php(59)|function wfSpecialListredirects()|
|includes\SpecialListusers.php(39)|function __construct($group=null)|
|includes\SpecialListusers.php(54)|function getIndexField()|
|includes\SpecialListusers.php(58)|function getQueryInfo()|
|includes\SpecialListusers.php(83)|function formatRow( $row )|
|includes\SpecialListusers.php(101)|function getBody()|
|includes\SpecialListusers.php(118)|function getPageHeader( )|
|includes\SpecialListusers.php(159)|function getDefaultQuery()|
|includes\SpecialListusers.php(174)|private static function getGroups( $uid )|
|includes\SpecialListusers.php(192)|private static function buildGroupLink( $group )|
|includes\SpecialListusers.php(204)|function wfSpecialListusers( $par = null )|
|includes\SpecialLockdb.php(10)|function wfSpecialLockdb()|
|includes\SpecialLockdb.php(45)|function DBLockForm()|
|includes\SpecialLockdb.php(50)|function showForm( $err )|
|includes\SpecialLockdb.php(93)|function doSubmit()|
|includes\SpecialLockdb.php(119)|function showSuccess()|
|includes\SpecialLockdb.php(127)|public static function notWritable()|
|includes\SpecialLog.php(28)|function wfSpecialLog( $par = '' )|
|includes\SpecialLog.php(49)|function LogReader( $request )|
|includes\SpecialLog.php(59)|function setupQuery( $request )|
|includes\SpecialLog.php(85)|function limitType( $type )|
|includes\SpecialLog.php(99)|function limitUser( $name )|
|includes\SpecialLog.php(123)|function limitTitle( $page , $pattern )|
|includes\SpecialLog.php(147)|function limitTime( $time, $direction )|
|includes\SpecialLog.php(161)|function getQuery()|
|includes\SpecialLog.php(182)|function getRows()|
|includes\SpecialLog.php(190)|function queryType()|
|includes\SpecialLog.php(197)|function queryUser()|
|includes\SpecialLog.php(204)|function queryPattern()|
|includes\SpecialLog.php(211)|function queryTitle()|
|includes\SpecialLog.php(234)|function LogViewer( &$reader )|
|includes\SpecialLog.php(243)|function show()|
|includes\SpecialLog.php(266)|function getLogRows()|
|includes\SpecialLog.php(297)|function showList( &$out )|
|includes\SpecialLog.php(306)|function doShowList( &$out, $result )|
|includes\SpecialLog.php(318)|function showError( &$out )|
|includes\SpecialLog.php(327)|function logLine( $s )|
|includes\SpecialLog.php(390)|function showHeader( &$out )|
|includes\SpecialLog.php(402)|function showOptions( &$out )|
|includes\SpecialLog.php(423)|function getTypeMenu()|
|includes\SpecialLog.php(452)|function getUserInput()|
|includes\SpecialLog.php(461)|function getTitleInput()|
|includes\SpecialLog.php(470)|function getTitlePattern()|
|includes\SpecialLog.php(479)|function showPrevNext( &$out )|
|includes\SpecialLonelypages.php(14)|function getName()|
|includes\SpecialLonelypages.php(17)|function getPageHeader()|
|includes\SpecialLonelypages.php(21)|function sortDescending()|
|includes\SpecialLonelypages.php(25)|function isExpensive()|
|includes\SpecialLonelypages.php(28)|function isSyndicated() { return false; }|
|includes\SpecialLonelypages.php(30)|function getSQL()|
|includes\SpecialLonelypages.php(52)|function wfSpecialLonelypages()|
|includes\SpecialLongpages.php(13)|function getName()|
|includes\SpecialLongpages.php(17)|function sortDescending()|
|includes\SpecialLongpages.php(25)|function wfSpecialLongpages()|
|includes\SpecialMIMEsearch.php(20)|function MIMEsearchPage( $major, $minor )|
|includes\SpecialMIMEsearch.php(25)|function getName() { return 'MIMEsearch'; }|
|includes\SpecialMIMEsearch.php(31)|function isExpensive() { return true; }|
|includes\SpecialMIMEsearch.php(32)|function isSyndicated() { return false; }|
|includes\SpecialMIMEsearch.php(34)|function linkParameters()|
|includes\SpecialMIMEsearch.php(40)|function getSQL()|
|includes\SpecialMIMEsearch.php(62)|function formatResult( $skin, $result )|
|includes\SpecialMIMEsearch.php(84)|function wfSpecialMIMEsearch( $par = null )|
|includes\SpecialMIMEsearch.php(128)|function wfSpecialMIMEsearchParse( $str )|
|includes\SpecialMIMEsearch.php(142)|function wfSpecialMIMEsearchValidType( $type )|
|includes\SpecialMostcategories.php(16)|function getName() { return 'Mostcategories'; }|
|includes\SpecialMostcategories.php(17)|function isExpensive() { return true; }|
|includes\SpecialMostcategories.php(18)|function isSyndicated() { return false; }|
|includes\SpecialMostcategories.php(20)|function getSQL()|
|includes\SpecialMostcategories.php(38)|function formatResult( $skin, $result )|
|includes\SpecialMostcategories.php(50)|function wfSpecialMostcategories()|
|includes\SpecialMostimages.php(16)|function getName() { return 'Mostimages'; }|
|includes\SpecialMostimages.php(17)|function isExpensive() { return true; }|
|includes\SpecialMostimages.php(18)|function isSyndicated() { return false; }|
|includes\SpecialMostimages.php(20)|function getSQL()|
|includes\SpecialMostimages.php(36)|function getCellHtml( $row )|
|includes\SpecialMostimages.php(47)|function wfSpecialMostimages()|
|includes\SpecialMostlinked.php(17)|function getName() { return 'Mostlinked'; }|
|includes\SpecialMostlinked.php(18)|function isExpensive() { return true; }|
|includes\SpecialMostlinked.php(19)|function isSyndicated() { return false; }|
|includes\SpecialMostlinked.php(24)|function getSQL()|
|includes\SpecialMostlinked.php(42)|function preprocessResults( &$db, &$res )|
|includes\SpecialMostlinked.php(59)|function makeWlhLink( &$title, $caption, &$skin )|
|includes\SpecialMostlinked.php(71)|function formatResult( $skin, $result )|
|includes\SpecialMostlinked.php(85)|function wfSpecialMostlinked()|
|includes\SpecialMostlinkedcategories.php(13)|function getName() { return 'Mostlinkedcategories'; }|
|includes\SpecialMostlinkedcategories.php(14)|function isExpensive() { return true; }|
|includes\SpecialMostlinkedcategories.php(15)|function isSyndicated() { return false; }|
|includes\SpecialMostlinkedcategories.php(17)|function getSQL()|
|includes\SpecialMostlinkedcategories.php(33)|function sortDescending() { return true; }|
|includes\SpecialMostlinkedcategories.php(38)|function preprocessResults( &$db, &$res )|
|includes\SpecialMostlinkedcategories.php(50)|function formatResult( $skin, $result )|
|includes\SpecialMostlinkedcategories.php(67)|function wfSpecialMostlinkedCategories()|
|includes\SpecialMostrevisions.php(17)|function getName() { return 'Mostrevisions'; }|
|includes\SpecialMostrevisions.php(18)|function isExpensive() { return true; }|
|includes\SpecialMostrevisions.php(19)|function isSyndicated() { return false; }|
|includes\SpecialMostrevisions.php(21)|function getSQL()|
|includes\SpecialMostrevisions.php(39)|function formatResult( $skin, $result )|
|includes\SpecialMostrevisions.php(58)|function wfSpecialMostrevisions()|
|includes\SpecialMovepage.php(10)|function wfSpecialMovepage( $par = null )|
|includes\SpecialMovepage.php(53)|function MovePageForm( $par )|
|includes\SpecialMovepage.php(68)|function showForm( $err )|
|includes\SpecialMovepage.php(202)|function doSubmit()|
|includes\SpecialMovepage.php(277)|function showSuccess()|
|includes\SpecialMovepage.php(306)|function showLogFragment( $title, &$out )|
|includes\SpecialNewimages.php(10)|function wfSpecialNewimages( $par, $specialPage )|
|includes\SpecialNewpages.php(16)|function NewPagesPage( $namespace = NS_MAIN, $username = '' )|
|includes\SpecialNewpages.php(21)|function getName()|
|includes\SpecialNewpages.php(25)|function isExpensive()|
|includes\SpecialNewpages.php(30)|function makeUserWhere( &$dbo )|
|includes\SpecialNewpages.php(39)|function getSQL()|
|includes\SpecialNewpages.php(69)|function preprocessResults( &$dbo, &$res )|
|includes\SpecialNewpages.php(89)|function formatResult( $skin, $result )|
|includes\SpecialNewpages.php(110)|function patrollable( $result )|
|includes\SpecialNewpages.php(115)|function feedItemDesc( $row )|
|includes\SpecialNewpages.php(132)|function getPageHeader()|
|includes\SpecialNewpages.php(152)|function linkParameters()|
|includes\SpecialNewpages.php(161)|function wfSpecialNewpages($par, $specialPage)|
|includes\SpecialPage.php(159)|static function initList()|
|includes\SpecialPage.php(192)|static function initAliasList()|
|includes\SpecialPage.php(216)|static function resolveAlias( $alias )|
|includes\SpecialPage.php(234)|static function resolveAliasWithSubpage( $alias )|
|includes\SpecialPage.php(256)|static function addPage( &$page )|
|includes\SpecialPage.php(270)|static function removePage( $name )|
|includes\SpecialPage.php(282)|static function getPage( $name )|
|includes\SpecialPage.php(305)|static function getPageByAlias( $alias )|
|includes\SpecialPage.php(318)|static function getRegularPages()|
|includes\SpecialPage.php(338)|static function getRestrictedPages()|
|includes\SpecialPage.php(368)|static function executePath( &$title, $including = false )|
|includes\SpecialPage.php(445)|static function capturePath( &$title )|
|includes\SpecialPage.php(464)|static function getLocalNameFor( $name, $subpage = false )|
|includes\SpecialPage.php(479)|static function getTitleFor( $name, $subpage = false )|
|includes\SpecialPage.php(491)|static function getSafeTitleFor( $name, $subpage = false )|
|includes\SpecialPage.php(504)|static function getTitleForAlias( $alias )|
|includes\SpecialPage.php(529)|function SpecialPage( $name = '', $restriction = '', $listed = true, $function = false, $file = 'default', $includable = false )|
|includes\SpecialPage.php(551)|function getName() { return $this->mName; }|
|includes\SpecialPage.php(552)|function getRestriction() { return $this->mRestriction; }|
|includes\SpecialPage.php(553)|function getFile() { return $this->mFile; }|
|includes\SpecialPage.php(554)|function isListed() { return $this->mListed; }|
|includes\SpecialPage.php(560)|function name( $x = NULL ) { return wfSetVar( $this->mName, $x ); }|
|includes\SpecialPage.php(561)|function restrictions( $x = NULL) { return wfSetVar( $this->mRestrictions, $x ); }|
|includes\SpecialPage.php(562)|function listed( $x = NULL) { return wfSetVar( $this->mListed, $x ); }|
|includes\SpecialPage.php(563)|function func( $x = NULL) { return wfSetVar( $this->mFunction, $x ); }|
|includes\SpecialPage.php(564)|function file( $x = NULL) { return wfSetVar( $this->mFile, $x ); }|
|includes\SpecialPage.php(565)|function includable( $x = NULL ) { return wfSetVar( $this->mIncludable, $x ); }|
|includes\SpecialPage.php(566)|function including( $x = NULL ) { return wfSetVar( $this->mIncluding, $x ); }|
|includes\SpecialPage.php(572)|function getLocalName()|
|includes\SpecialPage.php(583)|function userCanExecute( &$user )|
|includes\SpecialPage.php(590)|function displayRestriction(^Q^Error()|
|includes\SpecialPage.php(598)|function setHeaders()|
|includes\SpecialPage.php(611)|function execute( $par )|
|includes\SpecialPage.php(635)|function outputHeader()|
|includes\SpecialPage.php(650)|function getDescription()|
|includes\SpecialPage.php(657)|function getTitle( $subpage = false)|
|includes\SpecialPage.php(664)|function setListed( $listed )|
|includes\SpecialPage.php(672)|function getRedirect( $subpage )|
|includes\SpecialPage.php(682)|function getRedirectQuery()|
|includes\SpecialPage.php(700)|function UnlistedSpecialPage( $name, $restriction = '', $function = false, $file = 'default' )|
|includes\SpecialPage.php(701)|SpecialPage::SpecialPage( $name, $restriction, false, $function, $file );|
|includes\SpecialPage.php(711)|function IncludableSpecialPage( $name, $restriction = '', $listed = true, $function = false, $file = 'default' )|
|includes\SpecialPage.php(712)|SpecialPage::SpecialPage( $name, $restriction, $listed, $function, $file, true );|
|includes\SpecialPage.php(723)|function __construct( $name, $redirName, $redirSubpage = false, $redirectParams = array() )|
|includes\SpecialPage.php(730)|function getRedirect( $subpage )|
|includes\SpecialPage.php(751)|function __construct()|
|includes\SpecialPage.php(756)|function getRedirect( $subpage )|
|includes\SpecialPage.php(771)|function __construct()|
|includes\SpecialPage.php(776)|function getRedirect( $subpage )|
|includes\SpecialPage.php(791)|function __construct()|
|includes\SpecialPage.php(795)|function getRedirect( $subpage )|
|includes\SpecialPopularpages.php(13)|function getName()|
|includes\SpecialPopularpages.php(17)|function isExpensive()|
|includes\SpecialPopularpages.php(21)|function isSyndicated() { return false; }|
|includes\SpecialPopularpages.php(23)|function getSQL()|
|includes\SpecialPopularpages.php(48)|function formatResult( $skin, $result )|
|includes\SpecialPopularpages.php(61)|function wfSpecialPopularpages()|
|includes\SpecialPreferences.php(10)|function wfSpecialPreferences()|
|includes\SpecialPreferences.php(34)|function PreferencesForm( &$request )|
|includes\SpecialPreferences.php(102)|function execute()|
|includes\SpecialPreferences.php(126)|function validateInt( &$val, $min=0, $max=0x7fffffff )|
|includes\SpecialPreferences.php(136)|function validateFloat( &$val, $min, $max=0x7fffffff )|
|includes\SpecialPreferences.php(146)|function validateIntOrNull( &$val, $min=0, $max=0x7fffffff )|
|includes\SpecialPreferences.php(158)|function validateDate( $val )|
|includes\SpecialPreferences.php(179)|function validateTimeZone( $s )|
|includes\SpecialPreferences.php(205)|function savePreferences()|
|includes\SpecialPreferences.php(339)|function resetPrefs()|
|includes\SpecialPreferences.php(389)|function namespacesCheckboxes()|
|includes\SpecialPreferences.php(411)|function getToggle( $tname, $trailer = false, $disabled = false )|
|includes\SpecialPreferences.php(424)|function getToggles( $items )|
|includes\SpecialPreferences.php(440)|function addRow($td1, $td2)|
|includes\SpecialPreferences.php(447)|function mainPrefsForm( $status , $message = '' )|
|includes\SpecialPrefixindex.php(11)|function wfSpecialPrefixIndex( $par=NULL, $specialPage )|
|includes\SpecialPrefixindex.php(59)|function showChunk( $namespace = NS_MAIN, $prefix, $including = false, $from = null )|
|includes\SpecialProtectedpages.php(12)|function showList( $msg = '' )|
|includes\SpecialProtectedpages.php(49)|function formatRow( $row )|
|includes\SpecialProtectedpages.php(96)|function showOptions( $namespace, $type='edit', $level, $minsize )|
|includes\SpecialProtectedpages.php(113)|function getNamespaceMenu( $namespace=NULL )|
|includes\SpecialProtectedpages.php(121)|function getSizeLimit( $minsize=0 )|
|includes\SpecialProtectedpages.php(130)|function getTypeMenu( $pr_type )|
|includes\SpecialProtectedpages.php(159)|function getLevelMenu( $pr_level )|
|includes\SpecialProtectedpages.php(194)|function __construct( $form, $conds = array(), $type, $level, $namespace, $minsize )|
|includes\SpecialProtectedpages.php(204)|function getStartBody()|
|includes\SpecialProtectedpages.php(220)|function formatRow( $row )|
|includes\SpecialProtectedpages.php(225)|function getQueryInfo()|
|includes\SpecialProtectedpages.php(243)|function getIndexField()|
|includes\SpecialProtectedpages.php(251)|function wfSpecialProtectedpages()|
|includes\SpecialRandompage.php(15)|function wfSpecialRandompage( $par = null )|
|includes\SpecialRandompage.php(43)|public function getNamespace ( )|
|includes\SpecialRandompage.php(46)|public function setNamespace ( $ns )|
|includes\SpecialRandompage.php(50)|public function getRedirect ( )|
|includes\SpecialRandompage.php(53)|public function setRedirect ( $redirect )|
|includes\SpecialRandompage.php(61)|public function getRandomTitle ( )|
|includes\SpecialRandompage.php(81)|private function select(^Q^RandomPageFromDB ( $randstr )|
|includes\SpecialRandomredirect.php(15)|function wfSpecialRandomredirect( $par = null )|
|includes\SpecialRecentchanges.php(15)|function wfSpecialRecentchanges( $par, $specialPage )|
|includes\SpecialRecentchanges.php(271)|function rcFilterByCategories ( &$rows , $categories , $any )|
|includes\SpecialRecentchanges.php(318)|function rcOutputFeed( $rows, $feedFormat, $limit, $hideminor, $lastmod )|
|includes\SpecialRecentchanges.php(378)|function rcDoOutputFeed( $rows, &$feed )|
|includes\SpecialRecentchanges.php(419)|function rcCountLink( $lim, $d, $page='Recentchanges', $more='' )|
|includes\SpecialRecentchanges.php(431)|function rcDaysLink( $lim, $d, $page='Recentchanges', $more='' )|
|includes\SpecialRecentchanges.php(443)|function rcDayLimitLinks( $days, $limit, $page='Recentchanges', $more='', $doall = false, $minorLink = '',|
|includes\SpecialRecentchanges.php(476)|function makeOptionsLink( $title, $override, $options )|
|includes\SpecialRecentchanges.php(488)|function rcOptionsPanel( $defaults, $nondefaults )|
|includes\SpecialRecentchanges.php(568)|function rcNamespaceForm( $namespace, $invert, $nondefaults, $categories_any )|
|includes\SpecialRecentchanges.php(610)|function rcFormatDiff( $row )|
|includes\SpecialRecentchanges.php(619)|function rcFormatDiffRow( $title, $oldid, $newid, $timestamp, $comment )|
|includes\SpecialRecentchanges.php(686)|function rcApplyDiffStyle( $text )|
|includes\SpecialRecentchangeslinked.php(16)|function wfSpecialRecentchangeslinked( $par = NULL )|
|includes\SpecialResetpass.php(4)|function wfSpecialResetpass( $par )|
|includes\SpecialResetpass.php(14)|function __construct( $name=null, $reset=null )|
|includes\SpecialResetpass.php(28)|function execute( $par='' )|
|includes\SpecialResetpass.php(68)|function error( $msg )|
|includes\SpecialResetpass.php(75)|function showForm()|
|includes\SpecialResetpass.php(119)|function pretty( $fields )|
|includes\SpecialResetpass.php(144)|function attemptReset( $newpass, $retype )|
|includes\SpecialRevisiondelete.php(12)|function wfSpecialRevisiondelete( $par = null )|
|includes\SpecialRevisiondelete.php(47)|function __construct( $request )|
|includes\SpecialRevisiondelete.php(66)|function show( $request )|
|includes\SpecialRevisiondelete.php(123)|function historyLine( $rev )|
|includes\SpecialRevisiondelete.php(139)|function submit( $request )|
|includes\SpecialRevisiondelete.php(149)|function success( $request )|
|includes\SpecialRevisiondelete.php(159)|function extractBitfield( $request )|
|includes\SpecialRevisiondelete.php(170)|function save( $bitfield, $reason )|
|includes\SpecialRevisiondelete.php(182)|function __construct( $db )|
|includes\SpecialRevisiondelete.php(191)|function setVisibility( $items, $bitfield, $comment )|
|includes\SpecialRevisiondelete.php(227)|function updateRevision( $rev, $bitfield )|
|includes\SpecialRevisiondelete.php(239)|function updateRecentChanges( $rev, $bitfield )|
|includes\SpecialRevisiondelete.php(256)|function updatePage( $title )|
|includes\SpecialRevisiondelete.php(267)|function updateLog( $title, $count, $bitfield, $comment )|
|includes\SpecialSearch.php(30)|function wfSpecialSearch( $par = '' )|
|includes\SpecialSearch.php(58)|function SpecialSearch( &$request, &$user )|
|includes\SpecialSearch.php(75)|function goResult( $term )|
|includes\SpecialSearch.php(115)|function showResults( $term )|
|includes\SpecialSearch.php(215)|function setupPage( $term )|
|includes\SpecialSearch.php(232)|function userNamespaces( &$user )|
|includes\SpecialSearch.php(250)|function powerSearch( &$request )|
|includes\SpecialSearch.php(265)|function powerSearchOptions()|
|includes\SpecialSearch.php(279)|function showMatches( &$matches )|
|includes\SpecialSearch.php(307)|function showHit( $result, $terms )|
|includes\SpecialSearch.php(369)|function powerSearchBox( $term )|
|includes\SpecialShortpages.php(14)|function getName()|
|includes\SpecialShortpages.php(21)|function isExpensive()|
|includes\SpecialShortpages.php(25)|function isSyndicated()|
|includes\SpecialShortpages.php(29)|function getSQL()|
|includes\SpecialShortpages.php(44)|function preprocessResults( &$db, &$res )|
|includes\SpecialShortpages.php(57)|function sortDescending()|
|includes\SpecialShortpages.php(61)|function formatResult( $skin, $result )|
|includes\SpecialShortpages.php(84)|function wfSpecialShortpages()|
|includes\SpecialSpecialpages.php(10)|function wfSpecialSpecialpages()|
|includes\SpecialSpecialpages.php(29)|function wfSpecialSpecialpages_gen($pages,$heading,$sk)|
|includes\SpecialStatistics.php(10)|function wfSpecialStatistics()|
|includes\SpecialUncategorizedcategories.php(17)|function UncategorizedCategoriesPage()|
|includes\SpecialUncategorizedcategories.php(21)|function getName()|
|includes\SpecialUncategorizedcategories.php(29)|function wfSpecialUncategorizedcategories()|
|includes\SpecialUncategorizedimages.php(12)|function getName()|
|includes\SpecialUncategorizedimages.php(16)|function sortDescending()|
|includes\SpecialUncategorizedimages.php(20)|function isExpensive()|
|includes\SpecialUncategorizedimages.php(24)|function isSyndicated()|
|includes\SpecialUncategorizedimages.php(28)|function getSQL()|
|includes\SpecialUncategorizedimages.php(41)|function wfSpecialUncategorizedimages()|
|includes\SpecialUncategorizedpages.php(14)|function getName()|
|includes\SpecialUncategorizedpages.php(18)|function sortDescending()|
|includes\SpecialUncategorizedpages.php(22)|function isExpensive()|
|includes\SpecialUncategorizedpages.php(25)|function isSyndicated() { return false; }|
|includes\SpecialUncategorizedpages.php(27)|function getSQL()|
|includes\SpecialUncategorizedpages.php(49)|function wfSpecialUncategorizedpages()|
|includes\SpecialUndelete.php(13)|function wfSpecialUndelete( $par )|
|includes\SpecialUndelete.php(27)|function __construct( $title )|
|includes\SpecialUndelete.php(41)|public static function listAllPages()|
|includes\SpecialUndelete.php(53)|public static function listPagesByPrefix( $prefix )|
|includes\SpecialUndelete.php(73)|protected static function listPages( $dbr, $condition )|
|includes\SpecialUndelete.php(99)|function listRevisions()|
|includes\SpecialUndelete.php(119)|function listFiles()|
|includes\SpecialUndelete.php(150)|function getRevisionText( $timestamp )|
|includes\SpecialUndelete.php(161)|function getRevision( $timestamp )|
|includes\SpecialUndelete.php(200)|function getTextFromRow( $row )|
|includes\SpecialUndelete.php(225)|function getLastRevisionText()|
|includes\SpecialUndelete.php(244)|function isDeleted()|
|includes\SpecialUndelete.php(263)|function undelete( $timestamps, $comment = '', $fileVersions = array() )|
|includes\SpecialUndelete.php(321)|private function undeleteRevisions( $timestamps )|
|includes\SpecialUndelete.php(467)|function UndeleteForm( $request, $par = "" )|
|includes\SpecialUndelete.php(515)|function execute()|
|includes\SpecialUndelete.php(546)|function showSearchForm()|
|includes\SpecialUndelete.php(659)|function showFile( $key )|
|includes\SpecialUndelete.php(835)|function undelete()|
|includes\SpecialUnlockdb.php(10)|function wfSpecialUnlockdb()|
|includes\SpecialUnlockdb.php(36)|function showForm( $err )|
|includes\SpecialUnlockdb.php(83)|function doSubmit()|
|includes\SpecialUnlockdb.php(100)|function showSuccess()|
|includes\SpecialUnusedcategories.php(13)|function getName()|
|includes\SpecialUnusedcategories.php(17)|function getPageHeader()|
|includes\SpecialUnusedcategories.php(21)|function getSQL()|
|includes\SpecialUnusedcategories.php(34)|function formatResult( $skin, $result )|
|includes\SpecialUnusedcategories.php(41)|function wfSpecialUnusedCategories()|
|includes\SpecialUnusedimages.php(13)|function getName()|
|includes\SpecialUnusedimages.php(17)|function sortDescending()|
|includes\SpecialUnusedimages.php(20)|function isSyndicated() { return false; }|
|includes\SpecialUnusedimages.php(22)|function getSQL()|
|includes\SpecialUnusedimages.php(42)|function getPageHeader()|
|includes\SpecialUnusedimages.php(51)|function wfSpecialUnusedimages()|
|includes\SpecialUnusedtemplates.php(12)|function getName() { return( 'Unusedtemplates' ); }|
|includes\SpecialUnusedtemplates.php(13)|function isExpensive() { return true; }|
|includes\SpecialUnusedtemplates.php(14)|function isSyndicated() { return false; }|
|includes\SpecialUnusedtemplates.php(15)|function sortDescending() { return false; }|
|includes\SpecialUnusedtemplates.php(17)|function getSQL()|
|includes\SpecialUnusedtemplates.php(29)|function formatResult( $skin, $result )|
|includes\SpecialUnusedtemplates.php(39)|function getPageHeader()|
|includes\SpecialUnusedtemplates.php(46)|function wfSpecialUnusedtemplates()|
|includes\SpecialUnwatchedpages.php(13)|function getName() { return 'Unwatchedpages'; }|
|includes\SpecialUnwatchedpages.php(14)|function isExpensive() { return true; }|
|includes\SpecialUnwatchedpages.php(15)|function isSyndicated() { return false; }|
|includes\SpecialUnwatchedpages.php(17)|function getSQL()|
|includes\SpecialUnwatchedpages.php(34)|function sortDescending() { return false; }|
|includes\SpecialUnwatchedpages.php(36)|function formatResult( $skin, $result )|
|includes\SpecialUnwatchedpages.php(52)|function wfSpecialUnwatchedpages()|
|includes\SpecialUpload.php(11)|function wfSpecialUpload()|
|includes\SpecialUpload.php(43)|function UploadForm( &$request )|
|includes\SpecialUpload.php(102)|function initializeFromUpload( $request )|
|includes\SpecialUpload.php(116)|function initializeFromUrl( $request )|
|includes\SpecialUpload.php(136)|private function curlCopy( $url, $dest )|
|includes\SpecialUpload.php(191)|function uploadCurlCallback( $ch, $data )|
|includes\SpecialUpload.php(206)|function execute()|
|includes\SpecialUpload.php(264)|function processUpload()|
|includes\SpecialUpload.php(534)|function saveUploadedFile( $saveName, $tempName, $useRename = false )|
|includes\SpecialUpload.php(594)|function saveTempUploadedFile( $saveName, $tempName )|
|includes\SpecialUpload.php(620)|function stashSession()|
|includes\SpecialUpload.php(642)|function unsaveUploadedFile()|
|includes\SpecialUpload.php(661)|function showSuccess()|
|includes\SpecialUpload.php(679)|function uploadError( $error )|
|includes\SpecialUpload.php(693)|function uploadWarning( $warning )|
|includes\SpecialUpload.php(757)|function mainUploadForm( $msg='' )|
|includes\SpecialUpload.php(922)|function splitExtensions( $filename )|
|includes\SpecialUpload.php(936)|function checkFileExtension( $ext, $list )|
|includes\SpecialUpload.php(948)|function checkFileExtensionList( $ext, $list )|
|includes\SpecialUpload.php(964)|function verify( $tmpfile, $extension )|
|includes\SpecialUpload.php(1012)|function verifyExtension( $mime, $extension )|
|includes\SpecialUpload.php(1052)|function detectScript($file, $mime, $extension)|
|includes\SpecialUpload.php(1149)|function detectVirus($file)|
|includes\SpecialUpload.php(1239)|function checkMacBinary()|
|includes\SpecialUpload.php(1262)|function cleanupTempFile()|
|includes\SpecialUpload.php(1276)|function checkOverwrite( $name )|
|includes\SpecialUploadMogile.php(15)|function wfSpecialUploadMogile()|
|includes\SpecialUploadMogile.php(37)|function saveUploadedFile( $saveName, $tempName, $useRename = false )|
|includes\SpecialUploadMogile.php(81)|function saveTempUploadedFile( $saveName, $tempName )|
|includes\SpecialUploadMogile.php(103)|function stashSession()|
|includes\SpecialUploadMogile.php(125)|function unsaveUploadedFile()|
|includes\SpecialUserlogin.php(10)|function wfSpecialUserlogin()|
|includes\SpecialUserlogin.php(44)|function LoginForm( &$request )|
|includes\SpecialUserlogin.php(88)|function execute()|
|includes\SpecialUserlogin.php(109)|function addNewAccountMailPassword()|
|includes\SpecialUserlogin.php(147)|function addNewAccount()|
|includes\SpecialUserlogin.php(201)|function addNewAccountInternal()|
|includes\SpecialUserlogin.php(304)|function initUser( $u )|
|includes\SpecialUserlogin.php(338)|function authenticateUserData()|
|includes\SpecialUserlogin.php(408)|function processLogin()|
|includes\SpecialUserlogin.php(454)|function resetLoginForm( $error )|
|includes\SpecialUserlogin.php(464)|function mailPassword()|
|includes\SpecialUserlogin.php(521)|function mailPasswordInternal( $u, $throttle = true )|
|includes\SpecialUserlogin.php(551)|function successfulLogin( $msg, $auto = true )|
|includes\SpecialUserlogin.php(571)|function userNotPrivilegedMessage()|
|includes\SpecialUserlogin.php(584)|function userBlockedMessage()|
|includes\SpecialUserlogin.php(607)|function mainLoginForm( $msg, $msgtype = 'error' )|
|includes\SpecialUserlogin.php(705)|function showCreateOrLoginLink( &$user )|
|includes\SpecialUserlogin.php(724)|function hasSessionCookie()|
|includes\SpecialUserlogin.php(732)|function cookieRedirectCheck( $type )|
|includes\SpecialUserlogin.php(744)|function onCookieRedirectCheck( $type )|
|includes\SpecialUserlogin.php(764)|function throttleHit( $limit )|
|includes\SpecialUserlogin.php(776)|function makeLanguageSelector()|
|includes\SpecialUserlogin.php(799)|function makeLanguageSelectorLink( $text, $lang )|
|includes\SpecialUserlogout.php(10)|function wfSpecialUserlogout()|
|includes\SpecialUserrights.php(14)|function wfSpecialUserrights()|
|includes\SpecialUserrights.php(30)|function UserrightsForm ( &$request )|
|includes\SpecialUserrights.php(43)|function execute()|
|includes\SpecialUserrights.php(77)|function saveUserGroups( $username, $removegroup, $addgroup, $reason )|
|includes\SpecialUserrights.php(117)|function makeGroupNameList( $ids )|
|includes\SpecialUserrights.php(124)|function switchForm()|
|includes\SpecialUserrights.php(140)|function editUserGroupsForm($username)|
|includes\SpecialUserrights.php(156)|function showEditUserGroupsForm( $username, $groups )|
|includes\SpecialVersion.php(15)|function wfSpecialVersion()|
|includes\SpecialVersion.php(26)|function execute()|
|includes\SpecialVersion.php(48)|function MediaWikiCredits()|
|includes\SpecialVersion.php(82)|public static function getVersion()|
|includes\SpecialVersion.php(89)|function extensionCredits()|
|includes\SpecialVersion.php(150)|function compare( $a, $b )|
|includes\SpecialVersion.php(157)|function formatCredits( $name, $version = null, $author = null, $url = null, $description = null)|
|includes\SpecialVersion.php(177)|function wgHooks()|
|includes\SpecialVersion.php(197)|private function openExtType($text, $name = null)|
|includes\SpecialVersion.php(218)|function IPInfo()|
|includes\SpecialVersion.php(228)|function listToText( $list )|
|includes\SpecialVersion.php(252)|function arrayToString( $list )|
|includes\SpecialVersion.php(267)|public static function getSvnRevision( $dir )|
|includes\SpecialWantedcategories.php(13)|function getName() { return 'Wantedcategories'; }|
|includes\SpecialWantedcategories.php(14)|function isExpensive() { return true; }|
|includes\SpecialWantedcategories.php(15)|function isSyndicated() { return false; }|
|includes\SpecialWantedcategories.php(17)|function getSQL()|
|includes\SpecialWantedcategories.php(35)|function sortDescending() { return true; }|
|includes\SpecialWantedcategories.php(40)|function preprocessResults( &$db, &$res )|
|includes\SpecialWantedcategories.php(52)|function formatResult( $skin, $result )|
|includes\SpecialWantedcategories.php(71)|function wfSpecialWantedCategories()|
|includes\SpecialWantedpages.php(14)|function WantedPagesPage( $inc = false, $nlinks = true )|
|includes\SpecialWantedpages.php(19)|function getName()|
|includes\SpecialWantedpages.php(23)|function isExpensive()|
|includes\SpecialWantedpages.php(26)|function isSyndicated() { return false; }|
|includes\SpecialWantedpages.php(28)|function getSQL()|
|includes\SpecialWantedpages.php(54)|function preprocessResults( &$db, &$res )|
|includes\SpecialWantedpages.php(67)|function formatResult( $skin, $result )|
|includes\SpecialWantedpages.php(103)|function makeWlhLink( &$title, &$skin, $text )|
|includes\SpecialWantedpages.php(113)|function wfSpecialWantedpages( $par = null, $specialPage )|
|includes\SpecialWatchlist.php(17)|function wfSpecialWatchlist( $par )|
|includes\SpecialWatchlist.php(402)|function wlHoursLink( $h, $page, $options = array() )|
|includes\SpecialWatchlist.php(412)|function wlDaysLink( $d, $page, $options = array() )|
|includes\SpecialWatchlist.php(425)|function wlCutoffLinks( $days, $page = 'Watchlist', $options = array() )|
|includes\SpecialWatchlist.php(449)|function wlCountItems( &$user, $talk = true )|
|includes\SpecialWatchlist.php(474)|function wlHandleClear( &$out, &$request, $par )|
|includes\SpecialWhatlinkshere.php(11)|function wfSpecialWhatlinkshere($par = NULL)|
|includes\SpecialWhatlinkshere.php(28)|function WhatLinksHerePage( &$request, $par = null )|
|includes\SpecialWhatlinkshere.php(35)|function execute()|
|includes\SpecialWhatlinkshere.php(75)|function showIndirectLinks( $level, $target, $limit, $from = 0, $back = 0 )|
|includes\SpecialWhatlinkshere.php(243)|function makeSelfLink( $text, $query )|
|includes\SpecialWhatlinkshere.php(247)|function getPrevNext( $limit, $prevId, $nextId )|
|includes\SpecialWhatlinkshere.php(277)|function numLink( $limit, $from, $ns = null )|
|includes\SpecialWhatlinkshere.php(285)|function whatlinkshereForm( $options )|
|includes\SpecialWhatlinkshere.php(309)|private function setNamespace( $ns )|
|includes\SpecialWithoutinterwiki.php(12)|function getName()|
|includes\SpecialWithoutinterwiki.php(16)|function getPageHeader()|
|includes\SpecialWithoutinterwiki.php(20)|function sortDescending()|
|includes\SpecialWithoutinterwiki.php(24)|function isExpensive()|
|includes\SpecialWithoutinterwiki.php(28)|function isSyndicated()|
|includes\SpecialWithoutinterwiki.php(32)|function getSQL()|
|includes\SpecialWithoutinterwiki.php(50)|function wfSpecialWithoutinterwiki()|
|includes\SquidUpdate.php(12)|function __construct( $urlArr = Array(), $maxTitles = false )|
|includes\SquidUpdate.php(68)|function doUpdate()|
|includes\SquidUpdate.php(252)|function debug( $text )|
|includes\SquidUpdate.php(272)|static function expand( $url )|
|includes\StreamFile.php(5)|function wfStreamFile( $fname )|
|includes\StreamFile.php(49)|function wfGetType( $filename )|
|includes\StringUtils.php(17)|static function hungryDelimiterReplace( $startDelim, $endDelim, $replace, $subject )|
|includes\StringUtils.php(46)|static function delimiterReplaceCallback( $startDelim, $endDelim, $callback, $subject, $flags = '' )|
|includes\StringUtils.php(126)|static function delimiterReplace( $startDelim, $endDelim, $replace, $subject, $flags = '' )|
|includes\StringUtils.php(139)|static function explodeMarkup( $separator, $text )|
|includes\StringUtils.php(165)|static function escapeRegexReplacement( $string )|
|includes\StringUtils.php(177)|function cb()|
|includes\StringUtils.php(187)|function __construct( $r )|
|includes\StringUtils.php(191)|function replace( $matches )|
|includes\StringUtils.php(205)|function __construct( $from, $to, $index = 0 )|
|includes\StringUtils.php(211)|function replace( $matches )|
|includes\StringUtils.php(222)|function __construct( $table, $index = 0 )|
|includes\StringUtils.php(227)|function replace( $matches )|
|includes\StringUtils.php(244)|function __construct( $data = array() )|
|includes\StringUtils.php(248)|function __sleep()|
|includes\StringUtils.php(252)|function __wakeup()|
|includes\StringUtils.php(259)|function setArray( $data )|
|includes\StringUtils.php(264)|function getArray()|
|includes\StringUtils.php(271)|function setPair( $from, $to )|
|includes\StringUtils.php(276)|function mergeArray( $data )|
|includes\StringUtils.php(281)|function merge( $other )|
|includes\StringUtils.php(286)|function replace( $subject )|
|includes\StubObject.php(20)|function __construct( $global = null, $class = null, $params = array() )|
|includes\StubObject.php(26)|static function isRealObject( $obj )|
|includes\StubObject.php(30)|function _call( $name, $args )|
|includes\StubObject.php(35)|function _newObject()|
|includes\StubObject.php(39)|function __call( $name, $args )|
|includes\StubObject.php(47)|function _unstub( $name = '_unstub', $level = 2 )|
|includes\StubObject.php(65)|function __construct()|
|includes\StubObject.php(69)|function __call( $name, $args )|
|includes\StubObject.php(73)|function _newObject()|
|includes\StubObject.php(82)|function __construct()|
|includes\StubObject.php(86)|function __call( $name, $args )|
|includes\StubObject.php(90)|function _newObject()|
|includes\StubObject.php(117)|function __construct()|
|includes\StubObject.php(121)|function __call( $name, $args )|
|includes\StubObject.php(125)|function _newObject()|
|includes\Title.php(94)|public static function newFromDBkey( $key )|
|includes\Title.php(114)|public static function newFromText( $text, $defaultNamespace = NS_MAIN )|
|includes\Title.php(164)|public static function newFromURL( $url )|
|includes\Title.php(192)|public static function newFromID( $id )|
|includes\Title.php(208)|public static function newFromIDs( $ids )|
|includes\Title.php(231)|public static function &makeTitle( $ns, $title )|
|includes\Title.php(252)|public static function makeTitleSafe( $ns, $title )|
|includes\Title.php(266)|public static function newMainPage()|
|includes\Title.php(276)|public static function newFromRedirect( $text )|
|includes\Title.php(311)|function nameOf( $id )|
|includes\Title.php(326)|public static function legalChars()|
|includes\Title.php(340)|public static function indexTitle( $ns, $title )|
|includes\Title.php(366)|public static function makeName( $ns, $title )|
|includes\Title.php(380)|public function getInterwikiLink( $key )|
|includes\Title.php(432)|public static function getInterwikiCached( $key )|
|includes\Title.php(474)|public function isLocal()|
|includes\Title.php(491)|public function isTrans()|
|includes\Title.php(503)|static function escapeFragmentForURL( $fragment )|
|includes\Title.php(522)|public function getText() { return $this->mTextform; }|
|includes\Title.php(527)|public function getPartialURL() { return $this->mUrlform; }|
|includes\Title.php(532)|public function getDBkey() { return $this->mDbkeyform; }|
|includes\Title.php(537)|public function getNamespace() { return $this->mNamespace; }|
|includes\Title.php(542)|public function getNsText()|
|includes\Title.php(562)|public function getSubjectNsText()|
|includes\Title.php(571)|public function getTalkNsText()|
|includes\Title.php(580)|public function canTalk()|
|includes\Title.php(588)|public function getInterwiki() { return $this->mInterwiki; }|
|includes\Title.php(593)|public function getFragment() { return $this->mFragment; }|
|includes\Title.php(598)|public function getFragmentForURL()|
|includes\Title.php(609)|public function getDefaultNamespace() { return $this->mDefaultNamespace; }|
|includes\Title.php(616)|public function getIndexTitle()|
|includes\Title.php(625)|public function getPrefixedDBkey()|
|includes\Title.php(636)|public function getPrefixedText()|
|includes\Title.php(651)|public function getFullText()|
|includes\Title.php(663)|public function getBaseText()|
|includes\Title.php(680)|public function getSubpageText()|
|includes\Title.php(694)|public function getSubpageUrlForm()|
|includes\Title.php(705)|public function getPrefixedURL()|
|includes\Title.php(727)|public function getFullURL( $query = '', $variant = false )|
|includes\Title.php(766)|public function getLocalURL( $query = '', $variant = false )|
|includes\Title.php(840)|public function escapeLocalURL( $query = '' )|
|includes\Title.php(851)|public function escapeFullURL( $query = '' )|
|includes\Title.php(864)|public function getInternalURL( $query = '', $variant = false )|
|includes\Title.php(876)|public function getEditURL()|
|includes\Title.php(888)|public function getEscapedText()|
|includes\Title.php(896)|public function isExternal() { return ( '' != $this->mInterwiki ); }|
|includes\Title.php(904)|public function isSemiProtected( $action = 'edit' )|
|includes\Title.php(929)|public function isProtected( $action = '' )|
|includes\Title.php(962)|public function userIsWatching()|
|includes\Title.php(987)|public function quickUserCan( $action )|
|includes\Title.php(997)|public function userCan( $action, $doExpensiveQueries = true )|
|includes\Title.php(1097)|public function userCanEdit( $doExpensiveQueries = true )|
|includes\Title.php(1106)|public function userCanCreate( $doExpensiveQueries = true )|
|includes\Title.php(1115)|public function userCanMove( $doExpensiveQueries = true )|
|includes\Title.php(1125)|public function isMovable()|
|includes\Title.php(1135)|public function userCanRead()|
|includes\Title.php(1177)|public function isTalkPage()|
|includes\Title.php(1185)|public function isSubpage()|
|includes\Title.php(1199)|public function isCssJsSubpage()|
|includes\Title.php(1206)|public function isValidCssJsSubpage()|
|includes\Title.php(1217)|public function getSkinFromCssJsSubpage()|
|includes\Title.php(1226)|public function isCssSubpage()|
|includes\Title.php(1233)|public function isJsSubpage()|
|includes\Title.php(1243)|public function userCanEditCssJsSubpage()|
|includes\Title.php(1253)|public function isCascadeProtected()|
|includes\Title.php(1266)|public function getCascadeProtectionSources( $get_pages = true )|
|includes\Title.php(1353)|function areRestrictionsCascading()|
|includes\Title.php(1365)|private function loadRestrictionsFromRow( $res, $oldFashionedRestrictions = NULL )|
|includes\Title.php(1428)|public function loadRestrictions( $oldFashionedRestrictions = NULL )|
|includes\Title.php(1442)|static function purgeExpiredRestrictions()|
|includes\Title.php(1455)|public function getRestrictions( $action )|
|includes\Title.php(1472)|public function isDeleted()|
|includes\Title.php(1495)|public function getArticleID( $flags = 0 )|
|includes\Title.php(1509)|public function getLatestRevID()|
|includes\Title.php(1530)|public function resetArticleID( $newid )|
|includes\Title.php(1544)|public function invalidateCache()|
|includes\Title.php(1598)|private function secureAndSplit()|
|includes\Title.php(1790)|public function setFragment( $fragment )|
|includes\Title.php(1798)|public function getTalkPage()|
|includes\Title.php(1808)|public function getSubjectPage()|
|includes\Title.php(1822)|public function getLinksTo( $options = '', $table = 'pagelinks', $prefix = 'pl' )|
|includes\Title.php(1863)|public function getTemplateLinksTo( $options = '' )|
|includes\Title.php(1873)|public function getBrokenLinksFrom( $options = '' )|
|includes\Title.php(1911)|public function getSquidURLs()|
|includes\Title.php(1931)|public function purgeSquid()|
|includes\Title.php(1944)|public function moveNoAuth( &$nt )|
|includes\Title.php(1957)|public function isValidMoveOperation( &$nt, $auth = true )|
|includes\Title.php(2005)|public function moveTo( &$nt, $auth = true, $reason = '' )|
|includes\Title.php(2077)|private function moveOverExistingRedirect( &$nt, $reason = '' )|
|includes\Title.php(2154)|private function moveToNewTitle( &$nt, $reason = '' )|
|includes\Title.php(2225)|public function isValidMoveTarget( $nt )|
|includes\Title.php(2281)|public function getParentCategories()|
|includes\Title.php(2312)|public function getParentCategoryTree( $children = array() )|
|includes\Title.php(2340)|public function pageCond()|
|includes\Title.php(2350)|public function getPreviousRevisionID( $revision )|
|includes\Title.php(2363)|public function getNextRevisionID( $revision )|
|includes\Title.php(2377)|public function countRevisionsBetween( $old, $new )|
|includes\Title.php(2391)|public function equals( $title )|
|includes\Title.php(2402)|public function exists()|
|includes\Title.php(2412)|public function isAlwaysKnown()|
|includes\Title.php(2422)|public function touchLinks()|
|includes\Title.php(2435)|public function getTouched()|
|includes\Title.php(2446)|public function trackbackURL()|
|includes\Title.php(2453)|public function trackbackRDF()|
|includes\Title.php(2474)|public function getNamespaceKey()|
|includes\Title.php(2514)|public function isSpecial( $name )|
|includes\Title.php(2528)|public function fixSpecialName()|
|includes\Title.php(2548)|public function isContentPage()|
|includes\User.php(142)|function User()|
|includes\User.php(149)|function load()|
|includes\User.php(188)|function loadFromId()|
|includes\User.php(244)|static function newFromName( $name, $validate = 'valid' )|
|includes\User.php(260)|static function newFromId( $id )|
|includes\User.php(278)|static function newFromConfirmationCode( $code )|
|includes\User.php(298)|static function newFromSession()|
|includes\User.php(310)|static function whoIs( $id )|
|includes\User.php(321)|static function whoIsReal( $id )|
|includes\User.php(332)|static function idFromName( $name )|
|includes\User.php(365)|static function isIP( $name )|
|includes\User.php(378)|static function isIPv6($name)|
|includes\User.php(408)|static function isValidUserName( $name )|
|includes\User.php(454)|static function isUsableName( $name )|
|includes\User.php(477)|static function isCreatableName( $name )|
|includes\User.php(491)|function isValidPassword( $password )|
|includes\User.php(514)|static function isValidEmailAddr ( $addr )|
|includes\User.php(529)|static function getCanonicalName( $name, $validate = 'valid' )|
|includes\User.php(578)|static function edits( $uid )|
|includes\User.php(615)|static function randomPassword()|
|includes\User.php(635)|function loadDefaults( $name = false )|
|includes\User.php(668)|function SetupSession()|
|includes\User.php(677)|private function loadFromSession()|
|includes\User.php(741)|function loadFromDatabase()|
|includes\User.php(796)|function clearInstanceCache( $reloadFrom = false )|
|includes\User.php(819)|static function getDefaultOptions()|
|includes\User.php(848)|function getDefaultOption( $opt )|
|includes\User.php(861)|static function getToggles()|
|includes\User.php(876)|function getBlockedStatus( $bFromSlave = true )|
|includes\User.php(936)|function inSorbsBlacklist( $ip )|
|includes\User.php(943)|function inDnsBlacklist( $ip, $base )|
|includes\User.php(977)|public function isPingLimitable()|
|includes\User.php(992)|function pingLimiter( $action='edit' )|
|includes\User.php(1068)|function isBlocked( $bFromSlave = true ) { // hacked from false due to horrible probs on site|
|includes\User.php(1077)|function isBlockedFrom( $title, $bFromSlave = false )|
|includes\User.php(1098)|function blockedBy()|
|includes\User.php(1107)|function blockedFor()|
|includes\User.php(1115)|function getID() { |
|includes\User.php(1124)|function setID( $v )|
|includes\User.php(1132)|function getName()|
|includes\User.php(1158)|function setName( $str )|
|includes\User.php(1168)|function getTitleKey()|
|includes\User.php(1172)|function getNewtalk()|
|includes\User.php(1202)|function getNewMessageLinks()|
|includes\User.php(1225)|function checkNewtalk( $field, $id )|
|includes\User.php(1238)|function updateNewtalk( $field, $id )|
|includes\User.php(1258)|function deleteNewtalk( $field, $id )|
|includes\User.php(1275)|function setNewtalk( $val )|
|includes\User.php(1319)|private static function newTouchedTimestamp()|
|includes\User.php(1331)|private function clearSharedCache()|
|includes\User.php(1343)|function invalidateCache()|
|includes\User.php(1358)|function validateCache( $timestamp )|
|includes\User.php(1369)|function encryptPassword( $p )|
|includes\User.php(1388)|function setPassword( $str )|
|includes\User.php(1418)|function setInternalPassword( $str )|
|includes\User.php(1436)|function setToken( $token = false )|
|includes\User.php(1453)|function setCookiePassword( $str )|
|includes\User.php(1462)|function setNewpassword( $str, $throttle = true )|
|includes\User.php(1474)|function isPasswordReminderThrottled()|
|includes\User.php(1484)|function getEmail()|
|includes\User.php(1489)|function getEmailAuthenticationTimestamp()|
|includes\User.php(1494)|function setEmail( $str )|
|includes\User.php(1499)|function getRealName()|
|includes\User.php(1504)|function setRealName( $str )|
|includes\User.php(1514)|function getOption( $oname, $defaultOverride = '' )|
|includes\User.php(1535)|function getDatePreference()|
|includes\User.php(1552)|function getBoolOption( $oname )|
|includes\User.php(1562)|function getIntOption( $oname, $default=0 )|
|includes\User.php(1570)|function setOption( $oname, $val )|
|includes\User.php(1587)|function getRights()|
|includes\User.php(1599)|function getGroups()|
|includes\User.php(1611)|function getEffectiveGroups( $recache = false )|
|includes\User.php(1641)|function getEditCount()|
|includes\User.php(1659)|function addGroup( $group )|
|includes\User.php(1683)|function removeGroup( $group )|
|includes\User.php(1706)|function isLoggedIn()|
|includes\User.php(1716)|function isAnon()|
|includes\User.php(1724)|function isBot()|
|includes\User.php(1733)|function isAllowed($action='')|
|includes\User.php(1745)|function &getSkin()|
|includes\User.php(1768)|function isWatched( $title )|
|includes\User.php(1776)|function addWatch( $title )|
|includes\User.php(1785)|function removeWatch( $title )|
|includes\User.php(1796)|function clearNotification( &$title )|
|includes\User.php(1860)|function clearAllNotifications( $currentUser )|
|includes\User.php(1886)|function encodeOptions()|
|includes\User.php(1902)|function decodeOptions( $str )|
|includes\User.php(1913)|function setCookies()|
|includes\User.php(1937)|function logout()|
|includes\User.php(1954)|function saveSettings()|
|includes\User.php(1985)|function idForName()|
|includes\User.php(2013)|static function createNew( $name, $params = array() )|
|includes\User.php(2051)|function addToDatabase()|
|includes\User.php(2081)|function spreadBlock()|
|includes\User.php(2110)|function getPageRenderingHash()|
|includes\User.php(2139)|function isBlockedFromCreateAccount()|
|includes\User.php(2144)|function isAllowedToCreateAccount()|
|includes\User.php(2151)|function setLoaded( $loaded ) {}|
|includes\User.php(2159)|function getUserPage()|
|includes\User.php(2169)|function getTalkPage()|
|includes\User.php(2177)|function getMaxID()|
|includes\User.php(2193)|function isNewbie()|
|includes\User.php(2202)|function checkPassword( $password )|
|includes\User.php(2240)|function checkTemporaryPassword( $plaintext )|
|includes\User.php(2256)|function editToken( $salt = '' )|
|includes\User.php(2274)|function generateToken( $salt = '' )|
|includes\User.php(2290)|function matchEditToken( $val, $salt = '' )|
|includes\User.php(2305)|function sendConfirmationMail()|
|includes\User.php(2326)|function sendMail( $subject, $body, $from = null )|
|includes\User.php(2351)|function confirmationToken( &$expiration )|
|includes\User.php(2376)|function confirmationTokenUrl( &$expiration )|
|includes\User.php(2385)|function confirmEmail()|
|includes\User.php(2397)|function canSendEmail()|
|includes\User.php(2406)|function canReceiveEmail()|
|includes\User.php(2420)|function isEmailConfirmed()|
|includes\User.php(2441)|function isEmailConfirmationPending()|
|includes\User.php(2454)|static function getGroupPermissions( $groups )|
|includes\User.php(2471)|static function getGroupName( $group )|
|includes\User.php(2485)|static function getGroupMember( $group )|
|includes\User.php(2502)|static function getAllGroups()|
|includes\User.php(2515)|static function getGroupPage( $group )|
|includes\User.php(2533)|static function makeGroupLinkHTML( $group, $text = '' )|
|includes\User.php(2554)|static function makeGroupLinkWiki( $group, $text = '' )|
|includes\User.php(2571)|function incEditCount()|
|includes\UserMailer.php(30)|function wfRFC822Phrase( $phrase )|
|includes\UserMailer.php(45)|function __construct( $address, $name=null )|
|includes\UserMailer.php(59)|function toString()|
|includes\UserMailer.php(87)|function userMailer( $to, $from, $subject, $body, $replyto=null )|
|includes\UserMailer.php(172)|function mailErrorHandler( $code, $string )|
|includes\UserMailer.php(215)|function notifyOnPageChange(&$title, $timestamp, $summary, $minorEdit, $oldid=false)|
|includes\UserMailer.php(324)|function composeCommonMailtext()|
|includes\UserMailer.php(421)|function composeAndSendPersonalisedMail( $watchingUser )|
|includes\WatchedItem.php(17)|function &fromUserTitle( &$user, &$title )|
|includes\WatchedItem.php(35)|function isWatched()|
|includes\WatchedItem.php(50)|function addWatch()|
|includes\WatchedItem.php(79)|function removeWatch()|
|includes\WatchedItem.php(121)|function duplicateEntries( $ot, $nt )|
|includes\WatchedItem.php(130)|function doDuplicateEntries( $ot, $nt )|
|includes\WebRequest.php(45)|function __construct()|
|includes\WebRequest.php(69)|function &fix_magic_quotes( &$arr )|
|includes\WebRequest.php(87)|function checkMagicQuotes()|
|includes\WebRequest.php(104)|function normalizeUnicode( $data )|
|includes\WebRequest.php(124)|function getGPCVal( $arr, $name, $default )|
|includes\WebRequest.php(151)|function getVal( $name, $default = NULL )|
|includes\WebRequest.php(172)|function getArray( $name, $default = NULL )|
|includes\WebRequest.php(191)|function getIntArray( $name, $default = NULL )|
|includes\WebRequest.php(207)|function getInt( $name, $default = 0 )|
|includes\WebRequest.php(218)|function getIntOrNull( $name )|
|includes\WebRequest.php(233)|function getBool( $name, $default = false )|
|includes\WebRequest.php(244)|function getCheck( $name )|
|includes\WebRequest.php(263)|function getText( $name, $default = '' )|
|includes\WebRequest.php(275)|function getValues()|
|includes\WebRequest.php(300)|function wasPosted()|
|includes\WebRequest.php(315)|function checkSessionCookie()|
|includes\WebRequest.php(323)|function getRequestURL()|
|includes\WebRequest.php(358)|function getFullRequestURL()|
|includes\WebRequest.php(368)|function appendQuery( $query )|
|includes\WebRequest.php(393)|function escapeAppendQuery( $query )|
|includes\WebRequest.php(406)|function getLimitOffset( $deflimit = 50, $optionname = 'rclimit' )|
|includes\WebRequest.php(428)|function getFileTempname( $key )|
|includes\WebRequest.php(440)|function getFileSize( $key )|
|includes\WebRequest.php(452)|function getUploadError( $key )|
|includes\WebRequest.php(470)|function getFileName( $key )|
|includes\WebRequest.php(488)|function response()|
|includes\WebRequest.php(506)|function FauxRequest( $data, $wasPosted = false )|
|includes\WebRequest.php(515)|function getVal( $name, $default = NULL )|
|includes\WebRequest.php(519)|function getText( $name, $default = '' )|
|includes\WebRequest.php(524)|function getValues()|
|includes\WebRequest.php(528)|function wasPosted()|
|includes\WebRequest.php(532)|function checkSessionCookie()|
|includes\WebRequest.php(536)|function getRequestURL()|
|includes\WebRequest.php(540)|function appendQuery( $query )|
|includes\WebResponse.php(9)|function header($string, $replace=true)|
|includes\WebResponse.php(14)|function setcookie($name, $value, $expire)|
|includes\Wiki.php(12)|function __construct()|
|includes\Wiki.php(20)|function setVal( $key, &$value )|
|includes\Wiki.php(29)|function getVal( $key, $default = '' )|
|includes\Wiki.php(41)|function initialize ( &$title, &$output, &$user, $request)|
|includes\Wiki.php(59)|function checkMaxLag( $maxLag )|
|includes\Wiki.php(79)|function checkInitialQueries( $title,$action,&$output,$request, $lang)|
|includes\Wiki.php(107)|function preliminaryChecks ( &$title, &$output, $request )|
|includes\Wiki.php(134)|function initializeSpecialCases ( &$title, &$output, $request )|
|includes\Wiki.php(212)|function articleFromTitle( $title )|
|includes\Wiki.php(242)|function initializeArticle( $title, $request )|
|includes\Wiki.php(289)|function finalCleanup ( &$deferredUpdates, &$loadBalancer, &$output )|
|includes\Wiki.php(305)|function doUpdates ( &$updates )|
|includes\Wiki.php(322)|function doJobs()|
|includes\Wiki.php(356)|function restInPeace ( &$loadBalancer )|
|includes\Wiki.php(365)|function performAction( &$output, &$article, &$title, &$user, &$request )|
|includes\WikiError.php(33)|function __construct( $message )|
|includes\WikiError.php(40)|function getMessage()|
|includes\WikiError.php(49)|function toString()|
|includes\WikiError.php(61)|public static function isError( $object )|
|includes\WikiError.php(75)|function WikiErrorMsg( $message/*, ... */ )|
|includes\WikiError.php(91)|function WikiXmlError( $parser, $message = 'XML parsing error', $context = null, $offset = 0 )|
|includes\WikiError.php(103)|function getMessage()|
|includes\WikiError.php(113)|function _extractContext( $context, $offset )|
|includes\Xml.php(19)|public static function element( $element, $attribs = null, $contents = '')|
|includes\Xml.php(48)|public static function elementClean( $element, $attribs = array(), $contents = '')|
|includes\Xml.php(61)|public static function openElement( $element, $attribs = null ) { return self::element( $element, $attribs, null ); }|
|includes\Xml.php(62)|public static function closeElement( $element ) { return "</$element>"; }|
|includes\Xml.php(68)|public static function tags( $element, $attribs = null, $contents )|
|includes\Xml.php(80)|public static function namespaceSelector($selected = '', $allnamespaces = null, $includehidden=false)|
|includes\Xml.php(113)|public static function span( $text, $class, $attribs=array() )|
|includes\Xml.php(121)|public static function input( $name, $size=false, $value=false, $attribs=array() )|
|includes\Xml.php(132)|public static function attrib( $name, $present = true )|
|includes\Xml.php(140)|public static function check( $name, $checked=false, $attribs=array() )|
|includes\Xml.php(154)|public static function radio( $name, $value, $checked=false, $attribs=array() )|
|includes\Xml.php(165)|public static function label( $label, $id )|
|includes\Xml.php(173)|public static function inputLabel( $label, $name, $id, $size=false, $value=false, $attribs=array() )|
|includes\Xml.php(183)|public static function checkLabel( $label, $name, $id, $checked=false, $attribs=array() )|
|includes\Xml.php(193)|public static function radioLabel( $label, $name, $value, $id, $checked=false, $attribs=array() )|
|includes\Xml.php(205)|public static function submitButton( $value, $attribs=array() )|
|includes\Xml.php(217)|public static function hidden( $name, $value, $attribs=array() )|
|includes\Xml.php(232)|public static function option( $text, $value=null, $selected=false,|
|includes\Xml.php(251)|public static function escapeJsString( $string )|
|includes\Xml.php(274)|public static function encodeJsVar( $value )|
|includes\Xml.php(306)|public static function isWellFormed( $text )|
|includes\Xml.php(332)|public static function isWellFormedXmlFragment( $text )|
|includes\Xml.php(348)|public static function escapeTagsOnly( $in )|
|includes\XmlFunctions.php(6)|function wfElement( $element, $attribs = null, $contents = '')|
|includes\XmlFunctions.php(9)|function wfElementClean( $element, $attribs = array(), $contents = '')|
|includes\XmlFunctions.php(12)|function wfOpenElement( $element, $attribs = null )|
|includes\XmlFunctions.php(15)|function wfCloseElement( $element )|
|includes\XmlFunctions.php(18)|function HTMLnamespaceselector($selected = '', $allnamespaces = null, $includehidden=false)|
|includes\XmlFunctions.php(21)|function wfSpan( $text, $class, $attribs=array() )|
|includes\XmlFunctions.php(24)|function wfInput( $name, $size=false, $value=false, $attribs=array() )|
|includes\XmlFunctions.php(27)|function wfAttrib( $name, $present = true )|
|includes\XmlFunctions.php(30)|function wfCheck( $name, $checked=false, $attribs=array() )|
|includes\XmlFunctions.php(33)|function wfRadio( $name, $value, $checked=false, $attribs=array() )|
|includes\XmlFunctions.php(36)|function wfLabel( $label, $id )|
|includes\XmlFunctions.php(39)|function wfInputLabel( $label, $name, $id, $size=false, $value=false, $attribs=array() )|
|includes\XmlFunctions.php(42)|function wfCheckLabel( $label, $name, $id, $checked=false, $attribs=array() )|
|includes\XmlFunctions.php(45)|function wfRadioLabel( $label, $name, $value, $id, $checked=false, $attribs=array() )|
|includes\XmlFunctions.php(48)|function wfSubmitButton( $value, $attribs=array() )|
|includes\XmlFunctions.php(51)|function wfHidden( $name, $value, $attribs=array() )|
|includes\XmlFunctions.php(54)|function wfEscapeJsString( $string )|
|includes\XmlFunctions.php(57)|function wfIsWellFormedXml( $text )|
|includes\XmlFunctions.php(60)|function wfIsWellFormedXmlFragment( $text )|
|includes\ZhClient.php(17)|function ZhClient($host, $port)|
|includes\ZhClient.php(28)|function isconnected()|
|includes\ZhClient.php(37)|function connect()|
|includes\ZhClient.php(53)|function query($request)|
|includes\ZhClient.php(88)|function convert($text, $tolang)|
|includes\ZhClient.php(104)|function convertToAllVariants($text)|
|includes\ZhClient.php(128)|function segment($text)|
|includes\ZhClient.php(143)|function close()|


**includes\api [#r35e4beb]
|includes\api\ApiBase.php(51)|public function __construct($mainModule, $moduleName, $paramPrefix = '')|
|includes\api\ApiBase.php(60)|public abstract function execute();|
|includes\api\ApiBase.php(65)|public function getModuleName()|
|includes\api\ApiBase.php(72)|public function getModuleProfileName($db = false)|
|includes\api\ApiBase.php(82)|public function getMain()|
|includes\api\ApiBase.php(89)|public function isMain()|
|includes\api\ApiBase.php(96)|public function getResult()|
|includes\api\ApiBase.php(107)|public function & getResultData()|
|includes\api\ApiBase.php(116)|public function getCustomPrinter()|
|includes\api\ApiBase.php(123)|public function makeHelpMsg()|
|includes\api\ApiBase.php(174)|public function makeHelpMsgParameters()|
|includes\api\ApiBase.php(217)|protected function getDescription()|
|includes\api\ApiBase.php(224)|protected function getExamples()|
|includes\api\ApiBase.php(231)|protected function getAllowedParams()|
|includes\api\ApiBase.php(238)|protected function getParamDescription()|
|includes\api\ApiBase.php(246)|public function encodeParamName($paramName)|
|includes\api\ApiBase.php(255)|public function extractRequestParams()|
|includes\api\ApiBase.php(268)|protected function getParameter($paramName)|
|includes\api\ApiBase.php(274)|public static function getValidNamespaces()|
|includes\api\ApiBase.php(293)|protected function getParameterFromSettings($paramName, $paramSettings)|
|includes\api\ApiBase.php(389)|protected function parseMultiValue($valueName, $value, $allowMultiple, $allowedValues)|
|includes\api\ApiBase.php(408)|function validateLimit($varname, $value, $min, $max, $botMax)|
|includes\api\ApiBase.php(426)|public function dieUsage($description, $errorCode, $httpRespCode = 0)|
|includes\api\ApiBase.php(433)|protected static function dieDebug($method, $message)|
|includes\api\ApiBase.php(445)|public function profileIn()|
|includes\api\ApiBase.php(455)|public function profileOut()|
|includes\api\ApiBase.php(470)|public function safeProfileOut()|
|includes\api\ApiBase.php(481)|public function getProfileTime()|
|includes\api\ApiBase.php(495)|public function profileDBIn()|
|includes\api\ApiBase.php(507)|public function profileDBOut()|
|includes\api\ApiBase.php(524)|public function getProfileDBTime()|
|includes\api\ApiBase.php(530)|public abstract function getVersion();|
|includes\api\ApiBase.php(532)|public static function getBaseVersion()|
|includes\api\ApiFeedWatchlist.php(36)|public function __construct($main, $action)|
|includes\api\ApiFeedWatchlist.php(40)|public function getCustomPrinter()|
|includes\api\ApiFeedWatchlist.php(44)|public function execute()|
|includes\api\ApiFeedWatchlist.php(83)|private function createFeedItem($info)|
|includes\api\ApiFeedWatchlist.php(96)|protected function getAllowedParams()|
|includes\api\ApiFeedWatchlist.php(107)|protected function getParamDescription()|
|includes\api\ApiFeedWatchlist.php(113)|protected function getDescription()|
|includes\api\ApiFeedWatchlist.php(117)|protected function getExamples()|
|includes\api\ApiFeedWatchlist.php(123)|public function getVersion()|
|includes\api\ApiFormatBase.php(41)|public function __construct($main, $format)|
|includes\api\ApiFormatBase.php(57)|public abstract function getMimeType();|
|includes\api\ApiFormatBase.php(59)|public function getNeedsRawData()|
|includes\api\ApiFormatBase.php(68)|public function getIsHtml()|
|includes\api\ApiFormatBase.php(77)|function initPrinter($isError)|
|includes\api\ApiFormatBase.php(123)|public function closePrinter()|
|includes\api\ApiFormatBase.php(136)|public function printText($text)|
|includes\api\ApiFormatBase.php(147)|protected function formatHTML($text)|
|includes\api\ApiFormatBase.php(166)|protected function getExamples()|
|includes\api\ApiFormatBase.php(170)|protected function getDescription()|
|includes\api\ApiFormatBase.php(174)|public static function getBaseVersion()|
|includes\api\ApiFormatBase.php(185)|public function __construct($main)|
|includes\api\ApiFormatBase.php(192)|public static function setResult($result, $feed, $feedItems)|
|includes\api\ApiFormatBase.php(203)|public function getMimeType()|
|includes\api\ApiFormatBase.php(210)|public function getNeedsRawData()|
|includes\api\ApiFormatBase.php(214)|public function execute()|
|includes\api\ApiFormatBase.php(231)|public function getVersion()|
|includes\api\ApiFormatJson.php(38)|public function __construct($main, $format)|
|includes\api\ApiFormatJson.php(43)|public function getMimeType()|
|includes\api\ApiFormatJson.php(47)|public function getNeedsRawData()|
|includes\api\ApiFormatJson.php(51)|public function execute()|
|includes\api\ApiFormatJson.php(60)|protected function getDescription()|
|includes\api\ApiFormatJson.php(67)|public function getVersion()|
|includes\api\ApiFormatJson_json.php(134)|    function Services_JSON($use = 0)|
|includes\api\ApiFormatJson_json.php(150)|    function utf162utf8($utf16)|
|includes\api\ApiFormatJson_json.php(194)|    function utf82utf16($utf8)|
|includes\api\ApiFormatJson_json.php(239)|    function encode($var, $pretty=false)|
|includes\api\ApiFormatJson_json.php(258)|    function encode2($var)|
|includes\api\ApiFormatJson_json.php(471)|    function name_value($name, $value)|
|includes\api\ApiFormatJson_json.php(490)|    function reduce_string($str)|
|includes\api\ApiFormatJson_json.php(521)|    function decode($str)|
|includes\api\ApiFormatJson_json.php(802)|    function isError($data, $code = null)|
|includes\api\ApiFormatJson_json.php(822)|        function Services_JSON_Error($message = 'unknown error', $code = null,|
|includes\api\ApiFormatJson_json.php(837)|        function Services_JSON_Error($message = 'unknown error', $code = null,|
|includes\api\ApiFormatPhp.php(36)|public function __construct($main, $format)|
|includes\api\ApiFormatPhp.php(40)|public function getMimeType()|
|includes\api\ApiFormatPhp.php(44)|public function execute()|
|includes\api\ApiFormatPhp.php(48)|protected function getDescription()|
|includes\api\ApiFormatPhp.php(52)|public function getVersion()|
|includes\api\ApiFormatWddx.php(36)|public function __construct($main, $format)|
|includes\api\ApiFormatWddx.php(40)|public function getMimeType()|
|includes\api\ApiFormatWddx.php(44)|public function execute()|
|includes\api\ApiFormatWddx.php(58)|function slowWddxPrinter($elemValue)|
|includes\api\ApiFormatWddx.php(83)|protected function getDescription()|
|includes\api\ApiFormatWddx.php(87)|public function getVersion()|
|includes\api\ApiFormatXml.php(38)|public function __construct($main, $format)|
|includes\api\ApiFormatXml.php(42)|public function getMimeType()|
|includes\api\ApiFormatXml.php(46)|public function getNeedsRawData()|
|includes\api\ApiFormatXml.php(50)|public function setRootElement($rootElemName)|
|includes\api\ApiFormatXml.php(54)|public function execute()|
|includes\api\ApiFormatXml.php(72)|function recXmlPrint($elemName, $elemValue, $indent)|
|includes\api\ApiFormatXml.php(139)|protected function getDescription()|
|includes\api\ApiFormatXml.php(143)|public function getVersion()|
|includes\api\ApiFormatYaml.php(36)|public function __construct($main, $format)|
|includes\api\ApiFormatYaml.php(40)|public function getMimeType()|
|includes\api\ApiFormatYaml.php(44)|public function execute()|
|includes\api\ApiFormatYaml.php(48)|protected function getDescription()|
|includes\api\ApiFormatYaml.php(52)|public function getVersion()|
|includes\api\ApiFormatYaml_spyc.php(44)|    function YAMLNode()|
|includes\api\ApiFormatYaml_spyc.php(80)|    function YAMLLoad($input)|
|includes\api\ApiFormatYaml_spyc.php(106)|    public static function YAMLDump($array,$indent = false,$wordwrap = false)|
|includes\api\ApiFormatYaml_spyc.php(126)|    function load($input)|
|includes\api\ApiFormatYaml_spyc.php(301)|    function dump($array,$indent = false,$wordwrap = false)|
|includes\api\ApiFormatYaml_spyc.php(354)|    function _yamlize($key,$value,$indent)|
|includes\api\ApiFormatYaml_spyc.php(377)|    function _yamlizeArray($array,$indent)|
|includes\api\ApiFormatYaml_spyc.php(397)|    function _dumpNode($key,$value,$indent)|
|includes\api\ApiFormatYaml_spyc.php(424)|    function _doLiteralBlock($value,$indent)|
|includes\api\ApiFormatYaml_spyc.php(441)|    function _doFolding($value,$indent)|
|includes\api\ApiFormatYaml_spyc.php(464)|    function _getIndent($line)|
|includes\api\ApiFormatYaml_spyc.php(481)|    function _parseLine($line)|
|includes\api\ApiFormatYaml_spyc.php(532)|    function _toType($value)|
|includes\api\ApiFormatYaml_spyc.php(593)|    function _inlineEscape($inline)|
|includes\api\ApiFormatYaml_spyc.php(665)|    function _buildArray()|
|includes\api\ApiFormatYaml_spyc.php(690)|    function _linkReferences()|
|includes\api\ApiFormatYaml_spyc.php(709)|    function _linkRef(&$n,$key,$k = NULL,$v = NULL)|
|includes\api\ApiFormatYaml_spyc.php(745)|    function _gatherChildren($nid)|
|includes\api\ApiFormatYaml_spyc.php(769)|    function _nodeArrayizeData(&$node)|
|includes\api\ApiFormatYaml_spyc.php(799)|    function _makeReferences(&$z)|
|includes\api\ApiFormatYaml_spyc.php(830)|    function _array_kmerge($arr1,$arr2) { |
|includes\api\ApiHelp.php(36)|public function __construct($main, $action)|
|includes\api\ApiHelp.php(43)|public function execute()|
|includes\api\ApiHelp.php(47)|protected function getDescription()|
|includes\api\ApiHelp.php(53)|public function getVersion()|
|includes\api\ApiLogin.php(36)|public function __construct($main, $action)|
|includes\api\ApiLogin.php(40)|public function execute()|
|includes\api\ApiLogin.php(92)|protected function getAllowedParams()|
|includes\api\ApiLogin.php(100)|protected function getParamDescription()|
|includes\api\ApiLogin.php(108)|protected function getDescription()|
|includes\api\ApiLogin.php(114)|protected function getExamples()|
|includes\api\ApiLogin.php(120)|public function getVersion()|
|includes\api\ApiMain.php(78)|public function __construct($request, $enableWrite = false)|
|includes\api\ApiMain.php(99)|public function & getRequest()|
|includes\api\ApiMain.php(103)|public function getResult()|
|includes\api\ApiMain.php(107)|public function requestWriteMode()|
|includes\api\ApiMain.php(113)|public function setCacheMaxAge($maxage)|
|includes\api\ApiMain.php(117)|public function createPrinterByName($format)|
|includes\api\ApiMain.php(121)|public function execute()|
|includes\api\ApiMain.php(130)|protected function executeActionWithErrorHandling()|
|includes\api\ApiMain.php(202)|protected function executeAction()|
|includes\api\ApiMain.php(237)|protected function printResult($isError)|
|includes\api\ApiMain.php(246)|protected function getAllowedParams()|
|includes\api\ApiMain.php(260)|protected function getParamDescription()|
|includes\api\ApiMain.php(268)|protected function getDescription()|
|includes\api\ApiMain.php(282)|protected function getCredits()|
|includes\api\ApiMain.php(292)|public function makeHelpMsg()|
|includes\api\ApiMain.php(325)|public function isBot()|
|includes\api\ApiMain.php(333)|public function getShowVersions()|
|includes\api\ApiMain.php(337)|public function getVersion()|
|includes\api\ApiMain.php(356)|public function __construct($message, $codestr, $code = 0)|
|includes\api\ApiMain.php(360)|public function getCodeString()|
|includes\api\ApiMain.php(363)|public function __toString()|
|includes\api\ApiOpenSearch.php(36)|public function __construct($main, $action)|
|includes\api\ApiOpenSearch.php(40)|public function getCustomPrinter()|
|includes\api\ApiOpenSearch.php(44)|public function execute()|
|includes\api\ApiOpenSearch.php(85)|protected function getAllowedParams()|
|includes\api\ApiOpenSearch.php(91)|protected function getParamDescription()|
|includes\api\ApiOpenSearch.php(97)|protected function getDescription()|
|includes\api\ApiOpenSearch.php(101)|protected function getExamples()|
|includes\api\ApiOpenSearch.php(107)|public function getVersion()|
|includes\api\ApiPageSet.php(43)|public function __construct($query, $resolveRedirects = false)|
|includes\api\ApiPageSet.php(62)|public function isResolvingRedirects()|
|includes\api\ApiPageSet.php(66)|public function requestField($fieldName)|
|includes\api\ApiPageSet.php(70)|public function getCustomField($fieldName)|
|includes\api\ApiPageSet.php(77)|public function getPageTableFields()|
|includes\api\ApiPageSet.php(98)|public function getTitles()|
|includes\api\ApiPageSet.php(105)|public function getTitleCount()|
|includes\api\ApiPageSet.php(113)|public function getGoodTitles()|
|includes\api\ApiPageSet.php(120)|public function getGoodTitleCount()|
|includes\api\ApiPageSet.php(128)|public function getMissingTitles()|
|includes\api\ApiPageSet.php(136)|public function getMissingPageIDs()|
|includes\api\ApiPageSet.php(144)|public function getRedirectTitles()|
|includes\api\ApiPageSet.php(153)|public function getNormalizedTitles()|
|includes\api\ApiPageSet.php(161)|public function getRevisionIDs()|
|includes\api\ApiPageSet.php(169)|public function getMissingRevisionIDs()|
|includes\api\ApiPageSet.php(176)|public function getRevisionCount()|
|includes\api\ApiPageSet.php(183)|public function execute()|
|includes\api\ApiPageSet.php(225)|public function populateFromTitles($titles)|
|includes\api\ApiPageSet.php(234)|public function populateFromPageIDs($pageIDs)|
|includes\api\ApiPageSet.php(244)|public function populateFromQueryResult($db, $queryResult)|
|includes\api\ApiPageSet.php(253)|public function populateFromRevisionIDs($revIDs)|
|includes\api\ApiPageSet.php(263)|public function processDbRow($row)|
|includes\api\ApiPageSet.php(286)|public function finishPageSetGeneration()|
|includes\api\ApiPageSet.php(306)|private function initFromTitles($titles)|
|includes\api\ApiPageSet.php(328)|private function initFromPageIds($pageids)|
|includes\api\ApiPageSet.php(361)|private function initFromQueryResult($db, $res, &$remaining = null, $processTitles = null)|
|includes\api\ApiPageSet.php(406)|private function initFromRevIDs($revids)|
|includes\api\ApiPageSet.php(440)|private function resolvePendingRedirects()|
|includes\api\ApiPageSet.php(472)|private function getRedirectTargets()|
|includes\api\ApiPageSet.php(544)|private function processTitlesStrArray($titles)|
|includes\api\ApiPageSet.php(572)|protected function getAllowedParams()|
|includes\api\ApiPageSet.php(588)|protected function getParamDescription()|
|includes\api\ApiPageSet.php(596)|public function getVersion()|
|includes\api\ApiQuery.php(73)|public function __construct($main, $action)|
|includes\api\ApiQuery.php(84)|public function getDB()|
|includes\api\ApiQuery.php(93)|public function getPageSet()|
|includes\api\ApiQuery.php(107)|public function execute()|
|includes\api\ApiQuery.php(160)|private function outputGeneralPageInfo()|
|includes\api\ApiQuery.php(241)|protected function executeGeneratorModule($generatorName, $redirects)|
|includes\api\ApiQuery.php(278)|protected function getAllowedParams()|
|includes\api\ApiQuery.php(302)|public function makeHelpMsg()|
|includes\api\ApiQuery.php(322)|private function makeHelpMsgHelper($moduleList, $paramName)|
|includes\api\ApiQuery.php(343)|public function makeHelpMsgParameters()|
|includes\api\ApiQuery.php(348)|protected function getParamDescription()|
|includes\api\ApiQuery.php(358)|protected function getDescription()|
|includes\api\ApiQuery.php(366)|protected function getExamples()|
|includes\api\ApiQuery.php(372)|public function getVersion()|
|includes\api\ApiQueryAllpages.php(36)|public function __construct($query, $moduleName)|
|includes\api\ApiQueryAllpages.php(40)|public function execute()|
|includes\api\ApiQueryAllpages.php(44)|public function executeGenerator($resultPageSet)|
|includes\api\ApiQueryAllpages.php(51)|private function run($resultPageSet = null)|
|includes\api\ApiQueryAllpages.php(118)|protected function getAllowedParams()|
|includes\api\ApiQueryAllpages.php(144)|protected function getParamDescription()|
|includes\api\ApiQueryAllpages.php(154)|protected function getDescription()|
|includes\api\ApiQueryAllpages.php(158)|protected function getExamples()|
|includes\api\ApiQueryAllpages.php(171)|public function getVersion()|
|includes\api\ApiQueryBacklinks.php(57)|public function __construct($query, $moduleName)|
|includes\api\ApiQueryBacklinks.php(87)|public function execute()|
|includes\api\ApiQueryBacklinks.php(91)|public function executeGenerator($resultPageSet)|
|includes\api\ApiQueryBacklinks.php(95)|private function run($resultPageSet = null)|
|includes\api\ApiQueryBacklinks.php(181)|protected function processContinue($continue, $redirect)|
|includes\api\ApiQueryBacklinks.php(202)|protected function parseContinueParam($continue, $redirect)|
|includes\api\ApiQueryBacklinks.php(281)|protected function getContinueStr($lastPageID)|
|includes\api\ApiQueryBacklinks.php(287)|protected function getContinueRedirStr($isRedirPhase, $level, $ns, $title, $lastPageID)|
|includes\api\ApiQueryBacklinks.php(296)|protected function getAllowedParams()|
|includes\api\ApiQueryBacklinks.php(315)|protected function getParamDescription()|
|includes\api\ApiQueryBacklinks.php(324)|protected function getDescription()|
|includes\api\ApiQueryBacklinks.php(337)|protected function getExamples()|
|includes\api\ApiQueryBacklinks.php(356)|public function getVersion()|
|includes\api\ApiQueryBase.php(38)|public function __construct($query, $moduleName, $paramPrefix = '')|
|includes\api\ApiQueryBase.php(44)|protected function resetQueryParams()|
|includes\api\ApiQueryBase.php(51)|protected function addTables($value)|
|includes\api\ApiQueryBase.php(58)|protected function addFields($value)|
|includes\api\ApiQueryBase.php(65)|protected function addFieldsIf($value, $condition)|
|includes\api\ApiQueryBase.php(73)|protected function addWhere($value)|
|includes\api\ApiQueryBase.php(80)|protected function addWhereIf($value, $condition)|
|includes\api\ApiQueryBase.php(88)|protected function addWhereFld($field, $value)|
|includes\api\ApiQueryBase.php(93)|protected function addWhereRange($field, $dir, $start, $end)|
|includes\api\ApiQueryBase.php(108)|protected function addOption($name, $value = null)|
|includes\api\ApiQueryBase.php(115)|protected function select($method)|
|includes\api\ApiQueryBase.php(127)|protected function addRowInfo($prefix, $row)|
|includes\api\ApiQueryBase.php(282)|private static function addRowInfo_title($row, $nsfld, $titlefld)|
|includes\api\ApiQueryBase.php(296)|public function requestExtraData()|
|includes\api\ApiQueryBase.php(302)|public function getQuery()|
|includes\api\ApiQueryBase.php(306)|protected function setContinueEnumParameter($paramName, $paramValue)|
|includes\api\ApiQueryBase.php(316)|protected function getDB()|
|includes\api\ApiQueryBase.php(324)|protected function getPageSet()|
|includes\api\ApiQueryBase.php(333)|public static function titleToKey($title)|
|includes\api\ApiQueryBase.php(337)|public static function keyToTitle($key)|
|includes\api\ApiQueryBase.php(341)|public static function getBaseVersion()|
|includes\api\ApiQueryBase.php(353)|public function __construct($query, $moduleName, $paramPrefix = '')|
|includes\api\ApiQueryBase.php(358)|public function setGeneratorMode()|
|includes\api\ApiQueryBase.php(365)|public function encodeParamName($paramName)|
|includes\api\ApiQueryBase.php(376)|public abstract function executeGenerator($resultPageSet);|
|includes\api\ApiQueryInfo.php(36)|public function __construct($query, $moduleName)|
|includes\api\ApiQueryInfo.php(40)|public function requestExtraData()|
|includes\api\ApiQueryInfo.php(47)|public function execute()|
|includes\api\ApiQueryInfo.php(73)|protected function getDescription()|
|includes\api\ApiQueryInfo.php(77)|protected function getExamples()|
|includes\api\ApiQueryInfo.php(83)|public function getVersion()|
|includes\api\ApiQueryLogEvents.php(36)|public function __construct($query, $moduleName)|
|includes\api\ApiQueryLogEvents.php(40)|public function execute()|
|includes\api\ApiQueryLogEvents.php(107)|protected function getAllowedParams()|
|includes\api\ApiQueryLogEvents.php(149)|protected function getParamDescription()|
|includes\api\ApiQueryLogEvents.php(161)|protected function getDescription()|
|includes\api\ApiQueryLogEvents.php(165)|protected function getExamples()|
|includes\api\ApiQueryLogEvents.php(171)|public function getVersion()|
|includes\api\ApiQueryRecentChanges.php(36)|public function __construct($query, $moduleName)|
|includes\api\ApiQueryRecentChanges.php(40)|public function execute()|
|includes\api\ApiQueryRecentChanges.php(112)|protected function getAllowedParams()|
|includes\api\ApiQueryRecentChanges.php(160)|protected function getParamDescription()|
|includes\api\ApiQueryRecentChanges.php(175)|protected function getDescription()|
|includes\api\ApiQueryRecentChanges.php(179)|protected function getExamples()|
|includes\api\ApiQueryRecentChanges.php(185)|public function getVersion()|
|includes\api\ApiQueryRevisions.php(36)|public function __construct($query, $moduleName)|
|includes\api\ApiQueryRevisions.php(40)|public function execute()|
|includes\api\ApiQueryRevisions.php(191)|protected function getAllowedParams()|
|includes\api\ApiQueryRevisions.php(230)|protected function getParamDescription()|
|includes\api\ApiQueryRevisions.php(242)|protected function getDescription()|
|includes\api\ApiQueryRevisions.php(253)|protected function getExamples()|
|includes\api\ApiQueryRevisions.php(266)|public function getVersion()|
|includes\api\ApiQuerySiteinfo.php(36)|public function __construct($query, $moduleName)|
|includes\api\ApiQuerySiteinfo.php(40)|public function execute()|
|includes\api\ApiQuerySiteinfo.php(83)|protected function getAllowedParams()|
|includes\api\ApiQuerySiteinfo.php(96)|protected function getParamDescription()|
|includes\api\ApiQuerySiteinfo.php(106)|protected function getDescription()|
|includes\api\ApiQuerySiteinfo.php(110)|protected function getExamples()|
|includes\api\ApiQuerySiteinfo.php(114)|public function getVersion()|
|includes\api\ApiQueryUserContributions.php(36)|public function __construct($query, $moduleName)|
|includes\api\ApiQueryUserContributions.php(40)|public function execute()|
|includes\api\ApiQueryUserContributions.php(127)|protected function getAllowedParams()|
|includes\api\ApiQueryUserContributions.php(153)|protected function getParamDescription()|
|includes\api\ApiQueryUserContributions.php(163)|protected function getDescription()|
|includes\api\ApiQueryUserContributions.php(167)|protected function getExamples()|
|includes\api\ApiQueryUserContributions.php(173)|public function getVersion()|
|includes\api\ApiQueryWatchlist.php(36)|public function __construct($query, $moduleName)|
|includes\api\ApiQueryWatchlist.php(40)|public function execute()|
|includes\api\ApiQueryWatchlist.php(44)|public function executeGenerator($resultPageSet)|
|includes\api\ApiQueryWatchlist.php(48)|private function run($resultPageSet = null)|
|includes\api\ApiQueryWatchlist.php(168)|protected function getAllowedParams()|
|includes\api\ApiQueryWatchlist.php(207)|protected function getParamDescription()|
|includes\api\ApiQueryWatchlist.php(219)|protected function getDescription()|
|includes\api\ApiQueryWatchlist.php(223)|protected function getExamples()|
|includes\api\ApiQueryWatchlist.php(232)|public function getVersion()|
|includes\api\ApiResult.php(41)|public function __construct($main)|
|includes\api\ApiResult.php(47)|public function reset()|
|includes\api\ApiResult.php(55)|public function setRawMode()|
|includes\api\ApiResult.php(59)|public function getIsRawMode()|
|includes\api\ApiResult.php(63)|public function & getData()|
|includes\api\ApiResult.php(71)|public static function setElement(& $arr, $name, $value)|
|includes\api\ApiResult.php(94)|public static function setContent(& $arr, $value, $subElemName = null)|
|includes\api\ApiResult.php(115)|public function setIndexedTagName(& $arr, $tag)|
|includes\api\ApiResult.php(130)|public function addValue($path, $name, $value)|
|includes\api\ApiResult.php(151)|public function execute()|
|includes\api\ApiResult.php(155)|public function getVersion()|
|includes\cbt\CBTCompiler.php(47)|function CBTOp( $opcode, $arg1, $arg2 )|
|includes\cbt\CBTCompiler.php(53)|function name()|
|includes\cbt\CBTCompiler.php(69)|function CBTCompiler( $text )|
|includes\cbt\CBTCompiler.php(77)|function compile()|
|includes\cbt\CBTCompiler.php(110)|function doText( $start, $end )|
|includes\cbt\CBTCompiler.php(114)|function phpQuote( $text )|
|includes\cbt\CBTCompiler.php(118)|function op( $opcode, $arg1 = null, $arg2 = null)|
|includes\cbt\CBTCompiler.php(135)|function doOpenText( &$p, $end, $needClosing = true )|
|includes\cbt\CBTCompiler.php(213)|function doOpenFunction( &$p, $end, $needClosing = true )|
|includes\cbt\CBTCompiler.php(260)|function error( $text, $pos = false )|
|includes\cbt\CBTCompiler.php(269)|function getLastError()|
|includes\cbt\CBTCompiler.php(273)|function opsToString()|
|includes\cbt\CBTCompiler.php(288)|function generatePHP( $functionObj )|
|includes\cbt\CBTProcessor.php(20)|function wfProfileIn() {}|
|includes\cbt\CBTProcessor.php(23)|function wfProfileOut() {}|
|includes\cbt\CBTProcessor.php(29)|function cbt_escape( $text )|
|includes\cbt\CBTProcessor.php(36)|function cbt_value( $text = '', $deps = array(), $isTemplate = false )|
|includes\cbt\CBTProcessor.php(59)|function CBTValue( $text = '', $deps = array(), $isTemplate = false )|
|includes\cbt\CBTProcessor.php(70)|function cat( $val )|
|includes\cbt\CBTProcessor.php(80)|function addDeps( $values )|
|includes\cbt\CBTProcessor.php(95)|function removeDeps( $deps )|
|includes\cbt\CBTProcessor.php(99)|function setText( $text )|
|includes\cbt\CBTProcessor.php(103)|function getText()|
|includes\cbt\CBTProcessor.php(107)|function getDeps()|
|includes\cbt\CBTProcessor.php(112)|function execute( &$processor )|
|includes\cbt\CBTProcessor.php(131)|function templateEscape()|
|includes\cbt\CBTProcessor.php(138)|function isStatic()|
|includes\cbt\CBTProcessor.php(170)|function CBTProcessor( $text, $functionObj, $ignorableDeps = array() )|
|includes\cbt\CBTProcessor.php(181)|function execute( $compile = false )|
|includes\cbt\CBTProcessor.php(213)|function compile()|
|includes\cbt\CBTProcessor.php(222)|function doText( $start, $end )|
|includes\cbt\CBTProcessor.php(230)| function templateEscape( $text )|
|includes\cbt\CBTProcessor.php(251)|function doOpenText( &$p, $end, $needClosing = true )|
|includes\cbt\CBTProcessor.php(320)|function doOpenFunction( &$p, $end, $needClosing = true )|
|includes\cbt\CBTProcessor.php(400)|function doFunction( $tokens, $p )|
|includes\cbt\CBTProcessor.php(482)|function error( $text, $pos = false )|
|includes\cbt\CBTProcessor.php(491)|function getLastError()|
|includes\cbt\CBTProcessor.php(496)|function bi_if( $condition, $trueBlock, $falseBlock = null )|
|includes\cbt\CBTProcessor.php(518)|function bi_true()|
|includes\cbt\CBTProcessor.php(523)|function bi_lbrace()|
|includes\cbt\CBTProcessor.php(528)|function bi_rbrace()|
|includes\cbt\CBTProcessor.php(536)|function bi_escape( $val )|
|includes\media\Bitmap.php(7)|function normaliseParams( $image, &$params )|
|includes\media\Bitmap.php(39)|function doTransform( $image, $dstPath, $dstUrl, $params, $flags = 0 )|
|includes\media\Bitmap.php(187)|static function imageJpegWrapper( $dst_image, $thumbPath )|
|includes\media\Bitmap.php(193)|function getMetadata( $image, $filename )|
|includes\media\Bitmap.php(209)|function getMetadataType( $image )|
|includes\media\Bitmap.php(213)|function isMetadataValid( $image, $metadata )|
|includes\media\BMP.php(14)|function getImageSize( $image, $filename )|
|includes\media\DjVu.php(7)|function isEnabled()|
|includes\media\DjVu.php(17)|function mustRender() { return true; }|
|includes\media\DjVu.php(18)|function isMultiPage() { return true; }|
|includes\media\DjVu.php(20)|function validateParam( $name, $value )|
|includes\media\DjVu.php(32)|function makeParamString( $params )|
|includes\media\DjVu.php(40)|function parseParamString( $str )|
|includes\media\DjVu.php(49)|function getScriptParams( $params )|
|includes\media\DjVu.php(56)|function doTransform( $image, $dstPath, $dstUrl, $params, $flags = 0 )|
|includes\media\DjVu.php(114)|function getDjVuImage( $image, $path )|
|includes\media\DjVu.php(128)|function getMetaTree( $image )|
|includes\media\DjVu.php(153)|function getImageSize( $image, $path )|
|includes\media\DjVu.php(157)|function getThumbType( $ext, $mime )|
|includes\media\DjVu.php(167)|function getMetadata( $image, $path )|
|includes\media\DjVu.php(172)|function getMetadataType( $image )|
|includes\media\DjVu.php(176)|function isMetadataValid( $image, $metadata )|
|includes\media\DjVu.php(180)|function pageCount( $image )|
|includes\media\DjVu.php(188)|function getPageDimensions( $image, $page )|
|includes\media\Generic.php(23)|static function getHandler( $type )|
|includes\media\Generic.php(80)|function getMetadata( $image, $path ) { return ''; }|
|includes\media\Generic.php(85)|function getMetadataType( $image ) { return false; }|
|includes\media\Generic.php(91)|function isMetadataValid( $image, $metadata ) { return true; }|
|includes\media\Generic.php(102)|function getTransform( $image, $dstPath, $dstUrl, $params )|
|includes\media\Generic.php(122)|function getThumbType( $ext, $mime )|
|includes\media\Generic.php(129)|function canRender() { return true; }|
|includes\media\Generic.php(134)|function mustRender() { return false; }|
|includes\media\Generic.php(138)|function isMultiPage() { return false; }|
|includes\media\Generic.php(142)|function pageCount() { return false; }|
|includes\media\Generic.php(146)|function isEnabled() { return true; }|
|includes\media\Generic.php(154)|function getPageDimensions( $image, $page )|
|includes\media\Generic.php(169)|function validateParam( $name, $value )|
|includes\media\Generic.php(181)|function makeParamString( $params )|
|includes\media\Generic.php(192)|function parseParamString( $str )|
|includes\media\Generic.php(201)|function getScriptParams( $params )|
|includes\media\Generic.php(205)|function normaliseParams( $image, &$params )|
|includes\media\Generic.php(231)|function getTransform( $image, $dstPath, $dstUrl, $params )|
|includes\media\Generic.php(242)|function validateThumbParams( &$width, &$height, $srcWidth, $srcHeight, $mimeType )|
|includes\media\Generic.php(259)|function getScriptedTransform( $image, $script, $params )|
|includes\media\Generic.php(275)|function removeBadFile( $dstPath, $retval = 0 )|
|includes\media\Generic.php(290)|function getImageSize( $image, $path )|
|includes\media\SVG.php(7)|function isEnabled()|
|includes\media\SVG.php(17)|function mustRender()|
|includes\media\SVG.php(21)|function normaliseParams( $image, &$params )|
|includes\media\SVG.php(39)|function doTransform( $image, $dstPath, $dstUrl, $params, $flags = 0 )|
|includes\media\SVG.php(89)|function getImageSize( $image, $path )|
|includes\media\SVG.php(93)|function getThumbType( $ext, $mime )|
|includes\normal\CleanUpTest.php(47)|function setUp()|
|includes\normal\CleanUpTest.php(51)|function tearDown()|
|includes\normal\CleanUpTest.php(55)|function testAscii()|
|includes\normal\CleanUpTest.php(61)|function testNull()|
|includes\normal\CleanUpTest.php(70)|function testLatin()|
|includes\normal\CleanUpTest.php(76)|function testLatinNormal()|
|includes\normal\CleanUpTest.php(86)|function XtestAllChars()|
|includes\normal\CleanUpTest.php(119)|function testAllBytes()|
|includes\normal\CleanUpTest.php(127)|function doTestBytes( $head, $tail )|
|includes\normal\CleanUpTest.php(153)|function testDoubleBytes()|
|includes\normal\CleanUpTest.php(163)|function doTestDoubleBytes( $head, $tail )|
|includes\normal\CleanUpTest.php(199)|function testTripleBytes()|
|includes\normal\CleanUpTest.php(207)|function doTestTripleBytes( $head, $tail )|
|includes\normal\CleanUpTest.php(273)|function testChunkRegression()|
|includes\normal\CleanUpTest.php(296)|function testInterposeRegression()|
|includes\normal\CleanUpTest.php(331)|function testOverlongRegression()|
|includes\normal\CleanUpTest.php(356)|function testSurrogateRegression()|
|includes\normal\CleanUpTest.php(371)|function testBomRegression()|
|includes\normal\CleanUpTest.php(386)|function testForbiddenRegression()|
|includes\normal\CleanUpTest.php(395)|function testHangulRegression()|
|includes\normal\RandomTest.php(41)|function randomString( $length, $nullOk, $ascii = false )|
|includes\normal\RandomTest.php(49)|function donorm( $str )|
|includes\normal\RandomTest.php(60)|function wfMsg($x)|
|includes\normal\RandomTest.php(64)|function showDiffs( $a, $b )|
|includes\normal\Utf8Test.php(123)|function testLine( $test, $line, &$total, &$success, &$failed )|
|includes\normal\UtfNormal.php(124)|static function cleanUp( $string )|
|includes\normal\UtfNormal.php(154)|static function toNFC( $string )|
|includes\normal\UtfNormal.php(171)|static function toNFD( $string )|
|includes\normal\UtfNormal.php(189)|static function toNFKC( $string )|
|includes\normal\UtfNormal.php(207)|static function toNFKD( $string )|
|includes\normal\UtfNormal.php(221)|static function loadData()|
|includes\normal\UtfNormal.php(235)|static function quickIsNFC( $string )|
|includes\normal\UtfNormal.php(276)|static function quickIsNFCVerify( &$string )|
|includes\normal\UtfNormal.php(496)|static function NFC( $string )|
|includes\normal\UtfNormal.php(506)|static function NFD( $string )|
|includes\normal\UtfNormal.php(519)|static function NFKC( $string )|
|includes\normal\UtfNormal.php(529)|static function NFKD( $string )|
|includes\normal\UtfNormal.php(549)|static function fastDecompose( $string, $map )|
|includes\normal\UtfNormal.php(610)|static function fastCombiningSort( $string )|
|includes\normal\UtfNormal.php(664)|static function fastCompose( $string )|
|includes\normal\UtfNormal.php(797)|static function placebo( $string )|
|includes\normal\UtfNormalBench.php(56)|function benchmarkTest( &$u, $filename, $desc )|
|includes\normal\UtfNormalBench.php(83)|function benchTime(){|
|includes\normal\UtfNormalBench.php(88)|function benchmarkForm( &$u, &$data, $form )|
|includes\normal\UtfNormalGenerate.php(218)|function callbackCanonical( $matches )|
|includes\normal\UtfNormalGenerate.php(226)|function callbackCompat( $matches )|
|includes\normal\UtfNormalTest.php(31)|function pretty( $string )|
|includes\normal\UtfNormalTest.php(40)|function pretty( $string )|
|includes\normal\UtfNormalTest.php(144)|function reportResults( &$total, &$success, &$failure )|
|includes\normal\UtfNormalTest.php(157)|function testNormals( &$u, $c, $comment, $reportFailure = false )|
|includes\normal\UtfNormalTest.php(172)|function verbosify( $a, $b, $col, $form, $verbose )|
|includes\normal\UtfNormalTest.php(185)|function testNFC( &$u, $c, $comment, $verbose )|
|includes\normal\UtfNormalTest.php(194)|function testCleanUp( &$u, $c, $comment, $verbose )|
|includes\normal\UtfNormalTest.php(208)|function testNFD( &$u, $c, $comment, $verbose )|
|includes\normal\UtfNormalTest.php(217)|function testNFKC( &$u, $c, $comment, $verbose )|
|includes\normal\UtfNormalTest.php(226)|function testNFKD( &$u, $c, $comment, $verbose )|
|includes\normal\UtfNormalTest.php(235)|function testInvariant( &$u, $char, $desc, $reportFailure = false )|
|includes\normal\UtfNormalUtil.php(38)|function codepointToUtf8( $codepoint )|
|includes\normal\UtfNormalUtil.php(63)|function hexSequenceToUtf8( $sequence )|
|includes\normal\UtfNormalUtil.php(80)|function utf8ToHexSequence( $str )|
|includes\normal\UtfNormalUtil.php(94)|function utf8ToCodepoint( $char )|
|includes\normal\UtfNormalUtil.php(134)|function escapeSingleString( $string )|
|includes\templates\Userlogin.php(15)|function execute()|
|includes\templates\Userlogin.php(99)|function execute()|


**languages [#s8ce7301]
|languages\Language.php(42)|function FakeConverter($langobj) {$this->mLang = $langobj;}|
|languages\Language.php(43)|function convert($t, $i) {return $t;}|
|languages\Language.php(44)|function parserConvert($t, $p) {return $t;}|
|languages\Language.php(45)|function getVariants() { return array( $this->mLang->getCode() ); }|
|languages\Language.php(46)|function getPreferredVariant() {return $this->mLang->getCode(); }|
|languages\Language.php(47)|function findVariantLink(&$l, &$n) {}|
|languages\Language.php(48)|function getExtraHashOptions() {return '';}|
|languages\Language.php(49)|function getParsedTitle() {return '';}|
|languages\Language.php(50)|function markNoConversion($text, $noParse=false) {return $text;}|
|languages\Language.php(51)|function convertCategoryKey( $key ) {return $key; }|
|languages\Language.php(52)|function convertLinkToAllVariants($text){ return array( $this->mLang->getCode() => $text); }|
|languages\Language.php(53)|function armourMath($text){ return $text; }|
|languages\Language.php(107)|static function factory( $code )|
|languages\Language.php(141)|function __construct()|
|languages\Language.php(155)|function initContLang() {}|
|languages\Language.php(161)|function getDefaultUserOptions()|
|languages\Language.php(165)|function getFallbackLanguageCode()|
|languages\Language.php(174)|function getBookstoreList()|
|languages\Language.php(182)|function getNamespaces()|
|languages\Language.php(195)|function getFormattedNamespaces()|
|languages\Language.php(213)|function getNsText( $index )|
|languages\Language.php(225)|function getFormattedNsText( $index )|
|languages\Language.php(238)|function getLocalNsIndex( $text )|
|languages\Language.php(251)|function getNsIndex( $text )|
|languages\Language.php(264)|function getVariantname( $code )|
|languages\Language.php(268)|function specialPage( $name )|
|languages\Language.php(276)|function getQuickbarSettings()|
|languages\Language.php(286)|function getSkinNames()|
|languages\Language.php(291)|function getMathNames()|
|languages\Language.php(296)|function getDatePreferences()|
|languages\Language.php(301)|function getDateFormats()|
|languages\Language.php(306)|function getDefaultDateFormat()|
|languages\Language.php(311)|function getDatePreferenceMigrationMap()|
|languages\Language.php(316)|function getDefaultUserOptionOverrides()|
|languages\Language.php(321)|function getExtraUserToggles()|
|languages\Language.php(326)|function getUserToggle( $tog )|
|languages\Language.php(334)|public static function getLanguageNames( $customisedOnly = false )|
|languages\Language.php(359)|function getMessageFromDB( $msg )|
|languages\Language.php(373)|function getLanguageName( $code )|
|languages\Language.php(381)|function getMonthName( $key )|
|languages\Language.php(385)|function getMonthNameGen( $key )|
|languages\Language.php(389)|function getMonthAbbreviation( $key )|
|languages\Language.php(393)|function getWeekdayName( $key )|
|languages\Language.php(397)|function getWeekdayAbbreviation( $key )|
|languages\Language.php(409)|function userAdjust( $ts, $tz = false ){|
|languages\Language.php(477)|function sprintfDate( $format, $ts )|
|languages\Language.php(647)|static function romanNumeral( $num )|
|languages\Language.php(687)|function dateFormat( $usePrefs = true )|
|languages\Language.php(720)|function date( $ts, $adj = false, $format = true, $timecorrection = false )|
|languages\Language.php(744)|function time( $ts, $adj = false, $format = true, $timecorrection = false )|
|languages\Language.php(770)|function timeanddate( $ts, $adj = false, $format = true, $timecorrection = false)|
|languages\Language.php(787)|function getMessage( $key )|
|languages\Language.php(792)|function getAllMessages()|
|languages\Language.php(797)|function iconv( $in, $out, $string )|
|languages\Language.php(803)|function ucwordbreaksCallbackAscii($matches){|
|languages\Language.php(807)|function ucwordbreaksCallbackMB($matches){|
|languages\Language.php(811)|function ucCallback($matches){|
|languages\Language.php(816)|function lcCallback($matches){|
|languages\Language.php(821)|function ucwordsCallbackMB($matches){|
|languages\Language.php(825)|function ucwordsCallbackWiki($matches){|
|languages\Language.php(830)|function ucfirst( $str )|
|languages\Language.php(834)|function uc( $str, $first = false )|
|languages\Language.php(860)|function lcfirst( $str )|
|languages\Language.php(864)|function lc( $str, $first = false )|
|languages\Language.php(886)|function isMultibyte( $str )|
|languages\Language.php(890)|function ucwords($str)|
|languages\Language.php(916)|function ucwordbreaks($str){|
|languages\Language.php(957)|function caseFold( $s )|
|languages\Language.php(961)|function checkTitleEncoding( $s )|
|languages\Language.php(976)|function fallback8bitEncoding()|
|languages\Language.php(989)|function stripForSearch( $string )|
|languages\Language.php(1015)|function convertForSearchResult( $termsArray )|
|languages\Language.php(1027)|function firstChar( $s )|
|languages\Language.php(1035)|function initEncoding()|
|languages\Language.php(1042)|function recodeForEdit( $s )|
|languages\Language.php(1058)|function recodeInput( $s )|
|languages\Language.php(1078)|function isRTL() { |
|languages\Language.php(1088)|function getDirMark()|
|languages\Language.php(1097)|function getArrow()|
|languages\Language.php(1106)|function linkPrefixExtension()|
|languages\Language.php(1111)|function &getMagicWords()|
|languages\Language.php(1117)|function getMagic( &$mw )|
|languages\Language.php(1146)|function getSpecialPageAliases()|
|languages\Language.php(1164)|function emphasize( $text )|
|languages\Language.php(1192)|function formatNum( $number, $nocommafy = false )|
|languages\Language.php(1208)|function parseFormattedNumber( $number )|
|languages\Language.php(1225)|function commafy($_)|
|languages\Language.php(1229)|function digitTransformTable()|
|languages\Language.php(1234)|function separatorTransformTable()|
|languages\Language.php(1246)|function listToText( $l )|
|languages\Language.php(1268)|function truncate( $string, $length, $ellipsis = "" )|
|languages\Language.php(1308)|function convertGrammar( $word, $case )|
|languages\Language.php(1335)|function convertPlural( $count, $w1, $w2, $w3, $w4, $w5)|
|languages\Language.php(1346)|function translateBlockExpiry( $str, $forContent=false )|
|languages\Language.php(1376)|function segmentForDiff( $text )|
|languages\Language.php(1386)|function unsegmentForDiff( $text )|
|languages\Language.php(1391)|function convert( $text, $isTitle = false)|
|languages\Language.php(1396)|function parserConvert( $text, &$parser )|
|languages\Language.php(1401)|function hasVariants(){|
|languages\Language.php(1406)|function armourMath($text){ |
|languages\Language.php(1418)|function convertHtml( $text, $isTitle = false )|
|languages\Language.php(1422)|function convertCategoryKey( $key )|
|languages\Language.php(1432)|function getVariants()|
|languages\Language.php(1437)|function getPreferredVariant( $fromUser = true )|
|languages\Language.php(1451)|function findVariantLink( &$link, &$nt )|
|languages\Language.php(1461)|function convertLinkToAllVariants($text){|
|languages\Language.php(1473)|function getExtraHashOptions()|
|languages\Language.php(1484)|function getParsedTitle()|
|languages\Language.php(1495)|function markNoConversion( $text, $noParse=false )|
|languages\Language.php(1506)|function linkTrail()|
|languages\Language.php(1511)|function getLangObj()|
|languages\Language.php(1518)|function getCode()|
|languages\Language.php(1522)|function setCode( $code )|
|languages\Language.php(1526)|static function getFileName( $prefix = 'Language', $code, $suffix = '.php' )|
|languages\Language.php(1530)|static function getMessagesFileName( $code )|
|languages\Language.php(1535)|static function getClassFileName( $code )|
|languages\Language.php(1540)|static function getLocalisationArray( $code, $disableCache = false )|
|languages\Language.php(1550)|static function loadLocalisation( $code, $disableCache = false )|
|languages\Language.php(1682)|static function isLocalisationOutOfDate( $cache )|
|languages\Language.php(1700)|static function getFallbackFor( $code )|
|languages\Language.php(1708)|static function getMessagesFor( $code )|
|languages\Language.php(1716)|static function getMessageFor( $key, $code )|
|languages\Language.php(1724)|function load()|
|languages\Language.php(1740)|function fixUpSettings()|
|languages\Language.php(1794)|function replaceGrammarInNamespace( $m )|
|languages\Language.php(1798)|static function getCaseMaps()|
|languages\LanguageConverter.php(33)|function __construct($langobj, $maincode,|
|languages\LanguageConverter.php(53)|function getVariants()|
|languages\LanguageConverter.php(68)|function getVariantFallback($v)|
|languages\LanguageConverter.php(79)|function getPreferredVariant( $fromUser = true )|
|languages\LanguageConverter.php(149)|function autoConvert($text, $toVariant=false)|
|languages\LanguageConverter.php(206)|function translate( $text, $variant )|
|languages\LanguageConverter.php(222)|function autoConvertToAllVariants($text)|
|languages\LanguageConverter.php(244)|function convertLinkToAllVariants($text)|
|languages\LanguageConverter.php(273)|function parserConvert( $text, &$parser )|
|languages\LanguageConverter.php(294)|function parseFlags($marked){|
|languages\LanguageConverter.php(341)|function convert( $text , $isTitle=false)|
|languages\LanguageConverter.php(476)|function parseManualRule($rules, $flags=array())|
|languages\LanguageConverter.php(507)|function findVariantLink( &$link, &$nt )|
|languages\LanguageConverter.php(550)|function getExtraHashOptions()|
|languages\LanguageConverter.php(560)|function getParsedTitle()|
|languages\LanguageConverter.php(569)|function lockCache()|
|languages\LanguageConverter.php(585)|function unlockCache()|
|languages\LanguageConverter.php(597)|function loadDefaultTables()|
|languages\LanguageConverter.php(606)|function loadTables($fromcache=true)|
|languages\LanguageConverter.php(645)|function postLoadTables() {}|
|languages\LanguageConverter.php(652)|function reloadTables()|
|languages\LanguageConverter.php(676)|function parseCachedTable($code, $subpage='', $recursive=true)|
|languages\LanguageConverter.php(758)|function markNoConversion($text, $noParse=false)|
|languages\LanguageConverter.php(772)|function convertCategoryKey( $key )|
|languages\LanguageConverter.php(780)|function OnArticleSaveComplete($article, $user, $text, $summary, $isminor, $iswatch, $section)|
|languages\LanguageConverter.php(804)| function armourMath($text){ |
|languages\classes\LanguageAr.php(10)|function convertPlural( $count, $w1, $w2, $w3, $w4, $w5)|
|languages\classes\LanguageAz.php(7)|function ucfirst ( $string )|
|languages\classes\LanguageBe.php(17)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5)|
|languages\classes\LanguageBe.php(37)|function convertGrammar( $word, $case )|
|languages\classes\LanguageBe_x_old.php(14)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5)|
|languages\classes\LanguageBe_x_old.php(34)|function convertGrammar( $word, $case )|
|languages\classes\LanguageBg.php(15)|function commafy($_)|
|languages\classes\LanguageBs.php(9)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5)|
|languages\classes\LanguageBs.php(29)|function convertGrammar( $word, $case )|
|languages\classes\LanguageCs.php(14)|function convertGrammar( $word, $case )|
|languages\classes\LanguageCs.php(69)|  function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5)|
|languages\classes\LanguageCu.php(11)|function convertGrammar( $word, $case )|
|languages\classes\LanguageCu.php(38)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $wordform4, $w5)|
|languages\classes\LanguageEo.php(7)|function iconv( $in, $out, $string )|
|languages\classes\LanguageEo.php(47)|function checkTitleEncoding( $s )|
|languages\classes\LanguageEo.php(67)|function initEncoding()|
|languages\classes\LanguageEt.php(12)|function commafy($_)|
|languages\classes\LanguageFi.php(12)|function commafy($_)|
|languages\classes\LanguageFi.php(22)|function convertGrammar( $word, $case )|
|languages\classes\LanguageFi.php(67)|function translateBlockExpiry( $str )|
|languages\classes\LanguageFr.php(12)|        function convertPlural( $count, $w1, $w2, $w3, $w4, $w5)|
|languages\classes\LanguageGa.php(10)|function convertGrammar( $word, $case )|
|languages\classes\LanguageGsw.php(11)|   function convertGrammar( $word, $case )|
|languages\classes\LanguageHe.php(20)|public function convertGrammar( $word, $case )|
|languages\classes\LanguageHe.php(60)|public function convertPlural( $count, $w1, $w2, $w3, $w4, $w5)|
|languages\classes\LanguageHr.php(8)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5)|
|languages\classes\LanguageHsb.php(12)|function convertGrammar( $word, $case )|
|languages\classes\LanguageHsb.php(103)|function convertPlural( $count, $singular, $dual, $plural, $pluralgen, $w5 )|
|languages\classes\LanguageHu.php(10)|function convertGrammar( $word, $case )|
|languages\classes\LanguageHy.php(12)|function convertGrammar( $word, $case )|
|languages\classes\LanguageHy.php(52)|function convertPlural( $count, $wordform1, $wordform2)|
|languages\classes\LanguageHy.php(65)|function commafy($_)|
|languages\classes\LanguageJa.php(8)|function stripForSearch( $string )|
|languages\classes\LanguageJa.php(36)|function emphasize( $text )|
|languages\classes\LanguageKk.php(95)|function loadDefaultTables()|
|languages\classes\LanguageKk.php(106)|function parserConvert( $text, &$parser ){|
|languages\classes\LanguageKk.php(121)|function findVariantLink( &$link, &$nt )|
|languages\classes\LanguageKk.php(139)|function markNoConversion($text, $noParse=false)|
|languages\classes\LanguageKk.php(149)|function autoConvert($text, $toVariant=false)|
|languages\classes\LanguageKk.php(162)|function translate($text, $toVariant){|
|languages\classes\LanguageKk.php(191)|function __construct()|
|languages\classes\LanguageKk.php(207)|function convertGrammar( $word, $case )|
|languages\classes\LanguageKk_kz.php(16)|function convertGrammar( $word, $case )|
|languages\classes\LanguageKk_kz.php(259)|function commafy( $_ )|
|languages\classes\LanguageKo.php(8)|function firstChar( $s )|
|languages\classes\LanguageKsh.php(13)|public function commafy( $_ )|
|languages\classes\LanguageKsh.php(24)|public function convertPlural( $count, $w1, $w2, $w3, $w4, $w5 )|
|languages\classes\LanguageLa.php(16)|function convertGrammar( $word, $case )|
|languages\classes\LanguageLt.php(14)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5)|
|languages\classes\LanguageLv.php(24)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5 )|
|languages\classes\LanguageLv.php(34)|function convertGrammar( $word, $case )|
|languages\classes\LanguagePt_br.php(12)|        function convertPlural( $count, $w1, $w2, $w3, $w4, $w5)|
|languages\classes\LanguageRmy.php(10)|public function convertGrammar( $word, $case )|
|languages\classes\LanguageRu.php(13)|function convertGrammar( $word, $case )|
|languages\classes\LanguageRu.php(59)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5)|
|languages\classes\LanguageRu.php(78)|function commafy($_)|
|languages\classes\LanguageSk.php(13)|function convertGrammar( $word, $case )|
|languages\classes\LanguageSk.php(79)|function convertPlural( $count, $w1, $w2, $w3, $w4, $w5)|
|languages\classes\LanguageSl.php(13)|function convertGrammar( $word, $case )|
|languages\classes\LanguageSl.php(74)|function convertPlural( $count, $w1, $w2, $w3, $w4, $w5)|
|languages\classes\LanguageSr.php(54)|function loadDefaultTables()|
|languages\classes\LanguageSr.php(69)|function parseManualRule($rule, $flags=array())|
|languages\classes\LanguageSr.php(83)|function parserConvert( $text, &$parser ){|
|languages\classes\LanguageSr.php(98)|function findVariantLink( &$link, &$nt )|
|languages\classes\LanguageSr.php(116)|function markNoConversion($text, $noParse=false)|
|languages\classes\LanguageSr.php(126)|function autoConvert($text, $toVariant=false)|
|languages\classes\LanguageSr.php(139)|function translate($text, $toVariant){|
|languages\classes\LanguageSr.php(167)|function __construct()|
|languages\classes\LanguageSr_ec.php(11)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5)|
|languages\classes\LanguageSr_el.php(11)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5)|
|languages\classes\LanguageTr.php(8)|function ucfirst ( $string )|
|languages\classes\LanguageTyv.php(21)|function convertGrammar( $word, $case )|
|languages\classes\LanguageUk.php(12)|function convertGrammar( $word, $case )|
|languages\classes\LanguageUk.php(61)|function convertPlural( $count, $wordform1, $wordform2, $wordform3, $w4, $w5)|
|languages\classes\LanguageUk.php(80)|function commafy($_)|
|languages\classes\LanguageWa.php(17)|function date( $ts, $adj = false, $format = true, $tc = false )|
|languages\classes\LanguageWa.php(58)|function timeanddate( $ts, $adj = false, $format = true, $tc = false )|
|languages\classes\LanguageZh.php(9)|function loadDefaultTables()|
|languages\classes\LanguageZh.php(20)|function postLoadTables()|
|languages\classes\LanguageZh.php(29)|function markNoConversion($text, $noParse = false)|
|languages\classes\LanguageZh.php(33)|function convertCategoryKey( $key )|
|languages\classes\LanguageZh.php(44)|function __construct()|
|languages\classes\LanguageZh.php(59)|function segmentForDiff( $text )|
|languages\classes\LanguageZh.php(65)|function unsegmentForDiff( $text )|
|languages\classes\LanguageZh.php(72)|function stripForSearch( $string )|
|languages\classes\LanguageZh.php(94)|function convertForSearchResult( $termsArray )|
|languages\classes\LanguageZh_cn.php(6)|function stripForSearch( $string )|
|languages\classes\LanguageZh_yue.php(6)|function stripForSearch( $string )|
|languages\messages\MessagesKk_cn.php(2042)|function wgULS(kz,tr,cn){|
|languages\messages\MessagesKk_kz.php(2040)|function wgULS(kz,tr,cn){|
|languages\messages\MessagesKk_tr.php(2034)|function wgULS(kz,tr,cn){|


**maintenance [#gf7f112d]
|maintenance\addwiki.php(16)|function addWiki( $lang, $site, $dbName )|
|maintenance\benchmarkPurge.php(11)|function benchSquid( $urls, $trials = 1 )|
|maintenance\benchmarkPurge.php(24)|function randomUrlList( $length )|
|maintenance\benchmarkPurge.php(33)|function randomUrl()|
|maintenance\benchmarkPurge.php(39)|function randomTitle()|
|maintenance\changePassword.php(16)|function ChangePassword( $user, $password )|
|maintenance\changePassword.php(23)|function main()|
|maintenance\checkUsernames.php(8)|function checkUsernames()|
|maintenance\checkUsernames.php(11)|function main()|
|maintenance\cleanupCaps.php(37)|function CapsCleanup( $dryrun = false, $namespace=0 )|
|maintenance\cleanupCaps.php(45)|function cleanup()|
|maintenance\cleanupCaps.php(56)|function init( $count, $table )|
|maintenance\cleanupCaps.php(64)|function progress( $updated )|
|maintenance\cleanupCaps.php(90)|function runTable( $table, $where, $callback )|
|maintenance\cleanupCaps.php(108)|function processPage( $row )|
|maintenance\cleanupImages.php(35)|function __construct( $dryrun = false )|
|maintenance\cleanupImages.php(39)|function processPage( $row )|
|maintenance\cleanupImages.php(79)|function killRow( $name )|
|maintenance\cleanupImages.php(91)|function filePath( $name )|
|maintenance\cleanupImages.php(95)|function pokeFile( $orig, $new )|
|maintenance\cleanupImages.php(141)|function appendTitle( $name, $suffix )|
|maintenance\cleanupImages.php(146)|function buildSafeTitle( $name )|
|maintenance\cleanupSpam.php(6)|function cleanupArticle( $id, $domain )|
|maintenance\cleanupTitles.php(35)|function __construct( $dryrun = false )|
|maintenance\cleanupTitles.php(39)|function processPage( $row )|
|maintenance\cleanupTitles.php(62)|function moveIllegalPage( $row )|
|maintenance\cleanupTitles.php(95)|function moveInconsistentPage( $row, $title )|
|maintenance\cleanupWatchlist.php(37)|function WatchlistCleanup( $dryrun = false )|
|maintenance\cleanupWatchlist.php(44)|function cleanup()|
|maintenance\cleanupWatchlist.php(50)|function init( $count, $table )|
|maintenance\cleanupWatchlist.php(58)|function progress( $updated )|
|maintenance\cleanupWatchlist.php(85)|function runTable( $table, $where, $callback )|
|maintenance\cleanupWatchlist.php(103)|function processEntry( $row )|
|maintenance\cleanupWatchlist.php(120)|function removeWatch( $row )|
|maintenance\clear_stats.php(20)|function noisyDelete( $key )|
|maintenance\counter.php(2)|function print_c($last, $current)|
|maintenance\deleteDefaultMessages.php(13)|function deleteDefaultMessages()|
|maintenance\deleteImageMemcached.php(10)|function DeleteImageCache( $until, $sleep, $report )|
|maintenance\deleteImageMemcached.php(16)|function main()|
|maintenance\deleteImageMemcached.php(46)|function getImageCount()|
|maintenance\deleteOldRevisions.php(22)|function ShowUsage()|
|maintenance\deleteOrphanedRevisions.inc.php(17)|function deleteRevisions( $id, &$dbw )|
|maintenance\deleteOrphanedRevisions.inc.php(26)|function showUsage()|
|maintenance\dumpHTML.php(38)|function wfSetupDump()|
|maintenance\dumpReplayLog.php(12)|function dumpReplayLog( $start )|
|maintenance\dumpReplayLog.php(30)|function dumpReplayEntry( $row )|
|maintenance\dumpTextPass.php(38)|private function stripPath( $path )|
|maintenance\dumpTextPass.php(43)|function stream_open( $path, $mode, $options, &$opened_path )|
|maintenance\dumpTextPass.php(61)|function url_stat( $path, $flags )|
|maintenance\dumpTextPass.php(67)|function stream_close()|
|maintenance\dumpTextPass.php(71)|function stream_flush()|
|maintenance\dumpTextPass.php(75)|function stream_read( $count )|
|maintenance\dumpTextPass.php(79)|function stream_write( $data )|
|maintenance\dumpTextPass.php(83)|function stream_tell()|
|maintenance\dumpTextPass.php(87)|function stream_eof()|
|maintenance\dumpTextPass.php(91)|function stream_seek( $offset, $whence )|
|maintenance\dumpTextPass.php(109)|function dump()|
|maintenance\dumpTextPass.php(133)|function processOption( $opt, $val, $param )|
|maintenance\dumpTextPass.php(153)|function processFileOpt( $val, $param )|
|maintenance\dumpTextPass.php(171)|function showReport()|
|maintenance\dumpTextPass.php(197)|function readDump( $input )|
|maintenance\dumpTextPass.php(227)|function getText( $id )|
|maintenance\dumpTextPass.php(261)|private function doGetText( $id )|
|maintenance\dumpTextPass.php(273)|function startElement( $parser, $name, $attribs )|
|maintenance\dumpTextPass.php(301)|function endElement( $parser, $name )|
|maintenance\dumpTextPass.php(322)|function characterData( $parser, $data )|
|maintenance\dumpTextPass.php(334)|function clearOpenElement( $style )|
|maintenance\dumpUploads.php(7)|function __construct( $args )|
|maintenance\dumpUploads.php(22)|function run()|
|maintenance\dumpUploads.php(26)|function help()|
|maintenance\dumpUploads.php(53)|function fetchUsed()|
|maintenance\dumpUploads.php(76)|function outputLocal( $name )|
|maintenance\dumpUploads.php(81)|function outputShared( $name )|
|maintenance\dumpUploads.php(86)|function outputItem( $name, $directory, $shared )|
|maintenance\dumpUploads.php(99)|function relativePath( $path, $base)|
|maintenance\eval.php(23)|function wfSetProfiling() { $GLOBALS['wgProfiling'] = true; }|
|maintenance\findhooks.php(32)|function getHooksFromDoc()|
|maintenance\findhooks.php(45)|function getHooksFromFile( $file )|
|maintenance\findhooks.php(57)|function getHooksFromPath( $path )|
|maintenance\findhooks.php(76)|function printArray( $msg, $arr, $sort = true )|
|maintenance\fixSlaveDesync.php(38)|function findPageLatestCorruption()|
|maintenance\fixSlaveDesync.php(70)|function desyncFixPage( $pageID )|
|maintenance\fuzz-tester.php(134)|  function error_handler ($type, $message, $file=__FILE__, $line=__LINE__)|
|maintenance\fuzz-tester.php(735)|    static public function chooseInput(array $input)|
|maintenance\fuzz-tester.php(746)|    static public function randnum($finish,$start=0)|
|maintenance\fuzz-tester.php(753)|    static private function randstring()|
|maintenance\fuzz-tester.php(784)|    static private function makestring()|
|maintenance\fuzz-tester.php(802)|    static public function makeTitleSafe($str)|
|maintenance\fuzz-tester.php(818)|    static private function loop()|
|maintenance\fuzz-tester.php(846)|    static private function getRandQuote()|
|maintenance\fuzz-tester.php(857)|    static public function makeFuzz($maxtypes = 2)|
|maintenance\fuzz-tester.php(884)|    public function getParams()|
|maintenance\fuzz-tester.php(888)|    public function getPagePath()|
|maintenance\fuzz-tester.php(892)|    public function getCookie()|
|maintenance\fuzz-tester.php(896)|    public function tidyValidate()|
|maintenance\fuzz-tester.php(906)|    function __construct()|
|maintenance\fuzz-tester.php(938)|    function __construct()|
|maintenance\fuzz-tester.php(957)|    function __construct()|
|maintenance\fuzz-tester.php(992)|    function __construct()|
|maintenance\fuzz-tester.php(1021)|    function __construct()|
|maintenance\fuzz-tester.php(1047)|    function __construct()|
|maintenance\fuzz-tester.php(1064)|    function __construct()|
|maintenance\fuzz-tester.php(1084)|    function __construct()|
|maintenance\fuzz-tester.php(1103)|    function __construct()|
|maintenance\fuzz-tester.php(1134)|    function __construct()|
|maintenance\fuzz-tester.php(1167)|    function __construct()|
|maintenance\fuzz-tester.php(1188)|    function __construct()|
|maintenance\fuzz-tester.php(1205)|    function __construct()|
|maintenance\fuzz-tester.php(1233)|    function __construct()|
|maintenance\fuzz-tester.php(1249)|    function __construct()|
|maintenance\fuzz-tester.php(1265)|    function __construct()|
|maintenance\fuzz-tester.php(1285)|    function __construct()|
|maintenance\fuzz-tester.php(1303)|    function __construct()|
|maintenance\fuzz-tester.php(1370)|    function __construct()|
|maintenance\fuzz-tester.php(1384)|    function __construct()|
|maintenance\fuzz-tester.php(1404)|    function __construct()|
|maintenance\fuzz-tester.php(1421)|    function __construct()|
|maintenance\fuzz-tester.php(1437)|    function __construct()|
|maintenance\fuzz-tester.php(1462)|    function __construct()|
|maintenance\fuzz-tester.php(1479)|    function __construct()|
|maintenance\fuzz-tester.php(1512)|    function __construct()|
|maintenance\fuzz-tester.php(1539)|    function __construct()|
|maintenance\fuzz-tester.php(1560)|    function __construct()|
|maintenance\fuzz-tester.php(1582)|    function __construct()|
|maintenance\fuzz-tester.php(1605)|    function __construct()|
|maintenance\fuzz-tester.php(1629)|    function __construct()|
|maintenance\fuzz-tester.php(1668)|    function __construct()|
|maintenance\fuzz-tester.php(1691)|    function __construct()|
|maintenance\fuzz-tester.php(1713)|    function __construct()|
|maintenance\fuzz-tester.php(1744)|    function __construct()|
|maintenance\fuzz-tester.php(1776)|    function __construct()|
|maintenance\fuzz-tester.php(1797)|    function __construct()|
|maintenance\fuzz-tester.php(1822)|    function __construct()|
|maintenance\fuzz-tester.php(1842)|    function __construct()|
|maintenance\fuzz-tester.php(1861)|    function __construct()|
|maintenance\fuzz-tester.php(1875)|    function __construct()|
|maintenance\fuzz-tester.php(1898)|    function __construct()|
|maintenance\fuzz-tester.php(1921)|    function __construct()|
|maintenance\fuzz-tester.php(1937)|    function __construct()|
|maintenance\fuzz-tester.php(1954)|    function __construct()|
|maintenance\fuzz-tester.php(1975)|    function __construct()|
|maintenance\fuzz-tester.php(2024)|    private static function loginMode()|
|maintenance\fuzz-tester.php(2037)|    private static function opensearchMode()|
|maintenance\fuzz-tester.php(2042)|    private static function feedwatchlistMode()|
|maintenance\fuzz-tester.php(2048)|    private static function queryMode()|
|maintenance\fuzz-tester.php(2088)|    private static function addListParams(&$array, $prefix, $elements)|
|maintenance\fuzz-tester.php(2095)|    private static function getParamDetails($element)|
|maintenance\fuzz-tester.php(2116)|    function __construct()|
|maintenance\fuzz-tester.php(2168)|private function getGeSHiContent()|
|maintenance\fuzz-tester.php(2178)|private function getLang()|
|maintenance\fuzz-tester.php(2186)|    function __construct()|
|maintenance\fuzz-tester.php(2208)|function selectPageTest($count)|
|maintenance\fuzz-tester.php(2276)|function saveFile($data, $name)|
|maintenance\fuzz-tester.php(2286)|function getAsURL(pageTest $test)|
|maintenance\fuzz-tester.php(2306)|function saveTestAsText(pageTest $test, $filename)|
|maintenance\fuzz-tester.php(2320)|function saveTestAsPHP(pageTest $test, $filename)|
|maintenance\fuzz-tester.php(2342)|function escapeForCurl(array $input_params)|
|maintenance\fuzz-tester.php(2358)|function saveTestAsCurl(pageTest $test, $filename)|
|maintenance\fuzz-tester.php(2375)|function saveTestData (pageTest $test, $filename)|
|maintenance\fuzz-tester.php(2383)|function saveTest(pageTest $test, $testname)|
|maintenance\fuzz-tester.php(2397)|function wikiTestOutput(pageTest $test)|
|maintenance\fuzz-tester.php(2430)|function validateHTML($text)|
|maintenance\fuzz-tester.php(2461)|function tidyCheckFile($name)|
|maintenance\fuzz-tester.php(2483)|function dbErrorLogged()|
|maintenance\fuzz-tester.php(2512)|function runWikiTest(pageTest $test, &$testname, $can_overwrite = false)|
|maintenance\fuzz-tester.php(2607)|function rerunPreviousTests()|
|maintenance\generateSitemap.php(146)|function GenerateSitemap( $fspath, $compress )|
|maintenance\generateSitemap.php(164)|function generateNamespaces()|
|maintenance\generateSitemap.php(189)|function priority( $namespace )|
|maintenance\generateSitemap.php(202)|function guessPriority( $namespace )|
|maintenance\generateSitemap.php(213)|function getPageRes( $namespace )|
|maintenance\generateSitemap.php(232)|function main()|
|maintenance\generateSitemap.php(290)|function open( $file, $flags )|
|maintenance\generateSitemap.php(297)|function write( &$handle, $str )|
|maintenance\generateSitemap.php(307)|function close( &$handle )|
|maintenance\generateSitemap.php(324)|function sitemapFilename( $namespace, $count )|
|maintenance\generateSitemap.php(336)|function xmlHead()|
|maintenance\generateSitemap.php(347)|function xmlSchema()|
|maintenance\generateSitemap.php(356)|function openIndex()|
|maintenance\generateSitemap.php(369)|function indexEntry( $filename )|
|maintenance\generateSitemap.php(384)|function closeIndex()|
|maintenance\generateSitemap.php(393)|function openFile()|
|maintenance\generateSitemap.php(408)|function fileEntry( $url, $date, $priority )|
|maintenance\generateSitemap.php(423)|function closeFile()|
|maintenance\generateSitemap.php(430)|function debug( $str )|
|maintenance\generateSitemap.php(437)|function generateLimit( $namespace )|
|maintenance\importDump.php(36)|function BackupReader()|
|maintenance\importDump.php(40)|function reportPage( $page )|
|maintenance\importDump.php(44)|function handleRevision( $rev )|
|maintenance\importDump.php(62)|function report( $final = false )|
|maintenance\importDump.php(68)|function showReport()|
|maintenance\importDump.php(82)|function progress( $string )|
|maintenance\importDump.php(86)|function importFromFile( $filename )|
|maintenance\importDump.php(94)|function importFromStdin()|
|maintenance\importDump.php(99)|function importFromHandle( $handle )|
|maintenance\importImages.inc.php(17)|function findFiles( $dir, $exts )|
|maintenance\importImages.inc.php(42)|function splitFilename( $filename )|
|maintenance\importImages.inc.php(56)|function makeHashPath( $hash )|
|maintenance\importImages.php(103)|function showUsage( $reason = false )|
|maintenance\importPhase2.php(68)|function Phase2Importer( $database )|
|maintenance\importPhase2.php(73)|function importAll()|
|maintenance\importPhase2.php(103)|function importCurData()|
|maintenance\importPhase2.php(119)|function importOldData()|
|maintenance\importPhase2.php(133)|function importUserData()|
|maintenance\importPhase2.php(148)|function importWatchlists()|
|maintenance\importPhase2.php(178)|function importLinkData()|
|maintenance\importPhase2.php(202)|function fixCurTitles()|
|maintenance\importPhase2.php(206)|function fixOldTitles()|
|maintenance\importPhase2.php(210)|function fixTitles( $table )|
|maintenance\importPhase2.php(235)|function rewriteUserOptions( $in )|
|maintenance\importPhase2.php(304)|function fixUserOptions()|
|maintenance\importPhase2.php(331)|function &fetch( $dbkey )|
|maintenance\importTextFile.php(66)|function titleFromFilename( $filename )|
|maintenance\importTextFile.php(72)|function showHelp()|
|maintenance\importUseModWiki.php(56)|function importPages()|
|maintenance\importUseModWiki.php(87)|function importPageDirectory( $dir, $prefix = "" )|
|maintenance\importUseModWiki.php(114)|function useModFilename( $title )|
|maintenance\importUseModWiki.php(122)|function fetchPage( $title )|
|maintenance\importUseModWiki.php(141)|function fetchKeptPages( $title )|
|maintenance\importUseModWiki.php(166)|function splitHash ( $sep , $str )|
|maintenance\importUseModWiki.php(180)|function checkUserCache( $name, $host )|
|maintenance\importUseModWiki.php(199)|function importPage( $title )|
|maintenance\importUseModWiki.php(265)|function recodeText( $string )|
|maintenance\importUseModWiki.php(274)|function wfUtf8Sequence($codepoint)|
|maintenance\importUseModWiki.php(289)|function wfMungeToUtf8($string)|
|maintenance\importUseModWiki.php(296)|function timestamp2ISO8601( $ts )|
|maintenance\importUseModWiki.php(301)|function xmlsafe( $string )|
|maintenance\importUseModWiki.php(313)|function xmlCommentSafe( $text )|
|maintenance\importUseModWiki.php(318)|function array2object( $arr )|
|maintenance\importUseModWiki.php(330)|function mungeFormat( $text )|
|maintenance\importUseModWiki.php(355)|function placeholder( $x = null )|
|maintenance\importUseModWiki.php(359)|function nowikiPlaceholder( $matches )|
|maintenance\initStats.php(24)|function showHelp()|
|maintenance\installExtension.php(34)|function InstallerRepository( $path )|
|maintenance\installExtension.php(38)|function printListing( )|
|maintenance\installExtension.php(42)|function getResource( $name )|
|maintenance\installExtension.php(69)|function LocalInstallerRepository ( $path )|
|maintenance\installExtension.php(73)|function printListing( )|
|maintenance\installExtension.php(93)|function getResource( $name )|
|maintenance\installExtension.php(106)|function WebInstallerRepository ( $path )|
|maintenance\installExtension.php(110)|function printListing( )|
|maintenance\installExtension.php(141)|function getResource( $name )|
|maintenance\installExtension.php(149)|function SVNInstallerRepository ( $path )|
|maintenance\installExtension.php(153)|function printListing( )|
|maintenance\installExtension.php(173)|function getResource( $name )|
|maintenance\installExtension.php(184)|function InstallerResource( $path, $isdir, $islocal )|
|maintenance\installExtension.php(199)|function fetch( $target )|
|maintenance\installExtension.php(203)|function extract( $file, $target )|
|maintenance\installExtension.php(247)|function LocalInstallerResource( $path )|
|maintenance\installExtension.php(251)|function fetch( $target )|
|maintenance\installExtension.php(259)|function WebInstallerResource( $path )|
|maintenance\installExtension.php(263)|function fetch( $target )|
|maintenance\installExtension.php(282)|function SVNInstallerResource( $path )|
|maintenance\installExtension.php(286)|function fetch( $target )|
|maintenance\installExtension.php(307)|function ExtensionInstaller( $name, $source, $target )|
|maintenance\installExtension.php(322)|function note( $msg )|
|maintenance\installExtension.php(326)|function warn( $msg )|
|maintenance\installExtension.php(330)|function error( $msg )|
|maintenance\installExtension.php(334)|function prompt( $msg )|
|maintenance\installExtension.php(352)|function confirm( $msg )|
|maintenance\installExtension.php(363)|function deleteContents( $dir )|
|maintenance\installExtension.php(373)|function copyDir( $dir, $tgt )|
|maintenance\installExtension.php(406)|function setPermissions( $dir, $dirbits, $filebits )|
|maintenance\installExtension.php(429)|function fetchExtension( )|
|maintenance\installExtension.php(463)|function patchLocalSettings( $mode )|
|maintenance\installExtension.php(551)|function printNotices( )|
|maintenance\mcc.php(17)|function mccShowHelp($command)|
|maintenance\mctest.php(8)|function microtime_float()|
|maintenance\mwdocgen.php(68)|function readaline( $prompt = '')|
|maintenance\mwdocgen.php(83)|function generateConfigFile($doxygenTemplate, $outputDirectory, $stripFromPath, $input)|
|maintenance\namespaceDupes.php(39)|function NamespaceConflictChecker( &$db )|
|maintenance\namespaceDupes.php(43)|function checkAll( $fix, $suffix = '' )|
|maintenance\namespaceDupes.php(53)|function checkNamespace( $ns, $name, $fix, $suffix = '' )|
|maintenance\namespaceDupes.php(82)|function checkPrefix( $key, $prefix, $fix, $suffix = '' )|
|maintenance\namespaceDupes.php(87)|function getConflicts( $ns, $name )|
|maintenance\namespaceDupes.php(113)|function reportConflict( $row, $suffix )|
|maintenance\namespaceDupes.php(131)|function resolveConflict( $row, $resolvable, $suffix )|
|maintenance\namespaceDupes.php(146)|function resolveConflictOn( $row, $table )|
|maintenance\namespaceDupes.php(164)|function newSchema()|
|maintenance\nukeNS.php(40)|function NukeNS($ns_no, $delete)|
|maintenance\nukePage.php(23)|function ShowUsage()|
|maintenance\orphans.php(42)|function checkOrphans( $fix )|
|maintenance\orphans.php(93)|function checkWidows( $fix )|
|maintenance\orphans.php(136)|function checkSeparation( $fix )|
|maintenance\parserTestsParserHook.php(17)|function wfParserTestParserHookSetup( &$parser )|
|maintenance\parserTestsParserHook.php(23)|function wfParserTestParserHookHook( $in, $argv )|
|maintenance\parserTestsParserTime.php(20)|function wfParserTimeSetup( &$parser, &$ts )|
|maintenance\parserTestsStaticParserHook.php(17)|function wfParserTestStaticParserHookSetup( &$parser )|
|maintenance\parserTestsStaticParserHook.php(23)|function wfParserTestStaticParserHookHook( $in, $argv )|
|maintenance\purgeOldText.php(22)|function ShowUsage()|
|maintenance\reassignEdits.inc.php(20)|function reassignEdits( &$from, &$to, $rc = false, $report = false )|
|maintenance\reassignEdits.inc.php(82)|function userConditions( &$user, $idfield, $utfield )|
|maintenance\reassignEdits.inc.php(95)|function userSpecification( &$user, $idfield, $utfield )|
|maintenance\reassignEdits.inc.php(105)|function out( $output )|
|maintenance\reassignEdits.inc.php(120)|function silent( $silent = true )|
|maintenance\reassignEdits.inc.php(131)|function initialiseUser( $username )|
|maintenance\reassignEdits.php(45)|function ShowUsage()|
|maintenance\rebuildImages.php(38)|function ImageBuilder( $dryrun = false )|
|maintenance\rebuildImages.php(45)|function build()|
|maintenance\rebuildImages.php(50)|function init( $count, $table )|
|maintenance\rebuildImages.php(58)|function progress( $updated )|
|maintenance\rebuildImages.php(84)|function buildTable( $table, $key, $callback )|
|maintenance\rebuildImages.php(113)|function buildImage()|
|maintenance\rebuildImages.php(118)|function imageCallback( $row )|
|maintenance\rebuildImages.php(141)|function buildOldImage()|
|maintenance\rebuildImages.php(146)|function oldimageCallback( $row )|
|maintenance\rebuildImages.php(159)|function crawlMissing()|
|maintenance\rebuildImages.php(178)|function crawlDirectory( $dir )|
|maintenance\rebuildImages.php(208)|function checkMissingImage( $filename, $fullpath )|
|maintenance\rebuildImages.php(223)|function addMissingImage( $filename, $fullpath )|
|maintenance\renderDump.php(36)|function __construct( $dir )|
|maintenance\renderDump.php(42)|function handleRevision( $rev )|
|maintenance\renderDump.php(80)|function run()|
|maintenance\sql.php(41)|function __construct( $prompt )|
|maintenance\sql.php(45)|function cb()|
|maintenance\sql.php(49)|function printPrompt()|
|maintenance\sql.php(54)|function sqlPrintResult( $res )|
|maintenance\updateArticleCount.inc.php(15)|function ArticleCounter()|
|maintenance\updateArticleCount.inc.php(27)|function makeNsSet()|
|maintenance\updateArticleCount.inc.php(38)|function makeSql()|
|maintenance\updateArticleCount.inc.php(51)|function count()|
|maintenance\updateRestrictions.php(22)|function migrate_page_restrictions( $db )|
|maintenance\backup.inc(25)|function DumpDBZip2Output( $file )|
|maintenance\backup.inc(44)|function BackupDumper( $args )|
|maintenance\backup.inc(65)|function registerOutput( $name, $class )|
|maintenance\backup.inc(73)|function registerFilter( $name, $class )|
|maintenance\backup.inc(83)|function loadPlugin( $class, $file )|
|maintenance\backup.inc(96)|function processArgs( $args )|
|maintenance\backup.inc(166)|function processOption( $opt, $val, $param )|
|maintenance\backup.inc(170)|function dump( $history, $text = MW_EXPORT_TEXT )|
|maintenance\backup.inc(208)|function initProgress( $history = WikiExporter::FULL )|
|maintenance\backup.inc(217)|function backupDb()|
|maintenance\backup.inc(232)|function backupServer()|
|maintenance\backup.inc(239)|function reportPage()|
|maintenance\backup.inc(243)|function revCount()|
|maintenance\backup.inc(248)|function report( $final = false )|
|maintenance\backup.inc(254)|function showReport()|
|maintenance\backup.inc(274)|function progress( $string )|
|maintenance\backup.inc(280)|function ExportProgressFilter( &$sink, &$progress )|
|maintenance\backup.inc(285)|function writeClosePage( $string )|
|maintenance\backup.inc(290)|function writeRevision( $rev, $string )|
|maintenance\backupPrefetch.inc(63)|function BaseDump( $infile )|
|maintenance\backupPrefetch.inc(77)|function prefetch( $page, $rev )|
|maintenance\backupPrefetch.inc(101)|function debug( $str )|
|maintenance\backupPrefetch.inc(110)|function nextPage()|
|maintenance\backupPrefetch.inc(125)|function nextRev()|
|maintenance\backupPrefetch.inc(138)|function nextText()|
|maintenance\backupPrefetch.inc(146)|function skipTo( $name, $parent='page' )|
|maintenance\backupPrefetch.inc(171)|function nodeContents()|
|maintenance\backupPrefetch.inc(196)|function close()|
|maintenance\cleanupDupes.inc(27)|function fixDupes( $fixthem = false)|
|maintenance\cleanupDupes.inc(114)|function checkDupes( $fixthem = false, $indexonly = false )|
|maintenance\cleanupTable.inc(6)|function __construct( $table, $dryrun = false )|
|maintenance\cleanupTable.inc(14)|function cleanup()|
|maintenance\cleanupTable.inc(25)|function init( $count, $table )|
|maintenance\cleanupTable.inc(33)|function progress( $updated )|
|maintenance\cleanupTable.inc(60)|function runTable( $table, $where, $callback )|
|maintenance\cleanupTable.inc(78)|function hexChar( $matches )|
|maintenance\commandLine.inc(226)|function wfWaitForSlaves( $maxLag )|
|maintenance\convertLinks.inc(8)|function convertLinks()|
|maintenance\convertLinks.inc(175)|function createTempTable()|
|maintenance\convertLinks.inc(205)|function performanceLog( $text )|
|maintenance\convertLinks.inc(212)|function getMicroTime() { # return time in seconds, with microsecond accuracy|
|maintenance\deleteOldRevisions.inc(12)|function DeleteOldRevisions( $delete = false )|
|maintenance\dumpHTML.inc(75)|function DumpHTML( $settings = array() )|
|maintenance\dumpHTML.inc(81)|function loadCheckpoints()|
|maintenance\dumpHTML.inc(103)|function getCheckpoint( $type, $defValue = false )|
|maintenance\dumpHTML.inc(114)|function setCheckpoint( $type, $value )|
|maintenance\dumpHTML.inc(126)|function doEverything()|
|maintenance\dumpHTML.inc(150)|function doArticles()|
|maintenance\dumpHTML.inc(200)|function doSpecials()|
|maintenance\dumpHTML.inc(210)|function doMainPage()|
|maintenance\dumpHTML.inc(234)|function doImageDescriptions()|
|maintenance\dumpHTML.inc(245)|function doLocalImageDescriptions()|
|maintenance\dumpHTML.inc(303)|function doSharedImageDescriptions()|
|maintenance\dumpHTML.inc(344)|function doCategories()|
|maintenance\dumpHTML.inc(394)|function doRedirects()|
|maintenance\dumpHTML.inc(443)|function doArticle( $title )|
|maintenance\dumpHTML.inc(494)|function writeArticle( $title, $text )|
|maintenance\dumpHTML.inc(533)|function setupGlobals( $currentDepth = NULL )|
|maintenance\dumpHTML.inc(621)|function getArticleHTML( $title )|
|maintenance\dumpHTML.inc(666)|function getRedirect( $rt )|
|maintenance\dumpHTML.inc(684)|function findImages( $text )|
|maintenance\dumpHTML.inc(704)|function relativeCopy( $srcPath, $srcPathBase, $srcDirBase, $destDirBase )|
|maintenance\dumpHTML.inc(726)|function copyImage( $srcPath, $srcPathBase, $srcDirBase, $destDirBase )|
|maintenance\dumpHTML.inc(750)|function copyImages( $images )|
|maintenance\dumpHTML.inc(770)|function onGetFullURL( &$title, &$url, $query )|
|maintenance\dumpHTML.inc(788)|function onGetLocalURL( &$title, &$url, $query )|
|maintenance\dumpHTML.inc(822)|function getHashedFilename( &$title )|
|maintenance\dumpHTML.inc(838)|function getFriendlyName( $name )|
|maintenance\dumpHTML.inc(865)|function getHashedDirectory( &$title )|
|maintenance\dumpHTML.inc(917)|function sliceRange( $start, $end )|
|maintenance\dumpHTML.inc(934)|function modSliceStart( $start, $base = 1 )|
|maintenance\dumpHTML.inc(941)|function sliceFilter( $s )|
|maintenance\dumpHTML.inc(948)|function onSiteNoticeBefore( &$text )|
|maintenance\dumpHTML.inc(952)|function onSiteNoticeAfter( &$text )|
|maintenance\dumpHTML.inc(957)|function getMaxPageID()|
|maintenance\dumpHTML.inc(965)|function profile()|
|maintenance\dumpHTML.inc(986)|function profileIn() {}|
|maintenance\dumpHTML.inc(987)|function profileOut() {}|
|maintenance\dumpHTML.inc(988)|function getOutput() {}|
|maintenance\dumpHTML.inc(989)|function close() {}|
|maintenance\dumpHTML.inc(990)|function getFunctionReport() {}|
|maintenance\dumpHTML.inc(994)|function wfDumpStartTagHandler( $parser, $name, $attribs )|
|maintenance\dumpHTML.inc(1003)|function wfDumpEndTagHandler( $parser, $name ) {}|
|maintenance\dumpInterwiki.inc(19)|function Site( $s, $l, $u )|
|maintenance\dumpInterwiki.inc(25)|function getURL( $lang )|
|maintenance\dumpInterwiki.inc(31)|function getRebuildInterwikiDump()|
|maintenance\dumpInterwiki.inc(182)|function makeLanguageLinks( &$site, $source )|
|maintenance\dumpInterwiki.inc(195)|function makeLink( $entry, $source )|
|maintenance\FiveUpgrade.inc(13)|function FiveUpgrade()|
|maintenance\FiveUpgrade.inc(24)|function doing( $step )|
|maintenance\FiveUpgrade.inc(28)|function upgrade( $step )|
|maintenance\FiveUpgrade.inc(63)|function &newConnection()|
|maintenance\FiveUpgrade.inc(77)|function &streamConnection()|
|maintenance\FiveUpgrade.inc(95)|function prepareWindows1252()|
|maintenance\FiveUpgrade.inc(146)|function conv( $text )|
|maintenance\FiveUpgrade.inc(160)|function log( $message )|
|maintenance\FiveUpgrade.inc(180)|function setChunkScale( $chunksize, $final, $table, $fname )|
|maintenance\FiveUpgrade.inc(200)|function addChunk( &$chunk, $key = null )|
|maintenance\FiveUpgrade.inc(238)|function lastChunk( &$chunk )|
|maintenance\FiveUpgrade.inc(251)|function insertChunk( &$chunk )|
|maintenance\FiveUpgrade.inc(271)|function copyTable( $name, $tabledef, $fields, $callback = null )|
|maintenance\FiveUpgrade.inc(322)|function upgradePage()|
|maintenance\FiveUpgrade.inc(495)|function upgradeLinks()|
|maintenance\FiveUpgrade.inc(578)|function upgradeUser()|
|maintenance\FiveUpgrade.inc(628)|function userCallback( $row, $copy )|
|maintenance\FiveUpgrade.inc(635)|function upgradeImage()|
|maintenance\FiveUpgrade.inc(675)|function imageCallback( $row, $copy )|
|maintenance\FiveUpgrade.inc(696)|function imageInfo( $name, $subdirCallback='wfImageDir', $basename = null )|
|maintenance\FiveUpgrade.inc(739)|function clearTable( $table )|
|maintenance\FiveUpgrade.inc(753)|function renameFile( $oldname, $subdirCallback='wfImageDir', $basename=null )|
|maintenance\FiveUpgrade.inc(778)|function upgradeOldImage()|
|maintenance\FiveUpgrade.inc(817)|function oldimageCallback( $row, $copy )|
|maintenance\FiveUpgrade.inc(834)|function upgradeWatchlist()|
|maintenance\FiveUpgrade.inc(898)|function upgradeLogging()|
|maintenance\FiveUpgrade.inc(942)|function upgradeArchive()|
|maintenance\FiveUpgrade.inc(979)|function upgradeImagelinks()|
|maintenance\FiveUpgrade.inc(1004)|function upgradeCategorylinks()|
|maintenance\FiveUpgrade.inc(1028)|function upgradeIpblocks()|
|maintenance\FiveUpgrade.inc(1061)|function upgradeRecentchanges()|
|maintenance\FiveUpgrade.inc(1125)|function upgradeQuerycache()|
|maintenance\FiveUpgrade.inc(1156)|function upgradeCleanup()|
|maintenance\FiveUpgrade.inc(1164)|function renameTable( $from, $to )|
|maintenance\FiveUpgrade.inc(1172)|function swap( $base )|
|maintenance\importLogs.inc(43)|function LogImporter( $type )|
|maintenance\importLogs.inc(49)|function setupActions()|
|maintenance\importLogs.inc(58)|function makeLineRegexp( $type, $action )|
|maintenance\importLogs.inc(71)|function importText( $text )|
|maintenance\importLogs.inc(85)|function fixDate( $date )|
|maintenance\importLogs.inc(100)|function importLine( $line )|
|maintenance\importLogs.inc(137)|function wfUnescapeWikiText( $text )|
|maintenance\initStats.inc(3)|function wfInitStats( $options=array() )|
|maintenance\nukePage.inc(12)|function NukePage( $name, $delete = false )|
|maintenance\nukePage.inc(65)|function DeleteRevisions( $ids )|
|maintenance\parserTests.inc(53)|public function ParserTest()|
|maintenance\parserTests.inc(106)|private function chomp($s)|
|maintenance\parserTests.inc(126)|public function runTestsFromFiles( $filenames )|
|maintenance\parserTests.inc(137)|private function runFile( $filename )|
|maintenance\parserTests.inc(258)|private function runTest( $desc, $input, $result, $opts )|
|maintenance\parserTests.inc(287)|foreach( $this->functionHooks as $tag => $callback )|
|maintenance\parserTests.inc(334)|private function setupGlobals($opts = '')|
|maintenance\parserTests.inc(409)|private function listTables()|
|maintenance\parserTests.inc(435)|private function setupDatabase()|
|maintenance\parserTests.inc(532)|private function setupUploadDir()|
|maintenance\parserTests.inc(555)|private function teardownGlobals()|
|maintenance\parserTests.inc(568)|private function teardownUploadDir( $dir )|
|maintenance\parserTests.inc(599)|private static function deleteFiles( $files )|
|maintenance\parserTests.inc(611)|private static function deleteDirs( $dirs )|
|maintenance\parserTests.inc(622)|private function showTesting( $desc )|
|maintenance\parserTests.inc(632)|private function showSuccess( $desc )|
|maintenance\parserTests.inc(648)|private function showFailure( $desc, $result, $html )|
|maintenance\parserTests.inc(679)|private function quickDiff( $input, $output, $inFileTail='expected', $outFileTail='actual' )|
|maintenance\parserTests.inc(701)|private function dumpToFile( $data, $filename )|
|maintenance\parserTests.inc(714)|private function colorDiff( $text )|
|maintenance\parserTests.inc(728)|private function addArticle($name, $text, $line)|
|maintenance\parserTests.inc(751)|private function requireHook( $name )|
|maintenance\parserTests.inc(766)|private function requireFunctionHook( $name )|
|maintenance\parserTests.inc(783)|private function tidy( $text )|
|maintenance\parserTests.inc(791)|private function wellFormed( $text )|
|maintenance\parserTests.inc(815)|private function extractFragment( $text, $position )|
|maintenance\parserTests.inc(841)|function __construct()|
|maintenance\parserTests.inc(850)|public function color( $color )|
|maintenance\parserTests.inc(861)|public function reset()|
|maintenance\parserTests.inc(868)|public function color( $color )|
|maintenance\parserTests.inc(872)|public function reset()|
|maintenance\parserTests.inc(878)|function __construct( $term )|
|maintenance\parserTests.inc(882)|function start()|
|maintenance\parserTests.inc(887)|function record( $test, $result )|
|maintenance\parserTests.inc(892)|function end()|
|maintenance\parserTests.inc(896)|function report()|
|maintenance\parserTests.inc(904)|function reportPercentage( $success, $total )|
|maintenance\parserTests.inc(923)|function __construct( $term )|
|maintenance\parserTests.inc(932)|function start()|
|maintenance\parserTests.inc(963)|function record( $test, $result )|
|maintenance\parserTests.inc(977)|function end()|
|maintenance\parserTests.inc(982)|function report()|
|maintenance\parserTests.inc(1016)|private function compareResult( $before, $after )|
|maintenance\parserTests.inc(1056)|private function getTestStatusInfo($testname, $after, $curRun)|
|maintenance\parserTests.inc(1116)|private function condition( $value )|
|maintenance\parserTests.inc(1130)|function end()|
|maintenance\purgeOldText.inc(10)|function PurgeRedundantText( $delete = false )|
|maintenance\rebuildInterwiki.inc(19)|function Site( $s, $l, $u )|
|maintenance\rebuildInterwiki.inc(25)|function getURL( $lang )|
|maintenance\rebuildInterwiki.inc(31)|function getRebuildInterwikiSQL()|
|maintenance\rebuildInterwiki.inc(223)|function makeLanguageLinks( &$site, &$first, $source )|
|maintenance\rebuildInterwiki.inc(241)|function makeLink( $entry, &$first, $source )|
|maintenance\rebuildrecentchanges.inc(10)|function rebuildRecentChangesTablePass1()|
|maintenance\rebuildrecentchanges.inc(47)|function rebuildRecentChangesTablePass2()|
|maintenance\rebuildtextindex.inc(17)|function dropTextIndex( &$database )|
|maintenance\rebuildtextindex.inc(27)|function createTextIndex( &$database )|
|maintenance\rebuildtextindex.inc(36)|function rebuildTextIndex( &$database )|
|maintenance\refreshLinks.inc(11)|function refreshLinks( $start, $newOnly = false, $maxLag = false, $end = 0 )|
|maintenance\refreshLinks.inc(67)|function fixLinksFromArticle( $id )|
|maintenance\refreshLinks.inc(93)|function deleteLinksFromNonexistent( $maxLag = 0 )|
|maintenance\removeUnusedAccounts.inc(19)|function isInactiveAccount( $id, $master = false )|
|maintenance\removeUnusedAccounts.inc(39)|function showHelp()|
|maintenance\updaters.inc(81)|function rename_table( $from, $to, $patch )|
|maintenance\updaters.inc(98)|function add_table( $name, $patch )|
|maintenance\updaters.inc(109)|function add_field( $table, $field, $patch )|
|maintenance\updaters.inc(122)|function do_revision_updates()|
|maintenance\updaters.inc(129)|function update_passwords()|
|maintenance\updaters.inc(157)|function do_interwiki_update()|
|maintenance\updaters.inc(172)|function do_index_update()|
|maintenance\updaters.inc(186)|function do_image_index_update()|
|maintenance\updaters.inc(200)|function do_image_name_unique_update()|
|maintenance\updaters.inc(211)|function do_logging_timestamp_index()|
|maintenance\updaters.inc(223)|function do_watchlist_update()|
|maintenance\updaters.inc(254)|function do_copy_newtalk_to_watchlist()|
|maintenance\updaters.inc(293)|function do_user_update()|
|maintenance\updaters.inc(308)|function do_logging_encoding()|
|maintenance\updaters.inc(326)|function do_schema_restructuring()|
|maintenance\updaters.inc(492)|function do_inverse_timestamp()|
|maintenance\updaters.inc(503)|function do_text_id()|
|maintenance\updaters.inc(514)|function do_namespace_size()|
|maintenance\updaters.inc(529)|function do_namespace_size_on( $table, $prefix )|
|maintenance\updaters.inc(552)|function do_pagelinks_update()|
|maintenance\updaters.inc(571)|function do_pagelinks_namespace( $namespace )|
|maintenance\updaters.inc(592)|function do_drop_img_type()|
|maintenance\updaters.inc(604)|function do_old_links_update()|
|maintenance\updaters.inc(613)|function do_user_unique_update()|
|maintenance\updaters.inc(628)|function do_user_groups_update()|
|maintenance\updaters.inc(677)|function do_user_groups_reformat()|
|maintenance\updaters.inc(703)|function do_watchlist_null()|
|maintenance\updaters.inc(722)|function do_page_random_update()|
|maintenance\updaters.inc(734)|function do_templatelinks_update()|
|maintenance\updaters.inc(786)|function do_rc_indices_update()|
|maintenance\updaters.inc(813)|function index_has_field($table, $index, $field)|
|maintenance\updaters.inc(829)|function do_backlinking_indices_update()|
|maintenance\updaters.inc(839)|function do_stats_init()|
|maintenance\updaters.inc(855)|function purge_cache()|
|maintenance\updaters.inc(864)|function do_all_updates( $shared = false, $purge = true )|
|maintenance\updaters.inc(948)|function archive($name)|
|maintenance\updaters.inc(958)|function do_restrictions_update()|
|maintenance\updaters.inc(1033)|function|
|maintenance\updaters.inc(1059)|function|
|maintenance\updaters.inc(1110)|function|
|maintenance\updaters.inc(1121)|function|
|maintenance\updaters.inc(1139)|function|
|maintenance\updaters.inc(1161)|function do_postgres_updates()|
|maintenance\updateSearchIndex.inc(7)|function updateSearchIndex( $start, $end, $maxLockTime, $quiet )|
|maintenance\updateSearchIndex.inc(83)|function lockSearchindex( &$db )|
|maintenance\updateSearchIndex.inc(98)|function unlockSearchindex( &$db )|
|maintenance\updateSearchIndex.inc(104)|function relockSearchindex( &$db )|
|maintenance\updateSearchIndex.inc(109)|function output( $text )|
|maintenance\userDupes.inc(29)|function UserDupes( &$database )|
|maintenance\userDupes.inc(38)|function hasUniqueIndex()|
|maintenance\userDupes.inc(63)|function clearDupes()|
|maintenance\userDupes.inc(81)|function checkDupes( $doDelete = false )|
|maintenance\userDupes.inc(139)|function lock()|
|maintenance\userDupes.inc(152)|function lockTable( $table )|
|maintenance\userDupes.inc(160)|function newSchema()|
|maintenance\userDupes.inc(167)|function unlock()|
|maintenance\userDupes.inc(177)|function getDupes()|
|maintenance\userDupes.inc(203)|function examine( $name, $doDelete )|
|maintenance\userDupes.inc(254)|function editCount( $userid )|
|maintenance\userDupes.inc(271)|function editCountOn( $table, $field, $userid )|
|maintenance\userDupes.inc(285)|function reassignEdits( $from, $to )|
|maintenance\userDupes.inc(301)|function reassignEditsOn( $table, $field, $from, $to )|
|maintenance\userDupes.inc(316)|function trimAccount( $userid )|
|maintenance\userOptions.inc(19)|function __construct( $opts, $args )|
|maintenance\userOptions.inc(29)|private function checkOpts( $opts, $args )|
|maintenance\userOptions.inc(42)|private function initializeOpts( $opts, $args )|
|maintenance\userOptions.inc(67)|public function run()|
|maintenance\userOptions.inc(81)|private function LISTER( )|
|maintenance\userOptions.inc(94)|private function USAGER( )|
|maintenance\userOptions.inc(130)|private function CHANGER( )|
|maintenance\userOptions.inc(171)|public static function getDefaultOptionsNames()|
|maintenance\userOptions.inc(185)|public static function showUsageAndExit()|
|maintenance\userOptions.inc(214)|public function warn()|
|maintenance\archives\rebuildRecentchanges.inc(10)|function rebuildRecentChangesTable()|
|maintenance\archives\rebuildRecentchanges.inc(68)|function rebuildRecentChangesTablePass2()|
|maintenance\language\checkExtensioni18n.php(54)|function __construct( $ext18nFilename, $extArrayName )|
|maintenance\language\checkExtensioni18n.php(103)|print "warning> messages build from guessed function {$funcCandidate}().\n";|
|maintenance\language\checkExtensioni18n.php(124)|protected function loadRawMessages( $code )|
|maintenance\language\checkExtensioni18n.php(135)|public function getLanguages()|
|maintenance\language\checkExtensioni18n.php(145)|function checkExtensionLanguage( $filename, $arrayname, $filter = null )|
|maintenance\language\checkExtensioni18n.php(181)|function checkExtensionRepository( $extdir, $db )|
|maintenance\language\checkExtensioni18n.php(227)|function usage()|
|maintenance\language\diffLanguage.php(60)|function usage()|
|maintenance\language\diffLanguage.php(65)|function ucfirstlcrest($string)|
|maintenance\language\diffLanguage.php(74)|function getMediawikiMessages($languageCode = 'En')|
|maintenance\language\diffLanguage.php(100)|function getExternalMessages($filename, $languageCode)|
|maintenance\language\lang2po.php(29)|function usage()|
|maintenance\language\lang2po.php(43)|function poHeader()|
|maintenance\language\lang2po.php(72)|function generatePo($langcode, $messages)|
|maintenance\language\lang2po.php(104)|function generatePot()|
|maintenance\language\lang2po.php(116)|function applyPot($langcode)|
|maintenance\language\rebuildLanguage.php(19)|function rebuildLanguage( $code, $write, $listUnknown )|
|maintenance\language\transstat.php(27)|function showUsage()|
|maintenance\language\transstat.php(44)|function formatPercent( $subset, $total, $revert = false, $accuracy = 2 )|
|maintenance\language\transstat.php(49)|function heading()|
|maintenance\language\transstat.php(51)|function footer()|
|maintenance\language\transstat.php(53)|function blockstart()|
|maintenance\language\transstat.php(55)|function blockend()|
|maintenance\language\transstat.php(57)|function element( $in, $heading = false )|
|maintenance\language\transstat.php(63)|function heading()|
|maintenance\language\transstat.php(71)|function footer()|
|maintenance\language\transstat.php(74)|function blockstart()|
|maintenance\language\transstat.php(77)|function blockend()|
|maintenance\language\transstat.php(80)|function element( $in, $heading = false )|
|maintenance\language\transstat.php(83)|function formatPercent( $subset, $total, $revert = false, $accuracy = 2 )|
|maintenance\language\transstat.php(107)|function heading()|
|maintenance\language\transstat.php(111)|function footer()|
|maintenance\language\transstat.php(119)|function element( $in, $heading = false )|
|maintenance\language\transstat.php(122)|function blockend()|
|maintenance\language\transstat.php(129)|function element( $in, $heading = false )|
|maintenance\language\transstat.php(132)|function blockend()|
|maintenance\language\validate.php(34)|function getVars( $filename )|
|maintenance\language\checkLanguage.inc(9)|function checkLanguage( $wgLanguages, $code )|
|maintenance\language\languages.inc(24)|function __construct( $exif = true )|
|maintenance\language\languages.inc(42)|public function getLanguages()|
|maintenance\language\languages.inc(51)|public function getIgnoredMessages()|
|maintenance\language\languages.inc(60)|public function getOptionalMessages()|
|maintenance\language\languages.inc(69)|protected function loadRawMessages( $code )|
|maintenance\language\languages.inc(96)|private function loadMessages( $code )|
|maintenance\language\languages.inc(128)|private function loadGeneralMessages()|
|maintenance\language\languages.inc(164)|public function getMessages( $code )|
|maintenance\language\languages.inc(179)|public function getGeneralMessages()|
|maintenance\language\languages.inc(191)|public function getUntranslatedMessages( $code )|
|maintenance\language\languages.inc(210)|public function getDuplicateMessages( $code )|
|maintenance\language\languages.inc(229)|public function getMessagesWithoutVariables( $code )|
|maintenance\language\languages.inc(256)|public function getMessagesWithoutPlural( $code )|
|maintenance\language\languages.inc(275)|public function getEmptyMessages( $code )|
|maintenance\language\languages.inc(294)|public function getMessagesWithWhitespace( $code )|
|maintenance\language\languages.inc(313)|public function getNonXHTMLMessages( $code )|
|maintenance\language\languages.inc(339)|public function getMessagesWithWrongChars( $code )|
|maintenance\language\languages.inc(379)|public function outputMessagesList( $messages, $code, $text = '', $level = 2, $links = false, $wikilang = null )|
|maintenance\language\writeMessagesArray.inc(19)|function writeMessagesToFile( $messages, $code, $write, $listUnknown )|
|maintenance\language\writeMessagesArray.inc(62)|function writeMessagesArray( $messages, $ignoredComments = false )|
|maintenance\language\writeMessagesArray.inc(104)|function writeMessagesBlock( $name, $comment, $messages, $ignoredComments )|
|maintenance\storage\checkStorage.php(41)|function check( $fix = false, $xml = '' )|
|maintenance\storage\checkStorage.php(316)|function error( $type, $msg, $ids )|
|maintenance\storage\checkStorage.php(339)|function checkExternalConcatBlobs( $externalConcatBlobs )|
|maintenance\storage\checkStorage.php(374)|function restoreText( $revIds, $xml )|
|maintenance\storage\checkStorage.php(425)|function importRevision( &$revision, &$importer )|
|maintenance\storage\moveToExternal.php(34)|function moveToExternal( $cluster, $maxID, $minID = 1 )|
|maintenance\storage\resolveStubs.php(18)|function resolveStubs()|
|maintenance\storage\resolveStubs.php(53)|function resolveStub( $id, $stubText, $flags )|
|maintenance\storage\compressOld.inc(11)|function compressOldPages( $start = 0, $extdb = '' )|
|maintenance\storage\compressOld.inc(36)|function compressPage( $row, $extdb )|
|maintenance\storage\compressOld.inc(72)|function compressWithConcat( $startId, $maxChunkSize, $maxChunkFactor, $factorThreshold, $beginDate,|


**serialized [#i27fe230]
|serialized\serialize.php(46)|function getVars( $_gv_filename )|
|serialized\serialize.php(58)|function unixLineEndings( $var )|


**skins [#y179edca]
|skins\Chick.php(20)|function initPage( &$out )|
|skins\CologneBlue.php(21)|function getStylesheet()|
|skins\CologneBlue.php(24)|function getSkinName()|
|skins\CologneBlue.php(28)|function doBeforeContent()|
|skins\CologneBlue.php(69)|function doAfterContent()|
|skins\CologneBlue.php(101)|function doGetUserStyles()|
|skins\CologneBlue.php(126)|function sysLinks()|
|skins\CologneBlue.php(167)|function quickBar()|
|skins\CologneBlue.php(285)|function menuHead( $key )|
|skins\CologneBlue.php(291)|function searchForm( $label = "" )|
|skins\MonoBook.php(25)|function initPage( &$out )|
|skins\MonoBook.php(46)|function execute()|
|skins\MySkin.php(20)|function initPage( &$out )|
|skins\Nostalgia.php(18)|function getStylesheet()|
|skins\Nostalgia.php(21)|function getSkinName()|
|skins\Nostalgia.php(25)|function doBeforeContent()|
|skins\Nostalgia.php(53)|function topLinks()|
|skins\Nostalgia.php(80)|function doAfterContent()|
|skins\Simple.php(20)|function initPage( &$out )|
|skins\Simple.php(27)|function reallyDoGetUserStyles()|
|skins\Standard.php(21)|function getHeadScripts()|
|skins\Standard.php(35)|function getUserStyles()|
|skins\Standard.php(52)|function doGetUserStyles()|
|skins\Standard.php(76)|function getBodyOptions()|
|skins\Standard.php(90)|function doAfterContent()|
|skins\Standard.php(137)|function quickBar()|
|skins\disabled\HTMLDump.php(20)|function initPage( &$out )|
|skins\disabled\HTMLDump.php(25)|function buildSidebar()|
|skins\disabled\HTMLDump.php(43)|function buildContentActionUrls()|
|skins\disabled\HTMLDump.php(71)|function makeBrokenLinkObj( &$nt, $text = '', $query = '', $trail = '', $prefix = '' )|
|skins\disabled\HTMLDump.php(106)|function execute()|
|skins\disabled\MonoBookCBT.php(43)|function outputPage( &$out )|
|skins\disabled\MonoBookCBT.php(47)|function execute( &$out )|
|skins\disabled\MonoBookCBT.php(75)|function getCompiledTemplate( $sourceFile )|
|skins\disabled\MonoBookCBT.php(169)|function compileTemplate( $template, $ignore )|
|skins\disabled\MonoBookCBT.php(187)|function executeTemplate( $template )|
|skins\disabled\MonoBookCBT.php(206)|function lang() { return $GLOBALS['wgContLanguageCode']; }|
|skins\disabled\MonoBookCBT.php(208)|function dir()|
|skins\disabled\MonoBookCBT.php(213)|function mimetype() { return $GLOBALS['wgMimeType']; }|
|skins\disabled\MonoBookCBT.php(214)|function charset() { return $GLOBALS['wgOutputEncoding']; }|
|skins\disabled\MonoBookCBT.php(215)|function headlinks() { |
|skins\disabled\MonoBookCBT.php(218)|function headscripts() { |
|skins\disabled\MonoBookCBT.php(222)|function pagetitle() { |
|skins\disabled\MonoBookCBT.php(226)|function stylepath() { return $GLOBALS['wgStylePath']; }|
|skins\disabled\MonoBookCBT.php(227)|function stylename() { return $this->mStyleName; }|
|skins\disabled\MonoBookCBT.php(229)|function notprintable()|
|skins\disabled\MonoBookCBT.php(234)|function jsmimetype() { return $GLOBALS['wgJsMimeType']; }|
|skins\disabled\MonoBookCBT.php(236)|function jsvarurl()|
|skins\disabled\MonoBookCBT.php(248)|function pagecss()|
|skins\disabled\MonoBookCBT.php(258)|function usercss()|
|skins\disabled\MonoBookCBT.php(271)|function sitecss()|
|skins\disabled\MonoBookCBT.php(293)|function gencss()|
|skins\disabled\MonoBookCBT.php(320)|function user_touched()|
|skins\disabled\MonoBookCBT.php(325)|function userjs()|
|skins\disabled\MonoBookCBT.php(337)|function userjsprev()|
|skins\disabled\MonoBookCBT.php(348)|function trackbackhtml()|
|skins\disabled\MonoBookCBT.php(360)|function body_ondblclick()|
|skins\disabled\MonoBookCBT.php(376)|function body_onload()|
|skins\disabled\MonoBookCBT.php(386)|function nsclass()|
|skins\disabled\MonoBookCBT.php(390)|function sitenotice()|
|skins\disabled\MonoBookCBT.php(396)|function title()|
|skins\disabled\MonoBookCBT.php(400)|function title_urlform()|
|skins\disabled\MonoBookCBT.php(404)|function title_userurl()|
|skins\disabled\MonoBookCBT.php(408)|function subtitle()|
|skins\disabled\MonoBookCBT.php(418)|function undelete()|
|skins\disabled\MonoBookCBT.php(422)|function newtalk()|
|skins\disabled\MonoBookCBT.php(461)|function showjumplinks()|
|skins\disabled\MonoBookCBT.php(466)|function bodytext()|
|skins\disabled\MonoBookCBT.php(470)|function catlinks()|
|skins\disabled\MonoBookCBT.php(477)|function extratabs( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(501)|function is_special() { return cbt_value( $this->mTitle->getNamespace() == NS_SPECIAL, 'title' ); }|
|skins\disabled\MonoBookCBT.php(502)|function can_edit() { return cbt_value( (string)($this->mTitle->userCan( 'edit' )), 'dynamic' ); }|
|skins\disabled\MonoBookCBT.php(503)|function can_move() { return cbt_value( (string)($this->mTitle->userCan( 'move' )), 'dynamic' ); }|
|skins\disabled\MonoBookCBT.php(504)|function is_talk() { return cbt_value( (string)($this->mTitle->isTalkPage()), 'title' ); }|
|skins\disabled\MonoBookCBT.php(505)|function is_protected() { return cbt_value( (string)$this->mTitle->isProtected(), 'dynamic' ); }|
|skins\disabled\MonoBookCBT.php(506)|function nskey() { return cbt_value( $this->mTitle->getNamespaceKey(), 'title' ); }|
|skins\disabled\MonoBookCBT.php(508)|function request_url()|
|skins\disabled\MonoBookCBT.php(513)|function subject_url() { |
|skins\disabled\MonoBookCBT.php(523)|function talk_url()|
|skins\disabled\MonoBookCBT.php(533)|function edit_url()|
|skins\disabled\MonoBookCBT.php(537)|function move_url()|
|skins\disabled\MonoBookCBT.php(541)|function localurl( $query )|
|skins\disabled\MonoBookCBT.php(545)|function selecttab( $tab, $extraclass = '' )|
|skins\disabled\MonoBookCBT.php(595)|function subject_newclass()|
|skins\disabled\MonoBookCBT.php(601)|function talk_newclass()|
|skins\disabled\MonoBookCBT.php(607)|function ca_variant( $code, $name, $index, $template )|
|skins\disabled\MonoBookCBT.php(623)|function is_watching()|
|skins\disabled\MonoBookCBT.php(628)|function personal_urls( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(658)|function userpage( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(669)|function mytalk( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(681)|function preferences( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(691)|function watchlist( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(701)|function mycontris( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(712)|function logout( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(724)|function anonuserpage( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(735)|function anontalk( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(746)|function anonlogin( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(756)|function login( $itemTemplate )|
|skins\disabled\MonoBookCBT.php(766)|function logopath() { return $GLOBALS['wgLogo']; }|
|skins\disabled\MonoBookCBT.php(767)|function mainpage() { return self::makeMainPageUrl(); }|
|skins\disabled\MonoBookCBT.php(769)|function sidebar( $startSection, $endSection, $innerTpl )|
|skins\disabled\MonoBookCBT.php(822)|function searchaction()|
|skins\disabled\MonoBookCBT.php(827)|function search()|
|skins\disabled\MonoBookCBT.php(832)|function notspecialpage()|
|skins\disabled\MonoBookCBT.php(836)|function nav_whatlinkshere()|
|skins\disabled\MonoBookCBT.php(840)|function article_exists()|
|skins\disabled\MonoBookCBT.php(844)|function nav_recentchangeslinked()|
|skins\disabled\MonoBookCBT.php(848)|function feeds( $itemTemplate = '' )|
|skins\disabled\MonoBookCBT.php(869)|function is_userpage()|
|skins\disabled\MonoBookCBT.php(874)|function is_ns_mediawiki()|
|skins\disabled\MonoBookCBT.php(878)|function is_loggedin()|
|skins\disabled\MonoBookCBT.php(883)|function nav_contributions()|
|skins\disabled\MonoBookCBT.php(888)|function is_allowed( $right )|
|skins\disabled\MonoBookCBT.php(893)|function nav_blockip()|
|skins\disabled\MonoBookCBT.php(898)|function nav_emailuser()|
|skins\disabled\MonoBookCBT.php(906)|function nav_upload()|
|skins\disabled\MonoBookCBT.php(917)|function nav_specialpages()|
|skins\disabled\MonoBookCBT.php(921)|function nav_print()|
|skins\disabled\MonoBookCBT.php(936)|function nav_permalink()|
|skins\disabled\MonoBookCBT.php(941)|function nav_trackbacklink()|
|skins\disabled\MonoBookCBT.php(948)|function is_permalink()|
|skins\disabled\MonoBookCBT.php(952)|function toolboxend()|
|skins\disabled\MonoBookCBT.php(957)|function language_urls( $outer, $inner )|
|skins\disabled\MonoBookCBT.php(981)|function poweredbyico() { return $this->getPoweredBy(); }|
|skins\disabled\MonoBookCBT.php(982)|function copyrightico() { return $this->getCopyrightIcon(); }|
|skins\disabled\MonoBookCBT.php(984)|function lastmod() { |
|skins\disabled\MonoBookCBT.php(998)|function viewcount()|
|skins\disabled\MonoBookCBT.php(1016)|function numberofwatchingusers()|
|skins\disabled\MonoBookCBT.php(1036)|function credits()|
|skins\disabled\MonoBookCBT.php(1050)|function normalcopyright()|
|skins\disabled\MonoBookCBT.php(1054)|function historycopyright()|
|skins\disabled\MonoBookCBT.php(1058)|function is_currentview()|
|skins\disabled\MonoBookCBT.php(1063)|function usehistorycopyright()|
|skins\disabled\MonoBookCBT.php(1073)|function privacy()|
|skins\disabled\MonoBookCBT.php(1076)|function about()|
|skins\disabled\MonoBookCBT.php(1079)|function disclaimer()|
|skins\disabled\MonoBookCBT.php(1082)|function tagline() { |
|skins\disabled\MonoBookCBT.php(1087)|function reporttime()|
|skins\disabled\MonoBookCBT.php(1091)|function msg( $name )|
|skins\disabled\MonoBookCBT.php(1095)|function fallbackmsg( $name, $fallback )|
|skins\disabled\MonoBookCBT.php(1108)|function isCssPreview()|
|skins\disabled\MonoBookCBT.php(1121)|function isJsPreview()|
|skins\disabled\MonoBookCBT.php(1134)|function getUserPageTitle()|
|skins\disabled\MonoBookCBT.php(1143)|function getUserPageText()|
|skins\disabled\MonoBookCBT.php(1152)|function makeStylesheetLink( $url )|
|skins\disabled\MonoBookCBT.php(1157)|function makeStylesheetCdata( $style )|
|skins\disabled\MonoBookCBT.php(1162)|function getEditUrl()|
|skins\disabled\MonoBookCBT.php(1170)|function getThisPDBK()|
|skins\disabled\MonoBookCBT.php(1177)|function getThisTitleUrlForm()|
|skins\disabled\MonoBookCBT.php(1187)|function getUserPageIdIp()|
|skins\disabled\MonoBookCBT.php(1204)|function getPermalink()|
|skins\disabled\MonoBookCBT.php(1231)|function isArticleView()|
|skins\disabled\MonoBookCBT.php(1242)|function isCurrentArticleView()|
|skins\disabled\MonoBookCBT.php(1256)|function isEditable()|
|skins\disabled\MonoBookCBT.php(1263)|function isLoggedIn()|
|skins\disabled\MonoBookCBT.php(1269)|function getPageUrl()|
|skins\disabled\MonoBookCBT.php(1277)|function makeTemplateLink( $template, $key, $title, $text )|
|skins\disabled\MonoBookCBT.php(1290)|function makeTemplateLinkUrl( $template, $key, $url, $text )|
|skins\disabled\MonoBookCBT.php(1302)|function makeSpecialTemplateLink( $template, $key, $specialName, $text, $query = '' )|
|skins\disabled\MonoBookCBT.php(1316)|function loadRequestValues()|
|skins\disabled\MonoBookCBT.php(1329)|function getAction()|
|skins\disabled\MonoBookCBT.php(1337)|function getOldId()|
|skins\disabled\MonoBookCBT.php(1345)|function getDiff()|
|skins\disabled\MonoBookCBT.php(1352)|function getSection()|
|skins\disabled\MonoBookCBT.php(1359)|function getSearch()|
|skins\disabled\MonoBookCBT.php(1367)|function makeSpecialParamUrl( $name, $query = '', $param = '{title_urlform}' )|
|skins\disabled\MonoBookCBT.php(1375)|function getSubjectPage()|
|skins\disabled\MonoBookCBT.php(1382)|function getTalkPage()|


**tests [#h6317882]
|tests\ArticleTest.php(10)|function ArticleTest( $name )|
|tests\ArticleTest.php(14)|function setUp()|
|tests\ArticleTest.php(27)|function tearDown()|
|tests\ArticleTest.php(33)|function testGetRevisionText()|
|tests\ArticleTest.php(42)|function testGetRevisionTextGzip()|
|tests\ArticleTest.php(51)|function testGetRevisionTextUtf8Native()|
|tests\ArticleTest.php(61)|function testGetRevisionTextUtf8Legacy()|
|tests\ArticleTest.php(71)|function testGetRevisionTextUtf8NativeGzip()|
|tests\ArticleTest.php(81)|function testGetRevisionTextUtf8LegacyGzip()|
|tests\ArticleTest.php(91)|function testCompressRevisionTextUtf8()|
|tests\ArticleTest.php(104)|function testCompressRevisionTextLatin1()|
|tests\ArticleTest.php(118)|function testCompressRevisionTextUtf8Gzip()|
|tests\ArticleTest.php(132)|function testCompressRevisionTextLatin1Gzip()|
|tests\DatabaseTest.php(11)|function DatabaseTest( $name )|
|tests\DatabaseTest.php(15)|function setUp()|
|tests\DatabaseTest.php(19)|function tearDown()|
|tests\DatabaseTest.php(23)|function testAddQuotesNull()|
|tests\DatabaseTest.php(29)|function testAddQuotesInt()|
|tests\DatabaseTest.php(37)|function testAddQuotesFloat()|
|tests\DatabaseTest.php(44)|function testAddQuotesString()|
|tests\DatabaseTest.php(50)|function testAddQuotesStringQuote()|
|tests\DatabaseTest.php(56)|function testFillPreparedEmpty()|
|tests\DatabaseTest.php(64)|function testFillPreparedQuestion()|
|tests\DatabaseTest.php(73)|function testFillPreparedBang()|
|tests\DatabaseTest.php(82)|function testFillPreparedRaw()|
|tests\GlobalTest.php(9)|function GlobalTest( $name )|
|tests\GlobalTest.php(13)|function setUp()|
|tests\GlobalTest.php(24)|function tearDown()|
|tests\GlobalTest.php(30)|function testRandom()|
|tests\GlobalTest.php(36)|function testUrlencode()|
|tests\GlobalTest.php(42)|function testReadOnlyEmpty()|
|tests\GlobalTest.php(46)|function testReadOnlySet()|
|tests\GlobalTest.php(56)|function testQuotedPrintable()|
|tests\GlobalTest.php(62)|function testTime()|
|tests\GlobalTest.php(69)|function testArrayToCGI()|
|tests\GlobalTest.php(77)|function testMimeTypeMatch()|
|tests\GlobalTest.php(99)|function testNegotiateType()|
|tests\GlobalTest.php(140)|function testTimestamp()|
|tests\GlobalTest.php(182)|function testBasename()|
|tests\ImageTest.php(10)|function ImageTest( $name )|
|tests\ImageTest.php(14)|function setUp()|
|tests\ImageTest.php(17)|function tearDown()|
|tests\ImageTest.php(20)|function testFitBoxWidth()|
|tests\RunTests.php(57)|function &buildTestDatabase( $serverType, $tables )|
|tests\SanitizerTest.php(10)|function SanitizerTest( $name )|
|tests\SanitizerTest.php(14)|function setUp()|
|tests\SanitizerTest.php(17)|function tearDown()|
|tests\SanitizerTest.php(20)|function testDecodeNamed()|
|tests\SanitizerTest.php(26)|function testDecodeNumbered()|
|tests\SanitizerTest.php(32)|function testDecodeMixed()|
|tests\SanitizerTest.php(38)|function testDecodeMixedComplex()|
|tests\SanitizerTest.php(44)|function testDecodeInvalidAmp()|
|tests\SanitizerTest.php(50)|function testDecodeInvalidNamed()|
|tests\SanitizerTest.php(56)|function testDecodeInvalidNumbered()|
|tests\SearchEngineTest.php(18)|function insertSearchData()|
|tests\SearchEngineTest.php(77)|function fetchIds( &$results )|
|tests\SearchEngineTest.php(90)|function testTextSearch()|
|tests\SearchEngineTest.php(100)|function testTextPowerSearch()|
|tests\SearchEngineTest.php(111)|function testTitleSearch()|
|tests\SearchEngineTest.php(121)|function testTextTitlePowerSearch()|
|tests\SearchMySQL4Test.php(9)|function SearchMySQL4Test( $name )|
|tests\SearchMySQL4Test.php(13)|function setUp()|
|tests\SearchMySQL4Test.php(24)|function tearDown()|