Typo in jamis.rb?

RDoc sections were not working nicely for me, and I had to fix something
in jamis.rb. Was this just some weird local corruption, or do others
have this typo?

--- /usr/local/lib/ruby/1.8/rdoc/generators/template/html/jamis.rb.bck
2005-09-14 23:38:03.174836864 -0700
+++ /usr/local/lib/ruby/1.8/rdoc/generators/template/html/jamis.rb
2005-09-14 23:38:03.174836864 -0700
@@ -355,7 +355,7 @@

START:sections
IF:sectitle
-<div class="sectiontitle"><a nem="%secsequence%">%sectitle%</a></div>
+<div class="sectiontitle"><a name="%secsequence%">%sectitle%</a></div>
IF:seccomment
<div class="description">
%seccomment%

···

--
      vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407

<div class="sectiontitle"><a name="%secsequence%">%sectitle%</a></div>

Yep there it is, I have it too.

Also in the same file, has this bit anyone else:

    <frameset rows="80%,20%">
      <frame src="%initial_page%" name="docwin">
      <frame src="blank.html" name="source">
    </frameset>

What is blank.html and why is there a fourth frame for it? I always get
a browser error on that one.

T.

Thanks, Joel. I've corrected this in my copy now, too.

- Jamis

···

On Sep 15, 2005, at 12:40 AM, Joel VanderWerf wrote:

RDoc sections were not working nicely for me, and I had to fix something
in jamis.rb. Was this just some weird local corruption, or do others
have this typo?

--- /usr/local/lib/ruby/1.8/rdoc/generators/template/html/jamis.rb.bck
2005-09-14 23:38:03.174836864 -0700
+++ /usr/local/lib/ruby/1.8/rdoc/generators/template/html/jamis.rb
2005-09-14 23:38:03.174836864 -0700
@@ -355,7 +355,7 @@

START:sections
IF:sectitle
-<div class="sectiontitle"><a nem="%secsequence%">%sectitle%</a></div>
+<div class="sectiontitle"><a name="%secsequence%">%sectitle%</a></>
IF:seccomment
<div class="description">
%seccomment%

--

The blank.html is only used when you are _not_ doing --inline-source. Because I always use --inline-source, I've never bothered to make the other way work smoothly. My understanding is that the blank.html frame is used for displaying the source code of a method.

If anyone makes jamis.rb work nicely without --inline-source, a patch would be welcome.

- Jamis

···

On Sep 15, 2005, at 4:11 AM, Trans wrote:

<div class="sectiontitle"><a name="%secsequence%">%sectitle%</a></>

Yep there it is, I have it too.

Also in the same file, has this bit anyone else:

    <frameset rows="80%,20%">
      <frame src="%initial_page%" name="docwin">
      <frame src="blank.html" name="source">
    </frameset>

What is blank.html and why is there a fourth frame for it? I always get
a browser error on that one.

T.