##// END OF EJS Templates
Apply some new changes to libqsp
Apply some new changes to libqsp

File last commit:

r61:544aa655 default
r61:544aa655 default
Show More
class.lisp
16 lines | 789 B | text/x-common-lisp | CommonLispLexer
Menu, game saving
r11
Rename system to txt2web
r49 (in-package txt2web)
Menu, game saving
r11
(defclass compiler ()
Remove cl-uglify-js
r23 ((body :accessor body :initform #.(load-src "extras/body.html"))
(css :accessor css :initform (list #.(load-src "extras/default.css")))
Apply some new changes to libqsp
r61 (ast :accessor ast :initform nil)
Use Parenscript's minifier and obfuscator... and namespaces. SAVES CURRENTLY BROKEN
r25 (js :accessor js :initform (reverse
(list
Localization. Renamed to txt2web
r46 '#.(read-progn-from-string (load-src "src/main.ps"))
'#.(read-progn-from-string (load-src "src/api.ps"))
'#.(read-progn-from-string (load-src "src/intrinsics.ps")))))
Apply some new changes to libqsp
r61 (parse :accessor parse-only :initarg :parse)
Menu, game saving
r11 (compile :accessor compile-only :initarg :compile)
(target :accessor target :initarg :target)
(beautify :accessor beautify :initarg :beautify)))