Revision: 4038 Author: hans URL: http://bknr.net/trac/changeset/4038
Add license, copyright notes.
A trunk/libraries/yason/LICENSE U trunk/libraries/yason/encode.lisp U trunk/libraries/yason/package.lisp U trunk/libraries/yason/parse.lisp U trunk/libraries/yason/yason.asd
Added: trunk/libraries/yason/LICENSE =================================================================== --- trunk/libraries/yason/LICENSE (rev 0) +++ trunk/libraries/yason/LICENSE 2008-11-12 11:00:34 UTC (rev 4038) @@ -0,0 +1,30 @@ +Copyright (c) 2008 Hans HÃŒbner +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 BKNR 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 +OWNER 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.
Modified: trunk/libraries/yason/encode.lisp =================================================================== --- trunk/libraries/yason/encode.lisp 2008-11-12 10:27:20 UTC (rev 4037) +++ trunk/libraries/yason/encode.lisp 2008-11-12 11:00:34 UTC (rev 4038) @@ -1,3 +1,10 @@ +;; This file is part of yason, a Common Lisp JSON parser/encoder +;; +;; Copyright (c) 2008 Hans HÃŒbner +;; All rights reserved. +;; +;; Please see the file LICENSE in the distribution. + (in-package :yason)
(defvar *json-output*)
Modified: trunk/libraries/yason/package.lisp =================================================================== --- trunk/libraries/yason/package.lisp 2008-11-12 10:27:20 UTC (rev 4037) +++ trunk/libraries/yason/package.lisp 2008-11-12 11:00:34 UTC (rev 4038) @@ -1,3 +1,10 @@ +;; This file is part of yason, a Common Lisp JSON parser/encoder +;; +;; Copyright (c) 2008 Hans HÃŒbner +;; All rights reserved. +;; +;; Please see the file LICENSE in the distribution. + (defpackage :yason
(:use :cl) @@ -5,7 +12,6 @@ (:nicknames :json)
(:export - ;; Parser #:parse #:*parse-object-key-fn*
Modified: trunk/libraries/yason/parse.lisp =================================================================== --- trunk/libraries/yason/parse.lisp 2008-11-12 10:27:20 UTC (rev 4037) +++ trunk/libraries/yason/parse.lisp 2008-11-12 11:00:34 UTC (rev 4038) @@ -1,3 +1,10 @@ +;; This file is part of yason, a Common Lisp JSON parser/encoder +;; +;; Copyright (c) 2008 Hans HÃŒbner +;; All rights reserved. +;; +;; Please see the file LICENSE in the distribution. + (in-package :yason)
(defconstant +default-string-length+ 20
Modified: trunk/libraries/yason/yason.asd =================================================================== --- trunk/libraries/yason/yason.asd 2008-11-12 10:27:20 UTC (rev 4037) +++ trunk/libraries/yason/yason.asd 2008-11-12 11:00:34 UTC (rev 4038) @@ -1,3 +1,10 @@ +;; This file is part of yason, a Common Lisp JSON parser/encoder +;; +;; Copyright (c) 2008 Hans Hübner +;; All rights reserved. +;; +;; Please see the file LICENSE in the distribution. + ;;;; -*- Mode: LISP -*-
(in-package :cl-user) @@ -8,9 +15,9 @@ (in-package :yason.system)
(defsystem :yason - :name "YASON" + :name "yason" :author "Hans Huebner hans@huebner.org" - :version "0" + :version "1" :maintainer "Hans Huebner hans@huebner.org" :licence "BSD" :description "JSON parser/encoder"