@webqit/webflo 0.11.21 → 0.11.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitignore +7 -7
- package/LICENSE +20 -20
- package/README.md +2074 -2071
- package/package.json +82 -82
- package/src/Context.js +79 -79
- package/src/config-pi/deployment/Env.js +69 -69
- package/src/config-pi/deployment/Layout.js +65 -65
- package/src/config-pi/deployment/Origins.js +133 -133
- package/src/config-pi/deployment/Virtualization.js +65 -65
- package/src/config-pi/deployment/index.js +17 -17
- package/src/config-pi/index.js +15 -15
- package/src/config-pi/runtime/Client.js +101 -101
- package/src/config-pi/runtime/Server.js +128 -128
- package/src/config-pi/runtime/client/Worker.js +135 -135
- package/src/config-pi/runtime/client/index.js +11 -11
- package/src/config-pi/runtime/index.js +17 -17
- package/src/config-pi/runtime/server/Headers.js +77 -77
- package/src/config-pi/runtime/server/Redirects.js +73 -73
- package/src/config-pi/runtime/server/index.js +13 -13
- package/src/config-pi/static/Manifest.js +321 -321
- package/src/config-pi/static/Ssg.js +51 -51
- package/src/config-pi/static/index.js +13 -13
- package/src/deployment-pi/index.js +10 -10
- package/src/deployment-pi/origins/index.js +215 -215
- package/src/index.js +19 -19
- package/src/runtime-pi/Router.js +131 -131
- package/src/runtime-pi/client/Context.js +6 -6
- package/src/runtime-pi/client/Router.js +47 -47
- package/src/runtime-pi/client/Runtime.js +357 -341
- package/src/runtime-pi/client/RuntimeClient.js +98 -98
- package/src/runtime-pi/client/Storage.js +56 -56
- package/src/runtime-pi/client/Url.js +205 -205
- package/src/runtime-pi/client/Workport.js +163 -163
- package/src/runtime-pi/client/generate.js +467 -467
- package/src/runtime-pi/client/index.js +23 -23
- package/src/runtime-pi/client/oohtml/full.js +6 -6
- package/src/runtime-pi/client/oohtml/namespacing.js +6 -6
- package/src/runtime-pi/client/oohtml/scripting.js +7 -7
- package/src/runtime-pi/client/oohtml/templating.js +7 -7
- package/src/runtime-pi/client/whatwag.js +27 -27
- package/src/runtime-pi/client/worker/Context.js +6 -6
- package/src/runtime-pi/client/worker/Worker.js +291 -291
- package/src/runtime-pi/client/worker/WorkerClient.js +46 -46
- package/src/runtime-pi/client/worker/Workport.js +79 -79
- package/src/runtime-pi/client/worker/index.js +23 -23
- package/src/runtime-pi/index.js +13 -13
- package/src/runtime-pi/server/Context.js +15 -15
- package/src/runtime-pi/server/Router.js +157 -157
- package/src/runtime-pi/server/Runtime.js +547 -547
- package/src/runtime-pi/server/RuntimeClient.js +112 -112
- package/src/runtime-pi/server/index.js +23 -23
- package/src/runtime-pi/server/whatwag.js +35 -35
- package/src/runtime-pi/util.js +162 -162
- package/src/runtime-pi/xFormData.js +59 -59
- package/src/runtime-pi/xHeaders.js +87 -87
- package/src/runtime-pi/xHttpEvent.js +92 -92
- package/src/runtime-pi/xHttpMessage.js +179 -179
- package/src/runtime-pi/xRequest.js +73 -73
- package/src/runtime-pi/xRequestHeaders.js +94 -94
- package/src/runtime-pi/xResponse.js +68 -68
- package/src/runtime-pi/xResponseHeaders.js +109 -109
- package/src/runtime-pi/xURL.js +110 -110
- package/src/runtime-pi/xfetch.js +6 -6
- package/src/services-pi/certbot/http-auth-hook.js +22 -22
- package/src/services-pi/certbot/http-cleanup-hook.js +22 -22
- package/src/services-pi/certbot/index.js +79 -79
- package/src/services-pi/index.js +8 -8
- package/src/static-pi/index.js +10 -10
- package/src/webflo.js +31 -31
- package/test/index.test.js +26 -25
- package/test/site/package.json +9 -9
- package/test/site/public/bundle.html +5 -5
- package/test/site/public/bundle.html.json +3 -3
- package/test/site/public/bundle.js +2 -2
- package/test/site/public/bundle.webflo.js +15 -15
- package/test/site/public/index.html +29 -29
- package/test/site/public/index1.html +34 -34
- package/test/site/public/page-2/bundle.html +4 -4
- package/test/site/public/page-2/bundle.js +2 -2
- package/test/site/public/page-2/index.html +45 -45
- package/test/site/public/page-2/main.html +2 -2
- package/test/site/public/page-4/subpage/bundle.js +2 -2
- package/test/site/public/page-4/subpage/index.html +30 -30
- package/test/site/public/sparoots.json +4 -4
- package/test/site/public/worker.js +3 -3
- package/test/site/server/index.js +15 -15
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
<!DOCTYPE html><html><head>
|
|
2
|
-
<title>Home</title>
|
|
3
|
-
|
|
4
|
-
<script type="module" src="/bundle.webflo.js" by="webflo"></script>
|
|
5
|
-
<script type="module" src="/bundle.js" by="webflo"></script>
|
|
6
|
-
|
|
7
|
-
<template name="routes" src="/bundle.html" by="oohtml-cli"></template>
|
|
8
|
-
</head><body><h1>Home</h1>
|
|
9
|
-
|
|
10
|
-
<a href="#">Hash</a>
|
|
11
|
-
|
|
12
|
-
<ul>
|
|
13
|
-
<li><a href="/">Home</a></li>
|
|
14
|
-
<li><a href="/page-1">Page 1</a></li>
|
|
15
|
-
<li><a href="/page-2">Page 2</a>
|
|
16
|
-
<ul>
|
|
17
|
-
<li><a href="/page-2/subpage">Subpage</a></li>
|
|
18
|
-
</ul>
|
|
19
|
-
</li>
|
|
20
|
-
<li><a href="/page-3">Page 3</a></li>
|
|
21
|
-
<li><a href="/page-4">Page 4</a>
|
|
22
|
-
<ul>
|
|
23
|
-
<li><a href="/page-4/subpage">Subpage</a></li>
|
|
24
|
-
</ul>
|
|
25
|
-
</li>
|
|
26
|
-
<li><a href="/page-5">Page 5</a></li>
|
|
27
|
-
</ul>
|
|
28
|
-
|
|
29
|
-
|
|
1
|
+
<!DOCTYPE html><html><head>
|
|
2
|
+
<title>Home</title>
|
|
3
|
+
|
|
4
|
+
<script type="module" src="/bundle.webflo.js" by="webflo"></script>
|
|
5
|
+
<script type="module" src="/bundle.js" by="webflo"></script>
|
|
6
|
+
|
|
7
|
+
<template name="routes" src="/bundle.html" by="oohtml-cli"></template>
|
|
8
|
+
</head><body><h1>Home</h1>
|
|
9
|
+
|
|
10
|
+
<a href="#">Hash</a>
|
|
11
|
+
|
|
12
|
+
<ul>
|
|
13
|
+
<li><a href="/">Home</a></li>
|
|
14
|
+
<li><a href="/page-1">Page 1</a></li>
|
|
15
|
+
<li><a href="/page-2">Page 2</a>
|
|
16
|
+
<ul>
|
|
17
|
+
<li><a href="/page-2/subpage">Subpage</a></li>
|
|
18
|
+
</ul>
|
|
19
|
+
</li>
|
|
20
|
+
<li><a href="/page-3">Page 3</a></li>
|
|
21
|
+
<li><a href="/page-4">Page 4</a>
|
|
22
|
+
<ul>
|
|
23
|
+
<li><a href="/page-4/subpage">Subpage</a></li>
|
|
24
|
+
</ul>
|
|
25
|
+
</li>
|
|
26
|
+
<li><a href="/page-5">Page 5</a></li>
|
|
27
|
+
</ul>
|
|
28
|
+
|
|
29
|
+
|
|
30
30
|
</body></html>
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
<!DOCTYPE html><html><head>
|
|
2
|
-
<title>Home</title>
|
|
3
|
-
<style>
|
|
4
|
-
b, i, a, span {
|
|
5
|
-
background-color: aqua;
|
|
6
|
-
}
|
|
7
|
-
div, ul, ol, li, p, h1, h2, h3, h4, h5, h6 {
|
|
8
|
-
background-color: yellow;
|
|
9
|
-
}
|
|
10
|
-
li {
|
|
11
|
-
background-color: violet;
|
|
12
|
-
}
|
|
13
|
-
</style>
|
|
14
|
-
<script type="module" src="/bundle.webflo.js" by="webflo"></script>
|
|
15
|
-
<script type="module" src="/bundle.js" by="webflo"></script></head>
|
|
16
|
-
|
|
17
|
-
<body>
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
This i s some text this This is some text this This is some text this This is some text this
|
|
21
|
-
This is some text this This is <b>some text this</b> This is some <div>text this This
|
|
22
|
-
is some text this This is some text this This is some text this This is some text this This
|
|
23
|
-
is some <i>text this</i> This</div> is some text this
|
|
24
|
-
|
|
25
|
-
<ul>
|
|
26
|
-
<li>Item 1</li>
|
|
27
|
-
<li>Item 2</li>
|
|
28
|
-
<li>Item 3</li>
|
|
29
|
-
<li>Item 4</li>
|
|
30
|
-
<li>Item 5</li>
|
|
31
|
-
</ul>
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
1
|
+
<!DOCTYPE html><html><head>
|
|
2
|
+
<title>Home</title>
|
|
3
|
+
<style>
|
|
4
|
+
b, i, a, span {
|
|
5
|
+
background-color: aqua;
|
|
6
|
+
}
|
|
7
|
+
div, ul, ol, li, p, h1, h2, h3, h4, h5, h6 {
|
|
8
|
+
background-color: yellow;
|
|
9
|
+
}
|
|
10
|
+
li {
|
|
11
|
+
background-color: violet;
|
|
12
|
+
}
|
|
13
|
+
</style>
|
|
14
|
+
<script type="module" src="/bundle.webflo.js" by="webflo"></script>
|
|
15
|
+
<script type="module" src="/bundle.js" by="webflo"></script></head>
|
|
16
|
+
|
|
17
|
+
<body>
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
This i s some text this This is some text this This is some text this This is some text this
|
|
21
|
+
This is some text this This is <b>some text this</b> This is some <div>text this This
|
|
22
|
+
is some text this This is some text this This is some text this This is some text this This
|
|
23
|
+
is some <i>text this</i> This</div> is some text this
|
|
24
|
+
|
|
25
|
+
<ul>
|
|
26
|
+
<li>Item 1</li>
|
|
27
|
+
<li>Item 2</li>
|
|
28
|
+
<li>Item 3</li>
|
|
29
|
+
<li>Item 4</li>
|
|
30
|
+
<li>Item 5</li>
|
|
31
|
+
</ul>
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
35
|
</body></html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
<img src="/page-2/logo-130x130.png" exportgroup="logo-130x130.png" />
|
|
3
|
-
<div exportgroup="main.html">
|
|
4
|
-
<h2>Main Content</h2>
|
|
1
|
+
|
|
2
|
+
<img src="/page-2/logo-130x130.png" exportgroup="logo-130x130.png" />
|
|
3
|
+
<div exportgroup="main.html">
|
|
4
|
+
<h2>Main Content</h2>
|
|
5
5
|
</div>
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/** @webqit/webflo */
|
|
2
|
-
var{start:r}=WebQit.Webflo,e={},o={bundle_filename:"bundle.js",public_base_url:"/",spa_routing:!0,oohtml_support:"full",service_worker_support:!0,worker_scope:"/",worker_filename:"worker.js",routing:{root:"/page-2",subroots:[],targets:0}};r.call({layout:e,params:o});
|
|
1
|
+
/** @webqit/webflo */
|
|
2
|
+
var{start:r}=WebQit.Webflo,e={},o={bundle_filename:"bundle.js",public_base_url:"/",spa_routing:!0,oohtml_support:"full",service_worker_support:!0,worker_scope:"/",worker_filename:"worker.js",routing:{root:"/page-2",subroots:[],targets:0}};r.call({layout:e,params:o});
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
<!DOCTYPE html><html><head>
|
|
2
|
-
<title>Page 2</title>
|
|
3
|
-
<!--
|
|
4
|
-
<script src="http://localhost:4000/oohtml/dist/main.js"></script>
|
|
5
|
-
-->
|
|
6
|
-
<script type="module" src="/bundle.webflo.js" by="webflo"></script>
|
|
7
|
-
<script type="module" src="/page-2/bundle.js" by="webflo"></script>
|
|
8
|
-
<template name="routes" src="/page-2/bundle.html" by="oohtml-cli"></template></head>
|
|
9
|
-
<body>
|
|
10
|
-
|
|
11
|
-
<h1>Page 2</h1>
|
|
12
|
-
|
|
13
|
-
<!--
|
|
14
|
-
<import template="routes" name="main.html"></import>
|
|
15
|
-
-->
|
|
16
|
-
|
|
17
|
-
<ul>
|
|
18
|
-
<li><a href="/">Home</a></li>
|
|
19
|
-
<li><a href="/page-1">Page 1</a></li>
|
|
20
|
-
<li><a href="/page-2">Page 2</a>
|
|
21
|
-
<ul>
|
|
22
|
-
<li><a href="/page-2/subpage">Subpage</a></li>
|
|
23
|
-
</ul>
|
|
24
|
-
</li>
|
|
25
|
-
<li><a href="/page-3">Page 3</a></li>
|
|
26
|
-
<li><a href="/page-4">Page 4</a>
|
|
27
|
-
<ul>
|
|
28
|
-
<li><a href="/page-4/subpage">Subpage</a></li>
|
|
29
|
-
</ul>
|
|
30
|
-
</li>
|
|
31
|
-
<li><a href="/page-5">Page 5</a></li>
|
|
32
|
-
</ul>
|
|
33
|
-
|
|
34
|
-
<script>
|
|
35
|
-
setTimeout(() => {
|
|
36
|
-
let importEl = document.createElement('import');
|
|
37
|
-
importEl.setAttribute('template', 'routes');
|
|
38
|
-
importEl.setAttribute('name', 'main.html');
|
|
39
|
-
document.body.append('importEl');
|
|
40
|
-
document.body.appendChild(importEl);
|
|
41
|
-
}, 2000);
|
|
42
|
-
</script>
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
1
|
+
<!DOCTYPE html><html><head>
|
|
2
|
+
<title>Page 2</title>
|
|
3
|
+
<!--
|
|
4
|
+
<script src="http://localhost:4000/oohtml/dist/main.js"></script>
|
|
5
|
+
-->
|
|
6
|
+
<script type="module" src="/bundle.webflo.js" by="webflo"></script>
|
|
7
|
+
<script type="module" src="/page-2/bundle.js" by="webflo"></script>
|
|
8
|
+
<template name="routes" src="/page-2/bundle.html" by="oohtml-cli"></template></head>
|
|
9
|
+
<body>
|
|
10
|
+
|
|
11
|
+
<h1>Page 2</h1>
|
|
12
|
+
|
|
13
|
+
<!--
|
|
14
|
+
<import template="routes" name="main.html"></import>
|
|
15
|
+
-->
|
|
16
|
+
|
|
17
|
+
<ul>
|
|
18
|
+
<li><a href="/">Home</a></li>
|
|
19
|
+
<li><a href="/page-1">Page 1</a></li>
|
|
20
|
+
<li><a href="/page-2">Page 2</a>
|
|
21
|
+
<ul>
|
|
22
|
+
<li><a href="/page-2/subpage">Subpage</a></li>
|
|
23
|
+
</ul>
|
|
24
|
+
</li>
|
|
25
|
+
<li><a href="/page-3">Page 3</a></li>
|
|
26
|
+
<li><a href="/page-4">Page 4</a>
|
|
27
|
+
<ul>
|
|
28
|
+
<li><a href="/page-4/subpage">Subpage</a></li>
|
|
29
|
+
</ul>
|
|
30
|
+
</li>
|
|
31
|
+
<li><a href="/page-5">Page 5</a></li>
|
|
32
|
+
</ul>
|
|
33
|
+
|
|
34
|
+
<script>
|
|
35
|
+
setTimeout(() => {
|
|
36
|
+
let importEl = document.createElement('import');
|
|
37
|
+
importEl.setAttribute('template', 'routes');
|
|
38
|
+
importEl.setAttribute('name', 'main.html');
|
|
39
|
+
document.body.append('importEl');
|
|
40
|
+
document.body.appendChild(importEl);
|
|
41
|
+
}, 2000);
|
|
42
|
+
</script>
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
46
|
</body></html>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<div>
|
|
2
|
-
<h2>Main Content</h2>
|
|
1
|
+
<div>
|
|
2
|
+
<h2>Main Content</h2>
|
|
3
3
|
</div>
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/** @webqit/webflo */
|
|
2
|
-
var{start:e}=WebQit.Webflo,r={},o={bundle_filename:"bundle.js",public_base_url:"/",spa_routing:!0,oohtml_support:"full",service_worker_support:!0,worker_scope:"/",worker_filename:"worker.js",routing:{root:"/page-4/subpage",subroots:[],targets:0}};e.call({layout:r,params:o});
|
|
1
|
+
/** @webqit/webflo */
|
|
2
|
+
var{start:e}=WebQit.Webflo,r={},o={bundle_filename:"bundle.js",public_base_url:"/",spa_routing:!0,oohtml_support:"full",service_worker_support:!0,worker_scope:"/",worker_filename:"worker.js",routing:{root:"/page-4/subpage",subroots:[],targets:0}};e.call({layout:r,params:o});
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
<!DOCTYPE html><html><head>
|
|
2
|
-
<title>Page 4 / Subpage</title>
|
|
3
|
-
<script type="module" src="/bundle.webflo.js" by="webflo"></script>
|
|
4
|
-
<script type="module" src="/page-4/subpage/bundle.js" by="webflo"></script>
|
|
5
|
-
<template name="page" src="/page-4/subpage/bundle.html" by="oohtml-cli"></template>
|
|
6
|
-
</head>
|
|
7
|
-
<body>
|
|
8
|
-
|
|
9
|
-
<h1>Page 4 / Subpage</h1>
|
|
10
|
-
|
|
11
|
-
<ul>
|
|
12
|
-
<li><a href="/">Home</a></li>
|
|
13
|
-
<li><a href="/page-1">Page 1</a></li>
|
|
14
|
-
<li><a href="/page-2">Page 2</a>
|
|
15
|
-
<ul>
|
|
16
|
-
<li><a href="/page-2/subpage">Subpage</a></li>
|
|
17
|
-
</ul>
|
|
18
|
-
</li>
|
|
19
|
-
<li><a href="/page-3">Page 3</a></li>
|
|
20
|
-
<li><a href="/page-4">Page 4</a>
|
|
21
|
-
<ul>
|
|
22
|
-
<li><a href="/page-4/subpage">Subpage</a></li>
|
|
23
|
-
</ul>
|
|
24
|
-
</li>
|
|
25
|
-
<li><a href="/page-5">Page 5</a></li>
|
|
26
|
-
</ul>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
1
|
+
<!DOCTYPE html><html><head>
|
|
2
|
+
<title>Page 4 / Subpage</title>
|
|
3
|
+
<script type="module" src="/bundle.webflo.js" by="webflo"></script>
|
|
4
|
+
<script type="module" src="/page-4/subpage/bundle.js" by="webflo"></script>
|
|
5
|
+
<template name="page" src="/page-4/subpage/bundle.html" by="oohtml-cli"></template>
|
|
6
|
+
</head>
|
|
7
|
+
<body>
|
|
8
|
+
|
|
9
|
+
<h1>Page 4 / Subpage</h1>
|
|
10
|
+
|
|
11
|
+
<ul>
|
|
12
|
+
<li><a href="/">Home</a></li>
|
|
13
|
+
<li><a href="/page-1">Page 1</a></li>
|
|
14
|
+
<li><a href="/page-2">Page 2</a>
|
|
15
|
+
<ul>
|
|
16
|
+
<li><a href="/page-2/subpage">Subpage</a></li>
|
|
17
|
+
</ul>
|
|
18
|
+
</li>
|
|
19
|
+
<li><a href="/page-3">Page 3</a></li>
|
|
20
|
+
<li><a href="/page-4">Page 4</a>
|
|
21
|
+
<ul>
|
|
22
|
+
<li><a href="/page-4/subpage">Subpage</a></li>
|
|
23
|
+
</ul>
|
|
24
|
+
</li>
|
|
25
|
+
<li><a href="/page-5">Page 5</a></li>
|
|
26
|
+
</ul>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
31
|
</body></html>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
[
|
|
2
|
-
"/",
|
|
3
|
-
"/page-2",
|
|
4
|
-
"/page-4/subpage"
|
|
1
|
+
[
|
|
2
|
+
"/",
|
|
3
|
+
"/page-2",
|
|
4
|
+
"/page-4/subpage"
|
|
5
5
|
]
|