Website copyright notice?

2010-11-10 Thread Scott Ritchie
I was looking at the Wine wikipedia article and some jerk is nominating the logo image for deletion for copyright reasons. I wanted to correct the error and point to the license for the file, but couldn't actually find a license to point at. Have we asked this question before? Part of me just

Re: msvcrt: Fixed (_w)fopen_s with test. (try 3)

2010-11-10 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=6935 Your paranoid

Re: [PATCH 2/2 resend] urlmon: Added more IInternetProtocolEx tests.

2010-11-10 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=6947 Your paranoid

website: 404 Translated to Hebrew

2010-11-10 Thread Yaron Shahrabani
Kind regards, Yaron Shahrabani Hebrew translator From 80de7af1f7c46e12f474f52bd108b7928f489519 Mon Sep 17 00:00:00 2001 From: Yaron Shahrabani sh.ya...@gmail.com Date: Wed, 10 Nov 2010 12:24:54 +0200 Subject: website: 404 Translated to Hebrew --- templates/he/global/404.template | 16

Re: website: 404 Translated to Hebrew

2010-11-10 Thread Jeremy Newman
FYI: This should have been sent to wine-patches. -N On 11/10/2010 04:27 AM, Yaron Shahrabani wrote: Kind regards, YaronShahrabani Hebrew translator

Re: Website copyright notice?

2010-11-10 Thread Jeremy Newman
I have never bothered to license the web code as I don't really care who uses it for what. I guess that would make it a BSD license. As for the logo, I cannot speak for that. I don't remember who created the original version of the logo. The new version used on the website was created by Jon

Re: [PATCH] [Msvcrt]: now using macro for parameters validation itoa_s (and updated the tests as well)

2010-11-10 Thread Alexandre Julliard
Eric Pouech eric.pou...@orange.fr writes: msvcr90 doesn't set msvcrt's errno in case of error, while msvcrt does Hence the wrappers inside msvcr90 around _itoa_s and _itow_s calls. Do you have an app that depends on this? -- Alexandre Julliard julli...@winehq.org

Re: msvcrt: Implement strncat_s.

