http://bugs.winehq.org/show_bug.cgi?id=201
--- Comment #34 from Austin English <austinenglish(a)gmail.com> 2008-04-09 13:39:11 ---
Still present in git.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4096
Vitaly Lipatov <lav(a)etersoft.ru> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |lav(a)etersoft.ru
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6801
--- Comment #29 from Tefnet developers <developers(a)tefnet.pl> 2008-04-09 13:20:50 ---
(In reply to comment #27)
> (In reply to comment #26)
> > I've found interesting patch sent by Robert Shearman.
> >
> > http://www.winehq.org/pipermail/wine-patches/2007-May/039722.html
> >
> > I think this would be the best place to fix it...
> >
>
> Yes, that's the sort of thing I said should be already there :-). To fix this
> bug we need a couple of extra entries in that char_refs table in the middle.
> Should be easy to do.
>
I thought so too... but i have some problems with charset encoding...
With unset LANG and LC_ALL it works fine but with my locale pl_PL.utf8 it still
doesn't work... could you check my patch and confirm this two behaviours?
When I convert multibyte string "pr\xc3\xa9sentation_du_logiciel.htm" i get
widechar:
- with pl_PL.utf8 "pr\0102\00a9sentation_du_logiciel.htm"
- with unset LANG i get "pr\00c3\00a9sentation_du_logiciel.htm" (which is
correct)
Do you know what am I doing wrong?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5174
--- Comment #24 from Ulf Mehlig <ulf.mehlig(a)gmx.net> 2008-04-09 12:51:55 ---
#!/usr/local/bin/wine /home/ulf/.wine/drive_c/Program
Files/python25/pythonw.exe
# -*- coding: utf-8 -*-
import win32com.client
import random
m = win32com.client.Dispatch('MaCom2.Mangroven')
m.Init(w=110, h=110, scale=3)
m.DefaultColor(1, m.MakeColor(255, 0, 0, 0))
m.DefaultColor(2, m.MakeColor( 0, 255, 0, 0))
m.DefaultColor(3, m.MakeColor( 0, 0, 255, 0))
m.Show(_MIDL_0011_=4, x1=-10, y1=-10, x2=110, y2=110)
for i in range(0, 10):
x = random.uniform(61, 90)
y = random.uniform( 0, 30)
m.Trees().Add (x=x, y=y, type=1)
x = random.uniform(31, 60)
y = random.uniform(31, 60)
m.Trees().Add (x=x, y=y, type=2)
x = random.uniform( 0, 30)
y = random.uniform(61, 90)
m.Trees().Add (x=x, y=y, type=3)
for ts in range(0, 221):
m.Title = 'Time step ' + str(ts)
for tree in m.Trees():
tree.age = ts
tree.Grow(koorFakt=1.0)
m.Update()
m.WaitForClose()
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8499
Hin-Tak Leung <htl10(a)users.sourceforge.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |htl10(a)users.sourceforge.net
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2948
Samuel Lidén Borell <samuel(a)slbdata.se> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|patch |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5174
--- Comment #23 from Austin English <austinenglish(a)gmail.com> 2008-04-09 12:28:48 ---
(In reply to comment #22)
> Yes, this problem is still there. The DLL is in one of the above attachments!
>
Yes, but where is SimpleForest_3species.py or a similar script/program showing
the problem?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6801
--- Comment #27 from Hin-Tak Leung <htl10(a)users.sourceforge.net> 2008-04-09 12:26:11 ---
(In reply to comment #26)
> I've found interesting patch sent by Robert Shearman.
>
> http://www.winehq.org/pipermail/wine-patches/2007-May/039722.html
>
> I think this would be the best place to fix it...
>
Yes, that's the sort of thing I said should be already there :-). To fix this
bug we need a couple of extra entries in that char_refs table in the middle.
Should be easy to do.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.