Project

General

Profile

« Previous | Next » 

Revision b93f26bf

Added by koszko about 2 years ago

gather all copyright info in 'copyright' file

View differences:

COPYING.txt
1
The extension can be redistributed under the terms of GPLv3+.
2
Certain parts are available under more permissive licenses.
3
Parts autored by Wojtek Kosior are additionally available under
4
the Asshole license 1.0.
5

  
6
See licenses/ directory for legal texts.
README.txt
6 6
without executing nonfree software.
7 7

  
8 8
Currently, the target browsers for this extension are Ungoogled Chromium
9
and various forks of Firefox Quantum (right now, Ungoogled Chromium is
10
being used).
9
and various forks of Firefox Quantum (57+).
11 10

  
12
This extension's development has just started. It doesn't do anything
13
useful yet. See TODOS.org
11
This extension is still in an early stage. See TODOS.org. Also see
12
`https://git.koszko.org/browser-extension-doc/' for documentation in
13
development.
14 14

  
15 15
## Installation ##
16
The extension can be loaded into Ungoogled Chromium as unpacked extension.
17
As of now, project's main directory is also the extension directory.
16
The extension can be loaded into Ungoogled Chromium or a modern Gecko-based
17
browser as unpacked extension. As of now, project's main directory is also
18
the extension directory.
19

  
20
## Copyright ##
21
All copyright information is gathered in the `copyright' file which follows
22
(loosely) the format of debian/copyright file described at
23
`https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/'
24

  
25
In general, this entire extension is available under the terms of GPLv3+ with
26
various additional licenses and permissions for particular files.
TODOS.org
47 47
- make extension's all html files proper XHTML
48 48
- split options_main.js into several smaller files
49 49
- validate settings data on import
50
- find some good hatchet icon and rename the extension to "Hachette" (unless
51
  someone suggests another good name before we do so)
52
- add an option to disable script blocking globally
50 53

  
51 54
DONE:
52
- find out what causes storage sometimes not to get initialized under IceCat 60 -- DONE? 2021-06-23
55
- employ copyright file in Debian format -- DONE 2021-06-25
56
- find out what causes storage sometimes not to get initialized under IceCat 60 -- DONE 2021-06-23
53 57
- make it possible to export page settings in some format -- DONE 2021-06-19
54 58
- make it possible to use wildcard urls in settings -- DONE 2021-05-14
55 59
- port to gecko-based browsers -- DONE 2021-05-13
background/main.js
2 2
 * Myext main background script
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
background/message_server.js
2 2
 * Myext message server
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
background/page_actions_server.js
2 2
 * Myext serving of page actions to content scripts
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
background/policy_injector.js
2 2
 * Myext injecting policy to page using webRequest
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
background/settings_query.js
2 2
 * Myext querying page settings with regard to wildcard records
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
background/storage.js
2 2
 * Myext storage manager
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
background/storage_server.js
2 2
 * Myext storage through connection (server side)
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
common/browser.js
2 2
 * Myext WebExtension API access normalization
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
common/connection_types.js
2 2
 * Myext background scripts message connection types "enum"
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
common/gen_unique.js
2 2
 * Myext generating unique, per-site hash
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
common/lock.js
2 2
 * Myext lock (aka binary semaphore aka mutex)
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
/*
common/once.js
2 2
 * Myext feature initialization promise
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
common/storage_client.js
2 2
 * Myext storage through connection (client side)
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
common/stored_types.js
2 2
 * Myext stored item types "enum"
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.Copyright
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
/*
common/url_item.js
2 2
 * Myext stripping url from query and target
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
content/main.js
2 2
 * Myext main content script run in all frames
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
content/page_actions.js
2 2
 * Myext handling of page actions in content scripts
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
copyright
1
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2
Upstream-Name: Myext
3
Source: https://git.koszko.org/browser-extension/
4

  
5
Files: *
6
Copyright: 2021 Wojtek Kosior <koszko@koszko.org>
7
License: GPL-3+-javascript or Alicense-1.0
8

  
9
Files: manifest.json
10
Copyright: 2021 Wojtek Kosior <koszko@koszko.org>
11
   2021 jahoti <jahoti@tilde.team>
12
License: GPL-3+-javascript or Alicense-1.0
13

  
14
Files: icons/myext.png README.txt TODOS.org copyright
15
Copyright: 2021 Wojtek Kosior <koszko@koszko.org>
16
License: GPL-3+ or Alicense-1.0 or CC-BY-SA-4.0
17

  
18
Files: *.html
19
Copyright: 2021 Wojtek Kosior <koszko@koszko.org>
20
   2021 Nicholas Johnson <nicholasjohnson@posteo.org>
21
License: GPL-3+ or Alicense-1.0 or CC-BY-SA-4.0
22

  
23
Files: common/sha256.js
24
Copyright: 2014-2017 Chen, Yi-Cyuan <emn178@gmail.com>
25
License: Expat
26
 Permission is hereby granted, free of charge, to any person obtaining
27
 a copy of this software and associated documentation files (the
28
 "Software"), to deal in the Software without restriction, including
29
 without limitation the rights to use, copy, modify, merge, publish,
30
 distribute, sublicense, and/or sell copies of the Software, and to
31
 permit persons to whom the Software is furnished to do so, subject to
32
 the following conditions:
33
 .
34
 The above copyright notice and this permission notice shall be
35
 included in all copies or substantial portions of the Software.
36
 .
37
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
38
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
39
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
40
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
41
 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
42
 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
43
 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
44

  
45
Files: licenses/*
46
Copyright: 2001, 2002, 2011-2013 Creative Commons
47
License: CC-BY-4.0
48

  
49
Files: licenses/alicense.txt
50
Copyright: 2021 Wojtek Kosior <koszko@koszko.org>
51
License: CC0
52
 See `licenses/cc0.txt'
53

  
54
Files: licenses/gpl-3.0.txt
55
Copyright: 2007 Free Software Foundation, Inc. <https://fsf.org/>
56
License: no-changing
57
 Everyone is permitted to copy and distribute verbatim copies of
58
 this license document, but changing it is not allowed.
59

  
60
License: GPL-3+-javascript
61
 This program is free software; you can redistribute it
62
 and/or modify it under the terms of the GNU General Public
63
 License as published by the Free Software Foundation; either
64
 version 3 of the License, or (at your option) any later
65
 version.
66
 .
67
 As additional permission under GNU GPL version 3 section 7, you
68
 may distribute forms of that code without the copy of the GNU
69
 GPL normally required by section 4, provided you include this
70
 license notice and, in case of non-source distribution, a URL
71
 through which recipients can access the Corresponding Source.
72
 If you modify file(s) with this exception, you may extend this
73
 exception to your version of the file(s), but you are not
74
 obligated to do so. If you do not wish to do so, delete this
75
 exception statement from your version. If you delete this
76
 exception statement from all source files in the program, then
77
 also delete it here.
78
 .
79
 As a special exception to the GPL, any HTML file which merely
80
 makes function calls to this code, and for that purpose
81
 includes it by reference shall be deemed a separate work for
82
 copyright law purposes. In addition, the copyright holders of
83
 this code give you permission to combine this code with free
84
 software libraries that are released under the GNU LGPL. You
85
 may copy and distribute such a system following the terms of
86
 the GNU GPL for this code and the LGPL for the libraries. If
87
 you modify this code, you may extend this exception to your
88
 version of the code, but you are not obligated to do so. If
89
 you do not wish to do so, delete this exception statement
90
 from your version.
91
 .
92
 You should have received a copy of the GNU General Public
93
 License along with this package; if not, you can get it from
94
 `https://www.gnu.org/licenses/gpl-3.0.html'.
95

  
96
License: Alicense-1.0
97
 You can use and redistribute this program with or without
98
 modification under then terms of "A" license version 1.0. You
99
 should have received a copy of "A" license along with this
100
 program. If not, you can get it from
101
 `https://koszko.org/alicense.txt'.
102
 Also see `https://koszko.org/en/articles/my-new-license.html'
103
 for more explanation.
104

  
105
License: CC-BY-SA-4.0
106
 See `licenses/cc-by-sa-4.0.txt'
107

  
108
License: CC-BY-4.0
109
 See `licenses/cc-by-4.0.txt'
html/display-panel.html
1 1
<!doctype html>
2 2
<!--
3 3
    Copyright (C) 2021 Wojtek Kosior
4

  
5
    This code is dual-licensed under:
6
    - Asshole license 1.0,
7
    - GPLv3 or (at your option) any later version
8

  
9
    "dual-licensed" means you can choose the license you prefer.
10

  
11
    This code is released under a permissive license because I disapprove of
12
    copyright and wouldn't be willing to sue a violator. Despite not putting
13
    this code under copyleft (which is also kind of copyright), I do not want
14
    it to be made proprietary. Hence, the permissive alternative to GPL is the
15
    Asshole license 1.0 that allows me to call you an asshole if you use it.
16
    This means you're legally ok regardless of how you utilize this code but if
17
    you make it into something nonfree, you're an asshole.
18

  
19
    You should have received a copy of both GPLv3 and Asshole license 1.0
20
    together with this code. If not, please see:
21
    - https://www.gnu.org/licenses/gpl-3.0.en.html
22
    - https://koszko.org/asshole-license.txt
4
    Redistribution terms are gathered in the `copyright' file.
23 5
  -->
24 6
<html>
25 7
  <head>
html/display-panel.js
2 2
 * Myext display panel logic
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
html/options.html
1 1
<!doctype html>
2 2
<!--
3 3
    Copyright (C) 2021 Wojtek Kosior
4

  
5
    This code is dual-licensed under:
6
    - Asshole license 1.0,
7
    - GPLv3 or (at your option) any later version
8

  
9
    "dual-licensed" means you can choose the license you prefer.
10

  
11
    This code is released under a permissive license because I disapprove of
12
    copyright and wouldn't be willing to sue a violator. Despite not putting
13
    this code under copyleft (which is also kind of copyright), I do not want
14
    it to be made proprietary. Hence, the permissive alternative to GPL is the
15
    Asshole license 1.0 that allows me to call you an asshole if you use it.
16
    This means you're legally ok regardless of how you utilize this code but if
17
    you make it into something nonfree, you're an asshole.
18

  
19
    You should have received a copy of both GPLv3 and Asshole license 1.0
20
    together with this code. If not, please see:
21
    - https://www.gnu.org/licenses/gpl-3.0.en.html
22
    - https://koszko.org/asshole-license.txt
4
    Copyright (C) 2021 Nicholas Johnson
5
    Redistribution terms are gathered in the `copyright' file.
23 6
  -->
24 7
<html>
25 8
  <head>
html/options_main.js
2 2
 * Myext HTML options page main script
3 3
 *
4 4
 * Copyright (C) 2021 Wojtek Kosior
5
 *
6
 * This code is dual-licensed under:
7
 * - Asshole license 1.0,
8
 * - GPLv3 or (at your option) any later version
9
 *
10
 * "dual-licensed" means you can choose the license you prefer.
11
 *
12
 * This code is released under a permissive license because I disapprove of
13
 * copyright and wouldn't be willing to sue a violator. Despite not putting
14
 * this code under copyleft (which is also kind of copyright), I do not want
15
 * it to be made proprietary. Hence, the permissive alternative to GPL is the
16
 * Asshole license 1.0 that allows me to call you an asshole if you use it.
17
 * This means you're legally ok regardless of how you utilize this code but if
18
 * you make it into something nonfree, you're an asshole.
19
 *
20
 * You should have received a copy of both GPLv3 and Asshole license 1.0
21
 * together with this code. If not, please see:
22
 * - https://www.gnu.org/licenses/gpl-3.0.en.html
23
 * - https://koszko.org/asshole-license.txt
5
 * Redistribution terms are gathered in the `copyright' file.
24 6
 */
25 7

  
26 8
"use strict";
licenses/alicense.txt
1
Asshole license 1.0
2

  
3
Redistribution and use in source and binary forms, with or without
4
modification, are permitted provided that the following conditions
5
are met:
6
1. You agree that you're an asshole.
7
2. You agree for the copyright owner of this software/work to call you an
8
   asshole, both privately and publicly.
9
3. You agree and promise not to sue the copyright owner of this
10
   software/work nor anyone acting on behalf of the copyright owner of this
11
   software/work for calling you an asshole.
12
4. You agree and promise not to sue the copyright owner of this
13
   software/work, nor anyone acting on behalf of the copyright owner of this
14
   software/work, in relation with reverse-engineering actions performed on
15
   your software/products.
16
5. You agree and promise not issue DMCA claims against any software
17
   developed and/or distributed by the copyright owner of this
18
   software/work or anyone acting on behalf of the copyright owner of this
19
   software/work. Should such claims happen regardless, they will be
20
   automatically void.
21

  
22
THIS SOFTWARE/WORK IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS''
23
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31
OUT OF THE USE OF THIS SOFTWARE/WORK, EVEN IF ADVISED OF THE POSSIBILITY OF
32
SUCH DAMAGE.
licenses/asshole.txt
1
Asshole license 1.0
2

  
3
Redistribution and use in source and binary forms, with or without
4
modification, are permitted provided that the following conditions
5
are met:
6
1. You agree that you're an asshole.
7
2. You agree for the copyright owner of this software/work to call you an
8
   asshole, both privately and publicly.
9
3. You agree and promise not to sue the copyright owner of this
10
   software/work nor anyone acting on behalf of the copyright owner of this
11
   software/work for calling you an asshole.
12
4. You agree and promise not to sue the copyright owner of this
13
   software/work, nor anyone acting on behalf of the copyright owner of this
14
   software/work, in relation with reverse-engineering actions performed on
15
   your software/products.
16
5. You agree and promise not issue DMCA claims against any software
17
   developed and/or distributed by the copyright owner of this
18
   software/work or anyone acting on behalf of the copyright owner of this
19
   software/work. Should such claims happen regardless, they will be
20
   automatically void.
21

  
22
THIS SOFTWARE/WORK IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS''
23
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31
OUT OF THE USE OF THIS SOFTWARE/WORK, EVEN IF ADVISED OF THE POSSIBILITY OF
32
SUCH DAMAGE.
licenses/cc-by-4.0.txt
1
Attribution 4.0 International
2

  
3
=======================================================================
4

  
5
Creative Commons Corporation ("Creative Commons") is not a law firm and
6
does not provide legal services or legal advice. Distribution of
7
Creative Commons public licenses does not create a lawyer-client or
8
other relationship. Creative Commons makes its licenses and related
9
information available on an "as-is" basis. Creative Commons gives no
10
warranties regarding its licenses, any material licensed under their
11
terms and conditions, or any related information. Creative Commons
12
disclaims all liability for damages resulting from their use to the
13
fullest extent possible.
14

  
15
Using Creative Commons Public Licenses
16

  
17
Creative Commons public licenses provide a standard set of terms and
18
conditions that creators and other rights holders may use to share
19
original works of authorship and other material subject to copyright
20
and certain other rights specified in the public license below. The
21
following considerations are for informational purposes only, are not
22
exhaustive, and do not form part of our licenses.
23

  
24
     Considerations for licensors: Our public licenses are
25
     intended for use by those authorized to give the public
26
     permission to use material in ways otherwise restricted by
27
     copyright and certain other rights. Our licenses are
28
     irrevocable. Licensors should read and understand the terms
29
     and conditions of the license they choose before applying it.
30
     Licensors should also secure all rights necessary before
31
     applying our licenses so that the public can reuse the
32
     material as expected. Licensors should clearly mark any
33
     material not subject to the license. This includes other CC-
34
     licensed material, or material used under an exception or
35
     limitation to copyright. More considerations for licensors:
36
    wiki.creativecommons.org/Considerations_for_licensors
37

  
38
     Considerations for the public: By using one of our public
39
     licenses, a licensor grants the public permission to use the
40
     licensed material under specified terms and conditions. If
41
     the licensor's permission is not necessary for any reason--for
42
     example, because of any applicable exception or limitation to
43
     copyright--then that use is not regulated by the license. Our
44
     licenses grant only permissions under copyright and certain
45
     other rights that a licensor has authority to grant. Use of
46
     the licensed material may still be restricted for other
47
     reasons, including because others have copyright or other
48
     rights in the material. A licensor may make special requests,
49
     such as asking that all changes be marked or described.
50
     Although not required by our licenses, you are encouraged to
51
     respect those requests where reasonable. More considerations
52
     for the public:
53
    wiki.creativecommons.org/Considerations_for_licensees
54

  
55
=======================================================================
56

  
57
Creative Commons Attribution 4.0 International Public License
58

  
59
By exercising the Licensed Rights (defined below), You accept and agree
60
to be bound by the terms and conditions of this Creative Commons
61
Attribution 4.0 International Public License ("Public License"). To the
62
extent this Public License may be interpreted as a contract, You are
63
granted the Licensed Rights in consideration of Your acceptance of
64
these terms and conditions, and the Licensor grants You such rights in
65
consideration of benefits the Licensor receives from making the
66
Licensed Material available under these terms and conditions.
67

  
68

  
69
Section 1 -- Definitions.
70

  
71
  a. Adapted Material means material subject to Copyright and Similar
72
     Rights that is derived from or based upon the Licensed Material
73
     and in which the Licensed Material is translated, altered,
74
     arranged, transformed, or otherwise modified in a manner requiring
75
     permission under the Copyright and Similar Rights held by the
76
     Licensor. For purposes of this Public License, where the Licensed
77
     Material is a musical work, performance, or sound recording,
78
     Adapted Material is always produced where the Licensed Material is
79
     synched in timed relation with a moving image.
80

  
81
  b. Adapter's License means the license You apply to Your Copyright
82
     and Similar Rights in Your contributions to Adapted Material in
83
     accordance with the terms and conditions of this Public License.
84

  
85
  c. Copyright and Similar Rights means copyright and/or similar rights
86
     closely related to copyright including, without limitation,
87
     performance, broadcast, sound recording, and Sui Generis Database
88
     Rights, without regard to how the rights are labeled or
89
     categorized. For purposes of this Public License, the rights
90
     specified in Section 2(b)(1)-(2) are not Copyright and Similar
91
     Rights.
92

  
93
  d. Effective Technological Measures means those measures that, in the
94
     absence of proper authority, may not be circumvented under laws
95
     fulfilling obligations under Article 11 of the WIPO Copyright
96
     Treaty adopted on December 20, 1996, and/or similar international
97
     agreements.
98

  
99
  e. Exceptions and Limitations means fair use, fair dealing, and/or
100
     any other exception or limitation to Copyright and Similar Rights
101
     that applies to Your use of the Licensed Material.
102

  
103
  f. Licensed Material means the artistic or literary work, database,
104
     or other material to which the Licensor applied this Public
105
     License.
106

  
107
  g. Licensed Rights means the rights granted to You subject to the
108
     terms and conditions of this Public License, which are limited to
109
     all Copyright and Similar Rights that apply to Your use of the
110
     Licensed Material and that the Licensor has authority to license.
111

  
112
  h. Licensor means the individual(s) or entity(ies) granting rights
113
     under this Public License.
114

  
115
  i. Share means to provide material to the public by any means or
116
     process that requires permission under the Licensed Rights, such
117
     as reproduction, public display, public performance, distribution,
118
     dissemination, communication, or importation, and to make material
119
     available to the public including in ways that members of the
120
     public may access the material from a place and at a time
121
     individually chosen by them.
122

  
123
  j. Sui Generis Database Rights means rights other than copyright
124
     resulting from Directive 96/9/EC of the European Parliament and of
125
     the Council of 11 March 1996 on the legal protection of databases,
126
     as amended and/or succeeded, as well as other essentially
127
     equivalent rights anywhere in the world.
128

  
129
  k. You means the individual or entity exercising the Licensed Rights
130
     under this Public License. Your has a corresponding meaning.
131

  
132

  
133
Section 2 -- Scope.
134

  
135
  a. License grant.
136

  
137
       1. Subject to the terms and conditions of this Public License,
138
          the Licensor hereby grants You a worldwide, royalty-free,
139
          non-sublicensable, non-exclusive, irrevocable license to
140
          exercise the Licensed Rights in the Licensed Material to:
141

  
142
            a. reproduce and Share the Licensed Material, in whole or
143
               in part; and
144

  
145
            b. produce, reproduce, and Share Adapted Material.
146

  
147
       2. Exceptions and Limitations. For the avoidance of doubt, where
148
          Exceptions and Limitations apply to Your use, this Public
149
          License does not apply, and You do not need to comply with
150
          its terms and conditions.
151

  
152
       3. Term. The term of this Public License is specified in Section
153
          6(a).
154

  
155
       4. Media and formats; technical modifications allowed. The
156
          Licensor authorizes You to exercise the Licensed Rights in
157
          all media and formats whether now known or hereafter created,
158
          and to make technical modifications necessary to do so. The
159
          Licensor waives and/or agrees not to assert any right or
160
          authority to forbid You from making technical modifications
161
          necessary to exercise the Licensed Rights, including
162
          technical modifications necessary to circumvent Effective
163
          Technological Measures. For purposes of this Public License,
164
          simply making modifications authorized by this Section 2(a)
165
          (4) never produces Adapted Material.
166

  
167
       5. Downstream recipients.
168

  
169
            a. Offer from the Licensor -- Licensed Material. Every
170
               recipient of the Licensed Material automatically
171
               receives an offer from the Licensor to exercise the
172
               Licensed Rights under the terms and conditions of this
173
               Public License.
174

  
175
            b. No downstream restrictions. You may not offer or impose
176
               any additional or different terms or conditions on, or
177
               apply any Effective Technological Measures to, the
178
               Licensed Material if doing so restricts exercise of the
179
               Licensed Rights by any recipient of the Licensed
180
               Material.
181

  
182
       6. No endorsement. Nothing in this Public License constitutes or
183
          may be construed as permission to assert or imply that You
184
          are, or that Your use of the Licensed Material is, connected
185
          with, or sponsored, endorsed, or granted official status by,
186
          the Licensor or others designated to receive attribution as
187
          provided in Section 3(a)(1)(A)(i).
188

  
189
  b. Other rights.
190

  
191
       1. Moral rights, such as the right of integrity, are not
192
          licensed under this Public License, nor are publicity,
193
          privacy, and/or other similar personality rights; however, to
194
          the extent possible, the Licensor waives and/or agrees not to
195
          assert any such rights held by the Licensor to the limited
196
          extent necessary to allow You to exercise the Licensed
197
          Rights, but not otherwise.
198

  
199
       2. Patent and trademark rights are not licensed under this
200
          Public License.
201

  
202
       3. To the extent possible, the Licensor waives any right to
203
          collect royalties from You for the exercise of the Licensed
204
          Rights, whether directly or through a collecting society
205
          under any voluntary or waivable statutory or compulsory
206
          licensing scheme. In all other cases the Licensor expressly
207
          reserves any right to collect such royalties.
208

  
209

  
210
Section 3 -- License Conditions.
211

  
212
Your exercise of the Licensed Rights is expressly made subject to the
213
following conditions.
214

  
215
  a. Attribution.
216

  
217
       1. If You Share the Licensed Material (including in modified
218
          form), You must:
219

  
220
            a. retain the following if it is supplied by the Licensor
221
               with the Licensed Material:
222

  
223
                 i. identification of the creator(s) of the Licensed
224
                    Material and any others designated to receive
225
                    attribution, in any reasonable manner requested by
226
                    the Licensor (including by pseudonym if
227
                    designated);
228

  
229
                ii. a copyright notice;
230

  
231
               iii. a notice that refers to this Public License;
232

  
233
                iv. a notice that refers to the disclaimer of
234
                    warranties;
235

  
236
                 v. a URI or hyperlink to the Licensed Material to the
237
                    extent reasonably practicable;
238

  
239
            b. indicate if You modified the Licensed Material and
240
               retain an indication of any previous modifications; and
241

  
242
            c. indicate the Licensed Material is licensed under this
243
               Public License, and include the text of, or the URI or
244
               hyperlink to, this Public License.
245

  
246
       2. You may satisfy the conditions in Section 3(a)(1) in any
247
          reasonable manner based on the medium, means, and context in
248
          which You Share the Licensed Material. For example, it may be
249
          reasonable to satisfy the conditions by providing a URI or
250
          hyperlink to a resource that includes the required
251
          information.
252

  
253
       3. If requested by the Licensor, You must remove any of the
254
          information required by Section 3(a)(1)(A) to the extent
255
          reasonably practicable.
256

  
257
       4. If You Share Adapted Material You produce, the Adapter's
258
          License You apply must not prevent recipients of the Adapted
259
          Material from complying with this Public License.
260

  
261

  
262
Section 4 -- Sui Generis Database Rights.
263

  
264
Where the Licensed Rights include Sui Generis Database Rights that
265
apply to Your use of the Licensed Material:
266

  
267
  a. for the avoidance of doubt, Section 2(a)(1) grants You the right
268
     to extract, reuse, reproduce, and Share all or a substantial
269
     portion of the contents of the database;
270

  
271
  b. if You include all or a substantial portion of the database
272
     contents in a database in which You have Sui Generis Database
273
     Rights, then the database in which You have Sui Generis Database
274
     Rights (but not its individual contents) is Adapted Material; and
275

  
276
  c. You must comply with the conditions in Section 3(a) if You Share
277
     all or a substantial portion of the contents of the database.
278

  
279
For the avoidance of doubt, this Section 4 supplements and does not
280
replace Your obligations under this Public License where the Licensed
281
Rights include other Copyright and Similar Rights.
282

  
283

  
284
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
285

  
286
  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
287
     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
288
     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
289
     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
290
     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
291
     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
292
     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
293
     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
294
     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
295
     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
296

  
297
  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
298
     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
299
     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
300
     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
301
     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
302
     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
303
     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
304
     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
305
     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
306

  
307
  c. The disclaimer of warranties and limitation of liability provided
308
     above shall be interpreted in a manner that, to the extent
309
     possible, most closely approximates an absolute disclaimer and
310
     waiver of all liability.
311

  
312

  
313
Section 6 -- Term and Termination.
314

  
315
  a. This Public License applies for the term of the Copyright and
316
     Similar Rights licensed here. However, if You fail to comply with
317
     this Public License, then Your rights under this Public License
318
     terminate automatically.
319

  
320
  b. Where Your right to use the Licensed Material has terminated under
321
     Section 6(a), it reinstates:
322

  
323
       1. automatically as of the date the violation is cured, provided
324
          it is cured within 30 days of Your discovery of the
325
          violation; or
326

  
327
       2. upon express reinstatement by the Licensor.
328

  
329
     For the avoidance of doubt, this Section 6(b) does not affect any
330
     right the Licensor may have to seek remedies for Your violations
331
     of this Public License.
332

  
333
  c. For the avoidance of doubt, the Licensor may also offer the
334
     Licensed Material under separate terms or conditions or stop
335
     distributing the Licensed Material at any time; however, doing so
336
     will not terminate this Public License.
337

  
338
  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
339
     License.
340

  
341

  
342
Section 7 -- Other Terms and Conditions.
343

  
344
  a. The Licensor shall not be bound by any additional or different
345
     terms or conditions communicated by You unless expressly agreed.
346

  
347
  b. Any arrangements, understandings, or agreements regarding the
348
     Licensed Material not stated herein are separate from and
349
     independent of the terms and conditions of this Public License.
350

  
351

  
352
Section 8 -- Interpretation.
353

  
354
  a. For the avoidance of doubt, this Public License does not, and
355
     shall not be interpreted to, reduce, limit, restrict, or impose
356
     conditions on any use of the Licensed Material that could lawfully
357
     be made without permission under this Public License.
358

  
359
  b. To the extent possible, if any provision of this Public License is
360
     deemed unenforceable, it shall be automatically reformed to the
361
     minimum extent necessary to make it enforceable. If the provision
362
     cannot be reformed, it shall be severed from this Public License
363
     without affecting the enforceability of the remaining terms and
364
     conditions.
365

  
366
  c. No term or condition of this Public License will be waived and no
367
     failure to comply consented to unless expressly agreed to by the
368
     Licensor.
369

  
370
  d. Nothing in this Public License constitutes or may be interpreted
371
     as a limitation upon, or waiver of, any privileges and immunities
372
     that apply to the Licensor or You, including from the legal
373
     processes of any jurisdiction or authority.
374

  
375

  
376
=======================================================================
377

  
378
Creative Commons is not a party to its public
379
licenses. Notwithstanding, Creative Commons may elect to apply one of
380
its public licenses to material it publishes and in those instances
381
will be considered the “Licensor.” The text of the Creative Commons
382
public licenses is dedicated to the public domain under the CC0 Public
383
Domain Dedication. Except for the limited purpose of indicating that
384
material is shared under a Creative Commons public license or as
385
otherwise permitted by the Creative Commons policies published at
386
creativecommons.org/policies, Creative Commons does not authorize the
387
use of the trademark "Creative Commons" or any other trademark or logo
388
of Creative Commons without its prior written consent including,
389
without limitation, in connection with any unauthorized modifications
390
to any of its public licenses or any other arrangements,
391
understandings, or agreements concerning use of licensed material. For
392
the avoidance of doubt, this paragraph does not form part of the
393
public licenses.
394

  
395
Creative Commons may be contacted at creativecommons.org.
396

  
licenses/cc-by-sa-4.0.txt
1
Attribution-ShareAlike 4.0 International
2

  
3
=======================================================================
4

  
5
Creative Commons Corporation ("Creative Commons") is not a law firm and
6
does not provide legal services or legal advice. Distribution of
7
Creative Commons public licenses does not create a lawyer-client or
8
other relationship. Creative Commons makes its licenses and related
9
information available on an "as-is" basis. Creative Commons gives no
10
warranties regarding its licenses, any material licensed under their
11
terms and conditions, or any related information. Creative Commons
12
disclaims all liability for damages resulting from their use to the
13
fullest extent possible.
14

  
15
Using Creative Commons Public Licenses
16

  
17
Creative Commons public licenses provide a standard set of terms and
18
conditions that creators and other rights holders may use to share
19
original works of authorship and other material subject to copyright
20
and certain other rights specified in the public license below. The
21
following considerations are for informational purposes only, are not
22
exhaustive, and do not form part of our licenses.
23

  
24
     Considerations for licensors: Our public licenses are
25
     intended for use by those authorized to give the public
26
     permission to use material in ways otherwise restricted by
27
     copyright and certain other rights. Our licenses are
28
     irrevocable. Licensors should read and understand the terms
29
     and conditions of the license they choose before applying it.
30
     Licensors should also secure all rights necessary before
31
     applying our licenses so that the public can reuse the
32
     material as expected. Licensors should clearly mark any
33
     material not subject to the license. This includes other CC-
34
     licensed material, or material used under an exception or
35
     limitation to copyright. More considerations for licensors:
36
    wiki.creativecommons.org/Considerations_for_licensors
37

  
38
     Considerations for the public: By using one of our public
39
     licenses, a licensor grants the public permission to use the
40
     licensed material under specified terms and conditions. If
41
     the licensor's permission is not necessary for any reason--for
42
     example, because of any applicable exception or limitation to
43
     copyright--then that use is not regulated by the license. Our
44
     licenses grant only permissions under copyright and certain
45
     other rights that a licensor has authority to grant. Use of
46
     the licensed material may still be restricted for other
47
     reasons, including because others have copyright or other
48
     rights in the material. A licensor may make special requests,
49
     such as asking that all changes be marked or described.
50
     Although not required by our licenses, you are encouraged to
51
     respect those requests where reasonable. More considerations
52
     for the public:
53
    wiki.creativecommons.org/Considerations_for_licensees
