From ea5650c7354d57a18ef245b48fdf4bc351524db6 Mon Sep 17 00:00:00 2001 From: albert-github Date: Fri, 11 Dec 2020 15:15:32 +0100 Subject: Incorrect specification of irc as URL protocol - missing colon (`:`) at irc - adding irc, sftp and ftps --- src/doctokenizer.l | 2 +- src/util.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/doctokenizer.l b/src/doctokenizer.l index f756186..451201a 100644 --- a/src/doctokenizer.l +++ b/src/doctokenizer.l @@ -386,7 +386,7 @@ ATTRNAME [a-z_A-Z\x80-\xFF][:a-z_A-Z0-9\x80-\xFF\-]* ATTRIB {ATTRNAME}{WS}*("="{WS}*(("\""[^\"]*"\"")|("'"[^\']*"'")|[^ \t\r\n'"><]+))? URLCHAR [a-z_A-Z0-9\!\~\,\:\;\'\$\?\@\&\%\#\.\-\+\/\=] URLMASK ({URLCHAR}+([({]{URLCHAR}*[)}])?)+ -URLPROTOCOL ("http:"|"https:"|"ftp:"|"file:"|"news:"|"irc") +URLPROTOCOL ("http:"|"https:"|"ftp:"|"ftps:"|"sftp:"|"file:"|"news:"|"irc:"|"ircs:") FILESCHAR [a-z_A-Z0-9\\:\\\/\-\+&#@] FILEECHAR [a-z_A-Z0-9\-\+&#@] HFILEMASK ("."{FILESCHAR}*{FILEECHAR}+)+ diff --git a/src/util.cpp b/src/util.cpp index 74e5226..47ca215 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -6686,7 +6686,8 @@ bool isURL(const QCString &url) { QCString loc_url = url.stripWhiteSpace(); return loc_url.left(5)=="http:" || loc_url.left(6)=="https:" || - loc_url.left(4)=="ftp:" || loc_url.left(5)=="file:"; + loc_url.left(4)=="ftp:" || loc_url.left(5)=="ftps:" || loc_url.left(5)=="sftp:" || + loc_url.left(5)=="file:"; } /** Corrects URL \a url according to the relative path \a relPath. * Returns the corrected URL. For absolute URLs no correction will be done. -- cgit v0.12