1
0

mariadb.rb 659 B

12345678910111213141516171819202122
  1. module Docs
  2. class Mariadb < UrlScraper
  3. self.name = 'MariaDB'
  4. self.type = 'mariadb'
  5. self.release = '10.3.8'
  6. self.base_url = 'http://kb-mirror.mariadb.com/kb/en/library/documentation/'
  7. self.links = {
  8. home: 'https://mariadb.com/',
  9. code: 'https://github.com/MariaDB/server'
  10. }
  11. html_filters.push 'mariadb/entries', 'mariadb/clean_html', 'title'
  12. options[:download_images] = false
  13. options[:root_title] = 'MariaDB'
  14. options[:attribution] = <<-HTML
  15. &copy; 2018 MariaDB<br>
  16. Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
  17. HTML
  18. end
  19. end