summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2009-06-12 11:17:08 +0100
committerJonny Lamb <jonny.lamb@collabora.co.uk>2009-06-12 11:17:08 +0100
commit3f746b991a2d7ffa15b217179bd3641f3bfd5cb7 (patch)
treeca55cd95e393d716e2109e97041e1ac9d729976e /tools
parentb936a8181c62844743a6fee337ba0efc18f550ae (diff)
Output codegen text in utf-8.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'tools')
-rw-r--r--tools/python-constants-generator.xsl2
-rw-r--r--tools/python-errors-generator.xsl2
-rw-r--r--tools/python-interfaces-generator.xsl2
-rw-r--r--tools/spec-to-python.xsl2
4 files changed, 4 insertions, 4 deletions
diff --git a/tools/python-constants-generator.xsl b/tools/python-constants-generator.xsl
index d3058a0..2865af9 100644
--- a/tools/python-constants-generator.xsl
+++ b/tools/python-constants-generator.xsl
@@ -2,7 +2,7 @@
xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0"
exclude-result-prefixes="tp">
- <xsl:output method="text" indent="no" encoding="ascii"/>
+ <xsl:output method="text" indent="no" encoding="utf-8"/>
<xsl:variable name="upper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
<xsl:variable name="lower" select="'abcdefghijklmnopqrstuvwxyz'"/>
diff --git a/tools/python-errors-generator.xsl b/tools/python-errors-generator.xsl
index 8406bae..7441c7c 100644
--- a/tools/python-errors-generator.xsl
+++ b/tools/python-errors-generator.xsl
@@ -2,7 +2,7 @@
xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0"
exclude-result-prefixes="tp">
- <xsl:output method="text" indent="no" encoding="ascii"/>
+ <xsl:output method="text" indent="no" encoding="utf-8"/>
<xsl:template match="tp:errors/tp:error">
class <xsl:value-of select="translate(@name, '. ', '')"/>(DBusException):
diff --git a/tools/python-interfaces-generator.xsl b/tools/python-interfaces-generator.xsl
index 9695247..1b80212 100644
--- a/tools/python-interfaces-generator.xsl
+++ b/tools/python-interfaces-generator.xsl
@@ -2,7 +2,7 @@
xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0"
exclude-result-prefixes="tp">
- <xsl:output method="text" indent="no" encoding="ascii"/>
+ <xsl:output method="text" indent="no" encoding="utf-8"/>
<xsl:variable name="upper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
<xsl:variable name="lower" select="'abcdefghijklmnopqrstuvwxyz'"/>
diff --git a/tools/spec-to-python.xsl b/tools/spec-to-python.xsl
index 9d5cd08..2fd6456 100644
--- a/tools/spec-to-python.xsl
+++ b/tools/spec-to-python.xsl
@@ -2,7 +2,7 @@
xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0"
exclude-result-prefixes="tp">
- <xsl:output method="text" indent="no" encoding="ascii"/>
+ <xsl:output method="text" indent="no" encoding="utf-8"/>
<xsl:variable name="upper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
<xsl:variable name="lower" select="'abcdefghijklmnopqrstuvwxyz'"/>