devdocs/lib/docs/scrapers/cakephp.rb

87 lines
2.1 KiB
Ruby
Raw Normal View History

2015-11-26 02:55:53 +01:00
module Docs
class Cakephp < UrlScraper
2015-11-26 02:55:53 +01:00
self.name = 'CakePHP'
self.type = 'cakephp'
self.root_path = 'index.html'
self.links = {
home: 'https://cakephp.org/',
2015-11-26 02:55:53 +01:00
code: 'https://github.com/cakephp/cakephp'
}
html_filters.push 'cakephp/clean_html', 'cakephp/entries'
options[:container] = '#right'
2015-11-26 02:55:53 +01:00
options[:skip_patterns] = [/\Asource-/]
options[:attribution] = <<-HTML
2018-04-28 15:55:28 +02:00
&copy; 2005&ndash;2018 The Cake Software Foundation, Inc.<br>
2016-02-14 18:50:38 +01:00
Licensed under the MIT License.<br>
CakePHP is a registered trademark of Cake Software Foundation, Inc.<br>
We are not endorsed by or affiliated with CakePHP.
2015-11-26 02:55:53 +01:00
HTML
2016-02-14 18:50:38 +01:00
2018-04-28 15:55:28 +02:00
version '3.6' do
self.release = '3.6.2'
self.base_url = 'https://api.cakephp.org/3.6/'
end
2017-08-26 16:39:57 +02:00
version '3.5' do
2018-04-28 15:55:28 +02:00
self.release = '3.5.15'
2017-08-26 16:39:57 +02:00
self.base_url = 'https://api.cakephp.org/3.5/'
end
2017-02-18 14:49:46 +01:00
version '3.4' do
2017-08-26 16:39:57 +02:00
self.release = '3.4.13'
2017-02-18 14:49:46 +01:00
self.base_url = 'https://api.cakephp.org/3.4/'
end
version '3.3' do
2017-02-18 14:49:46 +01:00
self.release = '3.3.15'
self.base_url = 'https://api.cakephp.org/3.3/'
end
version '3.2' do
self.release = '3.2.14'
self.base_url = 'https://api.cakephp.org/3.2/'
2016-02-14 18:50:38 +01:00
end
version '3.1' do
self.release = '3.1.13'
self.base_url = 'https://api.cakephp.org/3.1/'
end
2017-08-26 16:39:57 +02:00
version '2.10' do
2017-09-24 19:29:35 +02:00
self.release = '2.10.3'
2017-08-26 16:39:57 +02:00
self.base_url = 'https://api.cakephp.org/2.10/'
end
version '2.9' do
self.release = '2.9.4'
self.base_url = 'https://api.cakephp.org/2.9/'
2016-02-14 18:50:38 +01:00
end
version '2.8' do
self.release = '2.8.8'
self.base_url = 'https://api.cakephp.org/2.8/'
2016-02-14 18:50:38 +01:00
end
version '2.7' do
self.release = '2.7.11'
self.base_url = 'https://api.cakephp.org/2.7/'
2016-02-14 18:50:38 +01:00
end
2019-03-10 03:02:24 +01:00
def get_latest_version(opts)
doc = fetch_doc('https://api.cakephp.org/3.7/', opts)
doc.at_css('.version-picker .dropdown-toggle').content.strip
end
private
def parse(response)
response.body.gsub! '<h5 class="method-name">', '<h3 class="method-name">'
super
end
2015-11-26 02:55:53 +01:00
end
end