2010-11-10 Thread Alexandre Julliard
Eryk Wieliczko ewde...@gmail.com writes: +int CDECL MSVCRT_strncat_s( char* dst, MSVCRT_size_t elem, const char* src, MSVCRT_size_t count ) +{ +MSVCRT_size_t i, j; +if(!dst) return MSVCRT_EINVAL; +if(elem == 0) return MSVCRT_EINVAL; +if(!src) +{ +dst[0] =

Re: AUTHORS list and the C locale on Mac OS X

2010-11-10 Thread Ken Thomases
On Nov 9, 2010, at 4:29 PM, Reece Dunn wrote: You could use autoconf to detect: 1/ broken handling of UTF-8 characters by sed; 2/ name of LC_ALL flag that handles UTF-8 In theory, you only need to set LC_CTYPE, not any other aspect of the locale. And for that, you don't need the

Re: [PATCH] [Msvcrt]: now using macro for parameters validation itoa_s (and updated the tests as well)

2010-11-10 Thread Eric Pouech
Le 10/11/2010 17:34, Alexandre Julliard a écrit : Eric Pouecheric.pou...@orange.fr writes: msvcr90 doesn't set msvcrt's errno in case of error, while msvcrt does Hence the wrappers inside msvcr90 around _itoa_s and _itow_s calls. Do you have an app that depends on this? no, just the

Re: msvcrt: Fixed (_w)fopen_s with test. (try 3)

2010-11-10 Thread Austin English
On Wed, Nov 10, 2010 at 11:49 AM, Marvin test...@testbot.winehq.org 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

Re: [2/2] oledb32/tests: Add the XP+ behaviour and mark it as todo_wine

2010-11-10 Thread Alex Villací­s Lasso
El 10/11/10 15:02, André Hentschel escribió: That's the behaviour of XP and up: http://test.winehq.org/data/tests/oledb32:convert.html It's tricky to fix in Wine as you really don't know how much space you have in dst and assuming space breaks other tests. --- dlls/oledb32/tests/convert.c |

Re: [PATCH] [Msvcrt]: now using macro for parameters validation itoa_s (and updated the tests as well)

2010-11-10 Thread Alexandre Julliard
Eric Pouech eric.pou...@orange.fr writes: Le 10/11/2010 17:34, Alexandre Julliard a écrit : Eric Pouecheric.pou...@orange.fr writes: msvcr90 doesn't set msvcrt's errno in case of error, while msvcrt does Hence the wrappers inside msvcr90 around _itoa_s and _itow_s calls. Do you have an app

Re: [PATCH] [Msvcrt]: now using macro for parameters validation itoa_s (and updated the tests as well)

2010-11-10 Thread Eric Pouech
Le 10/11/2010 22:32, Alexandre Julliard a écrit : Eric Pouecheric.pou...@orange.fr writes: Le 10/11/2010 17:34, Alexandre Julliard a écrit : Eric Pouecheric.pou...@orange.fr writes: msvcr90 doesn't set msvcrt's errno in case of error, while msvcrt does Hence the wrappers inside msvcr90

Re: [PATCH] [Msvcrt]: now using macro for parameters validation itoa_s (and updated the tests as well)

2010-11-10 Thread Alexandre Julliard
Eric Pouech eric.pou...@orange.fr writes: Le 10/11/2010 22:32, Alexandre Julliard a écrit : Eric Pouecheric.pou...@orange.fr writes: Le 10/11/2010 17:34, Alexandre Julliard a écrit : Eric Pouecheric.pou...@orange.fr writes: msvcr90 doesn't set msvcrt's errno in case of error, while

Re: [2/2] oledb32/tests: Add the XP+ behaviour and mark it as todo_wine

2010-11-10 Thread André Hentschel
Am 10.11.2010 22:24, schrieb Alex Villací­s Lasso: El 10/11/10 15:02, André Hentschel escribió: That's the behaviour of XP and up: http://test.winehq.org/data/tests/oledb32:convert.html It's tricky to fix in Wine as you really don't know how much space you have in dst and assuming space

Re: AUTHORS list and the C locale on Mac OS X

2010-11-10 Thread Ken Thomases
On Nov 10, 2010, at 2:27 PM, Hin-Tak Leung wrote: --- On Wed, 10/11/10, Ken Thomases k...@codeweavers.com wrote: Are you sure about that? Checking on a couple of Linux systems here, the locale command reports: $ locale LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 ... mine (fedora x86_64)

Re: AUTHORS list and the C locale on Mac OS X

2010-11-10 Thread Reece Dunn
On 10 November 2010 22:45, Ken Thomases k...@codeweavers.com wrote: On Nov 10, 2010, at 2:27 PM, Hin-Tak Leung wrote: --- On Wed, 10/11/10, Ken Thomases k...@codeweavers.com wrote: Are you sure about that?  Checking on a couple of Linux systems here, the locale command reports: $ locale

Re: AUTHORS list and the C locale on Mac OS X

2010-11-10 Thread Ken Thomases
On Nov 10, 2010, at 5:00 PM, Reece Dunn wrote: I'm getting the same behaviour (Ubuntu 10.10) -- LC_ALL accepts either utf8 or UTF-8 for en_GB, en_IE, etc. The caveat here is that the primary locale needs to exist (and presumably needs to have a UTF-8 valiant present). That is, as I don't

Re: mshtml/tests: Add some broken 2k8 values

2010-11-10 Thread André Hentschel
Am 11.11.2010 00:18, schrieb 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

Re: mshtml/tests: Add some broken 2k8 values

2010-11-10 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=6958 Your paranoid

Re: Website copyright notice?

2010-11-10 Thread Scott Ritchie
The website logo is the one in question: http://en.wikipedia.org/wiki/File:Winehq_logo_glass.png -Scott On 11/10/2010 07:50 AM, Jeremy Newman wrote: I have never bothered to license the web code as I don't really care who uses it for what. I guess that would make it a BSD license. As for

Re: AUTHORS list and the C locale on Mac OS X

2010-11-10 Thread Hin-Tak Leung
--- On Wed, 10/11/10, Ken Thomases k...@codeweavers.com wrote: From: Ken Thomases k...@codeweavers.com Subject: Re: AUTHORS list and the C locale on Mac OS X To: Reece Dunn mscl...@googlemail.com Cc: wine-devel wine-devel@winehq.org Date: Wednesday, 10 November, 2010, 20:08 On Nov 9, 2010,

Re: AUTHORS list and the C locale on Mac OS X

2010-11-10 Thread Hin-Tak Leung
--- On Wed, 10/11/10, Ken Thomases k...@codeweavers.com wrote: I should have been clearer.  The output just reflects your environment.  So, you have LANG set to en_GB.utf8.  I had LANG set to en_US.UTF-8.  My only point was to say that the UTF-8 form is acceptable.  It was not to suggest