From c9a513bf1a6945fac7ce82f8dfe61ed21197354b Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Thu, 26 Mar 2009 09:31:48 +0000 Subject: [PATCH] Fixes NB#96600, added feed protocol support pmo-trunk-r8407 --- src/modest-text-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modest-text-utils.c b/src/modest-text-utils.c index f1c40b4..e7c6e83 100644 --- a/src/modest-text-utils.c +++ b/src/modest-text-utils.c @@ -109,7 +109,7 @@ struct _url_match_t { /* note: match MARK_AMP_URI_STR as well, because after txt->html, a '&' will look like $(MARK_AMP_URI_STR)"amp;" */ #define MAIL_VIEWER_URL_MATCH_PATTERNS { \ - { "(file|rtsp|http|ftp|https|mms|mmsh|webcal|feed|rtsp|rdp|lastfm|sip)://[-a-z0-9_$.+!*(),;:@%=?/~#" MARK_AMP_URI_STR \ + { "(feed:|)(file|rtsp|http|ftp|https|mms|mmsh|webcal|rtsp|rdp|lastfm|sip)://[-a-z0-9_$.+!*(),;:@%=?/~#" MARK_AMP_URI_STR \ "]+[-a-z0-9_$%" MARK_AMP_URI_STR "=?/~#]", \ NULL, NULL },\ { "www\\.[-a-z0-9_$.+!*(),;:@%=?/~#" MARK_AMP_URI_STR "]+[-a-z0-9_$%" MARK_AMP_URI_STR "=?/~#]",\ -- 1.7.9.5