diff --git a/TESTED b/TESTED deleted file mode 100644 index bf72c02c..00000000 --- a/TESTED +++ /dev/null @@ -1,15 +0,0 @@ -TESTED - First words ---------------------- - -As of today, Jackson and I will be testing ASP.NET controls and -applications that can be found out there. If they work, we'll add them -to this file. If they don't, we'll fix whatever is needed and make them -work. - -The list ---------- -2003-11-27 http://www.codeproject.com/aspnet/asppopup.asp - - Check out this nice popup control that works with - IE/Mozilla/Opera. - diff --git a/doc/xsp.1.in b/doc/xsp.1.in index 8ec6e471..ac00f3fd 100644 --- a/doc/xsp.1.in +++ b/doc/xsp.1.in @@ -82,6 +82,9 @@ The virtual /blog is mapped to ../myblog .B '/:.,/blog:../myblog' Two applications like the above ones are handled. .TP +.B myhost.someprovider.net:/blog:../myblog +The virtual /blog at myhost.someprovider.net is mapped to ../myblog. +.TP .I \-\-nonstop This applies only to xsp.exe: by default xsp will stop processing requests when the return key is pressed. Use this to avoid this diff --git a/server/server.cs b/server/server.cs index 0a5dd322..49601341 100644 --- a/server/server.cs +++ b/server/server.cs @@ -38,7 +38,7 @@ static void ShowVersion () static void ShowHelp () { #if MODMONO_SERVER - Console.WriteLine ("mod-mono-server.exe is a ASP.NET server used from mod_mono_unix."); + Console.WriteLine ("mod-mono-server.exe is a ASP.NET server used from mod_mono."); Console.WriteLine ("Usage is:\n"); Console.WriteLine (" mod-mono-server.exe [--root rootdir] [--applications APPS] [--filename file]"); Console.WriteLine (" [--appconfigdir DIR] [--appconfigfile FILE]"); @@ -78,13 +78,15 @@ static void ShowHelp () Console.WriteLine (" '.webapp' extension"); Console.WriteLine (" AppSettings key name: MonoApplicationsConfigDir"); Console.WriteLine (); - Console.WriteLine (" --applications APPS: This argument is DEPRECATED."); + Console.WriteLine (" --applications APPS:"); Console.WriteLine (" a comma separated list of virtual directory and"); Console.WriteLine (" real directory for all the applications we want to manage"); Console.WriteLine (" with this server. The virtual and real dirs. are separated"); Console.WriteLine (" by a colon. Optionally you may specify virtual host name"); Console.WriteLine (" and a port."); Console.WriteLine (); + Console.WriteLine (" [[hostname:]port:]VPath:realpath,..."); + Console.WriteLine (); Console.WriteLine (" Samples: /:."); Console.WriteLine (" the virtual / is mapped to the current directory."); Console.WriteLine ();