Hi all.  Long time listener, first time caller...
 
I developed an online reference system for a programming language which is
in a pretty typical frameset: table of contents in a narrow frame on the
left side and the reference pages all in the large frame on the right. It's
written to DocBook 4.3 DTD using Norm Walsh's style sheets from a few years
ago.
 
The problem is that when I use the <link> tag to link type names within the
<funcsynopsis>, the resulting HTML has an unwanted target attribute to
"_top" which of course blows it out of the frame. Any thoughts on how to
make it stop adding that target attribute? 
 
(Sample code below)
 
Thanks!
Kathleen
 
THIS XML:
 
<refsynopsisdiv xmlns:xlink="http://www.w3.org/1999/xlink";><title></title>
        <funcsynopsis>
            <funcprototype>
                <funcdef>
                    <link xlink:href="scalarDataTypes.html">short</link>
                    <function>
                        upsample
                    </function>
                </funcdef>
                <paramdef><link
xlink:href="scalarDataTypes.html">char</link><parameter>hi</parameter></para
mdef>
                <paramdef><link
xlink:href="scalarDataTypes.html">uchar</link><parameter>lo</parameter></par
amdef>
            </funcprototype>
        </funcsynopsis>
</refsynopsisdiv>
 
 
RESULTS IN THIS HTML
 
<div class="refsynopsisdiv">
        <h2></h2>
        <div class="funcsynopsis">
          <table xmlns="" border="0" summary="Function synopsis"
cellspacing="0" cellpadding="0">
            <tr valign="bottom">
              <td>
                <code xmlns="http://www.w3.org/1999/xhtml"; class="funcdef">
                    <a class="link" href="scalarDataTypes.html"
target="_top">short</a>
                    <b class="fsfunc">
                        upsample
                    </b>
                (</code>
                <td><a xmlns="http://www.w3.org/1999/xhtml"; class="link"
href="scalarDataTypes.html" target="_top">char</a> <var
xmlns="http://www.w3.org/1999/xhtml"; class="pdparam">hi</var>, </td>
              </td>
            </tr>
            <tr valign="top">
              <td> </td>
              <td><a xmlns="http://www.w3.org/1999/xhtml"; class="link"
href="scalarDataTypes.html" target="_top">uchar</a> <var
xmlns="http://www.w3.org/1999/xhtml";
class="pdparam">lo</var><code>)</code></td>
            </tr>
          </table>
        </div>
</div>
 
--
cid:[email protected]
Kathleen Mattson      <mailto:[email protected]>
[email protected]
Technical, Business, & Marketing Communications
 <http://www.millermattson.com/> www.millermattson.com     (503) 985-6004
 <http://twitter.com/kmattson> Twitter
<http://www.linkedin.com/company/miller-&-mattson?trk=ppro_cprof> LinkedIn
<http://www.millermattson.com/blog.shtml> 
 

<<image001.png>>

<<image002.jpg>>

<<image003.jpg>>

<<image004.png>>

Reply via email to