Index: trunk/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | |
9 | 9 | THIS IS NOT A RELEASE YET |
10 | 10 | |
11 | | -MediaWiki 1.18 is an alpha-quality branch and is not recommended for use in |
| 11 | +MediaWiki 1.18 is an alpha-quality branch and is not recommended for use in |
12 | 12 | production. |
13 | 13 | |
14 | 14 | === Configuration changes in 1.18 === |
— | — | @@ -61,7 +61,7 @@ |
62 | 62 | * The spyc library is now no longer included in phase3. |
63 | 63 | * (bug 28343) Unused preferences contextlines/contextchars have been removed |
64 | 64 | * $wgSkinExtensionFunctions has been removed. Use $wgExtensionFunctions instead. |
65 | | -* $wgProto has been removed. You now only need to set $wgServer to change the |
| 65 | +* $wgProto has been removed. You now only need to set $wgServer to change the |
66 | 66 | URL protocol. |
67 | 67 | |
68 | 68 | === New features in 1.18 === |
— | — | @@ -132,6 +132,7 @@ |
133 | 133 | * (bug 23495) Allow createAndPromote.php to create non-sysop users |
134 | 134 | |
135 | 135 | === Bug fixes in 1.18 === |
| 136 | +* mw.util.getScript has been implemented (like wfScript in GlobalFunctions.php) |
136 | 137 | * (bug 23119) WikiError class and subclasses are now marked as deprecated. |
137 | 138 | * (bug 10871) Javascript and CSS pages in MediaWiki namespace are no longer |
138 | 139 | treated as wikitext on preview. |
— | — | @@ -248,6 +249,7 @@ |
249 | 250 | left-to-right. |
250 | 251 | * (bug 28719) Do not call mLinkHolders __destruct explicitly |
251 | 252 | * (bug 21196) Article::getContributors() no longer fails on PostgreSQL. |
| 253 | +* (bug 28752) XCache doesn't work in CLI mode. |
252 | 254 | * (bug 28076) Thumbnail height limited to 360 pixels on Special:Listfiles |
253 | 255 | * (bug 22227) Special:Listfiles no longer throws an error on bogus file entries |
254 | 256 | * (bug 19408) user_properties.up_property: 32 bytes is not enough. |
— | — | @@ -255,11 +257,12 @@ |
256 | 258 | * (bug 29263) Add LTR class to the shared CSS to be used for left-to-right text |
257 | 259 | such as SQL queries shown in dberrortext and similar messages in RTL |
258 | 260 | environments |
259 | | -* (bug 14977) Fixed $wgServer detection in cases where an IPv6 address is used |
| 261 | +* (bug 14977) Fixed $wgServer detection in cases where an IPv6 address is used |
260 | 262 | as the server name. |
261 | 263 | * (bug 19725) Do not list suppressed edits in the "View X deleted edits" link |
262 | 264 | if user cannot view suppressed edits. |
263 | 265 | * The View X deleted revisions is now shown again on Special:Upload. |
| 266 | +* (bug 29071) mediawiki.action.watch.ajax.js should pass uselang to API. |
264 | 267 | |
265 | 268 | === API changes in 1.18 === |
266 | 269 | * (bug 26339) Throw warning when truncating an overlarge API result. |
— | — | @@ -405,7 +408,7 @@ |
406 | 409 | |
407 | 410 | MediaWiki 1.18 requires PHP 5.2.3. PHP 4 is no longer supported. |
408 | 411 | |
409 | | -MySQL is the recommended DBMS. PostgreSQL or SQLite can also be used, but |
| 412 | +MySQL is the recommended DBMS. PostgreSQL or SQLite can also be used, but |
410 | 413 | support for them is somewhat less mature. There is experimental support for IBM |
411 | 414 | DB2 and Microsoft SQL Server. |
412 | 415 | |
— | — | @@ -421,8 +424,8 @@ |
422 | 425 | 1.18 has several database changes since 1.17, and will not work without schema |
423 | 426 | updates. |
424 | 427 | |
425 | | -If upgrading from before 1.11, and you are using a wiki as a commons |
426 | | -repository, make sure that it is updated as well. Otherwise, errors may arise |
| 428 | +If upgrading from before 1.11, and you are using a wiki as a commons |
| 429 | +repository, make sure that it is updated as well. Otherwise, errors may arise |
427 | 430 | due to database schema changes. |
428 | 431 | |
429 | 432 | If upgrading from before 1.7, you may want to run refreshLinks.php to ensure |
— | — | @@ -438,8 +441,8 @@ |
439 | 442 | |
440 | 443 | == Online documentation == |
441 | 444 | |
442 | | -Documentation for both end-users and site administrators is available on |
443 | | -MediaWiki.org, and is covered under the GNU Free Documentation License (except |
| 445 | +Documentation for both end-users and site administrators is available on |
| 446 | +MediaWiki.org, and is covered under the GNU Free Documentation License (except |
444 | 447 | for pages that explicitly state that their contents are in the public domain): |
445 | 448 | |
446 | 449 | http://www.mediawiki.org/wiki/Documentation |
Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -111,7 +111,6 @@ |
112 | 112 | even in RTL text. |
113 | 113 | * (bug 29055) Make "don't send email on minor edits" preference apply to |
114 | 114 | changes to talk page in addition to watchlist edits. |
115 | | -* (bug 29071) mediawiki.action.watch.ajax.js should pass uselang to API. |
116 | 115 | * (bug 28272) Special:AllMessages should have only one "Go" button. |
117 | 116 | * (bug 29101) Special:FileDuplicateSearch no longer shows silly message. |
118 | 117 | * (bug 29048) jQuery.tabIndex: firstTabIndex() should not output the same |
Index: trunk/phase3/includes/specials/SpecialRecentchanges.php |
— | — | @@ -296,7 +296,6 @@ |
297 | 297 | |
298 | 298 | $conds[] = 'rc_timestamp >= ' . $dbr->addQuotes( $cutoff ); |
299 | 299 | |
300 | | - |
301 | 300 | $hidePatrol = $this->getUser()->useRCPatrol() && $opts['hidepatrolled']; |
302 | 301 | $hideLoggedInUsers = $opts['hideliu'] && !$forcebot; |
303 | 302 | $hideAnonymousUsers = $opts['hideanons'] && !$forcebot; |
Index: trunk/phase3/includes/ImageGallery.php |
— | — | @@ -221,7 +221,7 @@ |
222 | 222 | |
223 | 223 | if ( $this->mPerRow > 0 ) { |
224 | 224 | $maxwidth = $this->mPerRow * ( $this->mWidths + self::THUMB_PADDING + self::GB_PADDING + self::GB_BORDERS ); |
225 | | - $oldStyle = isset( $this->mAttribs['style'] ) ? $this->mAttribs['style'] : ''; |
| 225 | + $oldStyle = isset( $this->mAttribs['style'] ) ? $this->mAttribs['style'] : ''; |
226 | 226 | # _width is ignored by any sane browser. IE6 doesn't know max-width so it uses _width instead |
227 | 227 | $this->mAttribs['style'] = "max-width: {$maxwidth}px;_width: {$maxwidth}px;" . $oldStyle; |
228 | 228 | } |
Index: branches/REL1_18/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | |
9 | 9 | THIS IS NOT A RELEASE YET |
10 | 10 | |
11 | | -MediaWiki 1.18 is an alpha-quality branch and is not recommended for use in |
| 11 | +MediaWiki 1.18 is an alpha-quality branch and is not recommended for use in |
12 | 12 | production. |
13 | 13 | |
14 | 14 | === Configuration changes in 1.18 === |
— | — | @@ -61,6 +61,8 @@ |
62 | 62 | * The spyc library is now no longer included in phase3. |
63 | 63 | * (bug 28343) Unused preferences contextlines/contextchars have been removed |
64 | 64 | * $wgSkinExtensionFunctions has been removed. Use $wgExtensionFunctions instead. |
| 65 | +* $wgProto has been removed. You now only need to set $wgServer to change the |
| 66 | + URL protocol. |
65 | 67 | |
66 | 68 | === New features in 1.18 === |
67 | 69 | * (bug 8130) Query pages should limit to content namespaces, not just main |
— | — | @@ -89,8 +91,8 @@ |
90 | 92 | (maintenance/fixDoubleRedirects.php). |
91 | 93 | * (bug 23315) New body classes to allow easier styling of special pages. |
92 | 94 | * (bug 27159) Make email confirmation code expiration time configurable. |
93 | | -* CSS/JS for each user group is imported from MediaWiki:Sysop.js, |
94 | | - MediaWiki:Autoconfirmed.css, etc. |
| 95 | +* CSS/JS for each user group is imported from MediaWiki:Group-sysop.js, |
| 96 | + MediaWiki:Group-autoconfirmed.css, etc. |
95 | 97 | * (bug 24230) Uploads of ZIP types, such as MS Office or OpenOffice can now be |
96 | 98 | safely enabled. A ZIP file reader was added which can scan a ZIP file for |
97 | 99 | potentially dangerous Java applets. This allows applets to be blocked |
— | — | @@ -128,9 +130,9 @@ |
129 | 131 | * (bug 16956) IPTC and XMP metadata now extracted from images. |
130 | 132 | * (bug 23816) A tracking category is now added for any pages with broken images. |
131 | 133 | * (bug 23495) Allow createAndPromote.php to create non-sysop users |
132 | | -* mw.util.getScript has been implemented (like wfScript in GlobalFunctions.php) |
133 | 134 | |
134 | 135 | === Bug fixes in 1.18 === |
| 136 | +* mw.util.getScript has been implemented (like wfScript in GlobalFunctions.php) |
135 | 137 | * (bug 23119) WikiError class and subclasses are now marked as deprecated. |
136 | 138 | * (bug 10871) Javascript and CSS pages in MediaWiki namespace are no longer |
137 | 139 | treated as wikitext on preview. |
— | — | @@ -252,7 +254,15 @@ |
253 | 255 | * (bug 22227) Special:Listfiles no longer throws an error on bogus file entries |
254 | 256 | * (bug 19408) user_properties.up_property: 32 bytes is not enough. |
255 | 257 | * (bug 25262) Fix for minification of hardcoded data: URIs in CSS |
256 | | -+* (bug 29071) mediawiki.action.watch.ajax.js should pass uselang to API. |
| 258 | +* (bug 29263) Add LTR class to the shared CSS to be used for left-to-right text |
| 259 | + such as SQL queries shown in dberrortext and similar messages in RTL |
| 260 | + environments |
| 261 | +* (bug 14977) Fixed $wgServer detection in cases where an IPv6 address is used |
| 262 | + as the server name. |
| 263 | +* (bug 19725) Do not list suppressed edits in the "View X deleted edits" link |
| 264 | + if user cannot view suppressed edits. |
| 265 | +* The View X deleted revisions is now shown again on Special:Upload. |
| 266 | +* (bug 29071) mediawiki.action.watch.ajax.js should pass uselang to API. |
257 | 267 | |
258 | 268 | === API changes in 1.18 === |
259 | 269 | * (bug 26339) Throw warning when truncating an overlarge API result. |
— | — | @@ -308,7 +318,7 @@ |
309 | 319 | * (bug 27549) action=query&list=users&usprop=groups doesn't show implicit |
310 | 320 | groups if a user doesn't have explicit groups. |
311 | 321 | * (bug 27670) Ordering by timestamp (and usage of start and end) isn't as clear |
312 | | - in auto generated document, as it is on mw.org. |
| 322 | + in auto generated document, as it is on mediawiki.org. |
313 | 323 | * (bug 27182) API: Add filter by prefix for meta=allmessages. |
314 | 324 | * (bug 27183) API: Add filter by customisation state for meta=allmessages. |
315 | 325 | * (bug 27340) API: Allow listing of "small" categories. |
— | — | @@ -398,23 +408,24 @@ |
399 | 409 | |
400 | 410 | MediaWiki 1.18 requires PHP 5.2.3. PHP 4 is no longer supported. |
401 | 411 | |
402 | | -MySQL is the recommended DBMS. PostgreSQL or SQLite can also be used, but |
| 412 | +MySQL is the recommended DBMS. PostgreSQL or SQLite can also be used, but |
403 | 413 | support for them is somewhat less mature. There is experimental support for IBM |
404 | | -DB2, Oracle and Microsoft SQL Server. |
| 414 | +DB2 and Microsoft SQL Server. |
405 | 415 | |
406 | 416 | The supported versions are: |
407 | 417 | |
408 | 418 | * MySQL 4.0 or later |
409 | 419 | * PostgreSQL 8.3 or later |
410 | 420 | * SQLite 3 |
| 421 | +* Oracle 9.0.1 or later |
411 | 422 | |
412 | 423 | == Upgrading == |
413 | 424 | |
414 | 425 | 1.18 has several database changes since 1.17, and will not work without schema |
415 | 426 | updates. |
416 | 427 | |
417 | | -If upgrading from before 1.11, and you are using a wiki as a commons |
418 | | -repository, make sure that it is updated as well. Otherwise, errors may arise |
| 428 | +If upgrading from before 1.11, and you are using a wiki as a commons |
| 429 | +repository, make sure that it is updated as well. Otherwise, errors may arise |
419 | 430 | due to database schema changes. |
420 | 431 | |
421 | 432 | If upgrading from before 1.7, you may want to run refreshLinks.php to ensure |
— | — | @@ -430,8 +441,8 @@ |
431 | 442 | |
432 | 443 | == Online documentation == |
433 | 444 | |
434 | | -Documentation for both end-users and site administrators is available on |
435 | | -MediaWiki.org, and is covered under the GNU Free Documentation License (except |
| 445 | +Documentation for both end-users and site administrators is available on |
| 446 | +MediaWiki.org, and is covered under the GNU Free Documentation License (except |
436 | 447 | for pages that explicitly state that their contents are in the public domain): |
437 | 448 | |
438 | 449 | http://www.mediawiki.org/wiki/Documentation |