diff options
author | lpsolit%gmail.com <> | 2005-08-04 20:51:22 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-04 20:51:22 +0200 |
commit | 35f1ce88e12f8eee0d47fdc69d38cd7a4b12732d (patch) | |
tree | fa6c7f8dd0e3cabefd256606fd988d6b88906058 /template/en | |
parent | 1f3e3f23e9f52cc74b19fe184004b67441b10ee1 (diff) | |
download | bugzilla-35f1ce88e12f8eee0d47fdc69d38cd7a4b12732d.tar.gz bugzilla-35f1ce88e12f8eee0d47fdc69d38cd7a4b12732d.tar.xz |
Bug 126266: Use UTF-8 (Unicode) charset encoding for pages and email for NEW installations - Patch by byron jones (glob) <bugzilla@glob.com.au> r=wurblzap a=justdave
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/bug/show.xml.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/config.rdf.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/list/list.rdf.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/list/list.rss.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/reports/duplicates.rdf.tmpl | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/template/en/default/bug/show.xml.tmpl b/template/en/default/bug/show.xml.tmpl index 6c950a2bf..222204936 100644 --- a/template/en/default/bug/show.xml.tmpl +++ b/template/en/default/bug/show.xml.tmpl @@ -19,7 +19,7 @@ # Contributor(s): Bradley Baetz <bbaetz@student.usyd.edu.au> # #%] -<?xml version="1.0" standalone="yes"?> +<?xml version="1.0" [% IF Param('utf8') %]encoding="UTF-8" [% END %]standalone="yes" ?> <!DOCTYPE bugzilla SYSTEM "[% Param('urlbase') %]bugzilla.dtd"> <bugzilla version="[% VERSION %]" diff --git a/template/en/default/config.rdf.tmpl b/template/en/default/config.rdf.tmpl index 884c26a0c..27a7ba3a0 100644 --- a/template/en/default/config.rdf.tmpl +++ b/template/en/default/config.rdf.tmpl @@ -19,7 +19,7 @@ # Contributor(s): Myk Melez <myk@mozilla.org> #%] -<?xml version="1.0"?> +<?xml version="1.0"[% IF Param('utf8') %] encoding="UTF-8"[% END %]?> <!-- Note: this interface is experimental and under development. - We may and probably will make breaking changes to it in the future. --> diff --git a/template/en/default/list/list.rdf.tmpl b/template/en/default/list/list.rdf.tmpl index 39a2350f1..06376aca9 100644 --- a/template/en/default/list/list.rdf.tmpl +++ b/template/en/default/list/list.rdf.tmpl @@ -19,7 +19,7 @@ # Contributor(s): Myk Melez <myk@mozilla.org> #%] -<?xml version="1.0"?> +<?xml version="1.0"[% IF Param('utf8') %] encoding="UTF-8"[% END %]?> <!-- [% template_version %] --> <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" diff --git a/template/en/default/list/list.rss.tmpl b/template/en/default/list/list.rss.tmpl index 96d7a903d..f1d6c4745 100644 --- a/template/en/default/list/list.rss.tmpl +++ b/template/en/default/list/list.rss.tmpl @@ -28,7 +28,7 @@ [% DEFAULT title = "$terms.Bugzilla $terms.Bugs" %] -<?xml version="1.0"?> +<?xml version="1.0"[% IF Param('utf8') %] encoding="UTF-8"[% END %]?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:dc="http://purl.org/dc/elements/1.1/" diff --git a/template/en/default/reports/duplicates.rdf.tmpl b/template/en/default/reports/duplicates.rdf.tmpl index 941f9f70f..15594c7ca 100644 --- a/template/en/default/reports/duplicates.rdf.tmpl +++ b/template/en/default/reports/duplicates.rdf.tmpl @@ -19,7 +19,7 @@ # Contributor(s): Myk Melez <myk@mozilla.org> #%] -<?xml version="1.0"?> +<?xml version="1.0"[% IF Param('utf8') %] encoding="UTF-8"[% END %]?> <!-- [% template_version %] --> <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |