Re: msxml3: Defer the conversion of XPath expressions to UTF-8. (try 4)

2013-08-17 Thread John Chadwick
Nikolay, does this patch look good to you? I was advised on #winehackers to get some acknowledgement that the patch is OK. Hopefully doing so can get things moving along.

dxgi, directx 11 and code duplication

2013-05-27 Thread John Yani
Hi. I'm trying to set up a minimal implementation that will allow to run Assasin's Creed III. It uses these 2 functions: dxgi.dll.CreateDXGIFactory1 d3d11.dll.D3D11CreateDevice See http://bugs.winehq.org/show_bug.cgi?id=24517 I need an advice on how to implement CreateDXGIFactory1 without duplic

dxgi, directx 11 and code duplication

2013-05-27 Thread John Yani
Hi. I'm trying to set up a minimal implementation that will allow to run Assasin's Creed III. It uses these 2 functions: dxgi.dll.CreateDXGIFactory1 d3d11.dll.D3D11CreateDevice See http://bugs.winehq.org/show_bug.cgi?id=24517 I need an advice on how to implement CreateDXGIFactory1 without duplic

GSoC 2013 proposal: Implement XPath from scratch

2013-04-10 Thread John Chadwick
be working on is a library, I would probably need some application to test features with (test cases aside.) Should I be using an existing program, or writing a new one? Thanks, John Chadwick

Re: Error When Using winedbg on 64-bit Ubuntu 12.04

2012-07-21 Thread John Yani
I also have this. Only attach works for me: http://www.winehq.org/pipermail/wine-devel/2012-July/096217.html On 21 July 2012 23:46, John Edmonds wrote: > I'm using 64-bit Ubuntu 12.04. I built and installed wine using the > instructions from http://wiki.winehq.org/WineOn64bit. Whe

Error When Using winedbg on 64-bit Ubuntu 12.04

2012-07-21 Thread John Edmonds
NEDEBUG=warn+all: http://pastebin.com/RjErdbt8. My source tree is synced to git commit 020a68e1350eaf7293718732c1c9203e460709c6. Has anyone had success debugging Windows applications on 64-bit Linux? Thanks, John Edmonds

Re: Debugging wine/windows applications

2012-07-07 Thread John Yani
ead of DSF. On 7 July 2012 13:53, John Yani wrote: > Attach works. Thanks!

Re: Debugging wine/windows applications

2012-07-07 Thread John Yani
Attach works. Thanks!

Re: Debugging wine/windows applications

2012-07-07 Thread John Yani
So, you didn't try to build wine? Installed wine also works for me.

Re: Debugging wine/windows applications

2012-07-07 Thread John Yani
Maybe it's because I'm building on chrooted Ubuntu x32 and run on Ubuntu x64?

Re: Debugging wine/windows applications

2012-07-07 Thread John Yani
I tried "WINELOADER=./wine winedbg --gdb notepad" And its output is the same as "./wine winedbg --gdb notepad"

Re: Debugging wine/windows applications

2012-07-07 Thread John Yani
oadedModulesW64 If this happens, bump the number in mod 0023:0024: create thread I @0x7ebe233c Maybe winedbg wrapper is not exactly the same? How do I tell winedbg wrapper to use wine from the specific folder? On 7 July 2012 13:17, Marcus Meissner wrote: > On Sat, Jul 07, 2012 at 01:11:42PM

Re: Debugging wine/windows applications

2012-07-07 Thread John Yani
Did you mean './wine winedbg --gdb notepad'? Because I can't find winedbg binary.

Debugging wine/windows applications

2012-07-06 Thread John Yani
I tried to run wine under gdb and failed. Using multiprocess gdb I endup with weird trace: 0xf7ffd430 0x7bc846f9 0x7bc8480f 0x7bc84855 0x7bc42a94 0x7bc433b1 0x7b8772f7 0x7ebab89b 0x7bc80014 0x7bc8005d Where 0x7** addresses are not co

