[Pkg-mono-svn-commits] rev 4046 - in mono-tools/trunk/debian: . patches

Jo Shields directhex at alioth.debian.org
Mon Oct 12 23:48:22 UTC 2009


Author: directhex
Date: 2009-10-12 23:48:22 +0000 (Mon, 12 Oct 2009)
New Revision: 4046

Added:
   mono-tools/trunk/debian/patches/05_fix_webkit_about_blank_signal.patch
Modified:
   mono-tools/trunk/debian/changelog
   mono-tools/trunk/debian/patches/series
Log:
  * debian/patches/05_fix_webkit_about_blank_signal.patch:
    + Fix Monodoc's WebKit engine to ignore spurious events indicating
      a request of about:blank


Modified: mono-tools/trunk/debian/changelog
===================================================================
--- mono-tools/trunk/debian/changelog	2009-09-20 21:19:33 UTC (rev 4045)
+++ mono-tools/trunk/debian/changelog	2009-10-12 23:48:22 UTC (rev 4046)
@@ -1,3 +1,11 @@
+mono-tools (2.4.2-2) UNRELEASED; urgency=low
+
+  * debian/patches/05_fix_webkit_about_blank_signal.patch:
+    + Fix Monodoc's WebKit engine to ignore spurious events indicating
+      a request of about:blank
+
+ -- Jo Shields <directhex at apebox.org>  Tue, 13 Oct 2009 00:42:18 +0100
+
 mono-tools (2.4.2-1) unstable; urgency=low
 
   * New upstream release

Added: mono-tools/trunk/debian/patches/05_fix_webkit_about_blank_signal.patch
===================================================================
--- mono-tools/trunk/debian/patches/05_fix_webkit_about_blank_signal.patch	                        (rev 0)
+++ mono-tools/trunk/debian/patches/05_fix_webkit_about_blank_signal.patch	2009-10-12 23:48:22 UTC (rev 4046)
@@ -0,0 +1,13 @@
+Index: mono-tools-2.4.2/docbrowser/WebKitHtmlRender.cs
+===================================================================
+--- mono-tools-2.4.2.orig/docbrowser/WebKitHtmlRender.cs	2009-10-13 00:37:50.000000000 +0100
++++ mono-tools-2.4.2/docbrowser/WebKitHtmlRender.cs	2009-10-13 00:38:11.000000000 +0100
+@@ -31,6 +31,8 @@
+ 		web_view = new WebView ();
+ 		web_view.Show (); 
+ 		web_view.NavigationRequested += delegate (object sender, NavigationRequestedArgs e) {
++			if (e.Request.Uri == "about:blank")
++				return;
+ 			url = e.Request.Uri;
+ 			if (UrlClicked != null)
+ 				UrlClicked (this, new EventArgs());

Modified: mono-tools/trunk/debian/patches/series
===================================================================
--- mono-tools/trunk/debian/patches/series	2009-09-20 21:19:33 UTC (rev 4045)
+++ mono-tools/trunk/debian/patches/series	2009-10-12 23:48:22 UTC (rev 4046)
@@ -1,2 +1,3 @@
 00-fix_build_system.patch
 04-gendarme_link_libraries_correctly.patch
+05_fix_webkit_about_blank_signal.patch




More information about the Pkg-mono-svn-commits mailing list