23 require_once __DIR__ .
'/libs/mime/defines.php';
24 require_once __DIR__ .
'/libs/rdbms/defines.php';
36 define(
'DB_SLAVE', -1 );
52 define(
'NS_MEDIA', -2 );
53 define(
'NS_SPECIAL', -1 );
64 define(
'NS_MAIN', 0 );
65 define(
'NS_TALK', 1 );
66 define(
'NS_USER', 2 );
67 define(
'NS_USER_TALK', 3 );
68 define(
'NS_PROJECT', 4 );
69 define(
'NS_PROJECT_TALK', 5 );
70 define(
'NS_FILE', 6 );
71 define(
'NS_FILE_TALK', 7 );
72 define(
'NS_MEDIAWIKI', 8 );
73 define(
'NS_MEDIAWIKI_TALK', 9 );
74 define(
'NS_TEMPLATE', 10 );
75 define(
'NS_TEMPLATE_TALK', 11 );
76 define(
'NS_HELP', 12 );
77 define(
'NS_HELP_TALK', 13 );
78 define(
'NS_CATEGORY', 14 );
79 define(
'NS_CATEGORY_TALK', 15 );
101 define(
'CACHE_ANYTHING', -1 );
102 define(
'CACHE_NONE', 0 );
103 define(
'CACHE_DB', 1 );
104 define(
'CACHE_MEMCACHED', 2 );
105 define(
'CACHE_ACCEL', 3 );
111 define(
'AV_NO_VIRUS', 0 ); # scan ok, no virus found
112 define(
'AV_VIRUS_FOUND', 1 ); # virus found!
113 define(
'AV_SCAN_ABORTED', -1 ); # scan aborted, the
file is probably immune
114 define(
'AV_SCAN_FAILED',
false ); # scan failed (scanner not found
or error in scanner)
122 define( 'ALF_PRELOAD_LINKS', 1 );
123 define( 'ALF_PRELOAD_EXISTENCE', 2 );
124 define( 'ALF_NO_LINK_LOCK', 4 );
125 define( 'ALF_NO_BLOCK_LOCK', 8 );
132 define( 'MW_DATE_DEFAULT', 'default' );
133 define( 'MW_DATE_MDY', 'mdy' );
134 define( 'MW_DATE_DMY', 'dmy' );
135 define( 'MW_DATE_YMD', 'ymd' );
136 define( 'MW_DATE_ISO', 'ISO 8601' );
142 define( 'RC_EDIT', 0 );
143 define( 'RC_NEW', 1 );
144 define( 'RC_LOG', 3 );
145 define( 'RC_EXTERNAL', 5 );
146 define( 'RC_CATEGORIZE', 6 );
152 define( 'EDIT_NEW', 1 );
153 define( 'EDIT_UPDATE', 2 );
154 define( 'EDIT_MINOR', 4 );
155 define( 'EDIT_SUPPRESS_RC', 8 );
156 define( 'EDIT_FORCE_BOT', 16 );
157 define( 'EDIT_DEFER_UPDATES', 32 );
158 define( 'EDIT_AUTOSUMMARY', 64 );
159 define( 'EDIT_INTERNAL', 128 );
165 define( 'MW_SUPPORTS_PARSERFIRSTCALLINIT', 1 );
166 define( 'MW_SUPPORTS_LOCALISATIONCACHE', 1 );
167 define( 'MW_SUPPORTS_CONTENTHANDLER', 1 );
168 define( 'MW_EDITFILTERMERGED_SUPPORTS_API', 1 );
172 define( 'MW_SUPPORTS_RESOURCE_MODULES', 1 );
184 define( 'OT_HTML', 1 );
185 define( 'OT_WIKI', 2 );
186 define( 'OT_PREPROCESS', 3 );
187 define( 'OT_MSG', 3 );
188 define( 'OT_PLAIN', 4 );
197 define( 'SFH_NO_HASH', 1 );
198 define( 'SFH_OBJECT_ARGS', 2 );
205 define( 'APCOND_EDITCOUNT', 1 );
206 define( 'APCOND_AGE', 2 );
207 define( 'APCOND_EMAILCONFIRMED', 3 );
208 define( 'APCOND_INGROUPS', 4 );
209 define( 'APCOND_ISIP', 5 );
210 define( 'APCOND_IPINRANGE', 6 );
211 define( 'APCOND_AGE_FROM_EDIT', 7 );
212 define( 'APCOND_BLOCKED', 8 );
213 define( 'APCOND_ISBOT', 9 );
221 define( 'PROTO_RELATIVE', '
222 define( 'PROTO_CURRENT', null );
223 define( 'PROTO_CANONICAL', 1 );
224 define( 'PROTO_INTERNAL', 2 );
235 define( 'CONTENT_MODEL_WIKITEXT', 'wikitext' );
236 define( 'CONTENT_MODEL_JAVASCRIPT', 'javascript' );
237 define( 'CONTENT_MODEL_CSS', 'css' );
238 define( 'CONTENT_MODEL_TEXT', 'text' );
239 define( 'CONTENT_MODEL_JSON', 'json' );
250 define( 'CONTENT_FORMAT_WIKITEXT', 'text/x-wiki' );
252 define( 'CONTENT_FORMAT_JAVASCRIPT', 'text/javascript' );
254 define( 'CONTENT_FORMAT_CSS', 'text/css' );
256 define( 'CONTENT_FORMAT_TEXT', 'text/plain' );
258 define( 'CONTENT_FORMAT_HTML', 'text/html' );
260 define( 'CONTENT_FORMAT_SERIALIZED', 'application/vnd.
php.serialized' );
262 define( 'CONTENT_FORMAT_JSON', 'application/json' );
264 define( 'CONTENT_FORMAT_XML', 'application/xml' );
270 define( 'SHELL_MAX_ARG_STRLEN', '100000' );
284 define( 'SCHEMA_COMPAT_WRITE_OLD', 0x01 );
285 define( 'SCHEMA_COMPAT_READ_OLD', 0x02 );
286 define( 'SCHEMA_COMPAT_WRITE_NEW', 0x10 );
287 define( 'SCHEMA_COMPAT_READ_NEW', 0x20 );
288 define( 'SCHEMA_COMPAT_WRITE_BOTH', SCHEMA_COMPAT_WRITE_OLD | SCHEMA_COMPAT_WRITE_NEW );
289 define( 'SCHEMA_COMPAT_READ_BOTH', SCHEMA_COMPAT_READ_OLD | SCHEMA_COMPAT_READ_NEW );
290 define( 'SCHEMA_COMPAT_OLD', SCHEMA_COMPAT_WRITE_OLD | SCHEMA_COMPAT_READ_OLD );
291 define( 'SCHEMA_COMPAT_NEW', SCHEMA_COMPAT_WRITE_NEW | SCHEMA_COMPAT_READ_NEW );
315 define( 'MIGRATION_OLD', 0x00000000 | SCHEMA_COMPAT_OLD );
316 define( 'MIGRATION_WRITE_BOTH', 0x10000000 | SCHEMA_COMPAT_READ_BOTH | SCHEMA_COMPAT_WRITE_BOTH );
317 define( 'MIGRATION_WRITE_NEW', 0x20000000 | SCHEMA_COMPAT_READ_BOTH | SCHEMA_COMPAT_WRITE_NEW );
318 define( 'MIGRATION_NEW', 0x30000000 | SCHEMA_COMPAT_NEW );
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
null for the local wiki Added in
Apache License January http
This document provides an overview of the usage of PageUpdater and that is
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing we can concentrate it all in an extension file
scripts txt MediaWiki primary scripts are in the root directory of the software Users should only use these scripts to access the wiki There are also some php that aren t primary scripts but helper files and won t work if they are accessed directly by the web Primary see https
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php