RE: br in XSLFO

2005-03-29 Thread Partridge, Michael
If you don't want to nest blocks, you can just put a fo:block/ anywhere you would otherwise put a br/. -Original Message- From: Gang Li [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 29, 2005 3:00 PM To: fop-users@xmlgraphics.apache.org Subject: br in XSLFO Anybody know how can I get

Re: representative example needed - success story

2005-02-05 Thread Partridge, Michael
I suppose now is a good time to share my experience with FOP with the rest of the mailing list, particularly the FOP developers. I'm a software developer working for a company that does health care administration services for many large US companies. Many of these clients have former employees

RE: last page / footer

2004-12-10 Thread Partridge, Michael
It seems I'm in the same position, however I need hash marks in the page footer which differ on the last page so that a folding machine recognizes the end of the document. Does anyone know of a workaround for this situation? -Original Message- From: Arun Sinha [mailto:[EMAIL PROTECTED]

RE: How to change the size of a PDF page in XSL

2004-11-05 Thread Partridge, Michael
Title: Message I believe page size is defined in your page-master setup. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, November 05, 2004 9:37 AMTo: [EMAIL PROTECTED]Subject: Re: How to change the size of a PDF page in XSL I have

RE: problem converting TTF using TTFReader

2004-11-01 Thread Partridge, Michael
know. Mike Partridge -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: Sat 10/30/2004 12:03 PM To: [EMAIL PROTECTED] Cc: Subject:Re: problem converting TTF using TTFReader Partridge, Michael wrote: I get the following output when attempting

problem converting TTF using TTFReader

2004-10-29 Thread Partridge, Michael
I get the following output when attempting to generate a font metrics file from an OCR true type font: -- TTF Reader v1.1.1 Reading /home/mpartridge/fonts/OCR/OCR-A.TTF... Number of glyphs in font: 115 Unicode cmap table

RE: FOP locks output file under WinXP

