Re: Pushing down bottom margin for book title page

2010-07-21 Thread Pascal Sancho
Hi Akagi, You should ask Docbook related question on Docbook list (see [1]). Ideally, on FOP user list you should ask questions that come *after* the XSLT transformation, and you should provide short XSL-FO snippet to arg your question. [1] http://www.docbook.org/guidelines Pascal Le

Re: Pushing down bottom margin for book title page

2010-07-21 Thread Akagi K
Thanks Pascal and Georg for your advice. Will post to the docbook list. akagi Pascal Sancho wrote: Hi Akagi, You should ask Docbook related question on Docbook list (see [1]). Ideally, on FOP user list you should ask questions that come *after* the XSLT transformation, and you should

Re: Referring to a image file in a JAR file

2010-07-21 Thread TvT
Hi, we needed exactly that and implemented our own ResourceResolver for that. You can register it like the following: //Register a custom resolver foUserAgent.setURIResolver(new ClasspathResourceResolver()); //The clas has to implement the URIResolver public class ClasspathResourceResolver

The Apache Software Foundation Announces Apache FOP Version 1.0

2010-07-21 Thread Simon Pepping
Redesigned, Stable Version of Pioneering XSL Formatting Objects Processor Rounds Out Apache XML Software Stack FOREST HILL, Md., July 21 -- The Apache Software Foundation (ASF) - the all-volunteer developers, stewards, and incubators of nearly 150 Open Source projects and initiatives - today

RE: XML to TIFF CITT conversion - aid requested

2010-07-21 Thread Marquart, Joshua D
Resolved. I walked through the Main class code and replicated the steps. Part of my problem was I was trying to use the java code posted earlier instead of the userconfig.xml FOUserAgent ua = fopFactory.newFOUserAgent(); TIFFRenderer renderer = new TIFFRenderer(); renderer.setUserAgent(ua);

RE: Referring to a image file in a JAR file

2010-07-21 Thread Bernard Giannetti
I already have a URIResolver implemented to resolve the something such as xsl:include href=pagesetup.xsl / which is what the Javadoc says it's used for: http://download.oracle.com/docs/cd/E17409_01/javase/6/docs/api/javax/xml/transform/URIResolver.html Unfortunately, the

Re: Referring to a image file in a JAR file

2010-07-21 Thread Jeremias Maerki
No URIResolver should be necessary in this case. I think you simply need to add jar: in front and it should work, i.e.: jar:file://myapp.jar!/image.svg On 22.07.2010 03:05:42 Bernard Giannetti wrote: I already have a URIResolver implemented to resolve the something such as