Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2014-11-27 06:04:54 +0000
committerGreg Wilkins2014-11-27 06:04:54 +0000
commit174f2992a836cc16881e935c4ebc85d830859caa (patch)
treecd9365b5ec95ae68407c511fab0e7f366868f105
parent30776f9662eb943f8c7aab26bfc54e28dd2c2213 (diff)
downloadorg.eclipse.jetty.project-174f2992a836cc16881e935c4ebc85d830859caa.tar.gz
org.eclipse.jetty.project-174f2992a836cc16881e935c4ebc85d830859caa.tar.xz
org.eclipse.jetty.project-174f2992a836cc16881e935c4ebc85d830859caa.zip
439374 Use utf-8 as default charset for html
-rw-r--r--jetty-http/src/main/resources/org/eclipse/jetty/http/encoding.properties9
1 files changed, 5 insertions, 4 deletions
diff --git a/jetty-http/src/main/resources/org/eclipse/jetty/http/encoding.properties b/jetty-http/src/main/resources/org/eclipse/jetty/http/encoding.properties
index 16d4f8ac3e..04fe87e751 100644
--- a/jetty-http/src/main/resources/org/eclipse/jetty/http/encoding.properties
+++ b/jetty-http/src/main/resources/org/eclipse/jetty/http/encoding.properties
@@ -1,4 +1,5 @@
-text/html = iso-8859-1
-text/plain = iso-8859-1
-text/xml = utf-8
-text/json = utf-8
+text/html=utf-8
+text/plain=iso-8859-1
+text/xml=utf-8
+text/json=utf-8
+application/xhtml+xml=utf-8 \ No newline at end of file

Back to the top