yii1.rb 451 B

1234567891011121314151617
  1. module Docs
  2. class Yii1 < UrlScraper
  3. self.name = 'Yii 1'
  4. self.slug = 'yii1'
  5. self.type = 'yii'
  6. self.version = '1.1.16'
  7. self.base_url = 'http://www.yiiframework.com/doc/api/1.1/'
  8. html_filters.push 'yii1/clean_html', 'yii1/entries'
  9. options[:container] = '.grid_9'
  10. options[:attribution] = <<-HTML
  11. &copy; 2008&ndash;2015 by Yii Software LLC<br>
  12. Licensed under the three clause BSD license.
  13. HTML
  14. end
  15. end