[syigwei@zoho.com: Dillo pre3 cannot view Chinese websites]
Syi Gwei wrote:
I have switched from Dillo 2.2 (hg 1819) to Dillo pre3 (hg 2103) but I do not seem to be able to view any Chinese websites - nothing but tiny squares.
Am I missing something?
Ah, I see that it's different now. With dillo2, I could specify font_sans_serif="wenquanyi zen hei" but now we get Found font: ????? Found font: ??????? It works for me if I use font_sans_serif="?????" As for whether this behaviour is better or worse than using the romanized name, I don't know. Of course it's blind cutting and pasting for _me_ because I can't read Chinese, but I'm not the target audience for it...
I wrote:
Syi Gwei wrote:
I have switched from Dillo 2.2 (hg 1819) to Dillo pre3 (hg 2103) but I do not seem to be able to view any Chinese websites - nothing but tiny squares.
Am I missing something?
Ah, I see that it's different now. With dillo2, I could specify font_sans_serif="wenquanyi zen hei" but now we get Found font: ????? Found font: ???????
It works for me if I use font_sans_serif="?????"
As for whether this behaviour is better or worse than using the romanized name, I don't know. Of course it's blind cutting and pasting for _me_ because I can't read Chinese, but I'm not the target audience for it...
Errr, I guess it would still be a problem for all of the CSS out there that specifies Asian fonts using their romanized names.
hi On Thu, 30 Jun 2011 19:31:49 +0000, "corvid" <corvid@lavabit.com> wrote:
but I do not seem to be able to view any Chinese websites - nothing but tiny squares.
seems that is using the wrong font (no chinese support)
font_sans_serif="wenquanyi zen hei" (...) font_sans_serif="?????"
I tested and with dillo fltk1.3 i can use font_sans_serif="WenQuanYi Zen Hei" and see the chinese sites fine... i do see this: (..) Found font: WenQuanYi Zen Hei Found font: ???????? Found font: ?????? ????? Found font: ???????? so maybe its a distro thing? (slackware64 here) higuita -- Naturally the common people don't want war... but after all it is the leaders of a country who determine the policy, and it is always a simple matter to drag the people along, whether it is a democracy, or a fascist dictatorship, or a parliament, or a communist dictatorship. Voice or no voice, the people can always be brought to the bidding of the leaders. That is easy. All you have to do is tell them they are being attacked, and denounce the pacifists for lack of patriotism and exposing the country to danger. It works the same in every country. -- Hermann Goering, Nazi and war criminal, 1883-1946
higuita wrote:
On Thu, 30 Jun 2011 19:31:49 +0000, "corvid" <corvid@lavabit.com> wrote:
but I do not seem to be able to view any Chinese websites - nothing but tiny squares.
seems that is using the wrong font (no chinese support)
font_sans_serif="wenquanyi zen hei" (...) font_sans_serif="?????"
I tested and with dillo fltk1.3 i can use
font_sans_serif="WenQuanYi Zen Hei"
and see the chinese sites fine... i do see this:
(..) Found font: WenQuanYi Zen Hei Found font: ???????? Found font: ?????? ????? Found font: ????????
so maybe its a distro thing? (slackware64 here)
I'm using 32-bit Slackware. But, hmmm, interesting...
higuita wrote:
On Thu, 30 Jun 2011 19:31:49 +0000, "corvid" <corvid@lavabit.com> wrote:
but I do not seem to be able to view any Chinese websites - nothing but tiny squares.
seems that is using the wrong font (no chinese support)
font_sans_serif="wenquanyi zen hei" (...) font_sans_serif="?????"
I tested and with dillo fltk1.3 i can use
font_sans_serif="WenQuanYi Zen Hei"
and see the chinese sites fine... i do see this:
(..) Found font: WenQuanYi Zen Hei Found font: ???????? Found font: ?????? ????? Found font: ????????
so maybe its a distro thing? (slackware64 here)
What format do you see in fc-list? I get "WenQuanYi Zen Hei,?????,?????:style=Medium,??". In Fl::set_fonts() in fl_set_fonts_xft.cxx, it strips it down to "?????,?????:style=Medium", and then make_raw_name() has the comment // It is still possible that the "pretty" name has multiple comma separated entries // I've seen this often in CJK fonts, for example... Keep only the first one... This // is not ideal, the CJK fonts often have the name in utf8 in several languages. What // we ought to do is use fontconfig to query the available languages and pick one... But which? ..which I didn't bother to step through, but is consistent with what I get...
Hi again, sorry the delay On Thu, 30 Jun 2011 23:58:39 +0000, "corvid" <corvid@lavabit.com> wrote:
What format do you see in fc-list? I get "WenQuanYi Zen Hei,?????,?????:style=Medium,??".
The same: WenQuanYi Zen Hei Mono,???????,???????:style=Medium,?? ... so i should have see the same, right? higuita -- Naturally the common people don't want war... but after all it is the leaders of a country who determine the policy, and it is always a simple matter to drag the people along, whether it is a democracy, or a fascist dictatorship, or a parliament, or a communist dictatorship. Voice or no voice, the people can always be brought to the bidding of the leaders. That is easy. All you have to do is tell them they are being attacked, and denounce the pacifists for lack of patriotism and exposing the country to danger. It works the same in every country. -- Hermann Goering, Nazi and war criminal, 1883-1946
higuita wrote:
On Thu, 30 Jun 2011 23:58:39 +0000, "corvid" <corvid@lavabit.com> wrote:
What format do you see in fc-list? I get "WenQuanYi Zen Hei,?????,?????:style=Medium,??".
The same:
WenQuanYi Zen Hei Mono,???????,???????:style=Medium,??
... so i should have see the same, right?
Apparently not :) How about if we stick a printf in fltk like: $ svn diff Index: src/fl_set_fonts_xft.cxx =================================================================== --- src/fl_set_fonts_xft.cxx (revision 8847) +++ src/fl_set_fonts_xft.cxx (working copy) @@ -271,6 +271,7 @@ // Century Schoolbook:style=Bold Italic,fed kursiv,Fett Kursiv,... // So the bit we want is up to the first comma - BUT some strings have // more than one name, separated by, guess what?, a comma... +printf("set_fonts: %s\n", font); stop = start = first = 0; stop = strchr((char *)font, ','); start = strchr((char *)font, ':');
I wanted to make a screenshot with wenquanyi zen hei and dillo3 in order to mention the change in specifying the font name, and I get boxes when the text is bold or italic.
Hi again On Thu, 14 Jul 2011 19:58:56 +0000, "corvid" <corvid@lavabit.com> wrote:
I wanted to make a screenshot with wenquanyi zen hei and dillo3 in order to mention the change in specifying the font name, and I get boxes when the text is bold or italic.
I checked and that font don't define bold and italic styles, so is being replaced by other fonts...i dont have any Chinese font with bold or italic defined, so i also get a "box" from some random font. Looking to the Chinese characters, i would imagine that italic and bold don't make much sense, only make even harder to read, maybe only very special fonts may have it... maybe a native speaking may give some light over this? Either way, its possible and the user need a Chinese font with bold/italic support or else will see wrong characters. higuita -- Naturally the common people don't want war... but after all it is the leaders of a country who determine the policy, and it is always a simple matter to drag the people along, whether it is a democracy, or a fascist dictatorship, or a parliament, or a communist dictatorship. Voice or no voice, the people can always be brought to the bidding of the leaders. That is easy. All you have to do is tell them they are being attacked, and denounce the pacifists for lack of patriotism and exposing the country to danger. It works the same in every country. -- Hermann Goering, Nazi and war criminal, 1883-1946
higuita wrote:
On Thu, 14 Jul 2011 19:58:56 +0000, "corvid" <corvid@lavabit.com> wrote:
I wanted to make a screenshot with wenquanyi zen hei and dillo3 in order to mention the change in specifying the font name, and I get boxes when the text is bold or italic.
I checked and that font don't define bold and italic styles, so is being replaced by other fonts...i dont have any Chinese font with bold or italic defined, so i also get a "box" from some random font.
Looking to the Chinese characters, i would imagine that italic and bold don't make much sense, only make even harder to read, maybe only very special fonts may have it... maybe a native speaking may give some light over this?
Either way, its possible and the user need a Chinese font with bold/italic support or else will see wrong characters.
Yeah, it's similar to what I'd mentioned before about URW Chancery L only having an italic form. I suppose that, in the general case, we probably care more about matching the font family than about matching the weight/style.
On Thu, Jul 14, 2011 at 11:53:25PM +0000, corvid wrote:
higuita wrote:
On Thu, 14 Jul 2011 19:58:56 +0000, "corvid" <corvid@lavabit.com> wrote:
I wanted to make a screenshot with wenquanyi zen hei and dillo3 in order to mention the change in specifying the font name, and I get boxes when the text is bold or italic.
I checked and that font don't define bold and italic styles, so is being replaced by other fonts...i dont have any Chinese font with bold or italic defined, so i also get a "box" from some random font.
Looking to the Chinese characters, i would imagine that italic and bold don't make much sense, only make even harder to read, maybe only very special fonts may have it... maybe a native speaking may give some light over this?
Either way, its possible and the user need a Chinese font with bold/italic support or else will see wrong characters.
Yeah, it's similar to what I'd mentioned before about URW Chancery L only having an italic form. I suppose that, in the general case, we probably care more about matching the font family than about matching the weight/style.
Good point. We should change this in FltkFont::initSystemFonts (). Cheers, Johannes
Hi again Sorry the delay On Mon, 4 Jul 2011 23:57:59 +0000, "corvid" <corvid@lavabit.com> wrote:
How about if we stick a printf in fltk like:
applied the patch to fltk_1.3, make, make install, run dillo: $ dillo http://top.baidu.com dillo_dns_init: Here we go! (threaded) Enabling cookies as from cookiesrc... Found font: sans Found font: sans bold Found font: sans italic Found font: sans bold italic Found font: mono Found font: mono bold Found font: mono italic Found font: mono bold italic Found font: serif Found font: serif bold Found font: serif italic Found font: serif bold italic Found font: symbol Found font: screen Found font: screen bold Found font: zapf dingbats Found font: \\u09ae\\u09bf\\u09a4\\u09cd\\u09b0 Found font: aakar Found font: Allerta Found font: Allerta Found font: anorexia Found font: aqui bold Found font: artwiz\-cursor.pcf Found font: Bitstream Charter Found font: Bitstream Charter bold Found font: Bitstream Charter bold italic Found font: Bitstream Charter italic Found font: Century Schoolbook L bold Found font: Century Schoolbook L bold italic Found font: Century Schoolbook L italic Found font: Century Schoolbook L Found font: Chandas Found font: Clean Found font: ClearlyU Alternate Glyphs Found font: ClearlyU PUA Found font: ClearlyU Found font: ConsolaMono Found font: Courier 10 Pitch Found font: Courier 10 Pitch bold Found font: Courier 10 Pitch bold italic Found font: Courier 10 Pitch italic Found font: Courier Found font: Courier bold Found font: Courier bold italic Found font: Courier italic Found font: cure Found font: cursor.pcf Found font: Cursor Found font: deccurs.pcf Found font: decsess.pcf Found font: DejaVu Sans Condensed Found font: DejaVu Sans Condensed bold Found font: DejaVu Sans Condensed bold italic Found font: DejaVu Sans Condensed italic Found font: DejaVu Sans Light Found font: DejaVu Sans Mono bold Found font: DejaVu Sans Mono bold italic Found font: DejaVu Sans Mono Found font: DejaVu Sans Mono italic Found font: DejaVu Sans bold Found font: DejaVu Sans bold italic Found font: DejaVu Sans Found font: DejaVu Sans italic Found font: DejaVu Serif Condensed Found font: DejaVu Serif Condensed bold Found font: DejaVu Serif Condensed bold italic Found font: DejaVu Serif Condensed italic Found font: DejaVu Serif bold Found font: DejaVu Serif bold italic Found font: DejaVu Serif Found font: DejaVu Serif italic Found font: Dingbats Found font: drift Found font: East Syriac Adiabene Found font: East Syriac Ctesiphon Found font: edges Found font: Estrangelo Antioch Found font: Estrangelo Edessa Found font: Estrangelo Midyat Found font: Estrangelo Nisibin Outline Found font: Estrangelo Nisibin Found font: Estrangelo Quenneshrin Found font: Estrangelo Talada Found font: Estrangelo TurAbdin Found font: Fixed Found font: Fixed bold Found font: Fixed bold Found font: Fixed Found font: Fixed Found font: Fixed italic Found font: Fixed italic Found font: Fixed Found font: fkp Found font: FreeMono Found font: FreeMono Found font: FreeMono Found font: FreeMono Found font: FreeSans bold Found font: FreeSans bold Found font: FreeSans Found font: FreeSans italic Found font: FreeSerif bold Found font: FreeSerif bold Found font: FreeSerif italic Found font: FreeSerif Found font: Gargi_1.7 Found font: gelly Found font: glisp Found font: glispbold bold Found font: Goha\-Tibeb Zemen Found font: Graziano Found font: Jamrul Found font: kates Found font: Kedage bold Found font: Kedage bold Found font: Kedage Found font: Kedage Found font: Liberation Mono Found font: Liberation Mono bold Found font: Liberation Mono bold italic Found font: Liberation Mono italic Found font: Liberation Sans Narrow Found font: Liberation Sans Narrow bold Found font: Liberation Sans Narrow bold italic Found font: Liberation Sans Narrow italic Found font: Liberation Sans Found font: Liberation Sans bold Found font: Liberation Sans bold italic Found font: Liberation Sans italic Found font: Liberation Serif Found font: Liberation Serif bold Found font: Liberation Serif bold italic Found font: Liberation Serif italic Found font: Likhan Found font: lime Found font: LKLUG Found font: Lohit Bengali Found font: Lohit Gujarati Found font: Lohit Hindi Found font: Lohit Punjabi Found font: Lohit Tamil Found font: Luxi Mono Found font: Luxi Mono bold Found font: Luxi Mono bold italic Found font: Luxi Mono italic Found font: Luxi Sans Found font: Luxi Sans bold Found font: Luxi Sans bold italic Found font: Luxi Sans italic Found font: Luxi Serif Found font: Luxi Serif bold Found font: Luxi Serif bold italic Found font: Luxi Serif italic Found font: Mallige bold Found font: Mallige bold Found font: Mallige Found font: Mallige Found font: micro.pcf Found font: mintsmild Found font: mintsstrong Found font: Neocyr Found font: Newspaper Found font: Nimbus Mono L Found font: Nimbus Mono L italic Found font: Nimbus Mono L bold Found font: Nimbus Mono L bold italic Found font: Nimbus Roman No9 L Found font: Nimbus Roman No9 L italic Found font: Nimbus Roman No9 L Found font: Nimbus Roman No9 L italic Found font: Nimbus Sans L Found font: Nimbus Sans L Found font: Nimbus Sans L italic Found font: Nimbus Sans L italic Found font: Nimbus Sans L bold Found font: Nimbus Sans L bold Found font: Nimbus Sans L bold italic Found font: Nimbus Sans L bold italic Found font: NotCourierSans Found font: NotCourierSans bold Found font: nu Found font: padmmaa bold Found font: padmmaa Found font: Pothana2000 Found font: Pothana2000 Found font: Purisa bold Found font: Purisa bold Found font: Purisa Found font: Purisa italic Found font: Rekha Found font: Saab Found font: Samanata Found font: Samyak Found font: Serto Batnan Found font: Serto Batnan bold Found font: Serto Jerusalem Outline Found font: Serto Jerusalem Found font: Serto Jerusalem bold Found font: Serto Jerusalem italic Found font: Serto Kharput Found font: Serto Malankara Found font: Serto Mardin Found font: Serto Mardin bold Found font: Serto Urhoy Found font: Serto Urhoy bold Found font: smoothansi Found font: snap Found font: Spranq eco sans Found font: Standard Symbols L Found font: TAMu_Kadambri Found font: TAMu_Kalyani Found font: TAMu_Maduram Found font: Tibetan Machine Uni Found font: TSCu_Comic Found font: TSCu_Paranar Found font: TSCu_Paranar bold Found font: TSCu_Paranar italic Found font: TSCu_Times Found font: Ubuntu Found font: Ubuntu Found font: Ubuntu Found font: Ubuntu Found font: URW Bookman L bold Found font: URW Bookman L bold italic Found font: URW Bookman L Found font: URW Bookman L italic Found font: URW Chancery L italic Found font: URW Gothic L Found font: URW Gothic L italic Found font: URW Gothic L Found font: URW Gothic L italic Found font: URW Palladio L bold Found font: URW Palladio L bold italic Found font: URW Palladio L italic Found font: URW Palladio L Found font: utkal Found font: Utopia Found font: Utopia bold Found font: Utopia bold italic Found font: Utopia italic Found font: WenQuanYi Zen Hei Mono Found font: WenQuanYi Zen Hei Mono Found font: WenQuanYi Zen Hei Sharp Found font: WenQuanYi Zen Hei Found font: WenQuanYi Zen Hei Found font: ???????????????? Found font: ????????? Dvf Found font: ???????? Found font: ?????? ????? Found font: ???????? Found font: ?????? Nav_open_url: new url='http://top.baidu.com' Dns_server [0]: 127.0.0.1 is 127.0.0.1 Connecting to 127.0.0.1
a_Nav_repush <<<< Nav_open_url: new url='http://top.baidu.com' a_Nav_expect_done: repush! NumPendingStyleSheets=1 NumPendingStyleSheets=2 NumPendingStyleSheets=3 a_Nav_repush <<<< Nav_open_url: new url='http://top.baidu.com' a_Nav_expect_done: repush!
I see the page with Chinese fonts, but no message... maybe that code is not used in my machine? best regards, higuita -- Naturally the common people don't want war... but after all it is the leaders of a country who determine the policy, and it is always a simple matter to drag the people along, whether it is a democracy, or a fascist dictatorship, or a parliament, or a communist dictatorship. Voice or no voice, the people can always be brought to the bidding of the leaders. That is easy. All you have to do is tell them they are being attacked, and denounce the pacifists for lack of patriotism and exposing the country to danger. It works the same in every country. -- Hermann Goering, Nazi and war criminal, 1883-1946
higuita wrote:
On Mon, 4 Jul 2011 23:57:59 +0000, "corvid" <corvid@lavabit.com> wrote:
How about if we stick a printf in fltk like:
applied the patch to fltk_1.3, make, make install, run dillo:
[...]
I see the page with Chinese fonts, but no message...
maybe that code is not used in my machine?
Did you make a new dillo binary with it linked in?
On Thu, 14 Jul 2011 21:40:01 +0000, "corvid" <corvid@lavabit.com> wrote:
How about if we stick a printf in fltk like: Did you make a new dillo binary with it linked in?
oops, i forgot that fltk is build static in dillo... ... after recompile i get: $ dillo http://top.baidu.com dillo_dns_init: Here we go! (threaded) Enabling cookies as from cookiesrc... set_fonts: Tibetan Machine Uni:style=Regular set_fonts: Luxi Serif:style=Regular set_fonts: Liberation Mono:style=Regular set_fonts: Saab:style=Regular set_fonts: Utopia:style=Bold Italic set_fonts: Nimbus Sans L:style=Regular Italic set_fonts: Ubuntu:style=Regular,Normal,Standard,Normaali,Normale,Standaard,Normalny,Arrunta set_fonts: Spranq eco sans:style=Regular set_fonts: DejaVu Serif,DejaVu Serif Condensed:style=Condensed,Book set_fonts: TSCu_Paranar:style=Bold set_fonts: Liberation Sans Narrow:style=Regular set_fonts: Serto Malankara:style=Regular set_fonts: URW Palladio L:style=Roman set_fonts: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold Italic,Bold Italic set_fonts: Century Schoolbook L:style=Bold Italic set_fonts: Luxi Serif:style=Bold set_fonts: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold,Bold set_fonts: Liberation Sans:style=Regular set_fonts: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Oblique,Oblique set_fonts: Lohit Punjabi:style=Regular set_fonts: DejaVu Sans Mono:style=Bold Oblique set_fonts: Mallige:style=BoldItalic set_fonts: Serto Mardin:style=Regular set_fonts: Liberation Serif:style=Bold Italic set_fonts: Fixed:style=Bold set_fonts: aqui:style=bold set_fonts: Kedage:style=NormalItalic set_fonts: Estrangelo Edessa:style=Regular set_fonts: Serto Kharput:style=Regular set_fonts: DejaVu Serif:style=Bold Italic set_fonts: Samanata:style=Regular set_fonts: Nimbus Sans L:style=Bold set_fonts: Clean:style=Regular set_fonts: Ubuntu:style=Negrito It?lico,Bold Italic,Negreta cursiva,fed kursiv,Fett Kursiv,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Fet Kursiv,Lodi etzana set_fonts: Luxi Mono:style=Bold set_fonts: Utopia:style=Bold set_fonts: Estrangelo Nisibin:style=Regular set_fonts: Likhan:style=Normal set_fonts: Gargi_1.7:style=Medium set_fonts: ClearlyU PUA:style=Regular set_fonts: edges:style=Regular set_fonts: gelly:style=Regular set_fonts: URW Chancery L:style=Medium Italic set_fonts: Bitstream Charter:style=Bold Italic set_fonts: Luxi Sans:style=Bold set_fonts: Serto Batnan:style=Bold set_fonts: TSCu_Times:style=Normal set_fonts: Mukti Narrow,????????????????:style=Regular set_fonts: Pothana2000:style=Pothana2000,Regular set_fonts: Samyak:style=\_Malayalam set_fonts: DejaVu Sans:style=Bold Oblique set_fonts: ???????,WenQuanYi Zen Hei Mono,???????:style=??,Medium set_fonts: Liberation Sans Narrow:style=Bold set_fonts: Nimbus Roman No9 L:style=Regular set_fonts: Century Schoolbook L:style=Bold set_fonts: Century Schoolbook L:style=Italic set_fonts: Mukti Narrow,?????? ?????,Mukti Narrow Bold:style=Regular,Bold set_fonts: TAMu_Maduram:style=Normal set_fonts: Estrangelo Midyat:style=Regular set_fonts: Estrangelo Talada:style=Regular set_fonts: anorexia:style=Regular set_fonts: Courier:style=Bold Italic set_fonts: Luxi Sans:style=Regular set_fonts: Nimbus Sans L:style=Regular set_fonts: nu:style=Regular set_fonts: FreeSerif:style=Bold,polkrepko set_fonts: smoothansi:style=Regular set_fonts: Courier:style=Regular set_fonts: URW Palladio L:style=Italic set_fonts: Cursor:style=Regular set_fonts: glisp:style=Regular set_fonts: Mallige:style=Bold set_fonts: Nimbus Sans L:style=Bold Condensed set_fonts: Estrangelo Quenneshrin:style=Regular set_fonts: URW Gothic L:style=Demi set_fonts: Liberation Serif:style=Bold set_fonts: FreeSerif:style=Italic,le?e?e set_fonts: Serto Jerusalem:style=Regular set_fonts: lime:style=Regular set_fonts: Liberation Mono:style=Bold Italic set_fonts: Liberation Sans Narrow:style=Italic set_fonts: East Syriac Ctesiphon:style=Regular set_fonts: Nimbus Roman No9 L:style=Medium Italic set_fonts: Bitstream Charter:style=Regular set_fonts: Fixed:style=Bold SemiCondensed set_fonts: Nimbus Mono L:style=Bold Oblique set_fonts: Sazanami Mincho,??????:style=Regular,Mincho-Regular set_fonts: FreeSans:style=Medium,navadno set_fonts: Ubuntu:style=It?lico,Italic,Cursiva,kursiv,Kursivoitu,Italique,Corsivo,Cursief,Kursywa,Etzana set_fonts: Kalimati,????????:style=Regular,???????? set_fonts: Serto Jerusalem Outline:style=Regular set_fonts: Dingbats:style=Regular set_fonts: Fixed:style=SemiCondensed set_fonts: Nimbus Roman No9 L:style=Medium set_fonts: Kedage:style=Bold set_fonts: Nimbus Sans L:style=Bold Italic set_fonts: Kedage:style=BoldItalic set_fonts: Courier 10 Pitch:style=Bold Italic set_fonts: TSCu_Comic:style=Normal set_fonts: Luxi Mono:style=Regular set_fonts: ?????,WenQuanYi Zen Hei,?????:style=??,Medium set_fonts: Estrangelo Antioch:style=Regular set_fonts: DejaVu Sans:style=Oblique set_fonts: Nimbus Mono L:style=Regular set_fonts: FreeSans:style=Oblique,le?e?e set_fonts: Bitstream Charter:style=Italic set_fonts: Newspaper:style=Regular set_fonts: Serto Urhoy:style=Bold set_fonts: URW Gothic L:style=Book set_fonts: mintsstrong:style=Regular set_fonts: Jamrul:style=Normal set_fonts: ClearlyU:style=Regular set_fonts: aratii,aakar,release:style=gnubha,Medium, Under set_fonts: Mitra Mono,\\u09ae\\u09bf\\u09a4\\u09cd\\u09b0:style=Regular set_fonts: micro.pcf:style=Regular set_fonts: Fixed:style=Oblique SemiCondensed set_fonts: Liberation Sans:style=Bold set_fonts: DejaVu Sans Mono:style=Oblique set_fonts: FreeMono:style=Negrito It?lico,Negreta cursiva,tu?n? kurz?va,fed kursiv,Fett Kursiv,?????? ??????,BoldOblique,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,F?lk?v?r d?lt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,?????????? ??????,Tu?n? kurz?va,Fet Kursiv,Kal?n ?talik,polkrepko le?e?e,Lodi etzana set_fonts: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold Oblique,Bold Oblique set_fonts: Fixed:style=Oblique set_fonts: Rekha:style=medium set_fonts: Chandas:style=Regular set_fonts: ClearlyU Alternate Glyphs:style=Regular set_fonts: Courier 10 Pitch:style=Italic set_fonts: Utopia:style=Italic set_fonts: Liberation Serif:style=Regular set_fonts: artwiz\-cursor.pcf:style=Regular set_fonts: DejaVu Sans,DejaVu Sans Light:style=ExtraLight set_fonts: TAMu_Kadambri:style=Regular set_fonts: Serto Urhoy:style=Regular set_fonts: Luxi Serif:style=Oblique set_fonts: Liberation Sans:style=Bold Italic set_fonts: ?????,WenQuanYi Zen Hei,?????:style=Regular set_fonts: Nimbus Sans L:style=Regular Condensed Italic set_fonts: Luxi Serif:style=Bold Oblique set_fonts: Serto Batnan:style=Regular set_fonts: FreeSans:style=Bold,polkrepko set_fonts: Ubuntu:style=Negrito,Bold,Negreta,fed,Fett,Negrita,Lihavoitu,Gras,Grassetto,Vet,Halvfet,Pogrubiony,Fet,Lodia set_fonts: URW Bookman L:style=Demi Bold set_fonts: URW Bookman L:style=Light set_fonts: decsess.pcf:style=Regular set_fonts: FreeMono:style=Negrito,Negreta,tu?n?,fed,Fett,??????,Bold,Negrita,Lihavoitu,Gras,F?lk?v?r,Grassetto,Vet,Halvfet,Pogrubiony,??????????,Fet,Kal?n,polkrepko,???m,Lodia set_fonts: URW Gothic L:style=Demi Oblique set_fonts: Standard Symbols L:style=Regular set_fonts: Mallige:style=Normal set_fonts: FreeMono:style=Normal,oby?ejn?,Standard,????????,Medium,Normaali,Norm?l,Normale,Standaard,Normalny,???????,Norm?lne,navadno,th??ng,Arrunta set_fonts: ori1Uni,utkal:style=Medium set_fonts: Luxi Mono:style=Oblique set_fonts: FreeSerif:style=Medium,navadno set_fonts: TAMu_Kalyani:style=Regular set_fonts: cure:style=Regular set_fonts: Courier 10 Pitch:style=Regular set_fonts: DejaVu Sans,DejaVu Sans Condensed:style=Condensed,Book set_fonts: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold,Bold set_fonts: Liberation Mono:style=Bold set_fonts: Vemana2000,Pothana2000:style=Pothana2000,Regular set_fonts: Lohit Hindi:style=Regular set_fonts: URW Palladio L:style=Bold set_fonts: TSCu_Paranar:style=Italic set_fonts: Luxi Sans:style=Oblique set_fonts: Serto Mardin:style=Bold set_fonts: fkp:style=Regular set_fonts: Nimbus Sans L:style=Regular Condensed set_fonts: Sazanami Gothic,????????:style=Regular,Gothic-Regular set_fonts: URW Bookman L:style=Light Italic set_fonts: Estrangelo TurAbdin:style=Regular set_fonts: Courier:style=Italic set_fonts: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Italic,Italic set_fonts: Century Schoolbook L:style=Roman set_fonts: deccurs.pcf:style=Regular set_fonts: cursor.pcf:style=Regular set_fonts: FreeSerif:style=BoldItalic,polkrepko le?e?e set_fonts: Nimbus Roman No9 L:style=Regular Italic set_fonts: Courier 10 Pitch:style=Bold set_fonts: Lohit Tamil:style=Regular set_fonts: DejaVu Sans:style=Bold set_fonts: DejaVu Sans:style=Book set_fonts: Serto Jerusalem:style=Italic set_fonts: Serto Jerusalem:style=Bold set_fonts: Fixed:style=ko set_fonts: glispbold:style=Bold bold set_fonts: URW Gothic L:style=Book Oblique set_fonts: Fixed:style=ja set_fonts: snap:style=Regular set_fonts: URW Palladio L:style=Bold Italic set_fonts: Fixed:style=Regular set_fonts: mintsmild:style=Regular set_fonts: DejaVu Serif:style=Italic set_fonts: Luxi Sans:style=Bold Oblique set_fonts: Ani,????????? Dvf:style=Regular set_fonts: Nimbus Mono L:style=Regular Oblique set_fonts: ???????,WenQuanYi Zen Hei Mono,???????:style=Regular set_fonts: LKLUG:style=Regular set_fonts: Lohit Gujarati:style=Regular set_fonts: Liberation Sans Narrow:style=Bold Italic set_fonts: DejaVu Sans Mono:style=Book set_fonts: Luxi Mono:style=Bold Oblique set_fonts: DejaVu Sans Mono:style=Bold set_fonts: Courier:style=Bold set_fonts: Liberation Serif:style=Italic set_fonts: Kedage:style=Normal set_fonts: Lohit Bengali:style=Regular set_fonts: TSCu_Paranar:style=Regular set_fonts: Utopia:style=Regular set_fonts: Nimbus Mono L:style=Bold set_fonts: FreeSans:style=BoldOblique,polkrepko le?e?e set_fonts: Liberation Mono:style=Italic set_fonts: Goha\-Tibeb Zemen:style=Regular set_fonts: Estrangelo Nisibin Outline:style=Regular set_fonts: East Syriac Adiabene:style=Regular set_fonts: Bitstream Charter:style=Bold set_fonts: kates:style=Regular set_fonts: FreeMono:style=It?lico,Cursiva,kurz?va,kursiv,??????,Oblique,Kursivoitu,Italique,D?lt,Corsivo,Cursief,Kursywa,??????,?talik,le?e?e,nghi?ng,Etzana set_fonts: drift:style=Regular set_fonts: Mallige:style=NormalItalic set_fonts: ???????,WenQuanYi Zen Hei Sharp,???????:style=Regular set_fonts: Nimbus Sans L:style=Bold Condensed Italic set_fonts: URW Bookman L:style=Demi Bold Italic set_fonts: Liberation Sans:style=Italic set_fonts: padmaa,padmmaa:style=regular,Medium set_fonts: DejaVu Serif:style=Book set_fonts: padmaa,padmmaa:style=Bold,medium set_fonts: DejaVu Serif:style=Bold Found font: sans Found font: sans bold Found font: sans italic Found font: sans bold italic Found font: mono Found font: mono bold Found font: mono italic Found font: mono bold italic Found font: serif Found font: serif bold Found font: serif italic Found font: serif bold italic Found font: symbol Found font: screen Found font: screen bold Found font: zapf dingbats Found font: \\u09ae\\u09bf\\u09a4\\u09cd\\u09b0 Found font: aakar Found font: anorexia Found font: aqui bold Found font: artwiz\-cursor.pcf Found font: Bitstream Charter Found font: Bitstream Charter bold Found font: Bitstream Charter bold italic Found font: Bitstream Charter italic Found font: Century Schoolbook L bold Found font: Century Schoolbook L bold italic Found font: Century Schoolbook L italic Found font: Century Schoolbook L Found font: Chandas Found font: Clean Found font: ClearlyU Alternate Glyphs Found font: ClearlyU PUA Found font: ClearlyU Found font: Courier 10 Pitch Found font: Courier 10 Pitch bold Found font: Courier 10 Pitch bold italic Found font: Courier 10 Pitch italic Found font: Courier Found font: Courier bold Found font: Courier bold italic Found font: Courier italic Found font: cure Found font: cursor.pcf Found font: Cursor Found font: deccurs.pcf Found font: decsess.pcf Found font: DejaVu Sans Condensed Found font: DejaVu Sans Condensed bold Found font: DejaVu Sans Condensed bold italic Found font: DejaVu Sans Condensed italic Found font: DejaVu Sans Light Found font: DejaVu Sans Mono bold Found font: DejaVu Sans Mono bold italic Found font: DejaVu Sans Mono Found font: DejaVu Sans Mono italic Found font: DejaVu Sans bold Found font: DejaVu Sans bold italic Found font: DejaVu Sans Found font: DejaVu Sans italic Found font: DejaVu Serif Condensed Found font: DejaVu Serif Condensed bold Found font: DejaVu Serif Condensed bold italic Found font: DejaVu Serif Condensed italic Found font: DejaVu Serif bold Found font: DejaVu Serif bold italic Found font: DejaVu Serif Found font: DejaVu Serif italic Found font: Dingbats Found font: drift Found font: East Syriac Adiabene Found font: East Syriac Ctesiphon Found font: edges Found font: Estrangelo Antioch Found font: Estrangelo Edessa Found font: Estrangelo Midyat Found font: Estrangelo Nisibin Outline Found font: Estrangelo Nisibin Found font: Estrangelo Quenneshrin Found font: Estrangelo Talada Found font: Estrangelo TurAbdin Found font: Fixed Found font: Fixed bold Found font: Fixed bold Found font: Fixed Found font: Fixed Found font: Fixed italic Found font: Fixed italic Found font: Fixed Found font: fkp Found font: FreeMono Found font: FreeMono Found font: FreeMono Found font: FreeMono Found font: FreeSans bold Found font: FreeSans bold Found font: FreeSans Found font: FreeSans italic Found font: FreeSerif bold Found font: FreeSerif bold Found font: FreeSerif italic Found font: FreeSerif Found font: Gargi_1.7 Found font: gelly Found font: glisp Found font: glispbold bold Found font: Goha\-Tibeb Zemen Found font: Jamrul Found font: kates Found font: Kedage bold Found font: Kedage bold Found font: Kedage Found font: Kedage Found font: Liberation Mono Found font: Liberation Mono bold Found font: Liberation Mono bold italic Found font: Liberation Mono italic Found font: Liberation Sans Narrow Found font: Liberation Sans Narrow bold Found font: Liberation Sans Narrow bold italic Found font: Liberation Sans Narrow italic Found font: Liberation Sans Found font: Liberation Sans bold Found font: Liberation Sans bold italic Found font: Liberation Sans italic Found font: Liberation Serif Found font: Liberation Serif bold Found font: Liberation Serif bold italic Found font: Liberation Serif italic Found font: Likhan Found font: lime Found font: LKLUG Found font: Lohit Bengali Found font: Lohit Gujarati Found font: Lohit Hindi Found font: Lohit Punjabi Found font: Lohit Tamil Found font: Luxi Mono Found font: Luxi Mono bold Found font: Luxi Mono bold italic Found font: Luxi Mono italic Found font: Luxi Sans Found font: Luxi Sans bold Found font: Luxi Sans bold italic Found font: Luxi Sans italic Found font: Luxi Serif Found font: Luxi Serif bold Found font: Luxi Serif bold italic Found font: Luxi Serif italic Found font: Mallige bold Found font: Mallige bold Found font: Mallige Found font: Mallige Found font: micro.pcf Found font: mintsmild Found font: mintsstrong Found font: Newspaper Found font: Nimbus Mono L Found font: Nimbus Mono L italic Found font: Nimbus Mono L bold Found font: Nimbus Mono L bold italic Found font: Nimbus Roman No9 L Found font: Nimbus Roman No9 L italic Found font: Nimbus Roman No9 L Found font: Nimbus Roman No9 L italic Found font: Nimbus Sans L Found font: Nimbus Sans L Found font: Nimbus Sans L italic Found font: Nimbus Sans L italic Found font: Nimbus Sans L bold Found font: Nimbus Sans L bold Found font: Nimbus Sans L bold italic Found font: Nimbus Sans L bold italic Found font: nu Found font: padmmaa bold Found font: padmmaa Found font: Pothana2000 Found font: Pothana2000 Found font: Rekha Found font: Saab Found font: Samanata Found font: Samyak Found font: Serto Batnan Found font: Serto Batnan bold Found font: Serto Jerusalem Outline Found font: Serto Jerusalem Found font: Serto Jerusalem bold Found font: Serto Jerusalem italic Found font: Serto Kharput Found font: Serto Malankara Found font: Serto Mardin Found font: Serto Mardin bold Found font: Serto Urhoy Found font: Serto Urhoy bold Found font: smoothansi Found font: snap Found font: Spranq eco sans Found font: Standard Symbols L Found font: TAMu_Kadambri Found font: TAMu_Kalyani Found font: TAMu_Maduram Found font: Tibetan Machine Uni Found font: TSCu_Comic Found font: TSCu_Paranar Found font: TSCu_Paranar bold Found font: TSCu_Paranar italic Found font: TSCu_Times Found font: Ubuntu Found font: Ubuntu Found font: Ubuntu Found font: Ubuntu Found font: URW Bookman L bold Found font: URW Bookman L bold italic Found font: URW Bookman L Found font: URW Bookman L italic Found font: URW Chancery L italic Found font: URW Gothic L Found font: URW Gothic L italic Found font: URW Gothic L Found font: URW Gothic L italic Found font: URW Palladio L bold Found font: URW Palladio L bold italic Found font: URW Palladio L italic Found font: URW Palladio L Found font: utkal Found font: Utopia Found font: Utopia bold Found font: Utopia bold italic Found font: Utopia italic Found font: WenQuanYi Zen Hei Mono Found font: WenQuanYi Zen Hei Mono Found font: WenQuanYi Zen Hei Sharp Found font: WenQuanYi Zen Hei Found font: WenQuanYi Zen Hei Found font: ???????????????? Found font: ????????? Dvf Found font: ???????? Found font: ?????? ????? Found font: ???????? Found font: ?????? Nav_open_url: new url='http://top.baidu.com' Dns_server [0]: 127.0.0.1 is 127.0.0.1 Connecting to 127.0.0.1
a_Nav_repush <<<< Nav_open_url: new url='http://top.baidu.com' a_Nav_expect_done: repush! NumPendingStyleSheets=1 NumPendingStyleSheets=2 NumPendingStyleSheets=3 a_Nav_repush <<<< Nav_open_url: new url='http://top.baidu.com' a_Nav_expect_done: repush!
so i have: set_fonts: ?????,WenQuanYi Zen Hei,?????:style=??,Medium both formats :) higuita -- Naturally the common people don't want war... but after all it is the leaders of a country who determine the policy, and it is always a simple matter to drag the people along, whether it is a democracy, or a fascist dictatorship, or a parliament, or a communist dictatorship. Voice or no voice, the people can always be brought to the bidding of the leaders. That is easy. All you have to do is tell them they are being attacked, and denounce the pacifists for lack of patriotism and exposing the country to danger. It works the same in every country. -- Hermann Goering, Nazi and war criminal, 1883-1946
higuita wrote:
so i have:
set_fonts: ?????,WenQuanYi Zen Hei,?????:style=??,Medium
Hmm, I see that my /etc/fonts/conf.avail/44-wqy-zenhei.conf has <string>WenQuanYi Zen Hei</string> <string>?????</string> <string>?????</string> and maybe different distributions switch the order around or something.
On Thu, 14 Jul 2011 23:48:24 +0000, "corvid" <corvid@lavabit.com> wrote:
Hmm, I see that my /etc/fonts/conf.avail/44-wqy-zenhei.conf has <string>WenQuanYi Zen Hei</string> <string>?????</string> <string>?????</string> and maybe different distributions switch the order around or something.
That is also the order in my file :) 64/32bit issue? (i'm at 64bits, remember?) higuita -- Naturally the common people don't want war... but after all it is the leaders of a country who determine the policy, and it is always a simple matter to drag the people along, whether it is a democracy, or a fascist dictatorship, or a parliament, or a communist dictatorship. Voice or no voice, the people can always be brought to the bidding of the leaders. That is easy. All you have to do is tell them they are being attacked, and denounce the pacifists for lack of patriotism and exposing the country to danger. It works the same in every country. -- Hermann Goering, Nazi and war criminal, 1883-1946
participants (4)
-
corvid@lavabit.com
-
higuita7@yahoo.co.uk
-
jcid@dillo.org
-
johannes.hofmann@gmx.de