This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [docbook-apps] xsl/groff option argument is listed with thedescription


> * In message <20030523172957.GB27375@redhat.com>
> * On the subject of "Re: [docbook-apps] xsl/groff option argument is listed with the description"
> * Sent on Fri, 23 May 2003 18:29:57 +0100
> * Honorable Tim Waugh <twaugh@redhat.com> writes:
>
> On Fri, May 23, 2003 at 01:23:11PM -0400, Sam Steingold wrote:
> 
> > <xsl:template match="varlistentry/term">
> >  <span class="term"><xsl:call-template name="anchor"/>
> >   <xsl:apply-templates/>&#10;.PD 0&#10;.TP
> >  </span>
> > </xsl:template>
> 
> But <span class=...> is HTML, not groff!  Try this:

sure, I just killed it.

> <xsl:template match="varlistentry/term|glossterm">
>   <xsl:variable name="content">
>     <xsl:apply-templates/>
>   </xsl:variable>
>   <xsl:value-of select="normalize-space($content)"/>
>   <xsl:text>&#10;.PD 0&#10;.TP&#10;</xsl:text>
> </xsl:template>
> 
> <xsl:template
>      match="varlistentry/term[position()=last()]|glossterm[position()=last()]"
>      priority="2">
>   <xsl:variable name="content">
>     <xsl:apply-templates/>
>   </xsl:variable>
>   <xsl:value-of select="normalize-space($content)"/>
> </xsl:template>

cool, thanks a lot!!
it works, except that I get

       -h
       --help Displays a help message on how to use CLISP.

       -q
       --quiet
       --silent
              Quiet: CLISP displays no banner at startup and no good-bye  mes-
              sage when quitting.


instead of


       -h
       --help
              Displays a help message on how to use CLISP.

       -q
       --quiet
       --silent
              Quiet: CLISP displays no banner at startup and no good-bye  mes-
              sage when quitting.



-- 
Sam Steingold (http://www.podval.org/~sds) running RedHat9 GNU/Linux
<http://www.camera.org> <http://www.iris.org.il> <http://www.memri.org/>
<http://www.mideasttruth.com/> <http://www.palestine-central.com/links.html>
Despite the raising cost of living, it remains quite popular.

---------------------------------------------------------------------
To unsubscribe, e-mail: docbook-apps-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: docbook-apps-help@lists.oasis-open.org


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]