Introduction

2010-06-22 Thread Giuseppe Briotti
Hi all!

I'm Giuseppe Briotti and I'm here due to Pascal suggestion.

I'm an italian developer, experienced in Java, C# and C/C++ for rich
client application (some PHP too :-) ).

I'm presently working on XML, XSLT and FO to produce complex document
for the italian PA. Most of them are speech report and bills with a
simple structure but complex layout and annexes.

During my developing I faced index and toc problems due to unsupported
feature of FO for Index (i.e. section 6.10 of XSL 1.1 Recommendation).
Thus several solution are available:

1. buy a commercial product instead of using FOP.
2. using double pass technique.
3. partecipating to the FOP developing and give some contribution to
the problem if possible (I know that the team priorities probably are
different...).

So, due to the economical crysis the point 1 is discarted :-)
The point 2 is the present solution (a little bit expensive, indeed).
The point 3 is, if possible, the future :-)

G.

-- 

Giuseppe Briotti
g.brio...@gmail.com

Alme Sol, curru nitido diem qui
promis et celas aliusque et idem
nasceris, possis nihil urbe Roma
visere maius.
(Orazio)


RE: Introduction

2010-06-22 Thread Brooke Simler
Hi Giuseppe - Perhaps you can help me. I am on this list serve mistakenly. I
have nothing to do w/ your work, and get emails CONSTANTLY from you all.
I've tried to reach out and ask to get taken off, w/ no luck. Could you
please help?
Thanks.

-Original Message-
From: Giuseppe Briotti [mailto:g.brio...@gmail.com] 
Sent: Tuesday, June 22, 2010 2:29 AM
To: fop-dev@xmlgraphics.apache.org
Subject: Introduction

Hi all!

I'm Giuseppe Briotti and I'm here due to Pascal suggestion.

I'm an italian developer, experienced in Java, C# and C/C++ for rich
client application (some PHP too :-) ).

I'm presently working on XML, XSLT and FO to produce complex document
for the italian PA. Most of them are speech report and bills with a
simple structure but complex layout and annexes.

During my developing I faced index and toc problems due to unsupported
feature of FO for Index (i.e. section 6.10 of XSL 1.1 Recommendation).
Thus several solution are available:

1. buy a commercial product instead of using FOP.
2. using double pass technique.
3. partecipating to the FOP developing and give some contribution to
the problem if possible (I know that the team priorities probably are
different...).

So, due to the economical crysis the point 1 is discarted :-)
The point 2 is the present solution (a little bit expensive, indeed).
The point 3 is, if possible, the future :-)

G.

-- 

Giuseppe Briotti
g.brio...@gmail.com

Alme Sol, curru nitido diem qui
promis et celas aliusque et idem
nasceris, possis nihil urbe Roma
visere maius.
(Orazio)



SEVERE: Couldn't find hyphenation pattern en_US

2010-06-22 Thread Tom Browder
I am getting the subject message during build tests on the trunk as
well as with the stable version of fop on Ubuntu 10.04 amd64 (fop
0.95).

I have tried to explicitly point to the fop-hyph.jar file with the
FOP_HYPHENATION_PATH environment variable but that doesn't seem to
work.

Any ideas?

Thanks.

-Tom

Thomas M. Browder, Jr.
Niceville, Florida
USA


Re: Introduction

2010-06-22 Thread Giuseppe Briotti
2010/6/22 Brooke Simler siml...@science.oregonstate.edu:
 Hi Giuseppe - Perhaps you can help me. I am on this list serve mistakenly. I
 have nothing to do w/ your work, and get emails CONSTANTLY from you all.
 I've tried to reach out and ask to get taken off, w/ no luck. Could you
 please help?
 Thanks.


“Time goes by so fast, people go in and out of your mailing-list

:-)

Well, Brooke, did you try to send a mail to
fop-dev-unsubscr...@xmlgraphics.apache.org with subject unsubscribe?

