This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 118595 - rdoc popup doesn't recognize two different kinds of lists
Summary: rdoc popup doesn't recognize two different kinds of lists
Status: NEW
Alias: None
Product: ruby
Classification: Unclassified
Component: Editing (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@ruby
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-11 19:29 UTC by jamespb
Modified: 2011-01-28 20:11 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
screenshot (73.50 KB, image/gif)
2007-10-11 19:31 UTC, jamespb
Details

Note You need to log in before you can comment on or make changes to this bug.
Description jamespb 2007-10-11 19:29:57 UTC
this rdoc:

 # this is a list:
    # 
    # foo_snark:: stuff
    # [foo_bar] more stuff
    # 
    def find_by_menu_name n

Produces two different kinds of lists - foo_snark is a table layout, [foo_bar] is an indented list.  The NetBeans
display looks like it treats both as a table.

here's the html:

<div class="method-description">
          <p>

this is a list:
</p>
<table>
<tr><td valign="top">foo_snark:</td><td>stuff

</td></tr>
</table>
<dl>
<dt>foo_bar</dt><dd>more stuff

</dd>
</dl>
Comment 1 jamespb 2007-10-11 19:31:18 UTC
Created attachment 50721 [details]
screenshot
Comment 2 Torbjorn Norbye 2007-11-03 05:38:25 UTC
Yes indeed. However, I don't dare to mess with the regular expressions that identifies the various rdoc constructs at
this point, we're right before freeze and I worry about breaking stuff in that area. Will attack it in the update release.