forms

2001-12-20 Thread eric.deandrea

Has anyone written a formatting object stylesheet to mimic the look  feel
of the IRS form Schedule K-1?

-Eric


Eric Deandrea
Software Engineer  (978) 698-6351  
Inforonics, Inc.   [EMAIL PROTECTED]
30 Porter Rd.
Littleton, MA 01460


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




fop problem

2001-09-27 Thread eric.deandrea

I am running cocoon 1.8 with fop 0.20.1 and when I try and load a page into
the browser I get the following error. Can anyone help me?

Publishing Engine could not be initialized.
java.lang.RuntimeException: Factory error:  unknown exception
creating  org.apache.cocoon.transformer.XalanTransformer :
java.lang.VerifyError: (class:
org/apache/cocoon/transformer/XalanTransformer, method: transform signature:
(Lorg/w3c/dom/Document;Ljava/lang/String;Lorg/w3c/dom/Document;Ljava/lang/St
ring;Lorg/w3c/dom/Document;Ljava/util/Dictionary;)Lorg/w3c/dom/Document;)
Incompatible object 
at java.lang.Throwable.fillInStackTrace(Native Method)
at java.lang.Throwable.fillInStackTrace(Compiled Code)
at java.lang.Throwable.(Compiled Code)
at java.lang.Exception.(Compiled Code)
at java.lang.RuntimeException.(RuntimeException.java:47)
at
org.apache.cocoon.framework.Manager.create(Manager.java:116)
at org.apache.cocoon.Engine.(Engine.java:144)
at org.apache.cocoon.Engine.getInstance(Engine.java:218)
at org.apache.cocoon.Cocoon.init(Cocoon.java:141)
at
com.netscape.server.http.servlet.NSServletEntity.load(NSServletEntity.java:3
77)
at
com.netscape.server.http.servlet.NSServletEntity.update(NSServletEntity.java
:149)
at
com.netscape.server.http.servlet.NSServletRunner.Service(NSServletRunner.jav
a:469)


-Eric


Eric Deandrea
Software Engineer  (978) 698-6351  
Inforonics, Inc.   [EMAIL PROTECTED]
30 Porter Rd.
Littleton, MA 01460


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




please help!!!

2001-08-09 Thread eric.deandrea

I have a table with 4 columns. One of the cells has text in it that is
bigger than the size of the column and the text is over-writing the text in
the following cell. How do I stop this? I have this:

fo:table
fo:table-column column-width=2.625in/
fo:table-column column-width=2.625in/
fo:table-column column-width=2.625in/
fo:table-column column-width=2.625in/
fo:table-body
fo:table-row
fo:table-cell
fo:block
text-align=start
font-size=10pt
line-height=14pt
overflow=hidden
wrap-option=wrap
This is some text in cell 1 that
will over-write the text in cell 2.
/fo:block
/fo:table-cell
fo:table-cell
fo:block
text-align=start
font-size=10pt
line-height=14pt
overflow=hidden
wrap-option=wrap
This is some text in cell 2.
/fo:block
/fo:table-cell
fo:table-cell
fo:block
text-align=start
font-size=10pt
line-height=14pt
overflow=hidden
wrap-option=wrap
This is some text in cell 3.
/fo:block
/fo:table-cell
fo:table-cell
fo:block
text-align=start
font-size=10pt
line-height=14pt
overflow=hidden
wrap-option=wrap
This is some text in cell 4.
/fo:block
/fo:table-cell
/fo:table-row
/fo:table-body
/fo:table


-Eric


Eric Deandrea
Software Engineer  (978) 698-6351  
Inforonics, Inc.   [EMAIL PROTECTED]
30 Porter Rd.
Littleton, MA 01460


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




RE: rows spanning

2001-07-20 Thread eric.deandrea

I don't think that this has been implemented yet. Go to
http://xml.apache.org/fop/implemented.html to see what has been implemented.

-Eric

===
Eric Deandrea (978) 698-6351
Software Engineer[EMAIL PROTECTED]
Inforonics, Inc
30 Porter Rd.
Littleton, MA 01460  


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 20, 2001 10:19 AM
To: [EMAIL PROTECTED]
Subject: rows spanning


Hi,

I'm new to FOP and I can't reach the FAQ. Therefore  I ask the question
here.

I tryed to rowspann a table but it is not working. I downloaded the last
available version (0.19) and even the examples (headfoot.fo) is not working
(but no error message is shown). What about it? It is put in the features
as implemented.!!

Any help? thanks

Emmanuel Ponette
Euro DB
Place de l'Université, 16
B-1348 Louvain-La-Neuve

Phone: +32 10 47 67 44
Fax:  +32 10 47 67 67


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

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




page numbers

2001-07-11 Thread eric.deandrea

I am trying to get page numbering to work but it's not showing up. Here's
what I have:

xsl:stylesheet
version=1.0
xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
xmlns:fo=http://www.w3.org/1999/XSL/Format;

xsl:variable name=pagewidth11/xsl:variable

xsl:template match=document
xsl:processing-instruction
name=cocoon-formattype=text/xslfo/xsl:processing-instruction
fo:root xmlns:fo=http://www.w3.org/1999/XSL/Format;
fo:layout-master-set
fo:simple-page-master
master-name=main
page-height=8.5in
page-width={$pagewidth}in
margin-top=0.5in
margin-bottom=0.5in
margin-left=0.5in
margin-right=0.5in
fo:region-body/
/fo:simple-page-master
/fo:layout-master-set

fo:page-sequence 
master-name=main
initial-page-number=1
fo:static-content flow-name=xsl-after
fo:block text-align=centered
fo:page-number/
/fo:block
/fo:static-content

fo:flow flow-name=xsl-region-body
xsl:apply-templates/
/fo:flow
/fo:page-sequence
/fo:root
/xsl:template

I am using FOP 0.14. Any help would be greatly appreciated!


-Eric

===
Eric Deandrea (978) 698-6351
Software Engineer[EMAIL PROTECTED]
Inforonics, Inc
30 Porter Rd.
Littleton, MA 01460  


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