Re: [Mono-dev] Patch: XSLT thread safety

2008-07-17 Thread Joshua Tauberer
are anyways standing on wrong premise anyways. Create multiple XslTransform for each thread. Since newobj happens a lot, it shouldn't be a big problem (for you at least). Atsushi Eno Joshua Tauberer wrote: Atsushi Eno wrote: Thanks for the patch, but I don't think it makes things better

Re: [Mono-dev] Patch: XSLT thread safety

2008-07-17 Thread Joshua Tauberer
Atsushi Eno wrote: msxsl:script cannot be thread safe on transform operations as script writers could write any thread-unsafe operations. Well, sure. There's lots a script can do to mess up the application, and it seems like scripts in transformations basically need full trust anyway because

Re: [Mono-dev] Patch: XSLT thread safety

2008-07-17 Thread Joshua Tauberer
Steve Bjorg wrote: XSLTCompiledTransform is thread-safe. Would that be an alternative for you? As far as I know, XSLTCompiledTransform (in Mono) just wraps the same code as XslTransformation, so they are equally thread safe. The MSDN docs seem to basically say the same thing w.r.t. thread

[Mono-dev] Patch/2nd Post: mod_mono restart

2008-07-14 Thread Joshua Tauberer
=== --- ChangeLog (revision 103720) +++ ChangeLog (working copy) @@ -1,3 +1,16 @@ +2008-05-21 Joshua Tauberer [EMAIL PROTECTED] + + * src/mod_mono.c: Always acquire a lock at the start of processing + a request. The active requests counter function

[Mono-dev] Patch: XSLT thread safety

2008-07-14 Thread Joshua Tauberer
) @@ -1,3 +1,8 @@ +2008-07-14 Joshua Tauberer [EMAIL PROTECTED] + + * XslSortEvaluator.cs: Correct thread safety. Don't modify instance + fields after template compilation. + 2008-06-03 Atsushi Enomoto [EMAIL PROTECTED] * XsltDebuggerWrapper.cs : allow public methods in debugger instance

Re: [Mono-dev] Patch: XSLT thread safety

2008-07-14 Thread Joshua Tauberer
http://razor.occams.info Yields falsehood when preceded by its quotation! Yields falsehood when preceded by its quotation! Achilles to Tortoise (in Godel, Escher, Bach by Douglas Hofstadter) Atsushi Eno Joshua Tauberer wrote: From time to time I encounter index out of range errors

Re: [Mono-dev] Bug in mod_mono?

