https://bugzilla.wikimedia.org/show_bug.cgi?id=27478
--- Comment #18 from Roan Kattouw <[email protected]> 2011-06-29 14:38:15 UTC --- (In reply to comment #16) > The best summary of the remaining issues (and a path for re-deployment) can be > found here: > <http://lists.wikimedia.org/pipermail/wikitech-l/2011-June/053775.html>. > Some clarifications on the deployment plan, after talking to Aryeh on IRC: Stage 1: Set the doctype to HTML 4.01 strict. This is done by setting $wgDocType = '-//W3C//DTD HTML 4.01//EN'; and $wgDTD = 'http://www.w3.org/TR/html4/strict.dtd'; . Per Aryeh's post this should only cause minor layout issues (category 1 in Aryeh's post). Stage 2: Once any issues from stage 1 are fixed, set an HTML5 doctype without enabling $wgHtml5. Because the doctype tag is structured differently, you can't use $wgDocType / $wgDTD but you have to live hack it in. In Html::htmlHeader(), change the if ( $wgHtml5 ) test to something like if ( $wgHtml5 || $wgSomethingElse ) or if ( $wgHtml5 || true ) or whatever you like. This may and probably will lead to category 2 breakage. Stage 3: Once that's working, actually set $wgHtml5 = true; . Category 3 breakage possible. Once everything has been running smoothly for a couple of days, take out the live hack and the $wgDocType / $wgDTD settings. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
