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]

[docbook-apps] Website: double "open page" arrows in toc


Transforming Website V2.5.0 with tabular.xsl, I get two 'open page' arrows in the toc. Here's a simple instance: 

Reviews
  2004 <
  2003
  2002 <

This happens when I open either 2002 or 2004. However, when I open Reviews or 2003, only the open page has the arrow. Can anybody spot the problem? Here's the toc from my layout.xml:

  <toc page="journal.xml" filename="journal.html">
    <tocentry page="reviews.xml"filename="reviews.html">
      <tocentry page="2004.xml" filename="2004.html">
        </tocentry>
      <tocentry page="2003.xml" filename="2003.html">
        </tocentry>
      <tocentry page="2002.xml" filename="2002.html">
        </tocentry>
    </tocentry>
  </toc>
</layout>

Here's the makefile - am I missing an extension, maybe?

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

WSSTYLEDIR=/opt/xml/doctypes/website/xsl
MYSTYLEDIR=/opt/xml/doctypes/website/xsl
MYSTYLE=$(MYSTYLEDIR)/tabular.xsl
OUTDIR=../../out/journal

.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)



To unsubscribe from this list, send a post to docbook-apps-unsubscribe@lists.oasis-open.org, or visit http://www.oasis-open.org/mlmanage/.


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