aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-html-utils.c5
2 files changed, 9 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index cb33bf97cc..96b819ccbf 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-03 Chris Toshok <toshok@ximian.com>
+
+ * e-html-utils.c (e_text_to_html_full): add callto:, h323:, and
+ webcal: schemes.
+
2004-01-26 JP Rosevear <jpr@ximian.com>
* e-folder-map.c (e_folder_map_dir): use g_file_test instead of
diff --git a/e-util/e-html-utils.c b/e-util/e-html-utils.c
index 762627b259..535d772dc4 100644
--- a/e-util/e-html-utils.c
+++ b/e-util/e-html-utils.c
@@ -270,7 +270,10 @@ e_text_to_html_full (const char *input, unsigned int flags, guint32 color)
!strncasecmp (cur, "nntp://", 7) ||
!strncasecmp (cur, "mailto:", 7) ||
!strncasecmp (cur, "news:", 5) ||
- !strncasecmp (cur, "file:", 5)) {
+ !strncasecmp (cur, "file:", 5) ||
+ !strncasecmp (cur, "callto:", 7) ||
+ !strncasecmp (cur, "h323:", 5) ||
+ !strncasecmp (cur, "webcal:", 7)) {
tmpurl = url_extract (&cur, TRUE);
if (tmpurl) {
refurl = e_text_to_html (tmpurl, 0);