2008-06-13 Thread Joshua Tauberer
Luciano _ wrote: Hi: If this isn't a correct place to make this kind of question, about a bug found in mod_mono, on Ubuntu (Server and Desktop 8.04) point me to the correct place please. I've got now installed and running properly my apache with Mod_mono 2 (at least the samples

[Mono-dev] mod_mono restart patch

2008-05-21 Thread Joshua Tauberer
falsehood when preceded by its quotation! Achilles to Tortoise (in Godel, Escher, Bach by Douglas Hofstadter) Index: ChangeLog === --- ChangeLog (revision 103720) +++ ChangeLog (working copy) @@ -1,3 +1,16 @@ +2008-05-21 Joshua Tauberer

Re: [Mono-dev] Documentation for Mod_Mono

2008-04-29 Thread Joshua Tauberer
Andre van Staden wrote: Not sure if this is the correct list, but lets try. I'm trying to get Websites set up with Mod_Mono Apache 2.2 on Ubuntu 8.04. I cannot get any information of the correct contents for the configuration files. Samples I could find on the internet is unclear, does

Re: [Mono-dev] Using monodoce for non-official mono project

2008-04-03 Thread Joshua Tauberer
Manuel de la Pena wrote: I'm in a developing group that is planning to release an opensource API that we have developed. We are looking in to different ways of documenting the code. We have come across monodoc and monodocer. Is it a tool that can just be used with official mono projects??Is

[Mono-dev] RoleManagerModule NRE

2008-03-10 Thread Joshua Tauberer
Hi, Occasionally I am seeing in my website a NRE in System.Web.Security.RoleManagerModule as follows: System.NullReferenceException: Object reference not set to an instance of an object at System.Web.Security.RoleManagerModule.OnPostAuthenticateRequest (System.Object sender,

Re: [Mono-dev] mod_mono and xsp patches

2008-01-22 Thread Joshua Tauberer
Miguel de Icaza wrote: In my case, I was having problems when the number of concurrent requests went above 20 or 25. (I forget the details. I've been using this patch for around 3-4 months... modulo changes I made today.) Do you think this is a manifestation of this problem:

Re: [Mono-dev] mod_mono and xsp patches

2008-01-21 Thread Joshua Tauberer
(revision 93419) +++ ChangeLog (working copy) @@ -1,3 +1,8 @@ +2008-01-21 Joshua Tauberer [EMAIL PROTECTED] + + * src/mod_mono.c: Implemented configurable rate limiting + with MonoMaxActiveRequests and MonoMaxWaitingRequests. + 2008-01-20 Joshua Tauberer [EMAIL PROTECTED] * src/mod_mono.c: Index

Re: [Mono-dev] mod_mono and xsp patches

2008-01-21 Thread Joshua Tauberer
Marek Habersack wrote: On Mon, 21 Jan 2008 13:45:54 -0500, Joshua Tauberer [EMAIL PROTECTED] scribbled: Great, in that case, I'm attaching another patch for mod_mono that implements rate limiting. I had found that under relatively heavy load, mod-mono-server would deadlock. Incoming

[Mono-dev] mod_mono and xsp patches

2008-01-20 Thread Joshua Tauberer
, Escher, Bach by Douglas Hofstadter) Index: ChangeLog === --- ChangeLog (revision 93328) +++ ChangeLog (working copy) @@ -1,3 +1,25 @@ +2008-01-20 Joshua Tauberer [EMAIL PROTECTED] + + * src/mod_mono.c

Re: [Mono-dev] error compiling mod_mono 1.2.5 with apache 1.3

2007-09-25 Thread Joshua Tauberer
César González wrote: I am trying to compile mod_mono 1.2.5 with apache 1.3.34 on debian etch. Configure scripts detects apache 1.3 on ends up with the following report : ... In file included from mod_mono.c:35: mod_mono.h:55:21: error: apr_shm.h: No such file or directory mod_mono.h:58:19:

Re: [Mono-dev] Performance improvement in System.Web.HttpWriter

2007-05-14 Thread Joshua Tauberer
Vladimir Krasnov wrote: Please approve attached patch that improves performance of HttpWriter. It uses GetMaxByteCount in Write and WriteString methods instead of GetBytesCount. I've been meaning to get a patch in to do that. In your patch, though, you can even get rid of a string-to-char[]

Re: [Mono-dev] mod_mono, fast_cgi and configuration.

2007-05-09 Thread Joshua Tauberer
Miguel de Icaza wrote: And do people have some thoughts on what we could do to improve mod_mono? Which areas are particularly weak, and what can we do to improve it? Program output (stdout/stderr) should be redirected to something other than the main server error log (root access only).

Re: [Mono-dev] Silverlight early implementation thoughts.

2007-05-09 Thread Joshua Tauberer
Marek Habersack wrote: As for ASP.NET 2.0 you mentioned. I don't know if you follow the svn trunk development, but there has been a major progress done there. Actually, although I use mod_mono, I don't use most of ASP.NET 2.0. I use an XSLT-based page generation system with a custum

Re: [Mono-dev] mod_mono, fast_cgi and configuration.

2007-05-09 Thread Joshua Tauberer
Ted Milker wrote: Something needs to be figured out about why we are forced into spawning a dozen m-m-servers (one per Apache child process) at startup. I do not see this behavior on my setup: Ah, sorry, what I meant was, they are spawned, but all but one disappear after a few seconds

Re: [Mono-dev] mod_mono, fast_cgi and configuration.

2007-05-09 Thread Joshua Tauberer
Robert Jordan wrote: Joshua Tauberer wrote: Something needs to be figured out about why we are forced into spawning a dozen m-m-servers (one per Apache child process) at startup. When apache's MPM == prefork, apache is spawning a `StartServers' amount of children during its initialization

Re: [Mono-dev] Silverlight early implementation thoughts.

2007-05-06 Thread Joshua Tauberer
Okay, good points all around Michael Hutchinson wrote: On 5/5/07, Joshua Tauberer [EMAIL PROTECTED] wrote: But the unpolished things include: Most of these are addressed in the upcoming Google Summer of Code... That might be why they came to mind, since I've read some

Re: [Mono-dev] Silverlight early implementation thoughts.

2007-05-05 Thread Joshua Tauberer
Miguel wrote: Silverlight brings another component into the equation: Hey, I don't think I usually chime in on these things, but this time I figured I would. IMO, the Mono community/project tends to spread itself very thin. Lots of things get started but not polished up and finished

Re: [Mono-dev] benchmarks mono vs others

2007-04-28 Thread Joshua Tauberer
Dennis Hayes wrote: Is there an tool or a batch on svn to have a report about performance of mono Versus Ms.NET http://ms.net/ implementation. I could not find it real quick, but you can search the archives and probably find it. There is a web site that compairs Mono, MS, Java, ect

Re: [Mono-dev] Call for testing - HttpParamsCollection bug

2007-04-23 Thread Joshua Tauberer
Miguel de Icaza wrote: I also encountered a bug in the new HttpParamsCollection, an IndexOutOfRange because of a failure to account for empty-string param values. Patch attached. Let me know if it's ok to commit. It is OK to commit. Could you also provide an nunit test case for this

Re: [Mono-dev] Call for testing: -- Timer issue

2007-04-21 Thread Joshua Tauberer
With the 1.2.4 preview, I encountered something with the MySql Connector which I narrowed down to an issue with System.Threading.Timer. I don't know what the proper way to use the Timer is, so it may be improper use on MySql's end, but nevertheless it's unexpected. When creating and disposing

Re: [Mono-dev] [Fwd: Re: [Mono-list] New anonymous subversion hostname]

2007-04-20 Thread Joshua Tauberer
Also see: http://www.mono-project.com/SVN The feed URLs technically changed since my email in 2005 (actually I only updated the wiki recently), but for now the old URLs are redirecting to the new ones. - Josh John Anderson wrote: On 4/19/07, *Wade Berrier* [EMAIL PROTECTED]

Re: [Mono-dev] monodocs2html help with source

2007-03-01 Thread Joshua Tauberer
Pedro Sobota wrote: Hi See tools/stylesheet.xsl. If a cref attribute is specified, then the value of the cref attribute is used. If a langword attribute is used, then the value of the langword attribute is used. Right. I hadn't seen the langword match. From what I gather, the cref

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

2007-02-07 Thread Joshua Tauberer
Miguel de Icaza wrote: Don't know what is best for monodoc's engine, to drop uncompressed support altogether or to correct the subclass to override the needed methods. Any bets? Drop uncompressed support. I did not even know we had that. This is my hack that underlies 'monodoc --edit path'

[Mono-dev] Patch for mkbundle and embedding Mono

2006-11-29 Thread Joshua Tauberer
MonoBundledAssembly **) bundled); - return mono_main (argc+1, newargs); } Index: ChangeLog === --- ChangeLog (revision 58921) +++ ChangeLog (working copy) @@ -1,3 +1,12 @@ +2006-11-29 Joshua Tauberer [EMAIL PROTECTED] + + * mkbundle.cs: Added

