| 12345678910111213141516171819202122 |
- module Docs
- class Opentsdb < UrlScraper
- self.name = 'OpenTSDB'
- self.type = 'sphinx_simple'
- self.release = '2.3.0'
- self.base_url = 'http://opentsdb.net/docs/build/html/'
- self.root_path = 'index.html'
- self.links = {
- home: 'http://opentsdb.net/',
- code: 'https://github.com/OpenTSDB/opentsdb'
- }
- html_filters.push 'opentsdb/entries', 'opentsdb/clean_html'
- options[:skip] = %w(genindex.html search.html)
- options[:attribution] = <<-HTML
- © 2010–2016 The OpenTSDB Authors<br>
- Licensed under the GNU LGPLv2.1+ and GPLv3+ licenses.
- HTML
- end
- end
|