diff options
| author | Max Gaukler <development@maxgaukler.de> | 2018-09-11 14:05:17 +0000 |
|---|---|---|
| committer | Max Gaukler <development@maxgaukler.de> | 2018-11-08 17:18:20 +0000 |
| commit | 79d82382b3ea1b7d77e3a47a96a786557588787a (patch) | |
| tree | e2729fa6bb00d24ac6140cafabb9cf9b94ffa01b /src/extension | |
| parent | Implement the remaining vector effects properties. (diff) | |
| download | inkscape-79d82382b3ea1b7d77e3a47a96a786557588787a.tar.gz inkscape-79d82382b3ea1b7d77e3a47a96a786557588787a.zip | |
Clarify licenses
- add license headers to everything
- convert a few files from public domain or LGPL2.1+ to GPL2+
- some archaeology to clarify which files are from which library
Diffstat (limited to 'src/extension')
236 files changed, 610 insertions, 333 deletions
diff --git a/src/extension/CMakeLists.txt b/src/extension/CMakeLists.txt index bf547be8a..8f0f1bcc4 100644 --- a/src/extension/CMakeLists.txt +++ b/src/extension/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later set(extension_SRC db.cpp diff --git a/src/extension/db.cpp b/src/extension/db.cpp index de9e248df..2c1ab953e 100644 --- a/src/extension/db.cpp +++ b/src/extension/db.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Functions to keep a listing of all modules in the system. Has its * own file mostly for abstraction reasons, but is pretty simple @@ -9,7 +10,7 @@ * * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "db.h" diff --git a/src/extension/db.h b/src/extension/db.h index 19595e840..4efc74f8b 100644 --- a/src/extension/db.h +++ b/src/extension/db.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Functions to keep a listing of all modules in the system. Has its * own file mostly for abstraction reasons, but is pretty simple @@ -9,7 +10,7 @@ * * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_MODULES_DB_H diff --git a/src/extension/dbus/CMakeLists.txt b/src/extension/dbus/CMakeLists.txt index ad9e1fd7d..f189180d6 100644 --- a/src/extension/dbus/CMakeLists.txt +++ b/src/extension/dbus/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later if(WITH_DBUS) include_directories(${CMAKE_BINARY_DIR}/src/extension/dbus) set(dbus_SRC "") diff --git a/src/extension/dbus/application-interface.cpp b/src/extension/dbus/application-interface.cpp index afaf9aedf..1b4be697d 100644 --- a/src/extension/dbus/application-interface.cpp +++ b/src/extension/dbus/application-interface.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This is where the implementation of the DBus based application API lives. * All the methods in here are designed to be called remotly via DBus. @@ -12,9 +13,9 @@ * * Copyright (C) 2009 Soren Berg * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ - + #include "application-interface.h" #include <string.h> #include "dbus-init.h" diff --git a/src/extension/dbus/application-interface.h b/src/extension/dbus/application-interface.h index 74c37cdd3..9e9758561 100644 --- a/src/extension/dbus/application-interface.h +++ b/src/extension/dbus/application-interface.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This is where the implementation of the DBus based application API lives. * All the methods in here are designed to be called remotly via DBus. @@ -12,7 +13,7 @@ * * Copyright (C) 2009 Soren Berg * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_APPLICATION_INTERFACE_H_ diff --git a/src/extension/dbus/application-interface.xml b/src/extension/dbus/application-interface.xml index 1553971cc..38d763074 100644 --- a/src/extension/dbus/application-interface.xml +++ b/src/extension/dbus/application-interface.xml @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later <?xml version="1.0" encoding="UTF-8" ?> <!-- * This is the master description of the DBus application interface. @@ -15,7 +16,7 @@ * * Copyright (C) 2009 Soren Berg * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. --> <node name="/org/inkscape/application" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd" diff --git a/src/extension/dbus/builddocs.sh b/src/extension/dbus/builddocs.sh index 2c16daf41..dbe3d6ec9 100644 --- a/src/extension/dbus/builddocs.sh +++ b/src/extension/dbus/builddocs.sh @@ -1,3 +1,5 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0-or-later xsltproc doc/spec-to-docbook.xsl application-interface.xml > doc/org.inkscape.application.ref.xml && xsltproc doc/spec-to-docbook.xsl document-interface.xml > doc/org.inkscape.document.ref.xml && xsltproc doc/spec-to-docbook.xsl proposed-interface.xml > doc/org.inkscape.proposed.ref.xml && diff --git a/src/extension/dbus/dbus-init.cpp b/src/extension/dbus/dbus-init.cpp index 43830762c..29db295d7 100644 --- a/src/extension/dbus/dbus-init.cpp +++ b/src/extension/dbus/dbus-init.cpp @@ -1,5 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* - * This is where Inkscape connects to the DBus when it starts and + * This is where Inkscape connects to the DBus when it starts and * registers the main interface. * * Also where new interfaces are registered when a new document is created. @@ -10,9 +11,9 @@ * * Copyright (C) 2009 Soren Berg * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ - + #include <dbus/dbus-glib.h> // this is reguired so that giomm headers won't barf #undef DBUS_MESSAGE_TYPE_INVALID diff --git a/src/extension/dbus/dbus-init.h b/src/extension/dbus/dbus-init.h index 7862ad3c3..c67a97dad 100644 --- a/src/extension/dbus/dbus-init.h +++ b/src/extension/dbus/dbus-init.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Soren Berg <glimmer07@gmail.com> * * Copyright (C) 2009 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_DBUS_INIT_H__ diff --git a/src/extension/dbus/doc/config.xsl b/src/extension/dbus/doc/config.xsl index 26949c4ef..09cf8de5d 100644 --- a/src/extension/dbus/doc/config.xsl +++ b/src/extension/dbus/doc/config.xsl @@ -1,4 +1,5 @@ <?xml version='1.0'?> +<!-- SPDX-License-Identifier: GPL-2.0-or-later --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0"> diff --git a/src/extension/dbus/doc/dbus-introspect-docs.dtd b/src/extension/dbus/doc/dbus-introspect-docs.dtd index 47816713e..3355d4d85 100644 --- a/src/extension/dbus/doc/dbus-introspect-docs.dtd +++ b/src/extension/dbus/doc/dbus-introspect-docs.dtd @@ -1,4 +1,5 @@ <!-- DTD for D-Bus Introspection Documentation --> +<!-- SPDX-License-Identifier: GPL-2.0-or-later --> <!ELEMENT doc (summary?,description?,errors?,permission?,since?,deprecated,seealso?)> diff --git a/src/extension/dbus/doc/docbook.css b/src/extension/dbus/doc/docbook.css index aed08dce1..0a1b7eefa 100644 --- a/src/extension/dbus/doc/docbook.css +++ b/src/extension/dbus/doc/docbook.css @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ body { font-family: sans-serif; diff --git a/src/extension/dbus/doc/spec-to-docbook.xsl b/src/extension/dbus/doc/spec-to-docbook.xsl index a4e792df0..5282167e7 100644 --- a/src/extension/dbus/doc/spec-to-docbook.xsl +++ b/src/extension/dbus/doc/spec-to-docbook.xsl @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later <?xml version='1.0'?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd" @@ -5,7 +6,7 @@ <!-- Convert D-Bus Glib xml into DocBook refentries Copyright (C) 2007 William Jon McCann - License: GPL + Released under GNU GPL v2+, read the file 'COPYING' for more information. --> <xsl:output method="xml" indent="yes" encoding="UTF-8"/> diff --git a/src/extension/dbus/document-interface.cpp b/src/extension/dbus/document-interface.cpp index 7a1f3939d..a02aa5089 100644 --- a/src/extension/dbus/document-interface.cpp +++ b/src/extension/dbus/document-interface.cpp @@ -1,6 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This is where the implementation of the DBus based document API lives. - * All the methods in here (except in the helper section) are + * All the methods in here (except in the helper section) are * designed to be called remotely via DBus. application-interface.cpp * has the methods used to connect to the bus and get a document instance. * @@ -12,7 +13,7 @@ * * Copyright (C) 2009 Soren Berg * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> diff --git a/src/extension/dbus/document-interface.h b/src/extension/dbus/document-interface.h index 0150dae7e..f2229a9aa 100644 --- a/src/extension/dbus/document-interface.h +++ b/src/extension/dbus/document-interface.h @@ -1,6 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This is where the implementation of the DBus based document API lives. - * All the methods in here (except in the helper section) are + * All the methods in here (except in the helper section) are * designed to be called remotly via DBus. application-interface.cpp * has the methods used to connect to the bus and get a document instance. * @@ -12,9 +13,9 @@ * * Copyright (C) 2009 Soren Berg * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ - + #ifndef INKSCAPE_EXTENSION_DOCUMENT_INTERFACE_H_ #define INKSCAPE_EXTENSION_DOCUMENT_INTERFACE_H_ diff --git a/src/extension/dbus/document-interface.xml b/src/extension/dbus/document-interface.xml index 26fa7b117..64ff4223c 100644 --- a/src/extension/dbus/document-interface.xml +++ b/src/extension/dbus/document-interface.xml @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later <?xml version="1.0" encoding="UTF-8" ?> <!-- * This is the master description of the DBus document interface. @@ -14,7 +15,7 @@ * * Copyright (C) 2009 Soren Berg * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. --> diff --git a/src/extension/dbus/org.inkscape.service.in b/src/extension/dbus/org.inkscape.service.in index 484c8e516..9fffa025e 100644 --- a/src/extension/dbus/org.inkscape.service.in +++ b/src/extension/dbus/org.inkscape.service.in @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later [D-BUS Service] Name=org.inkscape Exec=bindir/bin/inkscape diff --git a/src/extension/dbus/proposed-interface.xml b/src/extension/dbus/proposed-interface.xml index 2a45c1d52..0fe995cac 100644 --- a/src/extension/dbus/proposed-interface.xml +++ b/src/extension/dbus/proposed-interface.xml @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later <?xml version="1.0" encoding="UTF-8" ?> <!-- * These are some of the proposed functions for the document interface. @@ -12,7 +13,7 @@ * * Copyright (C) 2009 Soren Berg * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. --> <node name="/org/inkscape/proposed" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd" diff --git a/src/extension/dbus/pytester.py b/src/extension/dbus/pytester.py index d4c41fb47..fdd7e9ab6 100644 --- a/src/extension/dbus/pytester.py +++ b/src/extension/dbus/pytester.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later ##################################################################### # Python test script for Inkscape DBus API. # diff --git a/src/extension/dbus/wrapper/inkdbus.pc.in b/src/extension/dbus/wrapper/inkdbus.pc.in index 2bdfb75eb..512e3b34e 100644 --- a/src/extension/dbus/wrapper/inkdbus.pc.in +++ b/src/extension/dbus/wrapper/inkdbus.pc.in @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ diff --git a/src/extension/dbus/wrapper/inkscape-dbus-wrapper.c b/src/extension/dbus/wrapper/inkscape-dbus-wrapper.c index c7e453593..cc9399cda 100644 --- a/src/extension/dbus/wrapper/inkscape-dbus-wrapper.c +++ b/src/extension/dbus/wrapper/inkscape-dbus-wrapper.c @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2013 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #include "inkscape-dbus-wrapper.h" #include <string.h> #include <stdio.h> diff --git a/src/extension/dbus/wrapper/inkscape-dbus-wrapper.h b/src/extension/dbus/wrapper/inkscape-dbus-wrapper.h index 20830bd65..e2abd305e 100644 --- a/src/extension/dbus/wrapper/inkscape-dbus-wrapper.h +++ b/src/extension/dbus/wrapper/inkscape-dbus-wrapper.h @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2013 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifndef INKSCAPE_EXTENSION_DOCUMENT_INTERFACE_H_ #define INKSCAPE_EXTENSION_DOCUMENT_INTERFACE_H_ diff --git a/src/extension/dependency.cpp b/src/extension/dependency.cpp index fde6ee86f..2a04a030a 100644 --- a/src/extension/dependency.cpp +++ b/src/extension/dependency.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Ted Gould <ted@gould.cx> @@ -5,7 +6,7 @@ * Copyright (C) 2006 Johan Engelen, johan@shouraizou.nl * Copyright (C) 2004 Author * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/extension/dependency.h b/src/extension/dependency.h index 1cba8aff9..6c360785b 100644 --- a/src/extension/dependency.h +++ b/src/extension/dependency.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_DEPENDENCY_H__ diff --git a/src/extension/effect.cpp b/src/extension/effect.cpp index c86bc5db1..0ca9a7bcf 100644 --- a/src/extension/effect.cpp +++ b/src/extension/effect.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> @@ -5,7 +6,7 @@ * * Copyright (C) 2002-2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "prefdialog.h" diff --git a/src/extension/effect.h b/src/extension/effect.h index d0666dc7d..8a52838f5 100644 --- a/src/extension/effect.h +++ b/src/extension/effect.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/extension/error-file.cpp b/src/extension/error-file.cpp index 0611ad62f..ad65457b2 100644 --- a/src/extension/error-file.cpp +++ b/src/extension/error-file.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/dialog/extensions.h" diff --git a/src/extension/error-file.h b/src/extension/error-file.h index c4983e7e7..442bc8f86 100644 --- a/src/extension/error-file.h +++ b/src/extension/error-file.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_ERROR_FILE_H__ diff --git a/src/extension/execution-env.cpp b/src/extension/execution-env.cpp index 622dd340a..ca770e1f6 100644 --- a/src/extension/execution-env.cpp +++ b/src/extension/execution-env.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> @@ -5,7 +6,7 @@ * * Copyright (C) 2007-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/dialog.h> diff --git a/src/extension/execution-env.h b/src/extension/execution-env.h index c84395814..15d2cce35 100644 --- a/src/extension/execution-env.h +++ b/src/extension/execution-env.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_EXECUTION_ENV_H__ diff --git a/src/extension/extension.cpp b/src/extension/extension.cpp index 2e8df0791..73ae9c3c8 100644 --- a/src/extension/extension.cpp +++ b/src/extension/extension.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * * Inkscape::Extension::Extension: @@ -12,7 +13,7 @@ * * Copyright (C) 2002-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/extension/extension.h b/src/extension/extension.h index 1607f606b..619cb588e 100644 --- a/src/extension/extension.h +++ b/src/extension/extension.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INK_EXTENSION_H #define INK_EXTENSION_H @@ -11,7 +12,7 @@ * * Copyright (C) 2002-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <ostream> diff --git a/src/extension/find_extension_by_mime.h b/src/extension/find_extension_by_mime.h index bc963001e..f58580e6f 100644 --- a/src/extension/find_extension_by_mime.h +++ b/src/extension/find_extension_by_mime.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Find an extension by its mime type. @@ -16,7 +17,7 @@ * Copyright (C) 2004 David Turner * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "input.h" diff --git a/src/extension/implementation/implementation.cpp b/src/extension/implementation/implementation.cpp index 79b2bb84c..949451293 100644 --- a/src/extension/implementation/implementation.cpp +++ b/src/extension/implementation/implementation.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Author: Ted Gould <ted@gould.cx> Copyright (c) 2003-2005,2007 - This code is licensed under the GNU GPL. See COPYING for details. + Released under GNU GPL v2+, read the file 'COPYING' for more information. This file is the backend to the extensions system. These are the parts of the system that most users will never see, but are diff --git a/src/extension/implementation/implementation.h b/src/extension/implementation/implementation.h index 88afa0d27..e4922a083 100644 --- a/src/extension/implementation/implementation.h +++ b/src/extension/implementation/implementation.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Author: Ted Gould <ted@gould.cx> Copyright (c) 2003-2005,2007 - This code is licensed under the GNU GPL. See COPYING for details. - + Released under GNU GPL v2+, read the file 'COPYING' for more information. + This file is the backend to the extensions system. These are the parts of the system that most users will never see, but are important for implementing the extensions themselves. This file diff --git a/src/extension/implementation/script.cpp b/src/extension/implementation/script.cpp index fe3b14093..82b6b577a 100644 --- a/src/extension/implementation/script.cpp +++ b/src/extension/implementation/script.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * Code for handling extensions (i.e. scripts). * @@ -9,7 +10,7 @@ * * Copyright (C) 2002-2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm.h> diff --git a/src/extension/implementation/script.h b/src/extension/implementation/script.h index fba1df136..9a3b40278 100644 --- a/src/extension/implementation/script.h +++ b/src/extension/implementation/script.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Code for handling extensions (i.e., scripts) * @@ -7,7 +8,7 @@ * * Copyright (C) 2002-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_IMPEMENTATION_SCRIPT_H_SEEN diff --git a/src/extension/implementation/xslt.cpp b/src/extension/implementation/xslt.cpp index f50124e09..7d4bff11a 100644 --- a/src/extension/implementation/xslt.cpp +++ b/src/extension/implementation/xslt.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Code for handling XSLT extensions. */ @@ -9,7 +10,7 @@ * * Copyright (C) 2006-2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/fileutils.h> diff --git a/src/extension/implementation/xslt.h b/src/extension/implementation/xslt.h index eb24436ae..f4fc871a9 100644 --- a/src/extension/implementation/xslt.h +++ b/src/extension/implementation/xslt.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Code for handling XSLT extensions * @@ -6,7 +7,7 @@ * * Copyright (C) 2006-2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __INKSCAPE_EXTENSION_IMPEMENTATION_XSLT_H__ diff --git a/src/extension/init.cpp b/src/extension/init.cpp index 3ac73f05a..8e3c757f8 100644 --- a/src/extension/init.cpp +++ b/src/extension/init.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This is what gets executed to initialize all of the modules. For * the internal modules this involves executing their initialization @@ -9,7 +10,7 @@ * * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/extension/init.h b/src/extension/init.h index d89ad6ddd..328ee89d7 100644 --- a/src/extension/init.h +++ b/src/extension/init.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This is what gets executed to initialize all of the modules. For * the internal modules this invovles executing their initialization @@ -9,7 +10,7 @@ * * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_INIT_H__ diff --git a/src/extension/input.cpp b/src/extension/input.cpp index a13b6c4ea..708324de2 100644 --- a/src/extension/input.cpp +++ b/src/extension/input.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2002-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/extension/input.h b/src/extension/input.h index 6db5a98b9..93b000388 100644 --- a/src/extension/input.h +++ b/src/extension/input.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/extension/internal/bitmap/adaptiveThreshold.cpp b/src/extension/internal/bitmap/adaptiveThreshold.cpp index 3d7475cb3..a632ba226 100644 --- a/src/extension/internal/bitmap/adaptiveThreshold.cpp +++ b/src/extension/internal/bitmap/adaptiveThreshold.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/adaptiveThreshold.h b/src/extension/internal/bitmap/adaptiveThreshold.h index 75501720b..631c8e2e0 100644 --- a/src/extension/internal/bitmap/adaptiveThreshold.h +++ b/src/extension/internal/bitmap/adaptiveThreshold.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/addNoise.cpp b/src/extension/internal/bitmap/addNoise.cpp index 02bb877b7..606099638 100644 --- a/src/extension/internal/bitmap/addNoise.cpp +++ b/src/extension/internal/bitmap/addNoise.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/addNoise.h b/src/extension/internal/bitmap/addNoise.h index b1ac6a9f5..ab7936432 100644 --- a/src/extension/internal/bitmap/addNoise.h +++ b/src/extension/internal/bitmap/addNoise.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/blur.cpp b/src/extension/internal/bitmap/blur.cpp index 37a56b8a9..712d135a0 100644 --- a/src/extension/internal/bitmap/blur.cpp +++ b/src/extension/internal/bitmap/blur.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/blur.h b/src/extension/internal/bitmap/blur.h index be58ba5ba..269d57567 100644 --- a/src/extension/internal/bitmap/blur.h +++ b/src/extension/internal/bitmap/blur.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/channel.cpp b/src/extension/internal/bitmap/channel.cpp index 57ef0421b..4ca666814 100644 --- a/src/extension/internal/bitmap/channel.cpp +++ b/src/extension/internal/bitmap/channel.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/channel.h b/src/extension/internal/bitmap/channel.h index 898d3af46..067a5fd3b 100644 --- a/src/extension/internal/bitmap/channel.h +++ b/src/extension/internal/bitmap/channel.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/charcoal.cpp b/src/extension/internal/bitmap/charcoal.cpp index 2cfd741d1..69b76614b 100644 --- a/src/extension/internal/bitmap/charcoal.cpp +++ b/src/extension/internal/bitmap/charcoal.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/charcoal.h b/src/extension/internal/bitmap/charcoal.h index 2bedba76e..5c2a8d513 100644 --- a/src/extension/internal/bitmap/charcoal.h +++ b/src/extension/internal/bitmap/charcoal.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/colorize.cpp b/src/extension/internal/bitmap/colorize.cpp index 1c4b8a696..b7ce01a2a 100644 --- a/src/extension/internal/bitmap/colorize.cpp +++ b/src/extension/internal/bitmap/colorize.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Christopher Brown <audiere@gmail.com> @@ -5,7 +6,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/colorize.h b/src/extension/internal/bitmap/colorize.h index 5b55a1814..5faccf5a9 100644 --- a/src/extension/internal/bitmap/colorize.h +++ b/src/extension/internal/bitmap/colorize.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Christopher Brown <audiere@gmail.com> @@ -5,7 +6,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/contrast.cpp b/src/extension/internal/bitmap/contrast.cpp index a3be77808..35d04f50d 100644 --- a/src/extension/internal/bitmap/contrast.cpp +++ b/src/extension/internal/bitmap/contrast.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/contrast.h b/src/extension/internal/bitmap/contrast.h index 53a636647..c8099176f 100644 --- a/src/extension/internal/bitmap/contrast.h +++ b/src/extension/internal/bitmap/contrast.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/crop.cpp b/src/extension/internal/bitmap/crop.cpp index 99faef9d3..7b36bd340 100644 --- a/src/extension/internal/bitmap/crop.cpp +++ b/src/extension/internal/bitmap/crop.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2011 Authors: * Nicolas Dufour <nicoduf@yahoo.fr> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "2geom/transforms.h" diff --git a/src/extension/internal/bitmap/crop.h b/src/extension/internal/bitmap/crop.h index ce9b92797..168c093c5 100644 --- a/src/extension/internal/bitmap/crop.h +++ b/src/extension/internal/bitmap/crop.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2010 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * Nicolas Dufour <nicoduf@yahoo.fr> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/cycleColormap.cpp b/src/extension/internal/bitmap/cycleColormap.cpp index 8d55087a6..f7198eba5 100644 --- a/src/extension/internal/bitmap/cycleColormap.cpp +++ b/src/extension/internal/bitmap/cycleColormap.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/cycleColormap.h b/src/extension/internal/bitmap/cycleColormap.h index 7d8f49504..eacbb8c85 100644 --- a/src/extension/internal/bitmap/cycleColormap.h +++ b/src/extension/internal/bitmap/cycleColormap.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/despeckle.cpp b/src/extension/internal/bitmap/despeckle.cpp index c40e6e227..e0b2ed7e6 100644 --- a/src/extension/internal/bitmap/despeckle.cpp +++ b/src/extension/internal/bitmap/despeckle.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/despeckle.h b/src/extension/internal/bitmap/despeckle.h index 7a9be90a3..0c846b651 100644 --- a/src/extension/internal/bitmap/despeckle.h +++ b/src/extension/internal/bitmap/despeckle.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/edge.cpp b/src/extension/internal/bitmap/edge.cpp index 486ce0e4e..4212dee0d 100644 --- a/src/extension/internal/bitmap/edge.cpp +++ b/src/extension/internal/bitmap/edge.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/edge.h b/src/extension/internal/bitmap/edge.h index 40277a89e..8c7b8f9d1 100644 --- a/src/extension/internal/bitmap/edge.h +++ b/src/extension/internal/bitmap/edge.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/emboss.cpp b/src/extension/internal/bitmap/emboss.cpp index 9518cf320..44f65b049 100644 --- a/src/extension/internal/bitmap/emboss.cpp +++ b/src/extension/internal/bitmap/emboss.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/emboss.h b/src/extension/internal/bitmap/emboss.h index 4dcfc89d4..ff897089b 100644 --- a/src/extension/internal/bitmap/emboss.h +++ b/src/extension/internal/bitmap/emboss.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/enhance.cpp b/src/extension/internal/bitmap/enhance.cpp index 5b06a2d27..8c7dc52fd 100644 --- a/src/extension/internal/bitmap/enhance.cpp +++ b/src/extension/internal/bitmap/enhance.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/enhance.h b/src/extension/internal/bitmap/enhance.h index 3f5df47f6..574781fbe 100644 --- a/src/extension/internal/bitmap/enhance.h +++ b/src/extension/internal/bitmap/enhance.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/equalize.cpp b/src/extension/internal/bitmap/equalize.cpp index 6098f74b1..25d5e3c45 100644 --- a/src/extension/internal/bitmap/equalize.cpp +++ b/src/extension/internal/bitmap/equalize.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/equalize.h b/src/extension/internal/bitmap/equalize.h index 22cadf554..ea897dafb 100644 --- a/src/extension/internal/bitmap/equalize.h +++ b/src/extension/internal/bitmap/equalize.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/gaussianBlur.cpp b/src/extension/internal/bitmap/gaussianBlur.cpp index d68cd59bc..944d84838 100644 --- a/src/extension/internal/bitmap/gaussianBlur.cpp +++ b/src/extension/internal/bitmap/gaussianBlur.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/gaussianBlur.h b/src/extension/internal/bitmap/gaussianBlur.h index 3b6ca2137..2227fde5b 100644 --- a/src/extension/internal/bitmap/gaussianBlur.h +++ b/src/extension/internal/bitmap/gaussianBlur.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/imagemagick.cpp b/src/extension/internal/bitmap/imagemagick.cpp index 270fb2f35..e476a7370 100644 --- a/src/extension/internal/bitmap/imagemagick.cpp +++ b/src/extension/internal/bitmap/imagemagick.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Christopher Brown <audiere@gmail.com> @@ -5,7 +6,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <libintl.h> diff --git a/src/extension/internal/bitmap/imagemagick.h b/src/extension/internal/bitmap/imagemagick.h index 86c828d29..2793e457e 100644 --- a/src/extension/internal/bitmap/imagemagick.h +++ b/src/extension/internal/bitmap/imagemagick.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_EXTENSION_INTERNAL_BITMAP_IMAGEMAGICK_H #define INKSCAPE_EXTENSION_INTERNAL_BITMAP_IMAGEMAGICK_H @@ -6,7 +7,7 @@ * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/implementation/implementation.h" diff --git a/src/extension/internal/bitmap/implode.cpp b/src/extension/internal/bitmap/implode.cpp index c24fb7bf5..b48fb47cc 100644 --- a/src/extension/internal/bitmap/implode.cpp +++ b/src/extension/internal/bitmap/implode.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/implode.h b/src/extension/internal/bitmap/implode.h index b25b35412..24218dc9f 100644 --- a/src/extension/internal/bitmap/implode.h +++ b/src/extension/internal/bitmap/implode.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/level.cpp b/src/extension/internal/bitmap/level.cpp index 168328e8f..cc4ade583 100644 --- a/src/extension/internal/bitmap/level.cpp +++ b/src/extension/internal/bitmap/level.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/level.h b/src/extension/internal/bitmap/level.h index 111e83af7..600a82a79 100644 --- a/src/extension/internal/bitmap/level.h +++ b/src/extension/internal/bitmap/level.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/levelChannel.cpp b/src/extension/internal/bitmap/levelChannel.cpp index d5c636059..ddaf2e958 100644 --- a/src/extension/internal/bitmap/levelChannel.cpp +++ b/src/extension/internal/bitmap/levelChannel.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/levelChannel.h b/src/extension/internal/bitmap/levelChannel.h index 832619d5f..5e2b20ca7 100644 --- a/src/extension/internal/bitmap/levelChannel.h +++ b/src/extension/internal/bitmap/levelChannel.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/medianFilter.cpp b/src/extension/internal/bitmap/medianFilter.cpp index 64837850d..eb7c374a9 100644 --- a/src/extension/internal/bitmap/medianFilter.cpp +++ b/src/extension/internal/bitmap/medianFilter.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/medianFilter.h b/src/extension/internal/bitmap/medianFilter.h index befc57001..343a11d3c 100644 --- a/src/extension/internal/bitmap/medianFilter.h +++ b/src/extension/internal/bitmap/medianFilter.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/modulate.cpp b/src/extension/internal/bitmap/modulate.cpp index 3b3a2495c..086b0aafa 100644 --- a/src/extension/internal/bitmap/modulate.cpp +++ b/src/extension/internal/bitmap/modulate.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/modulate.h b/src/extension/internal/bitmap/modulate.h index f7c6fe9a5..1eb69cbdb 100644 --- a/src/extension/internal/bitmap/modulate.h +++ b/src/extension/internal/bitmap/modulate.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/negate.cpp b/src/extension/internal/bitmap/negate.cpp index 4737e6443..0465c7f2c 100644 --- a/src/extension/internal/bitmap/negate.cpp +++ b/src/extension/internal/bitmap/negate.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/negate.h b/src/extension/internal/bitmap/negate.h index 7ebe3b79e..c8464664a 100644 --- a/src/extension/internal/bitmap/negate.h +++ b/src/extension/internal/bitmap/negate.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/normalize.cpp b/src/extension/internal/bitmap/normalize.cpp index 1444aa654..91029aa2c 100644 --- a/src/extension/internal/bitmap/normalize.cpp +++ b/src/extension/internal/bitmap/normalize.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/normalize.h b/src/extension/internal/bitmap/normalize.h index 0637dbf44..5da81ed38 100644 --- a/src/extension/internal/bitmap/normalize.h +++ b/src/extension/internal/bitmap/normalize.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/oilPaint.cpp b/src/extension/internal/bitmap/oilPaint.cpp index 88c85a590..66c8941c9 100644 --- a/src/extension/internal/bitmap/oilPaint.cpp +++ b/src/extension/internal/bitmap/oilPaint.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/oilPaint.h b/src/extension/internal/bitmap/oilPaint.h index 822119d00..77d4ad10e 100644 --- a/src/extension/internal/bitmap/oilPaint.h +++ b/src/extension/internal/bitmap/oilPaint.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/opacity.cpp b/src/extension/internal/bitmap/opacity.cpp index a25e99543..bcffbc497 100644 --- a/src/extension/internal/bitmap/opacity.cpp +++ b/src/extension/internal/bitmap/opacity.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/opacity.h b/src/extension/internal/bitmap/opacity.h index 2c3a4ecb3..287b10f8c 100644 --- a/src/extension/internal/bitmap/opacity.h +++ b/src/extension/internal/bitmap/opacity.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/raise.cpp b/src/extension/internal/bitmap/raise.cpp index e85cc747a..55d2d6e7d 100644 --- a/src/extension/internal/bitmap/raise.cpp +++ b/src/extension/internal/bitmap/raise.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/raise.h b/src/extension/internal/bitmap/raise.h index 81a6c65c3..fca23ccb1 100644 --- a/src/extension/internal/bitmap/raise.h +++ b/src/extension/internal/bitmap/raise.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/reduceNoise.cpp b/src/extension/internal/bitmap/reduceNoise.cpp index b0d8b9c2d..43846b816 100644 --- a/src/extension/internal/bitmap/reduceNoise.cpp +++ b/src/extension/internal/bitmap/reduceNoise.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/reduceNoise.h b/src/extension/internal/bitmap/reduceNoise.h index 0a4847d63..f7270db25 100644 --- a/src/extension/internal/bitmap/reduceNoise.h +++ b/src/extension/internal/bitmap/reduceNoise.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/sample.cpp b/src/extension/internal/bitmap/sample.cpp index 081303b73..f75dd966f 100644 --- a/src/extension/internal/bitmap/sample.cpp +++ b/src/extension/internal/bitmap/sample.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/sample.h b/src/extension/internal/bitmap/sample.h index a378229d9..a87929ea8 100644 --- a/src/extension/internal/bitmap/sample.h +++ b/src/extension/internal/bitmap/sample.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/shade.cpp b/src/extension/internal/bitmap/shade.cpp index 927a3a578..1db1ce90f 100644 --- a/src/extension/internal/bitmap/shade.cpp +++ b/src/extension/internal/bitmap/shade.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/shade.h b/src/extension/internal/bitmap/shade.h index 2f8349265..a7580a23c 100644 --- a/src/extension/internal/bitmap/shade.h +++ b/src/extension/internal/bitmap/shade.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/sharpen.cpp b/src/extension/internal/bitmap/sharpen.cpp index d397d46c8..4c9c38d9b 100644 --- a/src/extension/internal/bitmap/sharpen.cpp +++ b/src/extension/internal/bitmap/sharpen.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/sharpen.h b/src/extension/internal/bitmap/sharpen.h index b8f92ddb3..56baff42b 100644 --- a/src/extension/internal/bitmap/sharpen.h +++ b/src/extension/internal/bitmap/sharpen.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/solarize.cpp b/src/extension/internal/bitmap/solarize.cpp index 5f8cdd17c..994f4b48b 100644 --- a/src/extension/internal/bitmap/solarize.cpp +++ b/src/extension/internal/bitmap/solarize.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/solarize.h b/src/extension/internal/bitmap/solarize.h index 4acdf3c5c..8e161c532 100644 --- a/src/extension/internal/bitmap/solarize.h +++ b/src/extension/internal/bitmap/solarize.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/spread.cpp b/src/extension/internal/bitmap/spread.cpp index e38e2a927..87ce35796 100644 --- a/src/extension/internal/bitmap/spread.cpp +++ b/src/extension/internal/bitmap/spread.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/spread.h b/src/extension/internal/bitmap/spread.h index 82d955890..dd6591336 100644 --- a/src/extension/internal/bitmap/spread.h +++ b/src/extension/internal/bitmap/spread.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/swirl.cpp b/src/extension/internal/bitmap/swirl.cpp index 98efa6238..199359f9e 100644 --- a/src/extension/internal/bitmap/swirl.cpp +++ b/src/extension/internal/bitmap/swirl.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/swirl.h b/src/extension/internal/bitmap/swirl.h index b54b83581..320c31214 100644 --- a/src/extension/internal/bitmap/swirl.h +++ b/src/extension/internal/bitmap/swirl.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/threshold.cpp b/src/extension/internal/bitmap/threshold.cpp index 9f10b2c42..0f06c7c79 100644 --- a/src/extension/internal/bitmap/threshold.cpp +++ b/src/extension/internal/bitmap/threshold.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/threshold.h b/src/extension/internal/bitmap/threshold.h index 2e65a7a6f..13221ed33 100644 --- a/src/extension/internal/bitmap/threshold.h +++ b/src/extension/internal/bitmap/threshold.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/unsharpmask.cpp b/src/extension/internal/bitmap/unsharpmask.cpp index c5a7e9291..c54008342 100644 --- a/src/extension/internal/bitmap/unsharpmask.cpp +++ b/src/extension/internal/bitmap/unsharpmask.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/unsharpmask.h b/src/extension/internal/bitmap/unsharpmask.h index 5d3a47ecf..29c0c4253 100644 --- a/src/extension/internal/bitmap/unsharpmask.h +++ b/src/extension/internal/bitmap/unsharpmask.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bitmap/wave.cpp b/src/extension/internal/bitmap/wave.cpp index 1ccaa1d5e..c3a81a4e0 100644 --- a/src/extension/internal/bitmap/wave.cpp +++ b/src/extension/internal/bitmap/wave.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/effect.h" diff --git a/src/extension/internal/bitmap/wave.h b/src/extension/internal/bitmap/wave.h index 5bbde9e48..d88ce68d6 100644 --- a/src/extension/internal/bitmap/wave.h +++ b/src/extension/internal/bitmap/wave.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 Authors: * Christopher Brown <audiere@gmail.com> * Ted Gould <ted@gould.cx> - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "imagemagick.h" diff --git a/src/extension/internal/bluredge.cpp b/src/extension/internal/bluredge.cpp index 150dce195..42fb067b6 100644 --- a/src/extension/internal/bluredge.cpp +++ b/src/extension/internal/bluredge.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file bluredge.cpp - - A plug-in to add an effect to blur the edges of an object. + + A plug-in to add an effect to blur the edges of an object. */ /* * Authors: @@ -9,7 +10,7 @@ * * Copyright (C) 2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <vector> diff --git a/src/extension/internal/bluredge.h b/src/extension/internal/bluredge.h index ceeace555..b74b7535b 100644 --- a/src/extension/internal/bluredge.h +++ b/src/extension/internal/bluredge.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/implementation/implementation.h" diff --git a/src/extension/internal/cairo-png-out.cpp b/src/extension/internal/cairo-png-out.cpp index c7cb9aff5..446e593ca 100644 --- a/src/extension/internal/cairo-png-out.cpp +++ b/src/extension/internal/cairo-png-out.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A quick hack to use the Cairo renderer to write out a file. This * then makes 'save as...' PNG. @@ -10,7 +11,7 @@ * * Copyright (C) 2004-2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/extension/internal/cairo-png-out.h b/src/extension/internal/cairo-png-out.h index d59bf5407..12ebdae64 100644 --- a/src/extension/internal/cairo-png-out.h +++ b/src/extension/internal/cairo-png-out.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A quick hack to use the print output to write out a file. This * then makes 'save as...' PNG. @@ -8,7 +9,7 @@ * * Copyright (C) 2004-2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef EXTENSION_INTERNAL_CAIRO_PNG_OUT_H diff --git a/src/extension/internal/cairo-ps-out.cpp b/src/extension/internal/cairo-ps-out.cpp index 8604c2ca7..ed5be808c 100644 --- a/src/extension/internal/cairo-ps-out.cpp +++ b/src/extension/internal/cairo-ps-out.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A quick hack to use the Cairo renderer to write out a file. This * then makes 'save as...' PS. @@ -11,7 +12,7 @@ * * Copyright (C) 2004-2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/extension/internal/cairo-ps-out.h b/src/extension/internal/cairo-ps-out.h index 3b8df6334..b0e14e5a8 100644 --- a/src/extension/internal/cairo-ps-out.h +++ b/src/extension/internal/cairo-ps-out.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A quick hack to use the print output to write out a file. This * then makes 'save as...' PS. @@ -10,7 +11,7 @@ * * Copyright (C) 2004-2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef EXTENSION_INTERNAL_CAIRO_PS_OUT_H diff --git a/src/extension/internal/cairo-render-context.cpp b/src/extension/internal/cairo-render-context.cpp index 5e4a64e7d..ff375dcb9 100644 --- a/src/extension/internal/cairo-render-context.cpp +++ b/src/extension/internal/cairo-render-context.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Rendering with Cairo. */ @@ -9,7 +10,7 @@ * * Copyright (C) 2006 Miklos Erdelyi * - * Licensed under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H @@ -1934,8 +1935,6 @@ _write_callback(void *closure, const unsigned char *data, unsigned int length) #undef TRACE #undef TEST -/* End of GNU GPL code */ - /* Local Variables: diff --git a/src/extension/internal/cairo-render-context.h b/src/extension/internal/cairo-render-context.h index fe9ab7221..57b4926a3 100644 --- a/src/extension/internal/cairo-render-context.h +++ b/src/extension/internal/cairo-render-context.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef EXTENSION_INTERNAL_CAIRO_RENDER_CONTEXT_H_SEEN #define EXTENSION_INTERNAL_CAIRO_RENDER_CONTEXT_H_SEEN @@ -10,7 +11,7 @@ * * Copyright (C) 2006 Miklos Erdelyi * - * Licensed under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/extension.h" diff --git a/src/extension/internal/cairo-renderer-pdf-out.cpp b/src/extension/internal/cairo-renderer-pdf-out.cpp index ab5aaa7e5..d2e96e31a 100644 --- a/src/extension/internal/cairo-renderer-pdf-out.cpp +++ b/src/extension/internal/cairo-renderer-pdf-out.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A quick hack to use the Cairo renderer to write out a file. This * then makes 'save as...' PDF. @@ -11,7 +12,7 @@ * * Copyright (C) 2004-2010 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/extension/internal/cairo-renderer-pdf-out.h b/src/extension/internal/cairo-renderer-pdf-out.h index 7fb93f9d1..c69b86ef6 100644 --- a/src/extension/internal/cairo-renderer-pdf-out.h +++ b/src/extension/internal/cairo-renderer-pdf-out.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A quick hack to use the Cairo renderer to write out a file. This * then makes 'save as...' PDF. @@ -8,7 +9,7 @@ * * Copyright (C) 2004-2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef EXTENSION_INTERNAL_CAIRO_RENDERER_PDF_OUT_H diff --git a/src/extension/internal/cairo-renderer.cpp b/src/extension/internal/cairo-renderer.cpp index c7d4a5bde..3f045f42b 100644 --- a/src/extension/internal/cairo-renderer.cpp +++ b/src/extension/internal/cairo-renderer.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Rendering with Cairo. */ @@ -9,7 +10,7 @@ * * Copyright (C) 2006 Miklos Erdelyi * - * Licensed under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H @@ -841,7 +842,6 @@ calculatePreserveAspectRatio(unsigned int aspect_align, unsigned int aspect_clip #undef TRACE -/* End of GNU GPL code */ /* Local Variables: diff --git a/src/extension/internal/cairo-renderer.h b/src/extension/internal/cairo-renderer.h index f93cb4f5f..d70f8f551 100644 --- a/src/extension/internal/cairo-renderer.h +++ b/src/extension/internal/cairo-renderer.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef EXTENSION_INTERNAL_CAIRO_RENDERER_H_SEEN #define EXTENSION_INTERNAL_CAIRO_RENDERER_H_SEEN @@ -10,8 +11,8 @@ * Abhishek Sharma * * Copyright (C) 2006 Miklos Erdelyi - * - * Licensed under GNU GPL + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/extension.h" diff --git a/src/extension/internal/cdr-input.cpp b/src/extension/internal/cdr-input.cpp index 851ca16a6..adb7dbf7b 100644 --- a/src/extension/internal/cdr-input.cpp +++ b/src/extension/internal/cdr-input.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This file came from libwpg as a source, their utility wpg2svg * specifically. It has been modified to work as an Inkscape extension. @@ -9,7 +10,7 @@ * * Copyright (C) 2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * */ diff --git a/src/extension/internal/cdr-input.h b/src/extension/internal/cdr-input.h index fbc27c1a4..546151fac 100644 --- a/src/extension/internal/cdr-input.h +++ b/src/extension/internal/cdr-input.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This code abstracts the libwpg interfaces into the Inkscape * input extension interface. @@ -7,7 +8,7 @@ * * Copyright (C) 2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __EXTENSION_INTERNAL_CDROUTPUT_H__ diff --git a/src/extension/internal/clear-n_.h b/src/extension/internal/clear-n_.h index 21017f9dd..ecd8eaaa7 100644 --- a/src/extension/internal/clear-n_.h +++ b/src/extension/internal/clear-n_.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file clear-n_.h - + A way to clear the N_ macro, which is defined as an inline function. - Unfortunately, this makes it so it is hard to use in static strings - where you only want to translate a small part. Including this - turns it back into a a macro. + Unfortunately, this makes it so it is hard to use in static strings + where you only want to translate a small part. Including this + turns it back into a a macro. */ /* * Authors: @@ -12,7 +13,7 @@ * * Copyright (C) 2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef N_ diff --git a/src/extension/internal/emf-inout.cpp b/src/extension/internal/emf-inout.cpp index 44625ac5d..0f96b4583 100644 --- a/src/extension/internal/emf-inout.cpp +++ b/src/extension/internal/emf-inout.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Windows-only Enhanced Metafile input and output. */ @@ -9,7 +10,7 @@ * * Copyright (C) 2006-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * * References: * - How to Create & Play Enhanced Metafiles in Win32 diff --git a/src/extension/internal/emf-inout.h b/src/extension/internal/emf-inout.h index c365495d5..1891e8b5e 100644 --- a/src/extension/internal/emf-inout.h +++ b/src/extension/internal/emf-inout.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Enhanced Metafile Input/Output */ @@ -7,7 +8,7 @@ * * Copyright (C) 2006-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_EXTENSION_INTERNAL_EMF_H #define SEEN_EXTENSION_INTERNAL_EMF_H diff --git a/src/extension/internal/emf-print.cpp b/src/extension/internal/emf-print.cpp index ded78cb60..41f44e738 100644 --- a/src/extension/internal/emf-print.cpp +++ b/src/extension/internal/emf-print.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Enhanced Metafile printing *//* @@ -9,7 +10,7 @@ * * Copyright (C) 2006-2009 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * * References: * - How to Create & Play Enhanced Metafiles in Win32 diff --git a/src/extension/internal/emf-print.h b/src/extension/internal/emf-print.h index 683cdfc28..e48e332dd 100644 --- a/src/extension/internal/emf-print.h +++ b/src/extension/internal/emf-print.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Enhanced Metafile printing - implementation */ @@ -7,7 +8,7 @@ * * Copyright (C) 2006-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_EMF_PRINT_H #define SEEN_INKSCAPE_EXTENSION_INTERNAL_EMF_PRINT_H diff --git a/src/extension/internal/filter/bevels.h b/src/extension/internal/filter/bevels.h index 3670fc6c5..767e4e907 100644 --- a/src/extension/internal/filter/bevels.h +++ b/src/extension/internal/filter/bevels.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_BEVELS_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_BEVELS_H__ /* Change the 'BEVELS' above to be your file name */ @@ -12,7 +13,7 @@ * Matte jelly * Specular light * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/blurs.h b/src/extension/internal/filter/blurs.h index ac87bc539..7db128b7c 100644 --- a/src/extension/internal/filter/blurs.h +++ b/src/extension/internal/filter/blurs.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_BLURS_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_BLURS_H__ /* Change the 'BLURS' above to be your file name */ @@ -14,7 +15,7 @@ * Feather * Out of focus * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/bumps.h b/src/extension/internal/filter/bumps.h index b8e887c26..bcde76542 100644 --- a/src/extension/internal/filter/bumps.h +++ b/src/extension/internal/filter/bumps.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_BUMPS_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_BUMPS_H__ /* Change the 'BUMPS' above to be your file name */ @@ -11,7 +12,7 @@ * Bump * Wax bump * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/color.h b/src/extension/internal/filter/color.h index fc1948853..a98311e38 100644 --- a/src/extension/internal/filter/color.h +++ b/src/extension/internal/filter/color.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_COLOR_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_COLOR_H__ /* Change the 'COLOR' above to be your file name */ @@ -28,7 +29,7 @@ * Solarize * Tritone * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/distort.h b/src/extension/internal/filter/distort.h index f677e334a..fffa3fbec 100644 --- a/src/extension/internal/filter/distort.h +++ b/src/extension/internal/filter/distort.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_DISTORT_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_DISTORT_H__ /* Change the 'DISTORT' above to be your file name */ @@ -11,7 +12,7 @@ * Felt Feather * Roughen * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/filter-all.cpp b/src/extension/internal/filter/filter-all.cpp index 3f1d2fb97..5aa3900b0 100644 --- a/src/extension/internal/filter/filter-all.cpp +++ b/src/extension/internal/filter/filter-all.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2008 Authors: * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "filter.h" diff --git a/src/extension/internal/filter/filter-file.cpp b/src/extension/internal/filter/filter-file.cpp index d95bbf184..df0855076 100644 --- a/src/extension/internal/filter/filter-file.cpp +++ b/src/extension/internal/filter/filter-file.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2008 Authors: * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "filter.h" diff --git a/src/extension/internal/filter/filter.cpp b/src/extension/internal/filter/filter.cpp index ab1025ffa..0859bb6ff 100644 --- a/src/extension/internal/filter/filter.cpp +++ b/src/extension/internal/filter/filter.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "desktop.h" diff --git a/src/extension/internal/filter/filter.h b/src/extension/internal/filter/filter.h index 0df8b0251..35a73900c 100644 --- a/src/extension/internal/filter/filter.h +++ b/src/extension/internal/filter/filter.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_EXTENSION_INTERNAL_FILTER_FILTER_H #define INKSCAPE_EXTENSION_INTERNAL_FILTER_FILTER_H @@ -5,7 +6,7 @@ * Copyright (C) 2008 Authors: * Ted Gould <ted@gould.cx> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/extension/internal/filter/image.h b/src/extension/internal/filter/image.h index 2c715768c..e9dcb1d8e 100644 --- a/src/extension/internal/filter/image.h +++ b/src/extension/internal/filter/image.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_IMAGE_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_IMAGE_H__ /* Change the 'IMAGE' above to be your file name */ @@ -10,7 +11,7 @@ * Image filters * Edge detect * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/morphology.h b/src/extension/internal/filter/morphology.h index 49df9c2a6..fc71b6ea2 100644 --- a/src/extension/internal/filter/morphology.h +++ b/src/extension/internal/filter/morphology.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_MORPHOLOGY_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_MORPHOLOGY_H__ /* Change the 'MORPHOLOGY' above to be your file name */ @@ -11,7 +12,7 @@ * Cross-smooth * Outline * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/overlays.h b/src/extension/internal/filter/overlays.h index b451ec65d..0dbf79db8 100644 --- a/src/extension/internal/filter/overlays.h +++ b/src/extension/internal/filter/overlays.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_OVERLAYS_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_OVERLAYS_H__ /* Change the 'OVERLAYS' above to be your file name */ @@ -10,7 +11,7 @@ * Overlays filters * Noise fill * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/paint.h b/src/extension/internal/filter/paint.h index afa3b5b12..06a05f167 100644 --- a/src/extension/internal/filter/paint.h +++ b/src/extension/internal/filter/paint.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_PAINT_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_PAINT_H__ /* Change the 'PAINT' above to be your file name */ @@ -17,7 +18,7 @@ * Posterize * Posterize basic * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/protrusions.h b/src/extension/internal/filter/protrusions.h index 8df7924ca..1934f93f3 100644 --- a/src/extension/internal/filter/protrusions.h +++ b/src/extension/internal/filter/protrusions.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_PROTRUSIONS_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_PROTRUSIONS_H__ /* Change the 'PROTRUSIONS' above to be your file name */ @@ -12,7 +13,7 @@ * Protrusion filters * Snow * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/shadows.h b/src/extension/internal/filter/shadows.h index 18ee53158..79e6e8712 100644 --- a/src/extension/internal/filter/shadows.h +++ b/src/extension/internal/filter/shadows.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_SHADOWS_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_SHADOWS_H__ /* Change the 'SHADOWS' above to be your file name */ @@ -10,7 +11,7 @@ * Shadow filters * Drop shadow * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/textures.h b/src/extension/internal/filter/textures.h index d7108c552..31e76df6c 100644 --- a/src/extension/internal/filter/textures.h +++ b/src/extension/internal/filter/textures.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_TEXTURES_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_TEXTURES_H__ /* Change the 'TEXTURES' above to be your file name */ @@ -10,7 +11,7 @@ * Protrusion filters * Ink blot * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/filter/transparency.h b/src/extension/internal/filter/transparency.h index 68388fc06..2fb02a01a 100644 --- a/src/extension/internal/filter/transparency.h +++ b/src/extension/internal/filter/transparency.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_TRANSPARENCY_H__ #define SEEN_INKSCAPE_EXTENSION_INTERNAL_FILTER_TRANSPARENCY_H__ /* Change the 'TRANSPARENCY' above to be your file name */ @@ -14,7 +15,7 @@ * Opacity * Silhouette * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* ^^^ Change the copyright to be you and your e-mail address ^^^ */ diff --git a/src/extension/internal/gdkpixbuf-input.cpp b/src/extension/internal/gdkpixbuf-input.cpp index e3c7f1f89..26d5a3b85 100644 --- a/src/extension/internal/gdkpixbuf-input.cpp +++ b/src/extension/internal/gdkpixbuf-input.cpp @@ -1,3 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + #include <set> #include <gdk-pixbuf/gdk-pixbuf.h> diff --git a/src/extension/internal/gdkpixbuf-input.h b/src/extension/internal/gdkpixbuf-input.h index 347277e90..198070025 100644 --- a/src/extension/internal/gdkpixbuf-input.h +++ b/src/extension/internal/gdkpixbuf-input.h @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifndef INKSCAPE_EXTENSION_INTERNAL_GDKPIXBUF_INPUT_H #define INKSCAPE_EXTENSION_INTERNAL_GDKPIXBUF_INPUT_H diff --git a/src/extension/internal/gimpgrad.cpp b/src/extension/internal/gimpgrad.cpp index 4110fc8ad..b5a95441c 100644 --- a/src/extension/internal/gimpgrad.cpp +++ b/src/extension/internal/gimpgrad.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Inkscape::Extension::Internal::GimpGrad implementation */ @@ -9,7 +10,7 @@ * * Copyright (C) 2004-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <color-rgba.h> diff --git a/src/extension/internal/gimpgrad.h b/src/extension/internal/gimpgrad.h index 790c43b75..8daadefeb 100644 --- a/src/extension/internal/gimpgrad.h +++ b/src/extension/internal/gimpgrad.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2004-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ // TODO add include guard #include <glibmm/ustring.h> diff --git a/src/extension/internal/grid.cpp b/src/extension/internal/grid.cpp index 03bc8eb06..89881fa0b 100644 --- a/src/extension/internal/grid.cpp +++ b/src/extension/internal/grid.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file grid.cpp @@ -8,7 +9,7 @@ * Copyright (C) 2007 MenTaLguY <mental@rydia.net> * Abhishek Sharma * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/extension/internal/grid.h b/src/extension/internal/grid.h index 950615ce2..16f4cd76e 100644 --- a/src/extension/internal/grid.h +++ b/src/extension/internal/grid.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2004-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/implementation/implementation.h" diff --git a/src/extension/internal/image-resolution.cpp b/src/extension/internal/image-resolution.cpp index d1618d3b5..3ca596c27 100644 --- a/src/extension/internal/image-resolution.cpp +++ b/src/extension/internal/image-resolution.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Daniel Wagenaar <daw@caltech.edu> * * Copyright (C) 2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/extension/internal/image-resolution.h b/src/extension/internal/image-resolution.h index 6c4928a35..ad69df031 100644 --- a/src/extension/internal/image-resolution.h +++ b/src/extension/internal/image-resolution.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Daniel Wagenaar <daw@caltech.edu> * * Copyright (C) 2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/extension/internal/javafx-out.cpp b/src/extension/internal/javafx-out.cpp index cc5fc12bb..1c592d354 100644 --- a/src/extension/internal/javafx-out.cpp +++ b/src/extension/internal/javafx-out.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple utility for exporting Inkscape svg Shapes as JavaFX paths. * @@ -13,7 +14,7 @@ * * Copyright (C) 2008,2009 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/miscutils.h> diff --git a/src/extension/internal/javafx-out.h b/src/extension/internal/javafx-out.h index f6035f7c3..594886004 100644 --- a/src/extension/internal/javafx-out.h +++ b/src/extension/internal/javafx-out.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple utility for exporting an Inkscape svg image as a JavaFX * scene tree. @@ -9,7 +10,7 @@ * * Copyright (C) 2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef EXTENSION_INTERNAL_JAVAFX_OUT_H diff --git a/src/extension/internal/latex-pstricks-out.cpp b/src/extension/internal/latex-pstricks-out.cpp index ef11f3b1a..5bc4e8d24 100644 --- a/src/extension/internal/latex-pstricks-out.cpp +++ b/src/extension/internal/latex-pstricks-out.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Michael Forbes <miforbes@mbhs.edu> @@ -6,7 +7,7 @@ * * Copyright (C) 2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "latex-pstricks-out.h" diff --git a/src/extension/internal/latex-pstricks-out.h b/src/extension/internal/latex-pstricks-out.h index b34d5c321..670904b10 100644 --- a/src/extension/internal/latex-pstricks-out.h +++ b/src/extension/internal/latex-pstricks-out.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * * Authors: @@ -5,7 +6,7 @@ * * Copyright (C) 2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef EXTENSION_INTERNAL_LATEX_OUT_H diff --git a/src/extension/internal/latex-pstricks.cpp b/src/extension/internal/latex-pstricks.cpp index 46bae094b..e8bee1981 100644 --- a/src/extension/internal/latex-pstricks.cpp +++ b/src/extension/internal/latex-pstricks.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * LaTeX Printing * @@ -6,8 +7,8 @@ * Abhishek Sharma * * Copyright (C) 2004 Authors - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <2geom/pathvector.h> diff --git a/src/extension/internal/latex-pstricks.h b/src/extension/internal/latex-pstricks.h index 50ec8560a..37d08b821 100644 --- a/src/extension/internal/latex-pstricks.h +++ b/src/extension/internal/latex-pstricks.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __INKSCAPE_EXTENSION_INTERNAL_PRINT_LATEX_H__ #define __INKSCAPE_EXTENSION_INTERNAL_PRINT_LATEX_H__ @@ -6,10 +7,10 @@ * * Author: * Michael Forbes <miforbes@mbhs.edu> - * + * * Copyright (C) 2004 Authors - * - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <stack> diff --git a/src/extension/internal/latex-text-renderer.cpp b/src/extension/internal/latex-text-renderer.cpp index 665e402d0..58f5476fd 100644 --- a/src/extension/internal/latex-text-renderer.cpp +++ b/src/extension/internal/latex-text-renderer.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Rendering LaTeX file (pdf/eps/ps+latex output) * @@ -12,7 +13,7 @@ * * Copyright (C) 2006-2011 Authors * - * Licensed under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "latex-text-renderer.h" diff --git a/src/extension/internal/latex-text-renderer.h b/src/extension/internal/latex-text-renderer.h index f011f6f29..a96a2631a 100644 --- a/src/extension/internal/latex-text-renderer.h +++ b/src/extension/internal/latex-text-renderer.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef EXTENSION_INTERNAL_LATEX_TEXT_RENDERER_H_SEEN #define EXTENSION_INTERNAL_LATEX_TEXT_RENDERER_H_SEEN @@ -9,8 +10,8 @@ * Johan Engelen <goejendaagh@zonnet.nl> * * Copyright (C) 2010 Authors - * - * Licensed under GNU GPL + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension/extension.h" diff --git a/src/extension/internal/metafile-inout.cpp b/src/extension/internal/metafile-inout.cpp index a9f738f1f..ea4acb198 100644 --- a/src/extension/internal/metafile-inout.cpp +++ b/src/extension/internal/metafile-inout.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Metafile input - common routines *//* @@ -5,7 +6,7 @@ * David Mathog * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstring> diff --git a/src/extension/internal/metafile-inout.h b/src/extension/internal/metafile-inout.h index e3af76045..c742a64df 100644 --- a/src/extension/internal/metafile-inout.h +++ b/src/extension/internal/metafile-inout.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Metafile input - common functions *//* @@ -5,7 +6,7 @@ * David Mathog * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_METAFILE_INOUT_H diff --git a/src/extension/internal/metafile-print.cpp b/src/extension/internal/metafile-print.cpp index 823060f1a..6270f63e4 100644 --- a/src/extension/internal/metafile-print.cpp +++ b/src/extension/internal/metafile-print.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Metafile printing - common routines *//* @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstring> diff --git a/src/extension/internal/metafile-print.h b/src/extension/internal/metafile-print.h index d7bcf330c..d3f525d7e 100644 --- a/src/extension/internal/metafile-print.h +++ b/src/extension/internal/metafile-print.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Metafile printing - common functions *//* @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_METAFILE_PRINT_H diff --git a/src/extension/internal/odf.cpp b/src/extension/internal/odf.cpp index ae4dfc47c..ee3da99b4 100644 --- a/src/extension/internal/odf.cpp +++ b/src/extension/internal/odf.cpp @@ -1,6 +1,16 @@ -/* - * OpenDocument <drawing> input and output +// SPDX-License-Identifier: LGPL-2.1-or-later +/** @file + * OpenDocument (drawing) input and output + *//* + * Authors: + * Bob Jamison + * Abhishek Sharma + * Kris De Gussem * + * Copyright (C) 2018 Authors + * Released under GNU LGPL v2.1+, read the file 'COPYING' for more information. + */ +/* * This is an an entry in the extensions mechanism to begin to enable * the inputting and outputting of OpenDocument Format (ODF) files from * within Inkscape. Although the initial implementations will be very lossy @@ -12,27 +22,6 @@ * * http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/idl-definitions.html * - * Authors: - * Bob Jamison - * Abhishek Sharma - * Kris De Gussem - * - * Copyright (C) 2006, 2007 Bob Jamison - * Copyright (C) 2013 Kris De Gussem - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "odf.h" diff --git a/src/extension/internal/odf.h b/src/extension/internal/odf.h index a1aca3531..2745d70f0 100644 --- a/src/extension/internal/odf.h +++ b/src/extension/internal/odf.h @@ -1,23 +1,13 @@ -/* +// SPDX-License-Identifier: LGPL-2.1-or-later +/** @file + * OpenDocument (drawing) input and output + *//* * Authors: * Bob Jamison * Abhishek Sharma * - * Copyright (C) 2006 Bob Jamison - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * Copyright (C) 2018 Authors + * Released under GNU LGPL v2.1+, read the file 'COPYING' for more information. */ #ifndef EXTENSION_INTERNAL_ODG_OUT_H diff --git a/src/extension/internal/pdfinput/pdf-input.cpp b/src/extension/internal/pdfinput/pdf-input.cpp index 1c9dd9223..8b4cc5aa7 100644 --- a/src/extension/internal/pdfinput/pdf-input.cpp +++ b/src/extension/internal/pdfinput/pdf-input.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Native PDF import using libpoppler. * @@ -7,7 +8,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * */ diff --git a/src/extension/internal/pdfinput/pdf-input.h b/src/extension/internal/pdfinput/pdf-input.h index ecd996632..ab9a928a2 100644 --- a/src/extension/internal/pdfinput/pdf-input.h +++ b/src/extension/internal/pdfinput/pdf-input.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_EXTENSION_INTERNAL_PDFINPUT_H #define SEEN_EXTENSION_INTERNAL_PDFINPUT_H @@ -7,7 +8,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/extension/internal/pdfinput/pdf-parser.cpp b/src/extension/internal/pdfinput/pdf-parser.cpp index bc7ad8a6e..1f609377f 100644 --- a/src/extension/internal/pdfinput/pdf-parser.cpp +++ b/src/extension/internal/pdfinput/pdf-parser.cpp @@ -1,14 +1,13 @@ - /* +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file * PDF parsing using libpoppler. - * - * Derived from poppler's Gfx.cc - * + *//* * Authors: - * Jon A. Cruz <jon@joncruz.org> - * - * Copyright 2012 authors - * Copyright 1996-2003 Glyph & Cog, LLC + * Derived from poppler's Gfx.cc, which was derived from Xpdf by 1996-2003 Glyph & Cog, LLC + * Jon A. Cruz <jon@joncruz.org> * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/extension/internal/pdfinput/pdf-parser.h b/src/extension/internal/pdfinput/pdf-parser.h index 2414bd376..2d4441a22 100644 --- a/src/extension/internal/pdfinput/pdf-parser.h +++ b/src/extension/internal/pdfinput/pdf-parser.h @@ -1,8 +1,14 @@ - /* - * Derived from Gfx.h - * - * Copyright 1996-2003 Glyph & Cog, LLC +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * PDF parsing using libpoppler. + *//* + * Authors: + * see git history + * + * Derived from Gfx.h from poppler (?) which derives from Xpdf, Copyright 1996-2003 Glyph & Cog, LLC, which is under GPL2+. * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef PDF_PARSER_H diff --git a/src/extension/internal/pdfinput/poppler-transition-api.h b/src/extension/internal/pdfinput/poppler-transition-api.h index 443705259..5141bf8a7 100644 --- a/src/extension/internal/pdfinput/poppler-transition-api.h +++ b/src/extension/internal/pdfinput/poppler-transition-api.h @@ -1,3 +1,14 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO short description + *//* + * Authors: + * see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + #ifndef SEEN_POPPLER_TRANSITION_API_H #define SEEN_POPPLER_TRANSITION_API_H diff --git a/src/extension/internal/pdfinput/svg-builder.cpp b/src/extension/internal/pdfinput/svg-builder.cpp index 481e1b95d..373df6a39 100644 --- a/src/extension/internal/pdfinput/svg-builder.cpp +++ b/src/extension/internal/pdfinput/svg-builder.cpp @@ -1,13 +1,14 @@ - /* +// SPDX-License-Identifier: GPL-2.0-or-later +/* * Native PDF import using libpoppler. - * + * * Authors: * miklos erdelyi * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * */ diff --git a/src/extension/internal/pdfinput/svg-builder.h b/src/extension/internal/pdfinput/svg-builder.h index c61f2cc40..8168617f6 100644 --- a/src/extension/internal/pdfinput/svg-builder.h +++ b/src/extension/internal/pdfinput/svg-builder.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_EXTENSION_INTERNAL_PDFINPUT_SVGBUILDER_H #define SEEN_EXTENSION_INTERNAL_PDFINPUT_SVGBUILDER_H @@ -7,7 +8,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/extension/internal/pov-out.cpp b/src/extension/internal/pov-out.cpp index 458e68f1d..7ee8cd235 100644 --- a/src/extension/internal/pov-out.cpp +++ b/src/extension/internal/pov-out.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple utility for exporting Inkscape svg Shapes as PovRay bezier * prisms. Note that this is output-only, and would thus seem to be @@ -14,7 +15,7 @@ * * Copyright (C) 2004-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "pov-out.h" diff --git a/src/extension/internal/pov-out.h b/src/extension/internal/pov-out.h index d4f7991e7..3dee88be8 100644 --- a/src/extension/internal/pov-out.h +++ b/src/extension/internal/pov-out.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple utility for exporting Inkscape svg Shapes as PovRay bezier * prisms. Note that this is output-only, and would thus seem to be @@ -10,7 +11,7 @@ * * Copyright (C) 2004-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef EXTENSION_INTERNAL_POV_OUT_H diff --git a/src/extension/internal/svg.cpp b/src/extension/internal/svg.cpp index 4d6a24b40..e45966afa 100644 --- a/src/extension/internal/svg.cpp +++ b/src/extension/internal/svg.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This is the code that moves all of the SVG loading and saving into * the module format. Really Inkscape is built to handle these formats @@ -11,7 +12,7 @@ * * Copyright (C) 2002-2003 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/extension/internal/svg.h b/src/extension/internal/svg.h index 17f3f7bb2..1eb4f51e8 100644 --- a/src/extension/internal/svg.h +++ b/src/extension/internal/svg.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This is the code that moves all of the SVG loading and saving into * the module format. Really Sodipodi is built to handle these formats @@ -9,7 +10,7 @@ * * Copyright (C) 2002-2003 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __SVG_H__ diff --git a/src/extension/internal/svgz.cpp b/src/extension/internal/svgz.cpp index 9b5a7ff08..18b6e5b02 100644 --- a/src/extension/internal/svgz.cpp +++ b/src/extension/internal/svgz.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Code to handle compressed SVG loading and saving. Almost identical to svg * routines, but separated for simpler extension maintenance. @@ -9,7 +10,7 @@ * * Copyright (C) 2002-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "svgz.h" diff --git a/src/extension/internal/svgz.h b/src/extension/internal/svgz.h index 2b917968e..e923c4ce1 100644 --- a/src/extension/internal/svgz.h +++ b/src/extension/internal/svgz.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Code to handle compressed SVG loading and saving. Almost identical to svg * routines, but separated for simpler extension maintenance. @@ -9,7 +10,7 @@ * * Copyright (C) 2002-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_SVGZ_H diff --git a/src/extension/internal/text_reassemble.c b/src/extension/internal/text_reassemble.c index 397a0c4d3..9fdd0a578 100644 --- a/src/extension/internal/text_reassemble.c +++ b/src/extension/internal/text_reassemble.c @@ -1,3 +1,15 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * text_reassemble.c from libTERE + *//* + * Authors: see below + * + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2.0+, read the file 'COPYING' for more information. + */ + + /** @file text_reassemble.c diff --git a/src/extension/internal/text_reassemble.h b/src/extension/internal/text_reassemble.h index 1c6c17c78..b4e870295 100644 --- a/src/extension/internal/text_reassemble.h +++ b/src/extension/internal/text_reassemble.h @@ -1,3 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * text_reassemble.h from libTERE + *//* + * Authors: see below + * + * + * Copyright (C) 2017 Authors + * Released under GNU GPL v2.0+, read the file 'COPYING' for more information. + */ /** @file text_reassemble.h libTERE headers. diff --git a/src/extension/internal/vsd-input.cpp b/src/extension/internal/vsd-input.cpp index eb3dde3f4..a70a590a0 100644 --- a/src/extension/internal/vsd-input.cpp +++ b/src/extension/internal/vsd-input.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This file came from libwpg as a source, their utility wpg2svg * specifically. It has been modified to work as an Inkscape extension. @@ -9,7 +10,7 @@ * * Copyright (C) 2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * */ diff --git a/src/extension/internal/vsd-input.h b/src/extension/internal/vsd-input.h index 972c2d489..f30c905f6 100644 --- a/src/extension/internal/vsd-input.h +++ b/src/extension/internal/vsd-input.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This code abstracts the libwpg interfaces into the Inkscape * input extension interface. @@ -7,7 +8,7 @@ * * Copyright (C) 2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __EXTENSION_INTERNAL_VSDOUTPUT_H__ diff --git a/src/extension/internal/wmf-inout.cpp b/src/extension/internal/wmf-inout.cpp index 2e4b39299..4db33f550 100644 --- a/src/extension/internal/wmf-inout.cpp +++ b/src/extension/internal/wmf-inout.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Windows-only Enhanced Metafile input and output. */ @@ -9,7 +10,7 @@ * * Copyright (C) 2006-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * * References: * - How to Create & Play Enhanced Metafiles in Win32 diff --git a/src/extension/internal/wmf-inout.h b/src/extension/internal/wmf-inout.h index 4ec3a98eb..6190129de 100644 --- a/src/extension/internal/wmf-inout.h +++ b/src/extension/internal/wmf-inout.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Windows Metafile Input/Output */ @@ -6,7 +7,7 @@ * * Copyright (C) 2006-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_EXTENSION_INTERNAL_WMF_H #define SEEN_EXTENSION_INTERNAL_WMF_H diff --git a/src/extension/internal/wmf-print.cpp b/src/extension/internal/wmf-print.cpp index 2c84fd9c8..1604a8d48 100644 --- a/src/extension/internal/wmf-print.cpp +++ b/src/extension/internal/wmf-print.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Windows Metafile printing */ @@ -9,7 +10,7 @@ * * Copyright (C) 2006-2009 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* * References: diff --git a/src/extension/internal/wmf-print.h b/src/extension/internal/wmf-print.h index 4f2de2f96..92f5577f3 100644 --- a/src/extension/internal/wmf-print.h +++ b/src/extension/internal/wmf-print.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Windows Metafile printing - implementation */ @@ -6,7 +7,7 @@ * * Copyright (C) 2006-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_EXTENSION_INTERNAL_WMF_PRINT_H #define SEEN_INKSCAPE_EXTENSION_INTERNAL_WMF_PRINT_H diff --git a/src/extension/internal/wpg-input.cpp b/src/extension/internal/wpg-input.cpp index 2f25481a0..2041cd22e 100644 --- a/src/extension/internal/wpg-input.cpp +++ b/src/extension/internal/wpg-input.cpp @@ -1,4 +1,5 @@ -/* +// SPDX-License-Identifier: GPL-2.0-or-later +/* * This file came from libwpg as a source, their utility wpg2svg * specifically. It has been modified to work as an Inkscape extension. * The Inkscape extension code is covered by this copyright, but the @@ -10,7 +11,7 @@ * * Copyright (C) 2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * */ diff --git a/src/extension/internal/wpg-input.h b/src/extension/internal/wpg-input.h index c81396ffc..67e4d9185 100644 --- a/src/extension/internal/wpg-input.h +++ b/src/extension/internal/wpg-input.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This code abstracts the libwpg interfaces into the Inkscape * input extension interface. @@ -7,7 +8,7 @@ * * Copyright (C) 2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __EXTENSION_INTERNAL_WPGOUTPUT_H__ diff --git a/src/extension/loader.cpp b/src/extension/loader.cpp index fc9b7ee29..a9270c43c 100644 --- a/src/extension/loader.cpp +++ b/src/extension/loader.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Loader for external plug-ins. * @@ -6,7 +7,7 @@ * * Copyright (C) 2016 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "loader.h" diff --git a/src/extension/loader.h b/src/extension/loader.h index 0eecc02b9..65e5885f6 100644 --- a/src/extension/loader.h +++ b/src/extension/loader.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Loader for external plug-ins. *//* @@ -7,7 +8,7 @@ * * Copyright (C) 2016 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_LOADER_H_ diff --git a/src/extension/output.cpp b/src/extension/output.cpp index e863c77fc..c6cf399b8 100644 --- a/src/extension/output.cpp +++ b/src/extension/output.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> @@ -5,7 +6,7 @@ * Copyright (C) 2006 Johan Engelen <johan@shouraizou.nl> * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "prefdialog.h" diff --git a/src/extension/output.h b/src/extension/output.h index a67a3cc30..5ce27a265 100644 --- a/src/extension/output.h +++ b/src/extension/output.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> @@ -5,7 +6,7 @@ * Copyright (C) 2006 Johan Engelen <johan@shouraizou.nl> * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/extension/param/bool.cpp b/src/extension/param/bool.cpp index 1ba9f6633..10121f7ab 100644 --- a/src/extension/param/bool.cpp +++ b/src/extension/param/bool.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2005-2007 Authors: * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * * Jon A. Cruz <jon@joncruz.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/adjustment.h> diff --git a/src/extension/param/bool.h b/src/extension/param/bool.h index f987621d5..9864cac38 100644 --- a/src/extension/param/bool.h +++ b/src/extension/param/bool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INK_EXTENSION_PARAMBOOL_H #define SEEN_INK_EXTENSION_PARAMBOOL_H /* @@ -5,7 +6,7 @@ * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * * Jon A. Cruz <jon@joncruz.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "parameter.h" diff --git a/src/extension/param/color.cpp b/src/extension/param/color.cpp index 6ce5d78b1..f71670cb2 100644 --- a/src/extension/param/color.cpp +++ b/src/extension/param/color.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2005-2007 Authors: * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * Christopher Brown <audiere@gmail.com> * Jon A. Cruz <jon@joncruz.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <iostream> diff --git a/src/extension/param/color.h b/src/extension/param/color.h index f3b44b412..c2d3c2ccb 100644 --- a/src/extension/param/color.h +++ b/src/extension/param/color.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INK_EXTENSION_PARAMCOLOR_H__ #define SEEN_INK_EXTENSION_PARAMCOLOR_H__ /* @@ -5,7 +6,7 @@ * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * * Jon A. Cruz <jon@joncruz.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "parameter.h" diff --git a/src/extension/param/description.cpp b/src/extension/param/description.cpp index 5726962c7..154c172df 100644 --- a/src/extension/param/description.cpp +++ b/src/extension/param/description.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2005-2007 Authors: * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef linux // does the dollar sign need escaping when passed as string parameter? diff --git a/src/extension/param/description.h b/src/extension/param/description.h index 84e402890..822370b82 100644 --- a/src/extension/param/description.h +++ b/src/extension/param/description.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __INK_EXTENSION_PARAMDESCRIPTION_H__ #define __INK_EXTENSION_PARAMDESCRIPTION_H__ @@ -5,7 +6,7 @@ * Copyright (C) 2005-2007 Authors: * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "parameter.h" diff --git a/src/extension/param/enum.cpp b/src/extension/param/enum.cpp index 277d05c44..5ba3e5772 100644 --- a/src/extension/param/enum.cpp +++ b/src/extension/param/enum.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * extension parameter for enumerations. * @@ -11,7 +12,7 @@ * * Copyright (C) 2006-2007 Johan Engelen * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/extension/param/enum.h b/src/extension/param/enum.h index 6d93c8e83..329bb26f9 100644 --- a/src/extension/param/enum.h +++ b/src/extension/param/enum.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INK_EXTENSION_PARAMENUM_H_SEEN #define INK_EXTENSION_PARAMENUM_H_SEEN @@ -12,7 +13,7 @@ * * Copyright (C) 2006-2007 Johan Engelen * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <vector> diff --git a/src/extension/param/float.cpp b/src/extension/param/float.cpp index f71e716a0..2886ad792 100644 --- a/src/extension/param/float.cpp +++ b/src/extension/param/float.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2005-2007 Authors: * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * * Jon A. Cruz <jon@joncruz.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/adjustment.h> diff --git a/src/extension/param/float.h b/src/extension/param/float.h index ce92d8c28..c1d0f0f79 100644 --- a/src/extension/param/float.h +++ b/src/extension/param/float.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INK_EXTENSION_PARAMFLOAT_H_SEEN #define INK_EXTENSION_PARAMFLOAT_H_SEEN @@ -6,7 +7,7 @@ * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * * Jon A. Cruz <jon@joncruz.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "parameter.h" diff --git a/src/extension/param/int.cpp b/src/extension/param/int.cpp index d79b2916c..1c41c0834 100644 --- a/src/extension/param/int.cpp +++ b/src/extension/param/int.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2005-2007 Authors: * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * * Jon A. Cruz <jon@joncruz.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/adjustment.h> diff --git a/src/extension/param/int.h b/src/extension/param/int.h index e6f4ac3db..fac481267 100644 --- a/src/extension/param/int.h +++ b/src/extension/param/int.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INK_EXTENSION_PARAMINT_H_SEEN #define INK_EXTENSION_PARAMINT_H_SEEN @@ -6,7 +7,7 @@ * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * * Jon A. Cruz <jon@joncruz.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "parameter.h" diff --git a/src/extension/param/notebook.cpp b/src/extension/param/notebook.cpp index abfdee457..fed093f60 100644 --- a/src/extension/param/notebook.cpp +++ b/src/extension/param/notebook.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Notebook and NotebookPage parameters for extensions. */ @@ -9,7 +10,7 @@ * * Copyright (C) 2006 Author * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/adjustment.h> diff --git a/src/extension/param/notebook.h b/src/extension/param/notebook.h index 1d676615b..dd7154f06 100644 --- a/src/extension/param/notebook.h +++ b/src/extension/param/notebook.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INK_EXTENSION_PARAMNOTEBOOK_H_SEEN #define INK_EXTENSION_PARAMNOTEBOOK_H_SEEN @@ -12,7 +13,7 @@ * * Copyright (C) 2006 Author * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "parameter.h" diff --git a/src/extension/param/parameter.cpp b/src/extension/param/parameter.cpp index 4b5a23a8d..a1afd6b18 100644 --- a/src/extension/param/parameter.cpp +++ b/src/extension/param/parameter.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Parameters for extensions. */ @@ -8,7 +9,7 @@ * * Copyright (C) 2005-2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef linux // does the dollar sign need escaping when passed as string parameter? diff --git a/src/extension/param/parameter.h b/src/extension/param/parameter.h index f784fdd01..c37d1539a 100644 --- a/src/extension/param/parameter.h +++ b/src/extension/param/parameter.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Parameters for extensions. */ @@ -7,7 +8,7 @@ * * Copyright (C) 2005-2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INK_EXTENSION_PARAM_H__ diff --git a/src/extension/param/radiobutton.cpp b/src/extension/param/radiobutton.cpp index cc539dd92..8c1d6a5f7 100644 --- a/src/extension/param/radiobutton.cpp +++ b/src/extension/param/radiobutton.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * extension parameter for radiobuttons. * @@ -11,7 +12,7 @@ * Copyright (C) 2006-2007 Johan Engelen * Copyright (C) 2008 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/extension/param/radiobutton.h b/src/extension/param/radiobutton.h index 5958be8a4..48d470a01 100644 --- a/src/extension/param/radiobutton.h +++ b/src/extension/param/radiobutton.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INK_EXTENSION_PARAMRADIOBUTTON_H_SEEN #define INK_EXTENSION_PARAMRADIOBUTTON_H_SEEN @@ -12,7 +13,7 @@ * * Copyright (C) 2006-2007 Johan Engelen * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "parameter.h" diff --git a/src/extension/param/string.cpp b/src/extension/param/string.cpp index 5699a2fdb..6a3de1d04 100644 --- a/src/extension/param/string.cpp +++ b/src/extension/param/string.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2005-2007 Authors: * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * * Jon A. Cruz <jon@joncruz.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/adjustment.h> diff --git a/src/extension/param/string.h b/src/extension/param/string.h index 20bfd849c..195496ba3 100644 --- a/src/extension/param/string.h +++ b/src/extension/param/string.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INK_EXTENSION_PARAMSTRING_H_SEEN #define INK_EXTENSION_PARAMSTRING_H_SEEN @@ -6,7 +7,7 @@ * Ted Gould <ted@gould.cx> * Johan Engelen <johan@shouraizou.nl> * * Jon A. Cruz <jon@joncruz.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "parameter.h" diff --git a/src/extension/patheffect.cpp b/src/extension/patheffect.cpp index c112e6843..89925f73b 100644 --- a/src/extension/patheffect.cpp +++ b/src/extension/patheffect.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/extension/patheffect.h b/src/extension/patheffect.h index d9aea7f59..734f0c58a 100644 --- a/src/extension/patheffect.h +++ b/src/extension/patheffect.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_PATHEFFECT_H__ diff --git a/src/extension/plugins/CMakeLists.txt b/src/extension/plugins/CMakeLists.txt index 78f268c6b..dc15b4ae4 100644 --- a/src/extension/plugins/CMakeLists.txt +++ b/src/extension/plugins/CMakeLists.txt @@ -1 +1,2 @@ +# SPDX-License-Identifier: GPL-2.0-or-later add_subdirectory(grid2) diff --git a/src/extension/plugins/grid2/CMakeLists.txt b/src/extension/plugins/grid2/CMakeLists.txt index eb200e96e..1d23d8384 100644 --- a/src/extension/plugins/grid2/CMakeLists.txt +++ b/src/extension/plugins/grid2/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later set(grid_PART_SRCS grid.cpp) include_directories( ${CMAKE_BINARY_DIR}/src ) diff --git a/src/extension/plugins/grid2/grid.cpp b/src/extension/plugins/grid2/grid.cpp index 0b43e3ef1..597cff570 100644 --- a/src/extension/plugins/grid2/grid.cpp +++ b/src/extension/plugins/grid2/grid.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file grid.cpp @@ -8,7 +9,7 @@ * Copyright (C) 2007 MenTaLguY <mental@rydia.net> * Abhishek Sharma * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/extension/plugins/grid2/grid.h b/src/extension/plugins/grid2/grid.h index 8f139b917..7dffae98e 100644 --- a/src/extension/plugins/grid2/grid.h +++ b/src/extension/plugins/grid2/grid.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2004-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __GRID_H diff --git a/src/extension/plugins/grid2/libgrid2.inx b/src/extension/plugins/grid2/libgrid2.inx index 0360d37e3..db95cd509 100644 --- a/src/extension/plugins/grid2/libgrid2.inx +++ b/src/extension/plugins/grid2/libgrid2.inx @@ -1,4 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> +<!-- SPDX-License-Identifier: GPL-2.0-or-later --> <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> <_name>Grid2</_name> <id>org.inkscape.effect.grid2</id> diff --git a/src/extension/prefdialog.cpp b/src/extension/prefdialog.cpp index 2d1192d04..de58545fb 100644 --- a/src/extension/prefdialog.cpp +++ b/src/extension/prefdialog.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2005-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "prefdialog.h" diff --git a/src/extension/prefdialog.h b/src/extension/prefdialog.h index bc5742fd5..087900fbe 100644 --- a/src/extension/prefdialog.h +++ b/src/extension/prefdialog.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2005,2007-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_DIALOG_H__ diff --git a/src/extension/print.cpp b/src/extension/print.cpp index 7337f77fb..32fb5ea2c 100644 --- a/src/extension/print.cpp +++ b/src/extension/print.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> * * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "implementation/implementation.h" diff --git a/src/extension/print.h b/src/extension/print.h index 65719baf7..aaad3cf4e 100644 --- a/src/extension/print.h +++ b/src/extension/print.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ted Gould <ted@gould.cx> @@ -5,7 +6,7 @@ * * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_PRINT_H__ diff --git a/src/extension/system.cpp b/src/extension/system.cpp index 6c39dda6c..02f6f8177 100644 --- a/src/extension/system.cpp +++ b/src/extension/system.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This is file is kind of the junk file. Basically everything that * didn't fit in one of the other well defined areas, well, it's now @@ -13,7 +14,7 @@ * Copyright (C) 2006-2007 Johan Engelen * Copyright (C) 2002-2004 Ted Gould * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/interface.h" diff --git a/src/extension/system.h b/src/extension/system.h index 6b405b5d0..456f1721e 100644 --- a/src/extension/system.h +++ b/src/extension/system.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * This is file is kind of the junk file. Basically everything that * didn't fit in one of the other well defined areas, well, it's now @@ -9,7 +10,7 @@ * * Copyright (C) 2002-2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_SYSTEM_H__ diff --git a/src/extension/timer.cpp b/src/extension/timer.cpp index 867faf205..7ed856ec4 100644 --- a/src/extension/timer.cpp +++ b/src/extension/timer.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Here is where the extensions can get timed on when they load and * unload. All of the timing is done in here. @@ -7,7 +8,7 @@ * * Copyright (C) 2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/main.h> diff --git a/src/extension/timer.h b/src/extension/timer.h index c8a5be438..a4f9bfea9 100644 --- a/src/extension/timer.h +++ b/src/extension/timer.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Here is where the extensions can get timed on when they load and * unload. All of the timing is done in here. @@ -7,7 +8,7 @@ * * Copyright (C) 2004 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_EXTENSION_TIMER_H__ |
