Re: [Fwd: TiffRenderer Anomaly]

2005-01-14 Thread Oleg Tkachenko
and stepped through it. The imageType came in to the switch statement with a value of TIFF_BILEVEL_BLACK_IS_ZERO, and due to the change in the code, the value of photometricInterpretation was set to 0. Ok, sounds like that's something else. I'll take a look at it this weekend. -- Oleg Tkachenko

Re: [Fwd: TiffRenderer Anomaly]

2005-01-13 Thread Oleg Tkachenko
in TIFFImageEncoder.java: case TIFF_BILEVEL_WHITE_IS_ZERO: photometricInterpretation = 0; break; case TIFF_BILEVEL_BLACK_IS_ZERO: photometricInterpretation = 1; break; HTH. -- Oleg Tkachenko http://blog.tkachenko.com Multiconn Technologies, Israel

Re: Rendering a Tiff image

2003-10-16 Thread Oleg Tkachenko
) is frozen and the FOP version currently under development is not ready yet AFAIK. As soon as AWTRenderer in FOP 1.0dev works I'll commit TIFFRenderer to the codebase. For a while you can use TIFFRenderer as another third-party renderer - there is no any particular difference. -- Oleg Tkachenko http

Re: FOP With Hebrew

2003-10-06 Thread Oleg Tkachenko
Markus Schutz wrote: Alas, I don't know any remedy, perhaps somebody else has found a workaround. I have BIDI-aware version, but it's based on FOP 0.20.4RC and works only with JDK 1.2-1.3. It would be nice to get it in sync with current FOP release, but I have no time unfortunately. -- Oleg

Re: FOP With Hebrew

2003-10-06 Thread Oleg Tkachenko
to maintenance branch. And what for implementation for FOP 1.0dev, I have started wiki page - http://nagoya.apache.org/wiki/apachewiki.cgi?FOPWritingModesAndBidiDesign but it's unfinished and at the moment nobody seems to be working on this subject :( -- Oleg Tkachenko http://www.tkachenko.com/blog

Re: Tiff renderer and strips

2003-06-10 Thread Oleg Tkachenko
://www.tkachenko.com/fop/tiffrenderer-doc/com/multiconn/fop/codec/TIFFEncodeParam.html -- Oleg Tkachenko http://www.tkachenko.com/blog Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Tiff renderer and strips

2003-06-10 Thread Oleg Tkachenko
= TIFFRendererFactory.newTIFFRenderer(); TIFFRendererParams params = new TIFFRendererParams(); params.setWriteTiled(true); driver.setRenderer(tiffRenderer); -- Oleg Tkachenko http://www.tkachenko.com/blog Multiconn Technologies, Israel

Re: Tiff renderer and strips

2003-06-10 Thread Oleg Tkachenko
. Check out also JAI faq: http://java.sun.com/products/java-media/jai/forDevelopers/jaifaq.html -- Oleg Tkachenko http://www.tkachenko.com/blog Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: can I?

2003-04-25 Thread Oleg Tkachenko
joni santoso wrote: I usually use fop to convert fo to pdf using command line. Now, I wonder if I can use fop programatically to take streamed fo object (not from files) and convert it to pdf (what objects to use?) Sure you can. Look at http://xml.apache.org/fop/embedding.html -- Oleg Tkachenko

Re: feature overview

2003-04-08 Thread Oleg Tkachenko
Todtenhaupt, Susann wrote: Where can I find an overview of features that are supported by fop and things that don't work? http://xml.apache.org/fop/compliance.html -- Oleg Tkachenko http://www.tkachenko.com/blog Multiconn Technologies, Israel

Re: web site changes

2003-04-05 Thread Oleg Tkachenko
Victor Mote wrote: The Compliance page is finally looking pretty much as intended: http://xml.apache.org/fop/compliance.html The PDF version does not work. This is a known problem and we hope to have it resolved in the near future. Well done, Victor! Looks so cool. -- Oleg Tkachenko http

Re: pdf-forms

2003-03-30 Thread Oleg Tkachenko
a hint, how I can solve this problem? Yeah, XSL-FO doesn't support this. So invent your own extension elements and implement them in FOP - no big deal :) -- Oleg Tkachenko http://www.tkachenko.com/blog Multiconn Technologies, Israel

