issue 2033 fixed. HTML DTD choosing option is removed. Support only HTML5.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3.2@11012 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-08-09 07:36:25 +00:00
parent e62403ab10
commit b041550c53
126 changed files with 240 additions and 281 deletions

View file

@ -1126,10 +1126,10 @@
function htmlHeader()
{
echo <<<HTMLHEADER
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="ko" xml:lang="ko" xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html>
<html lang="ko">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
</head>
<body>
HTMLHEADER;
@ -1154,7 +1154,7 @@ HTMLHEADER;
function alertScript($msg)
{
if(!$msg) return;
echo '<script type="text/javascript">alert("'.$msg.'");</script>';
echo '<script>alert("'.$msg.'");</script>';
}
/**
@ -1164,7 +1164,7 @@ HTMLHEADER;
*/
function closePopupScript()
{
echo '<script type="text/javascript">window.close();</script>';
echo '<script>window.close();</script>';
}
/**
@ -1177,5 +1177,5 @@ HTMLHEADER;
{
$reloadScript = $isOpener ? 'window.opener.location.reload()' : 'document.location.reload()';
echo '<script type="text/javascript">'.$reloadScript.'</script>';
echo '<script>'.$reloadScript.'</script>';
}