Changes between Initial Version and Version 1 of Ticket #38385


Ignore:
Timestamp:
Mar 14, 2013, 6:26:54 PM (11 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #38385 – Description

    initial v1  
    11I have a simple custom xsl stylesheet which has this import:
     2{{{
    23<xsl:import href="urn:docbkx:stylesheet"/>
     4}}}
    35(in fact what I'm trying to do is built the maven reference book and the stylesheet is here: https://github.com/sonatype/maven-reference-en/blob/master/epub/epub-custom.xsl)
    46
    57when I run a2x, I get this error:
    68
     9{{{
    710warning: failed to load external entity "urn:docbkx:stylesheet"
    811compilation error: file /Users/rasp/git/maven-reference-en/epub/epub-custom.xsl line 7 element import
    912xsl:import : unable to load urn:docbkx:stylesheet
     13}}}
    1014
    1115the actual command is:
     16{{{
    1217xsltproc --stringparam callout.graphics 0 --stringparam navig.graphics 0 --stringparam admon.textlabel 1 --stringparam admon.graphics 0 --stringparam html.stylesheet "epub/epub-custom.css" --stringparam toc.section.depth 1 --stringparam chunk.section.depth 0  "/Users/rasp/git/maven-reference-en/epub/epub-custom.xsl" "/Users/rasp/git/maven-reference-en/target/book-mvnref.xml"
     18}}}
    1319
    1420if I run the command without this custom stylesheet, it works properly.