[ginseng-cvs] CVS ginseng

wchunye wchunye at common-lisp.net
Mon Aug 9 12:27:25 UTC 2010


Update of /project/ginseng/cvsroot/ginseng
In directory cl-net:/tmp/cvs-serv29557

Added Files:
	.cvsignore COPYRIGHT ginseng-examples.asd ginseng.asd 
Log Message:
initial version.



--- /project/ginseng/cvsroot/ginseng/.cvsignore	2010/08/09 12:27:25	NONE
+++ /project/ginseng/cvsroot/ginseng/.cvsignore	2010/08/09 12:27:25	1.1

*.*fsl
*.fasl
*_[0-9][0-9][0-9][0-9]_[0-9][0-9]_[0-9][0-9].[0-9][0-9].[0-9][0-9].[0-9][0-9].*
.git
.gitignore

--- /project/ginseng/cvsroot/ginseng/COPYRIGHT	2010/08/09 12:27:25	NONE
+++ /project/ginseng/cvsroot/ginseng/COPYRIGHT	2010/08/09 12:27:25	1.1
Copyright (c) 2010, Wang ChunYe
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

   Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.

   Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the
   distribution.  
   
   Neither the name of the Nokia Siemens Network Co.,Ltd. nor the
   names of its contributors may be used to endorse or promote
   products derived from this software without specific prior written
   permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.--- /project/ginseng/cvsroot/ginseng/ginseng-examples.asd	2010/08/09 12:27:25	NONE
+++ /project/ginseng/cvsroot/ginseng/ginseng-examples.asd	2010/08/09 12:27:25	1.1
(defpackage ginseng-examples-system
  (:use :common-lisp :asdf))
(in-package :ginseng-examples-system)
(defsystem "ginseng-examples"
  :description "ginseng: examples for ginseng."
  :version "0.1"
  :author "See the file AUTHORS"
  :licence "See the file LICENSE"
  :depends-on (:ginseng)
  :components
  ((:module examples
    :serial t
    :components ((:file "package")
                 (:file "hello-world" :depends-on ("package"))
                 (:file "sum-of" :depends-on ("package"))
                 (:file "index" :depends-on ("package"))
                 (:file "app-inc-counter" :depends-on ("package"))
                 ))))

--- /project/ginseng/cvsroot/ginseng/ginseng.asd	2010/08/09 12:27:25	NONE
+++ /project/ginseng/cvsroot/ginseng/ginseng.asd	2010/08/09 12:27:25	1.1
(defpackage ginseng-system
  (:use :common-lisp :asdf))
(in-package :ginseng-system)
(defsystem "ginseng"
  :description "ginseng: my web framework."
  :version "0.1"
  :author "See the file AUTHORS"
  :licence "See the file LICENSE"
  :depends-on (:hunchentoot
               :iterate
               :split-sequence
               :yaclml)
  :components
  ((:module src
    :serial t
    :components ((:file "package")
                 (:file "my-utils" :depends-on ("package"))
                 (:file "dispatcher" :depends-on ("my-utils"))
                 (:file "application" :depends-on ("my-utils"))
                 ))))





More information about the ginseng-cvs mailing list