jsgui3-server 0.0.96 → 0.0.97
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/controls/Active_HTML_Document.js +90 -0
- package/examples/box/box.css +8 -0
- package/examples/box/out_square_box_client.js +28862 -0
- package/examples/box/square_box.js +52 -1
- package/examples/box/square_box_client.js +41 -4
- package/package.json +11 -8
- package/publishers/http-js-publisher.js +136 -0
- package/{publishing → publishers}/http-webpage-publisher.js +16 -0
- package/{publishing → publishers}/http-website-publisher.js +245 -8
- package/{publishing → publishers}/notes.md +3 -0
- package/resources/_old_website-javascript-resource.js +995 -0
- package/resources/process-js.js +5 -0
- package/{bundler → resources/processors/bundlers}/bundle.js +11 -0
- package/resources/processors/bundlers/bundler.js +24 -0
- package/{bundler → resources/processors/bundlers}/css-bundler.js +3 -3
- package/{bundler → resources/processors/bundlers}/js-bundler.js +28 -0
- package/{bundler → resources/processors/bundlers}/webpage-bundler.js +71 -1
- package/resources/website-audio-resource.js +3 -0
- package/resources/website-javascript-resource-processor.js +909 -0
- package/resources/website-javascript-resource.js +138 -162
- package/resources/website-resource-processor.js +11 -0
- package/resources/website-resource.js +5 -3
- package/roadmap.md +6 -0
- package/server.js +119 -14
- package/website/webpage.js +36 -1
- package/website/website.js +9 -1
- package/bundler/bundler.js +0 -9
- package/publishing/http-js-publisher.js +0 -25
- /package/{publishing → publishers}/http-css-publisher.js +0 -0
- /package/{publishing → publishers}/http-function-publisher.js +0 -0
- /package/{publishing → publishers}/http-html-page-publisher.js +0 -0
- /package/{publishing → publishers}/http-html-publisher.js +0 -0
- /package/{publishing → publishers}/http-jpeg-publisher.js +0 -0
- /package/{publishing → publishers}/http-observable-publisher.js +0 -0
- /package/{publishing → publishers}/http-png-publisher.js +0 -0
- /package/{publishing → publishers}/http-publisher.js +0 -0
- /package/{publishing → publishers}/http-resource-publisher.js +0 -0
- /package/{publishing → publishers}/http-svg-publisher.js +0 -0
- /package/{bundler → resources/processors/bundlers}/test_ast.js +0 -0
- /package/{bundler → resources/processors/bundlers}/website-bundler.js +0 -0
package/bundler/bundler.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
// Publishes the HTML format.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
const HTTP_Publisher = require('./http-publisher');
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class HTTP_JS_Publisher extends HTTP_Publisher {
|
|
10
|
-
constructor(spec) {
|
|
11
|
-
super(spec);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
// Will publish HTML documents over HTTP, but seems as though it would need to be configured / called with
|
|
15
|
-
// something to render as well as a rendering engine and parameters.
|
|
16
|
-
|
|
17
|
-
// compilation = rendering? not exactly.
|
|
18
|
-
|
|
19
|
-
// handle_http()
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
module.exports = HTTP_JS_Publisher;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|