Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -36,32 +36,31 @@ |
37 | 37 | * (bug 6638) List block flags in block log entries |
38 | 38 | * New script maintenance/language/checkExtensioni18n.php used to check i18n |
39 | 39 | progress in the extension repository. |
40 | | -* Running maintenance/parserTests.php with '--record' option, will now automaticly |
41 | | - tries to create its database tables. |
42 | | -* Made the PLURAL: parser function return singular on -1 per default. |
| 40 | +* Running maintenance/parserTests.php with '--record' option, will now |
| 41 | + automatically attempt to create the required tables |
| 42 | +* Made the PLURAL: parser function return singular on -1 per default |
43 | 43 | * Fixed up the AjaxSearch |
44 | 44 | * (bugs 5051, 5376) Tooltips and accesskeys no longer require JavaScript |
45 | 45 | * Added SkinTemplateOutputPageBeforeExec hook before SkinTemplate::outputPage() |
46 | 46 | starts page output (http://lists.wikimedia.org/pipermail/wikitech-l/2007-January/028554.html) |
47 | | -* Fix SpecialVersion->formatCredits input. Version and Url parameters should be null |
48 | | - to be treated properly with isset. |
49 | | -* Branch page_restrictions column out into its own table, also creating a "cascading protection" |
50 | | - feature, which automagically disallows edits to pages transcluded into a page protected with |
51 | | - this new option. Various other code tidiness fixes and refactoring in the log messages of |
52 | | - branches/werdna/restrictions-separation. |
53 | | -* The minimum permissions needed to edit a page in each namespace can |
54 | | - now be customized via the $wgNamespaceProtection array. By default, |
55 | | - editing pages in the MediaWiki namespace requires "editinterface" |
56 | | - permissions, just as before. |
57 | | -* (bug 8567) Added hook RawPageViewBeforeOutput just before the text is blown out in action=raw, |
58 | | - so extensions might influence the output. |
59 | | -* Correct tooltip accesskey hint for Opera on the Macintosh (it uses Shift-Esc-, not Ctrl-). |
60 | | -* (bug 3446) Add user preference to hide page content below diffs, can be overridden by adding |
61 | | - diffonly=1 or diffonly=0 to the URL of the diff page |
| 47 | +* Fix SpecialVersion->formatCredits input. Version and Url parameters should be |
| 48 | + null to be treated properly with isset. |
| 49 | +* Page restrictions moved into a new, dedicated table |
| 50 | +* Introduce "cascading protection" -- implicit protection on pages transcluded |
| 51 | + into a page protected with this option enabled |
| 52 | +* The minimum permissions needed to edit a page in each namespace can now be |
| 53 | + customized via the $wgNamespaceProtection array. By default, editing pages in |
| 54 | + the MediaWiki namespace requires "editinterface" permission, as before. |
| 55 | +* (bug 8567) Added hook RawPageViewBeforeOutput just before the text is blown |
| 56 | + out in action=raw, so extensions might influence the output. |
| 57 | +* Correct tooltip accesskey hint for Opera on the Macintosh |
| 58 | + (uses Shift-Esc-, not Ctrl-). |
| 59 | +* (bug 3446) Add user preference to hide page content below diffs, can be |
| 60 | + overridden by adding diffonly=1 or diffonly=0 to the URL of the diff page |
62 | 61 | * (bug 8002) Math should render left-to-right even in right-to-left wikis |
63 | 62 | * Pass e-mail and real name fields to AuthPlugin::addUser, as additional |
64 | 63 | optional fields, which may be considered useful at registration time. |
65 | | -* Fixed Postgres upgrade script. |
| 64 | +* PostgreSQL upgrade scripts fixed and updated |
66 | 65 | * (bug 8613) Fix error when viewing "Recent Changes" and using Postgres. |
67 | 66 | * Initialise site_stats table at upgrade time if data was missing |
68 | 67 | * (bug 7250) Updated Unicode normalization tables to Unicode 5.0 |
— | — | @@ -69,7 +68,8 @@ |
70 | 69 | determining whether action=purge can be done via GET. Switching the |
71 | 70 | permission on for anons can be helpful for benchmarking. |
72 | 71 | * Unmaintained Oracle support files have been removed. |
73 | | -* Made Linker::userToolLinks() show the contribs link red when the user has zero edits |
| 72 | +* Made Linker::userToolLinks() show the contribs link red when the user has |
| 73 | + zero edits |
74 | 74 | * Use browser default for printing size, don't force to 11pt |
75 | 75 | * (bug 8632) Fix regression in page protection null edit update |
76 | 76 | * (bug 7842) Link back to deleted revision list from deleted revision preview |
— | — | @@ -114,7 +114,7 @@ |
115 | 115 | * Fix hardcoded background color in parserTests.php |
116 | 116 | * parserTests.php : removed the 'light' option for --color argument, replacing |
117 | 117 | it with a new global switch : $wgCommandLineDarkBg |
118 | | -* Sanitizer now correctly escapes lonely '>' occuring before the first wikitag. |
| 118 | +* Sanitizer now correctly escapes lonely '>' occurring before the first wikitag. |
119 | 119 | * Ignore self closing on closing tags ( '</div />' now gives '</div>') |
120 | 120 | * (bug 8673) Minor fix for web service API content-type header |
121 | 121 | * Fix API revision list on PHP 5.2.1; bad reference assignment |