Skip to content

Commit

Permalink
Use Michael Granger's Darkfish template by default
Browse files Browse the repository at this point in the history
  • Loading branch information
drbrain committed Dec 8, 2008
1 parent d3a90ab commit b5db27f
Show file tree
Hide file tree
Showing 34 changed files with 1,873 additions and 44 deletions.
3 changes: 2 additions & 1 deletion History.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
=== ? / 200?-??-??
=== 2.3.0 / 200?-??-??

* X Major Enhancements
* RDoc now automatically loads rdoc/discover.rb files from installed gems.
* RDoc now uses Michael Granger's Darkfish generator by default.

* Y Minor Enhancements
* Added a space after the commas in ri class method lists. RubyForge
Expand Down
27 changes: 26 additions & 1 deletion Manifest.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
History.txt
Manifest.txt
README.txt
Rakefile
RI.txt
Rakefile
bin/rdoc
bin/ri
lib/rdoc.rb
Expand All @@ -12,6 +12,7 @@ lib/rdoc/dot.rb
lib/rdoc/generator.rb
lib/rdoc/generator/chm.rb
lib/rdoc/generator/chm/chm.rb
lib/rdoc/generator/darkfish.rb
lib/rdoc/generator/html.rb
lib/rdoc/generator/html/common.rb
lib/rdoc/generator/html/frameless.rb
Expand All @@ -21,6 +22,29 @@ lib/rdoc/generator/html/kilmer.rb
lib/rdoc/generator/html/kilmerfactory.rb
lib/rdoc/generator/html/one_page_html.rb
lib/rdoc/generator/ri.rb
lib/rdoc/generator/template/darkfish/classpage.rhtml
lib/rdoc/generator/template/darkfish/filepage.rhtml
lib/rdoc/generator/template/darkfish/images/brick.png
lib/rdoc/generator/template/darkfish/images/brick_link.png
lib/rdoc/generator/template/darkfish/images/bullet_black.png
lib/rdoc/generator/template/darkfish/images/date.png
lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif
lib/rdoc/generator/template/darkfish/images/macFFBgHack.png
lib/rdoc/generator/template/darkfish/images/package.png
lib/rdoc/generator/template/darkfish/images/page_green.png
lib/rdoc/generator/template/darkfish/images/page_white_width.png
lib/rdoc/generator/template/darkfish/images/plugin.png
lib/rdoc/generator/template/darkfish/images/ruby.png
lib/rdoc/generator/template/darkfish/images/tag_green.png
lib/rdoc/generator/template/darkfish/images/wrench.png
lib/rdoc/generator/template/darkfish/images/wrench_orange.png
lib/rdoc/generator/template/darkfish/images/zoom.png
lib/rdoc/generator/template/darkfish/index.rhtml
lib/rdoc/generator/template/darkfish/js/darkfish.js
lib/rdoc/generator/template/darkfish/js/jquery.js
lib/rdoc/generator/template/darkfish/js/quicksearch.js
lib/rdoc/generator/template/darkfish/js/thickbox-compressed.js
lib/rdoc/generator/template/darkfish/rdoc.css
lib/rdoc/generator/texinfo.rb
lib/rdoc/generator/texinfo/class.texinfo.erb
lib/rdoc/generator/texinfo/file.texinfo.erb
Expand Down Expand Up @@ -66,6 +90,7 @@ lib/rdoc/template.rb
lib/rdoc/tokenstream.rb
test/binary.dat
test/rdoc_markup_to_html_crossref_reference.rb
test/test_attribute_manager.rb
test/test_rdoc_info_formatting.rb
test/test_rdoc_info_sections.rb
test/test_rdoc_markup.rb
Expand Down
2 changes: 1 addition & 1 deletion lib/rdoc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ class Error < RuntimeError; end
##
# RDoc version you are using

VERSION = "2.2.2"
VERSION = "2.3.0"

##
# Name of the dotfile that contains the description of files to be processed
Expand Down
2 changes: 2 additions & 0 deletions lib/rdoc/generator/chm.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

class RDoc::Generator::CHM < RDoc::Generator::HTML

RDoc::RDoc.add_generator self

HHC_PATH = "c:/Program Files/HTML Help Workshop/hhc.exe"

##
Expand Down
Loading

0 comments on commit b5db27f

Please sign in to comment.