diff options
author | Chris Toshok <toshok@ximian.com> | 2004-02-04 01:29:42 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-02-04 01:29:42 +0800 |
commit | c89d4ffa5d97289457c207fa6a8dacc1bdad07cb (patch) | |
tree | 6cc3413cec9da1d2668a603a914754c2706ad8f1 /e-util | |
parent | a7026f1398708b48e5b8a8c02cba345647528f8a (diff) | |
download | gsoc2013-evolution-c89d4ffa5d97289457c207fa6a8dacc1bdad07cb.tar.gz gsoc2013-evolution-c89d4ffa5d97289457c207fa6a8dacc1bdad07cb.tar.zst gsoc2013-evolution-c89d4ffa5d97289457c207fa6a8dacc1bdad07cb.zip |
add callto:, h323:, and webcal: schemes.
2004-02-03 Chris Toshok <toshok@ximian.com>
* e-html-utils.c (e_text_to_html_full): add callto:, h323:, and
webcal: schemes.
svn path=/trunk/; revision=24585
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-html-utils.c | 5 |
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); |