Re: appdb security

2006-06-09 Thread Christoph Frick
On Thu, Jun 08, 2006 at 06:44:15PM -0500, EA Durbin wrote: function makeSafe( $var ) { $var = trim( addslashes( $var ) ); return $var; } $clean['var1'] = makeSafe( $_REQUEST['var1'] ); $clean['var2'] = makeSafe( $_REQUEST['var2'] ); sorry for only throwing things at you guys and

Re: Dogfood report: Firefox autoupdate works

2006-06-09 Thread Saulius Krasuckas
* On Wed, 3 May 2006, Dan Kegel wrote: Windows Firefox just happily updated itself under Wine to 1.5.0.3. Nice that an uncommon code path worked fine. And how it does with 1.5.0.4 update? Firefox is solid for my uses lately. BTW, Dan, would you be so kind as to check Firefox for ablility

Re: notepad patches (search/replace, etc)

2006-06-09 Thread Andreas Mohr
Hi, On Thu, Jun 08, 2006 at 08:40:33PM -0400, Anoni Moose wrote: This is my first patch to an open source project... if anyone has any comments/suggestions, please tell me. :) I can't help but say that your parents must have been giving you a rather funny name... Or, IOW, do we have any

Re: regedit: bug fixes/feature

2006-06-09 Thread Robert Shearman
Anoni Moose wrote: These patches save current node on click, and remove items before opening keys, so if a node has no keys/is invalid, no keys show, which can lead to problems. Changelog: * programs/regedit/main.c, programs/regedit/childwnd.c: regedit: Save current node to registry

Re: notepad patches (search/replace, etc)

2006-06-09 Thread Christoph Frick
On Fri, Jun 09, 2006 at 10:08:11AM +0200, Andreas Mohr wrote: Or, IOW, do we have any guidelines about Anoni Moose submissions to our project? Are they ok, not ok, ok? Loves me, loves me not, ... what is the difference between anonymous submissions, that we can spot and which we don't? maybe

Re: notepad patches (search/replace, etc)

2006-06-09 Thread Andreas Mohr
Hi, On Fri, Jun 09, 2006 at 10:52:58AM +0200, Christoph Frick wrote: On Fri, Jun 09, 2006 at 10:08:11AM +0200, Andreas Mohr wrote: Or, IOW, do we have any guidelines about Anoni Moose submissions to our project? Are they ok, not ok, ok? Loves me, loves me not, ... what is the difference

Re: notepad patches (search/replace, etc)

2006-06-09 Thread Alexandre Julliard
Christoph Frick [EMAIL PROTECTED] writes: what is the difference between anonymous submissions, that we can spot and which we don't? maybe you are a fake ;) Of course there's no real difference, but collaboration is based on trust, and it's hard to trust people who don't even want to give out

Re: Update the progress control while installing.

2006-06-09 Thread Dmitry Timoshkov
Mike McCormack [EMAIL PROTECTED] wrote: --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -62,6 +62,8 @@ struct msi_control_tag HICON hIcon; LPWSTR tabnext; HMODULE hDll; +float progress_current; +float progress_max; Is it really necessary to use float instead of long?

Re: [WINED3D 2/9] Add the bulk of the GLSL string generation functions

2006-06-09 Thread H. Verbeet
Is making the distinction between rgba and xyzw really needed? xyzw / rgba / stpq should be equivalent and the distinction is mostly for readability if you know the variable type. However, since you can't decided that purely based on whether something is a vertex shader or a pixel shader, the way

Re: Recording with Lexia (mci open new)

2006-06-09 Thread Damjan Jovanovic
3) Most importantly: Why is it necessary to add CAPTURE to system.ini? Perhaps the alias argument isn't correctly handled? Yes wine's MCI is broken: the parsing of some formats of MCI commands is incorrect, one of the examples I clearly remember being: open G: type cdaudio alias cd and

Re: Recording with Lexia (mci open new)

2006-06-09 Thread Peter Åstrand
On Thu, 8 Jun 2006, Peter Åstrand wrote: 2) Any ideas why open new works, even though MCIERR_MISSING_DEVICE_NAME is returned? because open new alias capture should create a new mci session of name capture (which is application defined), and mci supports the auto open feature, which is

Re: [WINED3D 2/9] Add the bulk of the GLSL string generation functions

2006-06-09 Thread Jason Green
On 6/9/06, H. Verbeet [EMAIL PROTECTED] wrote: Is making the distinction between rgba and xyzw really needed? xyzw / rgba / stpq should be equivalent and the distinction is mostly for readability if you know the variable type. However, since you can't decided that purely based on whether

Re: setupapi.dll: partially implement SetupDiGetClassDevsExA

2006-06-09 Thread Peter Beutner
Mike McCormack wrote: Peter Beutner wrote: I thought they started auditing their code and removing any dirty parts? And according to their website this process is nearly done. Unfortunately, the fallout of their audit process has been that many trusted developers left the project. For

Re: Dogfood report: Firefox autoupdate works

