Add sequel.js to execute all CL script tags in a document.
authorOlof-Joachim Frahm <olof@macrolet.net>
Wed, 12 Jun 2013 20:20:54 +0000 (22:20 +0200)
committerOlof-Joachim Frahm <olof@macrolet.net>
Tue, 15 Oct 2013 20:42:45 +0000 (22:42 +0200)
jscl.lisp
src/sequel.js [new file with mode: 0644]

index 8378417..d5afb0f 100644 (file)
--- a/jscl.lisp
+++ b/jscl.lisp
       (write-string (read-whole-file (source-pathname "prelude.js")) out)
       (do-source input :target
         (!compile-file input out))
-      (dump-global-environment out))
+      (dump-global-environment out)
+      (write-string (read-whole-file (source-pathname "sequel.js")) out))
     ;; Tests
     (with-open-file (out "tests.js" :direction :output :if-exists :supersede)
       (dolist (input (append (directory "tests.lisp")
diff --git a/src/sequel.js b/src/sequel.js
new file mode 100644 (file)
index 0000000..ef429d4
--- /dev/null
@@ -0,0 +1,13 @@
+/* execute all script tags with type of x-common-lisp */
+window.onload = (function () {
+  var scripts = document.scripts;
+
+  for (var i = 0; i < scripts.length; ++i) {
+    var script = scripts[i];
+
+    /* TODO: what about errors? */
+    if (script.type == "text/x-common-lisp") {
+      lisp.evalString(script.text);
+    }
+  }
+});