summary history branches tags files
commit:d5ad4396781f0e2708aea4bb32c0ffd65e849647
author:mrmekon
committer:mrmekon
date:Fri Apr 13 14:36:42 2012 -0400
parents:d3b97720d213a4b10a624b8ac045575336d199b0
Applied BSD license
diff --git a/LICENSE b/LICENSE
line changes: +24/-0
index 0000000..054f9b8
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,24 @@
+Copyright (c) 2012, Trevor Bentley
+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 <organization> 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 <COPYRIGHT HOLDER> 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.

diff --git a/tempest/tempest.cljs b/tempest/tempest.cljs
line changes: +7/-0
index 8f4bee6..b107aa2
--- a/tempest/tempest.cljs
+++ b/tempest/tempest.cljs
@@ -1,3 +1,10 @@
+;;
+;; This file is part of tempest-cljs
+;; Copyright (c) 2012, Trevor Bentley
+;; All rights reserved.
+;; See LICENSE file for details.
+;;
+
 (ns ^{:doc "
 Publicly exported functions to embed Tempest game in HTML.
 "}

diff --git a/tempest/tempest/core.cljs b/tempest/tempest/core.cljs
line changes: +8/-1
index 0137d11..1764aa7
--- a/tempest/tempest/core.cljs
+++ b/tempest/tempest/core.cljs
@@ -1,3 +1,10 @@
+;;
+;; This file is part of tempest-cljs
+;; Copyright (c) 2012, Trevor Bentley
+;; All rights reserved.
+;; See LICENSE file for details.
+;;
+
 (ns ^{:doc "
 Functions related to the game of tempest, and game state.
 
@@ -33,7 +40,7 @@ Enemy types:
             [clojure.browser.repl :as repl])
   (:require-macros [tempest.macros :as macros]))
 
-(repl/connect "http://localhost:9000/repl")
+;;(repl/connect "http://localhost:9000/repl")
 
 ;; ---
 

diff --git a/tempest/tempest/draw.cljs b/tempest/tempest/draw.cljs
line changes: +7/-0
index 8856acb..d206c16
--- a/tempest/tempest/draw.cljs
+++ b/tempest/tempest/draw.cljs
@@ -1,3 +1,10 @@
+;;
+;; This file is part of tempest-cljs
+;; Copyright (c) 2012, Trevor Bentley
+;; All rights reserved.
+;; See LICENSE file for details.
+;;
+
 (ns ^{:doc "
 Functions related to drawing on an HTML5 canvas.
 

diff --git a/tempest/tempest/levels.cljs b/tempest/tempest/levels.cljs
line changes: +7/-0
index a89657d..5898736
--- a/tempest/tempest/levels.cljs
+++ b/tempest/tempest/levels.cljs
@@ -1,3 +1,10 @@
+;;
+;; This file is part of tempest-cljs
+;; Copyright (c) 2012, Trevor Bentley
+;; All rights reserved.
+;; See LICENSE file for details.
+;;
+
 (ns ^{:doc "
 Functions related to generating paths representing levels.
 "}

diff --git a/tempest/tempest/macros.clj b/tempest/tempest/macros.clj
line changes: +7/-0
index c43bc9d..dffeecc
--- a/tempest/tempest/macros.clj
+++ b/tempest/tempest/macros.clj
@@ -1,3 +1,10 @@
+;;
+;; This file is part of tempest-cljs
+;; Copyright (c) 2012, Trevor Bentley
+;; All rights reserved.
+;; See LICENSE file for details.
+;;
+
 (ns tempest.macros
   "Macros for Tempest, in separate namespace because of ClojureScript
    limitation."

diff --git a/tempest/tempest/path.cljs b/tempest/tempest/path.cljs
line changes: +7/-0
index 540b7aa..edb53d7
--- a/tempest/tempest/path.cljs
+++ b/tempest/tempest/path.cljs
@@ -1,3 +1,10 @@
+;;
+;; This file is part of tempest-cljs
+;; Copyright (c) 2012, Trevor Bentley
+;; All rights reserved.
+;; See LICENSE file for details.
+;;
+
 (ns ^{:doc "
 Functions related to path and coordinate creation and manipulation.
 

diff --git a/tempest/tempest/util.cljs b/tempest/tempest/util.cljs
line changes: +7/-0
index c3f9ee5..bb4ca9f
--- a/tempest/tempest/util.cljs
+++ b/tempest/tempest/util.cljs
@@ -1,3 +1,10 @@
+;;
+;; This file is part of tempest-cljs
+;; Copyright (c) 2012, Trevor Bentley
+;; All rights reserved.
+;; See LICENSE file for details.
+;;
+
 (ns ^{:doc "Small utility and math helper functions."}
   tempest.util)