diff options
author | Yoshiyuki Asaba | 2008-03-18 09:00:42 +0000 |
---|---|---|
committer | Yoshiyuki Asaba | 2008-03-18 09:00:42 +0000 |
commit | 88cf09b3667925a0444a609a9ebb6a638c553b51 (patch) | |
tree | eb21ef1eea1d5c08f809b393a233689e826d959a | |
parent | c2df0932afb5b8cd3dd9e18693cb7da4f96cccb0 (diff) |
Fixed wrong <meta> tag position. pgpoolAdmin showed empty pages when
lang setting was Japanese.
<title>Japanese title</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
"Japanese title" is encoded by UTF-8. The following order is correct.
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Japanese title</title>
59 files changed, 59 insertions, 59 deletions
diff --git a/doc/en/changePassword.html b/doc/en/changePassword.html index 6392eb5..572664f 100644 --- a/doc/en/changePassword.html +++ b/doc/en/changePassword.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>Change Password</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>Change Password</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/en/config.html b/doc/en/config.html index 51e9075..485803a 100644 --- a/doc/en/config.html +++ b/doc/en/config.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>pgpoolAdmin Setting</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>pgpoolAdmin Setting</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/en/errorCode.html b/doc/en/errorCode.html index 83b0189..6d15b89 100644 --- a/doc/en/errorCode.html +++ b/doc/en/errorCode.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeStatus|escape}</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> diff --git a/doc/en/install.html b/doc/en/install.html index 7769a47..95238f9 100644 --- a/doc/en/install.html +++ b/doc/en/install.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>Installing pgpool Management Tool</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>Installing pgpool Management Tool</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/en/login.html b/doc/en/login.html index c2b77b8..3bbf6ad 100644 --- a/doc/en/login.html +++ b/doc/en/login.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>Login</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>Login</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/en/logout.html b/doc/en/logout.html index 6b6c485..6c1a305 100644 --- a/doc/en/logout.html +++ b/doc/en/logout.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>Logout</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>Logout</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/en/nodeServerStatus.html b/doc/en/nodeServerStatus.html index 4e0de05..f13e4b5 100644 --- a/doc/en/nodeServerStatus.html +++ b/doc/en/nodeServerStatus.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>Node Satsus</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>Node Satsus</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> diff --git a/doc/en/pgconfig.html b/doc/en/pgconfig.html index d7693fe..9aafdd5 100644 --- a/doc/en/pgconfig.html +++ b/doc/en/pgconfig.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>pgpool Setting</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>pgpool Setting</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/en/queryCache.html b/doc/en/queryCache.html index 2d8aa61..65b18ac 100644 --- a/doc/en/queryCache.html +++ b/doc/en/queryCache.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>Query Cache</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>Query Cache</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/en/status.html b/doc/en/status.html index d7662de..d199432 100644 --- a/doc/en/status.html +++ b/doc/en/status.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>pgpool Status</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>pgpool Status</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/en/systemDb.html b/doc/en/systemDb.html index 0b3917e..9fad54c 100644 --- a/doc/en/systemDb.html +++ b/doc/en/systemDb.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>Partitioning Rule</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>Partitioning Rule</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/index_en.html b/doc/index_en.html index 74aa177..6c1afb4 100644 --- a/doc/index_en.html +++ b/doc/index_en.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>pgpool Administration Tool</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>pgpool Administration Tool</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/index_ja.html b/doc/index_ja.html index 4251e34..839b072 100644 --- a/doc/index_ja.html +++ b/doc/index_ja.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>pgpool Administration Tool</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>pgpool Administration Tool</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/ja/changePassword.html b/doc/ja/changePassword.html index a69aca0..af02bb8 100644 --- a/doc/ja/changePassword.html +++ b/doc/ja/changePassword.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>パスワード変更</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>パスワード変更</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/ja/config.html b/doc/ja/config.html index feb185e..fe29e4f 100644 --- a/doc/ja/config.html +++ b/doc/ja/config.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>管理ツール設定</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>管理ツール設定</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/ja/errorCode.html b/doc/ja/errorCode.html index c9d2627..2551454 100644 --- a/doc/ja/errorCode.html +++ b/doc/ja/errorCode.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>エラーコード</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>エラーコード</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> diff --git a/doc/ja/install.html b/doc/ja/install.html index f0d09a6..9eee8e7 100644 --- a/doc/ja/install.html +++ b/doc/ja/install.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>pgpool管理ツールインストール方法</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>pgpool管理ツールインストール方法</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/ja/login.html b/doc/ja/login.html index 9b97e53..370c88e 100644 --- a/doc/ja/login.html +++ b/doc/ja/login.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>ログイン</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>ログイン</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/ja/logout.html b/doc/ja/logout.html index d4ac738..6be8ece 100644 --- a/doc/ja/logout.html +++ b/doc/ja/logout.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>ログアウト</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>ログアウト</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/ja/nodeServerStatus.html b/doc/ja/nodeServerStatus.html index 5c44854..6efd794 100644 --- a/doc/ja/nodeServerStatus.html +++ b/doc/ja/nodeServerStatus.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>ノードステータス</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>ノードステータス</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> diff --git a/doc/ja/pgconfig.html b/doc/ja/pgconfig.html index 25a4f09..de766f0 100644 --- a/doc/ja/pgconfig.html +++ b/doc/ja/pgconfig.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>pgpool.conf設定</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>pgpool.conf設定</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/ja/queryCache.html b/doc/ja/queryCache.html index b48727b..0633e94 100644 --- a/doc/ja/queryCache.html +++ b/doc/ja/queryCache.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>クエリキャッシュ</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>クエリキャッシュ</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/ja/status.html b/doc/ja/status.html index 385eabe..62c25e4 100644 --- a/doc/ja/status.html +++ b/doc/ja/status.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>pgpoolステータス</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>pgpoolステータス</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/doc/ja/systemDb.html b/doc/ja/systemDb.html index 1fedbb0..fd10fc8 100644 --- a/doc/ja/systemDb.html +++ b/doc/ja/systemDb.html @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>分散ルール</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>分散ルール</title> <link href="../screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/changePassword.tpl b/templates/changePassword.tpl index 201d972..1b1d7ab 100644 --- a/templates/changePassword.tpl +++ b/templates/changePassword.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strChangePassword|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strChangePassword|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/config.tpl b/templates/config.tpl index e4bc946..7bbee9d 100644 --- a/templates/config.tpl +++ b/templates/config.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strSetting|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strSetting|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/error.tpl b/templates/error.tpl index bedb0d5..50f7343 100644 --- a/templates/error.tpl +++ b/templates/error.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strError|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strError|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/en/changePassword.tpl b/templates/help/en/changePassword.tpl index 04480c3..f113a7c 100644 --- a/templates/help/en/changePassword.tpl +++ b/templates/help/en/changePassword.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strHelp|escape}({$message.strChangePassword|escape})</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strHelp|escape}({$message.strChangePassword|escape})</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/en/config.tpl b/templates/help/en/config.tpl index 91b8747..6a6c5b9 100644 --- a/templates/help/en/config.tpl +++ b/templates/help/en/config.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strSetting|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strSetting|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/en/errorCode.tpl b/templates/help/en/errorCode.tpl index ab9181c..6094adf 100644 --- a/templates/help/en/errorCode.tpl +++ b/templates/help/en/errorCode.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> diff --git a/templates/help/en/login.tpl b/templates/help/en/login.tpl index 0c1a210..7b180c4 100644 --- a/templates/help/en/login.tpl +++ b/templates/help/en/login.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strLogin|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strLogin|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/en/nodeServerStatus.tpl b/templates/help/en/nodeServerStatus.tpl index 0e46688..e126b23 100644 --- a/templates/help/en/nodeServerStatus.tpl +++ b/templates/help/en/nodeServerStatus.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> diff --git a/templates/help/en/pgconfig.tpl b/templates/help/en/pgconfig.tpl index b2c51f2..f4d116f 100644 --- a/templates/help/en/pgconfig.tpl +++ b/templates/help/en/pgconfig.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strPgConfSetting|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strPgConfSetting|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/en/queryCache.tpl b/templates/help/en/queryCache.tpl index f5848d6..f3974d5 100644 --- a/templates/help/en/queryCache.tpl +++ b/templates/help/en/queryCache.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strQueryCache|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strQueryCache|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/en/status.tpl b/templates/help/en/status.tpl index ca73a3a..9eaa698 100644 --- a/templates/help/en/status.tpl +++ b/templates/help/en/status.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strPgpoolStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strPgpoolStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/en/systemDb.tpl b/templates/help/en/systemDb.tpl index b1c73e2..13cf734 100644 --- a/templates/help/en/systemDb.tpl +++ b/templates/help/en/systemDb.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strSystemDb|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strSystemDb|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/ja/changePassword.tpl b/templates/help/ja/changePassword.tpl index 564e0e8..82a9814 100644 --- a/templates/help/ja/changePassword.tpl +++ b/templates/help/ja/changePassword.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strHelp|escape}({$message.strChangePassword|escape})</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strHelp|escape}({$message.strChangePassword|escape})</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/ja/config.tpl b/templates/help/ja/config.tpl index 051da2b..0b7aa28 100644 --- a/templates/help/ja/config.tpl +++ b/templates/help/ja/config.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strSetting|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strSetting|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/ja/errorCode.tpl b/templates/help/ja/errorCode.tpl index 415f00d..a020239 100644 --- a/templates/help/ja/errorCode.tpl +++ b/templates/help/ja/errorCode.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> diff --git a/templates/help/ja/login.tpl b/templates/help/ja/login.tpl index bfcfac9..bbfa1ad 100644 --- a/templates/help/ja/login.tpl +++ b/templates/help/ja/login.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strLogin|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strLogin|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/ja/nodeServerStatus.tpl b/templates/help/ja/nodeServerStatus.tpl index 1d2ecc6..ffe62f9 100644 --- a/templates/help/ja/nodeServerStatus.tpl +++ b/templates/help/ja/nodeServerStatus.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> diff --git a/templates/help/ja/pgconfig.tpl b/templates/help/ja/pgconfig.tpl index a819c80..84a2132 100644 --- a/templates/help/ja/pgconfig.tpl +++ b/templates/help/ja/pgconfig.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strPgConfSetting|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strPgConfSetting|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/ja/queryCache.tpl b/templates/help/ja/queryCache.tpl index d589a19..cda276a 100644 --- a/templates/help/ja/queryCache.tpl +++ b/templates/help/ja/queryCache.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strQueryCache|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strQueryCache|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/ja/status.tpl b/templates/help/ja/status.tpl index cd8cb1e..ae67342 100644 --- a/templates/help/ja/status.tpl +++ b/templates/help/ja/status.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strPgpoolStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strPgpoolStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/help/ja/systemDb.tpl b/templates/help/ja/systemDb.tpl index cb10cb1..2a256e7 100644 --- a/templates/help/ja/systemDb.tpl +++ b/templates/help/ja/systemDb.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strSystemDb|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strSystemDb|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/innerError.tpl b/templates/innerError.tpl index 829717e..2cb07e7 100644 --- a/templates/innerError.tpl +++ b/templates/innerError.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeInfo|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeInfo|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/innerLog.tpl b/templates/innerLog.tpl index 8735268..d9f89ed 100644 --- a/templates/innerLog.tpl +++ b/templates/innerLog.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/innerNodeServerStatus.tpl b/templates/innerNodeServerStatus.tpl index 4f4284f..4750d15 100644 --- a/templates/innerNodeServerStatus.tpl +++ b/templates/innerNodeServerStatus.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/innerSummary.tpl b/templates/innerSummary.tpl index 1237bc5..38177d9 100644 --- a/templates/innerSummary.tpl +++ b/templates/innerSummary.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/innerSystemCatalog.tpl b/templates/innerSystemCatalog.tpl index be491fd..35f1bbe 100644 --- a/templates/innerSystemCatalog.tpl +++ b/templates/innerSystemCatalog.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/login.tpl b/templates/login.tpl index 576133c..e8199ec 100644 --- a/templates/login.tpl +++ b/templates/login.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strLogin|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strLogin|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/nodeServerStatus.tpl b/templates/nodeServerStatus.tpl index eb94ddd..8c7a259 100644 --- a/templates/nodeServerStatus.tpl +++ b/templates/nodeServerStatus.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> <!-- diff --git a/templates/nodeStatus.tpl b/templates/nodeStatus.tpl index b3126c4..2e54670 100644 --- a/templates/nodeStatus.tpl +++ b/templates/nodeStatus.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strNodeInfo|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strNodeInfo|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/pgconfig.tpl b/templates/pgconfig.tpl index 091402f..ae13f68 100644 --- a/templates/pgconfig.tpl +++ b/templates/pgconfig.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strPgConfSetting|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strPgConfSetting|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> <!-- diff --git a/templates/pgmgtNotFound.tpl b/templates/pgmgtNotFound.tpl index 3e6364e..bab7a0d 100644 --- a/templates/pgmgtNotFound.tpl +++ b/templates/pgmgtNotFound.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>Error</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>Error</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/procInfo.tpl b/templates/procInfo.tpl index 46a0dcf..3221ae4 100644 --- a/templates/procInfo.tpl +++ b/templates/procInfo.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> </head> <body> diff --git a/templates/queryCache.tpl b/templates/queryCache.tpl index 38eae92..30887cc 100644 --- a/templates/queryCache.tpl +++ b/templates/queryCache.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strQueryCache|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strQueryCache|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> {literal} diff --git a/templates/status.tpl b/templates/status.tpl index 441dc6d..336fed4 100644 --- a/templates/status.tpl +++ b/templates/status.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strPgpoolStatus|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strPgpoolStatus|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> <!-- diff --git a/templates/systemDb.tpl b/templates/systemDb.tpl index 95d7258..5575c5d 100644 --- a/templates/systemDb.tpl +++ b/templates/systemDb.tpl @@ -1,8 +1,8 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> -<title>{$message.strSystemDb|escape}</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>{$message.strSystemDb|escape}</title> <link href="screen.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> var msgDeleteConfirm = "{$message.msgDeleteConfirm|escape}"; |