summaryrefslogtreecommitdiff
path: root/lib/rdoc/generator/html/html.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-10 03:59:08 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-10 03:59:08 +0000
commit455b051a008aa859a7b0d6fca56de69a38cc1f8d (patch)
treed6669b04050c3ac4281651be447dd7d5f57463ea /lib/rdoc/generator/html/html.rb
parentd44f24c47cc0d03135fabb7c764ab23e9d5d1152 (diff)
* lib/rdoc/code_objects.rb: Make some attributes accessible for reuse.
* lib/rdoc/generator/html.rb: Pull out ContextUser classes and related methods for reuse. * lib/rdoc/generator.rb: Move ContextUser classes to RDoc::Generator::Context for reuse. * lib/rdoc/rdoc.rb: Make RDoc::RDoc initialization a little easier. * lib/rdoc/options.rb: Make RDoc::Options easier to use without parsing an ARGV. * lib/rdoc/markup/to_*.rb: Subclass RDoc::Markup::Formatter. * lib/rdoc/markup/formatter.rb: Add RDoc::Markup::Formatter to make RDoc markup conversion easier. * lib/rdoc/markup/fragments.rb: Make RDoc::Markup::ListItem easier to test. * lib/rdoc/markup/to_html_hyperlink.rb: Pulled out of the HTML generator for easier reusability. * lib/rdoc/markup.rb: Fix bug with labeled lists containing bullet lists. * lib/rdoc/generators/html/html.rb: Fix Constant display. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/generator/html/html.rb')
-rw-r--r--lib/rdoc/generator/html/html.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/rdoc/generator/html/html.rb b/lib/rdoc/generator/html/html.rb
index 0a0b754919..8343454d30 100644
--- a/lib/rdoc/generator/html/html.rb
+++ b/lib/rdoc/generator/html/html.rb
@@ -478,14 +478,14 @@ EOF
<div class="name-list">
<table summary="Constants">
-<% values["constants"].each do |constants| $stderr.puts({ :constants => constants }.inspect) %>
+<% values["constants"].each do |constants| %>
<tr class="top-aligned-row context-row">
- <td class="context-item-name"><%= values["name"] %></td>
+ <td class="context-item-name"><%= constants["name"] %></td>
<td>=</td>
- <td class="context-item-value"><%= values["value"] %></td>
+ <td class="context-item-value"><%= constants["value"] %></td>
<% if values["desc"] then %>
<td width="3em">&nbsp;</td>
- <td class="context-item-desc"><%= values["desc"] %></td>
+ <td class="context-item-desc"><%= constants["desc"] %></td>
<% end %>
</tr>
<% end # values["constants"] %>