Re: wbemprox: Add a Win32_LogicalDisk class stub.

2012-06-30 Thread John Yani
NFS requests "Size" and "FreeSpace" fields. Not sure if it require them to be set.

Re: wbemprox: Add a Win32_LogicalDisk class stub.

2012-06-30 Thread John Yani
So, is this patch good?

Re: wbemprox: Add a Win32_LogicalDisk class stub.

2012-06-30 Thread John Yani
On 28 June 2012 22:17, Hans Leidekker wrote: > On Thu, 2012-06-28 at 21:53 +0300, John Yani wrote: >> +static void fill_logicaldisk( struct table *table ) >> +{ >> +    static const WCHAR caption[] = >> +        {'C',':',0}; >> +    static co

Re: MSVCP60.dll

2012-06-22 Thread John Emmas
On 22 Jun 2012, at 20:17, Bruno Jesus wrote: > On Fri, Jun 22, 2012 at 3:38 PM, John Emmas wrote: >> ... >> BACKTRACE FOLLOWS:- >> Unhandled exception: unimplemented function >> msvcp60.dll.??0Init@ios_base@std@@QAE@XZ called in 32-bit code (0x7b83aed2). > > Th

Re: MSVCP60.dll

2012-06-22 Thread John Emmas
On 15 Jun 2012, at 10:41, Michael Stefaniuc wrote: > > On 06/15/2012 06:22 AM, John Emmas wrote: >> >> Recently however, two customers tried to use it with Wine v1.5.35. In >> both cases the program crashed - apparently because some particular >> function wasn&

Re: MSVCP60.dll

2012-06-15 Thread John Emmas
On 15 Jun 2012, at 10:41, Michael Stefaniuc wrote: > Hello John! > > On 06/15/2012 06:22 AM, John Emmas wrote: >> Firstly, I'm not a Linux user. I'm a Windows programmer but I have a >> passing knowledge of Linux (and several friends who are Linux >

MSVCP60.dll

2012-06-14 Thread John Emmas
mple, do I need to link against a particular version of the MSVC6 runtime? Or do I need to configure my packager so that it specifically distributes the runtime modules that my app linked to? I never did that in the past - because whichever runtime came with Wine seemed to work. Any advice? John

Re: Command line parameters

2012-06-12 Thread John Emmas
). But Windows doesn't understand UTF-8. A Windows app would expect the second byte sequence (5 bytes - or 10 bytes for a Unicode app). Does Wine carry out the necessary conversion or does it simply pass the original byte string unmodified? That's what I'm trying to find out. Thanks. John

Re: Command line parameters

2012-06-07 Thread John Emmas
On 7 Jun 2012, at 21:04, Dan Kegel wrote: > John wrote: >> FWIW the Windows app launches perfectly if I use execl() in the Linux app - >> and in fact, this has all worked perfectly for years. > > That's great. Do you actually pass filenames? > Yes, our host a

Re: Command line parameters

2012-06-07 Thread John Emmas
On 7 Jun 2012, at 19:30, Dan Kegel wrote: > John asked >> [ How do I launch Windows apps from Unix apps and pass filenames to them?] >> execl (the_path_to_wine, "wine", path_to_the_windows_program, >> command_line_parameter_for_windows_app, NULL); > > Rel

Re: Command line parameters

2012-06-07 Thread John Emmas
I don't suppose it could work any other way. i'll see if I can find someone to test it for me during the next few days. Thanks for the prompt reply. John

Command line parameters

2012-06-07 Thread John Emmas
e translation takes place. Is Wine clever enough to realise that the UTF8 string needs to be converted to a locale-specific string, so that the Windows app can understand it? Or does Wine simply pass whatever characters it received, without attempting any translation? Thanks. John

Re: quartz: update ICOM_THIS_MULTI to follow the new COM standard

2012-03-31 Thread John Klehm
On Fri, Mar 30, 2012 at 11:08 AM, Jacek Caban wrote: > On 03/30/12 17:55, Aric Stewart wrote: >> diff --git a/dlls/quartz/quartz_private.h b/dlls/quartz/quartz_private.h >> index 35cd52b..d2f680c 100644 >> --- a/dlls/quartz/quartz_private.h >> +++ b/dlls/quartz/quartz_private.h >> @@ -38,7 +38,7 @

Re: Wine automated testing update

2012-02-02 Thread John Klehm
For what it's worth VirtualBox has always treated me well virtualizing XP on Win7 and Ubuntu 11.10 as well. --John On Wed, Feb 1, 2012 at 11:27 PM, Lei Zhang wrote: > On Wed, Feb 1, 2012 at 12:11 PM, Jeremy White wrote: >>  1.  Test qemu/kvm with a few Windows versions to see

Re: [PATCH 1/2] d3dx9/line: Implement Begin and End methods. (try 2)

2011-07-05 Thread John Klehm
ked at by AJ. Just have to wait it out. --John

Re: [PATCH 2/2] wined3d: Turn off message filtering temporarily in the Reset() method to allow certain messages (e.g. WM_ACTIVATEAPP) through.

2011-05-02 Thread John Edmonds
that change very thoroughly. On May 2, 2011 7:52 AM, "Henri Verbeet" wrote: > On 2 May 2011 13:18, John Edmonds wrote: >> Toki Tori and RUSH both depend on receing WM_ACTIVATEAPP before they will start. These messages are currently getting filtered out. >> This resolves b

Re: VarDateFromStr parses yyyy-mm-dd as yyyy-dd-mm in European locales

2011-04-25 Thread John Fremlin
Dan Kegel writes: > Nikolay wrote: >>> Who has authority to approve it? >> A patch? Alexandre Julliard, he's the only project maintainer. >> Send a patch to wine-patches at winehq.org when you think >> it's ready and you'll get some feedback if it's not. > > Be sure to send it to winetestbot firs

Re: VarDateFromStr parses yyyy-mm-dd as yyyy-dd-mm in European locales

2011-04-23 Thread John Fremlin
Nikolay Sivov writes: > On 4/23/2011 19:00, John Fremlin wrote: >> Europeans write dates generally as dd-mm-. This makes sense. So does >> -mm-dd. Native will parse dates written -mm-dd correctly. Wine for >> some >> reasons assumes they are -dd-mm.

VarDateFromStr parses yyyy-mm-dd as yyyy-dd-mm in European locales

2011-04-23 Thread John Fremlin
Europeans write dates generally as dd-mm-. This makes sense. So does -mm-dd. Native will parse dates written -mm-dd correctly. Wine for some reasons assumes they are -dd-mm. This is not a date ordering used anywhere as far as I know and contradicts the MS behaviour. I've submitted

Re: Why do the wintab32 tests load the dll at runtime?

2011-03-31 Thread John Klehm
t in tablet stuff in those versions of windows I might just have missed it. --John

Re: GSoC: Implement the Explorer

2011-03-24 Thread John Klehm
On Thu, Mar 24, 2011 at 9:51 AM, David Hedberg wrote: > Hi Jay, > > On Thu, Mar 24, 2011 at 05:16, Jay Yang wrote: > As for TortoiseSVN I don't dare speak for what others might find > useful or how far we are from having that working, but in general Pretty much a drop in linux replacement for to

Re: winex11.drv: Ensure that wintab xinput_handle is not NULL.

2011-02-28 Thread John Klehm
gh a bunch of function calls that are doomed to fail anyway. Even worse in most places in the wintab code we don't check if the winex11 calls succeed or fail. This would require modifications to LoadTablet and its winex11 buddy LoadTabletInfo so they could bubble up the failure. Regards, --John Klehm

Patches to fix GetDIBits for top down destination bitmaps

2011-02-27 Thread John Edmonds
Please ignore the patches http://source.winehq.org/patches/data/71716 and http://source.winehq.org/patches/data/71711. I was having trouble with my mail client and accidentally sent the same code 3 times.

Re: [wiki] Fix Link to MoinMoin

2011-02-26 Thread John Klehm
' Death to www? Just http://moinmo.in/ perhaps? Regards, --John

Re: Wine for Solaris 10 x86 roadblocks

2011-01-07 Thread John Taylor
On Fri, Jan 7, 2011 at 6:23 PM, Ron Whites wrote: > I am a newbie to Solaris as well as Wine. > > I downloaded Solaris 10 x86 on 12/6/2010 (how do I know the build/ver?) and > loaded it in a Virtual Machine on my Windows 7 Desktop. > > > > Then recently I have been trying to get Wine om Solaris 10

Re: ws2_32: socket.c: wrapped WSASendTo/WSARecvFrom with a different function name

2010-07-17 Thread John Klehm
> --- Need your real name when submitting a patch. See http://wiki.winehq.org/SubmittingPatches item 1. Regards, --John

Re: Wine code comments

2010-06-05 Thread John Voltz
Thanks for all the input. I forgot about using #if (0). That will make life much easier. John

Wine code comments

2010-06-04 Thread John Voltz
this allowed? Is there are way around it without having to change them all to //? Regards, John Voltz

Re: Future implementation

2010-04-13 Thread John Klehm
On Wed, Apr 14, 2010 at 1:46 AM, Tom Wickline wrote: > > Wine also runs on BSD and OpenSolaris, so if OSS was removed it would kill > sound support on these platforms. > Doesn't openal support bsd and solaris too? http://connect.creativelabs.com/openal/OpenAL%20Wiki/Platforms.aspx --John Klehm

Re: Another proposal for your critique: improving .NET 3.5

2010-04-01 Thread John Koelndorfer
> This is not something within GSOC scope in my opinion, I expect you will > need 6 weeks alone to get up to speed with the concepts of msi and patching. > > In general I think it's better to identify a small set of APIs to implement > or improve instead of aiming for a broad goal like "improving .

Re: [PATCH 2/2] Revert prev. Hack, as Bug 10000 is still present.

2010-04-01 Thread John Klehm
On Thu, Apr 1, 2010 at 11:16 AM, Detlef Riekenberg wrote: > With greeting from the current day. > hehe nice

Another proposal for your critique: improving .NET 3.5

2010-03-31 Thread John Koelndorfer
people also comment on the actual proposal. Does it look/sound good enough to be accepted? I fancy myself a fairly good writer but writing a proposal is still pretty new to me. :-) Thanks! John dotnet35 Description: Binary data

