X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-text-utils.c;h=2c09387fdefe2b1877ec5fe8636264f456fd2076;hp=243ede3d1c84089aebe43ea48e24ecad4165a6b7;hb=556398d85f1803ab8d4871a107bc4b8938c444ae;hpb=fecb964ed9e028e9f1c169b6904ad2064ea59304 diff --git a/src/modest-text-utils.c b/src/modest-text-utils.c index 243ede3..2c09387 100644 --- a/src/modest-text-utils.c +++ b/src/modest-text-utils.c @@ -114,6 +114,7 @@ static gchar* modest_text_utils_quote_html (const gchar *text, gchar * modest_text_utils_quote (const gchar *text, const gchar *content_type, + const gchar *signature, const gchar *from, const time_t sent_date, int limit) @@ -141,16 +142,27 @@ modest_text_utils_quote (const gchar *text, gchar * modest_text_utils_cite (const gchar *text, const gchar *content_type, + const gchar *signature, const gchar *from, time_t sent_date) { gchar *tmp, *retval; + gchar *tmp_sig; g_return_val_if_fail (text, NULL); g_return_val_if_fail (content_type, NULL); + if (!signature) + tmp_sig = g_strdup (""); + else if (!strcmp(content_type, "text/html")) { + tmp_sig = modest_text_utils_convert_to_html_body(signature); + } else { + tmp_sig = g_strdup (signature); + } + tmp = cite (sent_date, from); - retval = g_strdup_printf ("%s%s\n", tmp, text); + retval = g_strdup_printf ("%s%s%s\n", tmp_sig, tmp, text); + g_free (tmp_sig); g_free (tmp); return retval; @@ -159,15 +171,17 @@ modest_text_utils_cite (const gchar *text, gchar * modest_text_utils_inline (const gchar *text, const gchar *content_type, + const gchar *signature, const gchar *from, time_t sent_date, const gchar *to, const gchar *subject) { gchar sent_str[101]; - const gchar *plain_format = "%s\n%s %s\n%s %s\n%s %s\n%s %s\n\n%s"; + gchar *formatted_signature; + const gchar *plain_format = "%s%s\n%s %s\n%s %s\n%s %s\n%s %s\n\n%s"; const gchar *html_format = \ - "%s
\n\n" \ + "%s%s
\n
\n" \ "\n" \ "\n" \ "\n" \ @@ -188,7 +202,17 @@ modest_text_utils_inline (const gchar *text, else format = plain_format; - return g_strdup_printf (format, + if (signature != NULL) { + if (!strcmp (content_type, "text/html")) { + formatted_signature = g_strconcat (signature, "
", NULL); + } else { + formatted_signature = g_strconcat (signature, "\n"); + } + } else { + formatted_signature = ""; + } + + return g_strdup_printf (format, formatted_signature, FORWARD_STRING, FROM_STRING, (from) ? from : EMPTY_STRING, SENT_STRING, sent_str, @@ -272,27 +296,15 @@ modest_text_utils_remove_address (const gchar *address_list, const gchar *addres return result; } - -gchar* -modest_text_utils_convert_to_html (const gchar *data) +static void +modest_text_utils_convert_buffer_to_html (GString *html, const gchar *data) { guint i; gboolean space_seen = FALSE; - GString *html; gsize len; - - if (!data) - return NULL; len = strlen (data); - html = g_string_sized_new (1.5 * len); /* just a guess... */ - g_string_append_printf (html, - "" - "" - "" - ""); - /* replace with special html chars where needed*/ for (i = 0; i != len; ++i) { char kar = data[i]; @@ -322,13 +334,110 @@ modest_text_utils_convert_to_html (const gchar *data) g_string_append_c (html, kar); } } +} + +gchar* +modest_text_utils_convert_to_html (const gchar *data) +{ + GString *html; + gsize len; + + if (!data) + return NULL; + + len = strlen (data); + html = g_string_sized_new (1.5 * len); /* just a guess... */ + + g_string_append_printf (html, + "" + "" + "" + ""); + + modest_text_utils_convert_buffer_to_html (html, data); - g_string_append (html, ""); + g_string_append (html, ""); + hyperlinkify_plain_text (html); + + return g_string_free (html, FALSE); +} + +gchar * +modest_text_utils_convert_to_html_body (const gchar *data) +{ + GString *html; + gsize len; + + if (!data) + return NULL; + + len = strlen (data); + html = g_string_sized_new (1.5 * len); /* just a guess... */ + + modest_text_utils_convert_buffer_to_html (html, data); + hyperlinkify_plain_text (html); return g_string_free (html, FALSE); } +void +modest_text_utils_get_addresses_indexes (const gchar *addresses, GSList **start_indexes, GSList **end_indexes) +{ + gchar *current, *start, *last_blank; + gint start_offset = 0, current_offset = 0; + + g_return_if_fail (start_indexes != NULL); + g_return_if_fail (end_indexes != NULL); + + start = (gchar *) addresses; + current = start; + last_blank = start; + + while (*current != '\0') { + if ((start == current)&&((*current == ' ')||(*current == ',')||(*current == ';'))) { + start = g_utf8_next_char (start); + start_offset++; + last_blank = current; + } else if ((*current == ',')||(*current == ';')) { + gint *start_index, *end_index; + start_index = g_new0(gint, 1); + end_index = g_new0(gint, 1); + *start_index = start_offset; + *end_index = current_offset; + *start_indexes = g_slist_prepend (*start_indexes, start_index); + *end_indexes = g_slist_prepend (*end_indexes, end_index); + start = g_utf8_next_char (current); + start_offset = current_offset + 1; + last_blank = start; + } else if (*current == '"') { + current = g_utf8_next_char (current); + current_offset ++; + while ((*current != '"')&&(*current != '\0')) { + current = g_utf8_next_char (current); + current_offset ++; + } + } + + current = g_utf8_next_char (current); + current_offset ++; + } + + if (start != current) { + gint *start_index, *end_index; + start_index = g_new0(gint, 1); + end_index = g_new0(gint, 1); + *start_index = start_offset; + *end_index = current_offset; + *start_indexes = g_slist_prepend (*start_indexes, start_index); + *end_indexes = g_slist_prepend (*end_indexes, end_index); + } + + *start_indexes = g_slist_reverse (*start_indexes); + *end_indexes = g_slist_reverse (*end_indexes); + + return; +} GSList * modest_text_utils_split_addresses_list (const gchar *addresses) @@ -341,25 +450,25 @@ modest_text_utils_split_addresses_list (const gchar *addresses) last_blank = start; while (*current != '\0') { - if ((start == current)&&((*current == ' ')||(*current == ','))) { - start++; + if ((start == current)&&((*current == ' ')||(*current == ',')||(*current == ';'))) { + start = g_utf8_next_char (start); last_blank = current; - } else if (*current == ',') { + } else if ((*current == ',')||(*current == ';')) { gchar *new_address = NULL; new_address = g_strndup (start, current - last_blank); result = g_slist_prepend (result, new_address); - start = current + 1; + start = g_utf8_next_char (current); last_blank = start; } else if (*current == '\"') { if (current == start) { - current++; - start++; + current = g_utf8_next_char (current); + start = g_utf8_next_char (start); } while ((*current != '\"')&&(*current != '\0')) - current++; + current = g_utf8_next_char (current); } - current++; + current = g_utf8_next_char (current); } if (start != current) { @@ -924,7 +1033,74 @@ modest_text_utils_validate_email_address (const gchar *email_address) return (count >= 1) ? TRUE : FALSE; } +gboolean +modest_text_utils_validate_recipient (const gchar *recipient) +{ + gchar *stripped, *current; + gchar *right_part; + gboolean has_error = FALSE; + + if (modest_text_utils_validate_email_address (recipient)) + return TRUE; + stripped = g_strdup (recipient); + stripped = g_strstrip (stripped); + current = stripped; + + if (*current == '\0') { + g_free (stripped); + return FALSE; + } + + /* quoted string */ + if (*current == '\"') { + current = g_utf8_next_char (current); + has_error = TRUE; + for (; *current != '\0'; current = g_utf8_next_char (current)) { + if (*current == '\\') { + if (current[1] <0) { + has_error = TRUE; + break; + } + } else if (*current == '\"') { + has_error = FALSE; + current = g_utf8_next_char (current); + break; + } + } + } else { + has_error = TRUE; + for (current = stripped ; *current != '\0'; current = g_utf8_next_char (current)) { + if (*current == '<') { + has_error = FALSE; + break; + } + } + } + + if (has_error) { + g_free (stripped); + return FALSE; + } + + right_part = g_strdup (current); + g_free (stripped); + right_part = g_strstrip (right_part); + if (g_str_has_prefix (right_part, "<") && + g_str_has_suffix (right_part, ">")) { + gchar *address; + gboolean valid; + + address = g_strndup (right_part+1, strlen (right_part) - 2); + g_free (right_part); + valid = modest_text_utils_validate_email_address (address); + g_free (address); + return valid; + } else { + g_free (right_part); + return FALSE; + } +} gchar * @@ -933,16 +1109,17 @@ modest_text_utils_get_display_size (guint size) const guint KB=1024; const guint MB=1024 * KB; const guint GB=1024 * MB; - const guint TB=1024 * GB; - - if (size < KB) - return g_strdup_printf (_("%0.1f Kb"), (double)size / KB); - else if (size < MB) - return g_strdup_printf (_("%d Kb"), size / KB); - else if (size < GB) - return g_strdup_printf (_("%d Mb"), size / MB); - else if (size < TB) - return g_strdup_printf (_("%d Gb"), size/ GB); + + if (0 < size && size < KB) + return g_strdup_printf (_FM("sfil_li_size_kb"), 1); + else if (KB <= size && size < 100 * KB) + return g_strdup_printf (_FM("sfil_li_size_1kb_99kb"), size / KB); + else if (100*KB <= size && size < MB) + return g_strdup_printf (_FM("sfil_li_size_100kb_1mb"), size / MB); + else if (MB <= size && size < 10*MB) + return g_strdup_printf (_FM("sfil_li_size_1mb_10mb"), size / MB); + else if (10*MB <= size && size < GB) + return g_strdup_printf (_FM("sfil_li_size_10mb_1gb"), size / MB); else - return g_strdup_printf (_("Very big")); + return g_strdup_printf (_FM("sfil_li_size_1gb_or_greater"), size / GB); }
%s%s
%s%s
%s%s