瀏覽代碼

added license change to python files

FlorianPalm 7 年之前
父節點
當前提交
48a2b96305

+ 1 - 2
doc/index.rst

@@ -5,8 +5,7 @@ open62541 (http://open62541.org) is an open source implementation of OPC UA
 (short for OPC Unified Architecture). open62541 is a C-based library (linking
 with C++ projects is possible) with all necessary tools to implement dedicated
 OPC UA clients and servers, or to integrate OPC UA-based communication into
-existing applications. open62541 is licensed under the MPLv2. So the *open62541
- library can be used in projects that are
+existing applications. open62541 is licensed MPLv2. So the *open62541 library can be used in projects that are
 not open source*. However, changes to the open62541 library itself need to
 published under the same license. The plugins, as well as the provided example
 servers and clients are in the public domain (CC0 license). They can be reused

+ 5 - 1
tools/pyUANamespace/generate_open62541CCode.py

@@ -1,6 +1,10 @@
 #!/usr/bin/python
 # -*- coding: utf-8 -*-
 
+# This Source Code Form is subject to the terms of the Mozilla Public 
+# License, v. 2.0. If a copy of the MPL was not distributed with this 
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 ###
 ### Author:  Chris Iatrou (ichrispa@core-vector.net)
 ### Version: rev 14
@@ -9,7 +13,7 @@
 ### contributed to the open62541 project by the author. All licensing
 ### terms for this source is inherited by the terms and conditions
 ### specified for by the open62541 project (see the projects readme
-### file for more information on the LGPL terms and restrictions).
+### file for more information on the MPLv2 terms and restrictions).
 ###
 ### This program is not meant to be used in a production environment. The
 ### author is not liable for any complications arising due to the use of

+ 5 - 1
tools/pyUANamespace/open62541_MacroHelper.py

@@ -1,6 +1,10 @@
 #!/usr/bin/env/python
 # -*- coding: utf-8 -*-
 
+# This Source Code Form is subject to the terms of the Mozilla Public 
+# License, v. 2.0. If a copy of the MPL was not distributed with this 
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 ###
 ### Author:  Chris Iatrou (ichrispa@core-vector.net)
 ### Version: rev 13
@@ -9,7 +13,7 @@
 ### contributed to the open62541 project by the author. All licensing
 ### terms for this source is inherited by the terms and conditions
 ### specified for by the open62541 project (see the projects readme
-### file for more information on the LGPL terms and restrictions).
+### file for more information on the MPLv2 terms and restrictions).
 ###
 ### This program is not meant to be used in a production environment. The
 ### author is not liable for any complications arising due to the use of

+ 5 - 1
tools/pyUANamespace/open62541_XMLPreprocessor.py

@@ -1,6 +1,10 @@
 #!/usr/bin/env/python
 # -*- coding: utf-8 -*-
 
+# This Source Code Form is subject to the terms of the Mozilla Public 
+# License, v. 2.0. If a copy of the MPL was not distributed with this 
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 ###
 ### Author:  Chris Iatrou (ichrispa@core-vector.net)
 ###
@@ -8,7 +12,7 @@
 ### contributed to the open62541 project by the author. All licensing
 ### terms for this source is inherited by the terms and conditions
 ### specified for by the open62541 project (see the projects readme
-### file for more information on the LGPL terms and restrictions).
+### file for more information on the MPLv2 terms and restrictions).
 ###
 ### This program is not meant to be used in a production environment. The
 ### author is not liable for any complications arising due to the use of

+ 5 - 1
tools/pyUANamespace/ua_builtin_types.py

@@ -1,6 +1,10 @@
 #!/usr/bin/env/python
 # -*- coding: utf-8 -*-
 
+# This Source Code Form is subject to the terms of the Mozilla Public 
+# License, v. 2.0. If a copy of the MPL was not distributed with this 
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 ###
 ### Author:  Chris Iatrou (ichrispa@core-vector.net)
 ### Version: rev 13
@@ -9,7 +13,7 @@
 ### contributed to the open62541 project by the author. All licensing
 ### terms for this source is inherited by the terms and conditions
 ### specified for by the open62541 project (see the projects readme
-### file for more information on the LGPL terms and restrictions).
+### file for more information on the MPLv2 terms and restrictions).
 ###
 ### This program is not meant to be used in a production environment. The
 ### author is not liable for any complications arising due to the use of

+ 5 - 1
tools/pyUANamespace/ua_constants.py

@@ -1,6 +1,10 @@
 #!/usr/bin/env/python
 # -*- coding: utf-8 -*-
 
+# This Source Code Form is subject to the terms of the Mozilla Public 
+# License, v. 2.0. If a copy of the MPL was not distributed with this 
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 ###
 ### Author:  Chris Iatrou (ichrispa@core-vector.net)
 ### Version: rev 13
@@ -9,7 +13,7 @@
 ### contributed to the open62541 project by the author. All licensing 
 ### terms for this source is inherited by the terms and conditions
 ### specified for by the open62541 project (see the projects readme
-### file for more information on the LGPL terms and restrictions).
+### file for more information on the MPLv2 terms and restrictions).
 ###
 ### This program is not meant to be used in a production environment. The
 ### author is not liable for any complications arising due to the use of

+ 5 - 1
tools/pyUANamespace/ua_namespace.py

@@ -1,6 +1,10 @@
 #!/usr/bin/env/python
 # -*- coding: utf-8 -*-
 
+# This Source Code Form is subject to the terms of the Mozilla Public 
+# License, v. 2.0. If a copy of the MPL was not distributed with this 
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 ###
 ### Author:  Chris Iatrou (ichrispa@core-vector.net)
 ### Version: rev 13
@@ -9,7 +13,7 @@
 ### contributed to the open62541 project by the author. All licensing
 ### terms for this source is inherited by the terms and conditions
 ### specified for by the open62541 project (see the projects readme
-### file for more information on the LGPL terms and restrictions).
+### file for more information on the MPLv2 terms and restrictions).
 ###
 ### This program is not meant to be used in a production environment. The
 ### author is not liable for any complications arising due to the use of

+ 5 - 1
tools/pyUANamespace/ua_node_types.py

@@ -1,6 +1,10 @@
 #!/usr/bin/env/python
 # -*- coding: utf-8 -*-
 
+# This Source Code Form is subject to the terms of the Mozilla Public 
+# License, v. 2.0. If a copy of the MPL was not distributed with this 
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 ###
 ### Author:  Chris Iatrou (ichrispa@core-vector.net)
 ### Version: rev 13
@@ -9,7 +13,7 @@
 ### contributed to the open62541 project by the author. All licensing
 ### terms for this source is inherited by the terms and conditions
 ### specified for by the open62541 project (see the projects readme
-### file for more information on the LGPL terms and restrictions).
+### file for more information on the MPLv2 terms and restrictions).
 ###
 ### This program is not meant to be used in a production environment. The
 ### author is not liable for any complications arising due to the use of