[Pkg-mono-svn-commits] rev 1532 - xsp/trunk/debian

Pablo Fischer pabl0-guest@costa.debian.org
Wed, 02 Mar 2005 23:04:23 +0100


Author: pabl0-guest
Date: 2005-03-02 23:04:22 +0100 (Wed, 02 Mar 2005)
New Revision: 1532

Modified:
   xsp/trunk/debian/changelog
   xsp/trunk/debian/index.aspx
Log:
I patched an old file :-(


Modified: xsp/trunk/debian/changelog
===================================================================
--- xsp/trunk/debian/changelog	2005-03-02 18:21:31 UTC (rev 1531)
+++ xsp/trunk/debian/changelog	2005-03-02 22:04:22 UTC (rev 1532)
@@ -1,11 +1,13 @@
-xsp (1.0.5-0pre1) unstable; urgency=low
+xsp (1.0.5-0pre2) unstable; urgency=low
 
   * NEW upstream release
   * Pablo Fischer
     + Readme.Debian is ok, the package in Debian pool is outdated (closes: #296031)
-    + mono-xsp.init will take read the default file to verify that the daemon can be 
+    + mono-xsp.init will read the default file to verify that the daemon can be 
       started (closes: #276994)
-    + index.aspx of demos was printing bad links to examples. Its already fixed (closes: #293944)
+    + XSP was having problems with virtual domains, these last releases have been patched 
+      by upstream (cloases: #274594)
+    + index.aspx prints ok. The version located in Debian pool was outdated (closes: #293944)
     + xsp should create his own chroot (SHARED_DIR) (closes: #259163)
     + update-mono-server.conf is a symlink of mono-server-update.conf, 
       but the package name will be the same (closes: #263954)

Modified: xsp/trunk/debian/index.aspx
===================================================================
--- xsp/trunk/debian/index.aspx	2005-03-02 18:21:31 UTC (rev 1531)
+++ xsp/trunk/debian/index.aspx	2005-03-02 22:04:22 UTC (rev 1532)
@@ -6,7 +6,7 @@
 </head>
 <body>
 <h1>Welcome to Mono XSP!</h1>
-<a href="http://www.mono-project.com"><img src="/mono.png" alt="http://www.mono-project.com"></a>
+<a href="http://www.mono-project.com"><img src="/samples/mono.png" alt="http://www.mono-project.com"></a>
 <p>Here are some ASP.NET examples:</p>
 <%
 DirectoryInfo dir = new DirectoryInfo (Path.GetDirectoryName (Request.PhysicalPath));
@@ -20,7 +20,7 @@
 	string fileName = Path.GetFileName(files[i].FullName);
 	string extension = Path.GetExtension (files[i].FullName);
 	if (styles.Contains (extension)) {
-		sb.AppendFormat ("<li><a style=\"{1}\" href=\"/{0}\">{0}</a></li>\n", fileName, styles [extension]);
+		sb.AppendFormat ("<li><a style=\"{1}\" href=\"/samples/{0}\">{0}</a></li>\n", fileName, styles [extension]);
 	}
 }
 FileList.Text = sb.ToString ();