Re: Another Footnote Problem

2005-04-05 Thread Eike Stepper
J.Pietschmann schrieb:
Eike Stepper wrote:
The normal (body) text always flows "over" the footnote
region. This happens with each footnote on each page.

This is unusual. Which FOP version are you using?
Note that footnote space calculation is still buggy in 0.20.5,
although it should reserve more space than necessary, rather
then too little space.
It may be worth to get rid off the non-integer font size too,
although all related bug are claimed to be fixed in 0.20.5.
J.Pietschmann
Maybe my DocBook customization layer is helpful:

http://www.w3.org/1999/XSL/Transform"; version="1.0">

















0.7em
0.5em
0.9em


0.0em
0.0em
0.2em
0.0em
0.0em
0.2em


0.7em
0.5em
0.9em





bold


always
left
0.8em
1.0em
1.2em




pt





pt





pt





pt





pt





pt




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


Re: Another Footnote Problem

2005-04-05 Thread Eike Stepper
J.Pietschmann schrieb:
Eike Stepper wrote:
The normal (body) text always flows "over" the footnote
region. This happens with each footnote on each page.

This is unusual. Which FOP version are you using?
I'm using fop-0.20.5
Note that footnote space calculation is still buggy in 0.20.5,
although it should reserve more space than necessary, rather
then too little space.
I've attached a screenshot of the wrong pdf part (unfortunately
the whole text is confidential). Maybe you get an impression then.
It may be worth to get rid off the non-integer font size too,
although all related bug are claimed to be fixed in 0.20.5.
Which one do you mean? "75%" ?!
Cheers
/Eike
J.Pietschmann

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

Re: FOPException: The id "N1056F" already exists in this document

2005-04-05 Thread Tommy Reynolds
Uttered "Riz Virk" <[EMAIL PROTECTED]>, spake thus:

> The only way were able to resolve it was to hack the fop source code to fix 
> it ...

I'd like a copy of the patch, or the patched version.  Got URL?


pgpVNMngnToIw.pgp
Description: PGP signature


RE: FOPException: The id "N1056F" already exists in this document

2005-04-05 Thread Glen Mazza
I don't know about the 0.20.5 code base, but the
upcoming 1.0 code base raises the duplicate-id error
message only while parsing the input stream (before
any breaking up the formatting object into blocks
occurs) so this error should not occur in future
releases.  In 1.0, ID's can (and are) subsequently
attached to multiple layout blocks--that is not an XSL
error.  ID's just cannot be duplicated on multiple
FO's in the input.

Glen


--- Riz Virk <[EMAIL PROTECTED]> wrote:
> I've actually noticed that problem (id xxx already
> exists) even when we have been able to manually
> verify that an id hasn't been used twice in the
> document. 
>  
> fop seems to have a bug that if a block spans
> pages,and that block has an id associated with it,
> then fop  tries to create two destinations with the
> same id, which triggers the error above.   
>  
> The only way were able to resolve it was to hack the
> fop source code to fix it ...
>  
> Thanks
> Riz
>  


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



Re: favorite tools for writing XSLT?

2005-04-05 Thread J.Pietschmann
Siegfried Heintze wrote:
I'm finding the writing of xslt files rather tedious. Are there some
favorite tools out there to help with this activity? Treebeard is nice for
producing HTML, but it does not work for FOP.
Are there other open source tools?
Emacs + nxml-mode. Comes with an XSLT schema.
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: 0.20.5 Inquiry

2005-04-05 Thread J.Pietschmann
[EMAIL PROTECTED] wrote:
Does anybody know of someone/somewhere to find features, not present in 
official FOP 0.20.5 release, implemented and shared by external 
developers under the same licensing terms as FOP ?
Apache Bugzilla has various patches which weren't applied to 0.20.5.
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: FOPException: The id "N1056F" already exists in this document

2005-04-05 Thread Riz Virk
I've actually noticed that problem (id xxx already exists) even when we have 
been able to manually verify that an id hasn't been used twice in the document. 
 
fop seems to have a bug that if a block spans pages,and that block has an id 
associated with it, then fop  tries to create two destinations with the same 
id, which triggers the error above.   
 
The only way were able to resolve it was to hack the fop source code to fix it 
...
 
Thanks
Riz
 
 

Rizwan Virk
CTO
CambridgeDocs
[EMAIL PROTECTED]
personal: [EMAIL PROTECTED]
 



