You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/lib/docs/scrapers/tcl_tk.rb

39 lines
1.1 KiB

module Docs
class TclTk < UrlScraper
self.name = 'Tcl/Tk'
self.type = 'tcl_tk'
self.slug = 'tcl_tk'
self.release = '8.6.6'
self.base_url = 'https://www.tcl.tk/man/tcl/'
self.root_path = 'contents.htm'
self.links = {
home: 'https://www.tcl.tk/',
code: 'https://sourceforge.net/projects/tcl/files/Tcl/'
}
html_filters.push 'tcl_tk/entries', 'tcl_tk/clean_html', 'title'
options[:root_title] = 'Tcl/Tk Documentation'
options[:trailing_slash] = false
options[:skip] = %w(siteinfo.htm)
options[:skip_patterns] = [
# ignore keyword list pages
/\AKeywords\//,
# ignore C-API, only required for extension developers
/\ATclLib\//,
/\ATkLib\//,
/\AItclLib\//,
/\ATdbcLib\//
]
options[:attribution] = <<-HTML
Licensed under <a href="http://tcl.tk/software/tcltk/license.html">Tcl/Tk terms</a>
HTML
def get_latest_version(opts)
doc = fetch_doc('https://www.tcl.tk/man/tcl/contents.htm', opts)
doc.at_css('h2').content.scan(/Tk([0-9.]+)/)[0][0]
end
end
end