Re: correct comctl32 implementation

2011-03-15 Thread Andrew Green
I'm not sure how it will only use theming for version 6 without sxs. Will the control have to manually check the manifest? I am a bit familiar with how to use the themes to draw controls and that shouldn't be an issue. At the moment i'm more confused with this window class redirect thing. I've be

Re: Wine Gecko 1.2.0 released

2011-03-15 Thread Scott Ritchie
On 03/15/2011 11:02 AM, Jacek Caban wrote: > Hi all, > > The new Wine Gecko release is out and already used by Wine git version. > Let me conclude shortly what has changed (more detailed updates can be > found in my previous mails). It mostly means that you have to download > it from Wine Sourcefo

Wine Gecko 1.2.0 released

2011-03-15 Thread Jacek Caban
Hi all, The new Wine Gecko release is out and already used by Wine git version. Let me conclude shortly what has changed (more detailed updates can be found in my previous mails). It mostly means that you have to download it from Wine Sourceforge [1] and put it into the right directory [2] as

Re: [2/4] kernel32: Create a temp file with full access rights.

2011-03-15 Thread Dmitry Timoshkov
Nikolay Sivov wrote: > > @@ -703,7 +703,7 @@ UINT WINAPI GetTempFileNameW( LPCWSTR path, LPCWSTR > > prefix, UINT unique, LPWSTR > > do > > { > > sprintfW( p, formatW, unique ); > > -handle = CreateFileW( buffer, GENERIC_WRITE, 0, NULL, > > +

Re: mshtml: Report an error when navigation fails

2011-03-15 Thread Piotr Caban
On 03/14/11 16:59, Piotr Caban wrote: --- dlls/mshtml/navigate.c | 110 1 files changed, 110 insertions(+), 0 deletions(-) Please ignore this patch. It doesn't work as native do. Cheers, Piotr

Re: [PATCH 3/3] mshtml: Notify parser about script evaluation

2011-03-15 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=9959 Your paranoid android.

Re: [PATCH 3/3] mshtml: Notify parser about script evaluation

2011-03-15 Thread Jacek Caban
On 3/15/11 1:50 PM, Marvin wrote: 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

Re: [2/4] kernel32: Create a temp file with full access rights.

2011-03-15 Thread Nikolay Sivov
On 3/15/2011 14:07, Dmitry Timoshkov wrote: Installer in the bug 26288 requests FILE_ALL_ACCESS permission on a temp file it just created. --- dlls/kernel32/path.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c index e72848

Re: [4/4] server: Do not limit execute file access to .exe and .com files.

2011-03-15 Thread Dmitry Timoshkov
Dmitry Timoshkov wrote: > -if (len >= 4 && > -(!strcasecmp( name + len - 4, ".exe" ) || !strcasecmp( name + len - > 4, ".com" ))) > -{ > -if (mode & S_IRUSR) > -mode |= S_IXUSR; > -if (mode & S_IRGRP) > -mode |= S_IXGRP; > -if (mode

Re: correct comctl32 implementation

2011-03-15 Thread Nikolay Sivov
On 3/15/2011 05:25, Frank Richter wrote: On 11.03.2011 10:28, Nikolay Sivov wrote: In version 6 all user32 controls are reimplemented with theme support in comctl32, while user32 classes are kept of course. This is done with specific entries in comctl32 manifest, on load comctl32 all builtin cla