1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

feat(chatform): add support for non-local file and samba share links

E.g. links like "file://192.168.1.1/" and "smb://localnode/" are now
supported. Before only links to local files were supported, e.g.
"file:///local/file.txt"
This commit is contained in:
PKEv 2016-04-10 17:36:25 +03:00
parent d58922c667
commit 47764c0397

View File

@ -249,7 +249,7 @@ QString ChatMessage::detectAnchors(const QString &str)
"(?:\\b)((www\\.)|(http[s]?|ftp)://)" // (protocol)://(printable - non-special character)
// http://ONEORMOREALHPA-DIGIT
"\\w+\\S+)" // any other character, lets domains and other
"|(?:\\b)(file:///)([\\S| ]*)" //link to a local file, valid until the end of the line
"|(?:\\b)((file|smb)://)([\\S| ]*)" //link to a local file, valid until the end of the line
"|(?:\\b)(tox:[a-zA-Z\\d]{76})" //link with full user address
"|(?:\\b)(mailto:\\S+@\\S+\\.\\S+)" //@mail link
"|(?:\\b)(tox:\\S+@\\S+)"); // starts with `tox` then : and only alpha-digits till the end