2006-06-09 Thread Dan Kegel
On 6/9/06, Saulius Krasuckas [EMAIL PROTECTED] wrote: BTW, Dan, would you be so kind as to check Firefox for ablility to validate Wine installation as Genuine Windows? Still fails with wine-0.9.15: [EMAIL PROTECTED]:~/Desktop$ ~/wine/wine WGAPluginInstall.exe fixme:advapi:DecryptFileA

gcc V4 problem ?

2006-06-09 Thread Nick Law
Hi Guys, Hopefully somebody can give me some pointers on this. One of our Wow gamers is trying to install wine on his system and ./configure exits with a problem about not being able to compile. It looks like a problem with gcc but I can't really see what's causing it other than the

Re: appdb security

2006-06-09 Thread Tobias Burnus
Hi, Jonathan Ernst schrieb: Le jeudi 08 juin 2006 à 11:42 -0400, Chris Morgan a écrit : Can you come up with a non-destructive working example for the appdb website(appdb.winehq.org)? ;-) I ask because I thought we went through this some time ago but I agree that what you say looks like

Re: user: Added specific winproc functions for calling dialog procedures.

2006-06-09 Thread James Hawkins
Hey Alexandre, As of the following commit: Commit: 397bf3c2b133fe36529efcc4c1906bac1aac2da8 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=397bf3c2b133fe36529efcc4c1906bac1aac2da8 Author: Alexandre Julliard julliard at winehq.org Date: Tue May 9 20:33:11 2006 +0200 user:

Re: appdb security

2006-06-09 Thread Joris Huizer
Tobias Burnus wrote: Why don't you use mysql_escape_string(...)? http://de.php.net/manual/en/function.mysql-escape-string.php Tobias The page says it's deprecated and mentions using mysql_real_escape_string instead (http://nl2.php.net/mysql_real_escape_string) HTH, Joris

Re: gcc V4 problem ?

2006-06-09 Thread Marcus Meissner
On Fri, Jun 09, 2006 at 08:35:14AM +0100, Nick Law wrote: Hi Guys, Hopefully somebody can give me some pointers on this. One of our Wow gamers is trying to install wine on his system and ./configure exits with a problem about not being able to compile. It looks like a problem with

Re: DDraw: New ddraw lib

2006-06-09 Thread Jesse Allen
On 6/9/06, Stefan Dösinger [EMAIL PROTECTED] wrote: This is a resend of my ddraw rewrite, with some modifications Alexandre asked for. I removed the whitespace fixes from the files which are taken from the old ddraw code(light.c, material.c, clipper.c, viewport.c, executebuffer.c, ddcomimpl.h,

winspool/tests: Tests for GetPrintProcessorDirectory (resend for current HEAD)

2006-06-09 Thread Detlef Riekenberg
Am Freitag, den 02.06.2006, 00:11 +0200 schrieb Detlef Riekenberg: Changelog: - winspool/tests: Tests for GetPrintProcessorDirectory Resend for current HEAD -- By By ... ... Detlef diff --git a/dlls/winspool.drv/tests/info.c b/dlls/winspool.drv/tests/info.c index 57d301a..ca65021

Vertex Buffer Objects for WineD3D

2006-06-09 Thread Stefan Dösinger
Hi, In the last days I've been working on using the OpenGL vertex buffer objects extension for IWineD3DVertexBuffer. The aims of this were: * Store geometry data in the hardware for more efficient rendering * Convert the colors and rhw values on upload and get rid of drawStridedSlow The result

Re: DDraw: New ddraw lib

2006-06-09 Thread Jesse Allen
On 6/9/06, Stefan Dösinger [EMAIL PROTECTED] wrote: Hi, I just want to state, the patch is very helpful when you can't use DGA. I just ran a test with Starcraft in multiplayer last night. Using OpenGL is noticibly faster than non-DGA. So I hope that it will get applied for 0.9.16. Did you

Re: setupapi.dll: partially implement SetupDiGetClassDevsExA

2006-06-09 Thread Mike McCormack
Peter Beutner wrote: For me, the main problem is that there are ReactOS developers who think that examining Windows assembly to write ReactOS code is a proper way to do things. I think the problem is that the way you describe is totally legal in most countries. In fact, afaik it is only in

awwww

2006-06-09 Thread Dan Kegel
Hey, I wanted to see if my computer could run Vista, but: $ ~/wine/programs/msiexec/msiexec /i VistaUpgradeAdvisor.msi fixme:msi:MsiInstallProductW LVistaUpgradeAdvisor.msi (null) err:msidb:load_string_table string table corrupt? err:msidb:load_string_table string table load failed! (000218f3 !=

Re: awwww

2006-06-09 Thread Vitaliy Margolen
Friday, June 9, 2006, 10:56:43 PM, Dan Kegel wrote: Hey, I wanted to see if my computer could run Vista, but: $ ~/wine/programs/msiexec/msiexec /i VistaUpgradeAdvisor.msi fixme:msi:MsiInstallProductW LVistaUpgradeAdvisor.msi (null) err:msidb:load_string_table string table corrupt?