mirror of https://github.com/freeCodeCamp/devdocs
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.
50 lines
1.4 KiB
50 lines
1.4 KiB
module Docs
|
|
class Meteor < UrlScraper
|
|
include MultipleBaseUrls
|
|
|
|
self.type = 'meteor'
|
|
self.root_path = 'index.html'
|
|
self.links = {
|
|
home: 'https://www.meteor.com/',
|
|
code: 'https://github.com/meteor/meteor/'
|
|
}
|
|
|
|
html_filters.push 'meteor/entries', 'meteor/clean_html'
|
|
|
|
options[:skip_patterns] = [/\Av\d/]
|
|
options[:skip] = %w(
|
|
CONTRIBUTING.html
|
|
CHANGELOG.html
|
|
using-packages.html
|
|
writing-packages.html
|
|
)
|
|
|
|
options[:fix_urls] = ->(url) {
|
|
url.sub! %r{\Ahttps://docs\.meteor\.com/(v[\d\.]*\/)?api/blaze\.html}, 'http://blazejs.org/api/blaze.html'
|
|
url.sub! %r{\Ahttps://docs\.meteor\.com/(v[\d\.]*\/)?api/templates\.html}, 'http://blazejs.org/api/templates.html'
|
|
url
|
|
}
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2011–2017 Meteor Development Group, Inc.<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
|
|
version '1.5' do
|
|
self.release = '1.5.0'
|
|
self.base_urls = ['https://docs.meteor.com/', 'https://guide.meteor.com/', 'http://blazejs.org/']
|
|
end
|
|
|
|
version '1.4' do
|
|
self.release = '1.4.4'
|
|
self.base_urls = ['https://guide.meteor.com/', "https://docs.meteor.com/v#{self.release}/", 'http://blazejs.org/']
|
|
end
|
|
|
|
version '1.3' do
|
|
self.release = '1.3.5'
|
|
self.base_urls = ['https://guide.meteor.com/v1.3/', "https://docs.meteor.com/v#{self.release}/"]
|
|
options[:fix_urls] = nil
|
|
end
|
|
end
|
|
end
|