Re: [Mono-dev] Patch for mkbundle and embedding Mono

2006-11-29 Thread Joshua Tauberer
Miguel de Icaza wrote: (Btw--- This was for one of the most rapid projects I've ever done. In 3 hours, I took an existing app with a strange internal scripting language and replaced the scripting language with JavaScript, by convering the Rhino interpreter from Java to .NET (with my favorite

Re: [Mono-dev] String class speed improvements (UPDATE)

2006-11-26 Thread Joshua Tauberer
Marek Safar wrote: Thanks to Paulo's recommendations here is the updated version of my original patch. ... + while (ptr != end_ptr) { + if (*ptr == value_32) + return (int)(ptr -

Re: [Mono-dev] [PATCH] Re: mod_mono AutoConfiguration dead

2006-10-21 Thread Joshua Tauberer
Gonzalo Paniagua Javier wrote: On Fri, 2006-10-20 at 17:57 -0400, Joshua Tauberer wrote: Chris van Wyk wrote: I am running a FC4 server relying on mod_mono AutoConfiguration. Unfortunately this died on me today. I am running ver 1.1.18.0 and will appreciate it if someone could give me

[Mono-dev] [PATCH] Re: mod_mono AutoConfiguration dead

2006-10-20 Thread Joshua Tauberer
configuration if auto-configuration is enabled. This is how things were in 1.1.17. I expected the patch to allow other aliases besides XXGLOBAL to fall back, but I couldn't get it to do it... -- - Joshua Tauberer http://razor.occams.info Strike up the klezmer and start acting like a man. You're about

Re: [Mono-dev] mod_mono AutoConfiguration dead

2006-10-18 Thread Joshua Tauberer
imagine the problem is due to the 'fix' I made for virtual hosts with AddMonoApplications and AutoConfiguration turned on, which had broken in the previous release. -- - Joshua Tauberer http://razor.occams.info Strike up the klezmer and start acting like a man. You're about to have a truth-mitzvah

Re: [Mono-dev] Where do I start off??

2006-10-04 Thread Joshua Tauberer
specifically dedicated to discussions about developing Mono and programming *with* Mono. (snip) [1] http://www.mono-project.com/Mailing_Lists I just fixed the description on the wiki. with wasn't the right word (despite the emphasis around it). -- - Joshua Tauberer http://razor.occams.info Strike

[Mono-dev] mod_mono: vhost clashes again

2006-09-17 Thread Joshua Tauberer
now uses a more ugly socket file name that includes the string XXGLOBAL..) Let me know if it's ok. -- - Joshua Tauberer http://razor.occams.info Strike up the klezmer and start acting like a man. You're about to have a truth-mitzvah. -- The Colbert Report Index: src/mod_mono.c

