Localisation updates for core messages from Betawiki (2008-01-03 13:49 CET)
[lhc/web/wiklou.git] / RELEASE-NOTES
1 = MediaWiki release notes =
2
3 Security reminder: MediaWiki does not require PHP's register_globals
4 setting since version 1.2.0. If you have it on, turn it *off* if you can.
5
6 == MediaWiki 1.12 ==
7
8 THIS IS NOT A RELEASE YET
9
10 MediaWiki is now using a "continuous integration" development model with
11 quarterly snapshot releases. The latest development code is always kept
12 "ready to run", and in fact runs our own sites on Wikipedia.
13
14 Release branches will continue to receive security updates for about a year
15 from first release, but nonessential bugfixes and feature developments
16 will be made on the development trunk and appear in the next quarterly release.
17
18 Those wishing to use the latest code instead of a branch release can obtain
19 it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
20
21 === Configuration changes in 1.12 ===
22 * Marking edits as bot edits with Special:Contributions?bot=1 now requires the
23 markbotedit permission, rather than the rollback permission previously used.
24 This permission is assigned by default to the sysop group.
25 * MediaWiki now checks if serialized files are out of date. New configuration
26 variable $wgCheckSerialized can be set to false to enable old behavior (i.e.
27 to not check and assume they are always up to date)
28 * The rollback permission can now be rate-limited using the normal mechanism.
29 * New configuration variable $wgExtraLanguageNames
30 * Behaviour of $wgAddGroups and $wgRemoveGroups changed. New behaviour:
31 * * Granting the userrights privilege allows arbitrary changing of rights.
32 * * Without the userrights privilege, a user will be able to add and/or
33 remove the groups specified in $wgAddGroups and $wgRemoveGroups for
34 any groups they are in.
35 * New permission userrights-interwiki for changing user rights on foreign wikis.
36 * $wgImplictGroups for groups that are hidden from Special:Listusers, etc.
37 * $wgAutopromote: automatically promote users who match specified criteria
38
39 === New features in 1.12 ===
40 * (bug 10735) Add a warning for non-descriptive filenames at Special:Upload
41 * Add {{filepath:}} parser function to get full path to an uploaded file,
42 complementing {{fullurl:}} for pages.
43 * (bug 11136) If using Postgres, search path is explicitly set if wgDBmwschema
44 is not set to 'mediawiki', allowing multiple mediawiki instances per user.
45 * (bug 11151) Add descriptive <title> to revision history page
46 * (bug 5412) Add feed links for the site to all pages
47 * (bug 11353) Add ability to retrieve raw section content via action=raw
48 * (bug 6909) Show relevant deletion log lines when uploading a previously
49 deleted file
50 * On SkinTemplate based skins (like MonoBook), omit confusing "edit"/"view
51 source" tab entirely if the page doesn't exist and the user isn't allowed to
52 create it
53 * Clarify instructions given when an exception is thrown
54 * AuthPlugin added strictUserAuth() method to allow per-user override
55 of the strict() authentication behavior.
56 * (bug 7872) Deleted revisions can now be viewed as diffs showing changes
57 against the previous revision, whether currently deleted or live.
58 * Added tooltips for the "Go" and "Search" buttons
59 * (bug 11649) Show input form when Special:Whatlinkshere has no parameters
60 * isValidEmailAddr hook added to User method of that name, to allow, e.g., re-
61 stricting e-mail addresses to a specific domain
62 * Removed "Clear" link in watchlist editor tools, as people were afraid to
63 click it. Existing clear links will fall back to the raw editor, which is
64 very easy to clear your watchlist with.
65 * (bug 1405) Add wgUseNPPatrol option to control patroling for new articles
66 on Special:Newpages
67 * LogLine hook added to allow formatting custom entries in Special:Log.
68 * Support for Iranian calendar
69 * (bug 1401) Allow hiding logged-in users, bots and patrolled pages on
70 Special:Newpages
71 * ChangesListInsertArticleLink hook added for adding extra article info to RC.
72 * MediaWikiPerformAction hook added for diverting control after the main
73 globals have been set up but before any actions have been taken.
74 * BeforeWatchlist hook added for filtering or replacing watchlist.
75 * SkinTemplateTabAction hook added for altering the properties of tab links.
76 * OutputPage::getRedirect public method added.
77 * (bug 11848) Allow URL parameters 'editintro' and 'preload' in Special:Mypage
78 and Special:Mytalk
79 * Add ot=raw to Special:Allmessages
80 * Support for Hebrew calendar
81 * Support for Hebrew numerals in dates and times
82 * (bug 11315) Signatures can be configured in [[MediaWiki:Signature]] and
83 [[MediaWiki:Signature-anon]]
84 * Signatures for anonymous users link to Special:Contributions page rather than
85 user page
86 * Added --override switch for disabled pages in updateSpecialPages.php
87 * Provide a unique message (ipb_blocked_as_range) if unblock of a single IP
88 fails
89 because it is part of a blocked range.
90 * (bug 3973) Use a separate message for the email content when an account is
91 created by another user
92 * dumpTextPass.php can spawn fetchText.php as a subprocess, which should restart
93 cleanly if database connections fail unpleasantly.
94 * (bug 12028) Add Special:Listbots as shortcut for Special:Listusers/bot
95 * (bug 9633) Add a predefined list of delete reasons to the deletion form
96 * Show a warning message when creating/editing a user (talk) page but the user
97 does not exists
98 * (bug 8396) Ignore out-of-date serialised message caches
99 * (bug 12195) Undeleting pages now requires 'undelete' permission
100 * (bug 11810) Localize displayed semicolons
101 * (bug 11657) Support for Thai solar calendar
102 * (bug 943) RSS feed for Recentchangeslinked
103 * Introduced AbortMove hook
104 * (bug 2919) Protection of nonexistent pages with regular protection interface.
105 * Special:Upload now lists permitted/prohibited file extensions.
106 * Split ambiguous filetype-badtype message into two new messages,
107 filetype-unwanted-type and filetype-banned-type.
108 * Added link to the old title in Special:Movepage
109 * On Special:Movepage, errors are now more noticeable.
110 * It is now possible to change rights on other local wikis without the MakeSysop
111 extension
112 * Add HTML ID's mw-read-only-warning and mw-anon-edit-warning to warnings when
113 editing to allow CSS styling.
114 * Parser now returns list of sections
115 * When a user is prohibited from creating a page, a title of "View source"
116 makes no sense, and there should be no "Return to [[Page]]" link.
117 * (bug 12486) Protected titles now give a warning for privileged editors.
118 * (bug 9939) Special:Search now sets focus to search input box when no existing
119 search is active
120
121
122 === Bug fixes in 1.12 ===
123
124 * Subpages are now indexed for searching properly when using PostgreSQL
125 * (bug 3846) Suppress warnings from, e.g. open_basedir when scanning for
126 ImageMagick, diff3 et al. during installation [patch by Jan Reininghaus]
127 * (bug 7027) Shift handling of deletion permissions-checking to
128 getUserPermissionsErrors.
129 * Login and signup forms are now more correct for right-to-left languages.
130 * (bug 5387) Block log items on RecentChanges don't make use of possible
131 translations
132 * (bug 11211) Pass, as a parameter to the protectedpagetext interface
133 message, the level of protection.
134 * (bug 9611) Supply the blocker and reason for the cantcreateaccounttext
135 message.
136 * (bug 8759) Fixed bug where rollback was allowed on protected pages for wikis
137 where rollback is given to non-sysops.
138 * (bug 8834) Split off permission for editing user JavaScript and CSS from
139 editinterface to a new permission key editusercssjs.
140 * (bug 11266) Set fallback language for Fulfulde (ff) to French
141 * (bug 11179) Include image version deletion comment in public log
142 * Fixed notice when accessing special page without read permission and whitelist
143 is not defined
144 * (bug 9252) Fix for tidy funkiness when using editintro mode
145 * (bug 4021) Fix for MySQL wildcard search
146 * (bug 10699) Fix for MySQL phrase search
147 * (bug 11321) Fix width of gallerybox when option "width=xxx" is used
148 * (bug 7890) Special:BrokenRedirects links deleted redirects to a non-existent
149 page
150 * Fix initial statistics when installing: add correct values
151 * (bug 11342) Fix several 'returnto' links in permissions/error pages which
152 linked to the main page instead of targetted page
153 * Strike the link to the redirect rather than using an asterisk in
154 Special:Listredirects
155 * (bug 11355) Fix false positives in Safe Mode and other config detection
156 when boolean settings are disabled with 'Off' via php_admin_value/php_value
157 * (bug 11292) Fixed unserialize errors with Postgres by creating special Blob
158 object.
159 * (bug 11363) Make all metadata fields bytea when using Postgres.
160 * (bug 11331) Add buildConcat() and use CASE not IF for DB compatibility. Make
161 oldimage cascade delete via image table for Postgres, change fa_storage_key
162 TEXT.
163 * (bug 11438) Live Preview chops returned text
164 * Show the right message on account creation when the user is blocked
165 * (bug 11450) Fix creation of objectcache table on upgrade
166 * Fix namespace selection after submit of Special:Newpages
167 * Make input form of Special:Newpages nicer for RTL wikis
168 * (bug 11462) Fix typo in LanguageGetSpecialPageAliases hook name
169 * (bug 11474) Fix unintentional fall-through in math error handling
170 * (bug 11478) Fix undefined method call in file deletion interface
171 * (bug 278) Search results no longer highlight incorrect partial word matches
172 * Compatibility with incorrectly detected old-style DJVU mime types
173 * (bug 11560) Fix broken HTML output from weird link nesting in edit comments.
174 Nested links (as in image caption text) still don't work _right_ but they're
175 less wrong
176 * (bug 9718) Remove unnecessary css from main.css causing spacing issues on
177 some browsers.
178 * (bug 11574) Add an interface message loginstart, which, similarly to loginend,
179 appears just before the login form. Patch by MinuteElectron.
180 * Do not cache category pages if using 'from' or 'until'
181 * Created new hook getUserPermissionsErrors, to go with userCan changes.
182 * Diff pages did not properly display css/js pages.
183 * (bug 11620) Add call to User::isValidEmailAddr during accout creation.
184 * (bug 11629) If $wgEmailConfirmToEdit is true, require people to supply an
185 email address when registering.
186 * (bug 11612) Days to show in recent changes cannot be larger than 7
187 * (bug 11131) Change filearchive width/height columns to int for Postgres
188 * Support plural in undeleted{revisions,revisions-files,files}
189 * (bug 11343) If the database is read-only, ensure that undelete fails.
190 * (bug 11690) Show revert link for page moves in Special:Log to allowed users
191 only
192 * Initial-lowercase prefix checks in namespaceDupes.php now actually work.
193 * Fix regression in LinkBatch.php breaking PHP 5.0
194 * (bug 11452) wfMsgExt uses sometimes wrong language object for parsing magic
195 words when called with options ''parsemag'' or ''content''.
196 * (bug 11727) Support plural in 'historysize' message
197 * (bug 11744) Incorrect return value from Title::getParentCategories()
198 * (bug 11762) Fix native language name of Akan (ak)
199 * (bug 11722) Fix inconsistent case in unprotect tabs
200 * (bug 11795) Be more paranoid about confirming accept-encoding header is
201 present
202 * (bug 11809) Use formatNum() for more numbers
203 * (bug 11818) Fix native language name of Inuktitut (iu)
204 * Remove all commas when parsing float numbers in sorted tables
205 * Limit text field of deletion, protection and user rights changes reasons to
206 255 characters (already restricted in the database)
207 * In the deletion default reasons, calculate how much text to get from the
208 article text, rather than getting 150 characters (which may be too much)
209 * Add two messages for Special:Blockme which were used but undefined
210 * (bug 11921) Support plural in message number_of_watching_users_pageview
211 * If an IP address is blocked as part of a rangeblock, attempting to unblock
212 the single IP should not unblock the entire range.
213 * (bug 6695) Fix native language name of Southern Sotho (Sesotho) (st)
214 * Make action=render follow redirects by default
215 * If restricted read access was enabled, whitelist didn't work with special
216 pages which had spaces in theirs names
217 * If restricted read access was enabled, requests for non-existing special pages
218 threw an exception
219 * Feeds for recent changes now provide correct URLs for the change, not just
220 the page
221 * Check for if IP is blocked as part of a range when unblocking (see above bug-
222 fix) was faulty. Now fixed.
223 * Fixed wpReason URL parameter to action=delete.
224 * Do not force a password for account creation by email
225 * Ensure that rate-limiting is applied to rollbacks.
226 * Make a better rate-limiting error message (i.e. a normal MW error,
227 rather than an "Internal Server Error").
228 * Do not present an image bigger than the source when 'frameless' option is used
229 (to be consistent with the 'thumb' option now)
230 * Support {{PLURAL}} for import log
231 * Make sure that the correct log entries are shown on Special:Userrights even
232 for users with special characters in their names
233 * The number of watching users in watchlists was always reported as 1
234 * namespaceDupes.php no longer dies when coming across an illegal title
235 * (bug 12143) Do not show a link to patrol new pages for non existent pages
236 * (bug 12166) Fix XHTML validity for Special:Emailuser
237 * (bug 11346) Users who cannot edit a page can now no longer unprotect it.
238 * (bug 451) Add a generic Traditional / Simplified Chinese conversion table,
239 instead of a Traditional conversion with Taiwan variant, and a Simplified
240 conversion with China variant.
241 * (bug 12178) Fix wpReason parameter to action=delete, again.
242 * Graceful behavior for updateRestrictions.php if a page already has records
243 in the page_restrictions matching its old page_restrictions field.
244 May help with odd upgrade issues or race condition.
245 * (bug 11993) Remove contentsub "revision history"
246 * (bug 11952) Ensure we quote_ident() all schema names as needed
247 inside of the DatabasePostgres.php file.
248 * (bug 12184) Exceptions now sent to stderr instead of stdout for command-line
249 scripts, making for cleaner reporting during batch jobs. PHP errors will also
250 be redirected in most cases on PHP 5.2.4 and later, switching 'display_errors'
251 to 'stderr' at runtime.
252 * (bug 12148) Text highlight wasn't applied to cleanly deleted and added
253 lines in diff output
254 * (bug 10166) Fix a PHP warning in Language::getMagic
255 * Only mark rollback edits as minor if the user can normally mark edits minor
256 * Escape page names in the move successful page (e.g. for pages with two
257 apostrophes).
258 * (bug 12145) Add localized names of kk-variants
259 * (bug 12259) Localize the numbers in deleted pages on the sysop view
260 * Set proper page title for successful file deletion
261 * (bug 11221) Do not show 'Compare selected versions' button for a history page
262 with one revision only
263 * (bug 12267) Set the default date format to Thai solar calender for the Thai
264 language
265 * (bug 10184) Extensions' stylesheets and scripts should be loaded before
266 user-customized ones (like Common.css, Common.js)
267 * (bug 12283) Special:Newpages forgets parameters
268 * (bug 12031) All namespaces doesn't work in Special:Newpages
269 * (bug 585) Only create searchindex replica table for parser tests if db is MySQL
270 * Allow --record option if parserTests.php to work when using Postgres
271 * (bug 12296) Simplify cache epoch in default LocalSettings.php
272 * (bug 12346) XML fix when body double-click and click handlers are present
273 * Fix regression -- missing feed links in sidebar on Special:Recentchanges
274 * (bug 12371) Handle more namespace case variants in namespaceDupes.php
275 * (bug 12380) Bot-friendly EditPage::spamPage
276 * (bug 8066) Spaces can't be entered in special page aliases
277 * Hide undo link if user can't edit article
278 * (bug 12416) Fix password setting for createAndPromote.php
279 * (bug 3097) Inconsistently usable titles containing HTML character entities
280 are now forbidden. A run of cleanupTitles.php will fix up existing pages.
281 * (bug 12446) Permissions check fix for undelete link
282 * (bug 12451) AJAX title normalization tweaks
283 * When a user creating a page is not allowed to either create the page nor edit
284 it, all applicable reasons are now shown.
285 * (bug 11428) Allow $wgScript inside $wgArticlePath when emulating PATH_INFO
286 Fixes 'root'-style rewrite configurations
287
288
289 == Parser changes in 1.12 ==
290
291 The parser pass order has changed from
292
293 * Extension tag strip and render
294 * HTML normalisation and security
295 * Template expansion
296 * Main section...
297
298 to
299
300 * Template and extension tag parse to intermediate representation
301 * Template expansion and extension rendering
302 * HTML normalisation and security
303 * Main section...
304
305 The main effect of this for the user is that the rules for uncovered syntax
306 have changed.
307
308 Uncovered main-pass syntax, such as HTML tags, are now generally valid, whereas
309 previously in some cases they were escaped. For example, you could have "<ta" in
310 one template, and "ble>" in another template, and put them together to make a
311 valid <table> tag. Previously the result would have been "&lt;table&gt;".
312
313 Uncovered preprocessor syntax is generally not recognised. For example, if you
314 have "{{a" in Template:A and "b}}" in Template:B, then "{{a}}{{b}}" will be
315 converted to a literal "{{ab}}" rather than the contents of Template:Ab. This
316 was the case previously in HTML output mode, and is now uniformly the case in
317 the other modes as well. HTML-style comments uncovered by template expansion
318 will not be recognised by the preprocessor and hence will not prevent template
319 expansion within them, but they will be stripped by the following HTML security
320 pass.
321
322 The rules for template expansion during message transformation were
323 counterintuitive, mostly accidental and buggy. There are a few small changes in
324 this version: for example, templates with dynamic names, as in "{{ {{a}} }}",
325 are fully expanded as they are in HTML mode, whereas previously only the inner
326 template was expanded. I'd like to make some larger breaking changes to message
327 transformation, after a review of typical use cases.
328
329 The header identification routines for section edit and for numbering section
330 edit links have been merged. This removes a significant failure mode and fixes a
331 whole category of bugs (tracked by bug #4899). Wikitext headings uncovered by
332 template expansion or comment removal will still be rendered into a heading tag,
333 and will get an entry in the TOC, but will not have a section edit link.
334 HTML-style headings will also not have a section edit link. Valid wikitext
335 headings present in the template source text will get a template section edit
336 link. This is a major break from previous behaviour, but I believe the effects
337 are almost entirely beneficial.
338
339 The main motivation for making these changes was performance. The new two-pass
340 preprocessor can skip "dead branches" in template expansion, such as unfollowed
341 #switch cases and unused defaults for template arguments. This provides a
342 significant performance improvement in template-heavy test cases taken from
343 Wikipedia. Parser function hooks can participate in this performance improvement
344 by using the new SFH_OBJECT_ARGS flag during registration.
345
346 The pre-expand include size limit has been removed, since there's no efficient
347 way to calculate such a figure, and it would now be meaningless for performance
348 anyway. The "preprocessor node count" takes its place, with a generous default
349 limit.
350
351 The context in which XML-style extension tags are called has changed, so
352 extensions which make use of the parser state may need compatibility changes.
353
354 === API changes in 1.12 ===
355
356 Full API documentation is available at http://www.mediawiki.org/wiki/API
357
358 * (bug 11275) Enable descending sort in categorymembers
359 * (bug 11308) Allow the API to output the image metadata
360 * (bug 11296) Temporary fix for escaping of ampersands inside links in
361 pretty-printed
362 help document.
363 * (bug 11405) Expand templates implementation in the API
364 * (bug 11218) Add option to feedwatchlist to display multiple revisions for each
365 page.
366 * (bug 11404) Provide name of exception caught in error code field of internal
367 api error messages.
368 * (bug 11534) rvendid doesn't work
369 * Fixed rvlimit of the revisions query to only enforce the lower query limit if
370 revision content is requested.
371 * Include svn revision number (if install is checked-out from svn) in siteinfo
372 query.
373 * (bug 11173) Allow limited wikicode rendering via api.php
374 * (bug 11572) API should provide interface for expanding templates
375 * (bug 11569) Login should return the cookie prefix
376 * (bug 11632) Breaking change: Specify the type of a change in the recentchanges
377 list as 'edit', 'new', 'log' instead of 0, 1, 2, respectively.
378 * Compatibility fix for PHP 5.0.x.
379 * Add rctype parameter to list=recentchanges that filters by type
380 * Add apprtype and apprlevel parameters to filter list=allpages by protection
381 types and levels
382 * Add apdir parameter to enable listing all pages from Z to A
383 * (bug 11721) Use a different title for results than for the help page.
384 * (bug 11562) Added a user_registration parameter/field to the list=allusers
385 query.
386 * (bug 11588) Preserve document structure for empty dataset in backlinks query.
387 * Outputting list of all user preferences rather than having to request them by
388 name
389 * (bug 11206) api.php should honor maxlag
390 * Make prop=info check for restrictions in the old format too.
391 * Add apihighlimits permission, default for sysops and bots
392 * Add limit=max to use maximal limit
393 * Add action=parse to render parser output. Use it instead of action=render which is deprecated.
394 * Add rvtoken=rollback to prop=revisions
395 * Add meta=allmessages to get messages from site's messages cache.
396 * Use bold and italics highlighting only in API help
397 * Added action={block,changerights,delete,move,protect,rollback,unblock,undelete} and list={blocks,deletedrevs}
398 * Fixed sessionid attribute in action=login
399 * Standardized limits. Revisions and Deletedrevisions formerly using 200 / 10000,
400 now 500 / 5000, in line with other modules.
401 * Added list=allcategories module
402 * (bug 12321) API list=blocks reveals private data
403 * Fix output of wfSajaxSearch
404 * (bug 12413) meta=userinfo missing <query> tag
405 * Add list of sections to action=parse output
406
407 === Languages updated in 1.12 ===
408
409 * Afrikaans (af)
410 * Akan (ak) (new)
411 * Amharic (am) (new)
412 * Aragonese (an)
413 * Old English (ang) (new)
414 * Arabic (ar)
415 * Aramaic (arc)
416 * Mapudungun (arn) (new)
417 * Assamese (as)
418 * Asturian (ast)
419 * Aymara (ay)
420 * Samogitian (bat-smg)
421 * Boarisch (bar)
422 * Bikol Central (bcl)
423 * Belarusian (be)
424 * Belarusian Taraskievica orthography (be-tarask)
425 * Bulgarian (bg)
426 * Bislama (bi) (new)
427 * Bamanankan (bm)
428 * Bengali (bn)
429 * Bishnupriya Manipuri (bpy)
430 * Breton (br)
431 * Buginese (bug) (new)
432 * Catalan (ca)
433 * Zamboangueño (cbk-zam) (new)
434 * Min Dong (cdo) (new)
435 * Chechen (ce)
436 * Cebuano (ceb) (new)
437 * Cherokee (chr) (new)
438 * Corsican (co) (new)
439 * Crimean Tatar (Cyrillic) (crh-cyrl) (new)
440 * Crimean Tatar (Latin) (crh-latn) (new)
441 * Czech (cs)
442 * Cassubian (csb)
443 * Old Church Slavonic (cu)
444 * Welsh (cy)
445 * Danish (da)
446 * German (de)
447 * Zazaki (diq) (new)
448 * Lower Sorbian (dsb) (new)
449 * Middle Dutch (dum) (new)
450 * Divehi (dv)
451 * Ewe (ee) (new)
452 * Greek (el)
453 * English (en)
454 * Spanish (es)
455 * Estonian (et)
456 * Euskara (eu)
457 * Extremaduran (ext)
458 * Finnish (fi)
459 * Persian (fa)
460 * Fulah (ff)
461 * Võro (fiu-vro)
462 * Fijian (fj) (new)
463 * Faroese (fo)
464 * French (fr)
465 * Cajun French (frc)
466 * Franco-Provençal (frp)
467 * Frisian (fy)
468 * Irish (ga)
469 * Gön-gnŷ (gan) (new)
470 * Scottish Gaelic (gd) (new)
471 * Galician (gl)
472 * Gilaki (glk) (new)
473 * Gothic (got) (new)
474 * Ancient Greek (grc) (new)
475 * Swiss German (gsw)
476 * Hakka (hak)
477 * Hawaiian (haw) (new)
478 * Hebrew (he)
479 * Croatian (hr)
480 * Upper Sorbian (hsb)
481 * Haitian Creole French (ht)
482 * Hungarian (hu)
483 * Armenian (hy)
484 * Interlingua (ia)
485 * Indonesian (id)
486 * Interlingue (ie) (new)
487 * Igbo (ig) (new)
488 * Eastern Canadian (Unified Canadian Aboriginal Syllabics) (ike-cans) (new)
489 * Eastern Canadian (Latin) (ike-latn) (new)
490 * Ingush (inh) (new)
491 * Ido (io) (new)
492 * Icelandic (is)
493 * Italian (it)
494 * Japanese (ja)
495 * Georgian (ka)
496 * Kara-Kalpak (kaa)
497 * Kabyle (kab)
498 * Kazakh (kk)
499 * Kazakh Arabic (kk-arab) (new)
500 * Kazakh (China) (kk-cn)
501 * Kazakh Cyrillic (kk-cyrl) (new)
502 * Kazakh (Kazakhstan) (kk-kz)
503 * Kazakh Latin (kk-latn) (new)
504 * Kazakh (Turkey) (kk-tr)
505 * Kalaallisut (kl) (new)
506 * Kannada (kn)
507 * Korean (ko)
508 * Kölsch (ksh)
509 * Kurdish (Arabic) (ku-arab)
510 * Kurdish (Latin) (ku-latn)
511 * Cornish (kw) (new)
512 * Kirghiz (ky) (new)
513 * Latin (la)
514 * Ladino (lad) (new)
515 * Luxembourgish (lb) (new)
516 * Lak (lbe) (new)
517 * Limbugian (li)
518 * Líguru (lij) (new)
519 * Lozi (loz) (new)
520 * Lingala (ln)
521 * Lithuanian (lt)
522 * Moksha (mdf) (new)
523 * Malagasy (mg) (new)
524 * Malayalam (ml)
525 * Macedonian (mk)
526 * Marathi (mr)
527 * Malay (ms)
528 * Erzya (myv) (new)
529 * Nahuatl (nah)
530 * Min-nan (nan)
531 * Napolitan (nap)
532 * Low Saxon (nds)
533 * Dutch Low Saxon (nds-nl)
534 * Newari (new) (new)
535 * Dutch (nl)
536 * Norwegian (no)
537 * Novial (nov) (new)
538 * Northern Sotho (nso) (new)
539 * Occitan (oc)
540 * Deitsch (pdc) (new)
541 * Polish (pl)
542 * Piemontèis (pms)
543 * Pontic (pnt) (new)
544 * Pashto (ps)
545 * Portugese (pt)
546 * Quechua (qu)
547 * Rhaeto-Romance (rm) (new)
548 * Romanian (ro)
549 * Russian (ru)
550 * Sakha (sah)
551 * Sardinian (sc)
552 * Sicilian (scn)
553 * Scots (sco) (new)
554 * Sindhi (sd)
555 * Sassarese (sdc) (new)
556 * Seri (sei) (new)
557 * Tachelhit (shi)
558 * Slovak (sk)
559 * Southern Sami (sma) (new)
560 * Serbian (Cyrillic) (sr-ec)
561 * Swati (ss) (new)
562 * Saterland Frisian (stq) (new)
563 * Sundanese (su)
564 * Swedish (sv)
565 * Swahili (sw) (new)
566 * Tamil (ta)
567 * Teluga (te)
568 * Tetun (tet) (new)
569 * Tajik (tg)
570 * Thai (th)
571 * Tagalog (tl) (new)
572 * Tonga (to) (new)
573 * Turkish (tr)
574 * Tuvinian (tyv)
575 * Uyghur (ug)
576 * Uzbek (uz)
577 * Venitian (vec)
578 * Vietnamese (vi)
579 * West Flemish (vls)
580 * Volapük (vo)
581 * Walloon (wa)
582 * Wolof (wo)
583 * Wu (wuu) (new)
584 * Yiddish (yi)
585 * Cantonese (yue)
586 * Zhuang (za)
587 * Zealandic (zea)
588 * Chinese (zh)
589 * Old Chinese/Late Time Chinese (zh-classical)
590 * Chinese (Simplified) (zh-hans)
591 * Chinese (Traditional) (zh-hant)
592 * Chinese (Taiwan) (zh-tw)
593
594 == Compatibility ==
595
596 MediaWiki 1.12 requires PHP 5 (5.1 recommended). PHP 4 is no longer supported.
597
598 PHP 5.0.x fails on 64-bit systems due to serious bugs with array processing:
599 http://bugs.php.net/bug.php?id=34879
600 Upgrade affected systems to PHP 5.1 or higher.
601
602 MySQL 3.23.x is no longer supported; some older hosts may need to upgrade.
603 At this time we still recommend 4.0, but 4.1/5.0 will work fine in most cases.
604
605
606 == Upgrading ==
607
608 1.12 has several database changes since 1.11, and will not work without schema
609 updates.
610
611 If upgrading from before 1.7, you may want to run refreshLinks.php to ensure
612 new database fields are filled with data.
613
614 If upgrading from before 1.11, and you are using a wiki as a commons repository,
615 make sure that it is updated as well. Otherwise, errors may arise due to
616 database schema changes.
617
618 If you are upgrading from MediaWiki 1.4.x or earlier, some major database
619 changes are made, and there is a slightly higher chance that things could
620 break. Don't forget to always back up your database before upgrading!
621
622 See the file UPGRADE for more detailed upgrade instructions.
623
624
625 === Caveats ===
626
627 Some output, particularly involving user-supplied inline HTML, may not
628 produce 100% valid or well-formed XHTML output. Testers are welcome to
629 set $wgMimeType = "application/xhtml+xml"; to test for remaining problem
630 cases, but this is not recommended on live sites. (This must be set for
631 MathML to display properly in Mozilla.)
632
633 For notes on 1.11.x and older releases, see HISTORY.
634
635
636 === Online documentation ===
637
638 Documentation for both end-users and site administrators is currently being
639 built up on MediaWiki.org, and is covered under the GNU Free Documentation
640 License (except for pages that explicitly state that their contents are in
641 the public domain) :
642
643 http://www.mediawiki.org/wiki/Documentation
644
645
646 === Mailing list ===
647
648 A MediaWiki-l mailing list has been set up distinct from the Wikipedia
649 wikitech-l list:
650
651 http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
652
653 A low-traffic announcements-only list is also available:
654
655 http://lists.wikimedia.org/mailman/listinfo/mediawiki-announce
656
657 It's highly recommended that you sign up for one of these lists if you're
658 going to run a public MediaWiki, so you can be notified of security fixes.
659
660
661 === IRC help ===
662
663 There's usually someone online in #mediawiki on irc.freenode.net