File tree Expand file tree Collapse file tree 6 files changed +19
-7
lines changed Expand file tree Collapse file tree 6 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ def call
35
35
node . content = node . content . capitalize
36
36
end
37
37
38
+ css ( 'pre' ) . each do |node |
39
+ node [ 'data-language' ] = 'tcl'
40
+ end
41
+
38
42
doc
39
43
end
40
44
end
Original file line number Diff line number Diff line change @@ -3,11 +3,8 @@ class TclTk < UrlScraper
3
3
self . name = 'Tcl/Tk'
4
4
self . type = 'tcl_tk'
5
5
self . slug = 'tcl_tk'
6
- self . release = '8.6.6'
7
- self . base_url = 'https://www.tcl.tk/man/tcl/'
8
- self . root_path = 'contents.htm'
9
6
self . links = {
10
- home : 'https://www.tcl.tk /' ,
7
+ home : 'https://www.tcl-lang.org /' ,
11
8
code : 'https://sourceforge.net/projects/tcl/files/Tcl/'
12
9
}
13
10
@@ -27,11 +24,22 @@ class TclTk < UrlScraper
27
24
]
28
25
29
26
options [ :attribution ] = <<-HTML
30
- Licensed under < a href ="http://tcl.tk /software/tcltk/license.html "> Tcl/Tk terms</ a >
27
+ Licensed under < a href ="http://www. tcl-lang.org /software/tcltk/license.html "> Tcl/Tk terms</ a >
31
28
HTML
32
29
30
+ version '9.0' do
31
+ self . base_url = "https://www.tcl-lang.org/man/tcl#{ self . version } /"
32
+ self . release = '9.0.2'
33
+ end
34
+
35
+ version '8.6' do
36
+ self . base_url = "https://www.tcl-lang.org/man/tcl#{ self . version } /"
37
+ self . root_path = 'contents.htm'
38
+ self . release = '8.6.16'
39
+ end
40
+
33
41
def get_latest_version ( opts )
34
- doc = fetch_doc ( 'https://www.tcl.tk /man/tcl/contents.htm ' , opts )
42
+ doc = fetch_doc ( 'https://www.tcl-lang.org /man/tcl/' , opts )
35
43
doc . at_css ( 'h2' ) . content . scan ( /Tk([0-9.]+)/ ) [ 0 ] [ 0 ]
36
44
end
37
45
end
Original file line number Diff line number Diff line change 1
- https://commons.wikimedia .org/wiki/File:Tcl.svg
1
+ https://www.tcl-lang .org/images/plume.png
You can’t perform that action at this time.
0 commit comments