Re: "make test" redux

2009-07-05 Thread Austin English
On Mon, Jul 6, 2009 at 1:15 AM, Paul Vriens wrote: > Austin English wrote: >> >> On Sat, Jul 4, 2009 at 10:48 AM, Dan Kegel wrote: >>> >>> We've had a test suite for six or so years now, and we keep >>> getting closer to having it pass reliably, but we're still not quite >>> there. >>> I see from h

Re: "make test" redux

2009-07-05 Thread Paul Vriens
Austin English wrote: On Sat, Jul 4, 2009 at 10:48 AM, Dan Kegel wrote: We've had a test suite for six or so years now, and we keep getting closer to having it pass reliably, but we're still not quite there. I see from http://test.winehq.org that fifteen tests fail on at least one machine. Ther

Using tracing for tests on Wine

2009-07-05 Thread Paul Vriens
Hi, I've always had a patch in my local repo that runs runtest with the '-v' flag instead if '-q' as I'm not always interested in just the failures. Having '-q' for runtest basically means that I didn't find a way to override things. WINETEST_DEBUG= doesn't work when I do a 'make .ok' as the deb

Re: winequartz.drv Mac OS X UI discontinued?

2009-07-05 Thread James McKenzie
Adam Strzelecki wrote: >> I googled a bit more. There are at least two ways of achieving this >> mentioned in the docs of libFoundation: by using XML-RPC call and by >> wrapping classes in ANSI-C APIs. [4] >> > > Well actually you can easily access all Obj-C features trough the > follow

Re: winequartz.drv Mac OS X UI discontinued?

2009-07-05 Thread James McKenzie
Emmanuel Maillard wrote: > > Le 11 avr. 09 à 18:20, James McKenzie a écrit : > >> Emmanuel Maillard wrote: >>> >>> Le 3 janv. 09 à 04:14, James McKenzie a écrit : >>> Emmanuel Maillard wrote: > Hi, > > Le 4 juil. 08 à 12:37, Adam Strzelecki a écrit : > > >> Hi Emmanuel,

Re: "make test" redux

2009-07-05 Thread Austin English
On Sat, Jul 4, 2009 at 10:48 AM, Dan Kegel wrote: > We've had a test suite for six or so years now, and we keep > getting closer to having it pass reliably, but we're still not quite there. > I see from http://test.winehq.org that fifteen tests fail on at > least one machine. > > There are several

Re: Building problems on Intel Mac.

2009-07-05 Thread James McKenzie
Zheng Che wrote: > Screenshot attached. It may be better to use MacPorts or Fink to install Wine. They know about and handle the required dependencies for you. Also, Mike Kronenberg's build environment for the 'abandoned' Darwine project is also available, but needs to be updated to reflect the

Re: why is Kronenberg's Wine/Mac work blacklisted on winehq?

2009-07-05 Thread James McKenzie
Mike Kronenberg wrote: > > On 26.06.2009, at 16:51, Dmitry Timoshkov wrote: > >> "Emmanuel Maillard" wrote: >> >>> Darwine tools WineHelper and create_darwine_distrib script are not >>> GPL but LGPL. >>> Don't know for Mike Kronenberg patches or other stuffs, but we >>> never change Wine licensi

New winetricks 20090705: new verb shockwave; updated xvid and firefox

2009-07-05 Thread Dan Kegel
20090607: r546 | daniel.r.kegel | 2009-07-05 18:09:13 -0700 (Sun, 05 Jul 2009) | 3 lines Updated firefox, xvid; added shockwave; bumped version to 20090705

Re: cryptdlg: Translate "CPS" (Certification Practice Statement) to Lithuanian and add a comment to English resource

2009-07-05 Thread Juan Lang
Hi Aurimas, -IDS_CPS "CPS" +IDS_CPS "SVN" /* Sertifikavimo Veiklos Nuostatos */ I'm not sure this is a good idea. In common usage, acronyms are not translated. In this case, the acronym CPS is part of a standard, RFC2527, so it doesn't seem like a good idea to abbreviate the translated

Re: How to test cryptui's dialogs?

2009-07-05 Thread Juan Lang
Hi Aurimas, > But how can I run cryptui's wizards and other dialogs to confirm that > everything else is translated correctly? In addition to the excellent suggestions you've already gotten, I'll just add that it's possible to test cryptui's dialogs without installing anything by opening the cert

Re: [1/3] gdiplus: Implement GdipBeginContainer2 and GdipEndContainer

