Index: trunk/extensions/MobileFrontend/views/notices/_donate.html.php |
— | — | @@ -1,9 +1,9 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | | -$donateHtml = <<<EOT |
| 4 | +$donateHtml = <<<HTML |
5 | 5 | <div class='mwm-message mwm-notice'> |
6 | 6 | Text WIKI to <a href="sms:25383">25383</a> to donate $10. |
7 | 7 | <br /> |
8 | 8 | <a href='http://wikimediafoundation.org/wiki/Mobile_Giving'>Msg & Data Rates May Apply</a> |
9 | 9 | </div> |
10 | | -EOT; |
| 10 | +HTML; |
Index: trunk/extensions/MobileFrontend/views/notices/notice_1.html.php |
— | — | @@ -2,8 +2,8 @@ |
3 | 3 | |
4 | 4 | $thanks = self::$messages['mobile-frontend-leave-feedback-thanks']; |
5 | 5 | |
6 | | -$noticeHtml = <<<EOT |
| 6 | +$noticeHtml = <<<HTML |
7 | 7 | <div class='mwm-message mwm-notice'> |
8 | 8 | {$thanks} |
9 | 9 | </div> |
10 | | -EOT; |
| 10 | +HTML; |
Index: trunk/extensions/MobileFrontend/views/information/optin.html.php |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | <?php |
3 | | -$optInHtml = <<<EOT |
| 3 | +$optInHtml = <<<HTML |
4 | 4 | <h1> |
5 | 5 | {$optInMessage} |
6 | 6 | </h1> |
— | — | @@ -16,4 +16,4 @@ |
17 | 17 | <button id='backButton' type='submit'>{$noButton}</button> |
18 | 18 | </form> |
19 | 19 | </div> |
20 | | -EOT; |
| 20 | +HTML; |
Index: trunk/extensions/MobileFrontend/views/information/optout.html.php |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | <?php |
3 | | -$optOutHtml = <<<EOT |
| 3 | +$optOutHtml = <<<HTML |
4 | 4 | <h1> |
5 | 5 | {$optOutMessage} |
6 | 6 | </h1> |
— | — | @@ -16,4 +16,4 @@ |
17 | 17 | <button id='backButton' type='submit'>{$noButton}</button> |
18 | 18 | </form> |
19 | 19 | </div> |
20 | | -EOT; |
| 20 | +HTML; |
Index: trunk/extensions/MobileFrontend/views/information/leave_feedback.html.php |
— | — | @@ -1,6 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | | -$leaveFeedbackHtml = <<<EOT |
| 4 | +$leaveFeedbackHtml = <<<HTML |
5 | 5 | <form action='{$feedbackPostURL}' method='post'> |
6 | 6 | <input type="hidden" name="edittoken" value="{$editToken}"/> |
7 | 7 | <div tabindex="-1"> |
— | — | @@ -23,4 +23,4 @@ |
24 | 24 | </div> |
25 | 25 | </form> |
26 | 26 | |
27 | | -EOT; |
| 27 | +HTML; |
Index: trunk/extensions/MobileFrontend/views/information/disable.html.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | $currentURL = str_replace( '&mobileaction=disable_mobile_site', '', $currentURL ); |
6 | 6 | $mobileRedirectFormAction = self::$mobileRedirectFormAction; |
7 | 7 | |
8 | | -$disableHtml = <<<EOT |
| 8 | +$disableHtml = <<<HTML |
9 | 9 | <h1> |
10 | 10 | {$areYouSure} |
11 | 11 | </h1> |
— | — | @@ -21,4 +21,4 @@ |
22 | 22 | <button id='backButton' type='submit'>{$backButton}</button> |
23 | 23 | </form> |
24 | 24 | </div> |
25 | | -EOT; |
| 25 | +HTML; |
Index: trunk/extensions/MobileFrontend/views/layout/_search_webkit.html.php |
— | — | @@ -20,7 +20,7 @@ |
21 | 21 | |
22 | 22 | $logoOnClick = ( self::$device['supports_javascript'] ) ? 'onclick="javascript:logoClick();"' : ''; |
23 | 23 | |
24 | | -$searchWebkitHtml = <<<EOD |
| 24 | +$searchWebkitHtml = <<<HTML |
25 | 25 | {$openSearchResults} |
26 | 26 | <div id='header'> |
27 | 27 | <div id='searchbox' {$logoDisplayNone}> |
— | — | @@ -40,4 +40,4 @@ |
41 | 41 | <button onclick="javascript:location.href='{$randomPageUrl}';" type="submit" id="randomButton">{$randomButton}</button> |
42 | 42 | </div> |
43 | 43 | </div> |
44 | | -EOD; |
| 44 | +HTML; |
Index: trunk/extensions/MobileFrontend/views/layout/application.wml.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | $dir = self::$dir; |
6 | 6 | $code = self::$code; |
7 | 7 | |
8 | | -$applicationHtml = <<<EOT |
| 8 | +$applicationHtml = <<<HTML |
9 | 9 | <?xml version='1.0' encoding='utf-8' ?> |
10 | 10 | <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN" |
11 | 11 | "http://www.wapforum.org/DTD/wml13.dtd"> |
— | — | @@ -19,4 +19,4 @@ |
20 | 20 | </template> |
21 | 21 | {$contentHtml} |
22 | 22 | </wml> |
23 | | -EOT; |
| 23 | +HTML; |
Index: trunk/extensions/MobileFrontend/views/layout/_footmenu_default.html.php |
— | — | @@ -23,7 +23,7 @@ |
24 | 24 | |
25 | 25 | $feedbackLink = ( self::$code == 'en' && self::$isBetaGroupMember ) ? "| <a href=\"{$leaveFeedbackURL}\">{$leaveFeedback}</a>" : ''; |
26 | 26 | |
27 | | -$footerHtml = <<<EOD |
| 27 | +$footerHtml = <<<HTML |
28 | 28 | <div id='footer'> |
29 | 29 | <div class='nav' id='footmenu'> |
30 | 30 | <div class='mwm-notice'> |
— | — | @@ -36,4 +36,4 @@ |
37 | 37 | <div id='copyright'>{$copyright}</div> |
38 | 38 | </div> |
39 | 39 | |
40 | | -EOD; |
| 40 | +HTML; |
Index: trunk/extensions/MobileFrontend/views/layout/application.html.php |
— | — | @@ -23,7 +23,7 @@ |
24 | 24 | |
25 | 25 | $openSearchScript = $startScriptTag . $javaScriptPath . $betaPrefix . 'opensearch.js?version=12012011126437' . $endScriptTag; |
26 | 26 | |
27 | | -$applicationHtml = <<<EOT |
| 27 | +$applicationHtml = <<<HTML |
28 | 28 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
29 | 29 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
30 | 30 | <html lang='{$code}' dir='{$dir}' xml:lang='{$code}' xmlns='http://www.w3.org/1999/xhtml'> |
— | — | @@ -57,4 +57,4 @@ |
58 | 58 | {$openSearchScript} |
59 | 59 | </body> |
60 | 60 | </html> |
61 | | -EOT; |
| 61 | +HTML; |