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.
Files changed (40) hide show
  1. package/controls/Active_HTML_Document.js +90 -0
  2. package/examples/box/box.css +8 -0
  3. package/examples/box/out_square_box_client.js +28862 -0
  4. package/examples/box/square_box.js +52 -1
  5. package/examples/box/square_box_client.js +41 -4
  6. package/package.json +11 -8
  7. package/publishers/http-js-publisher.js +136 -0
  8. package/{publishing → publishers}/http-webpage-publisher.js +16 -0
  9. package/{publishing → publishers}/http-website-publisher.js +245 -8
  10. package/{publishing → publishers}/notes.md +3 -0
  11. package/resources/_old_website-javascript-resource.js +995 -0
  12. package/resources/process-js.js +5 -0
  13. package/{bundler → resources/processors/bundlers}/bundle.js +11 -0
  14. package/resources/processors/bundlers/bundler.js +24 -0
  15. package/{bundler → resources/processors/bundlers}/css-bundler.js +3 -3
  16. package/{bundler → resources/processors/bundlers}/js-bundler.js +28 -0
  17. package/{bundler → resources/processors/bundlers}/webpage-bundler.js +71 -1
  18. package/resources/website-audio-resource.js +3 -0
  19. package/resources/website-javascript-resource-processor.js +909 -0
  20. package/resources/website-javascript-resource.js +138 -162
  21. package/resources/website-resource-processor.js +11 -0
  22. package/resources/website-resource.js +5 -3
  23. package/roadmap.md +6 -0
  24. package/server.js +119 -14
  25. package/website/webpage.js +36 -1
  26. package/website/website.js +9 -1
  27. package/bundler/bundler.js +0 -9
  28. package/publishing/http-js-publisher.js +0 -25
  29. /package/{publishing → publishers}/http-css-publisher.js +0 -0
  30. /package/{publishing → publishers}/http-function-publisher.js +0 -0
  31. /package/{publishing → publishers}/http-html-page-publisher.js +0 -0
  32. /package/{publishing → publishers}/http-html-publisher.js +0 -0
  33. /package/{publishing → publishers}/http-jpeg-publisher.js +0 -0
  34. /package/{publishing → publishers}/http-observable-publisher.js +0 -0
  35. /package/{publishing → publishers}/http-png-publisher.js +0 -0
  36. /package/{publishing → publishers}/http-publisher.js +0 -0
  37. /package/{publishing → publishers}/http-resource-publisher.js +0 -0
  38. /package/{publishing → publishers}/http-svg-publisher.js +0 -0
  39. /package/{bundler → resources/processors/bundlers}/test_ast.js +0 -0
  40. /package/{bundler → resources/processors/bundlers}/website-bundler.js +0 -0
@@ -1,9 +0,0 @@
1
- const {Evented_Class} = require('jsgui3-html');
2
-
3
- class Bundler extends Evented_Class {
4
- constructor(spec = {}) {
5
- super(spec);
6
- }
7
- }
8
-
9
- module.exports = Bundler;
@@ -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