RE: [Mono-dev] [PATCH] Validation for xsl:output attributes.

2005-12-23 Thread Atsushi Eno
-Original Message- From: Atsushi Eno [mailto:[EMAIL PROTECTED] Sent: vrijdag 23 december 2005 18:54 To: Gert Driesen Cc: [EMAIL PROTECTED] Subject: RE: [Mono-dev] [PATCH] Validation for xsl:output attributes. Comments inline -Original Message-

[Mono-dev] [PATCH] Don't use IsModuleOnly in mcs for /target:module

2005-12-23 Thread Kornél Pál
Hi, I think it's easier to delete the assembly file after compilation than adding IsModuleOnly property to Assembly builder. The patch is a draft. Assembly file name should probably be generated to be unique. Kornél TargetModule.diff Description: Binary data

[Mono-dev] [PATCHES] Global support for instance/class properties

2005-12-23 Thread Jb Evain
Hi there, Here are some patches prior to correct bug 77040. It just implement the concept of instance or class properties within Mono tool. /mcs/mcs: - Don't emit properties as SpecialName | RTSpecialName. MSFT runtime never emits this. /mcs/class/PEAPI: - Add support for writing the

[Mono-dev] [PATCH] don't write stack trace on stackoverflow

2005-12-23 Thread Jb Evain
Hi, This small patch prevents the stack trace from being printed when a stackoverflow happens. Ok to commit ? Jb exception.patch Description: Binary data ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] [PATCH] Validation for xsl:output attributes.

2005-12-23 Thread Atsushi Eno
Gert Driesen wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Atsushi Eno Sent: vrijdag 23 december 2005 19:29 To: Gert Driesen Cc: mono-devel-list@lists.ximian.com Subject: RE: [Mono-dev] [PATCH] Validation for xsl:output attributes.

Re: [Mono-dev] [PATCH] Get initial position for FileStreams created from handles

2005-12-23 Thread Miguel de Icaza
Hello, When a FileStream is created using file name it can be assumed that the initial position is zero. But when a FileStream is created from a handle it may already have a non-zero position. MS.NET obtains initial position for FileStreams created from handles. This propoesd patch does the

Re: [Mono-dev] Dropping privileges in linux

2005-12-23 Thread Miguel de Icaza
Hello, I am looking for a way to drop privileges of an assembly started as 'root' to a normal user. I found two possible solutions, but didn't succeed with either of them ... a) Using Syscall Syscall.setgid(1000); Syscall.setuid(1000); there 1000 is the uid