[claw-cvs] r174 - in trunk/site: . src src/components src/pages
Andrea Chiumenti
achiumenti at common-lisp.net
Sun Dec 28 22:51:11 UTC 2008
Author: achiumenti
Date: Sun Dec 28 22:51:11 2008
New Revision: 174
Log:
claw-site first commit
Added:
trunk/site/
trunk/site/claw-site.asd
trunk/site/src/
trunk/site/src/commons.lisp
trunk/site/src/components/
trunk/site/src/components/template.lisp
trunk/site/src/main.lisp
trunk/site/src/packages.lisp
trunk/site/src/pages/
trunk/site/src/pages/index.lisp
Added: trunk/site/claw-site.asd
==============================================================================
--- (empty file)
+++ trunk/site/claw-site.asd Sun Dec 28 22:51:11 2008
@@ -0,0 +1,23 @@
+;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
+;;; $Header: claw-site.asd $
+(in-package :cl-user)
+
+
+(asdf:defsystem :claw-site
+ :name "claw-site"
+ :description "claw-site: CLAW CENTRAL applicatin"
+ :depends-on (:claw-as
+ :claw-hunchentoot-connector
+ :claw-html
+ :claw-html.dojo
+ :parenscript)
+ :components ((:module src
+ :components ((:file "packages")
+ (:file "main" :depends-on ("packages"))
+ (:file "commons" :depends-on ("packages"))))
+ (:module components
+ :pathname (make-pathname :directory '(:relative "src" "components"))
+ :components ((:file "template" :depends-on (src))))
+ (:module pages
+ :pathname (make-pathname :directory '(:relative "src" "pages"))
+ :components ((:file "index" :depends-on (src components))))))
Added: trunk/site/src/commons.lisp
==============================================================================
--- (empty file)
+++ trunk/site/src/commons.lisp Sun Dec 28 22:51:11 2008
@@ -0,0 +1,2 @@
+;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
+;;; $Header: src/commons.lisp $
\ No newline at end of file
Added: trunk/site/src/components/template.lisp
==============================================================================
--- (empty file)
+++ trunk/site/src/components/template.lisp Sun Dec 28 22:51:11 2008
@@ -0,0 +1,2 @@
+;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
+;;; $Header: src/components/template.lisp $
\ No newline at end of file
Added: trunk/site/src/main.lisp
==============================================================================
--- (empty file)
+++ trunk/site/src/main.lisp Sun Dec 28 22:51:11 2008
@@ -0,0 +1,2 @@
+;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
+;;; $Header: src/main.lisp $
\ No newline at end of file
Added: trunk/site/src/packages.lisp
==============================================================================
--- (empty file)
+++ trunk/site/src/packages.lisp Sun Dec 28 22:51:11 2008
@@ -0,0 +1,2 @@
+;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
+;;; $Header: src/packages.lisp $
\ No newline at end of file
Added: trunk/site/src/pages/index.lisp
==============================================================================
--- (empty file)
+++ trunk/site/src/pages/index.lisp Sun Dec 28 22:51:11 2008
@@ -0,0 +1,2 @@
+;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
+;;; $Header: src/pages/index.lisp $
\ No newline at end of file
More information about the Claw-cvs
mailing list