[EMAIL PROTECTED] wrote:
Hi Jeremias,
Jeremias Maerki <[EMAIL PROTECTED]> wrote on 12/14/2005 08:33:47 AM:
Given the number of bugs fixed and the feedback we got, I think it
should be safe to do another release tagged "beta".
If you want to do this, then we should 'fix' the PDFTranscoder
for SVG text. It appears that the main problem with Batik 1.6 is
that it calls 'registerBridges' in the base class constructor before
the subclass can 'record' it's updated bridges. I believe it is
possible to fix this by replacing:
I thought this bug was fixed in Batik's SVN Head. If so, it will be
fixed when we next do a release in Batik, and if people need a fix
sooner then they can download Batik source and build it themselves.
super(userAgent);
with:
super(init(userAgent, fontInfo, linkTransform))
It seems silly to put in a hack, when its already fixed in Batik's SVN Head.
<snip/>
[Having to employ such ugly tactics to get subclass code run before
baseclass constructor code demonstrates how silly the 'super' must
be first - compiler restriction is].
Couldn't agree more
Chris