text-decoration

2005-01-13 Thread Peter B. West
Fop-devs, In spite of the huffing and puffing, my original implementation of text-decoration was wrong. Such hubris. Currently being corrected in Defoe. Peter

Re: Implementing text-decoration

2005-01-05 Thread Glen Mazza
I looked at the code and I can't see anything wrong with your suggestion. Unfortunately I'm far from an expert in this area of the code. Glen --- Jeremias Maerki <[EMAIL PROTECTED]> wrote: > I'm currently looking at implementing > text-decoration. ATM it's &g

Re: Implementing text-decoration

2005-01-04 Thread Peter B. West
Victor Mote wrote: Jeremias Maerki wrote: I'm currently looking at implementing text-decoration. ATM it's specified as an EnumProperty but should be more like a set of enums with certain validation rules applied. I'm unsure about the approach. If anyone already has an idea how

RE: Implementing text-decoration

2005-01-04 Thread Victor Mote
Jeremias Maerki wrote: > I'm currently looking at implementing text-decoration. ATM > it's specified as an EnumProperty but should be more like a > set of enums with certain validation rules applied. I'm > unsure about the approach. If anyone already has an idea how

Implementing text-decoration

2005-01-04 Thread Jeremias Maerki
I'm currently looking at implementing text-decoration. ATM it's specified as an EnumProperty but should be more like a set of enums with certain validation rules applied. I'm unsure about the approach. If anyone already has an idea how it should look like I'd appreciate any ins

DO NOT REPLY [Bug 25275] New: - fo:page-number ignores text-decoration="underline" attribute

2003-12-07 Thread bugzilla
gzilla/show_bug.cgi?id=25275 fo:page-number ignores text-decoration="underline" attribute Summary: fo:page-number ignores text-decoration="underline" attribute Product: Fop Version: 0.20.5 Platform: Other

Re: thoughts on fonts (was: text-decoration)

2003-01-13 Thread Peter B. West
Victor Mote wrote: Jeremias Maerki wrote: It is very possible that I am missing something, but our memory-lean event-based model would seem to dictate either 1) parsing the document twice, or 2) not allowing multiple output formats in the same document. I think my approach could work in this

Re: thoughts on fonts (was: text-decoration)

2003-01-13 Thread Jeremias Maerki
On 11.01.2003 18:35:37 Victor Mote wrote: > Keiron Liddle wrote: > > > If I understand it correctly we could have: > > - multiple output targets for one rendering run > > - targets with the same font metrics can layout to a common area tree > > - targets with similar or substitute metrics could f

Re: thoughts on fonts (was: text-decoration)

2003-01-13 Thread Jeremias Maerki
On 13.01.2003 19:18:18 Victor Mote wrote: > Jeremias Maerki wrote: > > > Can we sketch that on the Wiki in some simple way? Defining some Java > > interfaces and things like that? Anyway, as you mentioned we should sort > > out things like "Session" and "Document" on another page first. > > OK,

RE: thoughts on fonts (was: text-decoration)

2003-01-13 Thread Victor Mote
Jeremias Maerki wrote: > Can we sketch that on the Wiki in some simple way? Defining some Java > interfaces and things like that? Anyway, as you mentioned we should sort > out things like "Session" and "Document" on another page first. OK, I just put a proposal out there in the section discussing

Re: thoughts on fonts (was: text-decoration)

2003-01-11 Thread Peter B. West
Victor Mote wrote: There are some big picture things that we should probably address: 1. (Biggest of all) Do we have users that need to be able to do this? Are the performance gains that they might get worth the pain on our end? Apart from this is the fact that our processing model for any rend

Re: text-decoration

2003-01-11 Thread Oleg Tkachenko
Keiron Liddle wrote: Have you managed to work out how the underline/overline should work, for example when there are embedded inline areas that contain a different font, colour or baseline. Well, not really. I just wanted to make something simple done :) afaiu different font/colour/etc embedded

RE: thoughts on fonts (was: text-decoration)

2003-01-11 Thread Victor Mote
Keiron Liddle wrote: > If I understand it correctly we could have: > - multiple output targets for one rendering run > - targets with the same font metrics can layout to a common area tree > - targets with similar or substitute metrics could force layout > to one area tree > - other targets can ha

Re: thoughts on fonts (was: text-decoration)

2003-01-10 Thread Jeremias Maerki
Hi Keiron > If I understand it correctly we could have: > - multiple output targets for one rendering run > - targets with the same font metrics can layout to a common area tree > - targets with similar or substitute metrics could force layout to one area tree > - other targets can have different

Re: thoughts on fonts (was: text-decoration)

2003-01-10 Thread Keiron Liddle
> > > properly discuss things like Session, Document, Rendering run, FOP > > > instances etc. Where to cache what? What objects/services hold/provide > > > > In my mind Document and Rendering run (as defined in the glossary) are > > probably the same thing (??). I added something called Rendering

Re: thoughts on fonts (was: text-decoration)

2003-01-10 Thread Jeremias Maerki
Hi Victor On 09.01.2003 19:09:17 Victor Mote wrote: > Let me say up front that I am going to follow your lead here. I'm not taking the lead. We'll work together on this. I see that you have some ideas yourself, so let's see what we can come up with together. As far as I can see from your commen

RE: thoughts on fonts (was: text-decoration)

2003-01-09 Thread Victor Mote
Jeremias Maerki wrote: > A Wiki is probably easier to work with in this case. CVS update, edit, > CVS commit, Website update is a lot of work. I'll start a Wiki page and > add my thoughts to it. We can always transfer the contents back to XML > later. Good. I don't think I knew what a wiki was wh

Re: thoughts on fonts (was: text-decoration)

2003-01-09 Thread Jeremias Maerki
I've added my current thoughts to a Wiki page for those interested in this discussion: http://nagoya.apache.org/wiki/apachewiki.cgi?FOPFontSubsystemDesign You're all welcome to participate. Jeremias Maerki - To unsubscribe, e-

Re: thoughts on fonts (was: text-decoration)

2003-01-08 Thread Jeremias Maerki
Hi Victor Good that you spoke up, so we can discuss this. On 08.01.2003 19:31:35 Victor Mote wrote: > Jeremias Maerki wrote: > > > TextInfo looks better but could IMO be merged with FontState which only > > hold the font name and size and a link to the FontMetrics. Anyway, I > > think this merge

RE: text-decoration

2003-01-08 Thread Victor Mote
Jeremias Maerki wrote: > TextInfo looks better but could IMO be merged with FontState which only > hold the font name and size and a link to the FontMetrics. Anyway, I > think this merged class will be a candidate for the Flyweight pattern so > we don't generate so many TextInfo/FontState objects

Re: text-decoration

2003-01-08 Thread Jeremias Maerki
Hi Oleg On 08.01.2003 13:11:34 Oleg Tkachenko wrote: > How are we going to process underline/overline etc stuff? > It's a little bit confusing - we've got unused TextState class along with > TextInfo that includes text-decoration info already. Lets get rid of TextState

Re: text-decoration

2003-01-08 Thread Keiron Liddle
> Hello! > > How are we going to process underline/overline etc stuff? > It's a little bit confusing - we've got unused TextState class along with > TextInfo that includes text-decoration info already. Lets get rid of TextState ? > And what about rendering, does

Re: text-decoration

2003-01-08 Thread Oleg Tkachenko
Jeremias Maerki wrote: Wait a minute! I'm just about to commit a huge bunch of changes which includes TextInfo/FontState stuff. Not that I changed a lot. I've just got rid of stuff that wasn't used and I don't want you to have to change a lot again after my commit. That's fine. -- Oleg Tkachenk

Re: text-decoration

2003-01-08 Thread Jeremias Maerki
ff? > It's a little bit confusing - we've got unused TextState class along with > TextInfo that includes text-decoration info already. Lets get rid of TextState ? > And what about rendering, does pdf support text-decoration directly or we have

text-decoration

2003-01-08 Thread Oleg Tkachenko
Hello! How are we going to process underline/overline etc stuff? It's a little bit confusing - we've got unused TextState class along with TextInfo that includes text-decoration info already. Lets get rid of TextState ? And what about rendering, does pdf support text-decoration dire

DO NOT REPLY [Bug 5655] - text-decoration cannot take multiple values

2002-11-13 Thread bugzilla
gzilla/show_bug.cgi?id=5655 text-decoration cannot take multiple values [EMAIL PROTECTED] changed: What|Removed |Added Status|NEW |ASSIGNED --- Addi

DO NOT REPLY [Bug 1923] - text-decoration does not work

2002-11-11 Thread bugzilla
gzilla/show_bug.cgi?id=1923 text-decoration does not work [EMAIL PROTECTED] changed: What|Removed |Added Status|NEW |RESOLVED Reso

DO NOT REPLY [Bug 1923] - text-decoration does not work

2002-04-22 Thread bugzilla
gzilla/show_bug.cgi?id=1923 text-decoration does not work [EMAIL PROTECTED] changed: What|Removed |Added Priority||High --- Additional Comment

[Fwd: text-shadow and text-decoration]

2002-03-07 Thread Peter B. West
The editors, 7.16.5 "text-shadow" has offsets defined in terms of "horizontal distance to the right" and "vertical distance below" the text. The section also specifies: Inherited: no, see prose There is no mention of inheritance in the prose of section 7.

DO NOT REPLY [Bug 4492] - text-decoration="underline" on fo:block ignored

2002-02-08 Thread bugzilla
gzilla/show_bug.cgi?id=4492 text-decoration="underline" on fo:block ignored [EMAIL PROTECTED] changed: What|Removed |Added Status|NEW

[PATCH] more text-decoration (maintenance branch)

2002-01-09 Thread Christian Geisert
Ok, this should be my last patch for this maintenance release ;-) It adds inheritance for the text-decoration property from parent inline or block elements and fixes a bug with non-breaking spaces (but not all) Christian Index: docs/examples/fo/textdeko.fo

DO NOT REPLY [Bug 5655] New: - text-decoration cannot take multiple values

2002-01-02 Thread bugzilla
gzilla/show_bug.cgi?id=5655 text-decoration cannot take multiple values Summary: text-decoration cannot take multiple values Product: Fop Version: all Platform: PC OS/Version: Windows NT/2K Status: NEW Severity: Normal Pr

Re: [PATCH] text-decoration for blocks (maintenance branch)

2001-12-13 Thread Christian Geisert
Tore Engvig wrote: > > Christian Geisert wrote: > > > Hi, > > > > this patch adds text-decoration support for blocks. There still > > some things > > I want to do (like inherit text-decoration from a parent inline, > > problems with > > hyp

RE: [PATCH] text-decoration for blocks (maintenance branch)

2001-12-13 Thread Tore Engvig
Christian Geisert wrote: > Hi, > > this patch adds text-decoration support for blocks. There still > some things > I want to do (like inherit text-decoration from a parent inline, > problems with > hyphenation and  ). Actually I think fop supports   (more or less). Also

Re: [PATCH] text-decoration for blocks (maintenance branch)

2001-12-13 Thread Keiron Liddle
Hi, I have submitted this patch to the branch. On 2001.12.12 19:04 Christian Geisert wrote: > Hi, > > this patch adds text-decoration support for blocks. There still some > things > I want to do (like inherit text-decoration from a parent inline, problems > with

[PATCH] text-decoration for blocks (maintenance branch)

2001-12-12 Thread Christian Geisert
Hi, this patch adds text-decoration support for blocks. There still some things I want to do (like inherit text-decoration from a parent inline, problems with hyphenation and  ). Christian Index: docs/examples/fo/textdeko.fo

DO NOT REPLY [Bug 4492] - text-decoration="underline" on fo:block ignored

2001-11-28 Thread bugzilla
gzilla/show_bug.cgi?id=4492 text-decoration="underline" on fo:block ignored --- Additional Comments From [EMAIL PROTECTED] 2001-11-28 05:04 --- Christian Geisert <[EMAIL PROTECTED]> sent this to fop-dev: > But to underline one must use fo:inline, right?? At the moment: y

DO NOT REPLY [Bug 4492] New: - text-decoration="underline" on fo:block ignored

2001-10-29 Thread bugzilla
gzilla/show_bug.cgi?id=4492 text-decoration="underline" on fo:block ignored Summary: text-decoration="underline" on fo:block ignored Product: Fop Version: 0.15 Platform: Sun OS/Version: Solaris Status: NEW

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 ?  

RE: Text-Decoration (underline) Problem

2001-07-03 Thread John Wyman
oc 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

Re: Text-Decoration (underline) Problem

2001-07-03 Thread Christian Geisert
> 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&#x

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

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

Re: text-decoration in block

2001-06-06 Thread Christian Geisert
Hoang Nam wrote: > > Hello all, > > I have put the property text-decoration="underline" in block level and it > did not work . > It works only in inline object. > > Could sombody tell me what I am doing wrong ? Could we have the property > text-decoration

text-decoration in block

2001-06-06 Thread Hoang Nam
Hello all, I have put the property text-decoration="underline" in block level and it did not work . It works only in inline object. Could sombody tell me what I am doing wrong ? Could we have the property text-decoration in a block ? Or it is not implemented yet in block in FOP ? T