Re: problems with !{CDATA in docbook and fop

2003-03-20 Thread Oleg Tkachenko
Jason Novotny wrote: fo:block = space-before.optimum=1em space-before.maximum=1.2em Here it is. It's not wellformed XML, if you get it from docbook xsl, report a bug or try another xslt processor. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: org.apache.fop.apps.FOPException: root must be root element

2003-03-19 Thread Oleg Tkachenko
the problem? Probably that has something to do with thread-safeness. Which version are you using? -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: cache piece of FOP Transformation

2003-03-19 Thread Oleg Tkachenko
and this is transforming. You cannot cache some templates, but you can cache the whole compiled stylesheet, take a look at jaxp javax.xml.transform.Templates class. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe

Re: FOP output to TIFF

2003-03-16 Thread Oleg Tkachenko
to swap these values? case TIFF_BILEVEL_WHITE_IS_ZERO: photometricInterpretation = 1; break; case TIFF_BILEVEL_BLACK_IS_ZERO: photometricInterpretation = 0; break; -- Oleg Tkachenko Multiconn Technologies, Israel

Re: FOP in production app (clienside)

2003-03-12 Thread Oleg Tkachenko
that can consume XSLT and render the PDF directly, but I have not heard anything to indicate they are working on this. They are working on server side, which costs 20K actually. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: rendering XML from TIFF

2003-03-11 Thread Oleg Tkachenko
Rick Delpo wrote: Is there a way to parse elements from TIFF format into XML ? OCR -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Logo competition

2003-03-10 Thread Oleg Tkachenko
submit stage this week (e.g. this Wednesday if nobody objects) and start debates amongst committers about who the winner is. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: setting the dpi in the TiffRenderer

2003-03-09 Thread Oleg Tkachenko
Rob Stote wrote: Is there a way to set the dpi in you TiffRenderer. I know I can set the compression level, but I am not sure about the dpi. I believe it's FOP limitation currently - 72dpi only, so TIFFRenderer the same. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: page break or paper size ?

2003-03-05 Thread Oleg Tkachenko
Asim Nazir wrote: hello , i have converted word to xsl:fo, now while converting it to pdf, the contents of second page are displayed on first page as well. i have to mention the paper size or page break or ? looking for help Sounds very weird, show us your xsl-fo document. -- Oleg Tkachenko

Re: page left margin

2003-03-05 Thread Oleg Tkachenko
fo:leader leader-length=10mm/ fo:external-graphic src=url('file:///d:/fop.jpg')/ /fo:block -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: FOP output to TIFF

2003-03-05 Thread Oleg Tkachenko
for requirements 2 and 3. Well, requirement 2 is just XSL-FO's page-height/page-width properties I think. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: FOP output to TIFF

2003-03-05 Thread Oleg Tkachenko
stream to write result to. The question is where additional images should be sent to? -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: BIDI reordering routine

2003-03-04 Thread Oleg Tkachenko
time, unfortunately, you know, too many day works last time : -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Logo Submission - 4 logos for Contest

2003-03-04 Thread Oleg Tkachenko
a non-vector element that made their size too large (I can convert it later if needed). Added to the list. Thanks, Michael! Don't worry about deadline, we are going to prolong the contest for so some time probably till final 0.20.5 release. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: logo contest again

2003-03-02 Thread Oleg Tkachenko
to the list, send my thanks to your friend! -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: xsl-fo book

2003-02-27 Thread Oleg Tkachenko
H. krishna wrote: I need xsl-fo book. Publisher is o'reiley or another xsl-fo book. this is availbale in chennai? i am living in chennai. Have you tried amazon? Here is Dave Pawson's book online: http://www.dpawson.co.uk/xsl/sect3/bk/index.html -- Oleg Tkachenko Multiconn Technologies, Israel

Re: logo contest again

2003-02-25 Thread Oleg Tkachenko
Ovidiu Pop wrote: last proposal Thanks! But jpg image seems to be broken and svg is too big, proide svgz version please. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: logo contest again

2003-02-25 Thread Oleg Tkachenko
Ovidiu Pop wrote: Sorry about the size of the svgfile. I've attached the jpeg for my 2nd proposal. Added, thanks! But this jpg still doesn't apper in my IE or mozilla, check out http://vote.sparklit.com/web_poll.spark/714566. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: logo contest again

2003-02-25 Thread Oleg Tkachenko
Ovidiu Pop wrote: Sorry about troubles with JPG file. It seems IE doesn't like CMYK palette. I've resend you the op-foplogo2.jpg. Added, thanks! PS. I think we should prolong the contest term for another week or two if nobody objects. -- Oleg Tkachenko Multiconn Technologies, Israel

FOP output to TIFF

2003-02-23 Thread Oleg Tkachenko
will benefit from it also. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tableRow larger than a page

2003-02-20 Thread Oleg Tkachenko
-called large tables pagination, it was discussed in exslfo community mail list, so I'm sure XSL WG is aware of it. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: brain dead newbe

2003-02-20 Thread Oleg Tkachenko
Roger Roelofs wrote: Thanks. My problem was that I need a double border around the page and I had used absolutely positioned block-containers to get it. Once I removed them the pagination worked just great. What about moving border to before, after, start and end regions? -- Oleg Tkachenko

Re: html output format

2003-02-20 Thread Oleg Tkachenko
, FOP and XSLT processor are different things despite the fact that FOP includes XSLT processor. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Javadoc for org.apache.fop.apps.*

2003-02-20 Thread Oleg Tkachenko
Lee, Insoo wrote: Where can I see javadoc for org.apache.fop.apps.* Download FOP and run build javadocs -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: empty pdf file

2003-02-20 Thread Oleg Tkachenko
property. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: empty pdf file

2003-02-20 Thread Oleg Tkachenko
? -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: empty pdf file

2003-02-20 Thread Oleg Tkachenko
... /fo:block /xsl:template This will force page break before each of these fo:block objects. Alternatively use break-after=page. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail

Re: footnote-separator

2003-02-20 Thread Oleg Tkachenko
with it? -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: footnote-separator

2003-02-20 Thread Oleg Tkachenko
be a nice feature to have Any help is *greatly* appreciated, we permanently suffer from lack of developer resources. But 0.20.5 is probably last maintenance release in 0.X series and its development has been frozen, so you are invited into FOP 1.0 development. -- Oleg Tkachenko Multiconn

Re: empty pdf file

2003-02-20 Thread Oleg Tkachenko
, isn't it what are you asking for? -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: break-before attribute

2003-02-20 Thread Oleg Tkachenko
Oleg Tkachenko wrote: Nope, SOUSTHEME != following-sibling::SOUSTHEME is true if and only if all follwing SOUSTHEME siblings have the same string value as SOUSTHEME children of current node. Wrong guess. SOUSTHEME != following-sibling::SOUSTHEME is true is there is at least one following

Re: html output format

2003-02-19 Thread Oleg Tkachenko
, just use your favorite XSLT processor. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Newbie using blocks

2003-02-19 Thread Oleg Tkachenko
) Turn on hyphenation on the block. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: brain dead newbe

2003-02-19 Thread Oleg Tkachenko
of the previous content. How do I tell it to start a new page? You can use break-after=page attribute to enforce page break after a formatting object. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail

Re: logging and line numbers of errors

2003-02-18 Thread Oleg Tkachenko
stream, possibly after XSL transformation and any information about lines is lost already. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: AW: FOP logo contest

2003-02-18 Thread Oleg Tkachenko
Andre Halama wrote: here is another try of mine (svg also available). Added to the list, thank you! -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: XSL source

2003-02-18 Thread Oleg Tkachenko
Matthew Lancashire wrote: Can you pass a file as a URL I am currently using the command below Source xsltSrc = new StreamSource(new File(xslt)); Yes, you can, see http://java.sun.com/j2se/1.4/docs/api/javax/xml/transform/stream/StreamSource.html#StreamSource(java.lang.String) -- Oleg

Re: Use of configuration files in embedded FOP

2003-02-17 Thread Oleg Tkachenko
Note at http://xml.apache.org/fop/download.html: Note Important: Currently, releases of FOP are coming out of the fop-0_20_2-maintain branch. The MAIN branch is currently under development. See Development Docs for more information. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: counting variable

2003-02-17 Thread Oleg Tkachenko
Zieseniß, Markus wrote: is there a possibility to create a variable, which can count elements of my letter? Sure, xsl:variable name=elems-number select=count(//*)/ -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe

Re: How to detect page breaks ?

2003-02-16 Thread Oleg Tkachenko
pages then. See http://www.dpawson.co.uk/xsl/sect3/bk/ch05.html#d0e1448. PS. And don't post in html format please, that's explicitly forbidden in Apache mail lists, see Mailing Lists Guidelines at http://jakarta.apache.org/site/mail.html. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: XSL transformations with FOP

2003-02-16 Thread Oleg Tkachenko
actually, when using input file name without any options, FOP assumes it's xsl-fo document. Use instead fop.bat -xml glossary.xml -xsl glossary.xsl -pdf glossary.pdf -- Oleg Tkachenko Multiconn Technologies, Israel

Re: rtf to xml

2003-02-13 Thread Oleg Tkachenko
Eduardo Santilli wrote: is it possible to generate a xml or a xsl from a rtf or pdf file ?? Dunno about rtf, but generating xml from pdf sounds like OCR-ing a book. Why do you need it? -- Oleg Tkachenko Multiconn Technologies, Israel

Re: rtf to xml

2003-02-13 Thread Oleg Tkachenko
rtf, but generating xml from pdf sounds like optical character recognition of a book. For more info look at recent (hmm, it's November actually) discussion in xsl-list: http://www.biglist.com/lists/xsl-list/archives/200211/msg00996.html -- Oleg Tkachenko Multiconn Technologies, Israel

Re: Table column-width property

2003-02-12 Thread Oleg Tkachenko
in xsl-fo document instead of xsl stylesheet. Am I right? -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Table column-width property

2003-02-12 Thread Oleg Tkachenko
to result tree using XSLT and then result tree is formatted by FOP. Get some XSL tutorial, that's really basics. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Cyrillic Characters not showing on PDF with Cyrillic Font

2003-02-11 Thread Oleg Tkachenko
of the words, or nothing at all. Most likely there is still some error somewhere, check out FOP debug messages. Are you sure FOP uses your userconfig.xml for starters? -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe

Re: FOP and IIS4/5

2003-02-10 Thread Oleg Tkachenko
1.1.4. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: FOP Logo Contest

2003-02-09 Thread Oleg Tkachenko
Dave Biggar wrote: FOPlogoDBiggar.svgz is attached. Added to the list, thank you Dave! -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Page numbering

2003-02-09 Thread Oleg Tkachenko
H. krishna wrote: now, the pagenumber is not displayed in the first page. But, i need the page number start with 2 page is left alignment and 3 page is right alignment. The same way, create different page masters for even and odd pages. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: TTFReader problem

2003-02-08 Thread Oleg Tkachenko
Reading D:\fop-0.20.4\Ftes-ATL\TrueType\DITIMES_.TTF... Number of glyphs in font: 170 Unicode cmap table not present java.util.NoSuchElementException: Vector Enumeration AFAIR that was fixed couple of months ago, have you tried FOP 0.20.5rc? -- Oleg Tkachenko Multiconn Technologies, Israel

Re: XSL_FO generator

2003-02-08 Thread Oleg Tkachenko
Gian Piero Bottini wrote: Oh I have made confusion.. Sorry I think that this code is ok for avalon.framework.Logger. but not for log4j.This is correct?? Anybody know how to use fop with log4j?? Take a look at org.apache.avalon.framework.logger.Log4JLogger class. -- Oleg Tkachenko Multiconn

Re: Page numbering

2003-02-08 Thread Oleg Tkachenko
http://www.dpawson.co.uk/xsl/sect3/bk/ch05.html#d0e1448. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: TTFReader problem

2003-02-08 Thread Oleg Tkachenko
Gerard BUNEL wrote: No, I'm using FOP-20.4 So what? I told you, the bug was fixed (afaik) in FOP-0.20.5rc. Wanna get fixed vesion - upgrade to 0.20.5rc. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail

Re: FOP Logo Contest

2003-02-08 Thread Oleg Tkachenko
Dave Biggar wrote: FOPlogo.svg Could you please ptrovide svgz version? -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Class not found applet error

2003-02-05 Thread Oleg Tkachenko
the performance of applets. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: external-graphic problem

2003-02-05 Thread Oleg Tkachenko
Mihael Knezevic wrote: thanx for the response. correct me if i'm wrong, but i thought the base dir must only be set if i use this in a servlet? baseDir *may* be set if you need it. Environment doesn't matter, that's just a convenient way to resolve relative URI's. -- Oleg Tkachenko Multiconn

Re: Class not found applet error

2003-02-05 Thread Oleg Tkachenko
application from client file system, look at Java Web Start. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: embed Fonts in FOP (not from the command line)

2003-02-05 Thread Oleg Tkachenko
://xml.apache.org/fop/faq.html#faq-N1031F. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Fop Logo concept

2003-02-04 Thread Oleg Tkachenko
Mitchell, Lincoln L. wrote: How about this... fop.jpg Designer: Lincoln Mitchell fop.jpg Well, actually I believe ant is taken already by ANT project, but anyway I have added it to the list. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: Fop Logo concept

2003-02-04 Thread Oleg Tkachenko
://www.apache.org/images/asf_logo_wide.gif). -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: FOP logo contest

2003-02-04 Thread Oleg Tkachenko
Max Dcosta wrote: Here is my Logo. Hope you find it pleasant. Thank you! Please put it on the web poll. Done. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Fop Logo concept

2003-02-04 Thread Oleg Tkachenko
Max Dcosta wrote: Here are two more logo's from myside, one just a color variation of the earlier. Added. Actually color variations may overflow the list, but anyway, thank you. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: Fop Logo concept

2003-02-04 Thread Oleg Tkachenko
Max Dcosta wrote: Here are two more logo's from myside, one just a color variation of the earlier. btw, in the last one string File Object Processor probably should be Formatting Objects Processor? -- Oleg Tkachenko Multiconn Technologies, Israel

Re: AW: Fop Logo concept

2003-02-04 Thread Oleg Tkachenko
Ilja Preuss wrote: What about dipping that feather in an inkpot? :-) Actually a brilliant idea. It's a pity I'm not an artist ;) -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: How to adjust page layout

2003-02-04 Thread Oleg Tkachenko
with this adjustment but when i print it i found distance is 2.1 cm instead of 1.6 cm my code is like this : Correct me if I'm wrong, but I believe printers have unprintable areas on a parer, have you tried to customize printing settings? -- Oleg Tkachenko Multiconn Technologies, Israel

Re: AW: Fop Logo concept

2003-02-04 Thread Oleg Tkachenko
Max Dcosta wrote: here it is, pls replace the wrong one with this one... thanks my friend. Done. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: PDF to FO?

2003-02-03 Thread Oleg Tkachenko
Will Spies wrote: If I have an existing PDF file is there a way to convert it to a FO file? I would like to create dynamic forms but I would rather reverse engineer a PDF file. That's impossible, pdf is lower-level format relatively to fo. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: Table column width

2003-02-03 Thread Oleg Tkachenko
. Is there any option we can set so that the PDF table columns get adjusted with the data you pass (like HTML table)? table-layout=auto is not implemented yet unfortunately. If not, how can I go head to solve this problem? Move table-column width calculation logic to xslt stage. -- Oleg Tkachenko Multiconn

Re: fop + servlet + multisession

2003-02-03 Thread Oleg Tkachenko
are not displayed.. Did FOP finish processing? Run FOP in debug mode and analize debug messages. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: FOP logo contest

2003-02-03 Thread Oleg Tkachenko
placing their vote.. Yes, that's reasonable idea, but that would require more efforts and as public votes are not actually deciding ones (FOP Team decided to reserve jury rights) I made it this way, sorry if it's wrong. -- Oleg Tkachenko Multiconn Technologies, Israel

Re: How to include an external graphic using a relative path

2003-02-03 Thread Oleg Tkachenko
, I need to be able to specify a relative path for the image file. You can define baseDir property (see faq howto) as getServletContext().getRealPath(/project/img) and then use relative pathes in fo:external-graphic. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel

Re: Antwort: Re: multithreading issues - FOP, TIFFRenderer, Solaris 4-proc machine, pja x-server

2003-02-03 Thread Oleg Tkachenko
it to bugzilla and lets consider if we can do something about it. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: external-destination

2003-02-03 Thread Oleg Tkachenko
/show_bug.cgi?id=9885. Probably that's the case. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Block Problem

2003-02-03 Thread Oleg Tkachenko
. How do I go about doing this? Having fo in source xml sounds like a really bad idea, but anyway you should use xsl:copy-of, rather than xsl:value-of to copy source subtree. xsl:copy-of select=MATTER/ -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel

Re: Different JRE versions' affect on extent/margin(s)

2003-02-03 Thread Oleg Tkachenko
to reproduce the problem. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: cannot render a solid border around a table row

2003-02-03 Thread Oleg Tkachenko
://nagoya.apache.org/bugzilla/show_bug.cgi?id=2475. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

ANN: FOP logo contest

2003-02-02 Thread Oleg Tkachenko
://xml.apache.org/fop/logocontest.html. -- Oleg Tkachenko Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: userconfig.xml in servlet

2003-01-31 Thread Oleg Tkachenko
://xml.apache.org/fop/faq.html#faq-N102DC. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: multithreading issues - FOP, TIFFRenderer, Solaris 4-proc machine, pja x-server

2003-01-31 Thread Oleg Tkachenko
), or the pja toolkit (http://www.eteks.com/pja/en/) is the problem. Yes, you have to isolate problem somehow. Can you test it without TIFFRenderer, using just regular PDFRenderer? -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel

Re: java/util/Hashmap

2003-01-31 Thread Oleg Tkachenko
Matthew Lancashire wrote: VJ++ 6.0 Yeah. I have both Sun JDK and MS JDK. Is it in there? MS JDK is ancient java 1.1.4, you cannot use it with FOP. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel - To unsubscribe

Re: userconfig.xml in servlet

2003-01-31 Thread Oleg Tkachenko
in FOP, or importing the fonts xml file directly in the servlet to the Options or Driver object? You can use org.apache.fop.configuration.Configuration.put(baseDir, getServletContext().getRealPath(/fop)); See getRealPath() documentation. -- Oleg Tkachenko eXperanto team Multiconn Technologies

Re: Counting the number of pages generated in the pdf file

2003-01-31 Thread Oleg Tkachenko
MARTIN Franck wrote: Is there any way to count the number of pages for a pdf generated file? You can get number of generated pages using driver.getResults().getPageCount(); -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel

Re: preserve space

2003-01-30 Thread Oleg Tkachenko
to modify your stylesheets in the future or while using another formatter just use this triple to preserve original text formatting. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL

Re: specify a base URL for images

2003-01-28 Thread Oleg Tkachenko
tried setting the background-image attribute to /draft.jpg and draft.jpg. Neither produced any image on the rendered PDF, but I got no error from the FOP processor. See http://xml.apache.org/fop/faq.html#faq-N102DC -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel

Re: Border attribute in fo:region-before

2003-01-24 Thread Oleg Tkachenko
, the values of the padding and border-width traits must be 0. [1] [1] http://www.w3.org/TR/xsl/slice6.html#fo_region-before -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Line numbering PDF documents

2003-01-23 Thread Oleg Tkachenko
Recommendation doesn't support such stuff, it's well-known requirement for next version. It could be done probably by some extension though. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL

Re: Error using images served by tomcat through apache HTTP server

2003-01-23 Thread Oleg Tkachenko
Koes, Derrick wrote: Does tomcat not report the correct header info or something to FOP? I don't understand why there should be a difference. Does the authentication interfere in some way? Sure. How do you think FOP can authentificate itself in your application? -- Oleg Tkachenko eXperanto team

Re: Error logged, but PDF with pictures is OK

2003-01-22 Thread Oleg Tkachenko
[EMAIL PROTECTED] wrote: I still use FOP ver. 0.20.3 . Upgrade to 0.20.5rc, there were a lot of fixes in this area. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED

  1   2   3   4   >