Mercurial > xmpp-account-manager
changeset 60:6d861d881b96
Add license headers to all source files.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sun, 24 May 2020 13:09:16 +0200 |
parents | d5cfc04b9718 |
children | 78c873be0caa |
files | avatar.js build_website.py client.js index.xhtml mam.js nickname.js pep.js roster.js util.js vcard.js |
diffstat | 10 files changed, 78 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/avatar.js +++ b/avatar.js @@ -1,3 +1,11 @@ +// SPDX-License-Identifier: AGPL-3.0-only +/* + * Copyright © 2018-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + * Copyright © 2020 Mathieu Pasquet <mathieui@mathieui.net> + * + * Released under GNU AGPL v3 only, read the file 'LICENSE' for more information. + */ + 'use strict'; function initAvatar(connection) {
--- a/build_website.py +++ b/build_website.py @@ -1,6 +1,13 @@ #!/usr/bin/env python3 '''Locale build script for XAM''' +# SPDX-License-Identifier: AGPL-3.0-only + +# Copyright © 2017-2018 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> +# Copyright © 2020 Mathieu Pasquet <mathieui@mathieui.net> +# +# Released under GNU AGPL v3 only, read the file 'LICENSE' for more information. + import sys from os import makedirs, path from django.conf import settings
--- a/client.js +++ b/client.js @@ -1,3 +1,11 @@ +// SPDX-License-Identifier: AGPL-3.0-only +/* + * Copyright © 2018-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + * Copyright © 2020 Mathieu Pasquet <mathieui@mathieui.net> + * + * Released under GNU AGPL v3 only, read the file 'LICENSE' for more information. + */ + 'use strict'; document.addEventListener('DOMContentLoaded', function () {
--- a/index.xhtml +++ b/index.xhtml @@ -1,4 +1,11 @@ <?xml version="1.0"?> +<!-- SPDX-License-Identifier: AGPL-3.0-only --> +<!-- + Copyright © 2018-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + Copyright © 2020 Mathieu Pasquet <mathieui@mathieui.net> + + Released under GNU AGPL v3 only, read the file 'LICENSE' for more information. +--> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta charset="utf-8"/>
--- a/mam.js +++ b/mam.js @@ -1,3 +1,11 @@ +// SPDX-License-Identifier: AGPL-3.0-only +/* + * Copyright © 2018-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + * Copyright © 2020 Mathieu Pasquet <mathieui@mathieui.net> + * + * Released under GNU AGPL v3 only, read the file 'LICENSE' for more information. + */ + 'use strict'; function initMAM(connection) {
--- a/nickname.js +++ b/nickname.js @@ -1,3 +1,11 @@ +// SPDX-License-Identifier: AGPL-3.0-only +/* + * Copyright © 2018-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + * Copyright © 2020 Mathieu Pasquet <mathieui@mathieui.net> + * + * Released under GNU AGPL v3 only, read the file 'LICENSE' for more information. + */ + 'use strict'; function initNickname(connection) {
--- a/pep.js +++ b/pep.js @@ -1,3 +1,11 @@ +// SPDX-License-Identifier: AGPL-3.0-only +/* + * Copyright © 2018-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + * Copyright © 2020 Mathieu Pasquet <mathieui@mathieui.net> + * + * Released under GNU AGPL v3 only, read the file 'LICENSE' for more information. + */ + 'use strict'; function initPEP(connection) {
--- a/roster.js +++ b/roster.js @@ -1,3 +1,11 @@ +// SPDX-License-Identifier: AGPL-3.0-only +/* + * Copyright © 2018-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + * Copyright © 2020 Mathieu Pasquet <mathieui@mathieui.net> + * + * Released under GNU AGPL v3 only, read the file 'LICENSE' for more information. + */ + 'use strict'; function initRoster(connection) {
--- a/util.js +++ b/util.js @@ -1,3 +1,11 @@ +// SPDX-License-Identifier: AGPL-3.0-only +/* + * Copyright © 2018-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + * Copyright © 2020 Mathieu Pasquet <mathieui@mathieui.net> + * + * Released under GNU AGPL v3 only, read the file 'LICENSE' for more information. + */ + 'use strict'; const NS = {
--- a/vcard.js +++ b/vcard.js @@ -1,3 +1,11 @@ +// SPDX-License-Identifier: AGPL-3.0-only +/* + * Copyright © 2018-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + * Copyright © 2020 Mathieu Pasquet <mathieui@mathieui.net> + * + * Released under GNU AGPL v3 only, read the file 'LICENSE' for more information. + */ + 'use strict'; function initVCard(connection) {