Augustin Cisterne-Kaas - www.elico-corp.com has proposed merging lp:~ajite/openobject-addons/elico-7.0-add-00001 into lp:~openerp-community/openobject-addons/elico-7.0.
Commit message: [ADD] New web module named adblock Requested reviews: LIN Yu (lin-yu) For more details, see: https://code.launchpad.net/~ajite/openobject-addons/elico-7.0-add-00001/+merge/200167 Added a new web module named adblock which removes the OpenERP announcement bar. -- https://code.launchpad.net/~ajite/openobject-addons/elico-7.0-add-00001/+merge/200167 Your team OpenERP Community is subscribed to branch lp:~openerp-community/openobject-addons/elico-7.0.
=== added directory 'web_adblock' === added file 'web_adblock/__init__.py' --- web_adblock/__init__.py 1970-01-01 00:00:00 +0000 +++ web_adblock/__init__.py 2013-12-30 02:34:00 +0000 @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (c) 2010-2013 Elico Corp. All Rights Reserved. +# Augustin Cisterne-Kaas <[email protected]> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +############################################################################## === added file 'web_adblock/__openerp__.py' --- web_adblock/__openerp__.py 1970-01-01 00:00:00 +0000 +++ web_adblock/__openerp__.py 2013-12-30 02:34:00 +0000 @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (c) 2010-2013 Elico Corp. All Rights Reserved. +# Augustin Cisterne-Kaas <[email protected]> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +############################################################################## +{ + 'name': 'OpenERP Adblock', + 'version': '0.1', + 'category': '', + 'depends': ['mail'], + 'author': 'Elico Corp', + 'license': 'AGPL-3', + 'website': 'https://www.elico-corp.com', + 'description': """ + Module which hides the OpenERP announcement bar. + """, + 'images': [], + 'js': ['static/src/js/announcement.js'], + 'installable': True, + 'application': False, +} === added directory 'web_adblock/static' === added directory 'web_adblock/static/src' === added directory 'web_adblock/static/src/js' === added file 'web_adblock/static/src/js/announcement.js' --- web_adblock/static/src/js/announcement.js 1970-01-01 00:00:00 +0000 +++ web_adblock/static/src/js/announcement.js 2013-12-30 02:34:00 +0000 @@ -0,0 +1,3 @@ +openerp_announcement = function(instance) { + +}; \ No newline at end of file
_______________________________________________ Mailing list: https://launchpad.net/~openerp-community Post to : [email protected] Unsubscribe : https://launchpad.net/~openerp-community More help : https://help.launchpad.net/ListHelp

