[Mono-list] Bug with non-secured resources in ASP.NET

2010-03-05 Thread Abe Gillespie
This seems to be new since somewhere around 2.4.x. I my Web.config I've got resources protected and others globally available a la: Mono grants public access to files (like images and css files) in the common di

[Mono-list] Anyone want to write this for MonoDevelop?

2010-03-05 Thread Mike Christensen
I gotta admit this is pretty cool. Someone wrote an extension for VS2010 that visualizes the garbage collector (which objects are reachable by what) using DGML.. http://blogs.msdn.com/mohamedg/archive/2010/03/02/visual-gcroot-via-dgml.aspx Mike ___ Mon

Re: [Mono-list] DLR solutions for Javascript/ECMAScript

2010-03-05 Thread Jimmy Tang
Ah, thanks a bunch! :) On Thu, Mar 4, 2010 at 10:44 PM, Michael J. Ryan wrote: > I've been following IronJS with some enthusiasm... runs fast, but > incomplete. > Hoping to see some EcmaScript5 and E4X love out there at some point... E4X > in a DLR based JS would be incredibly awesome... > > The

Re: [Mono-list] (generic)DataTable SELECT logic

2010-03-05 Thread Veerapuram Varadhan
Hi, The Sql parser in Mono has some incompatibilities w.r.t auto-generated expressions, which are currently being worked upon. Can you file a bug with both the "IS NOT NULL" and this CONVERST expression? Also, please provide corresponding MS.NET generated expressions, if possible, in the bug, w

Re: [Mono-list] How to fix System.Data.Linq.Mapping.ColumnAttribute.CanBeNull default value False

2010-03-05 Thread Andrus
> That's how you can fix it :), but please file a bug. https://bugzilla.novell.com/show_bug.cgi?id=585778 Andrus. ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] How to fix System.Data.Linq.Mapping.ColumnAttribute.CanBeNull default value False

2010-03-05 Thread Robert Jordan
On 05.03.2010 09:19, Andrus wrote: > In MONO 2.4 and 2.6.1 code below outputs > > canbenull==False > > How to fix ? > > Andrus. > > > using System; > using System.Data.Linq.Mapping; > using System.Reflection; > > public class Kontekst > { > [Column()] > public DateTime? Akuupaev { get; se

[Mono-list] How to fix System.Data.Linq.Mapping.ColumnAttribute.CanBeNull default value False

2010-03-05 Thread Andrus
In MONO 2.4 and 2.6.1 code below outputs canbenull==False How to fix ? Andrus. using System; using System.Data.Linq.Mapping; using System.Reflection; public class Kontekst { [Column()] public DateTime? Akuupaev { get; set; } } class Program { static void Main() { cons