From 5fc2b9842ca6cdf50ce23336de619158450b0fd3 Mon Sep 17 00:00:00 2001 From: Mathias Date: Sun, 31 Oct 2021 12:38:17 +0100 Subject: [PATCH 1/3] Update changelog.md --- system/changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/system/changelog.md b/system/changelog.md index 1a53426..a3e3a5f 100755 --- a/system/changelog.md +++ b/system/changelog.md @@ -21,6 +21,10 @@ ## Versions: +### 0.6.0.2.20211031 + +- Updated error message(s) in `QUICKTEST.HTML`. Some users started Mat-o-Wahl locally but it didn't point out, that the **browsers block reading local files**. Also, added a link to the online-help. + ### 0.6.0.1.20211009 - Update (Clarification) in the privacy statement. The user didn't really know, who he/she was helping to improve the application. Me or the people running the current Mat-o-Wahl? From 25bc120a08f60da255ae8d78906d7713850150e9 Mon Sep 17 00:00:00 2001 From: Mathias Date: Sun, 31 Oct 2021 12:38:50 +0100 Subject: [PATCH 2/3] Update quicktest.js --- system/quicktest.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/system/quicktest.js b/system/quicktest.js index c6dabda..a8761c6 100755 --- a/system/quicktest.js +++ b/system/quicktest.js @@ -383,6 +383,21 @@ function fnTestShowAll() */ + + // Protokoll prüfen - file:// oder http(s):// + var currentProtocol = window.location.protocol; + currentProtocol = currentProtocol.substr(0,4) + if (currentProtocol != "http") { + counterError++ + $("#testOtherDe").append("("+counterError+").") + .append(" Der Browser verhindert, dass Dateien von der lokalen Festplatte gelesen werden. Lösungsvorschläge finden Sie in der Online-Dokumentation unter Testen der Einstellungen. ") + .append("
"); + $("#testOtherEn").append("("+counterError+").") + .append(" The browser blocks loading local files. You can find possible solutions in the online-help at Testen der Einstellungen (German). ") + .append("
"); + } + + // Abschlussevaluation - Last check if (counterError > 0) { From 8890ef0ea38cb4a67a8d49d777f9ed67737314e6 Mon Sep 17 00:00:00 2001 From: Mathias Date: Sun, 31 Oct 2021 12:39:29 +0100 Subject: [PATCH 3/3] Update general.js --- system/general.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system/general.js b/system/general.js index d7fd763..0df073a 100755 --- a/system/general.js +++ b/system/general.js @@ -3,7 +3,7 @@ // License: GPL 3 // Mathias Steudtner http://www.medienvilla.com -var version = "0.6.0.1.20211009" +var version = "0.6.0.2.20211031" // Globale Variablen var arQuestionsShort = new Array(); // Kurzform der Fragen: Atomkraft, Flughafenausbau, ... @@ -39,8 +39,8 @@ function fnReadCsv(csvFile,fnCallback) console.log("Mat-O-Wahl ERROR - Reading CSV-file \n Code - objXML-Status: "+objXML.status+" \n Code - textStatus: "+textStatus+" \n Code - errorThrown: "+errorThrown+" \n Name and folder of CSV-file should be: "+csvFile+" \n\nPossible solutions: Check for capital letters? OR check the extension of the file (csv / xls / xlsx)? OR is the file in the wrong folder? OR are you working on a local machine :( instead of a server? See documentation on www.mat-o-wahl.de"); // document.getElementById("descriptionAddonTop").innerHTML("nanu. Da ist etwas schief gegangen.") $("#descriptionExplanation").css("color","red").css("font-size", "150%") - text = "

Nanu? Da ist etwas schief gegangen. Einige Dateien konnten nicht geladen werden.
Sind Sie ein Besucher der Seite? Dann geben Sie bitte dem Administrator der Webseite Bescheid.
Sind Sie der Administrator? Dann schauen Sie bitte in die Browser-Konsole.

" - text += "

Oh? Something went wrong. Some files couldn't be loaded.
Are you a visitor of this site? Please inform the admin of the site.
Are you the admin? Please check the browser-console.

" + text = "

Nanu? Da ist etwas schief gegangen. Einige Dateien konnten nicht geladen werden.
Sind Sie ein Besucher der Seite? Dann geben Sie bitte dem Administrator der Webseite Bescheid.
Sind Sie der Administrator? Dann schauen Sie bitte in die Browser-Konsole (Strg+Umschalt+i) und/oder öffnen Sie die quicktest.html.

" + text += "

Oh? Something went wrong. Some files couldn't be loaded.
Are you a visitor of this site? Please inform the admin of the site.
Are you the admin? Please check the browser-console (Ctrl+Shift+i) and/or open quicktest.html.

" $("#descriptionExplanation").html(text) } })