diff --git a/docs/www/asset-manifest.json b/docs/www/asset-manifest.json new file mode 100644 index 000000000..d5a5ad1e5 --- /dev/null +++ b/docs/www/asset-manifest.json @@ -0,0 +1,19 @@ +{ + "files": { + "main.js": "./static/js/main.f1d41649.chunk.js", + "main.js.map": "./static/js/main.f1d41649.chunk.js.map", + "runtime-main.js": "./static/js/runtime-main.19678de4.js", + "runtime-main.js.map": "./static/js/runtime-main.19678de4.js.map", + "static/js/2.88eac816.chunk.js": "./static/js/2.88eac816.chunk.js", + "static/js/2.88eac816.chunk.js.map": "./static/js/2.88eac816.chunk.js.map", + "index.html": "./index.html", + "precache-manifest.66a6da2c9bd728142140b2820943c54e.js": "./precache-manifest.66a6da2c9bd728142140b2820943c54e.js", + "service-worker.js": "./service-worker.js", + "static/js/2.88eac816.chunk.js.LICENSE": "./static/js/2.88eac816.chunk.js.LICENSE" + }, + "entrypoints": [ + "static/js/runtime-main.19678de4.js", + "static/js/2.88eac816.chunk.js", + "static/js/main.f1d41649.chunk.js" + ] +} \ No newline at end of file diff --git a/docs/www/assets/img/mll_02.png b/docs/www/assets/img/mll_02.png index faf60e57e..de47b749f 100644 Binary files a/docs/www/assets/img/mll_02.png and b/docs/www/assets/img/mll_02.png differ diff --git a/docs/www/assets/img/mll_03.png b/docs/www/assets/img/mll_03.png index 91f4e4bf5..572125b7a 100644 Binary files a/docs/www/assets/img/mll_03.png and b/docs/www/assets/img/mll_03.png differ diff --git a/docs/www/assets/img/mll_04.png b/docs/www/assets/img/mll_04.png index a45590d6e..05dad110b 100644 Binary files a/docs/www/assets/img/mll_04.png and b/docs/www/assets/img/mll_04.png differ diff --git a/docs/www/assets/img/mll_05.png b/docs/www/assets/img/mll_05.png index 47340fde2..12ac35205 100644 Binary files a/docs/www/assets/img/mll_05.png and b/docs/www/assets/img/mll_05.png differ diff --git a/docs/www/assets/img/mll_06.png b/docs/www/assets/img/mll_06.png index dec8b5395..d9c45636d 100644 Binary files a/docs/www/assets/img/mll_06.png and b/docs/www/assets/img/mll_06.png differ diff --git a/docs/www/assets/js/main.js b/docs/www/assets/js/main.js deleted file mode 100644 index 1a7837489..000000000 --- a/docs/www/assets/js/main.js +++ /dev/null @@ -1,163 +0,0 @@ -function menuSwap(itemIndex) { - for(var i = 1; i <= 6; i++) { - var strItem = "item" + i; - var objItem = document.getElementById(strItem); - objItem.style.display = (i == itemIndex) ? "block" : "none"; - } -} - -function logSwap(itemIndex, show) { - for(var i = 1; i <= 7; i++) { - var showObj = document.getElementById("show" + i); - var hideObj = document.getElementById("hide" + i); - var textObj = document.getElementById("text" + i); - - if(i == itemIndex) { - if(show == true) { - showObj.style.display = "none"; - hideObj.style.display = "block"; - textObj.style.display = "block"; - } else { - showObj.style.display = "block"; - hideObj.style.display = "none"; - textObj.style.display = "none"; - } - } else if(show == true) { - showObj.style.display = "block"; - hideObj.style.display = "none"; - textObj.style.display = "none"; - } - } -} - -function defaultTab(item) { - var hrefPart = document.location.href.split('#')[1]; - - if(hrefPart == undefined) { - hrefPart = item; - } - - loadTab('#' + hrefPart); -} - -function loadTab(hrefPart) { - document.location.href=hrefPart; - loadUrl(); -} - -function loadUrl() { - var hrefPart = document.location.href.split('#')[1]; - switch(hrefPart) { - case 'home' : { - menuSwap(1); - break; - } - case 'changes' : { - menuSwap(2); - break; - } - case 'about' : { - menuSwap(3); - break; - } - case 'tutorial' : { - menuSwap(4); - break; - } - case 'emulator' : { - menuSwap(5); - break; - } - case 'download' : { - menuSwap(6); - break; - } - default: { - document.location.href='#home'; - menuSwap(1); - } - } -} - -function pageLoaded() { - defaultTab('home'); - thankYou(); -} - -function thankYou() { - var footer = document.getElementById("footer"); - var footerDiv = footer.getElementsByTagName("div")[0]; - var html = footerDiv.innerHTML; - - var sepa = ' | '; - var afterSepa = '{2}' - - var hostname = window.location.hostname; - - switch(hostname) { - case 'minimal.idzona.com' : { - html += sepa; - html += afterSepa.replace("{1}", 'microweber.com').replace("{2}", 'Microweber CMS'); - - footerDiv.innerHTML = html; - - break; - } - case 'skamilinux.hu' : { - html += sepa; - html += 'Hosted by skamilinux.hu - thank you!'; - - footerDiv.innerHTML = html; - - break; - } - case 'minimal.linux-bg.org' : { - html += sepa; - html += 'Hosted by linux-bg.org - thank you!'; - - footerDiv.innerHTML = html; - - break; - } - case 'ivandavidov.github.io' : { - document.getElementById('hm5').style.display="none"; - - document.getElementById('dl2').style.display="none"; - document.getElementById('dl5').style.display="none"; - document.getElementById('dl6').style.display="none"; - - document.getElementById('gh1').style.display="none"; - - html += sepa; - html += 'Development website - may not be fully functional.'; - - footerDiv.innerHTML = html; - - break; - } - case 'linux.idzona.com' : { - document.getElementById('hm5').style.display="none"; - - document.getElementById('dl2').style.display="none"; - document.getElementById('dl5').style.display="none"; - document.getElementById('dl6').style.display="none"; - - document.getElementById('gh1').style.display="none"; - - html += sepa; - html += 'Development website - may not be fully functional.'; - - footerDiv.innerHTML = html; - - break; - } - default: { - if(hostname != "") { - html += sepa; - html += afterSepa.replace("{1}", hostname).replace("{2}", hostname); - - footerDiv.innerHTML = html; - } - } - } -} diff --git a/docs/www/index.html b/docs/www/index.html index a9fa33b0c..12a916c48 100644 --- a/docs/www/index.html +++ b/docs/www/index.html @@ -1,593 +1 @@ - - - - - - - - - Minimal Linux Live - - - - - - -
-
- -
-
- -
- - - - - - -
 
