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] website problem.


I've been building my website on that platform for a year. FWIW,
here's my makefile (again, ignore the line breaks):

PROC=java -cp "/myjava/saxon.jar:
                /myxml/catalogs:
                /myjava/resolver.jar:
                /myxml/docbookxsl/extensions/saxon651.jar:
                /myxml/website/extensions/saxon64.jar"
com.icl.saxon.StyleSheet
-r org.apache.xml.resolver.tools.CatalogResolver
-x org.apache.xml.resolver.tools.ResolvingXMLReader


WSSTYLEDIR=/myxml/website/xsl
MYSTYLEDIR=/myxml/xslcustom/website
MYSTYLE=$(MYSTYLEDIR)/wsmain.xsl
OUTDIR=../out

.PHONY : clean

all:
         make website

include depends.tabular
autolayout.xml: layout.xml
        $(PROC) -o $@ $<  $(WSSTYLEDIR)/autolayout.xsl
         make depends
%.html: autolayout.xml
         $(PROC) -o $@ $(filter-out autolayout.xml,$^) $(MYSTYLE)
depends: autolayout.xml
         $(PROC) -o depends.tabular $< $(WSSTYLEDIR)/makefile-dep.xsl  output-root=$(OUTDIR)


Dave Pawson wrote:
> I've moved over to Redhat, Fedora Core 3.
> 
> Trying to rebuild the docbook faq.
> 
> First stage runs, no problem. Generates autolayout.xml
> 
> When I run the second stage I'm getting 
> Exception in thread "main" java.lang.StackOverflowError
> 
> 
> Script I'm using is:
> 
> 
> java -
> cp /myjava/saxon653.jar:/myjava/xercesImpl.jar:/myjava/resolver.jar:/sgml/docbook/website-2.5.0/extensions/saxon64.jar:
> /sgml   com.icl.saxon.StyleSheet 
> -x org.apache.xml.resolver.tools.ResolvingXMLReader 
> -y org.apache.xml.resolver.tools.ResolvingXMLReader  
> -r org.apache.xml.resolver.tools.CatalogResolver  -l 
> -o op.html autolayout.xml mywebsite.xsl "saxon.extensions=1"   
> 
> All on one line obviously.
> 
> Can anyone see a problem there? 
> It ran happily under Redmond kit....
> 
> I've plenty of memory, so I don't think that's the problem.... 
> I've tried using the -Xms -Xmx options, no improvement.
> 
> Any suggestions appreciated.
> I'm stumped, since I'm getting no output at all other than the java
> error.
> 
> 
> 
> 



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