From 88f87890932f2050df93a5a8cdc0749fd9129855 Mon Sep 17 00:00:00 2001 From: "Michael S. Klishin" Date: Sat, 18 Feb 2012 16:30:36 +0400 Subject: [PATCH] Update license headers [ci skip] --- src/monger/conversion.clj | 2 +- src/monger/core.clj | 2 +- src/monger/db.clj | 3 ++- src/monger/gridfs.clj | 9 +++++++++ src/monger/internal/pagination.clj | 9 +++++++++ src/monger/joda_time.clj | 9 +++++++++ src/monger/js.clj | 9 +++++++++ src/monger/json.clj | 2 +- src/monger/operators.clj | 9 +++++++++ src/monger/query.clj | 9 +++++++++ src/monger/result.clj | 2 +- src/monger/testing.clj | 9 +++++++++ src/monger/util.clj | 2 +- 13 files changed, 70 insertions(+), 6 deletions(-) diff --git a/src/monger/conversion.clj b/src/monger/conversion.clj index dd646f5..23ca31b 100644 --- a/src/monger/conversion.clj +++ b/src/monger/conversion.clj @@ -1,7 +1,7 @@ ;; Original author is Andrew Boekhoff ;; ;; Portions of the code are Copyright (c) 2009 Andrew Boekhoff -;; Copyright (c) 2011 Michael S. Klishin +;; Copyright (c) 2011-2012 Michael S. Klishin ;; ;; Permission is hereby granted, free of charge, to any person obtaining a copy ;; of this software and associated documentation files (the "Software"), to deal diff --git a/src/monger/core.clj b/src/monger/core.clj index 90fe581..7ee65b0 100644 --- a/src/monger/core.clj +++ b/src/monger/core.clj @@ -1,4 +1,4 @@ -;; Copyright (c) 2011 Michael S. Klishin +;; Copyright (c) 2011-2012 Michael S. Klishin ;; ;; 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) diff --git a/src/monger/db.clj b/src/monger/db.clj index 4a26cc6..d11e231 100644 --- a/src/monger/db.clj +++ b/src/monger/db.clj @@ -1,4 +1,5 @@ -;; Copyright (c) 2011 Michael S. Klishin +;; Copyright (c) 2011-2012 Michael S. Klishin +;; Copyright (c) 2012 Toby Hede ;; ;; 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) diff --git a/src/monger/gridfs.clj b/src/monger/gridfs.clj index 90d8a73..6fe3847 100644 --- a/src/monger/gridfs.clj +++ b/src/monger/gridfs.clj @@ -1,3 +1,12 @@ +;; Copyright (c) 2011-2012 Michael S. Klishin +;; +;; 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 monger.gridfs (:refer-clojure :exclude [remove find]) (:require [monger.core] diff --git a/src/monger/internal/pagination.clj b/src/monger/internal/pagination.clj index ffc1493..0af1bf4 100644 --- a/src/monger/internal/pagination.clj +++ b/src/monger/internal/pagination.clj @@ -1,3 +1,12 @@ +;; Copyright (c) 2011-2012 Michael S. Klishin +;; +;; 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 monger.internal.pagination) (defn offset-for diff --git a/src/monger/joda_time.clj b/src/monger/joda_time.clj index fbd799d..e8dd565 100644 --- a/src/monger/joda_time.clj +++ b/src/monger/joda_time.clj @@ -1,3 +1,12 @@ +;; Copyright (c) 2011-2012 Michael S. Klishin +;; +;; 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 monger.joda-time (:import [org.joda.time DateTime DateTimeZone ReadableInstant] [org.joda.time.format ISODateTimeFormat]) diff --git a/src/monger/js.clj b/src/monger/js.clj index 7a587e9..4271716 100644 --- a/src/monger/js.clj +++ b/src/monger/js.clj @@ -1,3 +1,12 @@ +;; Copyright (c) 2011-2012 Michael S. Klishin +;; +;; 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 monger.js (:require [clojure.java.io :as io])) diff --git a/src/monger/json.clj b/src/monger/json.clj index a2ba0fc..fb92f94 100644 --- a/src/monger/json.clj +++ b/src/monger/json.clj @@ -1,4 +1,4 @@ -;; Copyright (c) 2011 Michael S. Klishin +;; Copyright (c) 2011-2012 Michael S. Klishin ;; ;; 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) diff --git a/src/monger/operators.clj b/src/monger/operators.clj index b260ce4..7254fef 100644 --- a/src/monger/operators.clj +++ b/src/monger/operators.clj @@ -1,3 +1,12 @@ +;; Copyright (c) 2011-2012 Michael S. Klishin +;; +;; 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 monger.operators) (defmacro ^{:private true} defoperator diff --git a/src/monger/query.clj b/src/monger/query.clj index a4dc99a..0b7a64c 100644 --- a/src/monger/query.clj +++ b/src/monger/query.clj @@ -1,3 +1,12 @@ +;; Copyright (c) 2011-2012 Michael S. Klishin +;; +;; 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 monger.query (:refer-clojure :exclude [select find sort]) (:require [monger.core] diff --git a/src/monger/result.clj b/src/monger/result.clj index 2758f81..ffa238d 100644 --- a/src/monger/result.clj +++ b/src/monger/result.clj @@ -1,4 +1,4 @@ -;; Copyright (c) 2011 Michael S. Klishin +;; Copyright (c) 2011-2012 Michael S. Klishin ;; ;; 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) diff --git a/src/monger/testing.clj b/src/monger/testing.clj index ba54e78..492d3a7 100644 --- a/src/monger/testing.clj +++ b/src/monger/testing.clj @@ -1,3 +1,12 @@ +;; Copyright (c) 2011-2012 Michael S. Klishin +;; +;; 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 monger.testing (:require [monger collection])) diff --git a/src/monger/util.clj b/src/monger/util.clj index 78707d7..c71f560 100644 --- a/src/monger/util.clj +++ b/src/monger/util.clj @@ -1,4 +1,4 @@ -;; Copyright (c) 2011 Michael S. Klishin +;; Copyright (c) 2011-2012 Michael S. Klishin ;; ;; 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)