RE: Page Breaks

2001-12-05 Thread Joerg Pietschmann
Hello, a form feed (\f, 0xC, ASCII FF, CTRL-L or ) is not a legal character in XML. Data containing it could/should be rejected. Also: "Jim Urban" <[EMAIL PROTECTED]> wrote: > XSLT is under the control of our client. Then you can tell your clients to cope with it. Actually, doing something for

RE: Page Breaks

2001-12-05 Thread Alistair Hopkins
, December 04, 2001 6:06 PM To: [EMAIL PROTECTED] Subject: RE: Page Breaks I doubt that would be permissible since the client wouldn't be able to control the extension (I'm assuming an extension is a compiled class). Jim -Original Message- From: Alistair Hopkins [mailto:[EMAIL PROTEC

RE: Page Breaks

2001-12-04 Thread Jim Urban
-Original Message- From: Ramin Firoozye [mailto:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 2:50 PM To: [EMAIL PROTECTED] Subject: RE: Page Breaks Hi Jim, Sounds like a text-replace is called for. A few questions: - Do you have the opportunity to pre-process the goods via

RE: Page Breaks

2001-12-04 Thread Ramin Firoozye
insert a > "" and the corresponding > "" at the > correct places? > > Jim > > -Original Message- > From: Vladimir Sneblic [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 03, 2001 4:13 PM > To: '[EMAIL PROTECTED]' > Subject: RE:

RE: Page Breaks

2001-12-04 Thread Jim Urban
D] Subject: RE: Page Breaks How about an extension to XSL / Xalan? Would that be permissible, or possible? Ugly, but keeps control with the client... -Original Message- From: Jim Urban [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 04, 2001 5:05 PM To: [EMAIL PROTECTED] Subject

RE: Page Breaks

2001-12-04 Thread Alistair Hopkins
How about an extension to XSL / Xalan? Would that be permissible, or possible? Ugly, but keeps control with the client... -Original Message- From: Jim Urban [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 04, 2001 5:05 PM To: [EMAIL PROTECTED] Subject: RE: Page Breaks I agree

RE: Page Breaks

2001-12-04 Thread Jim Urban
laws regarding data integrity and security called HIPPA. I hope this explains my situation. Now lets move on. :) Jim -Original Message- From: Arved Sandstrom [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 04, 2001 10:33 AM To: [EMAIL PROTECTED] Subject: Re: Page Breaks Not to st

Re: Page Breaks

2001-12-04 Thread Arved Sandstrom
; no different from Perl, actually). Regards, Arved Sandstrom - Original Message - From: "Jim Urban" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 04, 2001 11:54 AM Subject: RE: Page Breaks > Our application is a web application implemented

Re: Page Breaks

2001-12-04 Thread James Richardson
Jim Urban wrote: > > Using XSLT does not change the data. It simply formats the data for > display. not that this relates to FOP, but I think XSLT, as its turing complete, cannot be said to change any data any less than perl, or James --

RE: Page Breaks

2001-12-04 Thread Jim Urban
rk". Jim -Original Message- From: Arved Sandstrom [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 04, 2001 9:01 AM To: [EMAIL PROTECTED] Subject: Re: Page Breaks I hear you saying that modification of XML data with XSL is not really modification at all, but modification with Perl is b

Re: Page Breaks

2001-12-04 Thread Arved Sandstrom
fact I did not understand your argument. Regards, AHS - Original Message - From: "Jim Urban" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 04, 2001 10:33 AM Subject: RE: Page Breaks > Perl? We are Java Servlet web based application. We

RE: Page Breaks

2001-12-04 Thread Jim Urban
ent of our client's data is through XSL which is maintained by the client. So as you see, we do need an XSL / FO sollution. Jim -Original Message- From: Arved Sandstrom [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 04, 2001 8:06 AM To: [EMAIL PROTECTED] Subject: Re: Page Breaks

Re: Page Breaks

2001-12-04 Thread Arved Sandstrom
Regards, Arved Sandstrom - Original Message - From: "Jim Urban" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 04, 2001 9:25 AM Subject: RE: Page Breaks > I'm using XSLT to translate XML into FO. The field containing the form > f

RE: Page Breaks

2001-12-04 Thread Jim Urban
I'm using XSLT to translate XML into FO. The field containing the form feeds is a text element. I need to be able to do this using XSL. Jim -Original Message- From: Mike Akerman [mailto:[EMAIL PROTECTED]] Sent: Monday, December 03, 2001 4:18 PM To: FOP Dev Subject: Re: Page B

RE: Page Breaks

2001-12-04 Thread Jim Urban
How would I code my XSL to scan a text element for form feeds and insert a "" and the corresponding "" at the correct places? Jim -Original Message- From: Vladimir Sneblic [mailto:[EMAIL PROTECTED]] Sent: Monday, December 03, 2001 4:13 PM To: '[EMAIL PROTECTED]&

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

Re: Page Breaks

2001-09-28 Thread Karen Lease
Hi Amit, Use the attribute 'break-before="page"' on an FO (like fo:block or fo:table). In general, for basic "how-to-use" XSL-FO questions you might want to look at some resources other than the list. The W3C proposed recommendation isn't light reading, but there are some introductory articles a

Re: Page Breaks

2001-09-28 Thread Carmelo Montanez
Yes, use the "break-before" and "break-after-properties" in your FO file. See section 7.19 of the specs. Carmelo - Original Message - From: "Amit" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 27, 2001 10:00 AM Subject: Page Breaks > Is there a way to insert a ba