From: J.Pietschmann [mailto:[EMAIL PROTECTED]
Sent: Tue 4/5/2005 1:56 PM
To: fop-users@xmlgraphics.apache.org
Subject: Re: FOPException: The id "N1056F" already exists in this document



[EMAIL PROTECTED] wrote:
> Is the ID assigned in the source file or generated (perhaps by
> generate-id) at run time? If the former, then I would guess that your
> problem arises from one or more index terms not having unique IDs in the
> source file.

DocBook uses generate-id().

The problem is most likely due to relayouting an object, which in turn
is caused either by a keep property or column rebalancing because of a
span="all" block.

Unfortunately, the DocBook XSLT creates an ID for almost every FO,
whether it is referenced or not. Furthermore, there seems to be no way
to get rid of the quite liberally used keeps.

Common suggestions:
- Don't use multicolumn layouts with DocBook.
- Try to filter out unreferenced IDs, for example with another XSL
   transformation.
- Insert forced page breaks at various points and see whether the
   problem goes away. Examining the DocBook XSLT output for the
   ID in question may provide hints where forced page breaks could
   be useful.
- Kill the ID manually, if it's a one-off document generation.
- If you are stuck, for example because the ID is referenced, use
   another XSLFO processor.

Geez, this should go into the FAQ sometimes.

J.Pietschmann

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




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



Re: FOPException: The id "N1056F" already exists in this document

2005-04-05 Thread J.Pietschmann
[EMAIL PROTECTED] wrote:
Is the ID assigned in the source file or generated (perhaps by 
generate-id) at run time? If the former, then I would guess that your 
problem arises from one or more index terms not having unique IDs in the 
source file.
DocBook uses generate-id().
The problem is most likely due to relayouting an object, which in turn
is caused either by a keep property or column rebalancing because of a
span="all" block.
Unfortunately, the DocBook XSLT creates an ID for almost every FO,
whether it is referenced or not. Furthermore, there seems to be no way
to get rid of the quite liberally used keeps.
Common suggestions:
- Don't use multicolumn layouts with DocBook.
- Try to filter out unreferenced IDs, for example with another XSL
  transformation.
- Insert forced page breaks at various points and see whether the
  problem goes away. Examining the DocBook XSLT output for the
  ID in question may provide hints where forced page breaks could
  be useful.
- Kill the ID manually, if it's a one-off document generation.
- If you are stuck, for example because the ID is referenced, use
  another XSLFO processor.
Geez, this should go into the FAQ sometimes.
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Trouble with FOP

2005-04-05 Thread J.Pietschmann
Otavio wrote:
but how I set a variable in XSLT and pass a value for it ?
XSL transformation and XSLFO layout are two separate stages of
a process. Page numbers are calculated at the XSLFO stage. There
is no standardized way to pass a page number value back into the
XSLT stage.
If you do something like this:
 
   
 
the value of the variable is a RTF with an element node, the node
fo:page-number, rather than a numeric value. If you do
 
you'll insert the string value of the variabel into the XSLT result,
which is an empty string.
If you post an adequate description of the original problem you have
to solve, someone might provide a solution for it.
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: table-header question

2005-04-05 Thread J.Pietschmann
Julia Reynolds wrote:
I upgraded my fop version to 0.20.5, still no 
love from the fo:table.  Is the code below correct?
Probably not. Having two xsl:apply-templates, the second one for
th/cell, is highly suspect. Furthermore you seem to expect some
th as child of the context node here:
>  
 ^^^
But reporttable/th as child of the same context node here
> 
   ^^
You should generate the FO document as a file and examine it whether
you get rows with cells in your fo:table-header.
Furthermore, you probably apply templates twice for the th element,
once within the fo:table-header, and a second time in the fo:table-body
using the catch-all xsl:apply-templates
>  
>  
>  

Should I be seeing headers on every page?
What do you mean with this?
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: FOPException: The id "N1056F" already exists in this document

2005-04-05 Thread Tommy Reynolds
Uttered [EMAIL PROTECTED], spake thus:

> Is the ID assigned in the source file or generated (perhaps by 
> generate-id) at run time? If the former, then I would guess that your 
> problem arises from one or more index terms not having unique IDs in the 
> source file.

Apparently DocBook attaches ID's to tons of variables use to hold
temporary layouts and then tried to reuse the ID if the temporary
variable is discarded, er, I mean the scope terminates.  FOP doesn't
like this, although some of the proprietary processors are OK with it.

This problem has led me to abandon DocBook in favor of custom
stylesheets.

I'd love for this to get fixed, though.

Cheers


pgpoPUpCKEVne.pgp
Description: PGP signature


Re: FOPException: The id "N1056F" already exists in this document

2005-04-05 Thread JBryant
Hi, Peter,

Is the ID assigned in the source file or generated (perhaps by 
generate-id) at run time? If the former, then I would guess that your 
problem arises from one or more index terms not having unique IDs in the 
source file.

Jay Bryant
Bryant Communication Services
(presently consulting at Synergistic Solution Technologies)






Peter Bittner <[EMAIL PROTECTED]> 
Sent by: news <[EMAIL PROTECTED]>
04/05/2005 10:52 AM
Please respond to
fop-users@xmlgraphics.apache.org


To
fop-users@xmlgraphics.apache.org
cc

Subject
FOPException: The id "N1056F" already exists in this document






Hi there!

I am using DocBook/XML for a while to create HTML and PDF documents from 
one
DocBook source file. A colleague of mine now has added a whole bunch of
index terms (such as "MyTerm" to
enrich the document's index) in the whole document.

What now results when I try to compile the document using FOP (that is, 
FOP
0.20.5) to create a PDF document is a strange error I have never come
across before:

[ERROR] org.apache.fop.apps.FOPException: The id "N1056F" already exists 
in
this document

The *really* strange thing about this is that Saxon runs without any
problems and creates an HTML version of my DocBook document. So there is
obviously no real error, mistake or whatsoever in the source itself.

I have run FOP in debug mode (using the -d parameter) which yielded the
output attached to this message. It contains the Exceptions generated -
obviously - by the Xalan classes.

Does anybody know a solution to this problem?

Cheers, Peter
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
[DEBUG] Input mode: 
[DEBUG] xslt transformation
[DEBUG] xml input file: fs_v1.xml
[DEBUG] xslt stylesheet: C:\Programme\DocBook\docbook-xsl\TWDocBook-fo.xsl
[DEBUG] Output mode: 
[DEBUG] pdf
[DEBUG] output file: fs_v1.pdf
[DEBUG] OPTIONS
[DEBUG] no user configuration file is used [default]
[DEBUG] debug mode on
[DEBUG] dump configuration
[DEBUG] quiet mode on
[INFO] Using org.apache.xerces.parsers.SAXParser as SAX2 Parser
[INFO] base directory: file:/c:/Dokumente und Einstellungen/bittner/Eigene 
Dateien/Projekte/JSW/doc/fs/
[INFO] FOP 0.20.5
[INFO] Using org.apache.xerces.parsers.SAXParser as SAX2 Parser
file:///C:/Programme/DocBook/docbook-xsl/fo/docbook.xsl; Zeile #241; Spalte 
#16; Making portrait pages on A4 paper (210mmx297mm)
[INFO] building formatting object tree
[INFO] setting up fonts
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
[INFO] JAI support was not installed (read: not present at build time). Trying 
to use Jimi instead
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage objec

Re: FOPException: The id "N1056F" already exists in this document

2005-04-05 Thread Glen Mazza
--- Peter Bittner <[EMAIL PROTECTED]> wrote:
>
> 
> [ERROR] org.apache.fop.apps.FOPException: The id
> "N1056F" already exists in
> this document
> 
> The *really* strange thing about this is that Saxon
> runs without any
> problems and creates an HTML version of my DocBook
> document. So there is
> obviously no real error, mistake or whatsoever in
> the source itself.
> 

I'm not sure.  The Docbook XSL stylesheets (as opposed
to the Docbook *HTML* stylesheets) apparently use
those new index terms in creating "id" properties.  In
the XSL world, "id"'s must be unique on each
formatting object.  FOP is complaining that it found
the same ID attached to multiple formatting objects,
which is not allowed by the spec, and would raise an
error with any XSL-compliant processor.

The problem is either with your assignment of index
terms (if the Docbook stylesheets match an index term
with an id 1-to-1, then the index terms *must* be
unique) or how Docbook translates those index terms
into XSL property ID's in its stylesheets (if
duplicating index terms makes practical sense, then
the Docbook stylesheets must be able to process them
in a way that it does not generate duplicate id
values).  