2009-07-05 Thread Vincent Povirk
+sts = GdipCloneMatrix(container->worldtrans, &newTrans); +if(sts != Ok) +return sts; + +sts = GdipCloneRegion(container->clip, &newClip); +if(sts != Ok) +return sts; This leaks a matrix if GdipCloneRegion fails. -- Vincent Povirk

Re: server/fd.c: Prevent using uninitialized pointers

2009-07-05 Thread Henri Verbeet
2009/7/4 Vitaliy Margolen : > Static variables are different. They are always initialized to 0. In your Yes, although perhaps it should be noted that in this particular case the static storage duration is due to these being global variables, rather than the static keyword which just specifies inter

Try #2: user32: Windows test request (cursors/icons)

2009-07-05 Thread Daniel Santos
Thanks again for testing this for me, Paul. I have modified the tests so that they should pass and I've skipped tests on win9x that I suspect are causing the blue screens (personally, I doubt it's due to VMware). I moved the new test functions to the top of the file, but I didn't remove the co

Testing modal property sheets

2009-07-05 Thread Nikolay Sivov
Hi. Some time ago I tried to fix bug http://bugs.winehq.org/show_bug.cgi?id=16876 . It's about wrong return codes of PropertySheet call. The question is about a proper way of testing this. I tried to exit just after creation in PSCB_INITIALIZED handler, it looks like it shows a problem, but

Re: [cryptui] Show the select store text when browsing stores

2009-07-05 Thread Paul Vriens
Paul Vriens wrote: Paul Vriens wrote: Aurimas Fišeras wrote: On 07/05/2009 04:08 PM, Paul Vriens wrote: Hi, We at least see the text now. Selecting is possible but doesn't work (regression?). Changelog Show the select store text when browsing stores --

Re: [cryptui] Show the select store text when browsing stores

2009-07-05 Thread Paul Vriens
Paul Vriens wrote: Aurimas Fišeras wrote: On 07/05/2009 04:08 PM, Paul Vriens wrote: Hi, We at least see the text now. Selecting is possible but doesn't work (regression?). Changelog Show the select store text when browsing stores --

Re: AcceptEx Proposal

2009-07-05 Thread Mike Kaplinskiy
On Sun, Jul 5, 2009 at 6:55 AM, Damjan Jovanovic wrote: > On Fri, Jul 3, 2009 at 5:49 AM, Mike > Kaplinskiy wrote: >> I have been thinking about the correct way to implement AcceptEx, and >> I was looking for comments about the approach. Note I know all of >> these cases will require tests, I'm jus

Re: [cryptui] Show the select store text when browsing stores

2009-07-05 Thread Paul Vriens
Aurimas Fišeras wrote: On 07/05/2009 04:08 PM, Paul Vriens wrote: Hi, We at least see the text now. Selecting is possible but doesn't work (regression?). Changelog Show the select store text when browsing stores +

Re: [cryptui] Show the select store text when browsing stores

2009-07-05 Thread Aurimas Fišeras
On 07/05/2009 04:08 PM, Paul Vriens wrote: > Hi, > > We at least see the text now. Selecting is possible but doesn't work > (regression?). > > Changelog > Show the select store text when browsing stores > > > > > > +

Re: Howto put a new rpm package on sourceforge ?

2009-07-05 Thread Hin-Tak Leung
--- On Sat, 4/7/09, marco wrote: > Hi all, > > I make the mandriva packages and put them on sourceforge. > > But sourceforge changed there layout and now I can not > longer find the > button to add new releases or to manage them? > Anyone know where they are ? > The sourgeforge wiki is taking

Re: Howto put a new rpm package on sourceforge ?

2009-07-05 Thread marco
Marcus Meissner schreef: On Sun, Jul 05, 2009 at 11:20:54AM +0200, marco wrote: Hin-Tak Leung schreef: --- On Sat, 4/7/09, marco wrote: Hi all, I make the mandriva packages and put them on sourceforge. But sourceforge changed there layout and now I can not longer find the

Re: How to test cryptui's dialogs?

2009-07-05 Thread Aurimas Fišeras
On 07/05/2009 01:57 PM, Paul Vriens wrote: > Aurimas Fišeras wrote: >> On 07/05/2009 12:59 PM, Paul Vriens wrote: >>> André Hentschel wrote: Paul Vriens schrieb: > On 5 jul 2009, at 09:49, Frédéric Delanoy > wrote: > >> On 07/05/2009 08:46 AM, Aurimas Fišeras wrote: >>> On

Re: How to test cryptui's dialogs?

