Ticket #767 (new Bug)
Opened 3 years ago
Fop errors when rendering tables
| Reported by: | karel@… | Owned by: | somebody |
|---|---|---|---|
| Priority: | Minor | Milestone: | |
| Component: | Daisy Books | Version: | 2.3 |
| Keywords: | Cc: |
Description
[jira2trac import : issue created on March 7, 2010 11:05:21 AM CET http://issues.cocoondev.org/browse/DSY-767 ]
(As reported by Robert Ellison on the mailing list)
The errors of the form
ERROR [org.apache.fop.fo.PropertyList?] Ignoring property: column-number="position()" (no such function: position; property:'column-number')
arise from the statement (in query-styling-xslfo.xsl and document-to-sxlfo.xml)
<fo:table-column column-number="position()" column-width="proportional-column-width(1)"/
which should be
<fo:table-column column-number="{position()}" column-width="proportional-column-width(1)"/>
Bob