RE: Fop flop?

2001-07-11 Thread John Wyman

I had to delete the entire build directory and rebuild before these
errors would go away. Something isn't getting extracted properly.
John


John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] 
Wyman Genealogy Site 
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum 
The Wyman Surname Message Board


  

-Original Message-
From: Mark Lillywhite [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, July 11, 2001 5:45 AM
To: [EMAIL PROTECTED]
Subject: Fop flop?


Hi foppers

I just checked out the latest fop from CVS (after a long hiatus). After 
building it I get the attached messages when I try to run it against an 
input file that works under the version of FOP I downloaded from the web

page today. I suspect this is a problem with the CVS FOP but I'm not 
100% sure, can anyone help me? Is the CVS FOP currently working? One 
point is that the "padding-" referred to in the error message does not 
exist in my (extremely simple, but very large) input file.

Also I was wondering about the status of the large document (memory 
related) patches that I think were submitted a few weeks ago (since this

is what I would like to look at/work on). Can anyone tell me if they 
have been committed yet, or if they will be committed, or if I am asking

too many questions? :-)

My thanks of a general kind to the developers,

Cheers
Mark


[mark@spiffy xml-fop]$ java -jar build/fop.jar /tmp/bigfile.fo 
/tmp/bigfile.pdf
FOP 0.19.0-CVS
using SAX parser org.apache.xerces.parsers.SAXParser
building formatting object tree
setting up fonts
formatting FOs into areas
 [1WARNING: no Maker for padding-
WARNING: property padding- ignored
WARNING: no Maker for padding-
WARNING: no Maker for padding-
WARNING: property padding- ignored
WARNING: no Maker for padding-
WARNING: no Maker for padding-
WARNING: property padding- ignored
WARNING: no Maker for padding-
WARNING: no Maker for padding-
WARNING: property padding- ignored
WARNING: no Maker for padding-
WARNING: property padding- ignored
ERROR: null
[mark@spiffy xml-fop]$



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


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




RE: Messages

2001-07-11 Thread John Wyman

I had to delete the entire build directory and rebuild before these
errors would go away.
John


John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] 
Wyman Genealogy Site 
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum 
The Wyman Surname Message Board


  