Re: A proposal for implementing dxdiag.exe: thoughts?

2010-03-31 Thread John Koelndorfer
> I am still skeptical about the directx conformance test part. For one part, > we already > have this: It's our regular unit tests, to be found in dlls/d3d?/tests/*, > dlls/ddraw/tests/*, > etc. OK -- it would definitely not make sense to redo the work if the tests are completed to satisfaction

Re: A proposal for implementing dxdiag.exe: thoughts?

2010-03-31 Thread John Koelndorfer
> A lot of the work is already done: > http://bugs.winehq.org/attachment.cgi?id=22871. There's a stub > dxdiag.exe already in wine, and last year some students from UCLA > coded a relatively functional dxdiag.exe. It's not yet in wine, > though. > > I don't think it would take a GSOC amount of work

A proposal for implementing dxdiag.exe: thoughts?

2010-03-31 Thread John Koelndorfer
I've written a proposal for what my plan would be regarding implementation of Wine's dxdiag based on my own thoughts and the suggestions of other wine-devel list members. I plan to submit proposals for other projects as well but before I write them I'd like to get a better feel for what's expected

Re: Summer of Code applicant with ambition!

2010-03-30 Thread John Koelndorfer
A, specular lighting, HDR? There's been a lot of feedback so far (thanks!) So far, the projects I'd like most are roughly: * Get .net 3.5 working * Implement dxdiag * DirectShow/Gstreamer * The "Direct3D - Conformance / Performance / Interactive tests" given @ http://wiki.winehq.org/SummerOfCode#head-8d0895f237c9c3579ffe4282412bbbf2c8cd019b Again, many thanks for all the helpful feedback. I look forward to (hopefully) being able to work with you all in the near future. :-) John

