From 39f96a92be424a17188359c406fca22a74ac80a2 Mon Sep 17 00:00:00 2001
From: Alexander Cherniuk <ts33kr@gmail.com>
Date: Wed, 11 Aug 2010 01:35:06 +0300
Subject: [PATCH] Tweaked the RE for detecting URLs again

---
 src/gui_interface.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/gui_interface.py b/src/gui_interface.py
index fd16f2d97b..4059d25b40 100644
--- a/src/gui_interface.py
+++ b/src/gui_interface.py
@@ -2432,8 +2432,7 @@ class Interface:
         # FIXME: recognize xmpp: and treat it specially
         links = r"((?<=\()[A-Za-z][A-Za-z0-9\+\.\-]*:"\
             r"([\w\.\-_~:/\?#\[\]@!\$&'\(\)\*\+,;=]|%[A-Fa-f0-9]{2})+"\
-            r"(?=\)))|([A-Za-z][A-Za-z0-9\+\.\-]*:([\w\.\-_~:/\?#\[\]@!\$"\
-            r"&'\(\)\*\+,;=]|%[A-Fa-f0-9]{2})+)"
+            r"(?=\)))|(\w[\w\+\.\-]*:([^<>\s]|%[A-Fa-f0-9]{2})+)"
 
         # 2nd one: at_least_one_char@at_least_one_char.at_least_one_char
         mail = r'\bmailto:\S*[^\s\W]|' r'\b\S+@\S+\.\S*[^\s\W]'
-- 
GitLab