The solution is either to use unique index terms
throughout, or if that does not sound reasonable (I'm
unsure about Docbook index term semantics), go to the
docbook-apps ML and ask them how to handle the
indexing correctly so that it will work with XSL.

Glen



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



FOPException: The id "N1056F" already exists in this document

2005-04-05 Thread Peter Bittner
Hi there!

I am using DocBook/XML for a while to create HTML and PDF documents from one
DocBook source file. A colleague of mine now has added a whole bunch of
index terms (such as "MyTerm" to
enrich the document's index) in the whole document.

What now results when I try to compile the document using FOP (that is, FOP
0.20.5) to create a PDF document is a strange error I have never come
across before:

[ERROR] org.apache.fop.apps.FOPException: The id "N1056F" already exists in
this document

The *really* strange thing about this is that Saxon runs without any
problems and creates an HTML version of my DocBook document. So there is
obviously no real error, mistake or whatsoever in the source itself.

I have run FOP in debug mode (using the -d parameter) which yielded the
output attached to this message. It contains the Exceptions generated -
obviously - by the Xalan classes.

Does anybody know a solution to this problem?

Cheers, Peter
[DEBUG] Input mode: 
[DEBUG] xslt transformation
[DEBUG] xml input file: fs_v1.xml
[DEBUG] xslt stylesheet: C:\Programme\DocBook\docbook-xsl\TWDocBook-fo.xsl
[DEBUG] Output mode: 
[DEBUG] pdf
[DEBUG] output file: fs_v1.pdf
[DEBUG] OPTIONS
[DEBUG] no user configuration file is used [default]
[DEBUG] debug mode on
[DEBUG] dump configuration
[DEBUG] quiet mode on
[INFO] Using org.apache.xerces.parsers.SAXParser as SAX2 Parser
[INFO] base directory: file:/c:/Dokumente und Einstellungen/bittner/Eigene 
Dateien/Projekte/JSW/doc/fs/
[INFO] FOP 0.20.5
[INFO] Using org.apache.xerces.parsers.SAXParser as SAX2 Parser
file:///C:/Programme/DocBook/docbook-xsl/fo/docbook.xsl; Zeile #241; Spalte 
#16; Making portrait pages on A4 paper (210mmx297mm)
[INFO] building formatting object tree
[INFO] setting up fonts
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
[INFO] JAI support was not installed (read: not present at build time). Trying 
to use Jimi instead
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal" is not implemented yet.
[ERROR] property - "background-position-vertical" is not implemented yet.
Error creating background image: Error creating FopImage object 
(http://docbook.sourceforge.net/release/images/draft.png) : Jimi image library 
not available
[ERROR] property - "background-position-horizontal"

Re: favorite tools for writing XSLT?

2005-04-05 Thread Tommy Reynolds
Uttered "Siegfried Heintze" <[EMAIL PROTECTED]>, spake thus:

> Are there other open source tools?

Try jedit.org -- as-you-type validation and tag completion.  Cool!


pgpA8Gv9JKBb5.pgp
Description: PGP signature


RE: table-header question

2005-04-05 Thread Louis . Masters

A simple example of a table with some keeps (overused a bit, but this is an
older XSL and they were put in for workarounds to some bugs):


  

  
  

  

  

  

  

  

  
  

  

  

  

  

  

  


HTH.
-Lou




|-+->
| |   "Talken, Patrick (AGRE)"  |
| |   <[EMAIL PROTECTED]|
| |   ospace.com>   |
| | |
| |   04/05/2005 10:36  |
| |   Please respond to |
| |   fop-users |
| | |
|-+->
  
>---|
  | 
  |
  |To:
  |
  |cc:  
  |
  |Subject: RE: table-header question   
  |
  
>---|




Hi,

I got the table-headers to work (print on each page the table is split
on, at top of the table) in something similar to the example below:



   
   
   

   
   



   
   


   
 
 
   


I think you are missing the table-row and table-cell tags, and I think
you need them inorder for the table-header to work properly.


Good Luck
Patrick

-Original Message-
From: Julia Reynolds [mailto:[EMAIL PROTECTED]

Sent: Tuesday, April 05, 2005 9:29 AM
To: fop-users@xmlgraphics.apache.org
Subject: RE: table-header question

I upgraded my fop version to 0.20.5, still no love from the fo:table.
Is the code below correct?
Should I be seeing headers on every page?

 
 
 
 
 
 
 
 
 
 


Thank you,
Julia
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 05, 2005 7:39 AM
To: fop-users@xmlgraphics.apache.org
Subject: Re: table-header question


Julia:
It looks like you need the FOP version you are running.  Run the Fop
command
line with the -d option:

java org.apache.fop.apps.Fop -d -xml yourxmlfile.xml -xsl
yourxslfile.xsl
-pdf debug.pdf

This will dump debugging info with one of the lines being something
like:
[INFO]: FOP 0.20.3

-Lou





  Julia Reynolds

  <[EMAIL PROTECTED] To:
fop-users@xmlgraphics.apache.org

  track.com>   cc:

   Subject: table-header
question

  04/04/2005 16:47

  Please respond

  to fop-users










Hi, I just inherited an fo report recently that converts xml to a pdf.

I'm trying to get the header of my table to display on each page.

I've got this in my xsl:


 
 
 
 
 
 
 
 
 
 


I wonder if I might have a version problem.  I know that FO didn't fully
support this "table-omit-header-at-break"
attribute until a later version.  The jars in my installation have been
renamed without release notes.  They appear to be dated 3/3/2002.  Any
way
to get FO to tell me the version from the command line?

Thanks for your time!

Julia


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







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

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


RE: XSLT and FO Formatting question

2005-04-05 Thread Cédric Augustin
> For Instance, the text has '##b' and '##/b' to indicate the beginning 
> and end of bold text in the output.

Can't you replace your '##b' string by a valid xml tag, like  or
. It become very easy to apply a template on it.

Cedric.

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



Re: Trouble with FOP

2005-04-05 Thread John Burgess
You probably need to look at dave pawson's pages 
(http://www.dpawson.co.uk/xsl/), and maybe read a book on xslt.  
Variables can be created and set with 
but you can't alter the value.   Rather like a functional programming 
language.

Otavio wrote:
ok,
but how I set a variable in XSLT and pass a value for it ?
thanks
OBG
- Original Message - From: "John Burgess" 
<[EMAIL PROTECTED]>
To: 
Sent: Tuesday, April 05, 2005 11:27 AM
Subject: Re: Trouble with FOP


For the page count, put a marker on the last page and get the page 
number for the marker.
The following is from the FOP FAQ (distributed with FOP)

   Total Document Pages
It is frequently desirable to know the total number of pages in a 
document and to use that number within the document. For example, you 
might wish to show the page number on the first page as being "page 1 
of 12". To accomplish this, place an empty block with an id at the 
end of the flow:


   ...
 

Get the number of the last page as follows:

This does not work in certain situations: multiple page sequences, an 
initial page number other than 1, or forcing a certain page count, 
thereby producing blank pages at the end.

Warning
There is no reliable way to get the real total page count with FO 
mechanisms. You can only get /page numbers/.

Rymasz Jacky wrote:
i/use the tag  see: 
http://www.w3.org/TR/xsl/slice6.html#fo_external-graphic and 
http://xml.apache.org/fop/fo.html#external-resources
 ii/ here is FOP answer to your question: 
http://xml.apache.org/fop/fo.html#fo-total-pages

Jack
 

*De :* Otavio [mailto:[EMAIL PROTECTED]
*Envoyé :* mardi 5 avril 2005 15:22
*À :* fop-users@xmlgraphics.apache.org
*Objet :* Trouble with FOP
Hi,
 I´m new with FOP... I have some question, that not found it´s
answers on internet:
i) How I set an image on my report ??? that is, not a static image, 
I want pass the a image to report. How I do that ?

ii) How I set the page count to my report ??? I´m try many things, 
but not have sucess in none.

I´m doing tests both FOP and Jasper, but my preference, is FOP ... 
but I´m have this trouble described above.

Thanks !
 OBG


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

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

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


RE: table-header question

2005-04-05 Thread Julia Reynolds
 In my extreme noobie-ness, I omitted some information about my xsl.  As I
am learning more about this report, 
I find that the screen is set up like this:













So I needed to move my fo:table code from my earlier posting from the
region-body section where it had been living up into the report-header
section. Now my column headers are showing up on each page, although I need
to tinker with the widths and that sort of thing.

Thanks to all for your patience and help!

Can anyone suggest a good FOP book?

Julia 

-Original Message-
From: Chris Bowditch [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 9:44 AM
To: fop-users@xmlgraphics.apache.org
Subject: Re: table-header question

Julia Reynolds wrote:

> I upgraded my fop version to 0.20.5, still no love from the fo:table.  
> Is the code below correct?
> Should I be seeing headers on every page?
> 
>  
>   column-width="proportional-column-width(1)"/>
>  
>  
>  
>   select="reporttable/th/cell"/>

Perhaps the apply-templates above is not matching any nodes in the input
XML?

I recommend you generate the intermediate XSL-FO, which will give you some
insight here. See the website on how to do this:

http://xml.apache.org/fop/running.html#check-input



Chris


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

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



Fop postscript problems

2005-04-05 Thread pepone pepone
Hello I creating a xsl-fo template to producte postscript files
to print. when i use the Driver.RENDER_PS the size of the page
is not the size that i put in the xsl-fo. if i render the same xsl-fo
whit Driver.RENDER_PDF the result is fine.

is this a know bug on  Driver.RENDER_PS or is an error on my page template?

Thanks in advantage

Xsl Template==


http://www.w3.org/1999/XSL/Transform";
xmlns:fo="http://www.w3.org/1999/XSL/Format";
exclude-result-prefixes="fo">
  
  
  
  
  
http://www.w3.org/1999/XSL/Format";>
  



  
  
  
   
  














  

  
  
  
  
  
  

Productos:

  








  
  
  

  

  

  
  

  
   x 
  
   = 
  

  

  
 
  












On-ReZ






Cif: 






Num: 






Fecha: 






Hora: 





  

  


Total:  


Entregado:  


Cambio: 


  
  
  

Le ha antendido: 


Gracias por su vista





==XmlData==



  



  


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



Re: table-header question

2005-04-05 Thread Chris Bowditch
Julia Reynolds wrote:
I upgraded my fop version to 0.20.5, still no 
love from the fo:table.  Is the code below correct?
Should I be seeing headers on every page?

 
 
column-width="proportional-column-width(1)"/>
 
 
 
 
Perhaps the apply-templates above is not matching any nodes in the input 
XML?
I recommend you generate the intermediate XSL-FO, which will give you some 
insight here. See the website on how to do this:

http://xml.apache.org/fop/running.html#check-input

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


Re: Trouble with FOP

2005-04-05 Thread Otavio
ok,
but how I set a variable in XSLT and pass a value for it ?
thanks
OBG
- Original Message - 
From: "John Burgess" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, April 05, 2005 11:27 AM
Subject: Re: Trouble with FOP


For the page count, put a marker on the last page and get the page number 
for the marker.
The following is from the FOP FAQ (distributed with FOP)

   Total Document Pages
It is frequently desirable to know the total number of pages in a document 
and to use that number within the document. For example, you might wish to 
show the page number on the first page as being "page 1 of 12". To 
accomplish this, place an empty block with an id at the end of the flow:


   ...
 

Get the number of the last page as follows:

This does not work in certain situations: multiple page sequences, an 
initial page number other than 1, or forcing a certain page count, thereby 
producing blank pages at the end.

Warning
There is no reliable way to get the real total page count with FO 
mechanisms. You can only get /page numbers/.

Rymasz Jacky wrote:
i/use the tag  see: 
http://www.w3.org/TR/xsl/slice6.html#fo_external-graphic and 
http://xml.apache.org/fop/fo.html#external-resources
 ii/ here is FOP answer to your question: 
http://xml.apache.org/fop/fo.html#fo-total-pages

Jack

*De :* Otavio [mailto:[EMAIL PROTECTED]
*Envoyé :* mardi 5 avril 2005 15:22
*À :* fop-users@xmlgraphics.apache.org
*Objet :* Trouble with FOP
Hi,
 I´m new with FOP... I have some question, that not found it´s
answers on internet:
i) How I set an image on my report ??? that is, not a static image, I 
want pass the a image to report. How I do that ?

ii) How I set the page count to my report ??? I´m try many things, but 
not have sucess in none.

I´m doing tests both FOP and Jasper, but my preference, is FOP ... but 
I´m have this trouble described above.

Thanks !
 OBG

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

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


RE: table-header question

2005-04-05 Thread Talken, Patrick (AGRE)

Hi,

I got the table-headers to work (print on each page the table is split
on, at top of the table) in something similar to the example below:


   
   
   

   
   



   
   
  
   
 
 
   


I think you are missing the table-row and table-cell tags, and I think
you need them inorder for the table-header to work properly.


Good Luck
Patrick

-Original Message-
From: Julia Reynolds [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 05, 2005 9:29 AM
To: fop-users@xmlgraphics.apache.org
Subject: RE: table-header question

I upgraded my fop version to 0.20.5, still no love from the fo:table.
Is the code below correct?
Should I be seeing headers on every page?

 
 
 
 
 
 
 
 
 
 


Thank you,
Julia
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 05, 2005 7:39 AM
To: fop-users@xmlgraphics.apache.org
Subject: Re: table-header question


Julia:
It looks like you need the FOP version you are running.  Run the Fop
command
line with the -d option:

java org.apache.fop.apps.Fop -d -xml yourxmlfile.xml -xsl
yourxslfile.xsl
-pdf debug.pdf

This will dump debugging info with one of the lines being something
like:
[INFO]: FOP 0.20.3

-Lou




  Julia Reynolds

  <[EMAIL PROTECTED] To:
fop-users@xmlgraphics.apache.org

  track.com>   cc:

   Subject: table-header
question

  04/04/2005 16:47

  Please respond

  to fop-users








Hi, I just inherited an fo report recently that converts xml to a pdf.

I'm trying to get the header of my table to display on each page.

I've got this in my xsl:


 
 
 
 
 
 
 
 
 
 


I wonder if I might have a version problem.  I know that FO didn't fully
support this "table-omit-header-at-break"
attribute until a later version.  The jars in my installation have been
renamed without release notes.  They appear to be dated 3/3/2002.  Any
way
to get FO to tell me the version from the command line?

Thanks for your time!

Julia


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







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

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


**
The information contained in, or attached to, this e-mail, may contain 
confidential information and is intended solely for the use of the individual 
or entity to whom they are addressed and may be subject to legal privilege.  If 
you have received this e-mail in error you should notify the sender immediately 
by reply e-mail, delete the message from your system and notify your system 
manager.  Please do not copy it for any purpose, or disclose its contents to 
any other person.  The views or opinions presented in this e-mail are solely 
those of the author and do not necessarily represent those of the company.  The 
recipient should check this e-mail and any attachments for the presence of 
viruses.  The company accepts no liability for any damage caused, directly or 
indirectly, by any virus transmitted in this email.
**

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



Re: favorite tools for writing XSLT?

2005-04-05 Thread Glen Mazza
I think looking for visual editors defeats the purpose
of working with XSL/XSLT.  You may wish to take a look
at the article below, it should give you much better
insight of the code reuse that XSL/XSLT provides you
(attribute sets and refactoring common templates), as
well as give you pointers on making coding less
tedious.

http://www.sys-con.com/xml/article.cfm?id=616

Glen

--- Siegfried Heintze <[EMAIL PROTECTED]> wrote:
> I'm finding the writing of xslt files rather
> tedious. Are there some
> favorite tools out there to help with this activity?
> Treebeard is nice for
> producing HTML, but it does not work for FOP.
> 
> Are there other open source tools?
> 
> What about proprietary tools?
> 
> Does xml spy do the job? I think it is rather
> expensive. Are there others?
> 
> Siegfried
> 
> 

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



Re: favorite tools for writing XSLT?

2005-04-05 Thread Otavio
Hi,
yes, writ XSLT is boring,,but do what ?
I´m downloaded XMLSpy home version ... It´s cool, but better than notepad / 
vi !


- Original Message - 
From: "Siegfried Heintze" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, April 05, 2005 11:25 AM
Subject: favorite tools for writing XSLT?


I'm finding the writing of xslt files rather tedious. Are there some
favorite tools out there to help with this activity? Treebeard is nice for
producing HTML, but it does not work for FOP.
Are there other open source tools?
What about proprietary tools?
Does xml spy do the job? I think it is rather expensive. Are there others?
Siegfried
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

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


favorite tools for writing XSLT?

2005-04-05 Thread Siegfried Heintze
I'm finding the writing of xslt files rather tedious. Are there some
favorite tools out there to help with this activity? Treebeard is nice for
producing HTML, but it does not work for FOP.

Are there other open source tools?

What about proprietary tools?

Does xml spy do the job? I think it is rather expensive. Are there others?

Siegfried


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



Re: Trouble with FOP

2005-04-05 Thread John Burgess
For the page count, put a marker on the last page and get the page 
number for the marker.
The following is from the FOP FAQ (distributed with FOP)

   Total Document Pages
It is frequently desirable to know the total number of pages in a 
document and to use that number within the document. For example, you 
might wish to show the page number on the first page as being "page 1 of 
12". To accomplish this, place an empty block with an id at the end of 
the flow:


   ...
 

Get the number of the last page as follows:

This does not work in certain situations: multiple page sequences, an 
initial page number other than 1, or forcing a certain page count, 
thereby producing blank pages at the end.

Warning
There is no reliable way to get the real total page count with FO 
mechanisms. You can only get /page numbers/.

Rymasz Jacky wrote:
i/use the tag  see: 
http://www.w3.org/TR/xsl/slice6.html#fo_external-graphic and 
http://xml.apache.org/fop/fo.html#external-resources
 
ii/ here is FOP answer to your question: 
http://xml.apache.org/fop/fo.html#fo-total-pages

Jack

*De :* Otavio [mailto:[EMAIL PROTECTED]
*Envoyé :* mardi 5 avril 2005 15:22
*À :* fop-users@xmlgraphics.apache.org
*Objet :* Trouble with FOP
Hi,
 I´m new with FOP... I have some question, that not found it´s
answers on internet:
i) How I set an image on my report ??? that is, not a static image, I 
want pass the a image to report. How I do that ?

ii) How I set the page count to my report ??? I´m try many things, but 
not have sucess in none.

I´m doing tests both FOP and Jasper, but my preference, is FOP ... but 
I´m have this trouble described above.

Thanks !
 OBG

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


RE: Trouble with FOP

2005-04-05 Thread Rymasz Jacky



i/use 
the tag  see: http://www.w3.org/TR/xsl/slice6.html#fo_external-graphic and 
http://xml.apache.org/fop/fo.html#external-resources
 
ii/ 
here is FOP answer to your question: http://xml.apache.org/fop/fo.html#fo-total-pages
Jack


De : Otavio [mailto:[EMAIL PROTECTED] 
Envoyé : mardi 5 avril 2005 15:22À : 
fop-users@xmlgraphics.apache.orgObjet : Trouble with 
FOP

Hi, I´m new with FOP... I have some question, that not found it´s 
answers on internet:i) How I set an image on my report ??? that is, 
not a static image, I want pass the a image to report. How I do that 
?ii) How I set the page count to my report ??? I´m try many things, but 
not have sucess in none.I´m doing tests both FOP and Jasper, but my 
preference, is FOP ... but I´m have this trouble described above.Thanks 
! OBG


RE: table-header question

2005-04-05 Thread Julia Reynolds
I upgraded my fop version to 0.20.5, still no 
love from the fo:table.  Is the code below correct?
Should I be seeing headers on every page?

 
 
 
 
 
 
 
 
 
 


Thank you,
Julia
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 7:39 AM
To: fop-users@xmlgraphics.apache.org
Subject: Re: table-header question


Julia:
It looks like you need the FOP version you are running.  Run the Fop command
line with the -d option:

java org.apache.fop.apps.Fop -d -xml yourxmlfile.xml -xsl yourxslfile.xsl
-pdf debug.pdf

This will dump debugging info with one of the lines being something like:
[INFO]: FOP 0.20.3

-Lou


 

  Julia Reynolds

  <[EMAIL PROTECTED] To:
fop-users@xmlgraphics.apache.org

  track.com>   cc:

   Subject: table-header
question

  04/04/2005 16:47

  Please respond

  to fop-users

 

 




Hi, I just inherited an fo report recently that converts xml to a pdf.

I'm trying to get the header of my table to display on each page.

I've got this in my xsl:


 
 
 
 
 
 
 
 
 
 


I wonder if I might have a version problem.  I know that FO didn't fully
support this "table-omit-header-at-break"
attribute until a later version.  The jars in my installation have been
renamed without release notes.  They appear to be dated 3/3/2002.  Any way
to get FO to tell me the version from the command line?

Thanks for your time!

Julia


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







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

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



Trouble with FOP

2005-04-05 Thread Otavio



Hi, I´m new with FOP... I have some question, that not found it´s 
answers on internet:i) How I set an image on my report ??? that is, 
not a static image, I want pass the a image to report. How I do that 
?ii) How I set the page count to my report ??? I´m try many things, but 
not have sucess in none.I´m doing tests both FOP and Jasper, but my 
preference, is FOP ... but I´m have this trouble described above.Thanks 
! OBG