Re: Summer of Code applicant with ambition!

2010-03-30 Thread John Koelndorfer
ntly suggested to me and I am really set on contributing to Wine if that's possible. Again, thanks for your support and suggestions. John

Re: Summer of Code applicant with ambition!

2010-03-30 Thread John Koelndorfer
> (Correction: I've never worked on D3D :-) Fair enough, I just noted that you were listed as a possible mentor for that project so I figured you'd be the person to ask. > Sure, you could find and fix tons of problems that way, I bet. Well that's good to hear. If that can help the Wine hackers w

Re: Summer of Code applicant with ambition!

2010-03-30 Thread John Koelndorfer
pecific bugs to look into maybe I could build a project around one. Thanks! John

Summer of Code applicant with ambition!

2010-03-30 Thread John Koelndorfer
Hello wine-devel, My name is John and I'm a computer science major at the University of Minnesota, Twin Cities campus. I've made quite a bit of use of Wine before (and I have purchased Crossover) and I'm inspired to give something back to the project. I have fairly ambitious g

Re: Improve Cygwin compatibility

2010-03-02 Thread John Klehm
g is that the real names are required so Wine can legally prove where all it's code came. This way it's provable that no code is from someone that mightve been influenced by MS code. Regards, --John Klehm

Re: [Cygwin] Add dll name extraction from WINE_SONAME

2010-02-27 Thread John Klehm
d of $ac_exeext) and > works perfectly. > > I'm waiting for comments. > You need to give your real name in addition to the patch. --John Klehm

