diff options
author | Rich Hickey <richhickey@gmail.com> | 2009-06-25 14:38:43 -0400 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2009-06-25 14:38:43 -0400 |
commit | 169290b08cc731f4182cdcb4e14362d2a6cd3e09 (patch) | |
tree | 75a09582bbfae393d8a47180e56e104890e475ed /src | |
parent | 24a34978f6161c8e1a5570b92c8d03197d053a63 (diff) |
made copyright notices uniform
Diffstat (limited to 'src')
-rw-r--r-- | src/clj/clojure/stacktrace.clj | 19 | ||||
-rw-r--r-- | src/clj/clojure/template.clj | 18 | ||||
-rw-r--r-- | src/clj/clojure/test.clj | 20 | ||||
-rw-r--r-- | src/clj/clojure/test/tap.clj | 19 | ||||
-rw-r--r-- | src/clj/clojure/walk.clj | 19 |
5 files changed, 46 insertions, 49 deletions
diff --git a/src/clj/clojure/stacktrace.clj b/src/clj/clojure/stacktrace.clj index fcdf47f8..52d03b9b 100644 --- a/src/clj/clojure/stacktrace.clj +++ b/src/clj/clojure/stacktrace.clj @@ -1,17 +1,16 @@ +; Copyright (c) Rich Hickey. All rights reserved. +; The use and distribution terms for this software are covered by the +; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) +; which can be found in the file epl-v10.html at the root of this distribution. +; By using this software in any fashion, you are agreeing to be bound by +; the terms of this license. +; You must not remove this notice, or any other, from this software. + ;;; stacktrace.clj: print Clojure-centric stack traces -;; by Stuart Sierra, http://stuartsierra.com/ +;; by Stuart Sierra ;; January 6, 2009 -;; Copyright (c) Stuart Sierra, 2009. All rights reserved. The use -;; and distribution terms for this software are covered by the Eclipse -;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) -;; which can be found in the file epl-v10.html at the root of this -;; distribution. By using this software in any fashion, you are -;; agreeing to be bound by the terms of this license. You must not -;; remove this notice, or any other, from this software. - - (ns #^{:author "Stuart Sierra", :doc "Print Clojure-centric stack traces"} diff --git a/src/clj/clojure/template.clj b/src/clj/clojure/template.clj index 2515b04e..d62390a6 100644 --- a/src/clj/clojure/template.clj +++ b/src/clj/clojure/template.clj @@ -1,16 +1,16 @@ +; Copyright (c) Rich Hickey. All rights reserved. +; The use and distribution terms for this software are covered by the +; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) +; which can be found in the file epl-v10.html at the root of this distribution. +; By using this software in any fashion, you are agreeing to be bound by +; the terms of this license. +; You must not remove this notice, or any other, from this software. + ;;; template.clj - anonymous functions that pre-evaluate sub-expressions -;; By Stuart Sierra, http://stuartsierra.com/ +;; By Stuart Sierra ;; June 23, 2009 -;; Copyright (c) Stuart Sierra, 2009. All rights reserved. The use -;; and distribution terms for this software are covered by the Eclipse -;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) -;; which can be found in the file epl-v10.html at the root of this -;; distribution. By using this software in any fashion, you are -;; agreeing to be bound by the terms of this license. You must not -;; remove this notice, or any other, from this software. - ;; CHANGE LOG ;; ;; June 23, 2009: complete rewrite, eliminated _1,_2,... argument diff --git a/src/clj/clojure/test.clj b/src/clj/clojure/test.clj index 601d2b4d..7195034b 100644 --- a/src/clj/clojure/test.clj +++ b/src/clj/clojure/test.clj @@ -1,19 +1,19 @@ -;;; test_is.clj: test framework for Clojure +; Copyright (c) Rich Hickey. All rights reserved. +; The use and distribution terms for this software are covered by the +; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) +; which can be found in the file epl-v10.html at the root of this distribution. +; By using this software in any fashion, you are agreeing to be bound by +; the terms of this license. +; You must not remove this notice, or any other, from this software. -;; by Stuart Sierra, http://stuartsierra.com/ +;;; test.clj: test framework for Clojure + +;; by Stuart Sierra ;; March 28, 2009 ;; Thanks to Chas Emerick, Allen Rohner, and Stuart Halloway for ;; contributions and suggestions. -;; Copyright (c) Stuart Sierra, 2008. All rights reserved. The use -;; and distribution terms for this software are covered by the Eclipse -;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) -;; which can be found in the file epl-v10.html at the root of this -;; distribution. By using this software in any fashion, you are -;; agreeing to be bound by the terms of this license. You must not -;; remove this notice, or any other, from this software. - (comment diff --git a/src/clj/clojure/test/tap.clj b/src/clj/clojure/test/tap.clj index 5963b1b9..6f4b57a6 100644 --- a/src/clj/clojure/test/tap.clj +++ b/src/clj/clojure/test/tap.clj @@ -1,20 +1,19 @@ +; Copyright (c) Rich Hickey. All rights reserved. +; The use and distribution terms for this software are covered by the +; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) +; which can be found in the file epl-v10.html at the root of this distribution. +; By using this software in any fashion, you are agreeing to be bound by +; the terms of this license. +; You must not remove this notice, or any other, from this software. + ;;; test_is/tap.clj: Extension to test for TAP output -;; by Stuart Sierra, http://stuartsierra.com/ +;; by Stuart Sierra ;; March 31, 2009 ;; Inspired by ClojureCheck by Meikel Brandmeyer: ;; http://kotka.de/projects/clojure/clojurecheck.html -;; Copyright (c) Stuart Sierra, 2009. All rights reserved. The use -;; and distribution terms for this software are covered by the Eclipse -;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) -;; which can be found in the file epl-v10.html at the root of this -;; distribution. By using this software in any fashion, you are -;; agreeing to be bound by the terms of this license. You must not -;; remove this notice, or any other, from this software. - - ;; DOCUMENTATION ;; diff --git a/src/clj/clojure/walk.clj b/src/clj/clojure/walk.clj index 52927ca1..6b5bad90 100644 --- a/src/clj/clojure/walk.clj +++ b/src/clj/clojure/walk.clj @@ -1,17 +1,16 @@ +; Copyright (c) Rich Hickey. All rights reserved. +; The use and distribution terms for this software are covered by the +; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) +; which can be found in the file epl-v10.html at the root of this distribution. +; By using this software in any fashion, you are agreeing to be bound by +; the terms of this license. +; You must not remove this notice, or any other, from this software. + ;;; walk.clj - generic tree walker with replacement -;; by Stuart Sierra, http://stuartsierra.com/ +;; by Stuart Sierra ;; December 15, 2008 -;; Copyright (c) Stuart Sierra, 2008. All rights reserved. The use -;; and distribution terms for this software are covered by the Eclipse -;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) -;; which can be found in the file epl-v10.html at the root of this -;; distribution. By using this software in any fashion, you are -;; agreeing to be bound by the terms of this license. You must not -;; remove this notice, or any other, from this software. - - ;; This file defines a generic tree walker for Clojure data ;; structures. It takes any data structure (list, vector, map, set, ;; seq), calls a function on every element, and uses the return value |