aboutsummaryrefslogtreecommitdiffstats
path: root/em-format/e-mail-formatter-text-plain.c
Commit message (Collapse)AuthorAgeFilesLines
* Bug #684447 - Check for highlight during configure.Dan Vrátil2012-10-091-0/+1
| | | | | | | | | | | | | | If the highlight program cannot be found width AC_PATH_PROGS, configure will abort with an error message. You can either a) install highlight b) specify the patch with HIGHLIGHT=/path/to/highlight c) pass --disable-text-highlight to configure to exclude the module This also makes text-highlight module to fallback to text/plain formatter when highlight program would crash or fail to ensure the content is delivered to user.
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-3/+3
|
* Bug #680577 - [text-highlight] - Failed to load partDan Vrátil2012-07-271-1/+1
|
* Bug #680123 - Freeze on message/disposition-notification email parsingDan Vrátil2012-07-181-1/+4
|
* Display text/plain in fixed-width fontDan Vrátil2012-06-271-1/+1
| | | | Regression from commit 99a875ed
* Bug #515004 - Allow toggling between text and HTML view of mailDan Vrátil2012-06-261-10/+16
|
* Coding style and whitespace cleanup.Matthew Barnes2012-06-251-1/+1
|
* Reduce usage of g_type_class_peek_parent().Matthew Barnes2012-06-251-1/+0
| | | | G_DEFINE_TYPE macros define a static "parent_class" variable.
* Mail formatter rewriteDan Vrátil2012-06-061-0/+212
All mail-parsing and formatting code has been moved to em-format. Parsing is handeled by EMailParser class, formatting by EMailFormatter. Both classes have registry which hold extensions - simple classes that do actual parsing and formatting. Each supported mime-type has it's own parser and formatter extension class.