about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2017-09-26 19:43:04 +0200
committersternenseemann <git@lukasepple.de>2017-09-26 19:50:08 +0200
commit04bc3e79a291e80b8223c9893f0a6381280ca1ff (patch)
tree1f4d3631413608d1d79bbb8b7f5f87949033e9ab
parentdd3605e43857194cad4746685fa2667ddb11d321 (diff)
Properly AGPL-ify
-rw-r--r--COPYING (renamed from LICENSE)0
-rw-r--r--README.md4
-rw-r--r--backend/Api.hs17
-rw-r--r--backend/Main.hs17
-rw-r--r--lib/Sound/Likely.hs17
-rw-r--r--web/source/custom.css18
-rw-r--r--web/source/index.html20
-rw-r--r--web/source/main.js17
8 files changed, 110 insertions, 0 deletions
diff --git a/LICENSE b/COPYING
index dba13ed..dba13ed 100644
--- a/LICENSE
+++ b/COPYING
diff --git a/README.md b/README.md
index dba9967..eb94c34 100644
--- a/README.md
+++ b/README.md
@@ -39,3 +39,7 @@ yarn run build:dev
 cd ..
 cabal run likely-music-backend
 ```
+
+## I want the library non AGPL-licensed
+
+Please approach me.
diff --git a/backend/Api.hs b/backend/Api.hs
index 2e1e021..ef6869c 100644
--- a/backend/Api.hs
+++ b/backend/Api.hs
@@ -1,3 +1,20 @@
+--  Copyright 2017 Lukas Epple
+--
+--  This file is part of likely music.
+--
+--  likely music is free software: you can redistribute it and/or modify
+--  it under the terms of the GNU Affero General Public License as published by
+--  the Free Software Foundation, either version 3 of the License, or
+--  (at your option) any later version.
+--
+--  likely music is distributed in the hope that it will be useful,
+--  but WITHOUT ANY WARRANTY; without even the implied warranty of
+--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+--  GNU Affero General Public License for more details.
+--
+--  You should have received a copy of the GNU Affero General Public License
+--  along with likely music. If not, see <http://www.gnu.org/licenses/>.
+
 {-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE FlexibleInstances #-}
 {-# LANGUAGE DataKinds         #-}
diff --git a/backend/Main.hs b/backend/Main.hs
index 9eed1e6..9874105 100644
--- a/backend/Main.hs
+++ b/backend/Main.hs
@@ -1,3 +1,20 @@
+--  Copyright 2017 Lukas Epple
+--
+--  This file is part of likely music.
+--
+--  likely music is free software: you can redistribute it and/or modify
+--  it under the terms of the GNU Affero General Public License as published by
+--  the Free Software Foundation, either version 3 of the License, or
+--  (at your option) any later version.
+--
+--  likely music is distributed in the hope that it will be useful,
+--  but WITHOUT ANY WARRANTY; without even the implied warranty of
+--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+--  GNU Affero General Public License for more details.
+--
+--  You should have received a copy of the GNU Affero General Public License
+--  along with likely music. If not, see <http://www.gnu.org/licenses/>.
+
 {-# LANGUAGE OverloadedStrings #-}
 module Main where
 
diff --git a/lib/Sound/Likely.hs b/lib/Sound/Likely.hs
index 8eb7cda..370209a 100644
--- a/lib/Sound/Likely.hs
+++ b/lib/Sound/Likely.hs
@@ -1,3 +1,20 @@
+--  Copyright 2017 Lukas Epple
+--
+--  This file is part of likely music.
+--
+--  likely music is free software: you can redistribute it and/or modify
+--  it under the terms of the GNU Affero General Public License as published by
+--  the Free Software Foundation, either version 3 of the License, or
+--  (at your option) any later version.
+--
+--  likely music is distributed in the hope that it will be useful,
+--  but WITHOUT ANY WARRANTY; without even the implied warranty of
+--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+--  GNU Affero General Public License for more details.
+--
+--  You should have received a copy of the GNU Affero General Public License
+--  along with likely music. If not, see <http://www.gnu.org/licenses/>.
+
 {-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE FlexibleInstances #-}
 module Sound.Likely
diff --git a/web/source/custom.css b/web/source/custom.css
index 3399e7c..0a937cb 100644
--- a/web/source/custom.css
+++ b/web/source/custom.css
@@ -1,3 +1,21 @@
+/*  Copyright 2017 Lukas Epple
+
+  This file is part of likely music.
+
+  likely music is free software: you can redistribute it and/or modify
+  it under the terms of the GNU Affero General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  likely music is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU Affero General Public License for more details.
+
+  You should have received a copy of the GNU Affero General Public License
+  along with likely music. If not, see <http://www.gnu.org/licenses/>.
+*/
+
 body {
     font-size:1em;
     font-family: sans-serif;
diff --git a/web/source/index.html b/web/source/index.html
index ec953ac..c620c64 100644
--- a/web/source/index.html
+++ b/web/source/index.html
@@ -1,3 +1,23 @@
+<!--
+
+  Copyright 2017 Lukas Epple
+
+  This file is part of likely music.
+
+  likely music is free software: you can redistribute it and/or modify
+  it under the terms of the GNU Affero General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  likely music is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU Affero General Public License for more details.
+
+  You should have received a copy of the GNU Affero General Public License
+  along with likely music. If not, see <http://www.gnu.org/licenses/>.
+
+-->
 <!doctype html>
 <html>
     <head>
diff --git a/web/source/main.js b/web/source/main.js
index a12be2f..9fd6c56 100644
--- a/web/source/main.js
+++ b/web/source/main.js
@@ -1,3 +1,20 @@
+//  Copyright 2017 Lukas Epple
+//
+//  This file is part of likely music.
+//
+//  likely music is free software: you can redistribute it and/or modify
+//  it under the terms of the GNU Affero General Public License as published by
+//  the Free Software Foundation, either version 3 of the License, or
+//  (at your option) any later version.
+//
+//  likely music is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU Affero General Public License for more details.
+//
+//  You should have received a copy of the GNU Affero General Public License
+//  along with likely music. If not, see <http://www.gnu.org/licenses/>.
+
 import vis from 'vis';
 import { Map } from 'immutable';
 // types / internals