-
 
-
-
- Go to top -
-
-
 
- -
 
-
- - - - +Minimal Linux Live
\ No newline at end of file diff --git a/docs/www/precache-manifest.66a6da2c9bd728142140b2820943c54e.js b/docs/www/precache-manifest.66a6da2c9bd728142140b2820943c54e.js new file mode 100644 index 000000000..716804c86 --- /dev/null +++ b/docs/www/precache-manifest.66a6da2c9bd728142140b2820943c54e.js @@ -0,0 +1,22 @@ +self.__precacheManifest = (self.__precacheManifest || []).concat([ + { + "revision": "af2b4c9f0a83c818304f08adfd57ab2d", + "url": "./index.html" + }, + { + "revision": "c81e0b1e32b4baa555a4", + "url": "./static/js/2.88eac816.chunk.js" + }, + { + "revision": "83b3d04082a8c50f224f3e213e6a5a45", + "url": "./static/js/2.88eac816.chunk.js.LICENSE" + }, + { + "revision": "85afd11c2f584952f9da", + "url": "./static/js/main.f1d41649.chunk.js" + }, + { + "revision": "054630a820e9698c2851", + "url": "./static/js/runtime-main.19678de4.js" + } +]); \ No newline at end of file diff --git a/docs/www/service-worker.js b/docs/www/service-worker.js new file mode 100644 index 000000000..b85e06d5c --- /dev/null +++ b/docs/www/service-worker.js @@ -0,0 +1,39 @@ +/** + * Welcome to your Workbox-powered service worker! + * + * You'll need to register this file in your web app and you should + * disable HTTP caching for this file too. + * See https://goo.gl/nhQhGp + * + * The rest of the code is auto-generated. Please don't update this file + * directly; instead, make changes to your Workbox build configuration + * and re-run your build process. + * See https://goo.gl/2aRDsh + */ + +importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js"); + +importScripts( + "./precache-manifest.66a6da2c9bd728142140b2820943c54e.js" +); + +self.addEventListener('message', (event) => { + if (event.data && event.data.type === 'SKIP_WAITING') { + self.skipWaiting(); + } +}); + +workbox.core.clientsClaim(); + +/** + * The workboxSW.precacheAndRoute() method efficiently caches and responds to + * requests for URLs in the manifest. + * See https://goo.gl/S9QRab + */ +self.__precacheManifest = [].concat(self.__precacheManifest || []); +workbox.precaching.precacheAndRoute(self.__precacheManifest, {}); + +workbox.routing.registerNavigationRoute(workbox.precaching.getCacheKeyForURL("./index.html"), { + + blacklist: [/^\/_/,/\/[^\/?]+\.[^\/]+$/], +}); diff --git a/docs/www/static/js/2.88eac816.chunk.js b/docs/www/static/js/2.88eac816.chunk.js new file mode 100644 index 000000000..80ba9d149 --- /dev/null +++ b/docs/www/static/js/2.88eac816.chunk.js @@ -0,0 +1,3 @@ +/*! For license information please see 2.88eac816.chunk.js.LICENSE */ +(this["webpackJsonpwww-react"]=this["webpackJsonpwww-react"]||[]).push([[2],[function(e,t,n){"use strict";e.exports=n(9)},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}n.d(t,"a",(function(){return r}))},function(e,t,n){"use strict";function r(e,t){for(var n=0;nR.length&&R.push(e)}function U(e,t,n){return null==e?0:function e(t,n,r,l){var o=typeof t;"undefined"!==o&&"boolean"!==o||(t=null);var u=!1;if(null===t)u=!0;else switch(o){case"string":case"number":u=!0;break;case"object":switch(t.$$typeof){case i:case a:u=!0}}if(u)return r(l,t,""===n?"."+D(t,0):n),1;if(u=0,n=""===n?".":n+":",Array.isArray(t))for(var c=0;c