mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Don't show r/w accessot flags if none were specified for custom attributes
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7537 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
05b5e64ac3
commit
5f87cfb94c
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Dec 12 10:35:10 2004 Dave Thomas <dave@pragprog.com>
|
||||
|
||||
* lib/rdoc/generators/template/html/html.rb (RDoc::Page): Don't
|
||||
show an accessor's r/w flag if none was specified
|
||||
|
||||
Sun Dec 12 10:14:03 2004 Dave Thomas <dave@pragprog.com>
|
||||
|
||||
* lib/rdoc/rdoc.rb (RDoc::RDoc::parse_files): Never exclude files
|
||||
|
|
|
@ -529,7 +529,12 @@ IF:attributes
|
|||
START:attributes
|
||||
<tr class="top-aligned-row context-row">
|
||||
<td class="context-item-name">%name%</td>
|
||||
IF:rw
|
||||
<td class="context-item-value"> [%rw%] </td>
|
||||
ENDIF:rw
|
||||
IFNOT:rw
|
||||
<td class="context-item-value"> </td>
|
||||
ENDIF:rw
|
||||
<td class="context-item-desc">%a_desc%</td>
|
||||
</tr>
|
||||
END:attributes
|
||||
|
|
Loading…
Reference in a new issue