diff options
author | Tomas Popela <tpopela@redhat.com> | 2014-07-21 23:00:41 +0800 |
---|---|---|
committer | Tomas Popela <tpopela@redhat.com> | 2014-07-21 23:02:08 +0800 |
commit | b3e10763baca2533dcb7d6a36cbd64d9b2e376a9 (patch) | |
tree | d2ba8369593a05787529014b2ab803a3f2686d49 | |
parent | 85ceca17e61b29385a4332e1547f5f8861bdf502 (diff) | |
download | gsoc2013-evolution-b3e10763baca2533dcb7d6a36cbd64d9b2e376a9.tar gsoc2013-evolution-b3e10763baca2533dcb7d6a36cbd64d9b2e376a9.tar.gz gsoc2013-evolution-b3e10763baca2533dcb7d6a36cbd64d9b2e376a9.tar.bz2 gsoc2013-evolution-b3e10763baca2533dcb7d6a36cbd64d9b2e376a9.tar.lz gsoc2013-evolution-b3e10763baca2533dcb7d6a36cbd64d9b2e376a9.tar.xz gsoc2013-evolution-b3e10763baca2533dcb7d6a36cbd64d9b2e376a9.tar.zst gsoc2013-evolution-b3e10763baca2533dcb7d6a36cbd64d9b2e376a9.zip |
EHTMLEditorView - Don't put unnecessary new lines in the quoted content when generating the plain text version of the message
-rw-r--r-- | e-util/e-html-editor-view.c | 45 |
1 files changed, 31 insertions, 14 deletions
diff --git a/e-util/e-html-editor-view.c b/e-util/e-html-editor-view.c index 5956439f1e..d78baa423b 100644 --- a/e-util/e-html-editor-view.c +++ b/e-util/e-html-editor-view.c @@ -4785,16 +4785,10 @@ process_blockquote (WebKitDOMElement *blockquote) length = webkit_dom_node_list_get_length (list); for (jj = 0; jj < length; jj++) { WebKitDOMNode *quoted_node; - gchar *text_content, *tmp = NULL; + gchar *text_content; quoted_node = webkit_dom_node_list_item (list, jj); text_content = webkit_dom_node_get_text_content (quoted_node); - if (webkit_dom_node_get_previous_sibling (quoted_node)) { - tmp = g_strconcat ("<br>", text_content, NULL); - g_free (text_content); - text_content = tmp; - } - webkit_dom_html_element_set_outer_html ( WEBKIT_DOM_HTML_ELEMENT (quoted_node), text_content, NULL); @@ -4807,16 +4801,10 @@ process_blockquote (WebKitDOMElement *blockquote) length = webkit_dom_node_list_get_length (list); for (jj = 0; jj < length; jj++) { WebKitDOMNode *quoted_node; - gchar *text_content, *tmp = NULL; + gchar *text_content; quoted_node = webkit_dom_node_list_item (list, jj); text_content = webkit_dom_node_get_text_content (quoted_node); - if (webkit_dom_node_get_previous_sibling (quoted_node)) { - tmp = g_strconcat ("<br>", text_content, NULL); - g_free (text_content); - text_content = tmp; - } - webkit_dom_html_element_set_outer_html ( WEBKIT_DOM_HTML_ELEMENT (quoted_node), text_content, NULL); @@ -5404,6 +5392,7 @@ process_elements (EHTMLEditorView *view, remove_node (child); skip_node = TRUE; + goto next; } if (element_has_class (WEBKIT_DOM_ELEMENT (child), "Apple-tab-span")) { @@ -5449,6 +5438,7 @@ process_elements (EHTMLEditorView *view, } skip_node = TRUE; + goto next; } /* Leave blockquotes as they are */ @@ -5459,6 +5449,7 @@ process_elements (EHTMLEditorView *view, g_string_append (buffer, content); g_free (content); skip_node = TRUE; + goto next; } else { if (!changing_mode && to_plain_text) { if (get_citation_level (child, FALSE) == 0) { @@ -5508,6 +5499,7 @@ process_elements (EHTMLEditorView *view, } skip_node = TRUE; + goto next; } /* Leave paragraphs as they are */ @@ -5518,6 +5510,7 @@ process_elements (EHTMLEditorView *view, g_string_append (buffer, content); g_free (content); skip_node = TRUE; + goto next; } if (to_html) { remove_base_attributes (WEBKIT_DOM_ELEMENT (child)); @@ -5553,6 +5546,7 @@ process_elements (EHTMLEditorView *view, skip_nl = TRUE; } skip_node = TRUE; + goto next; } } } @@ -5568,6 +5562,7 @@ process_elements (EHTMLEditorView *view, g_string_append (buffer, content); g_free (content); skip_node = TRUE; + goto next; } if (to_html) { WebKitDOMElement *img; @@ -5585,6 +5580,7 @@ process_elements (EHTMLEditorView *view, NULL); remove_node (child); skip_node = TRUE; + goto next; } } @@ -5607,6 +5603,23 @@ process_elements (EHTMLEditorView *view, g_string_append (buffer, changing_mode ? "<br>" : "\n"); } } + + if (WEBKIT_DOM_IS_HTML_ANCHOR_ELEMENT (child)) { + if (changing_mode && to_plain_text) { + content = webkit_dom_html_element_get_outer_html ( + WEBKIT_DOM_HTML_ELEMENT (child)); + g_string_append (buffer, content); + g_free (content); + skip_node = TRUE; + } + if (!changing_mode && to_plain_text) { + content = webkit_dom_html_element_get_inner_text ( + WEBKIT_DOM_HTML_ELEMENT (child)); + g_string_append (buffer, content); + g_free (content); + skip_node = TRUE; + } + } next: if (webkit_dom_node_has_child_nodes (child) && !skip_node) process_elements ( @@ -5639,6 +5652,10 @@ process_elements (EHTMLEditorView *view, } } + /* Don't put unnecessary NL after the citation */ + if (add_br) + add_br = !is_citation_node (node); + content = webkit_dom_node_get_text_content (node); if (add_br && g_utf8_strlen (content, -1) > 0 && !skip_nl) g_string_append (buffer, changing_mode ? "<br>" : "\n"); |