2009-07-05 Thread Paul Vriens
Aurimas Fišeras wrote: On 07/05/2009 12:59 PM, Paul Vriens wrote: André Hentschel wrote: Paul Vriens schrieb: On 5 jul 2009, at 09:49, Frédéric Delanoy wrote: On 07/05/2009 08:46 AM, Aurimas Fišeras wrote: On 07/05/2009 03:36 AM, Frédéric Delanoy wrote: On 07/04/2009 11:29 PM, Aurimas Fiš

Re: AcceptEx Proposal

2009-07-05 Thread Damjan Jovanovic
On Fri, Jul 3, 2009 at 5:49 AM, Mike Kaplinskiy wrote: > I have been thinking about the correct way to implement AcceptEx, and > I was looking for comments about the approach. Note I know all of > these cases will require tests, I'm just listing them for problems > someone might see. > > Wineserver

Re: How to test cryptui's dialogs?

2009-07-05 Thread Aurimas Fišeras
On 07/05/2009 12:59 PM, Paul Vriens wrote: > André Hentschel wrote: >> Paul Vriens schrieb: >>> On 5 jul 2009, at 09:49, Frédéric Delanoy >>> wrote: >>> On 07/05/2009 08:46 AM, Aurimas Fišeras wrote: > On 07/05/2009 03:36 AM, Frédéric Delanoy wrote: >> On 07/04/2009 11:29 PM, Aurimas

Re: How to test cryptui's dialogs?

2009-07-05 Thread Paul Vriens
André Hentschel wrote: Paul Vriens schrieb: On 5 jul 2009, at 09:49, Frédéric Delanoy wrote: On 07/05/2009 08:46 AM, Aurimas Fišeras wrote: On 07/05/2009 03:36 AM, Frédéric Delanoy wrote: On 07/04/2009 11:29 PM, Aurimas Fišeras wrote: Hello, I've finished translating cryptui's resources,

Re: Howto put a new rpm package on sourceforge ?

2009-07-05 Thread Marcus Meissner
On Sun, Jul 05, 2009 at 11:20:54AM +0200, marco wrote: > Hin-Tak Leung schreef: >> --- On Sat, 4/7/09, marco wrote: >> >> >>> Hi all, >>> >>> I make the mandriva packages and put them on sourceforge. >>> >>> But sourceforge changed there layout and now I can not >>> longer find the >>> button t

Re: How to test cryptui's dialogs?

2009-07-05 Thread André Hentschel
Paul Vriens schrieb: On 5 jul 2009, at 09:49, Frédéric Delanoy wrote: On 07/05/2009 08:46 AM, Aurimas Fišeras wrote: On 07/05/2009 03:36 AM, Frédéric Delanoy wrote: On 07/04/2009 11:29 PM, Aurimas Fišeras wrote: Hello, I've finished translating cryptui's resources, checked control sizes w

Re: Howto put a new rpm package on sourceforge ?

2009-07-05 Thread marco
Hin-Tak Leung schreef: --- On Sat, 4/7/09, marco wrote: Hi all, I make the mandriva packages and put them on sourceforge. But sourceforge changed there layout and now I can not longer find the button to add new releases or to manage them? Anyone know where they are ? The sourgeforge wiki

Re: How to test cryptui's dialogs?

2009-07-05 Thread Paul Vriens
On 5 jul 2009, at 09:49, Frédéric Delanoy wrote: On 07/05/2009 08:46 AM, Aurimas Fišeras wrote: On 07/05/2009 03:36 AM, Frédéric Delanoy wrote: On 07/04/2009 11:29 PM, Aurimas Fišeras wrote: Hello, I've finished translating cryptui's resources, checked control sizes with resource edito

Re: How to test cryptui's dialogs?

2009-07-05 Thread Frédéric Delanoy
On 07/05/2009 08:46 AM, Aurimas Fišeras wrote: > On 07/05/2009 03:36 AM, Frédéric Delanoy wrote: >> On 07/04/2009 11:29 PM, Aurimas Fišeras wrote: >>> Hello, >>> >>> I've finished translating cryptui's resources, checked control sizes >>> with resource editor and adjusted them where it was needed.

Re: How to test cryptui's dialogs?

2009-07-05 Thread Aurimas Fišeras
On 07/05/2009 09:51 AM, Austin English wrote: > 2009/7/5 Aurimas Fišeras : >> On 07/05/2009 03:36 AM, Frédéric Delanoy wrote: >>> On 07/04/2009 11:29 PM, Aurimas Fišeras wrote: Hello, I've finished translating cryptui's resources, checked control sizes with resource editor and a