Why properties ingnored and unknown formatting objects?

2002-04-21 Thread Darya Said-Akbari
Hello,

I created a .fo document with Xalan-Java version 2.3.1
without any error.

I used this: 

java org.apache.xalan.xslt.Process -in input.xml -xsl
stylesheet.xsl -out output.fo

When I try to convert the created .fo file to PDF by
fop-0.20.3 I get this errors:

[INFO]: FOP 0.20.3
[INFO]: building formatting object tree
[ERROR]: property 'page-master-name' ignored
[ERROR]: Unknown formatting object
http://www.w3.org/1999/XSL/Format^sequence-specification
[ERROR]: Unknown formatting object
http://www.w3.org/1999/XSL/Format^sequence-specifier-alternating
[ERROR]: property 'page-master-even' ignored
[ERROR]: property 'page-master-odd' ignored
[ERROR]: property 'page-master-first' ignored
[ERROR]: null

Does anyone know what I am doing wrong? I use the
latest version for both, Xalan-Java and Fop.

Any hints are very welcome.

Best regards,
Darya



__
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/


Re: Why properties ingnored and unknown formatting objects?

2002-04-21 Thread J.Pietschmann
Darya Said-Akbari wrote:
When I try to convert the created .fo file to PDF by
fop-0.20.3 I get this errors:
[INFO]: FOP 0.20.3
[INFO]: building formatting object tree
[ERROR]: property 'page-master-name' ignored
[ERROR]: Unknown formatting object
http://www.w3.org/1999/XSL/Format^sequence-specification
[ERROR]: Unknown formatting object
http://www.w3.org/1999/XSL/Format^sequence-specifier-alternating
[ERROR]: property 'page-master-even' ignored
[ERROR]: property 'page-master-odd' ignored
[ERROR]: property 'page-master-first' ignored
[ERROR]: null
Does anyone know what I am doing wrong? I use the
latest version for both, Xalan-Java and Fop.
There are no elements fo:sequence-specification or
fo:sequence-specifier-alternating in the final version
of the standard. Did you use an outdated example or
documentation?
You'll probably have to use fo:page-sequence-master and
fo:repeatable-page-master-aternatives
 http://www.w3.org/TR/xsl/slice6.html#fo_page-sequence-master
 http://www.w3.org/TR/xsl/slice6.html#fo_repeatable-page-master-alternatives
J.Pietschmann