diff options
-rw-r--r-- | xorg-chunk.xsl | 7 | ||||
-rw-r--r-- | xorg-fo.xsl | 7 | ||||
-rw-r--r-- | xorg-xhtml.xsl | 6 | ||||
-rw-r--r-- | xorg.xsl | 6 |
4 files changed, 26 insertions, 0 deletions
diff --git a/xorg-chunk.xsl b/xorg-chunk.xsl index 93b18b5..2e7f7b5 100644 --- a/xorg-chunk.xsl +++ b/xorg-chunk.xsl @@ -44,6 +44,13 @@ <!-- Index links should point to indexterm location, not start of section --> <xsl:param name="index.links.to.section" select="0"/> + <!-- + Use element count instead of random number for id generation, for more + repeatable builds + --> + <xsl:param name="generate.consistent.ids" select="1"/> + + <!-- HTML Parameters --> <!-- Uses XSLT Extension to provide more valid and better formatted elements--> diff --git a/xorg-fo.xsl b/xorg-fo.xsl index 4680db3..41fb3f3 100644 --- a/xorg-fo.xsl +++ b/xorg-fo.xsl @@ -41,6 +41,13 @@ <xsl:attribute name="break-after">page</xsl:attribute> </xsl:attribute-set> + <!-- + Use element count instead of random number for id generation, for more + repeatable builds + --> + <xsl:param name="generate.consistent.ids" select="1"/> + + <!-- Pagination and General Styles FO Parameters --> <!-- Speed up ps & pdf creation by not creating pages with "draft" image, diff --git a/xorg-xhtml.xsl b/xorg-xhtml.xsl index d9b7b3e..502aafc 100644 --- a/xorg-xhtml.xsl +++ b/xorg-xhtml.xsl @@ -44,6 +44,12 @@ <!-- Index links should point to indexterm location, not start of section --> <xsl:param name="index.links.to.section" select="0"/> + <!-- + Use element count instead of random number for id generation, for more + repeatable builds + --> + <xsl:param name="generate.consistent.ids" select="1"/> + <!-- HTML Parameters --> <!-- Uses XSLT Extension to provide more valid and better formatted elements--> @@ -41,6 +41,12 @@ DEALINGS IN THE SOFTWARE. <!-- Index links should point to indexterm location, not start of section --> <xsl:param name="index.links.to.section" select="0"/> + <!-- + Use element count instead of random number for id generation, for more + repeatable builds + --> + <xsl:param name="generate.consistent.ids" select="1"/> + <!-- PDF bookmarks extensions for FOP version 0.90 and later will be used. --> <xsl:param name="fop.extensions" select="0"></xsl:param> <xsl:param name="fop1.extensions" select="1"></xsl:param> |