Re: Another Footnote Problem

2005-04-05 Thread J.Pietschmann
Eike Stepper wrote:
The normal (body) text always flows "over" the footnote
region. This happens with each footnote on each page.
This is unusual. Which FOP version are you using?
Note that footnote space calculation is still buggy in 0.20.5,
although it should reserve more space than necessary, rather
then too little space.
It may be worth to get rid off the non-integer font size too,
although all related bug are claimed to be fixed in 0.20.5.
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: table-header question

2005-04-05 Thread Louis . Masters

Julia:
It looks like you need the FOP version you are running.  Run the Fop
command line with the -d option:

java org.apache.fop.apps.Fop -d -xml yourxmlfile.xml -xsl yourxslfile.xsl
-pdf debug.pdf

This will dump debugging info with one of the lines being something like:
[INFO]: FOP 0.20.3

-Lou



   
  Julia Reynolds
   
  <[EMAIL PROTECTED] To:  
fop-users@xmlgraphics.apache.org
   
  track.com>   cc:  
   
   Subject: table-header question   
   
  04/04/2005 16:47  
   
  Please respond
   
  to fop-users  
   

   

   



Hi, I just inherited an fo report recently that converts xml to a pdf.

I'm trying to get the header of my table to display on each page.

I've got this in my xsl:


 
 
 
 
 
 
 
 
 
 


