DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25272>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
Advertising
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25272
FNF thrown formatting test/resources/fop/image/align.fo
------- Additional Comments From [EMAIL PROTECTED] 2003-12-07 21:42 -------
A suggested correction:
There is only ever ONE current input source (file or URL) active at a time and
files nest in a 'stackable' fashion. It would appear that a Singleton containing
a Stack could model this nicely.
1) When you establish the input source, store the fully qualified basename and
filename in the singleton by pushing it on to the stack.
2) When you go to open a relative filename or URL, get the basename from the
singleton.
3) If you ever nest input sources, this extends nicely.
4) This avoids the impure possibility of using 'Global' data.