mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
Switch AGPL to LGPL license
This commit is contained in:
committed by
Tatiana Deribina
parent
a70150dc40
commit
f77ef57875
@@ -10,9 +10,9 @@ User roles
|
|||||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||||
:target: https://odoo-community.org/page/development-status
|
:target: https://odoo-community.org/page/development-status
|
||||||
:alt: Beta
|
:alt: Beta
|
||||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
|
||||||
:alt: License: AGPL-3
|
:alt: License: LGPL-3
|
||||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--backend-lightgray.png?logo=github
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--backend-lightgray.png?logo=github
|
||||||
:target: https://github.com/OCA/server-backend/tree/12.0/base_user_role
|
:target: https://github.com/OCA/server-backend/tree/12.0/base_user_role
|
||||||
:alt: OCA/server-backend
|
:alt: OCA/server-backend
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
# Copyright 2014 ABF OSIELL <http://osiell.com>
|
# Copyright 2014 ABF OSIELL <http://osiell.com>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'User roles',
|
'name': 'User roles',
|
||||||
'version': '12.0.1.0.0',
|
'version': '12.0.1.0.0',
|
||||||
'category': 'Tools',
|
'category': 'Tools',
|
||||||
'author': 'ABF OSIELL, Odoo Community Association (OCA)',
|
'author': 'ABF OSIELL, Odoo Community Association (OCA)',
|
||||||
'license': 'AGPL-3',
|
'license': 'LGPL-3',
|
||||||
'maintainers': ['ABF OSIELL', 'jcdrubay'],
|
'maintainers': ['sebalix', 'jcdrubay', 'novawish'],
|
||||||
'website': 'https://github.com/OCA/server-backend',
|
'website': 'https://github.com/OCA/server-backend',
|
||||||
'depends': [
|
'depends': [
|
||||||
'base',
|
'base',
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- Copyright 2016 ABF OSIELL <http://osiell.com>
|
<!-- Copyright 2016 ABF OSIELL <http://osiell.com>
|
||||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||||
|
-->
|
||||||
<odoo noupdate="1">
|
<odoo noupdate="1">
|
||||||
|
|
||||||
<record model="ir.cron" id="cron_update_users">
|
<record model="ir.cron" id="cron_update_users">
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- Copyright 2016 ABF OSIELL <http://osiell.com>
|
<!-- Copyright 2016 ABF OSIELL <http://osiell.com>
|
||||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||||
|
-->
|
||||||
<odoo>
|
<odoo>
|
||||||
|
|
||||||
<record model="ir.module.category" id="ir_module_category_role">
|
<record model="ir.module.category" id="ir_module_category_role">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Copyright 2014 ABF OSIELL <http://osiell.com>
|
# Copyright 2014 ABF OSIELL <http://osiell.com>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||||
import datetime
|
import datetime
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Copyright 2014 ABF OSIELL <http://osiell.com>
|
# Copyright 2014 ABF OSIELL <http://osiell.com>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||||
from odoo import api, fields, models
|
from odoo import api, fields, models
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Copyright 2014 ABF OSIELL <http://osiell.com>
|
# Copyright 2014 ABF OSIELL <http://osiell.com>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
from odoo import fields
|
from odoo import fields
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- Copyright 2014 ABF OSIELL <http://osiell.com>
|
<!-- Copyright 2014 ABF OSIELL <http://osiell.com>
|
||||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||||
|
-->
|
||||||
<odoo>
|
<odoo>
|
||||||
|
|
||||||
<record id="view_res_users_role_form" model="ir.ui.view">
|
<record id="view_res_users_role_form" model="ir.ui.view">
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- Copyright 2014 ABF OSIELL <http://osiell.com>
|
<!-- Copyright 2014 ABF OSIELL <http://osiell.com>
|
||||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||||
|
-->
|
||||||
<odoo>
|
<odoo>
|
||||||
|
|
||||||
<record id="view_res_users_form_inherit" model="ir.ui.view">
|
<record id="view_res_users_form_inherit" model="ir.ui.view">
|
||||||
|
|||||||
Reference in New Issue
Block a user