VirtualBox

Changeset 56190 in vbox for trunk/doc


Ignore:
Timestamp:
Jun 1, 2015 3:40:51 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
100727
Message:

docbook2latex.xsl: Prep for summary extraction support. Documented manpage hacks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/doc/manual/docbook2latex.xsl

    r56173 r56190  
    324324        <xsl:text>&#x0a;\paragraph{</xsl:text>
    325325        <xsl:apply-templates />
    326         <xsl:text>}&#x0a;\begin{addmargin}{1em}&#x0a;</xsl:text>
     326        <xsl:text>}&#x0a;\begin{addmargin}{1em}&#x0a;</xsl:text> <!-- addmargin is ended by refsect1 template way further down. -->
    327327      </xsl:when>
    328328      <xsl:when test="name(..)='refsect2'">
     
    349349      <xsl:value-of select="concat('&#x0a;\label{', $refid, '}')" />
    350350    </xsl:if>
    351     <xsl:text>&#x0a;</xsl:text>
    352   </xsl:template>
    353 
    354   <xsl:template match="refsect1">
    355     <xsl:if test="not(title)"><xsl:message terminate="yes">Expected title element in refsect1.</xsl:message></xsl:if>
    356     <xsl:apply-templates/>
    357     <xsl:text>&#x0a;\end{addmargin}&#x0a;</xsl:text>
    358   </xsl:template>
    359 
    360   <xsl:template match="refsect2">
    361     <xsl:if test="(name(*[1]) != 'title' and name(*[1]) != 'cmdsynopsis') or not(title) = not(cmdsynopsis)">
    362       <xsl:message terminate="yes">Expected title or cmdsynopsis element as the first child of refsect2.</xsl:message>
    363     </xsl:if>
    364     <xsl:call-template name="xsltprocNewlineOutputHack"/>
    365     <xsl:if test="cmdsynopsis">
    366       <xsl:text>\vspace{1.2em}&#x0a;</xsl:text>
    367     </xsl:if>
    368     <xsl:text>\noindent</xsl:text>
    369     <xsl:apply-templates/>
    370351    <xsl:text>&#x0a;</xsl:text>
    371352  </xsl:template>
     
    634615
    635616  <!--
    636      refentry releated stuff and isn't handled elsewhere...
     617     Turn the refsynopsisdiv part of a manpage into a named & indented paragraph.
    637618  -->
    638619  <xsl:template match="refsynopsisdiv">
     620    <xsl:if test="name(*[1]) != 'cmdsynopsis'"><xsl:message terminate="yes">Expected refsynopsisdiv to start with cmdsynopsis</xsl:message></xsl:if>
     621    <xsl:if test="title"><xsl:message terminate="yes">No title element supported in refsynopsisdiv</xsl:message></xsl:if>
    639622    <xsl:call-template name="xsltprocNewlineOutputHack"/>
    640623    <xsl:text>&#x0a;\paragraph{Synopsis} \hfill \\&#x0a;\begin{addmargin}{1em}&#x0a;</xsl:text>
     
    643626  </xsl:template>
    644627
     628  <!--
     629    The refsect1 is used for 'Description' and such. Do same as with refsynopsisdiv
     630    and turn it into a named & indented paragraph.
     631
     632    Note! If the section has a title, the title template way up above will begin
     633          the addmargin stuff.  We'll just end it here.
     634          If there is no title, we ASSUME (HACK ALERT) that this is part of the
     635          VBoxManage Command Overview section in the manual.
     636    -->
     637  <xsl:template match="refsect1">
     638    <xsl:if test="(name(*[1]) != 'title' and name(*[1]) != 'cmdsynopsis') or not(title) = not(cmdsynopsis)">
     639      <xsl:message terminate="yes">Expected title or cmdsynopsis element as the first child of refsect1.</xsl:message>
     640    </xsl:if>
     641    <xsl:if test="not(title)">
     642      <xsl:call-template name="xsltprocNewlineOutputHack"/>
     643      <xsl:text>&#x0a;\begin{addmargin}{1em}&#x0a;</xsl:text>
     644    </xsl:if>
     645    <xsl:apply-templates/>
     646    <xsl:text>&#x0a;\end{addmargin}&#x0a;</xsl:text>
     647  </xsl:template>
     648
     649  <!--
     650    The refsect2 element will be turned into a subparagraph if it has a title,
     651    however, that didn't work out when it didn't have a title and started with
     652    a cmdsynopsis instead (subcommand docs).  So, we're doing some trickery
     653    here (HACK ALERT) for the non-title case to feign a paragraph.
     654    -->
     655  <xsl:template match="refsect2">
     656    <xsl:if test="(name(*[1]) != 'title' and name(*[1]) != 'cmdsynopsis') or not(title) = not(cmdsynopsis)">
     657      <xsl:message terminate="yes">Expected title or cmdsynopsis element as the first child of refsect2.</xsl:message>
     658    </xsl:if>
     659    <xsl:if test="not(title)">
     660      <xsl:call-template name="xsltprocNewlineOutputHack"/>
     661      <xsl:text>\vspace{1.2em}&#x0a;</xsl:text>
     662    </xsl:if>
     663    <xsl:apply-templates/>
     664    <xsl:text>&#x0a;</xsl:text>
     665  </xsl:template>
     666
     667
     668  <!--
     669    Command Synopsis elements.
     670    -->
    645671  <xsl:template match="sbr">
    646672    <xsl:text>\linebreak</xsl:text>
     
    715741
    716742
    717   <!-- Text magic. -->
     743  <!--
     744    Generic element text magic.
     745    -->
    718746  <xsl:template match="//text()">
    719747    <xsl:variable name="subst1">
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette