From bbed68d493c59f871a079c8894852ae1553c4699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20=E2=80=9CFreso=E2=80=9D=20S=2E=20Olesen?= Date: Fri, 10 Mar 2017 19:14:00 +0100 Subject: [PATCH] Move license into affected scripts Preparation for merging the repository into https://github.com/murdos/musicbrainz-userscripts This retains the license blurb but also makes it one less file to juggle for the merge commit. --- COPYING | 24 ------------------- batch-add-recording-relationships.user.js | 28 ++++++++++++++++++++++ fast-cancel-edits.user.js | 29 +++++++++++++++++++++++ set-recording-comments.user.js | 28 ++++++++++++++++++++++ 4 files changed, 85 insertions(+), 24 deletions(-) delete mode 100644 COPYING diff --git a/COPYING b/COPYING deleted file mode 100644 index 816f6b2..0000000 --- a/COPYING +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (C) 2014 Michael Wiencek - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -Except as contained in this notice, the name(s) of the above copyright -holders shall not be used in advertising or otherwise to promote the sale, -use or other dealings in this Software without prior written -authorization. diff --git a/batch-add-recording-relationships.user.js b/batch-add-recording-relationships.user.js index adf087d..f5e1b07 100644 --- a/batch-add-recording-relationships.user.js +++ b/batch-add-recording-relationships.user.js @@ -2,6 +2,7 @@ // @name MusicBrainz: Batch-add "performance of" relationships // @version 2016.5.23 // @author Michael Wiencek +// @license X11 // @downloadURL https://bitbucket.org/mwiencek/userscripts/raw/master/batch-add-recording-relationships.user.js // @updateURL https://bitbucket.org/mwiencek/userscripts/raw/master/batch-add-recording-relationships.user.js // @include *://musicbrainz.org/artist/*/recordings* @@ -10,6 +11,33 @@ // @match *://*.musicbrainz.org/artist/*/recordings* // ==/UserScript== +// ==License== +// Copyright (C) 2014 Michael Wiencek +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// +// Except as contained in this notice, the name(s) of the above copyright +// holders shall not be used in advertising or otherwise to promote the sale, +// use or other dealings in this Software without prior written +// authorization. +// ==/License== + var scr = document.createElement("script"); scr.textContent = "(" + batch_recording_rels + ")();"; document.body.appendChild(scr); diff --git a/fast-cancel-edits.user.js b/fast-cancel-edits.user.js index 7526a80..ac30b65 100644 --- a/fast-cancel-edits.user.js +++ b/fast-cancel-edits.user.js @@ -2,6 +2,7 @@ // @name MusicBrainz: Fast cancel edits // @version 2015.6.7 // @author Michael Wiencek +// @license X11 // @downloadURL https://bitbucket.org/mwiencek/userscripts/raw/master/fast-cancel-edits.user.js // @updateURL https://bitbucket.org/mwiencek/userscripts/raw/master/fast-cancel-edits.user.js // @include *://musicbrainz.org/user/*/edits/open* @@ -30,6 +31,34 @@ // @match *://*.mbsandbox.org/search/edits* // @grant none // ==/UserScript== + +// ==License== +// Copyright (C) 2014 Michael Wiencek +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// +// Except as contained in this notice, the name(s) of the above copyright +// holders shall not be used in advertising or otherwise to promote the sale, +// use or other dealings in this Software without prior written +// authorization. +// ==/License== + //**************************************************************************// var scr = document.createElement("script"); diff --git a/set-recording-comments.user.js b/set-recording-comments.user.js index 4eedcf2..235dce2 100644 --- a/set-recording-comments.user.js +++ b/set-recording-comments.user.js @@ -2,6 +2,7 @@ // @name MusicBrainz: Set recording comments for a release // @version 2016.5.30 // @author Michael Wiencek +// @license X11 // @namespace 790382e7-8714-47a7-bfbd-528d0caa2333 // @downloadURL https://bitbucket.org/mwiencek/userscripts/raw/master/set-recording-comments.user.js // @updateURL https://bitbucket.org/mwiencek/userscripts/raw/master/set-recording-comments.user.js @@ -17,6 +18,33 @@ // @grant none // ==/UserScript== +// ==License== +// Copyright (C) 2014 Michael Wiencek +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// +// Except as contained in this notice, the name(s) of the above copyright +// holders shall not be used in advertising or otherwise to promote the sale, +// use or other dealings in this Software without prior written +// authorization. +// ==/License== + var scr = document.createElement("script"); scr.textContent = "$(" + setRecordingComments + ");"; document.body.appendChild(scr);