2003-06-17 Thread Partridge, Michael
The file you're trying to create when they get that message must be the same path/name as one they already have open. It happens to me in 2k and XP; I don't know that Acrobat ever lets you overwrite a file it already has open. -Original Message- From: Nicolas Michael [mailto:[EMAIL

RE: lining up amounts w/ and w/o parentheses - solved

2003-06-11 Thread Partridge, Michael
need to make it look negative even though the number in the xml is positive. Thanks to everyone again for their help! Mike -Original Message- From: Partridge, Michael [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 10:08 AM To: [EMAIL PROTECTED] Subject: RE: lining up amounts w

RE: lining up amounts w/ and w/o parentheses

2003-06-09 Thread Partridge, Michael
Wow! Thanks for all the responses on this problem! Clay, I tried your first suggestion - putting the value with extra space at the end inside an inline, but the space was still lost. Jeremias, thanks for your suggestion regarding kerning. I'll be trying that out next. Victor, thank you also for

lining up amounts w/ and w/o parentheses

2003-06-06 Thread Partridge, Michael
My pdf is a bill which lists positive and negative amounts in a table, and I need to use parentheses for the negative amounts. The problem is that those w/ parentheses don't line up with the others - they're pushed left (because everything is right-aligned). I've tried this: xsl:variable

RE: fop processing

2003-05-07 Thread Partridge, Michael
? Thanks, Jason Partridge, Michael wrote: Looks like you've got some content in a flow but outside of a block. Right at the beginning of Chapter 6. Snippet: fo:flow flow-name=xsl-region-body fo:block font-family=sans-serif fo:block margin-left=-4pc fo:block font-weight=bold

RE: HTML render class available?

2003-04-25 Thread Partridge, Michael
I would also like the HTML renderer so I could create one stylesheet w/ embedded xsl:fo that could be used to create both PDF and HTML output. This would make format changes easy as they would only have to be made in one place instead of in each format's template, as I'll probably have to do it.

RE: inline Question

2003-04-18 Thread Partridge, Michael
-Original Message- From: Clay Leeds [mailto:[EMAIL PROTECTED] Sent: Thursday, April 17, 2003 5:05 PM To: [EMAIL PROTECTED] Subject: fo:inline Question I see that fo:inline does not generate an area and hence cannot perform area-related layout (borders, background-color, padding,

RE: tab set

2003-04-10 Thread Partridge, Michael
I would suggest using fo:block start-indent=n !-- where n is your indent -- !-- content1 -- /fo:block fo:block start-indent=n !-- where n is your indent -- !-- content2 -- /fo:block If you want to indent a table, I think the easiest way is to make an empty column at the edge. Mike

RE: page break in table row

2003-04-10 Thread Partridge, Michael
It looks like the keep-together property should be partially supported. http://xml.apache.org/fop/compliance.html#fo-property-keep-together -Original Message- From: Bargel, Britta [mailto:[EMAIL PROTECTED] Sent: Thu 4/10/2003 8:17 AM To: '[EMAIL

pdf file creation

2003-04-09 Thread Partridge, Michael
I'm running fop .20.5rc2 from the command line, and my xml file has over 600 invoice elements to process. This job runs very quickly, but after that I need to create a seperate pdf for each invoice. To do that, I create an xml file for each invoice and run fop on each seperately, but this is very

RE: Page number

2003-04-08 Thread Partridge, Michael
Exactly what happens when you try that? Do you get a compiler error or a transformer error? Also, please post your stylesheet so we can look at it. Thanks. Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 08, 2003 10:42 AM To: [EMAIL

RE: Centering a _block_ (read div) of text

2003-04-04 Thread Partridge, Michael
You could try indent calculation based on the length of the string for each line. indent = (page-width - string-length) / 2 That's obviously not the xpath syntax you'd need to use, but it should give you the result you want. Use the xpath function string-length() and pass in your string. Then

RE: Fat, multi-colored, sideborder to the right

2003-04-03 Thread Partridge, Michael
You can specify the region-before to not overlap the edge regions using precedence on region-before. Try this in your page-master: fo:region-before precedence=false ... / fo:region-after precedence=false ... / fo:region-end precedence=true ... / I don't know about the content overflowing

RE: create a check box

2003-04-03 Thread Partridge, Michael
Title: Message Check this link: http://lists.w3.org/Archives/Public/www-xsl-fo/2003Feb/0014.html There's code to hack both checked and unchecked boxes. Mike -Original Message-From: Labeaux Schiek [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 3:17 PMTo: [EMAIL

RE: pdf-forms

2003-03-31 Thread Partridge, Michael
David - I've just finished a simple pdf form using checkboxes and here's what I've used: xsl:template name=unCheckedBox fo:table inline-progression-dimension=8pt table-layout=fixed fo:table-column column-width=8pt/ fo:table-body fo:table-row fo:table-cell

xpath question

2003-03-31 Thread Partridge, Michael
Since right now keeps are only implemented for table rows, I've got to hack a way to keep certain content together on a page. To that end, I'm counting the number of x and y elements, the sum of which I test against a value to determine whether or not to insert a page break. My expression looks

RE: xpath question

2003-03-31 Thread Partridge, Michael
Thanks for the speedy reply, but the XSL processor built into XML Spy replies: [ERROR] Can not convert #NUMBER to a NodeList! Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 9:11 AM To: [EMAIL PROTECTED] Subject: Re: xpath question

RE: xpath question

2003-03-31 Thread Partridge, Michael
- From: Partridge, Michael [mailto:[EMAIL PROTECTED] Sent: March 31, 2003 7:15 AM To: [EMAIL PROTECTED] Subject: RE: xpath question Thanks for the speedy reply, but the XSL processor built into XML Spy replies: [ERROR] Can not convert #NUMBER to a NodeList! Mike -Original Message

table footer placement

2003-03-31 Thread Partridge, Michael
The first time I sent this one I didn't get any replies, so I'll try it one more time. I've got a table with a header, footer, and just enough rows to make the footer spill onto a new page. I also set the attribute table-omit-footer-at-break to true. So I get this when transforming: [WARNING]

RE: block on a new page

2003-03-19 Thread Partridge, Michael
Have you tried fo:block break-before=page on all the blocks? If you get a blank first page, just take that out of the first block. -Original Message- From: Lee, Insoo [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 10:09 AM To: '[EMAIL PROTECTED]' Subject: fo:block on a new

table footer placement

2003-03-19 Thread Partridge, Michael
I've got a table with a header, footer, and just enough rows to make the footer spill onto a new page. I also set the attribute table-omit-footer-at-break to true. So I get this when transforming: [WARNING] footer could not fit on page, moving last body row to next page What actually happens,