Mailinglist Archive: opensuse-bugs (7187 mails)

< Previous Next >
[Bug 356909] Khmer rendering in Firefox sometimes incorrect
  • From: bugzilla_noreply@xxxxxxxxxx
  • Date: Tue, 29 Jan 2008 02:33:21 -0700 (MST)
  • Message-id: <20080129093321.81D5D24538D@xxxxxxxxxxxxxxxxxxxxxx>
https://bugzilla.novell.com/show_bug.cgi?id=356909

User wolfgang@xxxxxxxxxxxxx added comment
https://bugzilla.novell.com/show_bug.cgi?id=356909#c1


Wolfgang Rosenauer <wolfgang@xxxxxxxxxxxxx> changed:

What |Removed |Added
----------------------------------------------------------------------------
CC|
|wolfgang@xxxxxxxxxxxxx
Platform|x86-64 |All




--- Comment #1 from Wolfgang Rosenauer <wolfgang@xxxxxxxxxxxxx> 2008-01-29
02:33:20 MST ---
That should already work:

Firefox on openSUSE 10.3 is already built with Pango rendering enabled but
disabled for character sets where it's not needed.
The following is the part in the startscript to achieve that.
We thought it's not worth to enable pango generally since Pango with Firefox
1.x and 2.x is not very performant what we found.
Our assumption was that when not running under one of the locales below the
user
should decide himself and enable pango by exporting that variable in his
profile.

if [ -z "$MOZ_ENABLE_PANGO" -a -z "$MOZ_DISABLE_PANGO" ]; then
case "${LC_ALL-${LC_CTYPE-${LANG-en_US}}}" in
bn*|gu*|hi*|ja*|km*|kn*|ml*|mr*|pa*|ta*|te*) # list of languages which
need pango
;;
*)
export MOZ_DISABLE_PANGO=1 # disable by default
;;
esac
fi

This non-optimal solution will go away with Firefox 3.0 when it comes out since
cairo (with pango) is the default rendering engine there.


--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

< Previous Next >
References