Re: iphlpapi: _res is per-thread in glibc with pthreads

2010-02-07 Thread John Klehm
Is that extra non threaded testWin98Functions(NULL) supposed to be in there? Regards, --John Klehm

Re: "Mockba to Berlin" game - mouse not clicking

2010-01-21 Thread John Klehm
users list. http://www.winehq.org/mailman/listinfo/wine-users Good luck, --John Klehm

Re: Wine AppDB xmlexport script

2010-01-14 Thread John Brezerk
2010/1/13 Austin English > On Tue, Jan 12, 2010 at 8:17 AM, John Brezerk wrote: > > Hi to All. > > > > I'd like to present php scripts ( attached xmlexport.tar.gz ) which make > > possible for third party applications to query appdb database. > >

Re: Wine AppDB xmlexport script

2010-01-12 Thread John Klehm
e. Its a separate entity that queries the database directly. --John Klehm

Re: Patch feedback requested for OleCreatePropertyFrame()

2010-01-04 Thread John Klehm
r/001229.html) >> but never committed. > > Actually it was commited (2843934af5515c7f2b8370324aa98d3964a40324) > but was then removed (140e7222e0d7ce76068cddc64c68105c2e569257) at > his request. > In case anyone was just slightly less curious than me about it: http://www.wineh

Re: Problem to download git

2009-11-18 Thread John Klehm
On Wed, Nov 18, 2009 at 11:22 PM, Dan Kegel wrote: > I'm having network errors with git tonight, too.  e.g. > > $ git pull > fatal: The remote end hung up unexpectedly > > > Hangs up about half the time for me too tonight.

Coverity access

2009-09-23 Thread John Klehm
Is there a local list of coverity defects for people like me with a spare moment here and there? Or if not is it possible to get me signed up? Thanks, --John Klehm

Re: Wine in Tango

2009-09-19 Thread John Klehm
x27;s not a > stop sign in Europe either. It generally means "no entry", and I was > under the impression it's used in that way in the US as well. Not that Yup used for "Do Not Enter" as seen here: http://www.acclaimimages.com/_gallery/_pages/0001-0412-0922-0613.html I thought it worked alright as en error icon. --John

Re: Wine in Tango

