From f4c2c08ccbd12e8fbd07666effada7f7470c1dc2 Mon Sep 17 00:00:00 2001 From: RichardHitt Date: Wed, 2 Jan 2013 23:47:58 -0800 Subject: [PATCH] Also allow URLs of of the form \.[a-z]+\/ --- src/common/url.c | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/src/common/url.c b/src/common/url.c index 4d9d9f33..e3834a70 100644 --- a/src/common/url.c +++ b/src/common/url.c @@ -396,19 +396,30 @@ re_url (void) scheme = g_strjoinv ("|", prefix); grist = g_strdup_printf ( "(" /* URL or HOST */ - SCHEME HOST OPT_PORT - "(" /* Optional "/path?query_string#fragment_id" */ - "/" /* Must start with slash */ - "(" - "(" LPAR NOPARENS RPAR ")" - "|" - "(" NOPARENS ")" - ")*" /* Zero or more occurrences of either of these */ - "(?