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/julia.rb

150 lines
4.2 KiB

module Docs
class Julia < UrlScraper
self.links = {
home: 'https://julialang.org/',
code: 'https://github.com/JuliaLang/julia'
}
options[:attribution] = <<-HTML
&copy; 2009&ndash;2022 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors<br>
Licensed under the MIT License.
HTML
version '1.8' do
self.release = '1.8.5'
self.base_url = "https://docs.julialang.org/en/v#{version}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '.docs-main'
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
end
version '1.7' do
self.release = '1.7.0'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '.docs-main'
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
end
version '1.6' do
self.release = '1.6.0'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '.docs-main'
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
end
version '1.5' do
self.release = '1.5.3'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '.docs-main'
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
end
version '1.4' do
self.release = '1.4.2'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '.docs-main'
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
end
version '1.3' do
self.release = '1.3.1'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '#docs'
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
end
version '1.2' do
self.release = '1.2.0'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '#docs'
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
end
version '1.1' do
self.release = '1.1.1'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '#docs'
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
end
version '1.0' do
self.release = '1.0.4'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '#docs'
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
end
version '0.7' do
self.release = '0.7.0'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '#docs'
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
end
version '0.6' do
self.release = '0.6.2'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'julia'
html_filters.push 'julia/entries', 'julia/clean_html'
options[:container] = '#docs'
options[:only_patterns] = [/\Amanual\//, /\Astdlib\//]
end
version '0.5' do
self.release = '0.5.2'
self.base_url = "https://docs.julialang.org/en/v#{release}/"
self.type = 'sphinx_simple'
html_filters.push 'julia/entries_sphinx', 'julia/clean_html_sphinx', 'sphinx/clean_html'
options[:only_patterns] = [/\Amanual\//, /\Astdlib\//]
end
def get_latest_version(opts)
get_latest_github_release('JuliaLang', 'julia', opts)
end
end
end