G.

-- 

Giuseppe Briotti
g.brio...@gmail.com

Alme Sol, curru nitido diem qui
promis et celas aliusque et idem
nasceris, possis nihil urbe Roma
visere maius.
(Orazio)


Re: SEVERE: Couldn't find hyphenation pattern en_US

2010-06-22 Thread J.Pietschmann

On 22.06.2010 19:02, Tom Browder wrote:

I have tried to explicitly point to the fop-hyph.jar file with the
FOP_HYPHENATION_PATH environment variable but that doesn't seem to
work.


The fop-hyph.jar must be in the classpath, putting it into
the fop/lib directory should be sufficient if FOP is run using
one of the scripts as they pick up any jar there.

I'm not sure whether the fop-hyph.jar from the OFFO project
contains an en_US hyphenation class, maybe there is only
an en_UK class there. Check using jar -tvf lib/fop-hyph.jar

J.Pietschmann




Re: SEVERE: Couldn't find hyphenation pattern en_US

2010-06-22 Thread Tom Browder
On Tue, Jun 22, 2010 at 15:29, J.Pietschmann j3322...@yahoo.de wrote:
 On 22.06.2010 19:02, Tom Browder wrote:

 I have tried to explicitly point to the fop-hyph.jar file with the
 FOP_HYPHENATION_PATH environment variable but that doesn't seem to
 work.

So should I file a bug for that?

 The fop-hyph.jar must be in the classpath, putting it into
 the fop/lib directory should be sufficient if FOP is run using
 one of the scripts as they pick up any jar there.

 I'm not sure whether the fop-hyph.jar from the OFFO project
 contains an en_US hyphenation class, maybe there is only
 an en_UK class there. Check using jar -tvf lib/fop-hyph.jar

Note that I tried the CLASSPATH trick before with fop 0.95 and it
didn't work, but I'll try again.  Is there any way (tool or utility)
to read a jar file to see if a particular hyphenation class is there?

Thanks,

-Tom


RE: SEVERE: Couldn't find hyphenation pattern en_US

2010-06-22 Thread Eric Douglas
You can view the files in a jar including classes with a jar viewer
program.  A jar is just a form of compressed file like zip or rar.  I
use 7-zip to view it.

You can get the manifest.mf file from the jar to check for a classpath
being referenced by the jar.  If the classpath just has the jar names,
it's assumed they're in the same path as the fop.jar.  Make sure you
have all the jars referenced in the classpath.  Some of them you have to
download elsewhere and you may need to rename.

The classpath within the jar may interfere with programs which embed the
jar and assign their own classpath.  I had that problem, so I downloaded
the source, removed the classpath from the manifest, and recompiled it
myself.


-Original Message-
From: Tom Browder [mailto:tom.brow...@gmail.com] 
Sent: Tuesday, June 22, 2010 4:43 PM
To: fop-dev@xmlgraphics.apache.org
Subject: Re: SEVERE: Couldn't find hyphenation pattern en_US

On Tue, Jun 22, 2010 at 15:29, J.Pietschmann j3322...@yahoo.de wrote:
 On 22.06.2010 19:02, Tom Browder wrote:

 I have tried to explicitly point to the fop-hyph.jar file with the 
 FOP_HYPHENATION_PATH environment variable but that doesn't seem to 
 work.

So should I file a bug for that?

 The fop-hyph.jar must be in the classpath, putting it into the fop/lib

 directory should be sufficient if FOP is run using one of the scripts 
 as they pick up any jar there.

 I'm not sure whether the fop-hyph.jar from the OFFO project contains 
 an en_US hyphenation class, maybe there is only an en_UK class there. 
 Check using jar -tvf lib/fop-hyph.jar

Note that I tried the CLASSPATH trick before with fop 0.95 and it didn't
work, but I'll try again.  Is there any way (tool or utility) to read a
jar file to see if a particular hyphenation class is there?

Thanks,

-Tom