1
0

gnuplot.rb 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. module Docs
  2. class Gnuplot < FileScraper
  3. self.name = 'Gnuplot'
  4. self.slug = 'gnuplot'
  5. self.type = 'gnuplot'
  6. self.links = {
  7. home: 'http://gnuplot.sourceforge.net/'
  8. }
  9. self.root_path = 'index.html'
  10. html_filters.push 'gnuplot/entries', 'gnuplot/clean_html'
  11. options[:skip_links] = false
  12. options[:skip] = %w(
  13. Copyright.html
  14. External_libraries.html
  15. Known_limitations.html
  16. Introduction.html
  17. About_this_document.html
  18. New_features.html
  19. Differences_from_version_4.html
  20. Seeking_assistance.html
  21. Gnuplot.html
  22. Deprecated_syntax.html
  23. Demos_Online_Examples.html
  24. Terminal_types.html
  25. Plotting_styles.html
  26. Commands.html
  27. Contents.html
  28. Bugs.html
  29. )
  30. options[:attribution] = <<-HTML
  31. Copyright 1986 - 1993, 1998, 2004 Thomas Williams, Colin Kelley<br>
  32. Distributed under the <a href="https://sourceforge.net/p/gnuplot/gnuplot-main/ci/master/tree/Copyright">gnuplot license</a> (rights to distribute modified versions are withheld).
  33. HTML
  34. end
  35. end