Re: [Mono-dev] [Mono-patches] r52427 - trunk/mcs/mbas

2005-11-02 Thread Rafael Teixeira
ocation? It seems like an issue we > haven't sen before > as well in Grasshoper. > > Thanks, Eyal. > > On Tue, 1 Nov 2005, Rafael Teixeira wrote: > > > Date: Tue, 1 Nov 2005 11:55:08 -0200 > > From: Rafael Teixeira <[EMAIL PROTECTED]> > > To: Migu

Re: [Mono-dev] Mono with NAnt

2005-11-02 Thread Rafael Teixeira
You may have to tweak NAnt.exe.config to point correctly to your Mono installation. :) On 11/2/05, Kevin Thompson <[EMAIL PROTECTED]> wrote: > Hi i have a compilation of mono from SVN and I am trying to get it to work > with nant. > > When i specify "mono-1.0" as the framework it produces an err

Re: [Mono-dev] To split or not to split Mono?

2005-11-03 Thread Rafael Teixeira
I think that splitting out anything in the MS-compatible stack will turn things harder at the user end, we have more control in the other things to decide a good, or at least reasonable, split. I would indeed keep everything MS keeps together similarly packed and released in an apropriate schedule

Re: [Mono-dev] Monodevelop: Failure to import VS.Net Solution

