mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
38 lines
1.1 KiB
Ruby
38 lines
1.1 KiB
Ruby
module Docs
|
|
class Python < FileScraper
|
|
self.type = 'sphinx'
|
|
self.root_path = 'library/index.html'
|
|
|
|
options[:only_patterns] = [/\Alibrary\//]
|
|
|
|
options[:skip] = %w(
|
|
library/2to3.html
|
|
library/formatter.html
|
|
library/index.html
|
|
library/intro.html
|
|
library/undoc.html
|
|
library/unittest.mock-examples.html
|
|
library/sunau.html)
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 1990–2015 Python Software Foundation<br>
|
|
Licensed under the PSF License.
|
|
HTML
|
|
|
|
version '3.5' do
|
|
self.release = '3.5.2'
|
|
self.dir = '/Users/Thibaut/DevDocs/Docs/Python35' # docs.python.org/3.5/download.html
|
|
self.base_url = 'https://docs.python.org/3.5/'
|
|
|
|
html_filters.push 'python/entries_v3', 'sphinx/clean_html', 'python/clean_html'
|
|
end
|
|
|
|
version '2.7' do
|
|
self.release = '2.7.12'
|
|
self.dir = '/Users/Thibaut/DevDocs/Docs/Python27' # docs.python.org/2.7/download.html
|
|
self.base_url = 'https://docs.python.org/2.7/'
|
|
|
|
html_filters.push 'python/entries_v2', 'sphinx/clean_html', 'python/clean_html'
|
|
end
|
|
end
|
|
end
|