Avoid silly markup like <ul >
[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.16 ==
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.16 ===
22 * (bug 18222) $wgMinimalPasswordLength default is now 1
23 * $wgSessionHandler can be used to configure session.save_handler
24 * $wgLocalFileRepo/$wgForeignFileRepos now have a 'fileMode' parameter to
25 be used when uploading/moving files
26 * (bug 18761) $wgHiddenPrefs is a new array for specifying preferences not
27 to be shown to users
28 * $wgAllowRealName and $wgAllowUserSkin were deprecated in favor of
29 $wgHiddenPrefs[] = 'realname', but the former are still retained
30 for backwards-compatibility
31 * (bug 9257) $wgRCMaxAge now defaults to three months
32 * $wgDevelopmentWarnings can be set to true to show warnings about deprecated
33 functions and other potential errors when developing.
34 * Subpages are now enabled in the MediaWiki namespace by default. This is
35 mainly a cosmetic change, and does not in any way affect the MessageCache,
36 which was already effectively treating the namespace as if it had subpages.
37 * (bug 10837) $wgVariant is a user variant selected in the user's preferences
38 if the $wgContLang does not have variant, then the $wgLang is used instead.
39 * Oracle: maintenance/ora/user.sql script for creating DB user on oracle with
40 appropriate privileges. Creating this user with web-install page requires
41 oci8.privileged_connect set to On in php.ini.
42 * Removed UserrightsChangeableGroups hook introduced in 1.14
43 * Added $wgCacheDirectory, to replace $wgFileCacheDirectory,
44 $wgLocalMessageCache, and any other local caches which need a place to put
45 files.
46 * $wgFileCacheDirectory is no longer set to anything by default, and so either
47 needs to be set explicitly, or $wgCacheDirectory needs to be set instead.
48 * $wgLocalMessageCache has been removed. Instead, set $wgUseLocalMessageCache
49 to true
50 * Removed $wgEnableSerializedMessages and $wgCheckSerialized. Similar
51 functionality is now available via $wgLocalisationCacheConf.
52 * $wgMessageCache->addMessages() is deprecated. Messages added via this
53 interface will not appear in Special:AllMessages.
54 * $wgRegisterInternalExternals can be used to record external links pointing
55 to same server
56 * (bug 19907) $wgCrossSiteAJAXdomains and $wgCrossSiteAJAXdomainExceptions added
57 to control which external domains may access the API via cross-site AJAX.
58 * $wgMaintenanceScripts for extensions to add their scripts to the default list
59 * $wgMemoryLimit has been added, default value '50M'
60 * $wgExtraRandompageSQL is deprecated, the SpecialRandomGetRandomTitle hook
61 should be used instead
62 * (bug 20489) $wgIllegalFileChars added to override the default list of illegal
63 characters in file names.
64 * (bug 19646) $wgImgAuthDetails added to display reason access to uploaded file
65 was denied to users(img_auth only)
66 * (bug 19646) $wgImgAuthPublicTest added to test to see if img_auth set up
67 correctly (img_auth only)
68 * $wgUploadMaintenance added to disable file deletions and restorations during
69 maintenance
70 * $wgCapitalLinkOverrides added to configure per-namespace capitalization
71 * (bug 21172) $wgSorbsUrl can now be an array with multiple DNSBL and renamed
72 to $wgDnsBlacklistUrls (backward compatibility kept)
73 * $wgEnableHtmlDiff has been removed
74 * (bug 3340) $wgBlockCIDRLimit added (default: 16) to configure the low end of
75 CIDR ranges for blocking
76 * $wgUseInstantCommons added for quick and easy enabling of Commons as a remote
77 file repository
78 * $wgDBAhandler added to choose a DBA handler when using CACHE_DBA
79 * $wgPreviewOnOpenNamespaces for extensions that create namespaces that behave
80 similarly to the category namespace.
81 * $wgEnableSorbs renamed to $wgDnsBlacklistUrls ($wgEnableSorbs kept for
82 backward compatibility)
83 * $wgUploadNavigationUrl now also affects images inline images that do not
84 exist. In that case the URL will get (?|&)wpDestFile=<filename> appended to
85 it as appropriate.
86 * If $wgLocaltimezone is null, use the server's timezone as the default for
87 signatures. This was always the behaviour documented in DefaultSettings.php
88 but has not been the actual behaviour for some time: instead, UTC was used
89 by default.
90 * Added $wgExtensionAssetsPath, to decouple assets serving from $wgScriptPath.
91 If not specified it will default to $wgScriptPath/extensions
92 * Added $wgCountTotalSearchHits to make search UI display total number of hits
93 with some search engines.
94 * Added $wgAdvertisedFeedTypes to decide what feed types (RSS, Atom, both, or
95 neither) MediaWiki advertises. Default is array( 'atom' ), so RSS is no
96 longer advertised by default (but it still works).
97 * Added $wgMemCachedTimeout, controls how long to wait for data from the
98 memcached servers.
99 * New configuration variables $wgDebugTimestamps and $wgDebugPrintHttpHeaders
100 for controlling debug output.
101 * New $wgBlockDisablesLogin when set to true disallows blocked users from
102 logging in.
103
104 === New features in 1.16 ===
105
106 * Add CSS defintion of the 'wikitable' class to shared.css
107 * (bug 17163) Added MediaWiki:Talkpageheader which will be displayed when
108 viewing talk pages
109 * Superfluous border="0" removed from images
110 * Added new hook 'MessageCacheReplace' into MessageCache.php. For instance
111 to allow extensions to update caches in similar way as MediaWiki invalidates
112 a cached MonoBook sidebar
113 * Special:AllPages: Move hardcoded styles from code to CSS
114 * (bug 18529) New hook: SoftwareInfo for adding information about the software
115 to Special:Version
116 * Added $wgExtPGAlteredFields to allow extensions to easily alter the data
117 type of columns when using the Postgres backend.
118 * (bug 16950) Show move log when viewing/creating a deleted page
119 * (bug 18242) Show the Subversion revision number per extensions in
120 Special:Version
121 * (bug 18420) Missing file revisions are handled gracefully now
122 * (bug 9219) Auth plugins can control editing RealName/Email/Nick preferences
123 * (bug 18466) Add note or warning when overruling a move (semi-)protection
124 * (bug 18342) insertTags works in edit summary box
125 * (bug 18411) The upload form also checks post_max_size
126 * Watchlist now has a specialized <div> tag that contains a unique class for
127 each page
128 * Added Minguo calendar support for the Taiwan Chinese language
129 * Database: unionQueries function to be used for UNION sql construction, so
130 it can be overloaded on DB abstraction level for DB specific functionality
131 * (bug 18849) Implement Japanese and North Korean calendars
132 * (bug 5755) Introduce {{CURRENTMONTH1}} and {{LOCALMONTH1}} to display the
133 month number without the leading zero
134 * (bug 13456) categoriespagetext supports PLURAL
135 * (bug 18860) Blocks of IPs affecting registered users can now block email
136 * (bug 17093) Date and time are separate parameters in Special:BlockList
137 * (bug 11484) Added ISO speed rating to default collapsed EXIF metadata view
138 * (bug 14866) Messages 'recentchangeslinked-toolbox' and
139 'recentchangeslinked-toolbox' were added to allow more fine grained
140 customisation of the user interface
141 * DISPLAYTITLE now accepts a limited amount of wiki markup (the single-quote
142 items)
143 * Special:Search now could search terms in all variant-forms. ONLY apply on
144 wikis enabled LanguageConverter.
145 * Add autopromote condition APCOND_BLOCKED to autopromote blocked users to
146 various user groups.
147 * Add $wgRevokePermissions as a means of restricting a group's rights. The
148 syntax is identical to $wgGroupPermissions, but users in these groups will
149 have these rights stripped from them.
150 * Added a PHP port of CDB (constant database), for improved local caching when
151 the DBA extension is not available.
152 * Introduced a new system for localisation caching. The system is based around
153 fast fetches of individual messages, minimising memory overhead and startup
154 time in the typical case. The database backend will be used by default, but
155 set $wgCacheDirectory to get a faster CDB-based implementation.
156 * Expanded the number of variables which can be set in the extension messages
157 files.
158 * Added a feature to allow per-article process pool size control for the parsing
159 task, to limit resource usage when the cache for a heavily-viewed article is
160 invalidated. Requires an external daemon.
161 * (bug 19576) Moved the id attribues from the anchors accompanying section
162 headers to the <span class="mw-headline"> elements within the section headers,
163 removing the redundant anchor elements.
164 * Parser::setFunctionTagHook now can be used to add a new tag which is parsed at
165 preprocesor level.
166 * Added $wgShowArchiveThumbnails, allowing sysadmins to disable thumbnail
167 display for old versions of images.
168 * In watchlists and Special:RecentChanges, the difference in page size now
169 appears in dark green if bytes were added and dark red if bytes were removed.
170 * Added FSRepo configuration properties thumbUrl and thumbDir, to allow the
171 thumbnails to be stored in a separate location to the source images.
172 * If config/ directory is not executable, the command to make it executable
173 now asks the user to cd to the correct directory
174 * Add experimental new external authentication framework, ExternalAuth
175 * (bug 18768) Remove AdminSettings requirements. Maintenance environment
176 will still load it if it exists, but it's not required for anything
177 * (bug 19900) The "listgrouprights-key" message is now wrapped in a div with
178 class "mw-listgrouprights-key"
179 * (bug 471) Allow RSS feeds for watchlist, using an opt-in security token
180 * (bug 10812) Interwiki links can have names and descriptions, fetched from
181 message 'interwiki-desc-PREFIX', not really used anywhere yet though
182 * (bug 9691) Add type (signup or login) parameter to
183 AuthPlugin::ModifyUITemplate()
184 * (bug 14454) "Member of group(s)" in Special:Preferences causes language
185 difficulties
186 * (bug 16697) Unicode combining characters are difficult to edit in some
187 browsers
188 * Parser test supports uploading results to remote CodeReview instance
189 * (bug 20013) Added CSS class "mw-version-ext-version" is wrapped on the
190 extension version in Special:Version
191 * (bug 20014) Added CSS class "mw-listgrouprights-right-name" is wrapped on the
192 right name in Special:ListGroupRights
193 * (bug 12920) New CoreParserFunction {{nse:...}} as an url-friendly equivalent
194 to {{ns:...}}
195 * (bug 16322) Allow maintenance scripts to accept DB user/pass over input or
196 params
197 * (bug 18566) Maintenance script to un/protect pages
198 * (bug 671) The HTML <abbr> tag is now permitted.
199 * RecentChanges now has a legend to explain what the Nmb! flags mean, and the
200 flags have tooltips.
201 * (bug 15209) New hook BeforeInitialize called after everything has been setup
202 but before Mediawiki::performRequestForTitle()
203 * wgMainPageTitle variable now available to JavaScript code to identify the main
204 page link, so it doesn't have to be extracted from the link URLs.
205 * (bug 16836) Display preview of signature in user preferences and describe its
206 use
207 * The default output format is now HTML 5 instead of XHTML 1.0 Transitional.
208 This can be disabled by setting $wgHtml5 = false;. Specific features enabled
209 if HTML 5 is used:
210 ** New HTML 5 input attributes allow JavaScript-free input validation in some
211 cutting-edge browsers. E.g., some inputs will be autofocused, users will
212 not be allowed to submit forms with certain types of invalid values (like
213 numbers outside the permitted ranges), etc.
214 ** The summary attribute has been removed from tables of contents. summary is
215 obsolete in HTML 5 and wasn't useful here anyway.
216 ** Unnecessary type="" attribute removed for CSS and JS.
217 ** If $wgWellFormedXml is set to false, some bytes will be shaved off of HTML
218 output by omitting some things like quotation marks where HTML 5 allows.
219 ** (bug 16921) maxlength enabled for page move comments
220 * The description message in $wgExtensionCredits can be an array with parameters
221 * New hook SpecialRandomGetRandomTitle allows extensions to modify the selection
222 criteria used by Special:Random and subclasses, or substitute a custom result,
223 deprecating the $wgExtraRandompageSQL config variable
224 * (bug 20318) Distinct CSS classes for ISBN/RFC/PMID special links added
225 * (bug 20404) Custom fields in the user creation form template can now have
226 detail labels in prefsectiontip divs.
227 * MakeSysop and MakeBot are now aliases for Special:UserRights
228 * IndexPager->mLimitsShown can now be an associative array of limit => text-to-
229 display-in-limit-form.
230 * (bug 18880) LogEventsList::showLogExtract() can now take a string-by-reference
231 and add its HTML to it, rather than having to go straight to $wgOut.
232 * Added $wgShowDBErrorBacktrace, to allow users to easily gather backtraces for
233 database connection and query errors.
234 * Show change block / unblock link on Special:Contributions if user is blocked
235 * Display note on Special:Contributions if the user is blocked, and provide an
236 excerpt from the block log.
237 * (bug 19646) New hook: ImgAuthBeforeStream for tests and functionality before
238 file is streamed to user, but only when using img_auth
239 * Note on non-existing user and user talk pages if user does not exist
240 * New hook ShowMissingArticle so extensions can modify the output for
241 non-existent pages.
242 * Added $wgUseAJAXCategories allow enabling AJAX based categories system.
243 This works on all namespaces. Enabled namespaces can be reduces using
244 $wgAJAXCategoriesNamespaces.
245 * Admins could disable some variants using $wgDisabledVariants now. ONLY apply
246 on wikis enabled LanguageConverter.
247 * (bug 16310) Credits page now lists IP addresses rather than saying the number
248 of anonymous users that edited the page
249 * New permission 'sendemail' added. Default right for all registered users. Can
250 for example be used to prevent new accounts from sending spam.
251 * (bug 16979) Tracking categories for __INDEX__ and __NOINDEX__
252 * Two new hooks, ConfirmEmailComplete and InvalidateEmailComplete, which are
253 called after a user's email has been successfully confirmed or invalidated.
254 * (bug 19741) Moved the XCF files out of the main MediaWiki distribution, for
255 a smaller subversion checkout.
256 * (bug 13750) First letter capitalization can now be a per-namespace setting
257 * (bug 21073) "User does not exist" message no longer displayed on sub-sub-pages
258 of existing users
259 * (bug 21095) Tracking categories produced by the parser (expensive parser
260 function limit exceeded, __NOINDEX__ tracking, etc) can now be disabled by
261 setting the system message ([[MediaWiki:expensive-parserfunction-category]]
262 etc) to "-".
263 * Added maintenance script sqlite.php for SQLite-specific maintenance tasks.
264 * Rewrote Special:Upload to allow easier extension.
265 * Upload errors that can be solved by changing the filename now do not require
266 reuploading.
267 * Added $wgRateLimitsExcludedIPs, to allow specific IPs to be whitelisted from
268 rate limits.
269 * (bug 21222) When $wgUseTeX is not enabled, <math> is no longer registered with
270 the parser so extensions are free to implement their own <math> tag
271 * (bug 21047) Wrap 'cannotdelete' into a div with the generic 'error' class and
272 an own 'mw-error-cannotdelete' class
273 * New hook AbortNewAccountAuto, called before account creation from AuthPlugin-
274 or ExtUser-driven requests.
275 * (bug 3480) The warning saying that the page has a history when deleting it now
276 contains the number of revisions in the history
277 * $wgStylePath and $wgLogo are now set in the default LocalSettings.php file.
278 * (bug 20186) Allow filtering history for revision deletion.
279 * New hook OtherBlockLogLink, called in Special:IPBlockList and Special:Block
280 to show links to block logs of other blocking extensions, i.e. GlobalBlocking
281 * Added search capabilities to SQLite backend
282 * rebuildtextindex.php maintenance script now supports databases other than
283 MySQL
284 * upgrade1_5.php now requires to be run --update option to prevent confusion
285 * (bug 17662) Customizable default preload/editintro for new sections in the
286 respective addsection-preload and addsection-editintro messages
287 * Added maintenance script syntaxChecker.php that checks for PHP syntax errors
288 and common coding mistakes
289 * Updated Unicode normalization tables
290 * (bug 21604) Spellcheck attribute for editsummary
291 * New wgCategories JavaScript global variable for userscripts.
292 * (bug 20717) Added checkboxes to hide users with bot and/or sysop group
293 membership in SpecialActiveusers
294 * Allow \pagecolor and \definecolor in texvc
295 * $wgTexvcBackgroundColor contains background color for texvc call
296 * (bug 21574) Redirects can now have "303 See Other" HTTP status
297 * EditPage refactored to allow extensions to derive new edit modes much easier.
298 * (bug 21826) Subsections of Special:Version now also have anchors
299 * (bug 19791) Add URL of file source as comment to thumbs (for ImageMagick)
300 * (bug 21946) Sorted wikitables do not properly handle minus signs
301 * (bug 18885) Red links for media files do not support shared repositories
302 * Added $wgFixArabicUnicode, to convert deprecated presentation forms in
303 Arabic text to their modern equivalents, and $wgFixMalayalamUnicode, to
304 convert ZWJ-based chillu sequences in Malayalam text to their Unicode 5.1
305 equivalents.
306 * (bug 22051) Returing false in SpecialContributionsBeforeMainOutput hook now
307 stops normal output
308 * Send new password e-mail in users preference language
309 * LanguageConverter now support nested using of manual convert syntax like
310 "-{-{}-}-"
311 * Upload license preview now uses the API instead of action=ajax
312 * (bug 7346) Add <guid> to RSS to avoid duplicates
313 * (bug 19996) Added new hooks for Special:Search, which allow to further
314 restrict/expand it.
315 * (bug 21936) When a revision has been patrolled, there's now a link back to the
316 article
317 * (bug 22315) SpecialRecentChangesQuery hook now pass $query_options and checks
318 the return value
319 * Separate unit test suites under t/ and tests/ were merged and moved to
320 maintenance/tests/.
321 * importImages.php maintenance script can now use the original uploader and
322 comment from another wiki.
323 * (bug 845) [[#foo|]], [[/bar|]] should be equivalent to [[#foo|foo]],
324 [[/bar|bar]] (new use of "pipe trick")
325 * (bug 21660) Support full-width commas for pipe trick
326 * (bug 7264) Magic word to give Page Title as if pipe-trick performed on it
327 {{pipetrick:}}
328 * (bug 20339) Allow using the pipe trick in log reasons
329
330 === Bug fixes in 1.16 ===
331
332 * (bug 18031) Make namespace selector on Special:Export remember the previous
333 selection
334 * The svn-version version numbers on Special:Version have been removed
335 * (bug 17374) Special:Export no longer exports two copies of the same page
336 * (bug 18190) Proper parsing in MediaWiki:Sharedupload message
337 * (bug 17617) HTML cleanup for ImagePage
338 * (bug 17964) namespaceDupes.php no longer fails on an empty interwiki table
339 * Improved error handling for image moving
340 * (bug 17974) On Special:SpecialPages, restricted special pages are now marked
341 with <strong> tags, helps with text-based browsers
342 * (bug 18259) Special:DeletedContributions now also uses
343 MediaWiki:Sp-contributions-logs for the link to Special:Log
344 * Don't add empty title="" attributes to links to anchors on the current page
345 * (bug 18291) rebuildrecentchanges.php failed to add deletion log entries
346 * (bug 18304) rebuildrecentchanges.php got size changes wrong
347 * (bug 18170) Fixed a PHP warning in Parser::preSaveTransform() in PHP 5.3
348 * (bug 18289) Database connection error page now returns correct HTML
349 * "successbox", "errorbox" and related CSS classes are now available in all
350 skins
351 * (bug 18316) Removed superfluous name="fulltext" from Special:Search
352 * (bug 18331) MediaWiki:Undelete-revision can now have wikitext
353 * The "noautoblock" flag is no longer displayed in the block log when blocking
354 an IP address
355 * (bug 18009) $wgHooks and $wgExtensionFunctions now support closures
356 * (bug 17948) Maintenance scripts now exit(0) or exit(1) as appropriate
357 * (bug 18377) Time in Enhanced ChangesList lacking localisation
358 * (bug 12998) Allow <sup>, <sub>, etc. in DISPLAYTITLE
359 * (bug 1553) Lowercase navigation headings in German
360 * (bug 7830) Pending transactions failed to commit on loginToUse() error
361 * (bug 11613) session.save_handler being over-ridden
362 * (bug 11381) session.save_handler being set twice (causes error)
363 * (bug 17835) ForeignAPIRepo throwing error on first page load for file
364 * (bug 18115) ForeignAPIRepo cache isn't working
365 * Fixed a bug caused by LanguageConverter.php, which brings an abnormal '}-'
366 after some parsed math syntax.
367 * (bug 18441) rebuildrecentchanges.inc no longer ignores $wgLogRestrictions
368 * (bug 18317) Bolded selections in 1 | 3 | etc days on RecentChanges now use
369 <strong> instead of hardcoded styles
370 * (bug 18449) Fixed items number per column on category pages when the total is
371 divisible by 3
372 * (bug 18121) maintenance/deleteArchivedRevisions.php no longer deletes
373 revisions when --delete is not passed
374 * (bug 13172) GPS coordinates in image Exif data are now actually displayed
375 * Overhaul of preferences system, includes the following bug fixes:
376 ** (bug 5363) Changes to default preferences now impact registered users.
377 ** (bug 14806) Hook to enable putting preferences in existing tabs.
378 ** (bug 17191) Registration date now listed on preferences page.
379 ** The user_properties table (now used for storing preferences) has been added
380 to $wgSharedTables.
381 ** Note that this change will break some extensions which have not been adapted
382 for it.
383 * (bug 17020) Adding fallback encodings for Traditional and Simplified Chinese
384 languages while the the text is typed as URLs.
385 * (bug 17614) Prev / Next links are not shown if all results are shown
386 * (bug 18207) Strange spacing before [[irc:...]] links
387 * Removed float from the user login form in RTL interface - caused display
388 problems in FF2
389 * (bug 15008) Redirect images are now subject to Bad image list rules
390 * (bug 6802) profileinfo.php now also work on other database servers than MySQL
391 * (bug 16925) Diffs no longer fail when $wgExternalDiffEngine is set to
392 'wikidiff' or 'wikidiff2' but extension is not installed
393 * (bug 18326) Chmod errors in file repos have been hidden
394 * (bug 18718) Comma after a } create a error in IE
395 * (bug 18716) Removed redundant class in Modern skin CSS for category links and
396 tweaked spacing.
397 * (bug 18656) Use proper directory separators in wfMkdirParents()
398 * (bug 18549) Make Special:Blockip respect $wgEnableUserEmail and
399 $wgSysopEmailBans
400 * (bug 16912) Tooltips on images with link= disappear
401 * (bug 18389) Localise numbers in EXIF data
402 * (bug 18522) Wrap MediaWiki:Protect-cascadeon in a div for identification
403 * (bug 18438) Tweak HTML for preview bar for consistency and accessibility
404 * (bug 18432) Updated documentation for dumpBackup.php
405 * Fix array logic in Sanitizer::removeHTMLtags so that it doesn't strip good
406 tags that were redundantly defined.
407 * (bug 14118) SpecialPage::getTitleFor does not return a localised name
408 * (bug 18698) Renaming non entry point maintenance scripts from .inc.php to
409 .inc
410 * Deprecated methods Title::getInterwikiLink, Title::userCanCreate(),
411 Title::userCanEdit() and Title::userCanMove() have been removed
412 * Only show upload links on file description if $wgEnableUploads = true
413 and user can upload
414 * Don't say "You need to log in to upload/move", because it's possible that
415 uploading/moving is disabled for registered users as well (e.g. only sysops)
416 * (bug 18943) Handle invalid titles gracefully at Special:Mostlinked
417 * (bug 8873) Enable variant conversion in text on 'alt' and 'title' attributes
418 * (bug 10837) Introducing the StubUserVariant class to determine the variant
419 variable instead of using this to overrules the user language preference.
420 * (bug 19014) If user had deletedhistory right, but not undeleted right, then
421 show "view" instead of "view/restore" on logs.
422 * (bug 19017) TOC level calculation error in an odd case
423 * (bug 18999) CSS update for RTL interwiki links
424 * (bug 18925) history.js removes class names of list elements on initialization
425 * Multiple whitespace in TOC anchors is now stripped, for consistency with the
426 link from the edit comment
427 * (bug 19112) Preferences now respects $wgUseExternalEditor
428 * (bug 18173) MediaWiki now fails when unable to determine a client IP
429 * (bug 19170) Special:Version should follow the content language direction
430 * (bug 19160) maintenance/purgeOldText.inc is now compatible with PostgreSQL
431 * Fixed performance regression in "bad image list" feature
432 * Show user preference 'Use live preview' if $wgLivePreview is enabled only
433 * (bug 17014) Blocked users can no longer use Special:UserRights unless they
434 can add/remove *all* groups (have 'userrights' permission).
435 * (bug 19294) Always show Sp-contributions-footer(-anon)
436 * Attempts to restrict reading of pages while anonymous viewing is allowed
437 via extensions not using the userCan hook and via $wgRevokePermissions now
438 work.
439 * (bug 8445) Multiple-character search terms are now handled properly for
440 Chinese
441 * (bug 19450) Use formatNum for "Number of edits" in Special:Preferences
442 * (bug 11242) Check for MySQL storage engines during installation now checks
443 whether the engines are actually available
444 * (bug 19390) Omit the "printable version" link on the printable version
445 * (bug 18394) img_auth.php now respects userCan
446 * (bug 19509) Uploading to a file named '0' previously treated it as null input
447 and attempted to upload with the source name. Now warns about not having an
448 extension (since 0.ext is perfectly valid)
449 * (bug 19468) Enotif preferences are now only displayed when they are turned on
450 * (bug 19442) Show/hide options on watchlist only work once
451 * (bug 19602) PubMed Magic links now use updated NIH url
452 * (bug 19637) externallinks have links to self
453 * Don't load Opera 9.5 RTL fixes for Opera 9.6
454 * Remove five-year-old KHTMLFixes.css, which is unlikely to be relevant anymore
455 and was causing problems.
456 * Removed repetition of URIs in the title attributes of external links.
457 * (bug 19693) User name is now escaped in "Contributions for ..." link on
458 Special:BlockIP
459 * (bug 19571) Override buildConcat for SQLite.
460 * Log in and log out links no longer return to page view when clicked from
461 history view, edit page, or something similar
462 * (bug 19513) RTL fixes for new Search UI
463 * (bug 16497) Special:Allmessages is paginated
464 * (bug 18708) CSS plainlinks class now available to all skins
465 * (bug 19590) Database error messages no longer have "MySQL" hardcoded as the
466 database type
467 * (bug 19759) successbox on Special:Preferences now correctly aligned on
468 standard, nostalgia and cologneblue skin
469 * (bug 19814) interwiki links from file links ([[File:Foo.jpg|link=de:Test]])
470 are no longer recorded in the pagelinks table
471 * (bug 19784) date option "ISO 8601" produced illegal id
472 * (bug 19761) Removed autogenerated <meta keywords> tag with link data.
473 Keyword set was not useful, and is ignored by modern search engines anway.
474 * (bug 19827) Special:SpecialPages title is "Upload file
475 * (bug 19355) Added .xhtml, .xht to upload file extension blacklist
476 * (bug 19287) Workaround for lag on history page in Firefox 3.5
477 * (bug 19564) Updated docs/hooks.txt
478 * (bug 18751) Fix for buggage in profiling setup for some extensions on PHP 5.1
479 * (bug 17139) ts_resortTable inconsistent trimming makes date sorting fragile
480 * (bug 19445) Change oldimage table to use ON UPDATE CASCADE for FK to image
481 table.
482 * (bug 14080) Short notation links to subpages didn't work in edit summaries
483 * (bug 17374) Special:Export no longer exports multiple copies of pages
484 * (bug 19818) Edits to user CSS/JS subpages can now be marked as patrolled by
485 users who can't edit them
486 * (bug 19839) Comments in log items are no more double escaped
487 * (bug 18161) Fix inconsistent separators in watchlist link toolbars with
488 "enhanced recent changes"
489 * (bug 16877) Moving a page over a redirect no longer leaves an orphan entry in
490 the recentchanges table
491 * (bug 16009) Limit selection forms based on Pager now links to the correct page
492 when using long urls
493 * The display of the language list on the preferences is more comply with the
494 BCP 47 standards.
495 * (bug 19849) Custom X-Vary-Options header now disabled unless $wgUseXVO is set
496 * (bug 19301) Duplicates entries in $wgAddGroups, $wgRemoveGroups,
497 $wgGroupsAddToSelf and $wgGroupsRemoveFromSelf are no more displayed on
498 Special:ListGroupRights
499 * (bug 18799) Special:Userlogin now handles correctly the returnto parameter
500 to not link back to Special:Userlogout when user's language isn't the same as
501 content's language
502 * (bug 19479) Show proper error message when unable to connect to PostgreSQL
503 database with username/password in MediaWiki's setup
504 * (bugs 18407, 18409) Special:Upload is now listed on Special:Specialpages only
505 if uploads are enabled and the user can access it
506 * (bug 17988) Spaces before [[Category:]] links are no longer ignored
507 * (bug 19957) All known-failing tests now marked disabled; added --run-disabled
508 option to parser test suite to run disabled tests if desired.
509 * (bug 16311) Make recent change flags (n/m/b) <abbr>s instead of <span>s
510 * (bug 15680) Split the edit tip message of user CSS/JS subpage into
511 "usercssyoucanpreview" and "userjsyoucanpreview" respectively.
512 * (bug 12110) Split the rights for editing users' CSS/JS subpage from
513 "editusercssjs" into "editusercss" and edituserjs" respectively.
514 * (bug 19394) RecentChanges feed URLs for log items with no revisions
515 (eg Newuser, Userrights) are no longer broken
516 * (bug 17395) Remote file descriptions use user language ($wgLang), not wiki
517 language ($wgContLang)
518 * (bug 11867) Lock error on redirect table when running orphans.php
519 * (bug 18930) initStats.php now refreshes active users count
520 * (bug 18699) Using the nosummary URL option no longer triggers the "You have
521 not provided a summary" warning for those who activated it in their
522 preferences
523 * (bug 18855) commandLine.inc and Maintenance.php are now properly included
524 using the full path
525 * (bug 18497) Fixed broken style sheets in Opera fullscreen mode
526 * (bug 16084) Default memory limit has be increased to 50M, see $wgMemoryLimit
527 * (bug 17864/19519) Added proper input normalization in Special:UserRights
528 * (bug 20086) Add Hook to add extra statistics at the end of Special:Statistics
529 * (bug 19289) importDump.php can now handle bzip2 and 7zip
530 * (bug 20131) Fixed a PHP notice for users having the "rollback" right on
531 Special:RecentChangesLinked
532 * Do not transform EXIF fields with pure text to avoid results like
533 foo,bar@example,com
534 * (bug 20176) Fix login/logout links in skin CologneBlue
535 * (bug 20203) "Powered by Mediawiki" now has height/width on image tag
536 * (bug 20273) Fix broken output when no pages are found in the content
537 namespaces
538 * (bug 20265) Make AncientPages and UnusedFiles work on SQLite
539 * Fixed XSS vulnerability for Internet Explorer clients (only pre-release
540 versions of MediaWiki were affected).
541 * (bug 14817) Moving a page to a subpage of itself moves it twice
542 * (bug 20289) $wgMaximumMovedPages should only count pages actually moved
543 * (bug 15248) Non-breaking spaces and certain other Unicode space characters
544 are now normalized to ordinary spaces in titles; if your wiki has existing
545 titles with such characters, run cleanupTitles.php and/or cleanupImages.php
546 * (bug 11143) Links containing invalid UTF-8 percent-code sequences are now
547 cleanly disabled instead of breaking parsing entirely on PHP 5.2.
548 * (bug 20296) Fixed an PHP warning in Language::getMagic() in PHP 5.3
549 * (bug 20358) Unprotect tab was missing accesskey; now same as protect tab.
550 * (bug 20317) Cleaned up default main page link accesskey settings
551 * (bug 20362) Special:Statistics now produces valid HTML when view counters are
552 enabled
553 * (bug 19857) maintenance/deleteRevision.php on last revision no longer breaks
554 target page
555 * (bug 20365) Page name with with c/g/h/j/s/u + x are now correctly handled in
556 Special:MovePage with Esperanto as content language
557 * (bug 20364) Fixed regression in GIF metadata loading
558 * (bug 20299) MediaWiki:Move-subpages and MediaWiki:Move-talk-subpages can now
559 use wikitext
560 * (bug 15475) DatabaseBase::setFlag(), DatabaseBase::clearFlag() and
561 DatabaseBase::getFlag() now have documentation
562 * (bug 19966) MediaWiki:License-header is now used for the licensing header in
563 the file description page instead of MediaWiki:License
564 * (bug 20380) Links to history/deleted edits at the top of
565 Special:RevisionDelete are no more displayed when when doing log suppression
566 * (bug 8143) Localised parser function names are now correctly case insensitive
567 if they contain non-ASCII characters
568 * (bug 19055) maintenance/rebuildrecentchanges.php now purges
569 Special:Recentchanges's RSS and Atom feed cache
570 * The installer will now try to bypass PHP's max_execution_time
571 * (bug 20260) SQLite no longer tries to automatically create the database at
572 execution time, this now happens only at install time; if it is not available
573 at script execution, it now throws an exception
574 * Fixed EditFilterMerged hook so the hookError parameter serves a purpose
575 (analogous to EditFilter hook)
576 * (bug 2257) Tag extensions can expand template parameters provided to the tag,
577 by using a new parameter added to the recursiveTagParse function
578 * (bug 14900) __INDEX__ and __NOINDEX__ no longer override site config set in
579 $wgArticleRobotPolicies.
580 * (bug 20466) Hidden categories are no more displayed when printing
581 * (bug 20446) When changing user rights with User@remotewiki and remotewiki is
582 the local wiki, the user is now treated as the local user
583 * (bug 20494) OutputPage::getArticleBodyOnly() no longer requires an useless
584 argument
585 * (bug 20136) Protection form JavaScript now synchronizes the expiry boxes on
586 any change, in addition to onkeyup.
587 * Don't link to "edit this page" on MediaWiki:Noarticletext if user is not
588 allowed to create page. Done via new message
589 MediaWiki:Noarticletext-nopermission
590 * Improved compatibility between the Vector skin and addPortletLink() from
591 wikibits.js: empty portlets are now present but hidden, adding an element to a
592 portlet unhides it
593 * (bug 19531) addPortletLink() now wraps inserted labels in a <span> element to
594 be compatible with the CSS for the Vector skin
595 * (bug 20578) Wrong localized image metadata - duplicated string?
596 * (bug 20556) Stub threshold's "other" <input> in Special:Preferences now has a
597 correct type="text" parameter
598 * (bug 482) Don't include TOC in the printable version if it has been hidden
599 * Adjust the time according to the user configuration on Special:Revisiondelete
600 * (bug 20624) Installation no longer allows "qqq" as the chosen language
601 * (bug 20634) The installer-created database user will now have all rights on
602 the database so that upgrades will go more smoothly.
603 * (bug 18180) Special:Export ignores limit, dir, offset parameters
604 * User::getBlockedStatus() works for all kinds of user objects and doesn't
605 assume the user object is equal to the current-user object ($wgUser)
606 * (bug 20517) Cancel link from edit page now returns to the old version when
607 editing an old version
608 * (bug 16902) Installer no longer shows warnings when exec() has been disabled
609 by disable_functions
610 * (bug 20726) Title::getLatestRevID's documentation now says that the function
611 returns false if the page doesn't exist
612 * (bug 20751) ForeignApiRepo now urldecodes filenames when saving to local cache
613 * (bug 20730) Fix to Special:Version ViewVC link for branch checkouts
614 * (bug 20353) wfShellExec() was adding extra quotes on Windows Vista, causing
615 command line scripts to fail
616 * (bug 20702) Parser functions can now be used correctly in
617 MediaWiki:Missing-article
618 * (bug 14117) "redirected from" is now also shown on foreign file redirects
619 * (bug 17747) Only display thumbnail column in file history if the image can
620 be rendered.
621 * (bug 3421) Live preview no longer breaks user CSS/JS previews
622 * (bug 11264) The file logo on a file description page for documents (PDF, ...)
623 now links to the file rather than the file description page
624 * Password fields built with HTMLForm now still have the type="password"
625 attribute if $wgHtml5=false.
626 * (bug 20836) Preload now works for MediaWiki namespace
627 * (bug 20885) Search box no longer suggests unavailable special pages
628 * (bug 20948) "Create this page" on Special:Search is no longer displayed when
629 searching for special pages
630 * (bug 20524) Hideuser: Show nice error when trying to block hidden user without
631 hideuser right
632 * (bug 21026) Fixed file redirects on shared repos on non-English client wikis
633 * (bug 21030) Fixed schema choices from being overwritten by defining unique
634 field names per driver.
635 * (bug 21115) wgCanonicalSpecialPageName javascript variable is now always
636 false on non-special pages
637 * (bug 21113) "Other statistics" header on Special:Statistics is no more
638 displayed when there isn't any entry in it
639 * (bug 21114) Special:Contributions no longer shows diff links for new
640 revisions
641 * (bug 21116) MediaWiki:Templatesused, MediaWiki:Templatesusedpreview and
642 MediaWiki:Templatesusedsection now support plural
643 * (bug 21079) There is no more line wrapping between label and field in
644 Special:Log
645 * (bug 20256) Fixed SQL errors on Special:Recentchanges and
646 Special:Recentchangeslinked on SQLite backend
647 * (bug 20880) Fixed updater failure on SQLite backend
648 * (bug 21182) Fixed invalid HTML in Special:Listgrouprights
649 * (bug 20242) Installer no longer promts for user credentials for SQLite
650 databases
651 * (bug 20911) Installer failed to create a SQLite database
652 * (bug 20847) Deprecated deprecated akeytt() removed in wikibits.js leaving
653 dummy
654 * (bug 21161) Changing $wgCacheEpoch now always invalidates file cache
655 * (bug 20268) Fixed row count estimation on SQLite backend
656 * (bug 20275) Fixed LIKE queries on SQLite backend
657 * (bug 21234) Moving subpages of titles containing \\ now works properly
658 * (bug 21006) maintenance/updateArticleCount.php now works again on PostgreSQL
659 * (bug 19319) Add activeusers-intro message at top of SpecialActiveUsers page
660 * (bug 21255) Fixed hostname construction for DNSBL checking
661 * (bug 18019) Users are now warned when moving a file to a name in use on a
662 shared repository and only users with the 'reupload-shared' permission can
663 complete the move.
664 * (bug 18909) Add missing Postgres INSERT SELECT wrapper
665 * User::isValidPassword now only returns boolean results,
666 User::getPasswordValidity can be used to get an error message string
667 * The error message shown in Special:ChangePassword now parses wiki markup
668 * (bug 19859) Removed experimental HTMLDiff feature
669 * Removed section edit links in edit conflict form
670 * Allow SpecialActiveusers to work on non-MySQL databases
671 * (bug 6579) Fixed protecting images from uploading only
672 * (bug 18609) Search index was empty for some pages
673 * (bug 13453) rebuildrecentchanges maintenance script works on PG again
674 * (bug 16583) Reduce false positives when checking for PHP (on upload, etc.)
675 * (bug 20112) Bitrotted tests in the t/ directory were failing.
676 * (bug 21470) MediaWiki:Sp-contributions-explain is now wrapped in a <p> with
677 id "mw-sp-contributions-explain"
678 * (bug 19159) Fixed \overleftrightarrow in texvc
679 * (bug 19391) Fix caching for Recent ChangesFeed.
680 * (bug 21455) Fixed "Watch this page" checkbox appearing on some special pages
681 even to non-logged in users
682 * (bug 21551) Rewrote the Squid purge HTTP client to provide a more robust and
683 general implementation of HTTP, allowing it to purge non-Squid caches such as
684 Varnish.
685 * Fixed corruption of long UDP debug log messages by using socket_sendto()
686 instead of fsockopen() with fwrite().
687 * (bug 16884) Fixed feed links in sidebar not complying with URL parameters
688 of the displayed page
689 * (bug 21403) memcached class renamed to MWMemecached to avoid conflict with
690 PHP's memcached extension
691 * (bug 21650) Both calls to SkinTemplateTabs hook are now compatible
692 * (bug 21672) Add missing Accept-Language to both Vary and XVO headers
693 * (bug 21679) "Edit block reasons" link at the bottom of Special:Blockip is now
694 only displayed to the users that have "editinterface" right
695 * (bug 21740) Attempting to protect a page that doesn't exist (salting) returns
696 "unknown error"
697 * (bug 18762) both redirects and links get fixed one after another if
698 redirects-only switch is not present
699 * (bug 20159) thumbnails rerendered if older that $wgThumbnailEpoch
700 * Fixed a bug which in some situations causes the job queue to grow forever,
701 due to an infinite loop of job requeues.
702 * (bug 21523) File that can have multiple pages (djvu, pdf, ...) no longer have
703 the page selector when they have only one page
704 * (bug 21559) "logempty" message is now wrapped in a div with class
705 "mw-warning-logempty" when used in log extract
706 * (bug 20549) Parser tests were broken on SQLite backend
707 * (bug 21776) Interwiki urls like http://en.wikibooks.org/wiki/cs: should give
708 a redirect instead of a baderror.
709 * (bug 21803) Special:MyContributions now keeps the query string parameters
710 * Redirecting special pages now keep query string paramters set to "0" (e.g.
711 for namespace)
712 * (bug 20765) Special:ListGroupRights no longer misses addables and removables
713 groups if there are duplicate entries
714 * (bug 21814) Message shown when rolling back an edit with a deleted username
715 now shows '(username deleted)' instead of broken user tool links
716 * (bug 21536) Fixed JavaScript error on Special:Search caused by an incorrect ID
717 * (bug 21535) RecentChanges RSS feed now always recognises the namespace filter,
718 previously it sometimes didn't due to caching.
719 * (bug 20388) ProfilerSimpleText no longer outputs comment on action=raw
720 * refreshLinks.php now purges orphaned redirect table rows
721 * (bug 2971) Swap links of hist & diff location on Special:Contributions for
722 consistency with RC/WL
723 * (bug 21986) Special page names were are now capitalized by content language
724 * If two log type have the same description, they're now both displayed in the
725 type selector on Special:Log
726 * (bug 20115) Special:Userlogin title says "Log in / create account" even if the
727 user can't create an account
728 * (bug 2658) Don't attempt to set the TZ environment variable.
729 * (bug 9794) User rights log entries for foreign user now links to the foreign
730 user's page if possible
731 * (bug 14717) Don't load nonexistent CSS fix files for non-Monobook skins
732 * (bug 22034) Use wfClientAcceptsGzip() in wfGzipHandler instead of
733 reimplementing it.
734 * (bug 19226) First line renders differently on many UI messages.
735 * (bug 21303) Comments are no longer stripped from MediaWiki:Common.js and
736 skin-specific JS pages
737 * (bug 5061) Use the more precise thumbcaption thumbimage and thumbinner classes
738 for image divs.
739 * (bug 22096) IE50Fixes.css and IE55Fixes.css have been dropped from the Monobook
740 and Chick skins
741 * Fixed bug involving unclosed "-{" markup in the language converter
742 * (bug 21870) No longer include Google logo from an external server on wiki error.
743 * (bug 22181) Do not truncate if the ellipsis actually make the string longer
744 * (bug 16039) Text disappearing after a bad image
745 * (bug 18784) Internal links like [[File:Foo|caption]] should read 'caption',
746 not 'File:Foo' when Foo is not an image
747 * (bug 21518) Special:UserRights no longer displays the user name box for users
748 that can only change their rights
749 * (bug 21593) Special:UserRights now lists automatic groups membership
750 * (bug 22364) Setting $wgUseExternalEditor to false no longer hides the reupload
751 link from file pages
752 * Fix bug introduced in MediaWiki 1.12: The author field in
753 $wgExtensionCredits is no longer sorted with sort() but rather used
754 as it appears in extensions as was the case before r30117 where it
755 was unintentionally sorted along with other fields.
756 * (bug 19334) Textarea no longer jumps when editing longer articles in IE8
757 * (bug 5210) preload parser should parse <noinclude> (as well as <includeonly>)
758 * (bug 8785) Pipe trick should work with colon functions
759 * (bug 4099) Pipe trick doesn't work when emptiness is only provided by empty
760 template parameter
761
762 == API changes in 1.16 ==
763
764 * Added uiprop=changeablegroups to meta=userinfo
765 * Added usprop=gender to list=users
766 * (bug 18311) action=purge now works for images too
767 * Add parentid to prop=revisions output
768 * (bug 17832) action=delete returns 'unknownerror' instead of 'permissiondenied'
769 when the user is blocked
770 * (bug 18546) Added timestamp of new revision to action=edit output
771 * (bug 18554) Also list hidden revisions in list=usercontribs for privileged
772 users
773 * (bug 13049) "API must be accessed from the primary script entry point" error
774 * (bug 16422) Don't display help for format=jsonfm unless specifically requested
775 * Added PHP and database version to meta=siteinfo output
776 * (bug 18533) Add readonly message to meta=siteinfo output
777 * (bug 18518) Add clprop=hidden to prop=categories
778 * (bug 18710) Fixed internal error with empty parameter in action=paraminfo
779 * (bug 18709) Missing descriptions for some parameters in action=paraminfo
780 output
781 * (bug 18731) Show correct SVN links for extension modules in api.php?version
782 * (bug 18730) Add version information to action=paraminfo output
783 * (bug 18743) Add ucprop=size to list=usercontribs
784 * (bug 18749) Add generator flag to action=paraminfo output
785 * Make action=block respect $wgEnableUserEmail and $wgSysopEmailBans
786 * Made deleting file description pages without files possible
787 * (bug 18773) Add content flag to siprop=namespaces output
788 * (bug 18785) Add siprop=languages to meta=siteinfo
789 * (bug 14200) Added user and excludeuser parameters to list=watchlist and
790 list=recentchanges
791 * Added index, fromtitle and byteoffset fields to action=parse&prop=sections
792 output
793 * (bug 19313) action=rollback returns wrong revid on master/slave setups
794 * (bug 19323) action=parse doesn't return section tree on pages with Cite
795 warnings
796 * (bug 18720) Add anchor field to action=parse&prop=sections output
797 * (bug 19423) The initial file description page used caption in user lang
798 rather than UI lang
799 * (bug 17809) Add number of users in user groups to meta=siteinfo
800 * (bug 18533) Add readonly reason to readonly exception
801 * (bug 19528) Added XSLT parameter to API queries in format=xml
802 * (bug 19040) Fix prependtext and appendtext in combination with section
803 parameter in action=edit
804 * (bug 19090) Added watchlist parameter, deprecated watch and unwatch
805 parameter in action=edit
806 * Added fields to list=search output: size, wordcount, timestamp, snippet
807 * Where supported by backend, list=search adds a 'searchinfo' element with
808 optional info: 'totalhits' count and 'suggestion' alternate query term
809 * (bug 19907) $wgCrossSiteAJAXdomains added to allow specified (or all)
810 external domains to access api.php via AJAX, if the browser supports the
811 Access-Control-Allow-Origin HTTP header
812 * (bug 19999) Made metadata and properties of search results optional. Added
813 srprop and srinfo.
814 * (bug 20700) Add amprop=default to meta=allmessages to list default value for
815 customized messages
816 * Don't parse magic words in meta=allmessages, output messages unparsed
817 * (bug 21105) list=usercontribs can now list contribs for User:0
818 * (bug 21085) list=deletedrevs no longer returns only one revision when
819 drcontinue param is passed
820 * (bug 21106) Deprecated parameters now tagged in action=paraminfo
821 * (bug 19004) Added support for tags
822 * (bug 21083) list=allusers no longer returns current timestamp for users
823 without registration date
824 * (bug 20967) action=edit allows creation of invalid titles
825 * (bug 19523) Add inprop=watched to prop=info
826 * (bug 21589) API: Separate summary and initial page text for uploads
827 * (bug 21817) list=usercontribs returns empty result for empty ucuser
828 * (bug 21441) meta=userinfo&uiprop=options no longer returns default options
829 for logged-in users under certain circumstances
830 * (bug 21945) Add chomp control in YAML
831 * Expand the thumburl to an absolute url to make it consistent with url and
832 descriptionurl
833 * (bug 20233) ApiLogin::execute() doesn't handle LoginForm :: RESET_PASS
834 * (bug 22061) API: add prop=headitems to action=parse
835 * (bug 22240) API: include time in siteinfo
836 * (bug 22241) Quick edit is still using the deprecated watch parameter (API: Setting default for watch/unwatch wrongly set)
837 * (bug 22245) blfilterredirect=nonredirects in blredirect mode wrongly filtering
838 * (bug 22248) Output extension URLs in meta=siteinfo&siprop=extensions
839 * Support key-params arrays in 'descriptionmsg' in meta=siteinfo&siprop=extensions
840 * (bug 21922) YAML output should quote asterisk when used as key
841 * (bug 22297) safesubst: to allow substitution without breaking transclusion
842 * (bug 18758) API read of watchlist's wl_notificationtimestamp
843 * (bug 20809) Expose EditFormPreloadText via the API
844 * (bug 18427) Comment (edit summary) parser option for API
845 * (bug 18608) API should provide list of CSS styles to apply to rendered output
846
847 === Languages updated in 1.16 ===
848
849 MediaWiki supports over 300 languages. Many localisations are updated
850 regularly. Below only new and removed languages are listed, as well as
851 changes to languages because of MediaZilla reports.
852
853 * Capiznon (cps) (new)
854 * North Frisian (frr) (new)
855 * Kirmanjki (kiu) (new)
856 * Komi-Permyak (koi) (new)
857 * Karachay-Balkar (krc) (new)
858 * Hill Mari (mrj) (new)
859 * Prussian (prg) (new)
860 * Romagnol (rgn) (new)
861 * Lower Silesian (sli) (new)
862 * Picard (pcd) (new)
863 * Uyghur (Arabic script) (ug-arab) (new)
864 * Upper Franconian (vmf) (new)
865 * Votic (vot) (new)
866 * Eastern Yiddish (ydd) (removed)
867 * Iriga Bicolano (bto) (removed)
868 * Ladin (lld) (removed)
869 * Laz (lzz) (removed)
870 * Palembang (plm) (removed)
871 * Megleno-Romanian (Greek script) (ruq-grek) (removed)
872 * Tamazight (tzm) (removed)
873
874 * (bug 18474) Sorani (ckb - Central Kurdish) (renamed from ku-arab)
875 * Add PLURAL function for Scots Gaelic (gd)
876 * Add Estonian letters äöõšüž to linktrail (et)
877 * (bug 18776) Native name of Burmese language (my)
878 * (bug 18806) Use correct unicode characters in spelling of native Chuvash
879 (Чӑвашла)
880 * (bug 18864) Updated autonym for Zhuang language
881 * (bug 18308) Updated date formatting in Occitan (oc)
882 * (bug 19080) Added ăâîşţșțĂÂÎŞŢȘȚ to Romanion (ro) linktrail
883 * (bug 19286) Correct commafying function in Polish (pl)
884 * (bug 19441) Updated date formatting for Lithuanian
885 * (bug 19630) Added ÄäÇçĞğŇňÖöŞşÜüÝýŽž to Turkmen (tk) linktrail
886 * (bug 19949) New linktrail for Greek (el)
887 * (bug 19809) Korean (North Korea) (ko-kp) (new)
888 * (bug 19968) Fixed "Project talk" namespace name for Maltese (mt)
889 * (bug 21168) Added áâãàéêçíóôõúü to Portuguese (pt) linktrail
890 * (bug 21596) Change interwiki link for Kurdish (ku)
891
892 == Compatibility ==
893
894 MediaWiki 1.16 requires PHP 5.1 (5.2 recommended). PHP 4 is no longer supported.
895
896 MySQL 3.23.x is no longer supported; some older hosts may need to upgrade.
897 At this time we still recommend 4.0, but 4.1/5.0 will work fine in most cases.
898
899
900 == Upgrading ==
901
902 1.16 has several database changes since 1.15, and will not work without schema
903 updates.
904
905 If upgrading from before 1.11, and you are using a wiki as a commons reposito-
906 ry, make sure that it is updated as well. Otherwise, errors may arise due to
907 database schema changes.
908
909 If upgrading from before 1.7, you may want to run refreshLinks.php to ensure
910 new database fields are filled with data.
911
912 If you are upgrading from MediaWiki 1.4.x or earlier, some major database
913 changes are made, and there is a slightly higher chance that things could
914 break. Don't forget to always back up your database before upgrading!
915
916 See the file UPGRADE for more detailed upgrade instructions.
917
918
919 === Caveats ===
920
921 Some output, particularly involving user-supplied inline HTML, may not
922 produce 100% valid or well-formed XHTML output. Testers are welcome to
923 set $wgMimeType = "application/xhtml+xml"; to test for remaining problem
924 cases, but this is not recommended on live sites. (This must be set for
925 MathML to display properly in Mozilla.)
926
927 For notes on 1.15.x and older releases, see HISTORY.
928
929
930 === Online documentation ===
931
932 Documentation for both end-users and site administrators is currently being
933 built up on MediaWiki.org, and is covered under the GNU Free Documentation
934 License (except for pages that explicitly state that their contents are in
935 the public domain) :
936
937 http://www.mediawiki.org/wiki/Documentation
938
939
940 === Mailing list ===
941
942 A MediaWiki-l mailing list has been set up distinct from the Wikipedia
943 wikitech-l list:
944
945 http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
946
947 A low-traffic announcements-only list is also available:
948
949 http://lists.wikimedia.org/mailman/listinfo/mediawiki-announce
950
951 It's highly recommended that you sign up for one of these lists if you're
952 going to run a public MediaWiki, so you can be notified of security fixes.
953
954
955 === IRC help ===
956
957 There's usually someone online in #mediawiki on irc.freenode.net