I wonder if I might have a version problem.  I know that FO
didn't fully support this "table-omit-header-at-break"
attribute until a later version.  The jars in my installation have been
renamed without
release notes.  They appear to be dated 3/3/2002.  Any way to get FO to
tell
me the version from the command line?

Thanks for your time!

Julia


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







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



Another Footnote Problem

2005-04-05 Thread Eike Stepper
Hi,
although I've read several threads concerning footnotes,
my issue was not covered:
The normal (body) text always flows "over" the footnote
region. This happens with each footnote on each page.
The fop source file is generated with the DocBook 4.3
and contains some footnotes:


1


1XYZ


Somewhere above that position I found another occurrence of "footnote":





Please help!
/Eike
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: 0.20.5 Inquiry

2005-04-05 Thread Jeremias Maerki
On 05.04.2005 11:11:28 Chris Bowditch wrote:
> [EMAIL PROTECTED] wrote:
> 
> > 
> > Pardon my french, but I really don't care about the compliance level of 
> > FOP (which BTW states that only "solid" border works - therefore my 
> > request).
> > 
> > I asked if somebody with the same need as I (the need for the "double" 
> > border property) had implemented it on top of FOP 0.20.5 and wanted to 
> > share it.
> 
> I dont believe any one has written a patch for FOP 0.20.5 that implements the 
> double border you are after.

