diff options
author | sijanec <sijanecantonluka@gmail.com> | 2020-09-23 21:31:39 +0200 |
---|---|---|
committer | sijanec <sijanecantonluka@gmail.com> | 2020-09-23 21:31:39 +0200 |
commit | a0a53bec5f61439dece140798235114a0164e26d (patch) | |
tree | 8a4c6a903b40da160e43ceede744e7b497d8576f /dist | |
parent | added tracking js (diff) | |
download | beziapp-a0a53bec5f61439dece140798235114a0164e26d.tar beziapp-a0a53bec5f61439dece140798235114a0164e26d.tar.gz beziapp-a0a53bec5f61439dece140798235114a0164e26d.tar.bz2 beziapp-a0a53bec5f61439dece140798235114a0164e26d.tar.lz beziapp-a0a53bec5f61439dece140798235114a0164e26d.tar.xz beziapp-a0a53bec5f61439dece140798235114a0164e26d.tar.zst beziapp-a0a53bec5f61439dece140798235114a0164e26d.zip |
Diffstat (limited to 'dist')
-rwxr-xr-x | dist/cache_name.txt | 2 | ||||
-rwxr-xr-x | dist/js/app.js | 67 | ||||
-rwxr-xr-x | dist/pages/about.html | 2 | ||||
-rwxr-xr-x | dist/sw.js | 4 |
4 files changed, 70 insertions, 5 deletions
diff --git a/dist/cache_name.txt b/dist/cache_name.txt index 40bace1..b65739a 100755 --- a/dist/cache_name.txt +++ b/dist/cache_name.txt @@ -2,4 +2,4 @@ -///site-static-1.0.15.0-beta-9887173||| +///site-static-1.0.15.0-beta-9f73d14||| diff --git a/dist/js/app.js b/dist/js/app.js index ec9ac25..14fc2bf 100755 --- a/dist/js/app.js +++ b/dist/js/app.js @@ -3,7 +3,7 @@ const app_version = "1.0.15.0-beta"; -const previous_commit = "9887173427b46fc860438440c7f0139e1f68419f"; +const previous_commit = "9f73d145b6aadb506143b0a3ec1b1d3697f24a04"; const BEZIAPP_UPDATE_INTERVAL = 300; // update vsakih 300 sekund if ("serviceWorker" in navigator) { @@ -126,10 +126,73 @@ document.addEventListener("DOMContentLoaded", () => { }, 1000 * BEZIAPP_UPDATE_INTERVAL); }); +// @begin=js@ + +var BEZIAPP_USERNAME, BEZIAPP_PASSWORD, BEZIAPP_LOPOLIS_USERNAME, BEZIAPP_LOPOLIS_PASSWORD, BEZIAPP_LANGUAGE, BEZIAPP_THEME, BEZIAPP_ERRORREPORTING; + +let promises_to_run_app = [ + localforage.getItem("username").then((value) => { + BEZIAPP_USERNAME = value; + }), + localforage.getItem("password").then((value) => { + BEZIAPP_PASSWORD = value; + }), + localforage.getItem("lopolis_username").then((value) => { + BEZIAPP_LOPOLIS_USERNAME = value; + }), + localforage.getItem("lopolis_password").then((value) => { + BEZIAPP_LOPOLIS_PASSWORD = value; + }), + localforage.getItem("chosenLang").then((value) => { + BEZIAPP_LANGUAGE = value; + }), + localforage.getItem("theme").then((value) => { + BEZIAPP_THEME = value; + }), + localforage.getItem("errorReporting").then((value) => { + BEZIAPP_ERRORREPORTING = value; + }) +]; + +Promise.all(promises_to_run_app).then(() => { + +if (BEZIAPP_USERNAME == null || BEZIAPP_USERNAME == "") { + var username_report = "neprijavljen.uporabnik"; +} else { + var username_report = BEZIAPP_USERNAME; +} +if (BEZIAPP_LOPOLIS_USERNAME == null || BEZIAPP_LOPOLIS_USERNAME == "") { + var lopolis_username_report = "NEPRIJAVLJENUPORABNIK"; +} else { + var lopolis_username_report = BEZIAPP_LOPOLIS_USERNAME; +} +if (BEZIAPP_LANGUAGE == null || BEZIAPP_LANGUAGE == "") { + var language_report = "unspecified_language"; +} else { + var language_report = BEZIAPP_LANGUAGE +} +if (BEZIAPP_THEME == null || BEZIAPP_THEME == "") { + var theme_report = "unspecified_theme"; +} else { + var theme_report = BEZIAPP_THEME; +} +if (BEZIAPP_ERRORREPORTING == null || BEZIAPP_ERRORREPORTING == "") { + var errorreporting_report = "unspecified-errorreporting"; +} else { + var errorreporting_report = BEZIAPP_ERRORREPORTING; +} + var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(["setDocumentTitle", document.domain + "/" + document.title]); _paq.push(["setDoNotTrack", true]); + _paq.push(['setUserId', username_report]); + _paq.push(['enableHeartBeatTimer', 30]); + _paq.push(['setCustomVariable', 1, 'lopolis-username', lopolis_username_report, 'visit']); + _paq.push(['setCustomVariable', 2, 'language', language_report, 'visit']); + _paq.push(['setCustomVariable', 3, 'theme', theme_report, 'visit']); + _paq.push(['setCustomVariable', 4, 'errorreporting', errorreporting_report, 'visit']); + _paq.push(['setCustomVariable', 5, 'domain', window.location.host, 'visit']); _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { @@ -140,3 +203,5 @@ var _paq = window._paq = window._paq || []; g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })(); +}); + diff --git a/dist/pages/about.html b/dist/pages/about.html index 3694a28..f79bc58 100755 --- a/dist/pages/about.html +++ b/dist/pages/about.html @@ -160,7 +160,7 @@ <div class="row"> <p> <small> - ^HEAD 9887173427b46fc860438440c7f0139e1f68419f + ^HEAD 9f73d145b6aadb506143b0a3ec1b1d3697f24a04 </small> </p> </div> @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.15.0-beta-9887173"; -// commit before the latest is 9887173427b46fc860438440c7f0139e1f68419f +const static_cache_name = "site-static-1.0.15.0-beta-9f73d14"; +// commit before the latest is 9f73d145b6aadb506143b0a3ec1b1d3697f24a04 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! |