[UPD] Change LICENSE to LGPL
This commit is contained in:
parent
03bdee3b75
commit
ef50f9fd7e
|
|
@ -1,22 +1,3 @@
|
||||||
##############################################################################
|
|
||||||
#
|
|
||||||
# Adapted by Nicolas Bessi. Copyright Camptocamp SA
|
|
||||||
# Based on Florent Xicluna original code. Copyright Wingo SA
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program 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 General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
##############################################################################
|
|
||||||
from . import models
|
from . import models
|
||||||
from . import server_env
|
from . import server_env
|
||||||
from .server_env import serv_config, setboolean
|
from .server_env import serv_config, setboolean
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# Copyright Wingo SA
|
# Copyright Wingo SA
|
||||||
# Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
# Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
||||||
# License GPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "server configuration environment files",
|
"name": "server configuration environment files",
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
"author": "Camptocamp,Odoo Community Association (OCA)",
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
"summary": "move some configurations out of the database",
|
"summary": "move some configurations out of the database",
|
||||||
"website": "https://github.com/OCA/server-env",
|
"website": "https://github.com/OCA/server-env",
|
||||||
"license": "GPL-3 or any later version",
|
"license": "LGPL-3",
|
||||||
"category": "Tools",
|
"category": "Tools",
|
||||||
"data": [
|
"data": [
|
||||||
"security/ir.model.access.csv",
|
"security/ir.model.access.csv",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
# Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
||||||
# License GPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
from functools import partialmethod
|
from functools import partialmethod
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# Copyright 2020 Camptocamp (http://www.camptocamp.com)
|
# Copyright 2020 Camptocamp (http://www.camptocamp.com)
|
||||||
# @author Simone Orsi <simahawk@gmail.com>
|
# @author Simone Orsi <simahawk@gmail.com>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
||||||
|
|
||||||
from odoo import api, fields, models
|
from odoo import api, fields, models
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,8 @@
|
||||||
<?xml version="1.0" ?>
|
<?xml version="1.0" ?>
|
||||||
|
<!--
|
||||||
|
Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
||||||
|
License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
||||||
|
-->
|
||||||
<odoo>
|
<odoo>
|
||||||
<record model="res.groups" id="has_server_configuration_access">
|
<record model="res.groups" id="has_server_configuration_access">
|
||||||
<field name="name">View Server Environment Configuration</field>
|
<field name="name">View Server Environment Configuration</field>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
# Copyright 2020 Camptocamp (http://www.camptocamp.com)
|
|
||||||
# @author Nicolas Bessi
|
|
||||||
# Based on Florent Xicluna original code. Copyright Wingo SA
|
# Based on Florent Xicluna original code. Copyright Wingo SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# Adapted by Nicolas Bessi. Copyright Camptocamp SA
|
||||||
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
||||||
|
|
||||||
import configparser
|
import configparser
|
||||||
import logging
|
import logging
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,6 @@
|
||||||
##############################################################################
|
# Based on Florent Xicluna original code. Copyright Wingo SA
|
||||||
#
|
# Adapted by Nicolas Bessi. Copyright Camptocamp SA
|
||||||
# Adapted by Nicolas Bessi. Copyright Camptocamp SA
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
||||||
# Based on Florent Xicluna original code. Copyright Wingo SA
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program 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 General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
##############################################################################
|
|
||||||
|
|
||||||
import locale
|
import locale
|
||||||
import os
|
import os
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
# Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
||||||
# License GPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
# Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
||||||
# License GPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
||||||
|
|
||||||
|
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
# Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
# Copyright 2018 Camptocamp (https://www.camptocamp.com).
|
||||||
# License GPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html)
|
||||||
|
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
from odoo.tools.config import config as odoo_config
|
from odoo.tools.config import config as odoo_config
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue