Tkabber

Check-in [7dfadad142]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Loosened the condition for forbidden characters in URLs.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 7dfadad142034e3ca4ff84f2ab9fc8725f81fc7d
User & Date: sgolovan 2016-03-17 11:34:26
Context
2016-04-25
06:01
Removed system tray plugins which use obsolete extensions (closes ticket [e02761a005]). check-in: a491c1b77d user: sgolovan tags: trunk
2016-03-17
11:34
Loosened the condition for forbidden characters in URLs. check-in: 7dfadad142 user: sgolovan tags: trunk
11:30
Loosened the condition for forbidden characters in URLs. check-in: 0b5ca21001 user: sgolovan tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to ChangeLog.

1
2
3
4
5
6
7
8
9
10
11
2016-03-17  Sergei Golovan  <sgolovan@nes.ru>

	* plugins/richtext/urls.tcl: Loosened the condition for forbidden
	  characters in URLs.

2016-02-18  Sergei Golovan  <sgolovan@nes.ru>

	* ifacetk/roster.tcl: Don't use black for group and connection label
	  borders.

2016-02-07  Sergei Golovan  <sgolovan@nes.ru>


|
|







1
2
3
4
5
6
7
8
9
10
11
2016-03-17  Sergei Golovan  <sgolovan@nes.ru>

	* plugins/richtext/urls.tcl, plugins/chat/shuffle.tcl: Loosened the
	  condition for forbidden characters in URLs.

2016-02-18  Sergei Golovan  <sgolovan@nes.ru>

	* ifacetk/roster.tcl: Don't use black for group and connection label
	  borders.

2016-02-07  Sergei Golovan  <sgolovan@nes.ru>

Changes to plugins/chat/shuffle.tcl.

39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
        | [a-z][a-z]
        )
        )
        (?: : \d+ )?
        (?:
        (?:
        /
        [^.,?!:;"'<>()\[\]{}\s\x7F-\xFF]*
        )?
        (?:
        [.,?!:;]+ [^.,?!:;"'<>()\[\]{}\s\x7F-\xFF]+
        )*
        )?
        )
        ([^\w\d]*)
        (\s|$)
    }
}







|


|







39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
        | [a-z][a-z]
        )
        )
        (?: : \d+ )?
        (?:
        (?:
        /
        [^.,?!:;"'<>()\[\]{}\s\x7F-\x9F]*
        )?
        (?:
        [.,?!:;]+ [^.,?!:;"'<>()\[\]{}\s\x7F-\x9F]+
        )*
        )?
        )
        ([^\w\d]*)
        (\s|$)
    }
}