**evil grin** ...but I've already implemented it in the redesign.


Jeremias Maerki


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



Re: indent table

2005-04-05 Thread Sven Waibel
Thanks

You're right, indented blocks are still buggy, unfortunately.

So there's no better solution than doing it with empty cells.

Sven


J.Pietschmann wrote:

> Sven Waibel wrote:
> 
>> Hi,
>>
>> i try to indent tables, but i don't know how.
>>
>> Up to now i used a "invisible" table-cell but it don't work so well.
>>
>> Any suggestions?
> 
> 
> Adding a row of empty cells is the recommended way to indent
> a table with FOP 0.20.5. Enclosing the table in an indented
> block should work according to the spec, but I think this is
> still buggy in FOP.
> 
> J.Pietschmann
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

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



Re: 0.20.5 Inquiry

2005-04-05 Thread Chris Bowditch
[EMAIL PROTECTED] wrote:
Pardon my french, but I really don't care about the compliance level of 
FOP (which BTW states that only "solid" border works - therefore my 
request).

I asked if somebody with the same need as I (the need for the "double" 
border property) had implemented it on top of FOP 0.20.5 and wanted to 
share it.
I dont believe any one has written a patch for FOP 0.20.5 that implements the 
double border you are after.

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


RE: How can I rotate text for a 90o sidebar?

