aboutsummaryrefslogtreecommitdiffstats
path: root/camel/ChangeLog
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-12-10 11:44:17 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-12-10 11:44:17 +0800
commited25ea4d31b7831c12dced34acea61c7770d7684 (patch)
treeb2e01baddb9da409b5aa7c358c75ff49e9532170 /camel/ChangeLog
parentbdd9cae5e97a4421a2eff03ca83e2bb8931a59b4 (diff)
downloadgsoc2013-evolution-ed25ea4d31b7831c12dced34acea61c7770d7684.tar
gsoc2013-evolution-ed25ea4d31b7831c12dced34acea61c7770d7684.tar.gz
gsoc2013-evolution-ed25ea4d31b7831c12dced34acea61c7770d7684.tar.bz2
gsoc2013-evolution-ed25ea4d31b7831c12dced34acea61c7770d7684.tar.lz
gsoc2013-evolution-ed25ea4d31b7831c12dced34acea61c7770d7684.tar.xz
gsoc2013-evolution-ed25ea4d31b7831c12dced34acea61c7770d7684.tar.zst
gsoc2013-evolution-ed25ea4d31b7831c12dced34acea61c7770d7684.zip
Fixed to not be fooled in the case where the address is followed
2002-12-09 Jeffrey Stedfast <fejj@ximian.com> * camel-url-scanner.c (camel_url_addrspec_end): Fixed to not be fooled in the case where the address is followed immediately by a period. (camel_url_web_end): Made more robust. (camel_url_scanner_scan): Oops. We need to set the match->pattern string pointer to the correct pattern before executing the start/end methods (as some of them rely on this info). svn path=/trunk/; revision=19077
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r--camel/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 1d81bead50..592dd9c74b 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,15 @@
2002-12-09 Jeffrey Stedfast <fejj@ximian.com>
+ * camel-url-scanner.c (camel_url_addrspec_end): Fixed to not be
+ fooled in the case where the address is followed immediately by a
+ period.
+ (camel_url_web_end): Made more robust.
+ (camel_url_scanner_scan): Oops. We need to set the match->pattern
+ string pointer to the correct pattern before executing the
+ start/end methods (as some of them rely on this info).
+
+2002-12-09 Jeffrey Stedfast <fejj@ximian.com>
+
* camel-url-scanner.c: New code to scan for patterns (used only
for url pattern matching atm, but we may find other uses for this
and thus rename it? I dunno). Uses ETrie.