[EMAIL PROTECTED] さんは書きました:
> This has been fixed. You can find the patch in this mailing list. The
> fix will eb included in CJK-LyX-1.3.6, of course.
Thank you!
When do you plan to release CJK-LyX-1.3.6?
--
Mike FABIAN <[EMAIL PROTECTED]> http://www.suse.de/~mfabian
睡眠不足はいい仕事の敵だ。
too:
> http://bugzilla.lyx.org/show_bug.cgi?id=1830
>
> I ask because I am the lyx package maintainer for Fedora Extras, and
> many users are interested this problem being resolved.
I received several mails from SuSE Linux users because of this problem
as well. Unfortunately I have no ide
[EMAIL PROTECTED] $B$5$s$O=q$-$^$7$?(B:
(B
(B> On Thu, 6 Mar 2003, Mike FABIAN wrote:
(B>>
(B>> There is one strange problem left. Always when I exit CJK-LyX, there
(B>> is an error message "pure virtual method called" on standard output
(B>> and it d
[EMAIL PROTECTED] $B$5$s$O=q$-$^$7$?(B:
(B
(B> 'Root' input style does not have 'preedit position' and 'preedit area'.
(B> Without preedit position and area set, there is not much chance of
(B> input server's putting precomposed characters on the viewing area. This is
(B> the reason why
[EMAIL PROTECTED] $B$5$s$O=q$-$^$7$?(B:
(B
(B>> But I see only mojibake in the menus. Is there anything I need
(B>> to setup especially?
(B>
(B> What does this, 'mojibake', mean? If you rpm-install, you don't have to do
(B> anything else. If you install other way, you have to make sure 'ja
[EMAIL PROTECTED] $B$5$s$O=q$-$^$7$?(B:
(B
(B> Looks strange to me, too. All I can think of for the reason, is that
(B> xforms-lib is not properly installed?
(B
(BAlthough I don't think that I made a mistake in installing
(Bthe i18n patched xforms, I am tempted to try a Qt build instead.
Mike FABIAN <[EMAIL PROTECTED]> $B$5$s$O=q$-$^$7$?(B:
(B
(B> I found that the bold fonts work when I try in Japanese.
(B> Then the bold face Japanese looks correct like in the old
(B> CJK-LyX 1.2.0 screen shot on
(B>
(B> http://www.suse.de/~mfabian/suse-cjk/cjk-
[EMAIL PROTECTED] $B$5$s$O=q$-$^$7$?(B:
(B
(B> On Wed, 5 Mar 2003, Mike FABIAN wrote:
(B>>
(B>> Currently it looks like this on my system:
(B>>
(B>> http://www.suse.de/~mfabian/misc/cghan-20030305/cjk-lyx-1.3.0-korean.png
(B>
(B> Looks strange to me
[EMAIL PROTECTED] $B$5$s$O=q$-$^$7$?(B:
(B
(B> On Wed, 5 Mar 2003, Mike FABIAN wrote:
(B
(B>> But I see only mojibake in the menus. Is there anything I need
(B>> to setup especially?
(B>
(B> What does this, 'mojibake', mean?
(B
(B"Mojibake"
I also see a very strange problem with the kinput2 status area
(Bwhen trying to use CJK-LyX-1.3.0 with Japanese.
(B
(BAs soon as one switches to Japanese input mode the kinput2 status
(Barea completely covers the main window:
(B
(Bhttp://www.suse.de/~mfabian/misc/cghan-20030305/cjk-lyx-1.3.0-
<[EMAIL PROTECTED]> $B$5$s$O=q$-$^$7$?(B:
(B
(B> Hello, sorry for my late response.
(B> CJK-LyX-1.3.0 is now in the state of 'final touch'.
(B> So please, wait at most a week or so.
(B
(BGreat! Thank you very much for your hard work, I hope I will
(Bstill be able to include CJK-LyX-1.3.0
Is CJK-LyX 1.3.0 already downloadable? I couldn't yet find it on
(B
(Bftp://stone.phys.pusan.ac.kr/pub/CJK-LyX/
(B
(BI was unfortunatly unable to make CJK-LyX 1.2.3 work on the
(Bbeta version of SuSE Linux 8.2. xforms in SuSE Linux 8.2 has
(Bbeen upgraded to version 1.0.
(B
(BI was able
atch is really only a hack and certainly should not applied
like that to the upstream version of LyX. I only attached it to show
what the problem is. There must be a better solution.
--
Mike Fabian <[EMAIL PROTECTED]> http://www.suse.de/~mfabian
睡眠不足はいい仕事の敵だ。
i Jun 14 21:34:39 2002
@@ -35,6 +35,9 @@
int compare_no_case(string const & s, string const & s2, unsigned int len);
///
+int compare_ascii_no_case(string const & s, string const & s2, unsigned int len);
+
+///
inline
int compare(char const * a, char const * b)
{
Only in lyx-1.2.0/src/support: lstrings.h.~1~
--- lyx-1.2.0/src/kbmap.C.orig Thu Jun 20 01:39:24 2002
+++ lyx-1.2.0/src/kbmap.C Thu Jun 20 01:40:44 2002
@@ -10,6 +10,8 @@
#include
+#include
+#include
#include
#ifdef __GNUG__
@@ -45,6 +46,38 @@
char kb_keymap::getiso(unsigned int c)
{
+ if (strcmp(nl_langinfo(CODESET),"ISO-8859-9") == 0) {
+ // we are running in a latin 5 locale (e.g. Turkish)
+ // ox2b9: idotless
+ // 0x2bb: gbreve
+ // 0x2ab: Gbreve
+ // 0x2a9: Iabovedot
+ // 0x1ba: scedilla
+ // 0x1aa: Scedilla
+ switch (c) {
+ case 0x2b9:
+c = 0xfd;
+break;
+ case 0x2bb:
+c = 0xf0;
+break;
+ case 0x2ab:
+c = 0xd0;
+break;
+ case 0x2a9:
+c = 0xdd;
+break;
+ case 0x1ba:
+c = 0xfe;
+break;
+ case 0x1aa:
+c = 0xde;
+ default:
+break;
+ }
+ }
+
+
switch (c & 0xFF00) {
// latin 1 byte 3 = 0
case 0x: break;
--
Mike Fabian <[EMAIL PROTECTED]> http://www.suse.de/~mfabian
$B?gL2ITB-$O;E;v$NE($@!#(B
14 matches
Mail list logo