Re: fonts

2002-10-08 Thread Jeremias Maerki
Good discussion you two had. Jörg injected about the same things I would have. In the back of my mind I have a reminder that AWT has some strange behaviour in font handling making it difficult to produce high-quality text. Looking at org.apache.fop.render.awt.AWTFontMetrics there is a pointer to

RE: Passing parameters to XSL file throgh Java Application

2002-10-08 Thread Balajee Chandrasekaran
Hi, XSLTInputHandler does not provide any methods to pass parameters to the xsl file. But in the XSLTInputHandler there is a method called public XMLReader getParser() This method actually handles A Transformer Object. I would suggest you to go through this class. It is available at

Re: fonts

2002-10-08 Thread Ralph LaChance
At 02:31 AM 10/8/02, you wrote: Will we have enough information out of AWT to produce high-quality text? For example, you need accurate information for the placement of under/overlines and superscript stuff. $.02: Underlines are in the (newish) LineMetrics object available from a Font,

DO NOT REPLY [Bug 13406] New: - Using padding displaces basic-link

2002-10-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13406. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 13406] - Using padding displaces basic-link

2002-10-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13406. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

New Developer Suggestion

2002-10-08 Thread Sauyet, Scott (OTS-HAR)
Hi, my name is Scott Sauyet, a Java developer in Connecticut, USA. I'm new to this group. I've been reading for about a month, but have made no contributions yet. I would like to contribute. Eventually, I hope to understand the system well enough to produce a spin-off which could render

BARCODE

2002-10-08 Thread Surov Maxim
Title: BARCODE Hi! Is it possible to embed barcodes into PDF using FOP? Thanks in advance, Maxim Surov

RE: BARCODE

2002-10-08 Thread Rhett Aultman
Title: BARCODE If you made the barcode a graphic, you could embed it. -Original Message-From: Surov Maxim [mailto:[EMAIL PROTECTED]]Sent: Tuesday, October 08, 2002 10:34 AMTo: [EMAIL PROTECTED]Subject: BARCODE Hi! Is it possible to embed barcodes into PDF using

Tif rendering sizes?

2002-10-08 Thread nick . moon
Title: BARCODE Does anyone know that largest Tif file size fop can handle to render into PDF format?

RE: BARCODE

