From ba099582f365aa886cf426c4b7c422244ccec2e4 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 11 May 2001 20:57:26 +0000 Subject: Decode Content-Location, either correctly or Netscape-generated-brokenly. * camel-mime-utils.c (header_location_decode): Decode Content-Location, either correctly or Netscape-generated-brokenly. * camel-mime-part.c (camel_mime_part_set_content_location, camel_mime_part_get_content_location, etc): Deal with Content-Location header. svn path=/trunk/; revision=9772 --- camel/camel-mime-utils.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'camel/camel-mime-utils.c') diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 7e486689ef..fbfbb3e5be 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -2842,6 +2842,32 @@ header_decode_date(const char *in, int *saveoffset) return t; } +char * +header_location_decode(const char *in) +{ + const char *p; + + /* Sigh. RFC2557 says: + * content-location = "Content-Location:" [CFWS] URI [CFWS] + * where URI is restricted to the syntax for URLs as + * defined in Uniform Resource Locators [URL] until + * IETF specifies other kinds of URIs. + * + * But Netscape puts quotes around the URI when sending web + * pages. + */ + + header_decode_lwsp(&in); + if (*in == '"') + return header_decode_quoted_string(&in); + else { + for (p = in; *p && !is_lwsp(*p); p++) + ; + return g_strndup(in, p - in); + } +} + + /* extra rfc checks */ #define CHECKS -- cgit v1.2.3