Re: [3/3] msxml3/domdoc: Add support for VT_ARRAY|VT_UI1 in domdoc_load(). (try 2)

2011-05-04 Thread Nikolay Sivov
On 5/5/2011 00:38, Adam Martinson wrote: Fixes bugs 14864 + 16453. --- dlls/msxml3/domdoc.c | 27 + dlls/msxml3/tests/domdoc.c | 94 +++- 2 files changed, 120 insertions(+), 1 deletions(-) +case VT_ARRAY|VT_UI1: +{ +

Re: [2/3] msxml3/domdoc: Add an internal function to load from a UTF8 string.

2011-05-04 Thread Nikolay Sivov
On 5/5/2011 00:38, Adam Martinson wrote: --- dlls/msxml3/domdoc.c | 85 + 1 files changed, 50 insertions(+), 35 deletions(-) You don't need a separate helper for that. doparse() should do fine with "UTF-8" encoding parameter to force encoding.

Re: [2/2] msxml3/domdoc: Add support for VT_ARRAY|VT_UI1 in domdoc_load().

2011-05-04 Thread Nikolay Sivov
On 5/4/2011 19:30, Adam Martinson wrote: On 05/03/2011 05:30 PM, Nikolay Sivov wrote: I'm worried about VT_UI1 being interpreted as ASCII stream or just a byte stream that could be in any encoding. If it's a case you can't assume it's encoded as utf8, when you do utf8 -> utf16 (for BSTR). For

Re: Support for D3DQUERY_TIMESTAMP* queries...

2011-05-04 Thread Adam Martinson
OK, I think I addressed those issues, let me know how these look. >From 4648e7395800ae2a1ad55166493cae9183dc2c62 Mon Sep 17 00:00:00 2001 From: Adam Martinson Date: Wed, 4 May 2011 11:05:25 -0500 Subject: [PATCH 03/12] wined3d: Add support for GL_ARB_timer_query. To: wine-patches Reply-To: wine-

Re: [PATCH 2/2 try2] wininet: Added support for persistent HTTP connections

2011-05-04 Thread Jacek Caban
On 5/4/11 8:05 PM, Alexandre Julliard wrote: Jacek Caban writes: That's an already existing race in tests. It fails on Windows as well: http://test.winehq.org/data/a343c1fbd0f37a5cadd98698ae5d580727ddf0c7/2003_fg-win2003es-sp2/wininet:http.html I've seen it here and my patch seems to make is m

Re: [PATCH 2/2 try2] wininet: Added support for persistent HTTP connections

2011-05-04 Thread Alexandre Julliard
Jacek Caban writes: > That's an already existing race in tests. It fails on Windows as well: > http://test.winehq.org/data/a343c1fbd0f37a5cadd98698ae5d580727ddf0c7/2003_fg-win2003es-sp2/wininet:http.html > I've seen it here and my patch seems to make is more likely to fail. I > plan fixing it, bu

Re: winscard/tests: Add test base functions of winscard.dll

2011-05-04 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=10722 Your paranoid android

Re: [PATCH 2/2 try2] wininet: Added support for persistent HTTP connections

2011-05-04 Thread Jacek Caban
On 05/04/11 16:07, Alexandre Julliard wrote: > Jacek Caban writes: > >> try2: Using GetTickCount64() for timestamps >> >> --- >> dlls/urlmon/tests/protocol.c |2 +- >> dlls/urlmon/tests/url.c | 20 +- >> dlls/wininet/http.c | 567 >> --

Re: [PATCH 2/2 try2] wininet: Added support for persistent HTTP connections

2011-05-04 Thread Alexandre Julliard
Jacek Caban writes: > try2: Using GetTickCount64() for timestamps > > --- > dlls/urlmon/tests/protocol.c |2 +- > dlls/urlmon/tests/url.c | 20 +- > dlls/wininet/http.c | 567 > -- > dlls/wininet/internet.c |2 +- > dlls/winin

Re: [2/2] msxml3/domdoc: Add support for VT_ARRAY|VT_UI1 in domdoc_load().

2011-05-04 Thread Adam Martinson
On 05/03/2011 05:30 PM, Nikolay Sivov wrote: I'm worried about VT_UI1 being interpreted as ASCII stream or just a byte stream that could be in any encoding. If it's a case you can't assume it's encoded as utf8, when you do utf8 -> utf16 (for BSTR). For this particular case you might want direc

Re: FAQ translation possible?

2011-05-04 Thread Juan Lang
> I tried to find the wiki/web server responsible, but without success. > Who's responsible for the server? J. Newman? In this case, it's Dimi O'Paun. --Juan

Re: FAQ translation possible?

2011-05-04 Thread Frédéric Delanoy
On Wed, May 4, 2011 at 07:24, Ove Kåven wrote: > Den 04. mai 2011 00:49, skrev Frédéric Delanoy: >> But in any case, the language to use should preferably be autoselected >> from WineHQ's lang cookie IMHO. > > The way I understand moinmoin, you need to create a new wiki page with > the translated

signal(SIGCHLD,SIG_DFL) before exec()

2011-05-04 Thread Ilya Basin
Hi list. I suffer from this bug: http://bugs.winehq.org/show_bug.cgi?id=27014 In wine sources there're not so many places where exec(3) family is used. In some places SIGCHLD and SIGPIPE are restored to default before calling exec(), in others they aren't. What's the difference? Can anyone explain