cvs commit: xml-fop CHANGES

2001-12-03 Thread keiron
keiron 01/12/03 22:49:32 Modified:.Tag: fop-0_20_2-maintain CHANGES Log: updated some of the changes since last release Revision ChangesPath No revision No revision 1.10.2.2 +14 -0 xml-fop/CHANGES Ind

Re: Evaluating and

2001-12-03 Thread Christopher R. Maden
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At 08:22 3-12-2001, Max Froumentin wrote: >Ignore them? Chris, you pushed for aural properties to go in the spec, >why would you want them out of implementations? :^) Hrm... more specifically, the visual back-ends should ignore them. A PDF rendere

Re: Page Breaks

2001-12-03 Thread Mike Akerman
On Mon, 3 Dec 2001, Jim Urban wrote: > I have a servlet which dynamically generates XML which is then translated > into FO and ran through FOP to generate PDFs. What can I embed (like a > "\f") in the XML text that will cause FOP to automatically start a new page? > > Thanks, > > Jim Urban I'v

RE: Page Breaks

2001-12-03 Thread Vladimir Sneblic
Try using break-before="page" property of fo:block something like: The text to appear on the next page I think you can leave it empty (i.e. a block with no content), and use it purely as a page break mechanism. Have fun, Vlad -Original Message- Fro

Page Breaks

2001-12-03 Thread Jim Urban
I have a servlet which dynamically generates XML which is then translated into FO and ran through FOP to generate PDFs. What can I embed (like a "\f") in the XML text that will cause FOP to automatically start a new page? Thanks, Jim Urban Product Manager Netsteps Inc. Suite 505E 1 Pierce Pl. I

Reference to next page

2001-12-03 Thread Jens Eckert
Hi, is there a way to realize a reference to the next page (if there is one) in FO? I need to display "continued on page x". Jens - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: fo:external-graphic question

2001-12-03 Thread Todd McGrath
Will this work for SSL sites? I have servlets that produce images (graphs) and I'm try to include them in the generated PDFs. I wasn't sure that you could use relative path for "src" attribute? Since I wasn't able to get it working, I needed to create a separate site in order to use absolute pa

Re: fo:external-graphic question

2001-12-03 Thread Max Froumentin
You wrote: > If you want a relative URI, why not just use a relative URI? I.e., > src="config/isappdev/applications/RVWebApp1/WEB-INF/lib/ClinTrialLogoGreenBig.gif"? > Then the current protocol, host, and directory will be used as the base URI > and the relative URI interpreted relative to th

Re: Evaluating and

2001-12-03 Thread Max Froumentin
Ignore them? Chris, you pushed for aural properties to go in the spec, why would you want them out of implementations? :^) Max. ChrisM wrote: > Oops. See the CSS 2 spec; the audio properties with which these are used > are identical to those from CSS 2. FOP should ignore them. --

Re: a custom header according to page number

2001-12-03 Thread Jens Eckert
I had this idea as well, but only FO knows which if it is formatting the first or the other pages. But Arved's approach works fine. Thanks a lot! Jens Cyril Rognon schrieb:  Jens, I think you are trying to do too much in the fo stage. It is aknowledged that you have the power of xsl fo to take ca

Re: a custom header according to page number

2001-12-03 Thread Cyril Rognon
Jens, I think you are trying to do too much in the fo stage. It is aknowledged that you have the power of xsl fo to take care of formatting. The feature you are talking about is a document structure decision. It is meant to be done by XSLT code. When you decide to create your fo document, you mus

Re: a custom header according to page number

2001-12-03 Thread Arved Sandstrom
Hi, Jens   In the page masters you can explicitly specify the region-master names also, using the 'region-name' property. It so happens that many people leave these off in examples, and the default values (such as 'xsl-region-start') get assigned. So don't trust examples all the time. :-)  

Re: a custom header according to page number

2001-12-03 Thread Jens Eckert
I do have a similar (or the same?)  problem. I have a flow that runs through all the pages. On the first page, though, I'd like to have a different header (static content). So far I defined two simple-page masters and a page-sequence-master that uses a simple-page master for the first page and th

RE: a custom header according to page number