-Original Message-
From: Don Seib [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, July 11, 2001 1:40 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Messages


FOP writes all of its messages out through a static MessageHandler
object. You can direct those messages by calling the setOutputMethod
method on that object before you start the render operation like so:

MessageHandler.setOutputMethod( MessageHandler.NONE );

There are also methods to get the current output method so you can save
it and restore it later.

Don Seib
Software Developer
Landmark Graphics Canada
[EMAIL PROTECTED]
(403) 218-2243

-Original Message-
From: Jim Urban [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 11, 2001 10:31 AM
To: [EMAIL PROTECTED]
Subject: Messages

Just a simple question.  Each time I run FOP in my servlet I get the
following messages generated to Tomcat's output:

building formatting object tree
setting up fonts
formatting FOs into areas
 [1]
rendering areas to PDF
writing out PDF

Is there anyway I can turn these messages off?  I will be using FOP
quite heavily in my high traffic application and I don't want my Tomcat
log filled with these messages.
BTW:  Now that I got FOP and Xalan working, I love them, keep up the
good work!

Thanks,

Jim Urban
Product Manager
Netsteps Inc.
Suite 505E
1 Pierce Pl.
Itasca, IL  60143
Voice:  (630) 250-3045 x2164
Fax:  (630) 250-3046


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

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


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




RE: Need Working Sample

2001-07-06 Thread John Wyman
Title: Message



This example uses xml from a file, but if you 
define your Stream as a StreamSource you can use this to process the XML - 
XSL to create an in mem FO and feed it to the Driver as shown. hope this 
helps.  
   
try 
{   
InputStream is 
=    
new BufferedInputStream(new 
FileInputStream(args[3]));   
StreamSource xmlSource = new StreamSource(is, 
args[3]);   xmlSource.setSystemId("d:\\xmetal2\\Rules\\");    
is = new BufferedInputStream(new 
FileInputStream(args[2]));    
StreamSource xslSource = new StreamSource(is, 
args[2]);   xslSource.setSystemId("d:\\xmetal2\\Rules\\");    
DOMResult result = new DOMResult();
 
    
TransformerFactory f = 
TransformerFactory.newInstance();    
Templates templates = 
f.newTemplates(xslSource);    
Transformer transformer = templates.newTransformer();   int 
nArgs = 0;   for (int i = 0; i < args.length; i++) 
{ int k = 
args[i].indexOf('='); if (k > 
0)   transformer.setParameter(args[i].substring(0, 
k),  args[i].substring(k + 
1)); else   args[nArgs++] = 
args[i];   }
 
    
transformer.transform(xmlSource, result);
 
    Driver 
driver = new Driver();
 
    
driver.setRenderer(Driver.RENDER_PDF);
 
    
driver.buildFOTree((Document) result.getNode());
 
    
driver.format();
 
    
driver.setOutputStream(new FileOutputStream(args[1]+".pdf"));
 
    
driver.render();  }  catch (Exception ex) { 
System.out.println(ex.toString()); 
}  System.out.println("Finished"); }
 
 
John H. Wyman5160 Darry LaneDublin, OH 
43016(614)-889-0698[EMAIL PROTECTED] Wyman 
Genealogy Site Francis Wyman Assoc 
email List http://groups.yahoo.com/group/FrancisWymanAssocWyman 
Family Genealogy Forum The 
Wyman Surname Message Board   


  
  -Original Message-From: Jim Urban 
  [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 11:09 
  AMTo: [EMAIL PROTECTED]Subject: Need Working 
  Sample
  Hi, I am new to FOP.  I have a servlet which 
  dynamically generates XML.  I need to apply an XSL stylesheet containing 
  FO tags to generate a FO version of the XML and then I need to run this FO 
  version of the XML through FOP (or Driver) so the servlet can return a 
  dynamically created PDF to the browser.  Does anyone have a working 
  example of how to do this?  Only the XSL style sheet containing the FO 
  tags used in the initial transform will be on disk.  Please help, I have 
  to get this working.
  Thanks, 
  Jim Urban Product Manager Netsteps Inc. 
  Suite 505E 1 
  Pierce Pl. Itasca, IL  60143 
  Voice:  (630) 250-3045 x2164 Fax:  (630) 250-3046 



RE: Can't build latest CVS

2001-07-05 Thread John Wyman

Thanks, now if I could only get the text-deco to work across a block
like .12 I'd be all set. I was looking at the code and it appears to
have been removed when font-variant was added instead. At least looking
at the .12 code leads me to believe this.
John


John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
Wyman Genealogy Site <http://www.wyman.org>
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum <http://genforum.genealogy.com/wyman/>
The Wyman Surname Message Board
<http://www.familyhistory.com/messages/messages.asp?category=surname&for
um=Wyman>

  

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On
Behalf Of Karen Lease
Sent: Thursday, July 05, 2001 4:10 PM
To: [EMAIL PROTECTED]
Subject: Re: Can't build latest CVS


Hi John,

Sorry about that. I guess I was a little tired last night when I
committed the spanning row stuff and I forgot to add that class which is
new. It should be OK now.

Regards,
Karen

> John Wyman wrote:
> 
> I get
> [javac] Compiling 638 source files to 
> C:\CVSRoot\xml-fop\build\classes
> [javac]
> C:\CVSRoot\xml-fop\build\src\org\apache\fop\fo\flow\TableBody.java:40:
> Class org.apache.fop.fo.flow.RowSpanMgr not found.
> [javac] RowSpanMgr rowSpanMgr; // manage information about
> spanning rows
> 
> 
> Can't find a definition for Row Span Mgr, where is it declared ?
> 
> John
> 
> John H. Wyman
> 5160 Darry Lane
> Dublin, OH 43016
> (614)-889-0698
> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> Wyman Genealogy Site <http://www.wyman.org>
> Francis Wyman Assoc email List 
> http://groups.yahoo.com/group/FrancisWymanAssoc
> Wyman Family Genealogy Forum <http://genforum.genealogy.com/wyman/>
> The Wyman Surname Message Board 
> <http://www.familyhistory.com/messages/messages.asp?category=surname&f
> orum=Wyman>
> 
> 
> 
>

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


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




Can't build latest CVS

2001-07-04 Thread John Wyman
Title: Message



I 
get
    [javac] Compiling 638 
source files to C:\CVSRoot\xml-fop\build\classes    [javac] 
C:\CVSRoot\xml-fop\build\src\org\apache\fop\fo\flow\TableBody.java:40: Class org.apache.fop.fo.flow.RowSpanMgr not 
found.    [javac] RowSpanMgr 
rowSpanMgr; // manage information about spanning rows
 
Can't find a 
definition for Row Span Mgr, where is it declared ?
 
John
John H. Wyman5160 Darry LaneDublin, OH 
43016(614)-889-0698[EMAIL PROTECTED] Wyman 
Genealogy Site Francis Wyman Assoc 
email List http://groups.yahoo.com/group/FrancisWymanAssocWyman 
Family Genealogy Forum The 
Wyman Surname Message Board   

 


Text Decoration

2001-07-04 Thread John Wyman
Title: Message



It appears as if 
between .12 and the current cvs the last parameter for fontstate which was 
textdecoration in .12 is now only supporting text-variant and the 
text-decoration is lost as it is not passed through. Was this picked up 
somewhere else and I'm missing it ?
 
John
 
John H. Wyman5160 Darry LaneDublin, OH 
43016(614)-889-0698[EMAIL PROTECTED] Wyman 
Genealogy Site Francis Wyman Assoc 
email List http://groups.yahoo.com/group/FrancisWymanAssocWyman 
Family Genealogy Forum The 
Wyman Surname Message Board   

 


RE: Text-Decoration (underline) Problem

2001-07-03 Thread John Wyman

Christian,
I have a copy of .12 and it works just fine, and I verified it in .12
before posting the problem. I have been using it in production since
last year and uncovered this problem when I started converting to the
most current .19-cvs.

I'm perplexed by your comment that it couldn't have worked in .12 !

I'm kind of in a bind as we need some of the features in the current
version and this is the only outstanding item, can I twist your arm, or
if you can provide some pointers, I'll dig in myself. I'm becoming
entirely to intimate with the FOP code, might as well put it to some
use.

Regards
John


John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
Wyman Genealogy Site <http://www.wyman.org>
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum <http://genforum.genealogy.com/wyman/>
The Wyman Surname Message Board
<http://www.familyhistory.com/messages/messages.asp?category=surname&for
um=Wyman>

  

-Original Message-
From: Christian Geisert [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 03, 2001 5:01 PM
To: [EMAIL PROTECTED]
Subject: Re: Text-Decoration (underline) Problem


> John Wyman wrote:
> 
> This used to work in .12 doesn't work in ,18 and up, I think it 
> should, could someone look into it, please.

I'm quite sure it did not work in 0.12 !!
(And as I have done the code for text-decoration I should know ;-)

> Underline isn't done and I can't move the underline inside of the 
> Table Cell because of the way the document is generated. The table is 
> used only for output to add line numbers.

My first thought was that this is not legal XSL but after looking at the
CR I'm not sure anymore: "If the property is specified for a block-level
element, it affects all inline-level descendants of the element. If it
is specified for (or affects) an inline-level element, it affects all
boxes generated by the element."
 
As it is specified for a inline-level element the question is if the
table is a box generated by this elemnet ?

Anyway, it is is not implemented yet and I don't know when/if I get some
time to do it..

>   text-decoration="underline"> 

[...]

> John H. Wyman

Christian

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


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




Text-Decoration (underline) Problem

2001-07-03 Thread John Wyman
Title: Message



This used to work in 
.12 doesn't work in ,18 and up, I think it should, could someone look into it, 
please.
Underline isn't done 
and I can't move the underline inside of the Table Cell because of the way the 
document is generated. The table is used only for output to add line 
numbers.
 
Section 1.  That section 4935.03 of 
the Revised Code be amended to read as 
follows:
 
John H. Wyman5160 Darry LaneDublin, OH 
43016(614)-889-0698[EMAIL PROTECTED] Wyman 
Genealogy Site Francis Wyman Assoc 
email List http://groups.yahoo.com/group/FrancisWymanAssocWyman 
Family Genealogy Forum The 
Wyman Surname Message Board   

 


Text-Decoration broken ?????

2001-06-30 Thread John Wyman
Title: Message



Hi,
I have code that 
again worked in .12 and may have worked in later versions, I can't find any 
documents to prove it, but now appears not to work in .19 and I'm in a real 
bind. Here is the section of the fo that doesn't work, the underline attribute 
doesn't work in this case. I compared the fo generated by my older version and 
the fo generated now and they are the same. It may have something to do with the 
fact that I'm printing inside of a table in-order to provide line numbering, but 
it did work before.
 
Please 
help.
John
 
John H. Wyman5160 Darry LaneDublin, OH 
43016(614)-889-0698[EMAIL PROTECTED] Wyman 
Genealogy Site Francis Wyman Assoc 
email List http://groups.yahoo.com/group/FrancisWymanAssocWyman 
Family Genealogy Forum The 
Wyman Surname Message Board   

 
 test1.fo

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


RE: Modification in line placement

2001-06-22 Thread John Wyman

Karen,
Could you email me the fix, I'm really in a bind, and need to work on my
style sheets and can't as long as this item is outstanding.
Thanks
John


John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
Wyman Genealogy Site <http://www.wyman.org>
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum <http://genforum.genealogy.com/wyman/>
The Wyman Surname Message Board
<http://www.familyhistory.com/messages/messages.asp?category=surname&for
um=Wyman>

  

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf
Of Karen Lease
Sent: Wednesday, June 20, 2001 5:59 PM
To: [EMAIL PROTECTED]
Subject: Modification in line placement


Hi,

While debugging a strange problem from John Wyman recently, I discovered
an inconsistency in how we decide whether a block area has room for
another line of text. It works differently on the first line in the
block from the remaining lines.

This isn't necessarily stupid, at least for some line-stacking-strategy
values. However, for the fairly simple one FOP is currently
implementing, it can lead to some strange results.

I also noticed that the way we are calculating half-leading in BlockArea
isn't correct according to the CR. The result is that our actual
line-spacing tends to be less than what the stylesheet uses as a
line-height value. This is because the "glyph height" of a font
(ascender + descender) is typically less than the actual font-size
value.

The "fix" is trivial, but it will change all existing test results,
because the line-spacing will increase! Because of that, I haven't yet
committed it. Opinions?

Regards,
Karen


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


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




RE: Text-Transform

2001-06-22 Thread John Wyman

Yes, It does work under .12, I hacked the code to put it in as
font-variant for now. I'll try the XSLT translate.
Thanks
John


John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
Wyman Genealogy Site <http://www.wyman.org>
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum <http://genforum.genealogy.com/wyman/>
The Wyman Surname Message Board
<http://www.familyhistory.com/messages/messages.asp?category=surname&for
um=Wyman>

  

-Original Message-
From: Christian Geisert [mailto:[EMAIL PROTECTED]] 
Sent: Friday, June 22, 2001 12:53 PM
To: [EMAIL PROTECTED]
Subject: Re: Text-Transform


> John Wyman wrote:
> 
> I need to produce all capital output from possibly mixed input text, 
> and the text-transform="uppercase" seems to generate a not supported 
> warning, this used to work in .12, am I doing something wrong ?

Are you really sure that it worked with FOP 0.12 ?
It is not supported in current FOP.

I actually have running code for text-transform, it just needs a bit
cleanup and testing (read: I need some time...)

Or you can use XSLT for this:  translate(text,'abcd','ABCD')

> John H. Wyman


Christian

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


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




Text-Transform

2001-06-21 Thread John Wyman
Title: Message



I need to produce 
all capital output from possibly mixed input text, and the 
text-transform="uppercase" seems to generate a not supported warning, this used 
to work in .12, am I doing something wrong ?
 

 
John H. Wyman5160 Darry LaneDublin, OH 
43016(614)-889-0698[EMAIL PROTECTED] Wyman 
Genealogy Site Francis Wyman Assoc 
email List http://groups.yahoo.com/group/FrancisWymanAssocWyman 
Family Genealogy Forum The 
Wyman Surname Message Board   

 


RE: Modification in line placement

2001-06-20 Thread John Wyman

If it fixes my problem, (selfishly asking) do it.


John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
Wyman Genealogy Site <http://www.wyman.org>
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum <http://genforum.genealogy.com/wyman/>
The Wyman Surname Message Board
<http://www.familyhistory.com/messages/messages.asp?category=surname&for
um=Wyman>

  

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf
Of Karen Lease
Sent: Wednesday, June 20, 2001 5:59 PM
To: [EMAIL PROTECTED]
Subject: Modification in line placement


Hi,

While debugging a strange problem from John Wyman recently, I discovered
an inconsistency in how we decide whether a block area has room for
another line of text. It works differently on the first line in the
block from the remaining lines.

This isn't necessarily stupid, at least for some line-stacking-strategy
values. However, for the fairly simple one FOP is currently
implementing, it can lead to some strange results.

I also noticed that the way we are calculating half-leading in BlockArea
isn't correct according to the CR. The result is that our actual
line-spacing tends to be less than what the stylesheet uses as a
line-height value. This is because the "glyph height" of a font
(ascender + descender) is typically less than the actual font-size
value.

The "fix" is trivial, but it will change all existing test results,
because the line-spacing will increase! Because of that, I haven't yet
committed it. Opinions?

Regards,
Karen


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


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




RE: Problem in "page-sequence is missing an sequence-specification"

2001-06-19 Thread John Wyman





















John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] 
Wyman Genealogy Site 
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum 
The Wyman Surname Message Board


  

-Original Message-
From: peti ban [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 19, 2001 7:35 AM
To: [EMAIL PROTECTED]
Subject: Problem in "page-sequence is missing an sequence-specification"


Hi fop users
I am using Cocoon 1.8 and generating pdf. But gives an error of missing
page-sequence. Like this:



Error found handling the request.
org.apache.fop.apps.FOPException: page-sequence is missing an
sequence-specification
at
org.apache.fop.fo.pagination.PageSequence.makePage(PageSequence.java:161
)
at
org.apache.fop.fo.pagination.PageSequence.format(PageSequence.java:189)
at org.apache.fop.fo.pagination.Root.format(Root.java:104)
at
org.apache.fop.fo.FOTreeBuilder.format(FOTreeBuilder.java:252)
at org.apache.fop.apps.Driver.format(Driver.java:345)
at
org.apache.cocoon.formatter.FO2PDFFormatter.format(FO2PDFFormatter.java:
86)
at org.apache.cocoon.Engine.handle(Engine.java:375)
at org.apache.cocoon.Cocoon.service(Cocoon.java:167)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
at org.apache.tomcat.core.Handler.service(Handler.java:286)
at
org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
at
org.apache.tomcat.core.ContextManager.internalService(ContextManager.jav
a:797)
at
org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
at
org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnec
tion(Ajp12ConnectionHandler.java:166)
at
org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416
)
at
org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:49
8)
at java.lang.Thread.run(Thread.java:484)




 
My xsl for the page-layout and page-sequence reads like this:




















I belive some modifications have to be done in xsl so that it can be
compatible with Cocoon 1.8. 
Please help me out of this problem, Thanks in advance.

Peti Ban



Get free email and a permanent address at http://www.netaddress.com/?N=1

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


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




RE: Wrapping in Cell Question

2001-06-16 Thread John Wyman

Karen,
I believe I found the problem, it had to do with centering in cells
where I was imbedding a text to be centered in the cell
itself, and the  was setting the text-align=center, this didn't
work, instead I switched to using the calstbl cell center and it now
works, although the wrapping is not perfect, but I need to do more
testing to be sure.

I am still very interested if you can find a fix for my problem where
the 3rd cell with line number prints at the bottom of a page, but the
text is on the next page with the next number.

John


John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
Wyman Genealogy Site <http://www.wyman.org>
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum <http://genforum.genealogy.com/wyman/>
The Wyman Surname Message Board
<http://www.familyhistory.com/messages/messages.asp?category=surname&for
um=Wyman>

  

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On
Behalf Of Karen Lease
Sent: Saturday, June 16, 2001 6:18 PM
To: [EMAIL PROTECTED]
Subject: Re: Wrapping in Cell Question


Hi John,

FOP has changed a great deal since version 12, so it's hard to say what
exactly is happening.

It may just be that I'm getting tired, but I can't quite figure out what
the FO file is going to look like from your partial XML and XSL. It
would be helpful if you could send either the complete files or maybe
just the FO code for the table which isn't working correctly. You can
get the FO by running XALAN or some other XSLT processor on your XSL and
XML files without running FOP.

HTH,
Karen Lease

> John Wyman wrote:
> 
> I am outputting a centered line of text and the text in the cell 
> appears to start at the end of the cell and writes into the adjacent 
> cell, the data in 'three3' runs of the side of the page. This worked 
> OK in .12, what did I do wrong? John
> xml
> 
>  align="left"/>
>  colsep="0" align="left"/>
>  align="left"/>
>  colsep="0" align="left"/>
>  colsep="0" align="left"/>
>  colsep="0" align="left"/>
> 
>  align="left" rowsep="0" colsep="0"/> colwidth="5.955224*" align="right" rowsep="0" colsep="0"/> 
> If 
> the price is at least  colname="pad3">But not more 
> than  colname="three3">The amount of the tax is
> 
> using below xsl
> 
>   
>
>   
>
> 
>   
>   
>   
>   
>   
>   
>   
>   
>   
>   
> 
>   
>   
>   
>   
>   
>   
>   
>font-weight="{$weight}" text-align="{$align}"
>space-before.optimum="{concat($before,'pt')}"
> text-indent="{concat($indent * $cw,'mm')}" 
> start-indent="{concat($margin * $cw,'mm')}">
>   
>   
>   
>   
>   
> 
> 
>
> text-decoration="none"> select="format-number(@id,$linenofmt)"/>
>
> 
>   
>   
>   
>   
>   
>   
> 
> John H. Wyman
> 5160 Darry Lane
> Dublin, OH 43016
> (614)-889-0698
> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> Wyman Genealogy Site <http://www.wyman.org>
> Francis Wyman Assoc email List 
> http://groups.yahoo.com/group/FrancisWymanAssoc
> Wyman Family Genealogy Forum <http://genforum.genealogy.com/wyman/>
> The Wyman Surname Message Board 
> <http://www.familyhistory.com/messages/messages.asp?category=surname&f
> orum=Wyman>
> 
> 
> 
>

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


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




Wrapping in Cell Question

2001-06-14 Thread John Wyman
Title: Message



I am outputting a 
centered line of text and the text in the cell appears to start at the end of 
the cell and writes into the adjacent cell, the data in 'three3' runs of the 
side of the page. This worked OK in .12, what did I do 
wrong?
John
xml

 
If the 
price is at leastBut 
not more thanThe 
amount of the tax is
 
using below 
xsl
     
  
  
 
  
        
        
  
 
    
      
         
space-before.optimum="{concat($before,'pt')}" text-indent="{concat($indent * 
$cw,'mm')}" start-indent="{concat($margin * $cw,'mm')}">  
    
            
   
   
   
      
    
    
  