2005-04-05 Thread Rymasz Jacky
This seems much cleaner than my solution indeed. ;)
Nice work!

Jack 

-Message d'origine-
De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 31 mars 2005 17:52
À : fop-users@xmlgraphics.apache.org
Objet : RE: How can I rotate text for a 90o sidebar?

I hadn't really looked at this because the huge indentations put me off, but
now I've gotten around to it.

You can do this without disabling escape characters and by using literal
result elements. I'm inserting the whole stylesheet because the named
template needs to be called with certain parameters rather than just the
string you want rendered in stacked blocks (though you could write a
template that would take just the string). Here's the whole stylesheet
(tested on Saxon 8):


http://www.w3.org/1999/XSL/Transform";
  xmlns:fo="http://www.w3.org/1999/XSL/Format";
  exclude-result-prefixes="fo">

  

  
  

  
 
  




  


  

  



The only change to the algorithm is to wrap the block around the result
rather than to insert it into a variable. Other than that, I removed all the
variables, as they were getting used only once. Instead, I put the values
that were going into the variables into the parameters. I also moved the
selects into the parameters and reduced the choose to an if, since the
otherwise was empty anyway.

FWIW

Jay Bryant
Bryant Communication Services
(presently consulting at Synergistic Solution Technologies)




[EMAIL PROTECTED] 
03/30/2005 07:25 AM
Please respond to
fop-users@xmlgraphics.apache.org


