mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rdoc/servlet.rb: Add support for serving documentation from a
subdirectory. * lib/rdoc/generator/darkfish.rb: ditto * test/rdoc/test_rdoc_servlet.rb: Test for above * test/rdoc/test_rdoc_servlet.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
013521e557
commit
45011d08e1
4 changed files with 38 additions and 12 deletions
|
@ -467,7 +467,7 @@ class RDoc::Generator::Darkfish
|
|||
render_template template_file do |io| binding end
|
||||
rescue => e
|
||||
error = RDoc::Error.new \
|
||||
"error generating servlet_root: #{e.message} (#{e.class})"
|
||||
"error generating servlet_not_found: #{e.message} (#{e.class})"
|
||||
error.set_backtrace e.backtrace
|
||||
|
||||
raise error
|
||||
|
@ -484,13 +484,10 @@ class RDoc::Generator::Darkfish
|
|||
|
||||
debug_msg 'Rendering the servlet root page...'
|
||||
|
||||
rel_prefix = rel_prefix = ''
|
||||
rel_prefix = asset_rel_prefix = '.'
|
||||
search_index_rel_prefix = rel_prefix
|
||||
search_index_rel_prefix += @asset_rel_path if @file_output
|
||||
|
||||
# suppress 1.9.3 warning
|
||||
asset_rel_prefix = asset_rel_prefix = ''
|
||||
|
||||
@title = 'Local RDoc Documentation'
|
||||
|
||||
render_template template_file do |io| binding end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue