Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -875,12 +875,11 @@ |
876 | 876 | $wgXhtmlDefaultNamespace = 'http://www.w3.org/1999/xhtml'; |
877 | 877 | |
878 | 878 | /** |
879 | | - * Temporary setting to disable HTML 5 for the unlikely event that it causes |
880 | | - * everything to blow up. If all goes well, should be removed (and forced |
881 | | - * true) well before it ever makes it into a release. If set to false, go back |
882 | | - * to serving an XHTML 1.0 Transitional doctype (per $wgDocType et al. above). |
| 879 | + * Should we output an HTML 5 doctype? This needs to be left off until some |
| 880 | + * lingering rendering issues are resolved -- apparently it switches some |
| 881 | + * browsers from "almost standards" mode to standards mode. |
883 | 882 | */ |
884 | | -$wgHtml5 = true; |
| 883 | +$wgHtml5 = false; |
885 | 884 | |
886 | 885 | /** |
887 | 886 | * Permit other namespaces in addition to the w3.org default. |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -54,6 +54,7 @@ |
55 | 55 | interface will not appear in Special:AllMessages. |
56 | 56 | * $wgRegisterInternalExternals can be used to record external links pointing |
57 | 57 | to same server |
| 58 | +* $wgHtml5 outputs an HTML 5 doctype instead of XHTML 1.0 Transitional. |
58 | 59 | |
59 | 60 | === New features in 1.16 === |
60 | 61 | |
— | — | @@ -116,7 +117,6 @@ |
117 | 118 | task, to limit resource usage when the cache for a heavily-viewed article is |
118 | 119 | invalidated. Requires an external daemon. |
119 | 120 | * Leading > is now syntax for <blockquote>. |
120 | | -* Switched from XHTML 1.0 Transitional to HTML 5. |
121 | 121 | * (bug 19576) Moved id attribues from anchors accompanying section headers to |
122 | 122 | the section headers themselves, removing the redundant anchor elements. |
123 | 123 | * Removed name attribute from <a id="top"></a>. |