Browse Source

[FIX] Copyrights, disclaimer, authors

pull/564/head
tarteo 7 years ago
parent
commit
46160d7ef6
  1. 4
      web_shortcut/LICENSE
  2. 3
      web_shortcut/README.rst
  3. 2
      web_shortcut/__init__.py
  4. 4
      web_shortcut/__openerp__.py
  5. 3
      web_shortcut/models/ir_ui_menu.py
  6. 2
      web_shortcut/models/web_shortcut.py
  7. 2
      web_shortcut/static/src/js/web_shortcut.js

4
web_shortcut/LICENSE

@ -1,5 +1,5 @@
OpenERP, Open Source Management Solution
Copyright © 2010-2011 OpenERP SA (<http://openerp.com>).
Odoo, Open Source Management Solution
Copyright © 2010-2011 Odoo SA (<http://odoo.com>).
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as

3
web_shortcut/README.rst

@ -44,6 +44,7 @@ Contributors
* Adrien Peiffer
* Dennis Sluijk <d.sluijk@onestein.nl>
* Odoo SA
Maintainer
----------
@ -59,3 +60,5 @@ mission is to support the collaborative development of Odoo features and
promote its widespread use.
To contribute to this module, please visit https://odoo-community.org.
**This module is a port from Odoo SA and as such, it is not included in the OCA CLA. That means we do not have a copy of the copyright on it like all other OCA modules.**

2
web_shortcut/__init__.py

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright 2010 OpenERP s.a. (<http://openerp.com>).
# Copyright 2010 Odoo SA (<http://odoo.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import models

4
web_shortcut/__openerp__.py

@ -1,11 +1,11 @@
# -*- coding: utf-8 -*-
# Copyright 2010-2011 OpenERP s.a. (<http://openerp.com>).
# Copyright 2010-2011 Odoo SA (<http://openerp.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Shortcut Menu',
'version': '9.0.1.0.0',
'category': 'Web',
'author': 'OpenERP SA,Odoo Community Association (OCA)',
'author': 'Odoo SA,Odoo Community Association (OCA)',
'website': 'http://openerp.com',
'depends': [
'base',

3
web_shortcut/models/ir_ui_menu.py

@ -1,4 +1,7 @@
# -*- coding: utf-8 -*-
# Copyright 2004-today Odoo SA (<http://www.odoo.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp import models, api

2
web_shortcut/models/web_shortcut.py

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright 2004-today OpenERP SA (<http://www.openerp.com>)
# Copyright 2004-today Odoo SA (<http://www.odoo.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp import models, fields, api

2
web_shortcut/static/src/js/web_shortcut.js

@ -1,4 +1,4 @@
/* Copyright (C) 2004-today OpenERP SA (<http://www.openerp.com>)
/* Copyright 2004-today Odoo SA (<http://www.odoo.com>)
* License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */
odoo.define('web.shortcut', function(require) {

Loading…
Cancel
Save