1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Don't show r/w accessor flags if none were specified for custom attributes

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7538 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
dave 2004-12-12 01:37:24 +00:00
parent 975fc745b3
commit 1a33c544b7
2 changed files with 10 additions and 0 deletions

View file

@ -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">&nbsp;[%rw%]&nbsp;</td>
ENDIF:rw
IFNOT:rw
<td class="context-item-value">&nbsp;&nbsp;</td>
ENDIF:rw
<td class="context-item-desc">%a_desc%</td>
</tr>
END:attributes