From ea8b0f21f94b0cd2253655c75c5d646a9727ab6d Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 1 Mar 2016 20:18:42 +0200 Subject: [PATCH] Add license header to cljs files. --- src/uxbox/core.cljs | 7 +++++++ src/uxbox/data/auth.cljs | 7 +++++++ src/uxbox/data/dashboard.cljs | 7 +++++++ src/uxbox/data/load.cljs | 7 +++++++ src/uxbox/data/projects.cljs | 7 +++++++ src/uxbox/data/shapes.cljs | 7 +++++++ src/uxbox/data/workspace.cljs | 7 +++++++ src/uxbox/library.cljs | 7 +++++++ src/uxbox/library/colors.cljs | 7 +++++++ src/uxbox/library/icons.cljs | 7 +++++++ src/uxbox/locales.cljs | 7 +++++++ src/uxbox/locales/en.cljs | 7 +++++++ src/uxbox/repo.cljs | 7 +++++++ src/uxbox/router.cljs | 7 +++++++ src/uxbox/rstore.cljs | 7 +++++++ src/uxbox/schema.cljs | 7 +++++++ src/uxbox/shapes.cljs | 7 +++++++ src/uxbox/state.cljs | 7 +++++++ src/uxbox/ui.cljs | 7 +++++++ src/uxbox/ui/dashboard/colors.cljs | 7 +++++++ src/uxbox/ui/dashboard/elements.cljs | 7 +++++++ src/uxbox/ui/dashboard/header.cljs | 7 +++++++ src/uxbox/ui/dashboard/icons.cljs | 7 +++++++ src/uxbox/ui/dashboard/projects.cljs | 7 +++++++ src/uxbox/ui/workspace/base.cljs | 7 +++++++ src/uxbox/ui/workspace/canvas.cljs | 7 +++++++ src/uxbox/ui/workspace/canvas/draw.cljs | 7 +++++++ src/uxbox/ui/workspace/canvas/movement.cljs | 7 +++++++ src/uxbox/ui/workspace/canvas/resize.cljs | 7 +++++++ src/uxbox/ui/workspace/canvas/ruler.cljs | 7 +++++++ src/uxbox/ui/workspace/canvas/selection.cljs | 7 +++++++ src/uxbox/ui/workspace/canvas/selrect.cljs | 7 +++++++ src/uxbox/ui/workspace/clipboard.cljs | 7 +++++++ src/uxbox/ui/workspace/colorpalette.cljs | 7 +++++++ src/uxbox/ui/workspace/grid.cljs | 7 +++++++ src/uxbox/ui/workspace/header.cljs | 7 +++++++ src/uxbox/ui/workspace/recent_colors.cljs | 7 +++++++ src/uxbox/ui/workspace/rules.cljs | 7 +++++++ src/uxbox/ui/workspace/settings.cljs | 7 +++++++ src/uxbox/ui/workspace/shortcuts.cljs | 7 +++++++ src/uxbox/ui/workspace/sidebar.cljs | 7 +++++++ src/uxbox/ui/workspace/sidebar/document_history.cljs | 7 +++++++ src/uxbox/ui/workspace/sidebar/drawtools.cljs | 7 +++++++ src/uxbox/ui/workspace/sidebar/icons.cljs | 7 +++++++ src/uxbox/ui/workspace/sidebar/layers.cljs | 7 +++++++ src/uxbox/ui/workspace/sidebar/options.cljs | 7 +++++++ src/uxbox/ui/workspace/sidebar/sitemap.cljs | 7 +++++++ src/uxbox/util/color.cljs | 7 +++++++ src/uxbox/util/data.cljs | 7 +++++++ src/uxbox/util/dom.cljs | 7 +++++++ src/uxbox/util/dom/dnd.cljs | 7 +++++++ src/uxbox/util/geom/matrix.cljs | 7 +++++++ src/uxbox/util/geom/point.cljs | 7 +++++++ src/uxbox/util/lens.cljs | 7 +++++++ src/uxbox/util/math.cljs | 7 +++++++ src/uxbox/util/syntax.cljc | 7 +++++++ src/uxbox/xforms.cljs | 7 +++++++ 57 files changed, 399 insertions(+) diff --git a/src/uxbox/core.cljs b/src/uxbox/core.cljs index 92633d1e6..eb5418266 100644 --- a/src/uxbox/core.cljs +++ b/src/uxbox/core.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.core (:require-macros [uxbox.util.syntax :refer [define-once]]) (:require [beicon.core :as rx] diff --git a/src/uxbox/data/auth.cljs b/src/uxbox/data/auth.cljs index dd37a4122..9e0b47ad1 100644 --- a/src/uxbox/data/auth.cljs +++ b/src/uxbox/data/auth.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.data.auth (:require [beicon.core :as rx] [promesa.core :as p] diff --git a/src/uxbox/data/dashboard.cljs b/src/uxbox/data/dashboard.cljs index 4a8f0954e..79607231d 100644 --- a/src/uxbox/data/dashboard.cljs +++ b/src/uxbox/data/dashboard.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.data.dashboard (:require [uxbox.rstore :as rs] [uxbox.router :as r] diff --git a/src/uxbox/data/load.cljs b/src/uxbox/data/load.cljs index 00f82a033..da795596b 100644 --- a/src/uxbox/data/load.cljs +++ b/src/uxbox/data/load.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.data.load (:require [hodgepodge.core :refer [local-storage]] [uxbox.rstore :as rs] diff --git a/src/uxbox/data/projects.cljs b/src/uxbox/data/projects.cljs index 7608e0c1a..44fad63e4 100644 --- a/src/uxbox/data/projects.cljs +++ b/src/uxbox/data/projects.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.data.projects (:require [bouncer.validators :as v] [cuerdas.core :as str] diff --git a/src/uxbox/data/shapes.cljs b/src/uxbox/data/shapes.cljs index 893bdc40e..86141958c 100644 --- a/src/uxbox/data/shapes.cljs +++ b/src/uxbox/data/shapes.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.data.shapes (:require [bouncer.validators :as v] [beicon.core :as rx] diff --git a/src/uxbox/data/workspace.cljs b/src/uxbox/data/workspace.cljs index f55e4593e..97211cd4d 100644 --- a/src/uxbox/data/workspace.cljs +++ b/src/uxbox/data/workspace.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.data.workspace (:require [bouncer.validators :as v] [beicon.core :as rx] diff --git a/src/uxbox/library.cljs b/src/uxbox/library.cljs index 031d84883..8033f92c8 100644 --- a/src/uxbox/library.cljs +++ b/src/uxbox/library.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.library (:require [uxbox.library.colors :as colors] [uxbox.library.icons :as icons] diff --git a/src/uxbox/library/colors.cljs b/src/uxbox/library/colors.cljs index af0a52207..214055882 100644 --- a/src/uxbox/library/colors.cljs +++ b/src/uxbox/library/colors.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.library.colors) (def ^:static +collections+ diff --git a/src/uxbox/library/icons.cljs b/src/uxbox/library/icons.cljs index 5ff8f3974..7284b8178 100644 --- a/src/uxbox/library/icons.cljs +++ b/src/uxbox/library/icons.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.library.icons (:require [uxbox.library.icons.material.actions :as md-actions] [uxbox.library.icons.material.alerts :as md-alerts] diff --git a/src/uxbox/locales.cljs b/src/uxbox/locales.cljs index f6bcc8607..90658ab2a 100644 --- a/src/uxbox/locales.cljs +++ b/src/uxbox/locales.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.locales "A i18n foundation." (:require [hodgepodge.core :refer [local-storage]] diff --git a/src/uxbox/locales/en.cljs b/src/uxbox/locales/en.cljs index 0a4469bf2..b374801cc 100644 --- a/src/uxbox/locales/en.cljs +++ b/src/uxbox/locales/en.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.locales.en) (defonce +locales+ diff --git a/src/uxbox/repo.cljs b/src/uxbox/repo.cljs index 0014ce44b..9fe3d8ab2 100644 --- a/src/uxbox/repo.cljs +++ b/src/uxbox/repo.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.repo "A main interface for access to remote resources." (:refer-clojure :exclude [do]) diff --git a/src/uxbox/router.cljs b/src/uxbox/router.cljs index 91b499fde..a677a9c96 100644 --- a/src/uxbox/router.cljs +++ b/src/uxbox/router.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.router (:require [bidi.router] [bidi.bidi :as bidi] diff --git a/src/uxbox/rstore.cljs b/src/uxbox/rstore.cljs index 1ba27e711..1ba49ac5f 100644 --- a/src/uxbox/rstore.cljs +++ b/src/uxbox/rstore.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.rstore "Reactive storage management architecture helpers." (:require [beicon.core :as rx])) diff --git a/src/uxbox/schema.cljs b/src/uxbox/schema.cljs index 16e906dda..14c7da155 100644 --- a/src/uxbox/schema.cljs +++ b/src/uxbox/schema.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.schema (:refer-clojure :exclude [keyword uuid vector boolean]) (:require [bouncer.core :as b] diff --git a/src/uxbox/shapes.cljs b/src/uxbox/shapes.cljs index 0a0b8a340..374d74136 100644 --- a/src/uxbox/shapes.cljs +++ b/src/uxbox/shapes.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.shapes (:require [uxbox.util.geom.matrix :as gmt] [uxbox.util.geom.point :as gpt] diff --git a/src/uxbox/state.cljs b/src/uxbox/state.cljs index ff04fae15..fcb052e8c 100644 --- a/src/uxbox/state.cljs +++ b/src/uxbox/state.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.state (:require [beicon.core :as rx] [uxbox.rstore :as rs])) diff --git a/src/uxbox/ui.cljs b/src/uxbox/ui.cljs index 781224012..f700bede4 100644 --- a/src/uxbox/ui.cljs +++ b/src/uxbox/ui.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui (:require [sablono.core :as html :refer-macros [html]] [promesa.core :as p] diff --git a/src/uxbox/ui/dashboard/colors.cljs b/src/uxbox/ui/dashboard/colors.cljs index 1c97adc56..ca22331eb 100644 --- a/src/uxbox/ui/dashboard/colors.cljs +++ b/src/uxbox/ui/dashboard/colors.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.dashboard.colors (:require [sablono.core :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/dashboard/elements.cljs b/src/uxbox/ui/dashboard/elements.cljs index c195556c5..8e5b6a591 100644 --- a/src/uxbox/ui/dashboard/elements.cljs +++ b/src/uxbox/ui/dashboard/elements.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.dashboard.elements (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/dashboard/header.cljs b/src/uxbox/ui/dashboard/header.cljs index 9e13dbcda..f9512b148 100644 --- a/src/uxbox/ui/dashboard/header.cljs +++ b/src/uxbox/ui/dashboard/header.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.dashboard.header (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/dashboard/icons.cljs b/src/uxbox/ui/dashboard/icons.cljs index 681e46659..67834fcf4 100644 --- a/src/uxbox/ui/dashboard/icons.cljs +++ b/src/uxbox/ui/dashboard/icons.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.dashboard.icons (:require [sablono.core :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/dashboard/projects.cljs b/src/uxbox/ui/dashboard/projects.cljs index e915ea24b..98c865f62 100644 --- a/src/uxbox/ui/dashboard/projects.cljs +++ b/src/uxbox/ui/dashboard/projects.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.dashboard.projects (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/base.cljs b/src/uxbox/ui/workspace/base.cljs index f262f232e..feae3329e 100644 --- a/src/uxbox/ui/workspace/base.cljs +++ b/src/uxbox/ui/workspace/base.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.base (:require-macros [uxbox.util.syntax :refer [define-once]]) (:require [beicon.core :as rx] diff --git a/src/uxbox/ui/workspace/canvas.cljs b/src/uxbox/ui/workspace/canvas.cljs index 77fbdb70a..f3433c4ea 100644 --- a/src/uxbox/ui/workspace/canvas.cljs +++ b/src/uxbox/ui/workspace/canvas.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.canvas (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/canvas/draw.cljs b/src/uxbox/ui/workspace/canvas/draw.cljs index 513a79e9e..c760947b2 100644 --- a/src/uxbox/ui/workspace/canvas/draw.cljs +++ b/src/uxbox/ui/workspace/canvas/draw.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.canvas.draw (:require-macros [uxbox.util.syntax :refer [define-once]]) (:require [sablono.core :as html :refer-macros [html]] diff --git a/src/uxbox/ui/workspace/canvas/movement.cljs b/src/uxbox/ui/workspace/canvas/movement.cljs index be6180b10..70d9f8970 100644 --- a/src/uxbox/ui/workspace/canvas/movement.cljs +++ b/src/uxbox/ui/workspace/canvas/movement.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.canvas.movement (:require-macros [uxbox.util.syntax :refer [define-once]]) (:require [beicon.core :as rx] diff --git a/src/uxbox/ui/workspace/canvas/resize.cljs b/src/uxbox/ui/workspace/canvas/resize.cljs index 435d4becf..1e925c139 100644 --- a/src/uxbox/ui/workspace/canvas/resize.cljs +++ b/src/uxbox/ui/workspace/canvas/resize.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.canvas.resize (:require-macros [uxbox.util.syntax :refer [define-once]]) (:require [sablono.core :as html :refer-macros [html]] diff --git a/src/uxbox/ui/workspace/canvas/ruler.cljs b/src/uxbox/ui/workspace/canvas/ruler.cljs index bb16e55c3..8c3b6dda5 100644 --- a/src/uxbox/ui/workspace/canvas/ruler.cljs +++ b/src/uxbox/ui/workspace/canvas/ruler.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.canvas.ruler (:require-macros [uxbox.util.syntax :refer [define-once]]) (:require [sablono.core :as html :refer-macros [html]] diff --git a/src/uxbox/ui/workspace/canvas/selection.cljs b/src/uxbox/ui/workspace/canvas/selection.cljs index ae96dd12f..eb1207365 100644 --- a/src/uxbox/ui/workspace/canvas/selection.cljs +++ b/src/uxbox/ui/workspace/canvas/selection.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.canvas.selection (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/canvas/selrect.cljs b/src/uxbox/ui/workspace/canvas/selrect.cljs index fae39d403..213e167fb 100644 --- a/src/uxbox/ui/workspace/canvas/selrect.cljs +++ b/src/uxbox/ui/workspace/canvas/selrect.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.canvas.selrect "Components for indicate the user selection and selected shapes group." (:require-macros [uxbox.util.syntax :refer [define-once]]) diff --git a/src/uxbox/ui/workspace/clipboard.cljs b/src/uxbox/ui/workspace/clipboard.cljs index e80418dcc..bb37930ba 100644 --- a/src/uxbox/ui/workspace/clipboard.cljs +++ b/src/uxbox/ui/workspace/clipboard.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.clipboard (:require [sablono.core :as html :refer-macros [html]] [uxbox.ui.icons :as i] diff --git a/src/uxbox/ui/workspace/colorpalette.cljs b/src/uxbox/ui/workspace/colorpalette.cljs index fbc70ea6f..721a71bdd 100644 --- a/src/uxbox/ui/workspace/colorpalette.cljs +++ b/src/uxbox/ui/workspace/colorpalette.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.colorpalette (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/grid.cljs b/src/uxbox/ui/workspace/grid.cljs index 5f703bf9b..662481557 100644 --- a/src/uxbox/ui/workspace/grid.cljs +++ b/src/uxbox/ui/workspace/grid.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.grid (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/header.cljs b/src/uxbox/ui/workspace/header.cljs index 09fb830fe..6ac828d49 100644 --- a/src/uxbox/ui/workspace/header.cljs +++ b/src/uxbox/ui/workspace/header.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.header (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/recent_colors.cljs b/src/uxbox/ui/workspace/recent_colors.cljs index 6abd279ef..0fb4dac7e 100644 --- a/src/uxbox/ui/workspace/recent_colors.cljs +++ b/src/uxbox/ui/workspace/recent_colors.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.recent-colors (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/rules.cljs b/src/uxbox/ui/workspace/rules.cljs index 3de5af0bb..a5c15de7c 100644 --- a/src/uxbox/ui/workspace/rules.cljs +++ b/src/uxbox/ui/workspace/rules.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.rules (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/settings.cljs b/src/uxbox/ui/workspace/settings.cljs index 491cd5a50..5373422e7 100644 --- a/src/uxbox/ui/workspace/settings.cljs +++ b/src/uxbox/ui/workspace/settings.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.settings (:require [sablono.core :as html :refer-macros [html]] [uxbox.ui.icons :as i] diff --git a/src/uxbox/ui/workspace/shortcuts.cljs b/src/uxbox/ui/workspace/shortcuts.cljs index 5898bd2ce..1d964c2ba 100644 --- a/src/uxbox/ui/workspace/shortcuts.cljs +++ b/src/uxbox/ui/workspace/shortcuts.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.shortcuts (:require-macros [uxbox.util.syntax :refer [define-once]]) (:require [goog.events :as events] diff --git a/src/uxbox/ui/workspace/sidebar.cljs b/src/uxbox/ui/workspace/sidebar.cljs index 41a11acce..4df38713f 100644 --- a/src/uxbox/ui/workspace/sidebar.cljs +++ b/src/uxbox/ui/workspace/sidebar.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.sidebar (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/sidebar/document_history.cljs b/src/uxbox/ui/workspace/sidebar/document_history.cljs index cda7404c1..36b04eeda 100644 --- a/src/uxbox/ui/workspace/sidebar/document_history.cljs +++ b/src/uxbox/ui/workspace/sidebar/document_history.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.sidebar.document-history (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/sidebar/drawtools.cljs b/src/uxbox/ui/workspace/sidebar/drawtools.cljs index 67685948f..47c3810db 100644 --- a/src/uxbox/ui/workspace/sidebar/drawtools.cljs +++ b/src/uxbox/ui/workspace/sidebar/drawtools.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.sidebar.drawtools (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/sidebar/icons.cljs b/src/uxbox/ui/workspace/sidebar/icons.cljs index 06598c6ec..5f0bcac07 100644 --- a/src/uxbox/ui/workspace/sidebar/icons.cljs +++ b/src/uxbox/ui/workspace/sidebar/icons.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.sidebar.icons (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/sidebar/layers.cljs b/src/uxbox/ui/workspace/sidebar/layers.cljs index f6afaed36..bb22dbab7 100644 --- a/src/uxbox/ui/workspace/sidebar/layers.cljs +++ b/src/uxbox/ui/workspace/sidebar/layers.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.sidebar.layers (:require-macros [uxbox.util.syntax :refer (defer)]) (:require [sablono.core :as html :refer-macros [html]] diff --git a/src/uxbox/ui/workspace/sidebar/options.cljs b/src/uxbox/ui/workspace/sidebar/options.cljs index 91a373d2b..09eefee93 100644 --- a/src/uxbox/ui/workspace/sidebar/options.cljs +++ b/src/uxbox/ui/workspace/sidebar/options.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.sidebar.options (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/ui/workspace/sidebar/sitemap.cljs b/src/uxbox/ui/workspace/sidebar/sitemap.cljs index 908ec16e5..dfd526996 100644 --- a/src/uxbox/ui/workspace/sidebar/sitemap.cljs +++ b/src/uxbox/ui/workspace/sidebar/sitemap.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.ui.workspace.sidebar.sitemap (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] diff --git a/src/uxbox/util/color.cljs b/src/uxbox/util/color.cljs index 5525ce196..56a011004 100644 --- a/src/uxbox/util/color.cljs +++ b/src/uxbox/util/color.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.util.color "Color conversion utils.") diff --git a/src/uxbox/util/data.cljs b/src/uxbox/util/data.cljs index d86d914e9..0c3a852d4 100644 --- a/src/uxbox/util/data.cljs +++ b/src/uxbox/util/data.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.util.data "A collection of data transformation utils." (:require [cljs.reader :as r] diff --git a/src/uxbox/util/dom.cljs b/src/uxbox/util/dom.cljs index c2c689012..6d86330a6 100644 --- a/src/uxbox/util/dom.cljs +++ b/src/uxbox/util/dom.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.util.dom (:require [goog.dom :as dom])) diff --git a/src/uxbox/util/dom/dnd.cljs b/src/uxbox/util/dom/dnd.cljs index 2c205c003..28e51dad6 100644 --- a/src/uxbox/util/dom/dnd.cljs +++ b/src/uxbox/util/dom/dnd.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.util.dom.dnd "Drag & Drop interop helpers." (:require [uxbox.util.data :refer (read-string)])) diff --git a/src/uxbox/util/geom/matrix.cljs b/src/uxbox/util/geom/matrix.cljs index 6cc0e18e3..04da25323 100644 --- a/src/uxbox/util/geom/matrix.cljs +++ b/src/uxbox/util/geom/matrix.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.util.geom.matrix (:require [cuerdas.core :as str] [uxbox.util.math :as mth] diff --git a/src/uxbox/util/geom/point.cljs b/src/uxbox/util/geom/point.cljs index 7fd366fb6..af450f6e6 100644 --- a/src/uxbox/util/geom/point.cljs +++ b/src/uxbox/util/geom/point.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.util.geom.point (:require [uxbox.util.math :as mth])) diff --git a/src/uxbox/util/lens.cljs b/src/uxbox/util/lens.cljs index 8f47cacdd..24f664999 100644 --- a/src/uxbox/util/lens.cljs +++ b/src/uxbox/util/lens.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.util.lens (:refer-clojure :exclude [derive merge]) (:require [lentes.core :as l])) diff --git a/src/uxbox/util/math.cljs b/src/uxbox/util/math.cljs index 27b2880ad..401730e74 100644 --- a/src/uxbox/util/math.cljs +++ b/src/uxbox/util/math.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.util.math "A collection of math utils." (:require [goog.math :as math])) diff --git a/src/uxbox/util/syntax.cljc b/src/uxbox/util/syntax.cljc index f7d3094fb..a2719ab40 100644 --- a/src/uxbox/util/syntax.cljc +++ b/src/uxbox/util/syntax.cljc @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.util.syntax (:refer-clojure :exclude [defonce])) diff --git a/src/uxbox/xforms.cljs b/src/uxbox/xforms.cljs index 139520de3..bf5d99c2a 100644 --- a/src/uxbox/xforms.cljs +++ b/src/uxbox/xforms.cljs @@ -1,3 +1,10 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2015-2016 Andrey Antukh +;; Copyright (c) 2015-2016 Juan de la Cruz + (ns uxbox.xforms "A collection of usefull transducers that are usefull in more than one place in the application.")