To
fop-users@xmlgraphics.apache.org
cc

Subject
RE: How can I rotate text for a 90o sidebar?







Nice.  I'll check this out.
-Lou



  
  Rymasz Jacky   
  <[EMAIL PROTECTED] To: 
fop-users@xmlgraphics.apache.org  
  decaux.fr>   cc: 
   Subject: RE: How can I 
rotate text for a 90o sidebar?  
  03/29/2005 03:39
  Please respond   
  to fop-users   
  
  



Here a bit of code which scatter each letter of a string into a vertical
set
of blocks (ie: vertical string):

 
   
   
   

   
   


   
   
 
 
 
 
 
 












 
   
   
   
   
 


I hope this could help ;)

Jack

-Message d'origine-
De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Envoyé : lundi 28 mars 2005 15:57
À : fop-users@xmlgraphics.apache.org
Objet : RE: How can I rotate text for a 90o sidebar?


The following code prints top to bottom, but the letters are stacked. It's
a starting point.


YOUR
TEXT HERE 

-Lou




  "Andreas L.

  Delmelle"To:


  <[EMAIL PROTECTED] cc:

  ndora.be>Subject: RE: How can I
rotate
text for a 90o sidebar?


  03/27/2005 06:30

  Please respond

  to fop-users








> -Original Message-
> From: Tommy Reynolds [mailto:[EMAIL PROTECTED]
>

Hi,

> I'm trying to insert some text into "xsl-region-start" and I'd like it
> rotated 90-degrees to you'd have to tilt your head sideways to read
> it.  I think the "reference-orientation"
> property is the right approach but it isn't implemented in FOP.
>
> Is there a work-around?

The only workaround I know of would be to use SVG to draw the rotated
text...


HTH!

Greetz,

Andreas


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







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

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







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




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


Re: indent table

2005-04-05 Thread J.Pietschmann
Sven Waibel wrote:
Hi,
i try to indent tables, but i don't know how.
Up to now i used a "invisible" table-cell but it don't work so well.
Any suggestions?
Adding a row of empty cells is the recommended way to indent
a table with FOP 0.20.5. Enclosing the table in an indented
block should work according to the spec, but I think this is
still buggy in FOP.
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


indent table

2005-04-05 Thread Sven Waibel
Hi,

i try to indent tables, but i don't know how.

Up to now i used a "invisible" table-cell but it don't work so well.

Any suggestions?

Thanks
Sven

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



RE: 0.20.5 Inquiry

2005-04-05 Thread mka

Pardon my french, but I really don't
care about the compliance level of FOP (which BTW states that only "solid"
border works - therefore my request).

I asked if somebody with the same need
as I (the need for the "double" border property) had implemented
it on top of FOP 0.20.5 and wanted to share it.

/Mikael, Denmark








"David Rosenstein"
<[EMAIL PROTECTED]> 
04-04-2005 20:42




To
<[EMAIL PROTECTED]>


cc



Subject
RE: 0.20.5 Inquiry








http://xml.apache.org/fop/compliance.html
 
 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Sent: Monday, April 04, 2005 2:38 PM
To: fop-users@xmlgraphics.apache.org
Subject: 0.20.5 Inquiry


Hey everyone 

Does anybody know of someone/somewhere to find features, not present in
official FOP 0.20.5 release, implemented and shared by external developers
under the same licensing terms as FOP ? 

In particular I'm in search of implementation of table-borders besides
single-line borders and also better image handling (alignment).


Any help appreciated ... 

Looking forward to the first release of "next-generation" FOP,
hopefully later this year!! 

/Mikael, Denmark