I'm trying to upgrade BIRT to the latest runtime 3.7. Looks like that it's impossible to customize PDF fonts! In previous versions it were done in org.eclipse.birt.report.engine.fonts*/fontsConfig*.xml files.

In 3.7 fontsConfig*.xml files are embedded in BIRT runtime jar file(in my case it's org.eclipse.birt.runtime_3.7.1.v20110913-1734.jar). The jar file is signed, think it's necessary for OSGI. So if you change anything in jar, JRE throw checksum error on loading the file. If you remove the signing info, OSGI will not load it (NPE).

Any ideas how could I customize my pdf fonts without rebuilding BIRT runtime?

By the way, I suspect that the same issue presents for jdbc drivers. Above mentioned jar file contains drivers folder. Suspect that it's a stub for jdbc drivers from plugin org.eclipse.birt.report.data.oda.jdbc*.

Several years ago I asked a question regarding adding PDF fonts from BIRT runtime. It's still unanswered BIRT: pdf emitter, load/use fonts from relative path or from jar files

UPDATE:

  1. regarding pdf fonts, found open bug unresolved in 3.7.1 - https://bugs.eclipse.org/bugs/show_bug.cgi?id=347431
  2. According to http://wiki.eclipse.org/Birt_3.7_Migration_Guide#JDBC_Drivers, jdbc drivres must be in classpath
link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

It's not the cleanest way to go, but it's possible to edit them inside the jar file. You can remove the signature by deleting META-INF/ECLIPSEF.SF and removing everything from META-INF/MANIFEST.MF that goes after it's main section (filenames and digests...alternatively, remove just sections of the config files). It's not required to have the jar signed (I suppose it depends on security manager's settings, but under default settings it runs fine).

link|improve this answer
You saved my life :) Thank you (handshake). – FoxyBOA Oct 3 '11 at 19:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.