54

  
55
=======================================================================
56

  
57
Creative Commons Attribution-ShareAlike 4.0 International Public
58
License
59

  
60
By exercising the Licensed Rights (defined below), You accept and agree
61
to be bound by the terms and conditions of this Creative Commons
62
Attribution-ShareAlike 4.0 International Public License ("Public
63
License"). To the extent this Public License may be interpreted as a
64
contract, You are granted the Licensed Rights in consideration of Your
65
acceptance of these terms and conditions, and the Licensor grants You
66
such rights in consideration of benefits the Licensor receives from
67
making the Licensed Material available under these terms and
68
conditions.
69

  
70

  
71
Section 1 -- Definitions.
72

  
73
  a. Adapted Material means material subject to Copyright and Similar
74
     Rights that is derived from or based upon the Licensed Material
75
     and in which the Licensed Material is translated, altered,
76
     arranged, transformed, or otherwise modified in a manner requiring
77
     permission under the Copyright and Similar Rights held by the
78
     Licensor. For purposes of this Public License, where the Licensed
79
     Material is a musical work, performance, or sound recording,
80
     Adapted Material is always produced where the Licensed Material is
81
     synched in timed relation with a moving image.
82

  
83
  b. Adapter's License means the license You apply to Your Copyright
84
     and Similar Rights in Your contributions to Adapted Material in
85
     accordance with the terms and conditions of this Public License.
86

  
87
  c. BY-SA Compatible License means a license listed at
88
     creativecommons.org/compatiblelicenses, approved by Creative
89
     Commons as essentially the equivalent of this Public License.
90

  
91
  d. Copyright and Similar Rights means copyright and/or similar rights
92
     closely related to copyright including, without limitation,
93
     performance, broadcast, sound recording, and Sui Generis Database
94
     Rights, without regard to how the rights are labeled or
95
     categorized. For purposes of this Public License, the rights
96
     specified in Section 2(b)(1)-(2) are not Copyright and Similar
97
     Rights.
98

  
99
  e. Effective Technological Measures means those measures that, in the
100
     absence of proper authority, may not be circumvented under laws
101
     fulfilling obligations under Article 11 of the WIPO Copyright
102
     Treaty adopted on December 20, 1996, and/or similar international
103
     agreements.
104

  
105
  f. Exceptions and Limitations means fair use, fair dealing, and/or
106
     any other exception or limitation to Copyright and Similar Rights
107
     that applies to Your use of the Licensed Material.
108

  
109
  g. License Elements means the license attributes listed in the name
110
     of a Creative Commons Public License. The License Elements of this
111
     Public License are Attribution and ShareAlike.
112

  
113
  h. Licensed Material means the artistic or literary work, database,
114
     or other material to which the Licensor applied this Public
115
     License.
116

  
117
  i. Licensed Rights means the rights granted to You subject to the
118
     terms and conditions of this Public License, which are limited to
119
     all Copyright and Similar Rights that apply to Your use of the
120
     Licensed Material and that the Licensor has authority to license.
121

  
122
  j. Licensor means the individual(s) or entity(ies) granting rights
123
     under this Public License.
124

  
125
  k. Share means to provide material to the public by any means or
126
     process that requires permission under the Licensed Rights, such
127
     as reproduction, public display, public performance, distribution,
128
     dissemination, communication, or importation, and to make material
129
     available to the public including in ways that members of the
130
     public may access the material from a place and at a time
131
     individually chosen by them.
132

  
133
  l. Sui Generis Database Rights means rights other than copyright
134
     resulting from Directive 96/9/EC of the European Parliament and of
135
     the Council of 11 March 1996 on the legal protection of databases,
136
     as amended and/or succeeded, as well as other essentially
137
     equivalent rights anywhere in the world.
138

  
139
  m. You means the individual or entity exercising the Licensed Rights
140
     under this Public License. Your has a corresponding meaning.
141

  
142

  
143
Section 2 -- Scope.
144

  
145
  a. License grant.
146

  
147
       1. Subject to the terms and conditions of this Public License,
148
          the Licensor hereby grants You a worldwide, royalty-free,
149
          non-sublicensable, non-exclusive, irrevocable license to
150
          exercise the Licensed Rights in the Licensed Material to:
151

  
152
            a. reproduce and Share the Licensed Material, in whole or
153
               in part; and
154

  
155
            b. produce, reproduce, and Share Adapted Material.
156

  
157
       2. Exceptions and Limitations. For the avoidance of doubt, where
158
          Exceptions and Limitations apply to Your use, this Public
159
          License does not apply, and You do not need to comply with
160
          its terms and conditions.
161

  
162
       3. Term. The term of this Public License is specified in Section
163
          6(a).
164

  
165
       4. Media and formats; technical modifications allowed. The
166
          Licensor authorizes You to exercise the Licensed Rights in
167
          all media and formats whether now known or hereafter created,
168
          and to make technical modifications necessary to do so. The
169
          Licensor waives and/or agrees not to assert any right or
170
          authority to forbid You from making technical modifications
171
          necessary to exercise the Licensed Rights, including
172
          technical modifications necessary to circumvent Effective
173
          Technological Measures. For purposes of this Public License,
174
          simply making modifications authorized by this Section 2(a)
175
          (4) never produces Adapted Material.
176

  
177
       5. Downstream recipients.
178

  
179
            a. Offer from the Licensor -- Licensed Material. Every
180
               recipient of the Licensed Material automatically
181
               receives an offer from the Licensor to exercise the
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff