aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-02-15 04:42:51 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-02-15 04:42:51 +0800
commite63ba441e610e2b137b4bf986cc839d140eb9c52 (patch)
tree934787591622ca728294db4db49c92d1221eb661 /camel
parent6545e80191916bea8705e0d4feb0e00192b36905 (diff)
downloadgsoc2013-evolution-e63ba441e610e2b137b4bf986cc839d140eb9c52.tar
gsoc2013-evolution-e63ba441e610e2b137b4bf986cc839d140eb9c52.tar.gz
gsoc2013-evolution-e63ba441e610e2b137b4bf986cc839d140eb9c52.tar.bz2
gsoc2013-evolution-e63ba441e610e2b137b4bf986cc839d140eb9c52.tar.lz
gsoc2013-evolution-e63ba441e610e2b137b4bf986cc839d140eb9c52.tar.xz
gsoc2013-evolution-e63ba441e610e2b137b4bf986cc839d140eb9c52.tar.zst
gsoc2013-evolution-e63ba441e610e2b137b4bf986cc839d140eb9c52.zip
Mark chars with the high-bit set as CTRL chars. (camel_url_web_end): If
2003-02-14 Jeffrey Stedfast <fejj@ximian.com> * camel-url-scanner.c (url_scanner_table_init): Mark chars with the high-bit set as CTRL chars. (camel_url_web_end): If the char before the start of the url is an open-brace, watch out for the matching close-brace. (camel_url_file_end): Same. svn path=/trunk/; revision=19913
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog8
-rw-r--r--camel/camel-url-scanner.c53
2 files changed, 50 insertions, 11 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index fb47bd7a1d..e95b59616e 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,13 @@
2003-02-14 Jeffrey Stedfast <fejj@ximian.com>
+ * camel-url-scanner.c (url_scanner_table_init): Mark chars with
+ the high-bit set as CTRL chars.
+ (camel_url_web_end): If the char before the start of the url is an
+ open-brace, watch out for the matching close-brace.
+ (camel_url_file_end): Same.
+
+2003-02-14 Jeffrey Stedfast <fejj@ximian.com>
+
* camel-smime-context.c (smime_get_password): Same as the gpg and
pkcs7 contexts.
diff --git a/camel/camel-url-scanner.c b/camel/camel-url-scanner.c
index 32ff7064f3..fb059b8369 100644
--- a/camel/camel-url-scanner.c
+++ b/camel/camel-url-scanner.c
@@ -109,14 +109,14 @@ static unsigned char url_scanner_table[256] = {
66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66,160,160,160,128,128,
128, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66,
66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66,128,128,128,128, 1,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
};
enum {
@@ -226,6 +226,30 @@ camel_url_addrspec_end (const char *in, const char *pos, const char *inend, urlm
return TRUE;
}
+static struct {
+ char open;
+ char close;
+} url_braces[] = {
+ { '(', ')' },
+ { '{', '}' },
+ { '[', ']' },
+};
+
+static char
+url_stop_at_brace (const char *in, size_t so)
+{
+ int i;
+
+ if (so > 0) {
+ for (i = 0; i < 3; i++) {
+ if (in[so - 1] == url_braces[i].open)
+ return url_braces[i].close;
+ }
+ }
+
+ return '\0';
+}
+
gboolean
camel_url_file_start (const char *in, const char *pos, const char *inend, urlmatch_t *match)
{
@@ -238,13 +262,16 @@ gboolean
camel_url_file_end (const char *in, const char *pos, const char *inend, urlmatch_t *match)
{
register const char *inptr = pos;
+ char close_brace;
inptr += strlen (match->pattern);
if (*inptr == '/')
inptr++;
- while (inptr < inend && is_urlsafe (*inptr))
+ close_brace = url_stop_at_brace (in, match->um_so);
+
+ while (inptr < inend && is_urlsafe (*inptr) && *inptr != close_brace)
inptr++;
if (inptr == pos)
@@ -268,9 +295,12 @@ camel_url_web_end (const char *in, const char *pos, const char *inend, urlmatch_
{
register const char *inptr = pos;
int parts = 0, digits, port;
+ char close_brace;
inptr += strlen (match->pattern);
+ close_brace = url_stop_at_brace (in, match->um_so);
+
/* find the end of the domain */
if (is_digit (*inptr)) {
/* domain-literal */
@@ -325,7 +355,7 @@ camel_url_web_end (const char *in, const char *pos, const char *inend, urlmatch_
case '/': /* we've detected a path component to our url */
inptr++;
- while (inptr < inend && is_urlsafe (*inptr))
+ while (inptr < inend && is_urlsafe (*inptr) && *inptr != close_brace)
inptr++;
break;
@@ -375,9 +405,10 @@ url_scanner_table_init (void)
url_scanner_table[i] |= IS_DIGIT | IS_DOMAIN;
if ((i >= 'a' && i <= 'z') || (i >= 'A' && i <= 'Z'))
url_scanner_table[i] |= IS_ALPHA | IS_DOMAIN;
+ if (i >= 127)
+ url_scanner_table[i] |= IS_CTRL;
}
- url_scanner_table[127] |= IS_CTRL;
url_scanner_table[' '] |= IS_SPACE;
url_scanner_table['-'] |= IS_DOMAIN;