2009-09-19 Thread John Klehm
On Sat, Sep 19, 2009 at 6:13 AM, Joel Holdsworth wrote: > > The full set of Tango graphics can be seen here: > http://www.airwebreathe.org.uk/wine-icon/ . There are still a few > graphical things to fix: dxdiag, certwatermark.bmp. > Looks really great. Nice job :) --John Klehm

Re: configure: Detect and use tools executable extensions for makefiles. (try2)

2009-08-28 Thread John Klehm
On Fri, Aug 28, 2009 at 3:13 PM, Dylan Smith wrote: > (used sed to get the EXEEXT from the wine-tools/Make.rules file) > > When compiling Wine on windows, the non-script tools will have an .exe > extension, but the makefile rules assumed that the tools never have an > extention, so try to incorrect

Re: Begin Wine Development

2009-08-01 Thread John Klehm
repository? http://wiki.winehq.org/SubmittingPatches > How do you get tickets with your tasks? > http://wiki.winehq.org/Bugs http://wiki.winehq.org/BugzillaInfo Welcome to Wine :) --John Klehm

Re: How to expanding environmental variables?

2009-07-17 Thread John Klehm
On Fri, Jul 17, 2009 at 7:15 PM, John Klehm wrote: > On Fri, Jul 17, 2009 at 6:16 PM, Austin English > wrote: >> Howdy all, >> >> I'm working on a automated test for Photoshop CS 2. As before, I'm >> trying to do so in a portable way, so it works on vario

Re: How to expanding environmental variables?

2009-07-17 Thread John Klehm
uot; is the display name, you can actually access it as %PUBLIC%/Documents. I also verified that this is the case on vista by doing a "dir C:\Users\Public\Documents" and checking that the folder I created in "Public Documents" was listed there. cmd -c "echo %PUBLIC%" prints C:\Users\Public for me on vista. Hope this helps, --John Klehm

Re: Removing active maintainers

2009-06-25 Thread John Klehm
affed quite yet. Especially when there isn't a maintainer at all now for this app? http://appdb.winehq.org/objectManager.php?sClass=version&iId=1554 --John Klehm

Re: Test box tagged [dr-asus]

2009-06-07 Thread John Klehm
running in vmware or not, etc). > I'd agree but only to the extent of things which can't be reliably automatically detected. A google search listed a way to detect virtual pc and vmware [1]. Another search gave the impression that locale could be determined from using GetUserDefaultLangID

Re: Fw: Need a temporary list moderator

2009-06-01 Thread John Klehm
please email me directly. >> >> No responses so far - anybody? >> >> Luke > > Hi Luke, > > i can do parts of the job but not all. I can't do it before the 16th June, and > i know for sure that i have at least one business trip (two days) during the > rest of the time, but i can't say now when it will be. > I can help out some as well. I will be out in the woods from 6/12 to 6/19 though. --John Klehm

Re: Changing default severity in Bugzilla to Normal

2009-05-28 Thread John Klehm
>>On Thu, May 28, 2009 at 1:40 PM, Ken Sharp wrote: >>> "It seems the default severity, enhancement, invites people to select a >>> REALLY >>> SEVERE sounding level instead.  I suggest changing the default severity to >>> normal in the hopes of cutting down on the yelling." >>> http://bugs.winehq.

Re: DIB Engine : passing all tests

2009-05-27 Thread John Klehm
he most patches committed. To try and make an accusation that the project is restricted to paid peoples is both false and pointlessly inflammatory. If there was a glut of manpower there'd be plenty of time to give full reviews of every patch. As it is everyone gives the time they can. --John Klehm

Re: winhlp32: Avoid duplicate assignment in WINHELP_GetWindowInfo().

2009-05-14 Thread John Klehm
On Wed, May 13, 2009 at 4:18 PM, Gerald Pfeifer wrote: > Most straightforward, I hope. :-) > > Gerald > > ChangeLog: > Avoid duplicate assignment in WINHELP_GetWindowInfo(). > > diff --git a/programs/winhlp32/winhelp.c b/programs/winhlp32/winhelp.c > index 7f74d8b..d1980e5 100644 > --- a/programs/

