Archive - Digest?

2002-04-17 Thread TJ Smith
Is there an archive and digest for this group similar to lists.mulberrytech.com?   TJ

Re: PDF Plugin Launch

2002-04-16 Thread TJ Smith
I wonder if this is a variation of the oft reported IE5 problem with recognizing document types. IE ignores (I think) content type and depends upon the 'pdf' extension. The extension gets mangled. To solve the problem, use 'a=b.pdf' as your extension name. Another exceedingly annoying issue is

Re: FopServlet

2002-03-19 Thread TJ Smith
What you're doing wrong is most likely using IE as your browser. IE depends on filename extensions to determine the sort of file it is to display - in this case, it looks for '.pdf' You need to add the magic string "a=b.pdf" to the end of the URL that invokes the FopServlet, viz: http://blah.bla

Re: Trouble with ZapfDingbats

2002-03-12 Thread TJ Smith
ying to resolve it against the latest release candidate. Cheers Tim -Original Message- From: TJ Smith [mailto:[EMAIL PROTECTED] Sent: Wednesday, 6 March 2002 23:51 To: [EMAIL PROTECTED] Subject: Re: Trouble with ZapfDingbats Hi I recently had problems with ZapfDingbats in fop 20.3 The s

Re: FopServlet question

2002-03-08 Thread TJ Smith
ets, and some dummy XML > (there's a lot of extra code in the servlet, but you should be able to > find the relevant parts). This system runs on .20.2. I'm waiting to see > if .20.3 is solidified. Hope this helps. > > -Matt > > > > TJ Smith wrote: > > &

Re: FopServlet question

2002-03-08 Thread TJ Smith
he environment. What > is different? You are running in a servlet. What libraries does the > servlet use to run? I'm sure it is using an xml parser and possibly an > xslt processor. > > So fix your classpath, ie. remove old/incompatible versions of xml > libararies. (Note: jdk1

Re: Trouble with ZapfDingbats

2002-03-06 Thread TJ Smith
Hi I recently had problems with ZapfDingbats in fop 20.3 The solution is to use the Unicode for the dingbat you wish to render - I was using: l which produced a filled-in circle character in 20.1, but rendered a pair of scissors in 20.3 The solution is to use: ● which works fine in 20.3 Hope

Re: How to draw a text box and a check box

2002-03-04 Thread TJ Smith
Chester: Easiest way is to use the Zapf-Dingbats font to represent checked/unchecked radio buttons and check boxes. A checked radio button is created: l unchecked: m However, this seems to work only in FOP 0.20.1 :-( See my posting titled "Disappearing fonts?" TJ - Original Message -

Disappearing fonts?

2002-03-04 Thread TJ Smith
Hi all I'm rendering checkboxes and radio buttons using the Zapf-Dingbats font - a checked radio button is 'l', unchecked is 'm' in the Zapf-Dingbats font:    l for checked, m for unchecked.   All works fine in FOP 0.20.1 - but not in FOP 0.20.3.  Is there something different about fonts and

Re: FopServlet question

2002-03-02 Thread TJ Smith
t;http://www.w3.org/1999/XSL/Format";> > > ... > > If that doesn't work, you might try attaching the xsl and xml files to > this list. > > -Matt > > > > > > TJ Smith wrote: > > > > Hello > > My application requires servlet

FopServlet question

2002-03-01 Thread TJ Smith
Hello My application requires servlet generated pdf from input xsl and xml files.  In fact, the application seems to be exactly what is described in the document http://xml.apache.org/fop/embedding.html as   http://blah.blah.blah/fop/servlet/FopServlet?xml=/home/path/to/xmlfile.xml&xsl=/home/

Fix height of rows/cells/etc?

2002-01-28 Thread TJ Smith
Is there a way to fix the height of a table row or cell such that if the text to be placed in that row or cell exceeds that height, it is truncated?  To put it another way, I want a fixed height to an area that holds arbitrary text - if the text exceeds that height, it is truncated.   TJ