Tkabber

Check-in [0b5ca21001]
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: 0b5ca210019287770fe5fe39d7714bc2ddd61052
User & Date: sgolovan 2016-03-17 11:30:44
Context
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
2016-02-18
07:42
Don't use black for group and connection label borders. check-in: c5ea281ea7 user: sgolovan tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to ChangeLog.






1
2
3
4
5
6
7





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
12
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>

Changes to plugins/richtext/urls.tcl.

97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
                  | [a-z][a-z]
                )
            )
            (?: : \d+ )?
            (?:
                (?:
                    /
                    [^.,?!:;"'<>()\[\]{}\s\x7F-\xFF]*
                    (?:
                        \([^.,?!:;"'<>()\[\]{}\s\x7F-\xFF]*\)
                    )?
                    [^.,?!:;"'<>()\[\]{}\s\x7F-\xFF]*
                )?
                (?:
                    [.,?!:;]+ [^.,?!:;"'<>()\[\]{}\s\x7F-\xFF]+
                )*
            )?
        )
        ([^\w\d]*)
        (\s|$)
    }
}







|

|

|


|







97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
                  | [a-z][a-z]
                )
            )
            (?: : \d+ )?
            (?:
                (?:
                    /
                    [^.,?!:;"'<>()\[\]{}\s\x7F-\x9F]*
                    (?:
                        \([^.,?!:;"'<>()\[\]{}\s\x7F-\x9F]*\)
                    )?
                    [^.,?!:;"'<>()\[\]{}\s\x7F-\x9F]*
                )?
                (?:
                    [.,?!:;]+ [^.,?!:;"'<>()\[\]{}\s\x7F-\x9F]+
                )*
            )?
        )
        ([^\w\d]*)
        (\s|$)
    }
}