Re: Severity levels

2009-05-04 Thread John Klehm
e one that can change the severity rather than reporter. Cheers, --John Klehm

Re: GL_APPLE_FENCE shares the same token in dlls/wined3d_gl.h with GL_FENCE_STATUS_NV.

2009-04-29 Thread John Klehm
> > Is it just me or did this message get sent three times? :P > 3 times for me too.

Re: kernel32/tests: Added last error tests for GetPrivateProfileString

2009-04-26 Thread John Klehm
t between windows versions. Wine tries to be compatible with multiple windows versions so deciding which would be the "right" lasterror message to give is the problem that occurs. --John Klehm

Re: i have itunes 7.60 successfully running on f10 kde 4.2

2009-04-11 Thread John Klehm
On Sat, Apr 11, 2009 at 6:11 AM, Warren Dumortier wrote: > But IMO it would be good to have iTunes working, i was not saying "i > would like to see everything work in iTunes". > Well it does run, just doesn't sync right? Sounds like its already meeting your qualifiers :)

Re: wined3d: Use OpenGL vendor and renderer to pick driver and description.

2009-04-08 Thread John Whitlock
is in place, there will be cases where we get it wrong, and the users will still want the ability to override the autopicked settings. Does this sound reasonable? Do other devs agree? John On Wed, Apr 8, 2009 at 12:58 AM, Roderick Colenbrander < thunderbir...@gmail.com> wrote: > Hi John

Re: [3/3] wined3d: Free allocated strings for driver and description

2009-04-08 Thread John Whitlock
in November. On Tue, Apr 7, 2009 at 1:23 AM, Henri Verbeet wrote: > 2009/4/7 John Whitlock : > > +HeapFree(GetProcessHeap(), 0, wined3d_settings.video_driver); > > +HeapFree(GetProcessHeap(), 0, wined3d_settings.video_description); > This should be part of the first pat

Re: implement PS_USERSTYLE handling - obviously not correct ;)

2009-04-04 Thread John Klehm
the category of being "Obvious(ly) Correct". > > What can I do to increase the probability of the patch being accepted? > Adding test cases goes along way towards being obviously correct and getting accepted into mainstream wine. --John Klehm

Re: [AppDB] Entry for Everquest 2

2009-03-19 Thread John Beaulieu
Ricardo Filipe gmail.com> writes: > as i said before, it was an uninformed decision, and yes, not enough time was >left for feedback from the maintainers.we thought that appdb WOULD save all the >data when moving, not only tests. it serves as example for us for the future, >unfortunatly with prob

Re: [AppDB] Entry for Everquest 2

2009-03-18 Thread John Beaulieu
Ben Klein gmail.com> writes: > > I just noticed that the entry for "Everquest II", the sequel to > "Everquest", is listed as version 2 under "Everquest" in AppDB. This > is incorrect, as the sequel is not a new version of the original game, > it is a new game. Can someone help me fix it? I'd del

Re: Disabling File attachments on Wiki

2009-03-15 Thread John Klehm
ms it's possible to disable it. Cheers, --John Klehm

Re: [AppDB] Entry for Everquest 2

2009-03-15 Thread John Beaulieu
This is really nitpicking isn't it? On Sun, 2009-03-15 at 12:02 +1100, Ben Klein wrote: > I just noticed that the entry for "Everquest II", the sequel to > "Everquest", is listed as version 2 under "Everquest" in AppDB. This > is incorrect, as the sequel is not a new version of the original game,

Re: Disabling File attachments on Wiki

2009-03-13 Thread John Klehm
bet without some custom coding. I'm not familiar enough with Moin SuperUser powers to say what impact parceling them out to a few people would have. --John Klehm

Re: Disabling File attachments on Wiki

2009-03-13 Thread John Klehm
nough till dimi comes to zap it. Seems there is no way to delete a user account from the web gui without a custom patch. --John Klehm