2001-12-03 Thread Cyril Rognon
If you only need to ditinguish the first page from the other ones, simply use a different page-master (reference or name ;-) according to the spec conformance) and use this page master for your cover page only. This will do the trick easily. one page-master for the cover (one page-sequence using

Keep-with-next - what is the plan

2001-12-03 Thread Jay Balunas
Sorry if this has been asked before I just joined this mailing list, I was on the xsl:fo mailing list before this. Hello all, I've been using FOP for some time now and I was wondering does anyone know when "keep-with-next" will be fixed. FOP (xsl:fo) is so cool but my VP is always saying

Re: This is a question for FOP users, please help

2001-12-03 Thread Ulrich Mayring
[EMAIL PROTECTED] wrote: > > Hi all you fo dudes: > > Please need some assistance on how to programatically get a fo doc to render > to pdf. I got it working using the code below, but i want to specify another > userconfig file...how can i do this without doing it command line...anyone > got any

RE: Attaching text to bottom of page

2001-12-03 Thread Etienne Baert \(SPSInfoquest nv\)
Finally, I solved my problem by using a like this : my text to be placed at bottom of a page Many thanks, Etienne Baert -Original Message- From: Arved Sandstrom [mailto:[EMAIL PROTECTED]] Sent: lundi 3 décembre 2001 13:44 To: [EMAIL PROTECTED] Subject: Re: Attac

This is a question for FOP users, please help

2001-12-03 Thread Dudley . Butt
Hi all you fo dudes: Please need some assistance on how to programatically get a fo doc to render to pdf. I got it working using the code below, but i want to specify another userconfig file...how can i do this without doing it command line...anyone got any examples or maybe someone has done it a

RE: a custom header according to page number

2001-12-03 Thread Ismaeil, Sameh Z
Thanks Cyril, please see answers below -Original Message-From: Cyril Rognon [mailto:[EMAIL PROTECTED]]Sent: Monday, December 03, 2001 3:46 PMTo: [EMAIL PROTECTED]Subject: Re: a custom header according to page numberYour question is a little underspecified ...if you want

Re: a custom header according to page number

2001-12-03 Thread Cyril Rognon
Your question is a little underspecified ... if you want to distinguish odd and even pages, the page master conditionnal part is for you (see the page master fo definition : chapter 6.4.11 http://www.w3.org/TR/xsl/slice6.html#fo_conditional-page-master-reference). I think you may handle more than

a custom header according to page number

2001-12-03 Thread Ismaeil, Sameh Z
Hello everybody I am a FOP beginner, can somebody help me please with this problem I need to put a cutsomized header in my pages, the header should contain a different block (of text) according to the page currently being generated, so the condition will be based on the page number 1. is there a

Re: Attaching text to bottom of page

2001-12-03 Thread Arved Sandstrom
Why would it not be _in_ the footer? This sounds like splitting hairs. An XSL-FO footer merely consists of stuff that needs to be at the bottom of pages, possibly based on page number but regardless of content. If your disclaimer fits those criteria it belongs in the XSL footer (stuff in a region-

Re: FOP conformance

2001-12-03 Thread Arved Sandstrom
Cool. If there is nothing else code-wise, I'll stand by waiting to build the release itself. Arved - Original Message - From: "Christian Geisert" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 03, 2001 6:13 AM Subject: Re: FOP conformance > Tore Engvig wrote: > > >

Re: Simple extension problem

2001-12-03 Thread Keiron Liddle
The class ExtensionObj is used in a particular way. Overriding it like you have done will not do what you want. You should extends the FObj class and in the layout method you should insert the text that you want into the line area. The same as what is done in the FOText class by adding your t

Re: Maintanance release (was: FOP conformance)

2001-12-03 Thread Bertrand Delacretaz
On Monday 03 December 2001 12:19, Christian Geisert wrote: > What about jfor ? > I think it would be a good idea to add it with "user-level" integration as > proposed by Betrand. Depends on schedule - I'm very busy for the next two weeks, it would be hard for me to find time to do the code movin

Re: Maintanance release (was: FOP conformance)

2001-12-03 Thread Christian Geisert
Keiron Liddle wrote: > [..] > The things that I can think of that need doing are: > - change appropriate "master-name" to "master-reference" in code and > example documents > - update version number and such info > > Then do some testing and check that everything is in order. What about jfor ?

Setting the page-number

2001-12-03 Thread sascha . schmidt
Hi folks, i've got the following problem: Is there a way to set the current page-number within a page-sequence? I'm looking for something like that " Details: A RTF-document with placeholders (introduced by a escape-character, e.g. "~") is converted to FO using rtf2fo (http://www.novosoft-

RE: Attaching text to bottom of page

2001-12-03 Thread Etienne Baert \(SPSInfoquest nv\)
Well, not really, as with footnotes they are cross-references from and to the body text, which I don't need in my case. The disclaimer has simply to be present and to be placed at the bottom of the page, just above the footer. -Original Message- From: Keiron Liddle [mailto:[EMAIL PROTECTE

Re: Jaggies

2001-12-03 Thread James Richardson
Ah yes. Thanks. I will try and find an alternative method. I was tring to use the pattern fill as a mostly transparent 'watermark' over the image. Cheers! James Keiron Liddle wrote: > > > > Please read this page: > http://xml.apache.org/fop/svg.html > > it should tell you what you need

Re: Attaching text to bottom of page

2001-12-03 Thread Keiron Liddle
Do you mean you want a footnote? A footnote will be placed at the bottom of the body region and the area for the flow will be reduced. On 2001.12.03 11:26 Etienne Baert SPSInfoquest nv wrote: > Is there a way to attach text to the bottom of page > without making it part of a footer? > I have a

Re: Jaggies

2001-12-03 Thread Keiron Liddle
Please read this page: http://xml.apache.org/fop/svg.html it should tell you what you need to know. On 2001.11.30 17:47 James Richardson wrote: > > When rendering my previous post, Batik seems to be able to render fine > in the GUI, but when included in FOP ( either as external graphic, or >

Attaching text to bottom of page

2001-12-03 Thread Etienne Baert \(SPSInfoquest nv\)
Is there a way to attach text to the bottom of page without making it part of a footer? I have a variable content page but I always want to have disclaimer text right above the footer without making it part of the footer. Thanks for any help!

Re: CVS snapshot does not render

2001-12-03 Thread Philippe Van Der Gucht
Keiron Liddle wrote: > It's not a module its the tag on the fop-dev module. > cvs co -t "fop-0_20_2-maintain" fop-dev There does not seem to be a fop-dev module available on cvs.apache.org:/home/cvspublic? I took the tagged files from the xml-fop module but the bug crept up again. Apparently a

Re: FOP conformance

2001-12-03 Thread Christian Geisert
Tore Engvig wrote: > [..] > The simple-page-master stuff that originated the whole maintenance release > and Karen's table suggestions are still left to be done (Christian?) Yes, I hope to send the patches tomorrow (tuesday) > Tore

cvs commit: xml-fop/docs/xml-docs/fop architecture.xml embedding.xml readme.xml resources.xml svg.xml todo.xml

2001-12-03 Thread keiron
keiron 01/12/03 01:53:04 Modified:docs/xml-docs readme docs/xml-docs/fop architecture.xml embedding.xml readme.xml resources.xml svg.xml todo.xml Log: updated info to include some answers to common questions Revision ChangesPath 1.

DO NOT REPLY [Bug 5235] New: - Font matching

2001-12-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: xml-fop/lib readme

2001-12-03 Thread keiron
keiron 01/12/03 01:12:33 Modified:lib readme Log: added note about where batik jar comes from Revision ChangesPath 1.6 +1 -0 xml-fop/lib/readme Index: readme === RCS file: /home/cvs

DO NOT REPLY [Bug 5234] New: - Cols of table

2001-12-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: FOP conformance

2001-12-03 Thread Keiron Liddle
> I think too we should do a maintenance release (from > 'fop-0_20_2-maintain' > branch). > > I volunteer to do the necessary patches, do some testing etc. Very Good!! Then I suggest you set a timetable to do the release. Tore has already committed a bunch of things. Batik has been updated to

cvs commit: xml-fop/src/org/apache/fop/image FopImageFactory.java

2001-12-03 Thread keiron
keiron 01/12/02 23:57:41 Modified:src/org/apache/fop/image Tag: fop-0_20_2-maintain FopImageFactory.java Log: doesn't open stream if image already loaded and in hash map Revision ChangesPath No revision No