Skip to content

Commit

Permalink
update meta charset tag to html5 standard in remaining views
Browse files Browse the repository at this point in the history
  • Loading branch information
dleffler committed Dec 11, 2016
1 parent 5352b27 commit 9df16e8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 11 deletions.
5 changes: 3 additions & 2 deletions framework/core/views/_maintenance.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset={$smarty.const.LANG_CHARSET}"/>
<meta name="Generator" content="Exponent Content Management System - v{expVersion::getVersion(true)}"/>
{*<meta http-equiv="Content-Type" content="text/html; charset={$smarty.const.LANG_CHARSET}"/>*}
<meta charset="{$smarty.const.LANG_CHARSET}">
<title>{$smarty.const.SITE_TITLE} :: {'Down for Maintenance.'|gettext}</title>
<meta name="Generator" content="Exponent Content Management System - v{expVersion::getVersion(true)}"/>
<style type="text/css" media="screen">
html {
background : #397993;
Expand Down
5 changes: 3 additions & 2 deletions framework/core/views/orphaned_content.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
<!DOCTYPE HTML>
<html>
<head>
<title>{$smarty.const.SITE_TITLE} -- {'Archived Content'|gettext}</title>
<meta http-equiv="Content-Type" content="text/html; charset={$smarty.const.LANG_CHARSET}" />
{*<meta http-equiv="Content-Type" content="text/html; charset={$smarty.const.LANG_CHARSET}" />*}
<meta charset="{$smarty.const.LANG_CHARSET}">
<title>{$smarty.const.SITE_TITLE} -- {'Archived Content'|gettext}</title>
<meta name="Generator" content="Exponent Content Management System - v{expVersion::getVersion(true)}"/>
<link rel="stylesheet" href="{$smarty.const.THEME_RELATIVE}style.css" />
<link rel="stylesheet" href="{$smarty.const.THEME_RELATIVE}editor.css" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{/css}

<div class="module navigation manage-redirection-log">
<h2>{'Page Redirection Log'|gettext}</h2>
<h1>{'Page Redirection Log'|gettext}</h1>
{if $page->total_records}{icon class="delete" action=delete_redirection_log text='Delete Page Redirection Log'|gettext onclick="return confirm('"|cat:("Delete the entire log?"|gettext)|cat:"');"}{/if}
{$page->links}
{*<div class="exp-ecom-table">*}
Expand Down
4 changes: 3 additions & 1 deletion framework/modules/pixidou/views/pixidou/editor.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >
{*<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >*}
<meta charset="{$smarty.const.LANG_CHARSET}">
<title>Pixidou - {'Open Source AJAX Image Editor'|gettext}</title>
<meta name="Generator" content="Exponent Content Management System - v{expVersion::getVersion(true)}"/>
<link rel="stylesheet" type="text/css" href="{$smarty.const.YUI2_RELATIVE}yui2-reset-fonts/yui2-reset-fonts.css" >
<link rel="stylesheet" type="text/css" href="{$smarty.const.YUI2_RELATIVE}assets/skins/sam/skin.css" >
<link rel="stylesheet" type="text/css" href="{$smarty.const.PATH_RELATIVE}framework/modules/pixidou/assets/css/pixidou.css" >
Expand Down
6 changes: 3 additions & 3 deletions install/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,10 @@
<!DOCTYPE HTML>
<html>
<head>
<!-- <meta http-equiv="Content-Type" content="text/html; charset=--><?php //echo LANG_CHARSET; ?><!--"/>-->
<meta charset="<?php echo LANG_CHARSET; ?>">
<title><?php echo gt('Exponent Install Wizard'); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo LANG_CHARSET; ?>"/>
<meta name="Generator"
content="Exponent Content Management System - <?php echo expVersion::getVersion(true); ?>"/>
<meta name="Generator" content="Exponent Content Management System - <?php echo expVersion::getVersion(true); ?>"/>
<link rel="stylesheet" href="<?php echo PATH_RELATIVE; ?>external/normalize/normalize.css"/>
<link rel="stylesheet" href="<?php echo PATH_RELATIVE; ?>framework/core/assets/css/forms.css"/>
<link rel="stylesheet" href="<?php echo PATH_RELATIVE; ?>framework/core/assets/css/button.css"/>
Expand Down
5 changes: 3 additions & 2 deletions install/popup.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
<!DOCTYPE HTML>
<html>
<head>
<!-- <meta http-equiv="Content-Type" content="text/html; charset=--><?php //echo LANG_CHARSET; ?><!--"/>-->
<meta charset="<?php echo LANG_CHARSET; ?>">
<title><?php echo gt('Exponent CMS : Install Wizard Help'); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo LANG_CHARSET; ?>"/>
<meta name="Generator" content="Exponent Content Management System - <?php echo expVersion::getVersion(true); ?>"/>
<link rel="stylesheet" href="<?php echo PATH_RELATIVE; ?>external/normalize/normalize.css"/>
<link rel="stylesheet" href="<?php echo PATH_RELATIVE; ?>external/normalize/normalize.css"/>
<link rel="stylesheet" href="<?php echo PATH_RELATIVE; ?>framework/core/assets/css/forms.css"/>
<link rel="stylesheet" href="<?php echo PATH_RELATIVE; ?>framework/core/assets/css/button.css"/>
<link rel="stylesheet" href="<?php echo PATH_RELATIVE; ?>framework/core/assets/css/tables.css"/>
Expand Down

0 comments on commit 9df16e8

Please sign in to comment.