Changes between Initial Version and Version 1 of Ticket #38385
- Timestamp:
- Mar 14, 2013, 6:26:54 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #38385 – Description
initial v1 1 1 I have a simple custom xsl stylesheet which has this import: 2 {{{ 2 3 <xsl:import href="urn:docbkx:stylesheet"/> 4 }}} 3 5 (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) 4 6 5 7 when I run a2x, I get this error: 6 8 9 {{{ 7 10 warning: failed to load external entity "urn:docbkx:stylesheet" 8 11 compilation error: file /Users/rasp/git/maven-reference-en/epub/epub-custom.xsl line 7 element import 9 12 xsl:import : unable to load urn:docbkx:stylesheet 13 }}} 10 14 11 15 the actual command is: 16 {{{ 12 17 xsltproc --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 }}} 13 19 14 20 if I run the command without this custom stylesheet, it works properly.