Re: [Mono-dev] [PATCH] Small SqliteClient improvments.

2006-09-13 Thread Joshua Tauberer
. (Actually I just have been avoiding posting to the list with my new email address in fear of the onslaught of spam.) -- - Joshua Tauberer http://razor.occams.info Strike up the klezmer and start acting like a man. You're about to have a truth-mitzvah. -- The Colbert Report

Re: [Mono-dev] [PATCH] Small SqliteClient improvments.

2006-09-13 Thread Joshua Tauberer
their underlying type is not an Int32? Heh, ok, we even had a Cecil-related discussion about that and I still didn't catch it. Probably Convert.ToInt64(value) will do the trick. -- - Joshua Tauberer http://razor.occams.info Strike up the klezmer and start acting like a man. You're about to have

Re: [Mono-dev] [PATCH] Make mod_mono restart mod-mono-server

2006-05-30 Thread Joshua Tauberer
of accepting connections. Ideally what would be good would be to have some form of flag visible across the apache child processes to ensure that only one m-m-s gets started when it is not running -- possibly a file with a timestamp of the last start attempt, or something. -- - Joshua Tauberer

Re: [Mono-dev] What would you like to see in Mono?

2006-03-30 Thread Joshua Tauberer
Daniel Morgan wrote: 1. I would love to see a fully managed CLI runtime. A Cecil-powered interpreter or JIT (via DynamicMethod)? That sounds really fun. -- - Joshua Tauberer http://taubz.for.net Unfortunately, we're having this discussion. It's too bad, because guess who listens

[Mono-dev] Creating fewer objects (Sys.Xml, Sys.Web)