Re: Wiki challenge question on user account creation

2009-03-04 Thread John Klehm
ounts? (which would probably be a lot of bother) :/ > > The code for the Wiki is on Wine's SourceForge CVS repository: >    http://wine.cvs.sourceforge.net/viewvc/wine/wiki/ > Ahh thanks! I forgot about wine's sourceforge repo. Cheers, --John Klehm

Wiki challenge question on user account creation

2009-03-03 Thread John Klehm
enge question for user account creation in that version. What's involved in upgrading? How can I get the current winehq wiki code/data? I would be interested in helping test this or patching but I'm not sure how to import the data into my test server. Regards, --John Klehm

Re: Is the test.winehq.org front page too pessimistic?

2009-02-12 Thread John Klehm
On Thu, Feb 12, 2009 at 8:27 AM, Paul Vriens wrote: > I do it for my own boxes (see attachment). The spikes (up and down) are > mainly > when I didn't run the tests on all my boxes. But you can see the overall > trend. > Nice. :) What are you using to generate that? --John Klehm

Re: ntdll: Avoid Potential Infinite Loop

2009-02-12 Thread John Klehm
100% of bugs will be found. :) > > SERVER_START_REQ( get_token_groups ) > { > TOKEN_GROUPS *groups = tokeninfo; > > + > req->handle = wine_server_obj_handle( token ); > Unneeded whitespace change. Regards, --John Klehm

Re: Is the test.winehq.org front page too pessimistic?

2009-02-11 Thread John Klehm
efully upwards) trend graphs of number of succeeding tests? --John Klehm

Re: An idea for the appdb

2009-02-11 Thread John Klehm
words we'd have somewhere for this flood to go before we open the dam? Regards, --John Klehm

Re: bugzilla/appdb hung

2009-01-25 Thread John Haywards
Hmm, now bugzilla's slow again... :( But no error message... On Thu, 08 Jan 2009 10:43:15 -0600, Jeremy Newman wrote: > I made some tweaks to the mysql config. Hopefully it this will happen > less often to hopefully not at all now. > > -Newman > > John Haywards wrote:

Re: Fwd: Draft XI 2 protocol specification

2009-01-15 Thread John Klehm
tablet input? > Seems like it should be workable tabletwise. The main issue I think is detecting devices as tablets, but I don't seem to see anything much in regards to that. Maybe that's what hes speaking about in his todo list at the end "Refurbish device input classes?". Regards, --John Klehm

Re: bugzilla/appdb hung

2009-01-05 Thread John Haywards
On Mon, 05 Jan 2009 06:10:05 -0800, Dan Kegel wrote: Warning: mysql_connect() [function.mysql-connect]: User winehq already has more than 'max_user_connections' active connections in /home/ winehq/opt/appdb/include/query.php on line 82 Database error, please try again soon: User wineh

Re: Last change to http://wiki.winehq.org/Comctl32

2008-12-19 Thread John Klehm
On Fri, Dec 19, 2008 at 2:41 AM, Paul Vriens wrote: > Hi, > > I was just wondering if the addition of a link to > http://www.dll-download-system.com should be in our wiki. Isn't it better to > point to winetricks for getting riched20? > I'd vote yes, that site seems a bit shady to me. --John

Re: RFC: Proposed new web site design

2008-11-24 Thread John Klehm
rk we put into Wine and hosting the Wine server, and a vast > improvement over the banner ads. > Seems reasonable to me. Awesome effort on the design, --John Klehm

Re: BUG 15833: TreeView control don't save item's state

2008-10-29 Thread John Klehm
gt; > from message handler, item's state don't changed. TreeView don't save new > item > state in function TREEVIEW_UpdateDispInfo after calling > TREEVIEW_SendRealNotify. > Hey, Any patch needs the authors real name with it. Also probably a test case showing the behavior implemented by your patch would be nice as well. Cheers, --John Klehm

  1   2   3   >