Hello community, here is the log from the commit of package xsp checked in at Thu Dec 7 19:54:01 CET 2006. -------- --- xsp/xsp.changes 2006-10-21 02:28:38.000000000 +0200 +++ /mounts/work_src_done/NOARCH/xsp/xsp.changes 2006-12-02 21:56:39.000000000 +0100 @@ -1,0 +2,9 @@ +Sat Dec 2 21:48:34 CET 2006 - wberrier@suse.de + +- Update to 1.2.1 (Fate #301111) + -Bugfixes: + -close the connection if there's an error reading the headers + (including assembly loading exceptions due to a bad installation). + -kill the warning that everyone is worried about. + +------------------------------------------------------------------- Old: ---- xsp-1.1.18.tar.gz New: ---- xsp-1.2.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xsp.spec ++++++ --- /var/tmp/diff_new_pack.tVaJOA/_old 2006-12-07 19:52:32.000000000 +0100 +++ /var/tmp/diff_new_pack.tVaJOA/_new 2006-12-07 19:52:32.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package xsp (Version 1.1.18) +# spec file for package xsp (Version 1.2.1) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -16,12 +16,12 @@ %define prefix /usr %define gnome_prefix /opt/gnome %define sysconfdir /etc -License: GNU General Public License (GPL) - all versions +License: GNU General Public License (GPL) Group: Productivity/Networking/Web/Servers Autoreqprov: on Requires: gnome-filesystem -Version: 1.1.18 -Release: 1 +Version: 1.2.1 +Release: 2 Summary: Small Web Server Hosting ASP.NET Source: %{name}-%{version}.tar.gz #Patch: xsp-libexecdir.patch @@ -77,6 +77,12 @@ %doc NEWS README %changelog -n xsp +* Sat Dec 02 2006 - wberrier@suse.de +- Update to 1.2.1 (Fate #301111) + -Bugfixes: + -close the connection if there's an error reading the headers + (including assembly loading exceptions due to a bad installation). + -kill the warning that everyone is worried about. * Sat Oct 21 2006 - wberrier@suse.de - Update to 1.1.18 -2.0 updates ++++++ xsp-1.1.18.tar.gz -> xsp-1.2.1.tar.gz ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/xsp-1.1.18/ChangeLog new/xsp-1.2.1/ChangeLog --- old/xsp-1.1.18/ChangeLog 2006-10-12 22:03:48.000000000 +0200 +++ new/xsp-1.2.1/ChangeLog 2006-11-17 19:54:54.000000000 +0100 @@ -1,3 +1,16 @@ +2006-11-17 Wade Berrier <wberrier@novell.com> + + * configure.in: version bump -> 1.2.1 + +2006-11-16 Gonzalo Paniagua Javier <gonzalo@ximian.com> + + * src/Mono.WebServer/XSPWorkerRequest.cs: close the connection if + there's an error reading the headers (including assembly loading + exceptions due to a bad installation). + + * src/ModMonoApplicationHost.cs: kill the warning that everyone is + worried about. + 2006-09-11 Gonzalo Paniagua Javier <gonzalo@ximian.com> * src/Mono.WebServer/ApplicationServer.cs: don't run BeginAccept when diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/xsp-1.1.18/configure new/xsp-1.2.1/configure --- old/xsp-1.1.18/configure 2006-10-12 22:03:58.000000000 +0200 +++ new/xsp-1.2.1/configure 2006-11-17 19:55:08.000000000 +0100 @@ -1620,7 +1620,7 @@ # Define the identity of the package. PACKAGE=xsp - VERSION=1.1.18 + VERSION=1.2.1 cat >>confdefs.h <<_ACEOF diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/xsp-1.1.18/configure.in new/xsp-1.2.1/configure.in --- old/xsp-1.1.18/configure.in 2006-10-12 22:03:48.000000000 +0200 +++ new/xsp-1.2.1/configure.in 2006-11-17 19:54:54.000000000 +0100 @@ -1,7 +1,7 @@ AC_PREREQ(2.57) AC_INIT(src/server.cs) AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE(xsp, 1.1.18) +AM_INIT_AUTOMAKE(xsp, 1.2.1) AM_MAINTAINER_MODE AC_PROG_INSTALL diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/xsp-1.1.18/src/ModMonoApplicationHost.cs new/xsp-1.2.1/src/ModMonoApplicationHost.cs --- old/xsp-1.1.18/src/ModMonoApplicationHost.cs 2006-08-25 21:55:56.000000000 +0200 +++ new/xsp-1.2.1/src/ModMonoApplicationHost.cs 2006-11-17 19:54:54.000000000 +0100 @@ -53,7 +53,8 @@ try { locker = File.OpenWrite (lockfile); } catch { - Console.Error.WriteLine ("Another mod-mono-server with the same arguments is already running."); + // Silently exit. Many people confused about this harmless message. + //Console.Error.WriteLine ("Another mod-mono-server with the same arguments is already running."); Environment.Exit (1); } } diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/xsp-1.1.18/src/Mono.WebServer/XSPApplicationHost.cs new/xsp-1.2.1/src/Mono.WebServer/XSPApplicationHost.cs --- old/xsp-1.1.18/src/Mono.WebServer/XSPApplicationHost.cs 2006-09-05 21:01:32.000000000 +0200 +++ new/xsp-1.2.1/src/Mono.WebServer/XSPApplicationHost.cs 2006-11-17 19:54:53.000000000 +0100 @@ -37,7 +37,6 @@ using System.Web; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; -using Mono.Security.Authenticode; using Mono.Security.Protocol.Tls; using SecurityProtocolType = Mono.Security.Protocol.Tls.SecurityProtocolType; using X509Certificate = System.Security.Cryptography.X509Certificates.X509Certificate; diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/xsp-1.1.18/src/Mono.WebServer/XSPWorkerRequest.cs new/xsp-1.2.1/src/Mono.WebServer/XSPWorkerRequest.cs --- old/xsp-1.1.18/src/Mono.WebServer/XSPWorkerRequest.cs 2006-08-25 21:55:56.000000000 +0200 +++ new/xsp-1.2.1/src/Mono.WebServer/XSPWorkerRequest.cs 2006-11-17 19:54:53.000000000 +0100 @@ -184,7 +184,13 @@ position = 0; this.secure = secure; - GetRequestHeaders (); + try { + GetRequestHeaders (); + } catch { + CloseConnection (); + throw; + } + string cncHeader = (string) headers ["Connection"]; if (cncHeader != null) { cncHeader = cncHeader.ToLower (); ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de