Changed tutorial to reflect factoring out of the HTML generation code of Portable...
authorVladimir Sedach <vsedach@gmail.com>
Mon, 30 Jul 2007 21:02:19 +0000 (21:02 +0000)
committerVladimir Sedach <vsedach@gmail.com>
Mon, 30 Jul 2007 21:02:19 +0000 (21:02 +0000)
docs/tutorial.lisp

index 8f7729c..458279b 100644 (file)
 ;;; have to define.
 
 (defpackage :js-tutorial
-  (:use :common-lisp :net.aserve :js))
+  (:use :common-lisp :net.aserve :net.html.generator :parenscript))
 
 (in-package :js-tutorial)
 
+;;; Since we will not be using ParenScript's package system for this
+;;; tutorial, disable it for now.
+
+(setf *enable-package-system* nil)
+
 ;;; The next command starts the webserver on the port 8000.
 
 (start :port 8000)