2005-11-09 Thread Rafael Teixeira
I believe VB.NET Projects support is lagging behind support for other languages in MD (shame on me as I can't find time to contribute it). Also ASP.NET projects AFAIK aren't correctly supported yet, either. Any takers? Regards, On 11/9/05, Craig Marshall <[EMAIL PROTECTED]> wrote: > Hi, > > I ho

Re: [Mono-dev] CS0006: Cannot find assembly `mgnat.dll'

2005-11-12 Thread Rafael Teixeira
Normally such errors occur when the assembly p/invokes into native code and the needed native library can't be found. Set MONO_LOG_LEVEL="debug" and MONO_LOG_MASK="dll" and run again to have more detailed information about the way mono is trying to load your dll. :) On 11/12/05, Laurent GUERBY <

Re: [Mono-dev] uClibc

2005-12-09 Thread Rafael Teixeira
Does uClibc support "thread local storage" (tls)? tls_appdomain is stored in the tls, and shouldn't be 0x0... On 12/9/05, Ben Timby <[EMAIL PROTECTED]> wrote: > OK, some more info. Digging in with gdb, here is what is happening: > > 1. _wapi_collection_int() is called, which starts a new thread wi

Re: [Mono-dev] WebServices with Mono on ARM / Nokia 770

2005-12-28 Thread Rafael Teixeira
Try to copy the debug-symbol files for the assemblies (.mdb) alongside them and run "mono --debug yourprogram.exe", to see if the stack trace comes with some usefull information, and post here again. Fun, On 12/28/05, marc.bordessoule <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > C# / mono seems

Re: [Mono-dev] Command Line Dispatcher

2006-01-05 Thread Rafael Teixeira
Mono.GetOptions already knows to deal with booleans and integers, besides Strings. Support for subcommands is planned but not currently implemented. I would like for you to experiment with it, and send comments or even patches to make it better. Thanks, On 1/4/06, Oscar Forero <[EMAIL PROTECTED

Re: [Mono-dev] Parallel Port Access

2006-01-06 Thread Rafael Teixeira
I assume you want to have full bidirectional access on the port, because if you just want to print raw bytes to it, just open a filestream for the device (tipically "/dev/lp0"). For bidi, you need to go deeper, and make some glue C code. Fun, On 1/5/06, Lukas <[EMAIL PROTECTED]> wrote: > Is ther

Re: [Mono-dev] Firebird embedded on Linux and Remoting

2006-01-11 Thread Rafael Teixeira
Never used firebird embedded but from the look of it, the big question is: Is you somehow registering libfbembed-created threads with Mono, if not, surely it is headed to big problems. Fun, On 1/11/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > We are using (evaluating) Firebird embe

Re: [Mono-dev] Firebird embedded on Linux and Remoting

2006-01-11 Thread Rafael Teixeira
w registering libfbembed-created threads with Mono, if > > not, surely it is headed to big problems. > > :-O > > No... Sorry if the question is obvious but... How can I do that? > > > ----- Original Message - > From: "Rafael Teixeira" <[EMAIL PROTECTED]> &g

Re: [Mono-dev] Lazy man´s Command Line Parser - Revisited

2006-01-12 Thread Rafael Teixeira
public CatLikeOptions(string[] args) : base(args) {} protected override void InitializeOtherDefaults() { ParsingMode = OptionsParsingMode.Both | OptionsParsingMode.GNU_D oubleDash; BreakSingleDashManyLettersIntoManyOptions = true; } } public class Driv

Re: [Mono-dev] Bug with MasterPages/Partial Class?

2007-02-04 Thread Rafael Teixeira
As it is a partial class, probably the other half-of-it, was generated in a different namespace and the compiler can't join both parts. As the error is being pointed in the asp.net generated source, probably it is using the default namespace instead of the one you wrote in your part. Does it work

Re: [Mono-dev] Building a VS.NET app under mono

2007-02-04 Thread Rafael Teixeira
VS.NET normally adds references for up to 5 dlls by default on winforms apps, you need to look your references folder in VS.NET and reference all that is there in you gmcs invocation. :) On 2/4/07, Paul <[EMAIL PROTECTED]> wrote: > Hi, > > I have a smallish project which builds fine under VS.NET

[Mono-dev] Monodoc engine crashes um uncompressed help, stopping MD code completion

2007-02-06 Thread Rafael Teixeira
I had some old gtk documentation in uncompressed form on my monodoc/sources dir and I've discovered that the EcmaUncompressedHelpSource doesn't override all needed methods from HelpSource, and it crashes when not finding a zip file to search things, thus stopping MD code completion (especially the

Re: [Mono-dev] Monodoc engine crashes um uncompressed help, stopping MD code completion

2007-02-07 Thread Rafael Teixeira
Joshua, It happens when some, probably newer, methods to extract pieces of xml are called and the base class assumes a zipfile is present. As I said, when MD is regenerating the code completion database it uses such functionality. If it is something to keep, probably some refactoring of the inher

Re: [Mono-dev] Almost certain this is a bug.

2007-02-07 Thread Rafael Teixeira
AFAIK you need to pass: -res:Properties/Resources.resources using a 'forward-slash', and maybe adjusting the resource ID like: -res:Properties/Resources.resources,Resources.resources 'man mcs' gives more detail. :) On 2/7/07, Paul <[EMAIL PROTECTED]> wrote: > Hi, > > I have a VS.NET app. Ther

Re: [Mono-dev] monologue and RSS.NET.dll

2007-02-09 Thread Rafael Teixeira
I vote yes, but it would be nice to tag the error in the author's list to the right, as when the feed can't be read. :) On 2/8/07, Wade Berrier <[EMAIL PROTECTED]> wrote: > Hi, > > If RSS.NET.dll (DateTime.Parse()) can't parse a date it uses > DateTime.MinValue in it's place. > > This was happeni

Re: [Mono-dev] monologue and RSS.NET.dll

2007-02-09 Thread Rafael Teixeira
Hi Wade, I'm not the maintainer but the patch looks OK for me. :) On 2/9/07, Wade Berrier <[EMAIL PROTECTED]> wrote: > Good idea. Patch attached. If no one objects, I'll commit. > > Wade > > On Fri, 2007-02-09 at 09:02 -0200, Rafael Teixeira wrote: > > I

Re: [Mono-dev] Still having resgen problems

2007-02-09 Thread Rafael Teixeira
Some diffing of the resources files may help us find why our resgen may be failing. :) On 2/9/07, Paul <[EMAIL PROTECTED]> wrote: > Hi, > > This is annoying! > > If I use resgen from mono-1.2.3 to convert resx files to resources and > then add them when I build the app, the app will invariably fa

Re: [Mono-dev] [PATCH] Bug in MonoType.GetField(FieldInfo)

2007-02-12 Thread Rafael Teixeira
Did you fill a bug case with this patch attached, in Mono's bugzilla? Nowadays is the preferred way to get patches going forth. I'm not the maintainer for that part, so I can't review and commit it myself. Thanks for your efforts anyway, Cedric. :) On 2/12/07, Cedric Vivier <[EMAIL PROTECTED]

Re: [Mono-dev] libgthread error

2007-02-12 Thread Rafael Teixeira
Hi Kruul, Did you 'force' install with rpm? It quite surely looks like a dependency failure that either was overriden when installing, or which the packaging didn't check as needed. I don't think RHE2.1 is a supported version for Mono, see the packages/versions supported in mono downloads page.

Re: [Mono-dev] Request for "Final Year Project" Ideas

2007-02-12 Thread Rafael Teixeira
What about some GUI-testing framework. GUI testability isn't easy. You'll need to do some interception work to be able to record events, and have some form to generate events programatically, and then you'd need to use perhaps reflection to play them back and the, hardest part, devise some ways to

Re: [Mono-dev] libgthread error

2007-02-13 Thread Rafael Teixeira
irectory to my server's $PATH? > > There's got to be a way to get Mono to work, without having to do a full > type of "installation" procedure... > > Kruul > > > > On 2/12/07, Rafael Teixeira <[EMAIL PROTECTED]> wrote: > > Hi Kruul, > &g

Re: [Mono-dev] Standalone Mono

2007-02-16 Thread Rafael Teixeira
You can use RPM to install into another prefix (base directory). It is some option to force the installation in another location, but if you doesn't have the needed version of that system library (libgthread), you'll not be able to run Mono again. Sorry, it seems you have too old a version of a di

Re: [Mono-dev] A bit of reflection?

2007-02-16 Thread Rafael Teixeira
Generating stubs are off-limits, AFAIK. Our utility just compares two assemblies, and gives results for differences only in the public API what I think is fine. :) On 2/14/07, Curious Committer <[EMAIL PROTECTED]> wrote: > Hi, > > I have noticed that the mono class status pages are generated with

Re: [Mono-dev] signcode on the fly

2007-02-20 Thread Rafael Teixeira
Hi Viraj, Just my inexperienced view on the problem: It seems that your pvk is encrypted, and you need to provide a password for signcode to use it, but I also don't know how. An alternative is to use an unencripted pvk file. :) On 2/20/07, viraj <[EMAIL PROTECTED]> wrote: > hi all, > i'm tryin

Re: [Mono-dev] signcode on the fly

2007-02-20 Thread Rafael Teixeira
is there a > 'signtool' equivalent in Mono? > > thanks again > > > ~viraj > > > On 2/20/07, Rafael Teixeira <[EMAIL PROTECTED]> wrote: > > Hi Viraj, > > > > Just my inexperienced view on the problem: > > > > It seems that y

[Mono-dev] SVN malfunctioning. Was Re: LoggedOut event not raised in LoginStatus

2007-02-22 Thread Rafael Teixeira
Even svn update is misbehaving for me. But it is intermittent. On 2/22/07, Gonzalo Paniagua Javier <[EMAIL PROTECTED]> wrote: > On 2/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I started using the LoginStatus control and in the LoggedOut event I was > > trying > > to do som

Re: [Mono-dev] Bugzilla bugs needing attention

2007-03-05 Thread Rafael Teixeira
Hi David, The number of code reviewers/commiters in Mono are less than we surely need and also those few have other tasks to accomplish, so we hope you, and others, can be a little patient, and sometimes also, without becoming rude, insist a bit, like you are doing. I've just glanced over the iss

Re: [Mono-dev] Bugzilla bugs needing attention

2007-03-05 Thread Rafael Teixeira
Miguel, I continue to have problems like this: >$ svn up ssh: mono-cvs.ximian.com: Temporary failure in name resolution svn: Connection closed unexpectedly >$ ping mono-cvs.ximian.com PING mono-cvs.ximian.com (130.57.169.27) 56(84) bytes of data. --- mono-cvs.ximian.com ping statistics --- 4 pac

[Mono-dev] Fwd: Providing Managed Implementations for P/Invokes - Was: [Mono-winforms-list] Caret

2007-03-09 Thread Rafael Teixeira
Forwarding this to discuss in a broader audience. :) -- Forwarded message -- From: Rafael Teixeira <[EMAIL PROTECTED]> Date: Mar 9, 2007 11:28 AM Subject: Re: [Mono-winforms-list] Caret To: George Giolfan <[EMAIL PROTECTED]> Cc: mono-winforms-list@lists.ximian.com

Re: [Mono-dev] Patch status

2007-03-16 Thread Rafael Teixeira
Hi Lionel, Do you have the bug # where you attached them? That is the way we prefer, and where some tracking can be done. Thanks for your contributions, On 3/16/07, Lionel Cuir <[EMAIL PROTECTED]> wrote: > Hello all, > > I've sent in mid-February some patches for DateTime, Queue and > Stack (for

Re: [Mono-dev] Mono Hints for Developers.

2007-03-19 Thread Rafael Teixeira
Just a small warning: This works if you are only changing the managed bits of a library what is the case for most of the other libraries, and most of the code in corlib, also. Unfortunately corlib is not the best example in that sense, because it depends on many native parts (shared structures/ in

Re: [Mono-dev] (no subject)

2007-03-19 Thread Rafael Teixeira
Hi Praveen, Opening office documents, depend on COM libraries, which won't run on Mono, unless you are in Windows, because they aren't portable (they are native windows libraries, not managed ones that Mono can run). You need to find some fully managed library to open such documents, and I don't

Re: [Mono-dev] RUNNING mon-1.2.3.1

2007-03-29 Thread Rafael Teixeira
Hi, Please give the stack-trace (bug details). Better yet if you fill a bug report on our bugzilla. :) On 3/29/07, Harishkumar V <[EMAIL PROTECTED]> wrote: > Hi, > > I downloaded mono-1.2.3.1 source package from mono-projects. > > I did > > ./configure, make , make install on my ubuntu machine.

Re: [Mono-dev] Porting runtime - where to start?

2007-03-30 Thread Rafael Teixeira
AFAIK, the interpreter was discontinued. :) On 3/30/07, John Matzen <[EMAIL PROTECTED]> wrote: > I'm trying to port the mono runtime to a device called a Wii. Although it > has a PowerPC based CPU, I think getting it running with the interpreter > first would be the best approach rather than att

Re: [Mono-dev] questions about cluster computing

2007-04-06 Thread Rafael Teixeira
Since 1.2 Mono has support to start "services" (daemons), that could be responsible for honoring the remoting requests. man mono-service for more details. :) On 4/6/07, Louis R. Marascio <[EMAIL PROTECTED]> wrote: > Travis Miller <[EMAIL PROTECTED]> wrote: > >in a previous life as a physics po

Re: [Mono-dev] Start subprogram from ASP.NET

2007-04-16 Thread Rafael Teixeira
Are you using mod_mono? If so the user account your ASP.NET app runs under may not have permission to find/run the linux native executable... But the message you gave us is just too little to really help you, please give us more details. :) On 4/16/07, darlin <[EMAIL PROTECTED]> wrote: > > Hi,

Re: [Mono-dev] Start subprogram from ASP.NET

2007-04-16 Thread Rafael Teixeira
sp.net 2.0 and try to build the user interface, > thanks to I can start/stop/ check status of tcpdump program. So, as you > noticed will be some problem with permission to this programe and > secondary, I need some solve to call tcpdump program on Linux ASP.NET mono . > > > >

Re: [Mono-dev] mjs and runtime: JScript and JavaScript differences, runtime exception

2007-05-08 Thread Rafael Teixeira
Well, JScript.NET isn't ECMAScript, period. You must follow the MSDN documentation about the language. The newer JScript in the Silverlight 1.1, alpha, is a rewrite that seems to be more compliant with ECMAScript, but it is not open, and we didn't even started to look into doing an open implementa

Re: [Mono-dev] mod_mono for ASP.NET 2.0 ..

2007-05-20 Thread Rafael Teixeira
See if your SELinux settings allow mono to generate and execute native code on-the-fly, for the needed users (normally 'apache'). The default settings of SELinux for Fedora always give me trouble, for example. Typically that is one of the reasons that cause mono programs to 'disappear' in the air

Re: [Mono-dev] SLOC

2007-05-27 Thread Rafael Teixeira
Counting only C# code: mcs; 71,023 total lines gmcs: 13,089 total lines (add to that the lines from mcs as it reuses most sources from mcs directory) What is the runtime for you? 1) The native part: Won't count C code (headers complicate it) 2) The three most basic managed libraries: -- corl

Re: [Mono-dev] Subversion on MonoDevelop

2007-05-28 Thread Rafael Teixeira
inline On 5/28/07, Lluis Sanchez <[EMAIL PROTECTED]> wrote: > El dv 25 de 05 del 2007 a les 08:04 -0400, en/na Vladimir Giszpenc va > escriure: > > Hi, > > > > PS While I am on the subject of Subversion, why is the diff window not > > editable? > > Why should it be editable? What should allow you

Re: [Mono-dev] Threading issues in page_load event (in ASP.NET on mono)

2007-05-30 Thread Rafael Teixeira
AFAIR, ASP.NET already does that for you, you can just configure the timeout period, don't reinvent the wheel, please. :) On 5/30/07, Arun <[EMAIL PROTECTED]> wrote: > Hi guys > > I am trying to run an asp.net application on mono. Please see whether > you can help me out with the following prob

Re: [Mono-dev] Threading issues in page_load event (in ASP.NET on mono)

2007-05-31 Thread Rafael Teixeira
rted. > But, won't the users see a plain blank page w/o any messages, if the code > times out? > I want to show a decent message, if the thread is taking too long! > > Interestingly this code works *perfectly* on a windows box on IIS. But not > on mono. > > :( > > &g

Re: [Mono-dev] System.Reflection and C# compiler differences between Mono and .NET.

2007-06-09 Thread Rafael Teixeira
I think they are bugs, because some reflection-based code won't work properly (I think dynamic proxies, or even xml configured IoC containers, for example). My two cents, On 6/8/07, Jonathan Pryor <[EMAIL PROTECTED]> wrote: > Mono's (g)mcs produces different metadata for explicitly-implemented >

Re: [Mono-dev] Mono debugger - confusing message

2007-06-19 Thread Rafael Teixeira
Assemblies compiled for more than version of framework, may exhibit this behaviour as that comparison for types also check the types assembliy-version numbers. Be sure to recompile (reinstall in GAC) everything for just one profile. On 6/19/07, Mads Bondo Dydensborg <[EMAIL PROTECTED]> wrote: > H

Re: [Mono-dev] Mono debugger - confusing message

2007-06-20 Thread Rafael Teixeira
+1 on the more informative message (version numbers should appear) Also you can set some env vars to see which dll files mono has effectively loaded. man mono has the details. :) On 6/20/07, Mads Bondo Dydensborg <[EMAIL PROTECTED]> wrote: > tirsdag 19 juni 2007 16:14 skrev Rafael

Re: [Mono-dev] Error in UnixGroupInfo

2007-06-20 Thread Rafael Teixeira
An alternative is to return 'dummy' members for the missing ones in GetMembers, aka Fowler's Special Case pattern, from the PoEAA book. For invalid users, return an instance of a subclass of Mono.Unix.UnixUserInfo, that returns UserId as -1, or some other invalid value. Also all other properties ex

Re: [Mono-dev] Error in UnixGroupInfo

2007-06-20 Thread Rafael Teixeira
o see if this would be the case). :) On 6/20/07, Rafael Teixeira <[EMAIL PROTECTED]> wrote: > An alternative is to return 'dummy' members for the missing ones in > GetMembers, aka > Fowler's Special Case pattern, from the PoEAA book. > For invalid user

Re: [Mono-dev] Issue with the system.DllNotFoundException

2007-07-21 Thread Rafael Teixeira
Why are you using ODBC, instead of one of the MySQL specific providers? To use the ODBC provider you need to have the native libs for odbc installed. Regards, On 7/18/07, Abir Bhattacharya <[EMAIL PROTECTED]> wrote: > > > > > Hi > > > > Am getting this error while I am trying to connect to the M

Re: [Mono-dev] NullReference Exception for IDataReader.Get

2007-07-21 Thread Rafael Teixeira
No, you should call the method that tells if the field is null ( IsDBNull() see http://msdn2.microsoft.com/en-us/library/system.data.idatarecord.isdbnull(VS.80).aspx), and then call GetString() only if it returns false. :) On 7/19/07, ~ * ~ Srijith Unni ~ * ~ <[EMAIL PROTECTED]> wrote: > Hi All,

Re: [Mono-dev] Cross-platform command-lines

2007-07-31 Thread Rafael Teixeira
Did you look at how Mono.GetOptions adapts to each platform, if desired. Just to give you food for thought. Personally I like, what I've implemented on it: the simple usage of accepting either "/" or "-" as the prefix, generally having long/descriptive option names, with selected shortcuts for a s

Re: [Mono-dev] Cross-platform command-lines

2007-08-03 Thread Rafael Teixeira
er if that's something windows > users can get accustomed to? > > Charlie > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf > > Of Rafael Teixeira > > Sent: Tuesday, July 31, 2007 10:58 AM > > To: Ch

Re: [Mono-dev] Serialization performance + remoting

2007-08-03 Thread Rafael Teixeira
Pablo, I should add that probably custom serialization should happen at the Array level, not each element, or you may end experiencing a similar problem with System.Runtime.Serialization.ObjectIDGenerator. If you know that all the array elements are different instances (no repeated references), i

Re: [Mono-dev] Serialization performance + remoting

2007-08-04 Thread Rafael Teixeira
e[] GetData() > > and perform the marshalling yourself? > > Or maybe something like > MyArrayType GetData() > > and then MyArrayType gets a customized serializer? > > Thanks! > > pablo > > > - Original Message - > From: "Rafael Teixeira" <

Re: [Mono-dev] Cross-platform command-lines

2007-08-09 Thread Rafael Teixeira
Hi Charlie, inline On 8/7/07, Charlie Poole <[EMAIL PROTECTED]> wrote: > Some follow-up questions, now that I've looked at mono.getOptions. > > 1) I like the idea of having the system provide this capablility, > rather than including it in every app. But what do people generally > do for cross-pl

Re: [Mono-dev] Cross-platform command-lines

2007-08-10 Thread Rafael Teixeira
Hi, inline On 8/9/07, Charlie Poole <[EMAIL PROTECTED]> wrote: > > Basically the idea, would be to add another of the internal > > options that would you to extract either a gettext compatible > > base file, or a strings resource file, and use the > > appropriate mechanism to translate the descr

Re: [Mono-dev] (macosX) problem concerning gtk-sharp while compiling gnome-sharp

2007-08-14 Thread Rafael Teixeira
pkgconfig is normally installed with every major distro, probably you need to install the gtk-sharp devel packages, that install the corresponding .pc files for pkgconfig to use. :) On 8/13/07, lolveley <[EMAIL PROTECTED]> wrote: > > Hello, > > I would like to compile gnome-sharp 2.16.0, and on

Re: [Mono-dev] Strings and Unicode in Mono/.NET

2007-09-30 Thread Rafael Teixeira
inline On 9/30/07, Cetin Sert <[EMAIL PROTECTED]> wrote: > 1. a) What is the maximum string length? Is it Int32.Max / 2? No it is Int32.Max (which is near UInt32.Max) [NonSerialized] private int length; But yes it is limited to some 2GB per string. > b) (If it is indeed

[Mono-dev] Google/Blogspot is not honoring the rss feed links (maybe only for browsing clients) and that is breaking Monologue aggregation

2007-09-30 Thread Rafael Teixeira
One gets redirected (at least for me as a Gmail user) to a Add to Google Home or Google Reader. But it is breaking Monologue, for many of our bloggers, so possibly some investigation is needed if just changing the htpp headers in the request can make it past and enable aggregation again. Maybe it

Re: [Mono-dev] [Mono-winforms-list] Winforms WebBrowser control - call for apps

2007-10-09 Thread Rafael Teixeira
I think RSS Bandit is a good one to test http://www.rssbandit.org/ :) On 10/9/07, Andreia Gaita <[EMAIL PROTECTED]> wrote: > Hear ye, Hear ye! > > I would like to test winforms .net applications that use the WebBrowser > control, and I need your feedback on what applications are out there that >

Re: [Mono-dev] Compiling Visual Studio Project files with Mono

2007-10-12 Thread Rafael Teixeira
You can use mdtools from MonoDevelop, that enables you to use the IDE engine (no GUI) to compile projects/solutions, among other things. You can also use MonoDevelop in full IDE mode to do that. Hope it helps, On 10/12/07, Phil <[EMAIL PROTECTED]> wrote: > I need a little bit of help. Is there a

Re: [Mono-dev] mod_mono and supplementary groups

2007-11-06 Thread Rafael Teixeira
Mod_Mono calls a process running Mono runtime, probably the process user is set to what Apache tells, but groups may not being set correctly. Just some thoughts on it. On 11/5/07, Jay Miller <[EMAIL PROTECTED]> wrote: > I'm confused about how mod_mono works with supplementary groups. I > have Apa

Re: [Mono-dev] Current SVN, 2.0, 2.1 and xbuild

2007-11-26 Thread Rafael Teixeira
AFAIR, 2.1 is a subset profile for silverlight so it should not be used for non-silverlight development. Keep using 2.0 for normal apps/libs. On 11/26/07, Mads Bondo Dydensborg <[EMAIL PROTECTED]> wrote: > > Hi there > > We use xbuild to build from csproj files. Currently xbuild seems to select >

Re: [Mono-dev] Program Option Parsing Library

2008-01-11 Thread Rafael Teixeira
2008/1/11 Jonathan Pryor <[EMAIL PROTECTED]>: > Now how should localization be handled? Should it? > > - Jon Well to not either over-engineer the code (creating another ITranslator interface) or put a dependency on translating-aware libraries like Mono.Addins, you can simply define a delegate l

Re: [Mono-devel-list] Performance of Mono on Windows

2005-02-28 Thread Rafael Teixeira
inline On Sat, 26 Feb 2005 05:54:58 -0700, Ritvik Mayank <[EMAIL PROTECTED]> wrote: > Quite a few test are hanging under mbas : > under Test/errors and Test/tests and Test/rerrors > (i have substituted vbc.exe with mbas using a symbolic links.) >From SVN HEAD I'm getting an Exception in the co

Re: [Mono-devel-list] Problems with UTF-8 Decoder

2005-02-28 Thread Rafael Teixeira
You are using outdated documentation for the utf-8 standard as of unicode 3.x, we have more than 1 million codepoints (20 bits) and utf-8 was extended to expand some of those in 5 or 6 bytes. Get some updated documentation. Also from the top of my mind \uFEFF is the continuation prefix in utf-16

Re: [Mono-devel-list] Problems with UTF-8 Decoder

2005-02-28 Thread Rafael Teixeira
://www.fileformat.info/info/unicode/char/feff/index.htm I was confusing a bit with the surrogate pairs that utf-16 uses to represent larger codepoints. See: http://czyborra.com/utf/ On Mon, 28 Feb 2005 15:53:20 -0300, Rafael Teixeira <[EMAIL PROTECTED]> wrote: > You are using outdated documentation for

Re: [Mono-devel-list] Development environment used for developing mono.

2005-02-28 Thread Rafael Teixeira
This is varied: many developers use different distros in different versions. Just an example: I'm still using Fedora Core 2. On Mon, 28 Feb 2005 11:40:40 +1300, Scott Mohekey <[EMAIL PROTECTED]> wrote: > Hi all, I'm interested in elliminating any possible issues caused by > incompatabilities of

Re: [Mono-devel-list] log4net on Mono

2005-02-28 Thread Rafael Teixeira
Last time I checked its have a target build specific for mono. It moved to Apache Foundation Incubator: http://logging.apache.org/log4net/ and they answer your question at: http://logging.apache.org/log4net/release/framework-support.html HIH, On Mon, 28 Feb 2005 18:33:40 +0100 (CET), Mauro Be

[Mono-devel-list] Mono.GetOptions got new features

2005-02-28 Thread Rafael Teixeira
d spacing. See example output from mbas: $ mbas /help MonoBASIC Compiler 0.95.0.0 - (c)2002, 2003, 2004, 2005 Rafael Teixeira This is a compiler for the MonoBASIC language, which is a superset of Visual Basic.NET Usage: mbas [options] SOURCE-FILES Options: -about

[Mono-devel-list] Re: [mono-vb] BC29999 error

2005-03-02 Thread Rafael Teixeira
Hi Ron, First, as it states in the wrongly repeated error message our VB.NET compiler is still in alpha stage, and without it you won't able to use VB.NET in your aspnet pages or user controls. I already patched the VBCodeCompiler class to call mbas in quiet mode, but I recall doing so only in th

[Mono-devel-list] Re: [mono-vb] BC29999 error

2005-03-02 Thread Rafael Teixeira
requires mono(System.Xml) = > 1.0.5000.0 > xsp-1.0.6-1.novell.9.1 requires mono(mscorlib) = > 1.0.5000.0 > > Any ideas? > > Thanks, > Ron > > > -Original Message- > > From: Rafael Teixeira [mailto:[EMAIL PROTECTED]

[Mono-devel-list] Re: [mono-vb] BC29999 error

2005-03-02 Thread Rafael Teixeira
ot;&Microsoft.VisualBasic.ChrW(10)&" align=""center"">Location: 6 N. Jackson St., P.O. Box 156, Newark, IL > 60541Phone: 815-695-5851 / Fax: 815-695-5804 href=""hours.asp#hours"">Hours"&Microsoft.VisualBasic. > ChrW(10)&

[Mono-devel-list] Re: [mono-vb] BC29999 error

2005-03-02 Thread Rafael Teixeira
> > BTW, thanks for all of the help so far. > > Ron > > > -Original Message- > > From: Rafael Teixeira [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, March 02, 2005 12:58 PM > > To: Chesko, Ron > > Cc: mono-vb@lists.ximian.com; mono-devel-list > >

Re: [Mono-devel-list] Question about using --trace parameter in Mono

2005-03-04 Thread Rafael Teixeira
Those exceptions are just being constructed (Singleton pattern) for later reuse. They aren't being thrown yet, so don't get alarmed... :) On Fri, 4 Mar 2005 13:07:03 +0100, Aleksandar Dezelin <[EMAIL PROTECTED]> wrote: > I have an application and I run it with the following command line: > > mo

Re: [Mono-devel-list] (no subject)

2005-03-08 Thread Rafael Teixeira
To read Access files, you can see if mdb-tools is alive, and install it in gda to use with our OledbClient ADO.NET provider, that uses gda(libgda). I strongly recommend you to move your data to some real database, or at least a non-proprietary file-format (Access .mdb is just a proprietary [undocum

Re: [Mono-devel-list] monod: System.ServiceProcess on Linux

2005-03-08 Thread Rafael Teixeira
Hi Jorg, Nice piece of work. But I do prefer to do it all in managed code using Mono.Unix, but I don't have ready code to show so I may silence my big mouth... ;() Thanks for sharing your code, On Tue, 8 Mar 2005 18:44:36 +0100, Jörg Rosenkranz <[EMAIL PROTECTED]> wrote: > Hi all, > > Attach

Re: [Mono-devel-list] monod: System.ServiceProcess on Linux

2005-03-09 Thread Rafael Teixeira
Maybe we should use exec instead, as is needed in uclinux... On Wed, 9 Mar 2005 09:49:36 +0100, Jörg Rosenkranz <[EMAIL PROTECTED]> wrote: > Hello Rafael, > > > -Original Message- > > From: Rafael Teixeira [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, March

Re: [Mono-devel-list] Leak in System.Timers.Timer?

2005-03-11 Thread Rafael Teixeira
Our current gc, is conservative and not very aggressive at freeing resources, you may be creating your objects way too fast... Can't you reuse the timer? Seems to be a wiser solution reuing objects as even a good gc may spend precious processing time if it has to collect zillions of short-lived ob

Re: [Mono-devel-list] Patch for SqlConnection

2005-03-11 Thread Rafael Teixeira
Hi Suresh, A programmer may forget to close a connection before it is collected. Surely in the server-side there are resouces that should be freed. That is why SQLConnection DOES have unmanaged resources to free. If our implementation isn't doing so in the finalizer/dispose it is in error, period.

Re: [Mono-devel-list] Cross Platform .NET Architecture

2005-03-14 Thread Rafael Teixeira
There's not a single answer. Sometimes we just let the problem in 'nativeland', either by duplicating some windows native library outside windows (libgdiplus.so is our version of gdiplus.dll for use in System.Drawing), or having multiple platform-dependent versions (GTK for X and for Windows) jus

Re: [Mono-devel-list] Preparing the 1.1.5 release.

2005-03-21 Thread Rafael Teixeira
Mono.GetOptions new features: Supports second level help page: --help2. Just mark little used options with SecondLevelHelp field set to true. Ex.: [Option("Shows stack trace at Error location", SecondLevelHelp = true)] public bool stacktrace { set { Report.Stacktrace = value; } }

Re: [Mono-devel-list] asp.net usercontrols and WriteFile features

2005-03-21 Thread Rafael Teixeira
More importantly, these divergences are documented (in msdn, etc.)? Because they may not hold true for ASP.NET 2.0, for instance, if they are just some undocumented implementation detail. I would not build anything upon such a shaky base... HIH, On Mon, 21 Mar 2005 09:45:42 +0100 (CET), charli

Re: [Mono-devel-list] Suggestion regarding AnonSVN Page

2005-03-22 Thread Rafael Teixeira
You should have used the autogen.sh script, that does all the steps you've found are needed and some more. Use like: ./autogen.sh --prefix=/usr Fun, On Tue, 22 Mar 2005 08:47:55 -0500, Vic Metcalfe <[EMAIL PROTECTED]> wrote: > Yesterday I downloaded the Mono source with the hope of doing some

[Mono-devel-list] Some information in the problems with FileSystemWatcher on FC3 (gamin-related)

2005-03-22 Thread Rafael Teixeira
First, the scenario: Running Monodevelop from HEAD (with Mono from HEAD), in my newly upgraded FC3, I started to get a crash when creating a new project in the solution. After some hours googling and looking at sources, I've found that FC3 uses now a package called gamin (I'm using gamin-0.25) tha

Re: [Mono-devel-list] Web service client code does not work with WebProxy

2005-03-24 Thread Rafael Teixeira
It may be related with the kind of authentication the proxy requires. Proprietary Microsoft protocols aren't supported, so if your is using MS ISA server it will have to be configured for standards-compliant (non AD-integrated) authentication protocols. HIH, On Wed, 23 Mar 2005 11:34:36 -0800, s

Re: [Mono-devel-list] Embedding Mono

2005-03-24 Thread Rafael Teixeira
None, you don't embedded Mono on a language but yet on an Application written in that language. For instance, if you integrate mono in OpenOffice.org, users (more probably devs at IT departments, in lieu of end-users) could write macros/addins in C#, Boo, MonoBASIC, Nemerle, etc... The hard-part n

Re: [Mono-devel-list] Packaging mono applications

2005-03-24 Thread Rafael Teixeira
See documentation for automake/autoconf, and in case of managed code pkg-config. Briefly autoconf looks at your configure.in template and gives you some macros to create a sofisticated configure script, that checks the environment where the build will take place and call automake. automake gets

Re: [Mono-devel-list] Introducing GtkSpell#

2005-03-24 Thread Rafael Teixeira
Can I or someone of a higher cast, create a gtkspell-sharp module in the SVN repo to house it? From there we can help to fix the few issues Zac hints about... Also Zac, can you list specifically what the issues are? :) On Wed, 23 Mar 2005 22:57:51 +0100, Martin Willemoes Hansen <[EMAIL PROTECTE

Re: [Mono-devel-list] subversion conversion date

2005-03-24 Thread Rafael Teixeira
Last non-junk message in mono-cvs-list was sent on a Miguel change at the start of November 2004 (Day 11) HIH, On Wed, 23 Mar 2005 22:15:59 -0800 (PST), Dennis Hayes <[EMAIL PROTECTED]> wrote: > > > I need to know (for an artical I am writting), which month did we switch > from CVS to Subve

Re: [Mono-devel-list] Mono/.NET pluging for browsers

2005-03-24 Thread Rafael Teixeira
The security risks are too high to be a viable project. Mono currently trusts ALL code and doesn't have a bytecode verifier to prevent malformed code to run, so virus/trojan writers would love it... We are working to improve it (see initial CAS work done alredy by Sebastien Poulio), but we are f

Re: [Mono-devel-list] Introducing GtkSpell#

2005-03-24 Thread Rafael Teixeira
Thanks Zac, My first patch it does this: 24-03-2005 Rafael Teixeira <[EMAIL PROTECTED]> sample/TestGtkSpell.cs -- added a delete event handler to end the application when closing the window -- now accepts an optional command line argument to specify

[Mono-devel-list] Just something the lazy me cooked to help committing to svn

2005-03-24 Thread Rafael Teixeira
I've put this alias definition in ~/.bashrc alias commit="(svn diff ChangeLog | grep ^+[^+] | colrm 1 1 > log) && cat log && svn commit -F log && rm log" With it I just edit the changelog and call it when ready to commit the work. A good thing is that errors in comunication or collisions stop th

Re: [Mono-devel-list] Just something the lazy me cooked to help committing to svn

2005-03-25 Thread Rafael Teixeira
it instead of my small alias. Thanks, On Thu, 24 Mar 2005 16:09:10 -0500, Ben Maurer <[EMAIL PROTECTED]> wrote: > On Thu, 2005-03-24 at 17:53 -0300, Rafael Teixeira wrote: > > I've put this alias definition in ~/.bashrc > > > > alias commit="(svn diff ChangeLog

Re: [Mono-devel-list] Mono/.NET pluging for browsers

2005-03-25 Thread Rafael Teixeira
ding appears > to be the best option from what I've seen. Of course, it would be > really nice if I could develop the plugin to work with the .net > framework as well as mono, but, it would probably end up being two > completely different code bases. > > > On Thu,

[Mono-devel-list] On Fedora upgrade gamin to 0.0.26 to avoid FileSystemWatcher/FAMWatcher problems

2005-03-25 Thread Rafael Teixeira
I was experiencing problems when adding projects to a MonoDevelop solution. And traced it back to the gamin package that is a replacement Fedora adopted for libFAM. Contacted the developer Daniel Veillard, and it pointed to a fixed version, not yet on most yum repos. Problems with FileSystemWatch

Re: [Mono-devel-list] Just something the lazy me cooked to help committing to svn

2005-03-25 Thread Rafael Teixeira
girls :) On Thu, 24 Mar 2005 16:09:10 -0500, Ben Maurer <[EMAIL PROTECTED]> wrote: > On Thu, 2005-03-24 at 17:53 -0300, Rafael Teixeira wrote: > > I've put this alias definition in ~/.bashrc > > > > alias commit="(svn diff ChangeLog | grep ^+[^+] | colrm

<    1   2   3   4   5   >