gnucash maint: Bug 738477 - WebKit is broken on Win32.

John Ralls jralls at code.gnucash.org
Sun Nov 30 18:43:08 EST 2014


Updated	 via  https://github.com/Gnucash/gnucash/commit/4afa8be3 (commit)
	from  https://github.com/Gnucash/gnucash/commit/abd237fb (commit)



commit 4afa8be3c538c9741cbcab24b986a45a8f474759
Author: John Ralls <jralls at ceridwen.us>
Date:   Sun Nov 30 16:08:00 2014 -0800

    Bug 738477 - WebKit is broken on Win32.
    
    Turns out our URL for loading jqplot is what was broken.

diff --git a/src/report/report-system/html-jqplot.scm b/src/report/report-system/html-jqplot.scm
index 23a2d24..e143eaf 100644
--- a/src/report/report-system/html-jqplot.scm
+++ b/src/report/report-system/html-jqplot.scm
@@ -2,14 +2,14 @@
 
 (define (gnc:html-js-include file)
     (string-append
-        "<script language=\"javascript\" type=\"text/javascript\" src=\"file://"
+        "<script language=\"javascript\" type=\"text/javascript\" src=\"file:///"
         (gnc-path-find-localized-html-file file)
         "\"></script>\n"
     ))
 
 (define (gnc:html-css-include file)
     (string-append
-        "<link rel=\"stylesheet\" type=\"text/css\" href=\"file://"
+        "<link rel=\"stylesheet\" type=\"text/css\" href=\"file:///"
         (gnc-path-find-localized-html-file file)
         "\" />\n"
     ))



Summary of changes:
 src/report/report-system/html-jqplot.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



More information about the gnucash-changes mailing list