2006-03-27 Thread Joshua Tauberer
and hopefully have no significant performance cost. But I don't know about either. I'll try the patches out for a while to make sure I didn't goof anything up. Thanks guys. -- - Joshua Tauberer http://taubz.for.net Unfortunately, we're having this discussion. It's too bad, because guess who

Re: [Mono-dev] Creating fewer objects (Sys.Xml, Sys.Web)

2006-03-27 Thread Joshua Tauberer
, but XmlElement was checking if prefix == null which you're not checking for in your patch.) Thanks. -- - Joshua Tauberer http://taubz.for.net Unfortunately, we're having this discussion. It's too bad, because guess who listens to the discussion: the enemy

Re: [Mono-dev] Creating fewer objects (Sys.Xml, Sys.Web)

2006-03-27 Thread Joshua Tauberer
Atsushi Eno wrote: Joshua Tauberer wrote: (My patch was cooler!) Well, I have to say, it was beyond my expectation for me ;-) On which part was your patch cooler? I don't think specific-implementation-dependent code (internal AddQName) is good, and more importantly, after your code future

Re: [Mono-dev] Compiling monodoc

2006-03-09 Thread Joshua Tauberer
Paul F. Johnson wrote: Just building monodoc and it's reporting that the type or namespace Cecil does not exist in the workspace mono - is this me or a problem in svn? A problem in SVN... sorry -- - Joshua Tauberer http://taubz.for.net Unfortunately, we're having this discussion. It's

Re: [Mono-dev] PtrToStringAnsi

2006-03-09 Thread Joshua Tauberer
the implementation of StringToHGlobalUni. -- - Joshua Tauberer http://taubz.for.net Unfortunately, we're having this discussion. It's too bad, because guess who listens to the discussion: the enemy. Atsushi Eno wrote: Hello, Mono does not support non-UTF8 multibyte conversion by design. We

[Mono-dev] PtrToStringAnsi

2006-03-08 Thread Joshua Tauberer
System.Runtime.InteropServices; public class Test { public static void Main() Console.WriteLine(Marshal.PtrToStringAnsi(Marshal.StringToCoTaskMemAnsi(ü))); } } -- - Joshua Tauberer http://taubz.for.net Unfortunately, we're having this discussion. It's too bad, because guess who

Re: [Mono-dev] [PATCH] SqliteDataReader should handle getting field type for null values

2006-03-07 Thread Joshua Tauberer
' values? -- - Joshua Tauberer http://taubz.for.net Unfortunately, we're having this discussion. It's too bad, because guess who listens to the discussion: the enemy. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com

Re: [Mono-dev] Current state of documentation?

2006-02-27 Thread Joshua Tauberer
in the implementation of the class libraries. (Nudge nudge.) But the rest of us really ought to do some writing too, either through the Monodoc Gtk# app, or via editing the XML files directly and committing or submitting a patch to mono-docs-list. -- - Joshua Tauberer http://taubz.for.net Unfortunately

Re: [Mono-dev] Current state of documentation?

2006-02-27 Thread Joshua Tauberer
! -- - Joshua Tauberer http://taubz.for.net Unfortunately, we're having this discussion. It's too bad, because guess who listens to the discussion: the enemy. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman

Re: [Mono-dev] Support for blobs in SQLite

2006-01-23 Thread Joshua Tauberer
for pointing it out. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Problem with sqlite in mono 1.1.13

2006-01-22 Thread Joshua Tauberer
versus doing exactly what Sqlite does. So... I'll undo that. Do you think I should also undo string conversion to DateTime for DATETIME columns? -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ... data_row[i] = (int)Sqlite.sqlite3_column_int64 (pVm, i

Re: [Mono-dev] [PATCH] Problem with sqlite in mono 1.1.13

