aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorAndre Klapper <a9016009@gmx.de>2007-01-27 22:44:48 +0800
committerAndre Klapper <aklapper@src.gnome.org>2007-01-27 22:44:48 +0800
commitb6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7 (patch)
tree4be2639cfdebc69a2f7cc18749ee6ef455012b9d /e-util
parent094f34621ab7b77a57f6b588348ced95756e9798 (diff)
downloadgsoc2013-evolution-b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7.tar
gsoc2013-evolution-b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7.tar.gz
gsoc2013-evolution-b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7.tar.bz2
gsoc2013-evolution-b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7.tar.lz
gsoc2013-evolution-b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7.tar.xz
gsoc2013-evolution-b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7.tar.zst
gsoc2013-evolution-b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7.zip
identify "sip:" URL's. Fixes bug #396543.
2007-01-27 Andre Klapper <a9016009@gmx.de> * e-html-utils.c: (e_text_to_html_full): identify "sip:" URL's. Fixes bug #396543. svn path=/trunk/; revision=33155
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-html-utils.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 0485d7d500..9945df293d 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-27 Andre Klapper <a9016009@gmx.de>
+
+ * e-html-utils.c: (e_text_to_html_full):
+ identify "sip:" URL's. Fixes bug #396543.
+
2007-01-22 Srinivasa Ragavan <sragavan@novell.com>
** GtkPrint API migration from Ebby Wiselyn.
diff --git a/e-util/e-html-utils.c b/e-util/e-html-utils.c
index c79e8f8a92..537f99a75e 100644
--- a/e-util/e-html-utils.c
+++ b/e-util/e-html-utils.c
@@ -273,6 +273,7 @@ e_text_to_html_full (const char *input, unsigned int flags, guint32 color)
!g_ascii_strncasecmp (cur, "file:", 5) ||
!g_ascii_strncasecmp (cur, "callto:", 7) ||
!g_ascii_strncasecmp (cur, "h323:", 5) ||
+ !g_ascii_strncasecmp (cur, "sip:", 4) ||
!g_ascii_strncasecmp (cur, "webcal:", 7)) {
tmpurl = url_extract (&cur, TRUE);
if (tmpurl) {