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] Re: Current date?


Hi,

you can easily set the date in DocBook/XML:

my.xsl contains:

<xsl:param name="mydocdate"/>

and:

<xsl:template match="/article/title">
  <xsl:copy>
    <xsl:apply-templates select="title|@*|text()"/>
  </xsl:copy>
  <xsl:if test="string-length($mydocdate) > 0">
    <simpara><xsl:copy-of select="$mydocdate"/></simpara>
  </xsl:if>
</xsl:template>

Of course, you might add the date in another place than
an article title.

Transformation via Makefile into another DocBook/XML:

xsltproc --stringparam mydocdate "`date -I`" \
  my.xsl my.dbk > new.dbk

Cheers, WB


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