2006-01-22 Thread Joshua Tauberer
to be checked too, I guess. (Don't worry about resending a patch just for that tho.) -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman

Re: [Mono-dev] gacutil problem

2006-01-10 Thread Joshua Tauberer
on the right version (and no other version) actually being 'installed'. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono

Re: [Mono-dev] good IDE tool to work with MONO source codes in Linux?

2005-12-10 Thread Joshua Tauberer
Felipe Almeida Lessa wrote: Also maybe support for CVS/SVN, but AFAIK MonoDevelop doesn't handle this yet. There is a plugin ('Version Control') that does many/most SVN things. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists

Re: [Mono-dev] [PATCH] Mono.Data.SqliteClient fixes from Beagle

2005-11-29 Thread Joshua Tauberer
on that before then, just ignore my opinion. :) -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Questions about each site getting a mono process/503 errors

2005-11-14 Thread Joshua Tauberer
need to also use MonoSetServerAlias. I think that'll fix the problem. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono

Re: [Mono-dev] Questions about each site getting a mono process/503 errors

2005-11-14 Thread Joshua Tauberer
Christopher Bergström wrote: I can get vhosts to work.. I can't get vhosts to work with each site on their own process. What I said will put each vhost on its own process. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists

Re: [Mono-dev] Quick question about new features in mono control panel

2005-11-13 Thread Joshua Tauberer
.) -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Quick question about new features in mono control panel

2005-11-13 Thread Joshua Tauberer
that. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] [PATCH] mod_mono: startup problems with Apache 1.3

2005-11-13 Thread Joshua Tauberer
Better than what I was saying about reading pids from files, you could use APR's cross-process mutexes: http://docx.webperf.org/group__apr__proc__mutex.html Just put a lock around the forking+sleeping-a-bit. I think that'll cut out the simultaneous spawning pretty easily. -- - Joshua

Re: [Mono-dev] Questions about mod-mono-server process/AppDomain loading/unloading

2005-11-13 Thread Joshua Tauberer
suite currently? It's an issue specific to the design of mono's internals. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo

Re: [Mono-dev] [PATCH] mod_mono: startup problems with Apache 1.3

2005-11-12 Thread Joshua Tauberer
apache process?), read a pid in it, if the pid is valid then it's the pid of the process doing forking, otherwise write its own pid in it and do forking (with all of that locked properly, and deleting the file on shutdown). -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists

Re: [Mono-dev] RE: Mono website down ?

2005-10-11 Thread Joshua Tauberer
yet, I hope that will help them figure out what's up. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] (Nevermind) Asp.net thread abort issue

2005-10-09 Thread Joshua Tauberer
of the ThreadAbortException after catch clauses, so the thread goes on if the exception is caught at any point. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-dev] Asp.net thread abort issue

2005-10-08 Thread Joshua Tauberer
. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] (Nevermind) Asp.net thread abort issue

2005-10-08 Thread Joshua Tauberer
Nevermind my last email looks like it was my fault for catching the ThreadAbortException and not either passing it up so ResetAbort() would be called in System.Web.HttpApplication or calling ResetAbort() myself. :) -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists

[Mono-dev] Revised mod_mono vhost clash patch

2005-09-23 Thread Joshua Tauberer
to commit. -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** Index: ChangeLog === --- ChangeLog (revision 50181) +++ ChangeLog (working copy) @@ -1,3 +1,19 @@ +2005-09-23 Joshua Tauberer [EMAIL PROTECTED

[Mono-dev] Mod_mono vhost bug, log file

2005-09-19 Thread Joshua Tauberer
, you can turn on a mod_mono control panel with: Location /monoctrl/ SetHandler mono-ctrl (access restrictions here!) /Location And then view it at: http://yourdomain.com/monoctrl/ -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** Index: src/mod_mono.c

Re: [Mono-devel-list] Xml entity handling

2005-06-17 Thread Joshua Tauberer
Atsushi Eno wrote: And now it should be fixed (at r46122). I removed some nastly default xmlns* attributes handling. Much appreciated. (Tho I haven't tested it.) -- - Joshua Tauberer http://taubz.for.net ** Nothing Unreal Exists ** ___ Mono