diff options
author | Chouser <chouser@n01se.net> | 2008-12-15 04:54:21 +0000 |
---|---|---|
committer | Chouser <chouser@n01se.net> | 2008-12-15 04:54:21 +0000 |
commit | dfd1a7a26084706b512ca50eef838e64c6f99aa2 (patch) | |
tree | 4fe01c2e49cb0ef0217b081936248fd2304c0e30 /src/clojure/contrib | |
parent | 884ac1e902ae2aed089346f5f562159dd02265f4 (diff) |
Switch my libs to EPL
Diffstat (limited to 'src/clojure/contrib')
-rw-r--r-- | src/clojure/contrib/command_line.clj | 6 | ||||
-rw-r--r-- | src/clojure/contrib/gen_interface.clj | 4 | ||||
-rw-r--r-- | src/clojure/contrib/lazy_xml.clj | 10 | ||||
-rw-r--r-- | src/clojure/contrib/lazy_xml/with_pull.clj | 10 | ||||
-rw-r--r-- | src/clojure/contrib/mmap.clj | 4 | ||||
-rw-r--r-- | src/clojure/contrib/zip_filter.clj | 4 | ||||
-rw-r--r-- | src/clojure/contrib/zip_filter/xml.clj | 4 |
7 files changed, 31 insertions, 11 deletions
diff --git a/src/clojure/contrib/command_line.clj b/src/clojure/contrib/command_line.clj index 62242614..295bdf5d 100644 --- a/src/clojure/contrib/command_line.clj +++ b/src/clojure/contrib/command_line.clj @@ -1,7 +1,7 @@ -; Copyright (c) Chris Houser, Nov 2008. All rights reserved. +; Copyright (c) Chris Houser, Nov-Dec 2008. All rights reserved. ; The use and distribution terms for this software are covered by the -; Common Public License 1.0 (http://opensource.org/licenses/cpl.php) -; which can be found in the file CPL.TXT at the root of this distribution. +; 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. diff --git a/src/clojure/contrib/gen_interface.clj b/src/clojure/contrib/gen_interface.clj index 4ab4f26c..d9d5a52a 100644 --- a/src/clojure/contrib/gen_interface.clj +++ b/src/clojure/contrib/gen_interface.clj @@ -1,7 +1,7 @@ ; Copyright (c) Chris Houser, July 2008. All rights reserved. ; The use and distribution terms for this software are covered by the -; Common Public License 1.0 (http://opensource.org/licenses/cpl.php) -; which can be found in the file CPL.TXT at the root of this distribution. +; 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. diff --git a/src/clojure/contrib/lazy_xml.clj b/src/clojure/contrib/lazy_xml.clj index f74a1d5c..b44f1b45 100644 --- a/src/clojure/contrib/lazy_xml.clj +++ b/src/clojure/contrib/lazy_xml.clj @@ -1,3 +1,13 @@ +; Copyright (c) Chris Houser, Dec 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. + +; Functions to parse xml lazily and emit back to text. + (ns clojure.contrib.lazy-xml (:require [clojure.xml :as xml]) (:use [clojure.contrib.fcase :only (case)]) diff --git a/src/clojure/contrib/lazy_xml/with_pull.clj b/src/clojure/contrib/lazy_xml/with_pull.clj index ee3ae3a3..7d70d479 100644 --- a/src/clojure/contrib/lazy_xml/with_pull.clj +++ b/src/clojure/contrib/lazy_xml/with_pull.clj @@ -1,3 +1,13 @@ +; Copyright (c) Chris Houser, Dec 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. + +; optional module to allow lazy-xml to use pull parser instead of sax + (in-ns 'clojure.contrib.lazy-xml) (import '(org.xmlpull.v1 XmlPullParser XmlPullParserFactory)) diff --git a/src/clojure/contrib/mmap.clj b/src/clojure/contrib/mmap.clj index 24a39729..70d96a52 100644 --- a/src/clojure/contrib/mmap.clj +++ b/src/clojure/contrib/mmap.clj @@ -1,7 +1,7 @@ ; Copyright (c) Chris Houser, April 2008. All rights reserved. ; The use and distribution terms for this software are covered by the -; Common Public License 1.0 (http://opensource.org/licenses/cpl.php) -; which can be found in the file CPL.TXT at the root of this distribution. +; 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. diff --git a/src/clojure/contrib/zip_filter.clj b/src/clojure/contrib/zip_filter.clj index eb5d25c8..ca11cb59 100644 --- a/src/clojure/contrib/zip_filter.clj +++ b/src/clojure/contrib/zip_filter.clj @@ -1,7 +1,7 @@ ; Copyright (c) Chris Houser, April 2008. All rights reserved. ; The use and distribution terms for this software are covered by the -; Common Public License 1.0 (http://opensource.org/licenses/cpl.php) -; which can be found in the file CPL.TXT at the root of this distribution. +; 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. diff --git a/src/clojure/contrib/zip_filter/xml.clj b/src/clojure/contrib/zip_filter/xml.clj index 0865c64d..1455acaa 100644 --- a/src/clojure/contrib/zip_filter/xml.clj +++ b/src/clojure/contrib/zip_filter/xml.clj @@ -1,7 +1,7 @@ ; Copyright (c) Chris Houser, April 2008. All rights reserved. ; The use and distribution terms for this software are covered by the -; Common Public License 1.0 (http://opensource.org/licenses/cpl.php) -; which can be found in the file CPL.TXT at the root of this distribution. +; 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. |