John H. Wyman5160 Darry LaneDublin, OH 
43016(614)-889-0698[EMAIL PROTECTED] Wyman 
Genealogy Site Francis Wyman Assoc 
email List http://groups.yahoo.com/group/FrancisWymanAssocWyman 
Family Genealogy Forum The 
Wyman Surname Message Board   

 


RE: Possible page height problem with tables

2001-06-10 Thread John Wyman

Thank you very much for taking a look. Looking forward to possible fix .
John


John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
Wyman Genealogy Site <http://www.wyman.org>
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum <http://genforum.genealogy.com/wyman/>
The Wyman Surname Message Board
<http://www.familyhistory.com/messages/messages.asp?category=surname&for
um=Wyman>

  

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf
Of Karen Lease
Sent: Sunday, June 10, 2001 1:16 PM
To: [EMAIL PROTECTED]
Subject: Re: Possible page height problem with tables


Hi John,

I looked at the example file you submitted with your previous mail. I
don't think it's a problem with the table per se, but rather with the
block breaking itself. The block seems to behave differently when it's
adding the first line and a line after the first one. I haven't got a
fix yet, but I'll try to figure it out in the next few days.

Regards,
Karen Lease

> John Wyman wrote:
> 
> I have a fairly complex xsl which worked OK in FOP .12 and I modified 
> it to work under FOP .19 but I'm experiencing a problem that may be 
> related to the calculation of space remaining on a page. In order to 
> apply line numbers to my document I process the input data and imbed 
> at the proper line break points a  tag. and I output the 
> data into a 3 column table.
> 
> What appears to happen is that the text output believes (correctly ?) 
> that we have reached the end of the current page, unfortunately the 
> table thinks it still has room and outputs the next line number.
> 
> Does this make any sense ??
> 
> John
> 
> 
> John H. Wyman
> 5160 Darry Lane
> Dublin, OH 43016
> (614)-889-0698
> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> Wyman Genealogy Site <http://www.wyman.org>
> Francis Wyman Assoc email List 
> http://groups.yahoo.com/group/FrancisWymanAssoc
> Wyman Family Genealogy Forum <http://genforum.genealogy.com/wyman/>
> The Wyman Surname Message Board 
> <http://www.familyhistory.com/messages/messages.asp?category=surname&f
> orum=Wyman>
> 
> 
> 
>



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


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




