OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: 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.


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]