Re: [PATCH] Compiling Wine at Ubuntu 10.10

2010-10-17 Thread Gerold Jens Wucherpfennig
Original-Nachricht > Datum: Sat, 16 Oct 2010 17:26:49 +0200 > Von: Detlef Riekenberg > An: Gerold Jens Wucherpfennig > CC: wine-devel@winehq.org > Betreff: Re: [PATCH] Compiling Wine at Ubuntu 10.10 > On Sa, 2010-10-16 at 10:02 +0200, Gerold Jens Wucherpfennig wrote: > > You w

Re: [PATCH] mscms: patch for problem with displaying images with enabled color management in system and some apps

2010-10-17 Thread Nikolay Sivov
On 10/17/2010 22:46, Tomasz Michno wrote: --- dlls/mscms/tests/Makefile.in |3 ++- dlls/mscms/transform.c |2 ++ 2 files changed, 4 insertions(+), 1 deletions(-) You forgot to add new file to a patch.

Re: ws2_32: Add support and tests for WSARecvMsg and IP_PKTINFO.

2010-10-17 Thread Erich Hoover
On Sat, Oct 16, 2010 at 1:41 PM, Mike Kaplinskiy wrote: > On Thu, Oct 14, 2010 at 10:08 PM, Erich Hoover wrote: >> ... >>     DWORD                               flags; >>     unsigned int                        n_iovecs; >>     unsigned int                        first_iovec; >>+    WSABUF      

Re: windowscodecs: Fix *_CopyPixels functions to properly handle a NULL rectangle

2010-10-17 Thread Vitaliy Margolen
On 10/17/2010 01:59 AM, Krzysztof Nowicki wrote: Doing a memcpy to a local rectangle seems a morenatural way to do it Not really. Doing RECT = RECT is the natural way to do it. Don't use memcpy to copy one structure to another structure of the same type. Vitaliy.

Re: Set base direction of web site to RTL language for Hebrew

2010-10-17 Thread Yaron Shahrabani
On Sun, Oct 17, 2010 at 3:07 PM, Shachar Shemesh wrote: > On 17/10/10 15:00, Yaron Shahrabani wrote: > > >> Another manifestation of this difference can be seen when you place a >> "dir=" directive on the tag of "content_print.template". This is >> change does not pass strict HTML validation, an

Re: Set base direction of web site to RTL language for Hebrew

2010-10-17 Thread Shachar Shemesh
On 17/10/10 15:00, Yaron Shahrabani wrote: Another manifestation of this difference can be seen when you place a "dir=" directive on the tag of "content_print.template". This is change does not pass strict HTML validation, and would be unnecessary had the two CSS approaches

Re: Ubuntu Package Archive is back!

2010-10-17 Thread Yaron Shahrabani
On Sun, Oct 17, 2010 at 2:01 PM, Scott Ritchie wrote: > When I switched Ubuntu package hosting to a launchpad PPA (away from > manual .deb hosting), one thing lost was the ease of archiving old > versions, since Launchpad doesn't provide this. > > I've written some scripts to manually copy the p

Re: Set base direction of web site to RTL language for Hebrew

2010-10-17 Thread Yaron Shahrabani
On Sun, Oct 17, 2010 at 2:18 PM, Shachar Shemesh wrote: > On 17/10/10 13:52, Yaron Shahrabani wrote: > >> Waste of time, there are several objects that should be LTR (like the news >> list) and some images that need to be flipped horizontally, plus I have >> already done all the stuff I said, basi

Re: Set base direction of web site to RTL language for Hebrew

2010-10-17 Thread Shachar Shemesh
On 17/10/10 13:52, Yaron Shahrabani wrote: Waste of time, there are several objects that should be LTR (like the news list) and some images that need to be flipped horizontally, plus I have already done all the stuff I said, basically this patch is useless... I will accept and admit your accusa

Ubuntu Package Archive is back!

2010-10-17 Thread Scott Ritchie
When I switched Ubuntu package hosting to a launchpad PPA (away from manual .deb hosting), one thing lost was the ease of archiving old versions, since Launchpad doesn't provide this. I've written some scripts to manually copy the packages from the PPA to form a new archive and am hosting it at th

Re: RTL in console windows

2010-10-17 Thread Yaron Shahrabani
On Sun, Oct 17, 2010 at 1:52 PM, Shachar Shemesh wrote: > On 15/10/10 16:06, Yaron Shahrabani wrote: > >> >> So my dillema is as follows: >> Should we continue helping improving the support of displaying RTL >> languages in wineconsole or should we just ignore the CLI strings like MS >> did with a

Re: Set base direction of web site to RTL language for Hebrew

2010-10-17 Thread Yaron Shahrabani
Waste of time, there are several objects that should be LTR (like the news list) and some images that need to be flipped horizontally, plus I have already done all the stuff I said, basically this patch is useless...

Re: RTL in console windows

2010-10-17 Thread Shachar Shemesh
On 15/10/10 16:06, Yaron Shahrabani wrote: So my dillema is as follows: Should we continue helping improving the support of displaying RTL languages in wineconsole or should we just ignore the CLI strings like MS did with all of their OSes (Since Windows XP Hebrew is no longer supported offic

Translation of the AppDB

2010-10-17 Thread Yaron Shahrabani
Is there any way to localize the AppDB? The Israeli community assumes that having a Hebrew system will make more users report issues. Kind regards, Yaron Shahrabani

Re: Website: Change language string

2010-10-17 Thread Yaron Shahrabani
Thanks Paul :) Yaron Shahrabani

Re: Website: Change language string

2010-10-17 Thread Paul Vriens
On 10/17/2010 12:21 PM, Yaron Shahrabani wrote: Where does the translation of "Change Language" string at the bottom of the page and in the lang.template come from? (The current term used is male specific, I want to make it genderless). Kind regards, Yaron Shahrabani Hi Yaron, See http

Website: Change language string

2010-10-17 Thread Yaron Shahrabani
Where does the translation of "Change Language" string at the bottom of the page and in the lang.template come from? (The current term used is male specific, I want to make it genderless). Kind regards, Yaron Shahrabani

Re: windowscodecs: Fix *_CopyPixels functions to properly handle a NULL rectangle

2010-10-17 Thread Krzysztof Nowicki
W dniu 17.10.2010 01:45, Vincent Povirk pisze: +1 +if (!prc) +{ +UINT width, height; +hr = IWICBitmapSource_GetSize(This->source,&width,&height); +if (FAILED(hr)) return hr; +rc.X = 0; +rc.Y = 0; +rc.Width =