This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [docbook-apps] chunked html with two-pass processing for profiles


On Tue, Feb 15, 2005 at 03:53:07PM +0900, Michael Smith wrote:
> You have to specify a value for the use.id.as.filename parameter -
> 
>   xsltproc --debug ¥
>   --stringparam use.id.as.filename 1 ¥
>   /usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl ¥
>   temp.html.xml;
> 
> With what you had, I think xsltproc thought that the value was
> "/usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl" and it
> though that the stylesheet was temp.html.xml. So I guess that's
> why it was telling you it's not a stylesheet.

Hi Michael, 

Thanks for that, that fixes one obvious bug, but I continue to wallow in errors.

So here's my new make target:

blow_chunks: tech_spec.xml
	cd tech_spec; \
	xsltproc --debug \
	--stringparam use.id.as.filename 1 \
	/usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl \
	temp.html.xml; #No apparent troubles getting to temp.html.xml

This gives me:

	$ make blow_chunks

	cd tech_spec; \
	xsltproc --debug \
	--stringparam use.id.as.filename 1 \
	/usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl \
	temp.html.xml;
	/bin/sh: line 1: 16530 Segmentation fault      xsltproc --debug --stringparam
	use.id.as.filename 1
	/usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsltemp.html.xml
	make: *** [blow_chunks] Error 139

When I run this manually without make, again I get just a Segmentation Fault.

Anymore ideas?

Jens







Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]