aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/prefer-plain/org-gnome-prefer-plain.eplug.xml
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2005-05-06 17:24:13 +0800
committerMichael Zucci <zucchi@src.gnome.org>2005-05-06 17:24:13 +0800
commitb9269bd09862b22a89d44a61a5eb728c28ec3761 (patch)
tree23320801f462224ce60b4545175b66e55d1fc6f3 /plugins/prefer-plain/org-gnome-prefer-plain.eplug.xml
parentf77c58f8ae17a65a78213e54f78f8c316ddfc839 (diff)
downloadgsoc2013-evolution-b9269bd09862b22a89d44a61a5eb728c28ec3761.tar
gsoc2013-evolution-b9269bd09862b22a89d44a61a5eb728c28ec3761.tar.gz
gsoc2013-evolution-b9269bd09862b22a89d44a61a5eb728c28ec3761.tar.bz2
gsoc2013-evolution-b9269bd09862b22a89d44a61a5eb728c28ec3761.tar.lz
gsoc2013-evolution-b9269bd09862b22a89d44a61a5eb728c28ec3761.tar.xz
gsoc2013-evolution-b9269bd09862b22a89d44a61a5eb728c28ec3761.tar.zst
gsoc2013-evolution-b9269bd09862b22a89d44a61a5eb728c28ec3761.zip
fix names so that intltool will parse as xml
remove use of e-error-tool tag xml for translations where appropriate svn path=/trunk/; revision=29304
Diffstat (limited to 'plugins/prefer-plain/org-gnome-prefer-plain.eplug.xml')
-rw-r--r--plugins/prefer-plain/org-gnome-prefer-plain.eplug.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/plugins/prefer-plain/org-gnome-prefer-plain.eplug.xml b/plugins/prefer-plain/org-gnome-prefer-plain.eplug.xml
new file mode 100644
index 0000000000..3d426e592f
--- /dev/null
+++ b/plugins/prefer-plain/org-gnome-prefer-plain.eplug.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0"?>
+<e-plugin-list>
+ <e-plugin
+ type="shlib"
+ id="org.gnome.evolution.plugin.preferPlain"
+ location="@PLUGINDIR@/liborg-gnome-prefer-plain.so"
+ _name="Prefer plain-text">
+
+
+ <_description>A test plugin which demonstrates a formatter plugin
+ which lets you choose to disable HTML mails.</_description>
+ <author name="Michael Zucchi" email="NotZed@Ximian.com"/>
+
+
+ <!-- hook into the 'html mail' preferences page -->
+ <hook class="org.gnome.evolution.mail.config:1.0">
+ <group target="prefs" id="org.gnome.evolution.mail.prefs">
+ <!-- we could also just insert our own items from a section factory, -->
+ <!-- but then we also need to create our own section frame -->
+ <item type="section_table" path="10.html/80.mode" _label="Plain Text Mode"/>
+ <item type="item_table" path="10.html/80.mode/00.mode" factory="org_gnome_prefer_plain_config_mode"/>
+ </group>
+ </hook>
+
+ <hook class="org.gnome.evolution.mail.format:1.0">
+ <!-- need to override all formatters that override this type -->
+ <group id="EMFormatHTMLDisplay">
+ <item mime_type="multipart/alternative" format="org_gnome_prefer_plain_multipart_alternative"/>
+ <item mime_type="text/html" format="org_gnome_prefer_plain_text_html"/>
+ </group>
+ <group id="EMFormat">
+ <item mime_type="multipart/alternative" format="org_gnome_prefer_plain_multipart_alternative"/>
+ <item mime_type="text/html" format="org_gnome_prefer_plain_text_html"/>
+ </group>
+ </hook>
+
+ </e-plugin>
+</e-plugin-list>