DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=38098>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38098


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[patch] allow some xsl-     |[patch] allow some xsl-
                   |function calls with omitted |function calls with omitted
                   |args                        |args




------- Additional Comments From [EMAIL PROTECTED]  2006-01-03 22:59 -------
Gerhard,

Again, a nice little addition!

To help you out a bit further with the TODO, and minimize the searching: all 
those functions reside in 
the package org.apache.fop.fo.expr (apart from system-font()). They have 
slightly different names, but 
easily recognizable. For example: from-nearest-specified-value = 
NearestSpecPropFunction. Come to 
think of it, maybe this should be renamed as a matter of style to 
FromNearestSpecValFunction or 
something like that... (?)
from-table-column() is currently unimplemented, but it shouldn't be 
particularly hard, given:
a) that the column-numbers are all properly initialized 
and b) the limited number of properties applicable to table-columns. 

If you already know your way around the properties package well enough: the 
PropertyList for a 
TableColumn will, IIC, no longer be available at the time this function is 
called, so it may be possible to 
map it to a call to the appropriate method in fo.flow.TableColumn... 
example: "from-table-column(1, 'border-start-width')" would trigger a call to 
"((TableColumn) 
Table.getColumns().get(0)).getBorderWidth(CommonBorderPaddingBackground.START)" 
Either that, or references to the columns' PropertyLists need to be kept alive 
during the whole lifecycle 
of the Table object.


Cheers,

Andreas

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

Reply via email to