PY
peter yoo
Thu, May 18, 2023 4:44 PM
Until PHARO 9.0, I had no problem with XIM input on LINUX.
After a long time, I heard about PHARO 11 and tested it and it doesn't
accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10
either.
- ubuntu 22.04
- linux
- fcitx xim
- korean input
I'm using this combination, and I'm using pharo-launcher.
Maybe the community can give me a hint?
--
http://lookandwalk.com http://looknw.com | http://onionmixer.net
peter yoo(Jonghwa Yoo). ROK
Until PHARO 9.0, I had no problem with XIM input on LINUX.
After a long time, I heard about PHARO 11 and tested it and it doesn't
accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10
either.
* ubuntu 22.04
* linux
* fcitx xim
* korean input
I'm using this combination, and I'm using pharo-launcher.
Maybe the community can give me a hint?
--
http://lookandwalk.com http://looknw.com | http://onionmixer.net
peter yoo(Jonghwa Yoo). ROK
SD
stephane ducasse
Thu, May 18, 2023 8:58 PM
Hi peter
What is xim?
What you should know is that Pharo event / input now is based on SDL 20.
S
Hi peter
What is xim?
What you should know is that Pharo event / input now is based on SDL 20.
S
> On 18 May 2023, at 18:44, peter yoo <onionmixer@gmail.com> wrote:
>
> Until PHARO 9.0, I had no problem with XIM input on LINUX.
>
> After a long time, I heard about PHARO 11 and tested it and it doesn't accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10 either.
>
> * ubuntu 22.04
> * linux
> * fcitx xim
> * korean input
>
> I'm using this combination, and I'm using pharo-launcher.
>
> Maybe the community can give me a hint?
>
> --
> http://lookandwalk.com <http://lookandwalk.com/> http://looknw.com <http://looknw.com/> | http://onionmixer.net <http://onionmixer.net/>
> peter yoo(Jonghwa Yoo). ROK
TO
Tomohiro Oda
Thu, May 18, 2023 10:33 PM
Until PHARO 9.0, I had no problem with XIM input on LINUX.
After a long time, I heard about PHARO 11 and tested it and it doesn't accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10 either.
- ubuntu 22.04
- linux
- fcitx xim
- korean input
I'm using this combination, and I'm using pharo-launcher.
Maybe the community can give me a hint?
--
http://lookandwalk.com http://looknw.com | http://onionmixer.net
peter yoo(Jonghwa Yoo). ROK
Peter,
Please try setting the env vars SDL_IM_MODULE=fcitx.
I haven't tried korean inputs, but I used a japanese input on
linux/pharo with a trick. (cf
https://github.com/tomooda/PharoIM/issues/11#issuecomment-1042512413 )
If you want to use Pharo 10 with input method, please install
https://github.com/tomooda/PharoIM .
If you use Pharo 11, you don't need PharoIM.
---
tomo
2023年5月19日(金) 1:44 peter yoo <onionmixer@gmail.com>:
>
> Until PHARO 9.0, I had no problem with XIM input on LINUX.
>
> After a long time, I heard about PHARO 11 and tested it and it doesn't accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10 either.
>
> * ubuntu 22.04
> * linux
> * fcitx xim
> * korean input
>
> I'm using this combination, and I'm using pharo-launcher.
>
> Maybe the community can give me a hint?
>
> --
> http://lookandwalk.com http://looknw.com | http://onionmixer.net
> peter yoo(Jonghwa Yoo). ROK
SD
stephane ducasse
Thu, May 18, 2023 11:29 PM
Until PHARO 9.0, I had no problem with XIM input on LINUX.
After a long time, I heard about PHARO 11 and tested it and it doesn't accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10 either.
- ubuntu 22.04
- linux
- fcitx xim
- korean input
I'm using this combination, and I'm using pharo-launcher.
Maybe the community can give me a hint?
--
http://lookandwalk.com http://looknw.com | http://onionmixer.net
peter yoo(Jonghwa Yoo). ROK
Thanks Tomohiro.
S
> On 19 May 2023, at 00:33, Tomohiro Oda <tomohiro.tomo.oda@gmail.com> wrote:
>
> Peter,
>
> Please try setting the env vars SDL_IM_MODULE=fcitx.
> I haven't tried korean inputs, but I used a japanese input on
> linux/pharo with a trick. (cf
> https://github.com/tomooda/PharoIM/issues/11#issuecomment-1042512413 )
>
> If you want to use Pharo 10 with input method, please install
> https://github.com/tomooda/PharoIM .
> If you use Pharo 11, you don't need PharoIM.
> ---
> tomo
>
> 2023年5月19日(金) 1:44 peter yoo <onionmixer@gmail.com>:
>>
>> Until PHARO 9.0, I had no problem with XIM input on LINUX.
>>
>> After a long time, I heard about PHARO 11 and tested it and it doesn't accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10 either.
>>
>> * ubuntu 22.04
>> * linux
>> * fcitx xim
>> * korean input
>>
>> I'm using this combination, and I'm using pharo-launcher.
>>
>> Maybe the community can give me a hint?
>>
>> --
>> http://lookandwalk.com http://looknw.com | http://onionmixer.net
>> peter yoo(Jonghwa Yoo). ROK
PY
peter yoo
Fri, May 19, 2023 8:15 AM
As oda informed us, the test was conducted as follows.
- Download libSDL2 from ubuntu repo
- Newly added --enable-ime --enable-fcitx options to libSDL2 build options
as per the link you gave.
- Build and install libsdl2
- Run PharoIM's code in playgound in pharo 10. Proceed with input test
after = Failed
- Proceed input test in pharo 11 = Failed
First of all, both pharo10 and pharo11 failed.
When testing, the following content was added to the top of the shell
script of ~/PharoLauncher-linux/pharo-vm/pharo.
<code>
SDL_IM_MODULE=fcitx
export SDL_IM_MODULE
</code>
Besides libsdl2 compile, what other parts should I check?
2023년 5월 19일 (금) 오후 4:12, stephane ducasse stephane.ducasse@inria.fr님이 작성:
Until PHARO 9.0, I had no problem with XIM input on LINUX.
After a long time, I heard about PHARO 11 and tested it and it doesn't
accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10
either.
As oda informed us, the test was conducted as follows.
1. Download libSDL2 from ubuntu repo
2. Newly added --enable-ime --enable-fcitx options to libSDL2 build options
as per the link you gave.
3. Build and install libsdl2
4. Run PharoIM's code in playgound in pharo 10. Proceed with input test
after = Failed
5. Proceed input test in pharo 11 = Failed
First of all, both pharo10 and pharo11 failed.
When testing, the following content was added to the top of the shell
script of ~/PharoLauncher-linux/pharo-vm/pharo.
<code>
SDL_IM_MODULE=fcitx
export SDL_IM_MODULE
</code>
Besides libsdl2 compile, what other parts should I check?
2023년 5월 19일 (금) 오후 4:12, stephane ducasse <stephane.ducasse@inria.fr>님이 작성:
> Thanks Tomohiro.
>
> S
>
> > On 19 May 2023, at 00:33, Tomohiro Oda <tomohiro.tomo.oda@gmail.com>
> wrote:
> >
> > Peter,
> >
> > Please try setting the env vars SDL_IM_MODULE=fcitx.
> > I haven't tried korean inputs, but I used a japanese input on
> > linux/pharo with a trick. (cf
> > https://github.com/tomooda/PharoIM/issues/11#issuecomment-1042512413 )
> >
> > If you want to use Pharo 10 with input method, please install
> > https://github.com/tomooda/PharoIM .
> > If you use Pharo 11, you don't need PharoIM.
> > ---
> > tomo
> >
> > 2023年5月19日(金) 1:44 peter yoo <onionmixer@gmail.com>:
> >>
> >> Until PHARO 9.0, I had no problem with XIM input on LINUX.
> >>
> >> After a long time, I heard about PHARO 11 and tested it and it doesn't
> accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10
> either.
> >>
> >> * ubuntu 22.04
> >> * linux
> >> * fcitx xim
> >> * korean input
> >>
> >> I'm using this combination, and I'm using pharo-launcher.
> >>
> >> Maybe the community can give me a hint?
> >>
> >> --
> >> http://lookandwalk.com http://looknw.com | http://onionmixer.net
> >> peter yoo(Jonghwa Yoo). ROK
>
--
http://lookandwalk.com http://looknw.com | http://onionmixer.net
peter yoo(Jonghwa Yoo). ROK
PY
peter yoo
Fri, May 19, 2023 8:30 AM
Until PHARO 9.0, I had no problem with XIM input on LINUX.
After a long time, I heard about PHARO 11 and tested it and it doesn't
accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10
either.
my SDL2 is ok now.. can test already.
2023년 5월 19일 (금) 오전 7:34, Tomohiro Oda <tomohiro.tomo.oda@gmail.com>님이 작성:
> Peter,
>
> Please try setting the env vars SDL_IM_MODULE=fcitx.
> I haven't tried korean inputs, but I used a japanese input on
> linux/pharo with a trick. (cf
> https://github.com/tomooda/PharoIM/issues/11#issuecomment-1042512413 )
>
> If you want to use Pharo 10 with input method, please install
> https://github.com/tomooda/PharoIM .
> If you use Pharo 11, you don't need PharoIM.
> ---
> tomo
>
> 2023年5月19日(金) 1:44 peter yoo <onionmixer@gmail.com>:
> >
> > Until PHARO 9.0, I had no problem with XIM input on LINUX.
> >
> > After a long time, I heard about PHARO 11 and tested it and it doesn't
> accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10
> either.
> >
> > * ubuntu 22.04
> > * linux
> > * fcitx xim
> > * korean input
> >
> > I'm using this combination, and I'm using pharo-launcher.
> >
> > Maybe the community can give me a hint?
> >
> > --
> > http://lookandwalk.com http://looknw.com | http://onionmixer.net
> > peter yoo(Jonghwa Yoo). ROK
>
--
http://lookandwalk.com http://looknw.com | http://onionmixer.net
peter yoo(Jonghwa Yoo). ROK
PY
peter yoo
Fri, May 19, 2023 8:40 AM
of course... ~pharo-vm/lib/libSDL2.* libraries relink to system library.
2023년 5월 19일 (금) 오전 7:34, Tomohiro Oda tomohiro.tomo.oda@gmail.com님이 작성:
Until PHARO 9.0, I had no problem with XIM input on LINUX.
After a long time, I heard about PHARO 11 and tested it and it doesn't
accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10
either.
of course... ~pharo-vm/lib/libSDL2.* libraries relink to system library.
2023년 5월 19일 (금) 오전 7:34, Tomohiro Oda <tomohiro.tomo.oda@gmail.com>님이 작성:
> Peter,
>
> Please try setting the env vars SDL_IM_MODULE=fcitx.
> I haven't tried korean inputs, but I used a japanese input on
> linux/pharo with a trick. (cf
> https://github.com/tomooda/PharoIM/issues/11#issuecomment-1042512413 )
>
> If you want to use Pharo 10 with input method, please install
> https://github.com/tomooda/PharoIM .
> If you use Pharo 11, you don't need PharoIM.
> ---
> tomo
>
> 2023年5月19日(金) 1:44 peter yoo <onionmixer@gmail.com>:
> >
> > Until PHARO 9.0, I had no problem with XIM input on LINUX.
> >
> > After a long time, I heard about PHARO 11 and tested it and it doesn't
> accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10
> either.
> >
> > * ubuntu 22.04
> > * linux
> > * fcitx xim
> > * korean input
> >
> > I'm using this combination, and I'm using pharo-launcher.
> >
> > Maybe the community can give me a hint?
> >
> > --
> > http://lookandwalk.com http://looknw.com | http://onionmixer.net
> > peter yoo(Jonghwa Yoo). ROK
>
--
http://lookandwalk.com http://looknw.com | http://onionmixer.net
peter yoo(Jonghwa Yoo). ROK
TO
Tomohiro Oda
Sun, May 21, 2023 3:40 AM
Peter,
Here's what I did on my Ubuntu 22.04 (Japanese Remix).
$ apt install libsdl2-2.0-0
$ cd ~/Pharo/vms/110-x64/lib/
$ for f in libSDL2*; do cp
/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.18.2 $f; done
Then I launched Pharo 11 from PharoLauncher and I can type Japanese
texts with IM.
I also chose Japanese font to display Japanese letters.
I hope this helps.
tomo
2023年5月19日(金) 17:41 peter yoo onionmixer@gmail.com:
Peter,
Here's what I did on my Ubuntu 22.04 (Japanese Remix).
$ apt install libsdl2-2.0-0
$ cd ~/Pharo/vms/110-x64/lib/
$ for f in libSDL2*; do cp
/usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.18.2 $f; done
Then I launched Pharo 11 from PharoLauncher and I can type Japanese
texts with IM.
I also chose Japanese font to display Japanese letters.
I hope this helps.
---
tomo
2023年5月19日(金) 17:41 peter yoo <onionmixer@gmail.com>:
>
> of course... ~pharo-vm/lib/libSDL2.* libraries relink to system library.
>
> 2023년 5월 19일 (금) 오전 7:34, Tomohiro Oda <tomohiro.tomo.oda@gmail.com>님이 작성:
>>
>> Peter,
>>
>> Please try setting the env vars SDL_IM_MODULE=fcitx.
>> I haven't tried korean inputs, but I used a japanese input on
>> linux/pharo with a trick. (cf
>> https://github.com/tomooda/PharoIM/issues/11#issuecomment-1042512413 )
>>
>> If you want to use Pharo 10 with input method, please install
>> https://github.com/tomooda/PharoIM .
>> If you use Pharo 11, you don't need PharoIM.
>> ---
>> tomo
>>
>> 2023年5月19日(金) 1:44 peter yoo <onionmixer@gmail.com>:
>> >
>> > Until PHARO 9.0, I had no problem with XIM input on LINUX.
>> >
>> > After a long time, I heard about PHARO 11 and tested it and it doesn't accept XIM input. I tested it and it doesn't accept XIM input on PHARO 10 either.
>> >
>> > * ubuntu 22.04
>> > * linux
>> > * fcitx xim
>> > * korean input
>> >
>> > I'm using this combination, and I'm using pharo-launcher.
>> >
>> > Maybe the community can give me a hint?
>> >
>> > --
>> > http://lookandwalk.com http://looknw.com | http://onionmixer.net
>> > peter yoo(Jonghwa Yoo). ROK
>
>
>
> --
> http://lookandwalk.com http://looknw.com | http://onionmixer.net
> peter yoo(Jonghwa Yoo). ROK
PY
peter yoo
Thu, Jul 13, 2023 10:25 AM
Due to personal circumstances, testing has been delayed. sorry.
The environment is the same as before.
- in SDL2 testime(SDL2 sample program). can see Korean input. (fcitx-sdl)
- you can see SDL_IM_MODULE="fcitx" in the environment variable.
AAA@BBB:~$ export | grep fcitx
declare -x GTK_IM_MODULE="fcitx"
declare -x QT5_IM_MODULE="fcitx"
declare -x QT_IM_MODULE="fcitx"
declare -x SDL_IM_MODULE="fcitx"
declare -x XMODIFIERS="@im=fcitx"
- my environment is xorg-x11 and gnome 3.(ubuntu 22.04)
- of course, xterm can use XIM(fcitx) input. tested already.
- I ran pharo11 from a separate command line, just in case it might be an
issue with AAA
/home/AAA/Pharo/vms/110-x64/lib/pharo "/home/AAA/Pharo/images/Pharo 11.0 -
64bit (stable)/Pharo 11.0 - 64bit (stable).image"
I'm still not getting input using fcitx. I don't think it's going to be a
one-time fix. How can I test it? Any suggestions on how to test or trace it
would be very helpful.
Due to personal circumstances, testing has been delayed. sorry.
The environment is the same as before.
1. in SDL2 testime(SDL2 sample program). can see Korean input. (fcitx-sdl)
2. you can see SDL_IM_MODULE="fcitx" in the environment variable.
AAA@BBB:~$ export | grep fcitx
declare -x GTK_IM_MODULE="fcitx"
declare -x QT5_IM_MODULE="fcitx"
declare -x QT_IM_MODULE="fcitx"
declare -x SDL_IM_MODULE="fcitx"
declare -x XMODIFIERS="@im=fcitx"
3. my environment is xorg-x11 and gnome 3.(ubuntu 22.04)
4. of course, xterm can use XIM(fcitx) input. tested already.
5. I ran pharo11 from a separate command line, just in case it might be an
issue with AAA
/home/AAA/Pharo/vms/110-x64/lib/pharo "/home/AAA/Pharo/images/Pharo 11.0 -
64bit (stable)/Pharo 11.0 - 64bit (stable).image"
I'm still not getting input using fcitx. I don't think it's going to be a
one-time fix. How can I test it? Any suggestions on how to test or trace it
would be very helpful.