Skip to content
This repository was archived by the owner on Jul 15, 2021. It is now read-only.

Commit cc9732f

Browse files
committed
Added license and .editorconfig
1 parent ea69623 commit cc9732f

File tree

10 files changed

+63
-1
lines changed

10 files changed

+63
-1
lines changed

.editorconfig

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Copyright (c) 2014 Kevin Bell. All rights reserved.
2+
# See the file license.txt for copying permission.
3+
#
4+
# Learn more about EditorConfig at http://editorconfig.org
5+
6+
[*.clj]
7+
indent_style = space
8+
indent_size = 2
9+
10+
[*.cljs]
11+
indent_style = space
12+
indent_size = 2
13+
14+
[*.less]
15+
indent_style = space
16+
indent_size = 4
17+
18+
[*.html]
19+
indent_style = space
20+
indent_size = 4

license.txt

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2014 Kevin Bell. All rights reserved.
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

pages/index.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
<!-- Copyright (c) 2014 Kevin Bell. All rights reserved. -->
2+
<!-- See the file license.txt for copying permission. -->
13
<!DOCTYPE html>
24
<html>
35
<head>
@@ -8,7 +10,7 @@
810
<body>
911
<div id="app"></div>
1012
{{#scripts}}
11-
<script {{#src}}src="{{src}}"{{/src}}>{{body}}</script>
13+
<script{{#src}} src="{{src}}"{{/src}}>{{body}}</script>
1214
{{/scripts}}
1315
</body>
1416
</html>

project.clj

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
; Copyright (c) 2014 Kevin Bell. All rights reserved.
2+
; See the file license.txt for copying permission.
3+
14
(def less-cmd
25
["shell" "lessc" "stylesheets/style.less"
36
"static/css/style.css"

src/dcom/client.cljs

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
; Copyright (c) 2014 Kevin Bell. All rights reserved.
2+
; See the file license.txt for copying permission.
3+
14
(ns dcom.client
25
(:require-macros [cljs.core.async.macros :refer [go go-loop]])
36
(:require [om.core :as om :include-macros true]

src/dcom/config.clj

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
; Copyright (c) 2014 Kevin Bell. All rights reserved.
2+
; See the file license.txt for copying permission.
3+
14
(ns dcom.config
25
(:require [clojure.java.io :as io])
36
(:import (java.io FileNotFoundException PushbackReader)))

src/dcom/db.clj

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
; Copyright (c) 2014 Kevin Bell. All rights reserved.
2+
; See the file license.txt for copying permission.
3+
14
(ns dcom.db
25
"https://github.com/Datomic/day-of-datomic/blob/master/src/datomic/samples/io.clj
36
and

src/dcom/repl.clj

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
; Copyright (c) 2014 Kevin Bell. All rights reserved.
2+
; See the file license.txt for copying permission.
3+
14
(ns dcom.repl
25
(:require [cemerick.austin.repls :refer (browser-connected-repl-js)]
36
[compojure.route :refer (resources)]

src/dcom/server.clj

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
; Copyright (c) 2014 Kevin Bell. All rights reserved.
2+
; See the file license.txt for copying permission.
3+
14
(ns dcom.server
25
(:require [ring.middleware.cors :as cors]
36
[ring.middleware.format :refer [wrap-restful-format]]

stylesheets/style.less

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2014 Kevin Bell. All rights reserved.
2+
// See the file license.txt for copying permission.
3+
14
@import "bootstrap.less";
25

36
// Put custom less here

0 commit comments

Comments
 (0)