Possible page height problem with tables

2001-06-07 Thread John Wyman
Title: Message



I have a fairly 
complex xsl which worked OK in FOP .12 and I modified it to work under FOP .19 
but I'm experiencing a problem that may be related to the calculation of space 
remaining on a page. In order to apply line numbers to my document I process the 
input data and imbed at the proper line break points a  tag. 
and I output the data into a 3 column table.
 
What appears to 
happen is that the text output believes (correctly ?) that we have reached the 
end of the current page, unfortunately the table thinks it still has room and 
outputs the next line number.
 
Does this make any 
sense ??
 
John
 
John H. Wyman5160 Darry LaneDublin, OH 
43016(614)-889-0698[EMAIL PROTECTED] Wyman 
Genealogy Site Francis Wyman Assoc 
email List http://groups.yahoo.com/group/FrancisWymanAssocWyman 
Family Genealogy Forum The 
Wyman Surname Message Board   

 


Re: Possible problem with -buf

2001-06-04 Thread John Wyman
Title: Message



Sorry for the 
delayed response, was out of town.
 
I am running it from 
the command line, since I don't to break my working code until I think were are 
closer. My documents range from 1 to 3000 pages and I tried some smaller ones 
and it worked. So something is broken as it gets to larger 
files/documents.
 
John
 
