diff options
author | Not Zed <NotZed@Ximian.com> | 2005-05-19 14:07:05 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-05-19 14:07:05 +0800 |
commit | e8bb290b211afcd5c1d3aed5ffda4b32672086d9 (patch) | |
tree | a50b2785b878c6f838c5b5ea02d080d131968215 /doc | |
parent | 16eefad8858f0821257487aa1a6ac970708fd972 (diff) | |
download | gsoc2013-evolution-e8bb290b211afcd5c1d3aed5ffda4b32672086d9.tar.gz gsoc2013-evolution-e8bb290b211afcd5c1d3aed5ffda4b32672086d9.tar.zst gsoc2013-evolution-e8bb290b211afcd5c1d3aed5ffda4b32672086d9.zip |
added some stuff about the pseudo mime types used for finer control of the
2005-05-19 Not Zed <NotZed@Ximian.com>
* evolution-plugin-manual.xml: added some stuff about the pseudo
mime types used for finer control of the formatter.
svn path=/trunk/; revision=29383
Diffstat (limited to 'doc')
-rw-r--r-- | doc/devel/ChangeLog | 5 | ||||
-rw-r--r-- | doc/devel/evolution-plugin-manual.xml | 48 |
2 files changed, 49 insertions, 4 deletions
diff --git a/doc/devel/ChangeLog b/doc/devel/ChangeLog index 562faf8216..69ef0b5226 100644 --- a/doc/devel/ChangeLog +++ b/doc/devel/ChangeLog @@ -1,3 +1,8 @@ +2005-05-19 Not Zed <NotZed@Ximian.com> + + * evolution-plugin-manual.xml: added some stuff about the pseudo + mime types used for finer control of the formatter. + 2005-05-13 Not Zed <NotZed@Ximian.com> * evolution-plugin-manual.xml: added some info on the menu tag for diff --git a/doc/devel/evolution-plugin-manual.xml b/doc/devel/evolution-plugin-manual.xml index aad93ef0f3..d184259ae4 100644 --- a/doc/devel/evolution-plugin-manual.xml +++ b/doc/devel/evolution-plugin-manual.xml @@ -1735,12 +1735,15 @@ <orderedlist> <listitem> <simpara>Outputs pre-amble information. e.g. Flag-For-Followup - status.</simpara> + status. The pre-amble renderer is chosen using the pseudo + mime-type <constant>x-evolution/message/prefix</constant>, and can be + overridden or added to by plugging in to that type.</simpara> </listitem> <listitem> - <simpara>Invokes <methodname>format_message</methodname> to begin the message - formatting. <methodname>format_message</methodname> displays the message header, then - looks up the content object.</simpara> + <simpara>Looks up a handler for the pseudo mime-type + <constant>x-evolution/message/rfc822</constant> and invokes it + to begin message formatting. The default handler displays the + message headers and then formats the message contents. </listitem> <listitem> <simpara>Using the mime-type of the content object (whether @@ -2329,6 +2332,43 @@ <interfacename>com.novell.evolution.mail.format:1.0</interfacename>. </para> + <para> + The mail formatter allows the rendering of attachments to be + overridden based on the mime-type of the attachment. There are + additional pseudo-mime-types which can be hooked on to to override + some basic functions. These types are invalid mime-types so cannot + occur in received messages. + </para> + + <informaltable> + <tgroup cols="2"> + <colspec colnum="1" colname="field" colwidth="1*"/> + <colspec colnum="2" colname="value" colwidth="4*"/> + <tbody valign="top"> + <row> + <entry><constant>x-evolution/message/prefix</constant></entry> + <entry>If it exists, this handler will be called before any + other content is output. This can be used to display global + message-information, such as follow-up details. Normally + this handler should chain its call to the parent handler once + it is finished.</entry> + </row> + <row> + <entry><constant>x-evolution/message/rfc822</entry> + <entry>This handler is called to output messages, including + attached messages. The default handler will output the + user-desired message headers and then render the message + content. It also does some processing to do with secured + message validation contexts. As this is not a simple + handler, generally this hook point should only be used to + supplement the prefix output where it is desirable to operate + on attached messages. + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + <sect2> <title>Base Formatter</title> |