2002-10-08 Thread Surov Maxim
Title: BARCODE Thanks! Could you suggest me some free packages which support barcodes simpliciter? (Something like http://big.faceless.org/but free) If you made the barcode a graphic, you could embed it. -Original Message-From: Surov Maxim [mailto:[EMAIL

RE: BARCODE

2002-10-08 Thread Matthew L. Avizinis
Title: BARCODE There are some threads in the archives which describe using Barcode fonts. I'm sure if you search in the archives for "barcode" you'd come up with something relevant to your needs. -Original Message-From: Surov Maxim [mailto:[EMAIL PROTECTED]]Sent: Tuesday,

Setting the user configuration in embedded code

2002-10-08 Thread Paul . Hussein
Hi, wonder if anyone can help. I am trying to set the user configuratuion file with FOP embedded in my app. java.io.BufferedOutputStream bufferedOutputStream = null; org.apache.fop.apps.Driver driver = null; java.io.ByteArrayInputStream

Re: Setting the user configuration in embedded code

2002-10-08 Thread jthaemlitz
The user config options are static, so you can call this anywhere before you start you create your driver. You only have to call this once. import org.apache.fop.apps.Options; // Declare our FOP User Config file (this is where we get our fonts) File userConfigFile = new File( userconfig.xml );

RE: BARCODE

2002-10-08 Thread Paul . Hussein
Two ways I know of. Using barcode fonts. Using SVG to draw barcode. We have used a stylesheet to draw the SVG works really well. Rhett Aultman [EMAIL PROTECTED] on 08/10/2002 15:34:55 Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: RE: BARCODE If you made

Re: fonts

2002-10-08 Thread Victor Mote
Jeremias Maerki wrote: In the back of my mind I have a reminder that AWT has some strange behaviour in font handling making it difficult to produce high-quality text. Looking at org.apache.fop.render.awt.AWTFontMetrics there is a pointer to an AWT bug. There's other code in there that hints

Re: Trademark and copyright symbols

2002-10-08 Thread J.Pietschmann
Swapan Golla wrote: I have text node which has copyright (#169;) and trademark (#x2122;) symbols embedded in it. When I produce pdf using FOP 0.20.4, I get © for copyright symbols on windows 2000 platform and Â#© on linux redhat 7.2 platform. I am using jdk 1.3.1_03. Anybody know

Re: BARCODE

2002-10-08 Thread J.Pietschmann
Surov Maxim wrote: Thanks! Could you suggest me some free packages which support barcodes simpliciter? (Something like http://big.faceless.org/ but free) There is a generator written in XSLT available at http://www.renderx.com/barcodes.html J.Pietschmann

Re: Tif rendering sizes?

2002-10-08 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: Does anyone know that largest Tif file size fop can handle to render into PDF format? The first hard limit reached is probably the JVM memory (1GB). FOP doesn't deal with TIFF itself but relies on the Jimi library. It may be possible to find more hard data on limits in

Generating PDF Files Dynamically

2002-10-08 Thread Venkata Rao Nadella
Hi, Does anybody know how to generate PDF Files Dynamically using XSL-FO and Perl? If you know please let me know. Thanks, Venkat

Hyphenated text as String

2002-10-08 Thread Jim Wright
Hey Foppers: Is there some way to get the hyphenated text of a particular block(s) returned as a string (with hyphens in place)? Since FOP puts hyphens in place at the time of the transform, I'm hoping to get back the hyphenated strings of specific blocks for a different portion of my

Re: Hyphenated text as String

2002-10-08 Thread J.Pietschmann
Jim Wright wrote: Is there some way to get the hyphenated text of a particular block(s) returned as a string (with hyphens in place)? Since FOP puts hyphens in place at the time of the transform, I'm hoping to get back the hyphenated strings of specific blocks for a different portion of

Re: Hyphenated text as String

2002-10-08 Thread Jim Wright
I did. And it seems like the right class to use, but it looks like it just hyphenates one word at a time(?). Can you point me toward which class decides which word is last on a line (measures text length), and hands it off to hyphenator? If I could just get a point of reference as to how

Re: Hyphenated text as String

2002-10-08 Thread J.Pietschmann
Jim Wright wrote: I did. And it seems like the right class to use, but it looks like it just hyphenates one word at a time(?). Can you point me toward which class decides which word is last on a line (measures text length), and hands it off to hyphenator? If I could just get a point of

Re: Hyphenated text as String

2002-10-08 Thread Jim Wright
Sigh. Yeah, I was looking at that class, but hoped there was a more all in one approach. Thanks again for the input. jw On Tuesday, October 8, 2002, at 05:28 PM, J.Pietschmann wrote: Jim Wright wrote: I did. And it seems like the right class to use, but it looks like it just hyphenates

DO NOT REPLY [Bug 13433] New: - PS rendering crashes with a run-time exception, No such method

2002-10-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13433. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: xml-fop/build/classes/conf userconfig.xml

2002-10-08 Thread pbwest
pbwest 2002/10/08 21:42:14 Modified:build/classes/conf Tag: FOP_0-20-0_Alt-Design userconfig.xml Log: Changed location of debugging test file. Revision ChangesPath No revision No revision 1.1.2.2 +2 -7

cvs commit: xml-fop/conf userconfig.xml

2002-10-08 Thread pbwest
pbwest 2002/10/08 21:43:32 Modified:conf Tag: FOP_0-20-0_Alt-Design userconfig.xml Log: Changed location of debugging test file. Revision ChangesPath No revision No revision 1.5.4.2 +2 -7

cvs commit: xml-fop/src/org/apache/fop/datatypes AbstractPropertyValue.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 21:50:24 Modified:src/org/apache/fop/datatypes Tag: FOP_0-20-0_Alt-Design AbstractPropertyValue.java Log: Removed stackedBy references. Added typeString(). Modified toString(). Revision ChangesPath No

cvs commit: xml-fop/src/org/apache/fop/datatypes PropertyValueList.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 21:52:21 Modified:src/org/apache/fop/datatypes Tag: FOP_0-20-0_Alt-Design PropertyValueList.java Log: Removed stackedBy references. Modified toString(). Revision ChangesPath No revision No

cvs commit: xml-fop/src/org/apache/fop/datatypes PropertyValue.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 21:54:47 Modified:src/org/apache/fop/datatypes Tag: FOP_0-20-0_Alt-Design PropertyValue.java Log: Removed stackedBy references. Added ROStringArray propertyTypes. Revision ChangesPath No revision No

cvs commit: xml-fop/src/org/apache/fop/datatypes Numeric.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 22:45:57 Modified:src/org/apache/fop/datatypes Tag: FOP_0-20-0_Alt-Design Numeric.java Log: Modified abs() to return Numeric. Works with any kind of Numeric value. Modified max() and min() to return Numeric and to operate on any

cvs commit: xml-fop/src/org/apache/fop/fo Properties.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 22:53:32 Modified:src/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design Properties.java Log: Added specific error test for LIST passed to refineParsing(). Revision ChangesPath No revision No

cvs commit: xml-fop/src/org/apache/fop/fo FOTree.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 22:55:06 Modified:src/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design FOTree.java Log: Commented out debugging output. Revision ChangesPath No revision No revision 1.1.2.17 +4 -4

cvs commit: xml-fop/src/org/apache/fop/fo FoRoot.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 22:56:31 Modified:src/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design FoRoot.java Log: Modified signatures for xmlevents.get?Element() methods. Revision ChangesPath No revision No revision 1.1.2.8 +9

cvs commit: xml-fop/src/org/apache/fop/fo FONode.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 22:57:10 Modified:src/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design FONode.java Log: Modified exception handling. Revision ChangesPath No revision No revision 1.19.2.16 +4 -4

cvs commit: xml-fop/src/org/apache/fop/fo FOAttributes.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 22:57:50 Modified:src/org/apache/fop/fo Tag: FOP_0-20-0_Alt-Design FOAttributes.java Log: Comment change. Revision ChangesPath No revision No revision 1.1.2.7 +6 -6

cvs commit: xml-fop/src/org/apache/fop/fo/pagination FoLayoutMasterSet.java FoPageSequenceMaster.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 23:00:49 Modified:src/org/apache/fop/fo/pagination Tag: FOP_0-20-0_Alt-Design FoLayoutMasterSet.java FoPageSequenceMaster.java Log: Use array argument for multiple choice expectStartElement() calls. Revision ChangesPath No

cvs commit: xml-fop/src/org/apache/fop/fo/expr PropertyParser.java PropertyTokenizer.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 23:02:51 Modified:src/org/apache/fop/fo/expr Tag: FOP_0-20-0_Alt-Design PropertyParser.java PropertyTokenizer.java Log: Bug fixes and debugging output. Revision ChangesPath No revision No

cvs commit: xml-fop/src/org/apache/fop/xml SyncedXmlEventsBuffer.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 23:07:04 Modified:src/org/apache/fop/xml Tag: FOP_0-20-0_Alt-Design SyncedXmlEventsBuffer.java Log: Added get/expectTypedEvent. Modified all other get/expect methods to use these. Added array arguments to multiple choice

cvs commit: xml-fop/src/org/apache/fop/xml XMLEvent.java

2002-10-08 Thread pbwest
pbwest 2002/10/08 23:08:37 Modified:src/org/apache/fop/xml Tag: FOP_0-20-0_Alt-Design XMLEvent.java Log: Added eventTypeName(). Revision ChangesPath No revision No revision 1.1.2.3 +26 -25

Re: fonts

2002-10-08 Thread Jeremias Maerki
In the back of my mind I have a reminder that AWT has some strange behaviour in font handling making it difficult to produce high-quality text. Looking at org.apache.fop.render.awt.AWTFontMetrics there is a pointer to an AWT bug. There's other code in there that hints at deficiencies in