RE: Attaching text to bottom of page

2002-02-10 Thread Joshua.Kuswadi

Hi all,

If the there isn't enough space for the fo:footnote-body on the bottom of the last 
page of a document, is FOP supposed to create a new page for it? I'm currently using 
version 0.20.1.

For some reports, the disclaimer isn't appearing as the number of records returned 
goes to the bottom of the page and there isn't sufficient space for the fo:block 
within the fo:footnote-body

Any ideas? Thanks,
Joshua

 -Original Message-
 From: Etienne Baert (SPSInfoquest nv) [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday,4 December 2001 1:40
 To: [EMAIL PROTECTED]
 Subject: RE: Attaching text to bottom of page
 
 
 Finally, I solved my problem by using a fo:footnote
 like this :
 fo:footnote
 fo:inline/
 fo:footnote-body
 fo:blockmy text to be placed at bottom of a page/fo:block
 /fo:footnote-body
 /fo:footnote
 
 Many thanks,
 Etienne Baert

--
This message and any attachment is confidential and may be privileged or otherwise 
protected from disclosure.  If you have received it by mistake please let us know by 
reply and then delete it from your system; you should not copy the message or disclose 
its contents to anyone.





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Concat

2002-01-09 Thread Joshua.Kuswadi



how 
about:
xsl:value-of select="concat($path, $filename)" 
/

HTH,
Joshua

  -Original Message-From: Raúl Carazo 
  [mailto:[EMAIL PROTECTED]]Sent: Thursday,10 January 2002 
  3:53To: FOPSubject: Concat
  Is there a function like concat for Strings. 
  
  
   I have a param in the xml file 
  (the path of a directory) and the name in the XSL file, so I want to create a 
  full path with the path of the directory and the name of the file. 
  
  
   Any Idea??
  
   Salve
  
  
  Siete 
  buoni, se potete

--
This message and any attachment is confidential and may be privileged or otherwise protected from disclosure.  If you have received it by mistake please let us know by reply and then delete it from your system; you should not copy the message or disclose its contents to anyone.





RE: selected checkbox

2001-12-18 Thread Joshua.Kuswadi

Jozef wrote:
To evade problems with fonts supporting checkboxes etc. I use 
 external images. I know it is not the pure, clean and scientific 
 solution but it always works .
 
We tried this also, but came across a problem if the fo:external-graphic file was 
being referenced too frequently, then it wouldn't get rendered. It appeared that the 
image itself was cached, but FOP would still open a URL connection which would 
sometimes return a 403 error.

Thanks,
Joshua

--
This message and any attachment is confidential and may be privileged or otherwise 
protected from disclosure.  If you have received it by mistake please let us know by 
reply and then delete it from your system; you should not copy the message or disclose 
its contents to anyone.





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: How do I position basic-links

2001-11-13 Thread Joshua.Kuswadi

 Subject: How do I position basic-links
 so that the link is in the same location, i.e. on top of, the text I'm
 attempting to set a link for?

Do you mean, 
fo:basic-link href=URLThis is the link text/fo:basic-link
?

HTH,
Joshua

--
This message and any attachment is confidential and may be privileged or otherwise 
protected from disclosure.  If you have received it by mistake please let us know by 
reply and then delete it from your system; you should not copy the message or disclose 
its contents to anyone.





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: no visual tool for FOP?

2001-11-12 Thread Joshua.Kuswadi

 I am wondering if there is no way for users
 to generate WISWIG xsl:fo files?

 like for HTML, users would use Dreamweaver, rather
 than writing programs Document doc.addElement(new Table(...)).


HP released something recently. I haven't tried it, but you can find it here:
http://www-uk.hpl.hp.com/people/fabgia/foa/foa.html
 
Joshua

--
This message and any attachment is confidential and may be privileged or otherwise 
protected from disclosure.  If you have received it by mistake please let us know by 
reply and then delete it from your system; you should not copy the message or disclose 
its contents to anyone.





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: DPI of images...

2001-10-29 Thread Joshua.Kuswadi

Christian wrote:
 If I insert images in PDFs, what DPI is used? Is that defined?
 Are the DPI used, that can be stored in JPG?

According to the spec, for fo:external-graphic:
http://www.w3.org/TR/xsl/slice6.html#fo_external-graphic

In the case when the graphics format does not specify an intrinsic size of the 
graphic the size is determined in an implementation-defined manner.
NOTE: For example, a size of 1/96 as the size of one pixel for rasterized images may 
be used. 

I've used a large image and set the width and height attributes, which resulted in the 
image outputting in higher resolution.

Hope that helps,
Joshua

--
This message and any attachment is confidential and may be privileged or otherwise 
protected from disclosure.  If you have received it by mistake please let us know by 
reply and then delete it from your system; you should not copy the message or disclose 
its contents to anyone.





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Table Column-Headers

2001-10-26 Thread Joshua.Kuswadi
Title: Table Column-Headers



Hi 
Chris,
Have 
you looked at fo:table-header? This should do what you want.
fo:table
 fo:table-header
 
fo:table-row
... 
content for the column headings ...
 
/fo:table-row
 /fo:table-header
 fo:table-body
 
... content for the body of the table 
...
 /fo:table-body
/fo:table

HTHs,Joshua

  -Original Message-From: West, Chris 
  [mailto:[EMAIL PROTECTED]]Sent: Thursday,25 October 2001 
  9:50To: '[EMAIL PROTECTED]'Subject: Table 
  Column-Headers
  I'm dynamically generating a table that can have a 
  variable number of rows. In the situation where the table spans multiple 
  pages, I would like to have the first row contain the column labels. 
  I've been able to do this using a style sheet, but it requires that the height 
  of each row be fixed (which I would like to avoid). From the 
  documentation, fo:table-caption can host a table, which could be set up to be 
  a one-row table that contains the column headers. From what I've read, 
  this caption can be made to repeat after crossing a page boundary. 
  Before trying this, I'd like to get some feed back from those more experienced 
  with FOP regarding this approach. I'm using the latest version, 
  20.2.
  Thanks in advance, 
  Chris W. 

--
This message and any attachment is confidential and may be privileged or otherwise protected from disclosure.  If you have received it by mistake please let us know by reply and then delete it from your system; you should not copy the message or disclose its contents to anyone.





RE: How can I set the margins in a pdf to be printed?

2001-10-25 Thread Joshua.Kuswadi
Title: How can I set the margins in a pdf to be printed?



Hi 
Andrew,

Check 
your Acrobat setting 'Fit to page' on the print dialogue box. 
If this is checked, it may mean that the PDF content gets scaled into the 
printable area.

HTH,
Joshua

  -Original Message-From: Clute, Andrew 
  [mailto:[EMAIL PROTECTED]]Sent: Thursday,25 October 2001 
  4:15To: '[EMAIL PROTECTED] 'Subject: How can I set 
  the margins in a pdf to be printed?
  I have generated a pdf that has a barcode 3/16" of an inch 
  from the left side of the page (a normal 8.5 x 11 page), and when I open up 
  the pdf in Acrobat, it shows it exactly like it is suppose to. However, when I 
  print the pdf, the printer (HP 5si) prints the barcode more than 1/4" from the 
  left side of the page (about 7/16" off the side).
  If I set my barcode to start on the left side of the page, the 
  printer prints the barcode a 1/4" from the side. 
  I thought that my printer could print closer to the edge, but 
  I am not sure how to get the pdf to print this way 
  It seem there is a disconnect between what is shown on the 
  screen vs. what is printed. Any thoughts? 
  Thanks 
  -Andrew 

--
This message and any attachment is confidential and may be privileged or otherwise protected from disclosure.  If you have received it by mistake please let us know by reply and then delete it from your system; you should not copy the message or disclose its contents to anyone.





RE: Reference books

2001-08-28 Thread Joshua.Kuswadi

If you want a web site that has all this information, as well as links to the standard:
http://www.zvon.org/xxl/xslfoReference/Output/
Joshua

 Hi All
 
 Does anyone know of a good reference book that list all the different
 elements and attributes and their uses. I have a copy of XSLT
 Programmer's Reference by Wrox, which I found exceeding useful whilst
 learning XSLT. Anyone know of a similar type of book for XSL-FO.
 
 Thanx
 Alan
 

--
This message and any attachment is confidential and may be privileged or otherwise 
protected from disclosure.  If you have received it by mistake please let us know by 
reply and then delete it from your system; you should not copy the message or disclose 
its contents to anyone.





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: [Bug 3208] New: Blocks aligned incorrectly in PDF

2001-08-22 Thread Joshua.Kuswadi

regarding the first problem: are you printing under windows 
 with acrobat
 reader 4.0 and up? Try printing on a different printer. I 
 have similar
 problems with WinNT and Acrobat Reader 4 an 5 when I am 
 printing to a HP
 LaserJet 4M+.

When using Acrobat reader, check that the 'Fit to page' option is not selected. I 
think this shrinks the page to fit within the printable area.


--
This message and any attachment is confidential and may be privileged or otherwise 
protected from disclosure.  If you have received it by mistake please let us know by 
reply and then delete it from your system; you should not copy the message or disclose 
its contents to anyone.





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Property inheritance (space-before)

2001-08-19 Thread Joshua.Kuswadi

 From: Arved Sandstrom [mailto:[EMAIL PROTECTED]]
 'space-before' is _not_ inheritable in any case, so it is 
 something of a 
 moot point. What you are confusing that with is the 
 possibility of using the 
 inherit keyword, which is a different beast.

Hi Arved,

Thank you for clearing that up for me. You were right, I saw the word 'inherit' in the 
spec and didn't read further down to inheritable: . no

Joshua

--
This message and any attachment is confidential and may be privileged or otherwise 
protected from disclosure.  If you have received it by mistake please let us know by 
reply and then delete it from your system; you should not copy the message or disclose 
its contents to anyone.





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Property inheritance (space-before)

2001-08-16 Thread Joshua.Kuswadi

Hi there,

Sorry about the cross post, I just posted this to [EMAIL PROTECTED], but thought 
as the difference is in two versions of FOP, someone here could help me understand my 
problem.

I'm quite new to using XSL-FO and have got a question about what is correct syntax for 
XSL-FO regarding property inheritance. I recently upgraded from FOP 0.17 to FOP 0.20.1.

I have some XSL that generates the following snippet:
   fo:table-row space-before=12pt
  fo:table-cell
fo:blockSome block text/fo:block
  /fo:table-cell
   /fo:table-row

With FOP 0.17 this put a 12pt space between this row and the previous row, but with 
FOP 0.20.1 it doesn't.

From what I can find in the spec 7.9.5 [1], the space-before inherits from it's 
parent. The spec also mentions that inheritable properties 5.1.4 [2] can be put in 
any formatting object and subsequent children will pick up the property.

However, space-before isn't a valid property for a table-row.

So, I'm assuming it is incorrect to put the space-before attribute in the table-row 
element? Can someone explain how the inheritance thing works then?

Again, sorry about the cross post.

Thanks a lot,
Joshua

[1] http://www.w3.org/TR/xsl/slice7.html#space-before
[2] http://www.w3.org/TR/xsl/slice5.html#inheritance

--
This message and any attachment is confidential and may be privileged or otherwise 
protected from disclosure.  If you have received it by mistake please let us know by 
reply and then delete it from your system; you should not copy the message or disclose 
its contents to anyone.





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]