John H. Wyman5160 Darry LaneDublin, OH 
43016(614)-889-0698[EMAIL PROTECTED] Wyman 
Genealogy Site Francis Wyman Assoc email List http://groups.yahoo.com/group/FrancisWymanAssocWyman 
Family Genealogy Forum The Wyman Surname 
Message Board   

 


Possible problem with -buf

2001-06-01 Thread John Wyman

I have a very large document (>65000 lines, 2400 pages) which works OK
with fop .12 and I'm trying to move to fop .18 or later. When I ran this
document without -buf it appears to go into never-never land and
processes non existing pages until I kill the process. I tried running
this with the -buf buf.tmp and after 79 pages got multiple 'too many
files open" errors.
John


John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] 
Wyman Genealogy Site 
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum 
The Wyman Surname Message Board


  


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




Problem with Table

2001-06-01 Thread John Wyman

I am trying to create a ling numbered document and have modified code
that worked OK with fop 0.12 to run under fop 0.19.
I have a separate program with calculates and inserts a line tag in the
xml file. My xsl treats the output as a table and puts the data in
column 1 column 2 is a space and column 3 is for the line number (I have
attached the xml, fo and pdf).

The problem appears as blank lines at the bottom of each page with a
line number, and the last n lines (depends on # of pages) don't have
line numbers. This xml renders OK with .12.

I have looked at the fo file and it appears correct. Am I missing
something with the cells/rows in the table ?

Can anyone lead me in the right direction.

John H. Wyman
5160 Darry Lane
Dublin, OH 43016
(614)-889-0698
[EMAIL PROTECTED] 
Wyman Genealogy Site 
Francis Wyman Assoc email List
http://groups.yahoo.com/group/FrancisWymanAssoc
Wyman Family Genealogy Forum 
The Wyman Surname Message Board


  

-Original Message-
From: Hoang Nam [mailto:[EMAIL PROTECTED]] 
Sent: Friday, June 01, 2001 11:06 AM
To: [EMAIL PROTECTED]
Subject: Encryption of PDF file


Hello all,

Could somebody tell me  wether the encryption option is implemented now
in FOP ? In the following mail 3/14/01 , Arved Sandstrom said it had not
been implemented yet.

Is there any changes since ?

Thanks for help !

Nam

- Original Message -

At 09:56 AM 3/14/01 +0100, Andreas Kroop wrote:
>Hello
>Is there a way to change the security options with FOP (e.g. a 
>non-printable pdf's) ?

Not at the moment. We would have to build in support for PDF
encryption/decryption in order to do the security options (like printing
or editing permissions). This is off the top of my head...I stand to be
corrected.

Regards,
Arved Sandstrom

Fairly Senior Software Type
e-plicity (http://www.e-plicity.com)
Wireless * B2B * J2EE * XML --- Halifax, Nova Scotia






_

Do You Yahoo!?

Get your free @yahoo.com address at http://mail.yahoo.com




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

 longtitle.zip

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