Skip to content

Commit 0a26f13

Browse files
committed
add copyright statement to code
1 parent cb557e2 commit 0a26f13

5 files changed

Lines changed: 40 additions & 0 deletions

File tree

src/main/clojure/clojure/data/xml.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.data.xml
210
(:require-macros
311
[clojure.data.xml.impl :refer [export-api]])

src/main/clojure/clojure/data/xml/js/dom.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.data.xml.js.dom
210
(:require
311
[clojure.data.xml.name :refer [qname-uri qname-local qname xmlns-uri]]

src/main/clojure/clojure/data/xml/js/name.cljs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.data.xml.js.name
210
(:require [clojure.data.xml.protocols :refer [AsQName qname-uri qname-local]]
311
[clojure.string :as str]))

src/main/clojure/clojure/data/xml/process.clj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.data.xml.process
210
(:require [clojure.data.xml.event :refer [element-nss] :as evt]
311
[clojure.data.xml.name :as name :refer [gen-prefix *gen-prefix-counter* qname-uri]]

src/main/clojure/clojure/data/xml/pu_map.cljc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
; Copyright (c) Rich Hickey and contributors. All rights reserved.
2+
; The use and distribution terms for this software are covered by the
3+
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
; which can be found in the file epl-v10.html at the root of this distribution.
5+
; By using this software in any fashion, you are agreeing to be bound by
6+
; the terms of this license.
7+
; You must not remove this notice, or any other, from this software.
8+
19
(ns clojure.data.xml.pu-map
210
"Provides a bidirectional mapping for keeping track of prefix->uri mappings in xml namespaces.
311

0 commit comments

Comments
 (0)