49879d49056bbca05509b8a3b7a1cd7913de648a
[odoo/odoo.git] / addons / share / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #    Copyright (C) 2010-2011 OpenERP SA (<http://www.openerp.com>).
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as
10 #    published by the Free Software Foundation, either version 3 of the
11 #    License, or (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     'name' : 'Share any Document',
26     'version' : '2.0',
27     'depends' : ['base', 'mail'],
28     'author' : 'OpenERP SA',
29     'category': 'Tools',
30     'description': """
31 This module adds generic sharing tools to your current OpenERP database.
32 ========================================================================
33
34 It specifically adds a 'share' button that is available in the Web client to
35 share any kind of OpenERP data with colleagues, customers, friends.
36
37 The system will work by creating new users and groups on the fly, and by
38 combining the appropriate access rights and ir.rules to ensure that the shared
39 users only have access to the data that has been shared with them.
40
41 This is extremely useful for collaborative work, knowledge sharing,
42 synchronization with other companies.
43     """,
44     'website': 'https://www.odoo.com',
45     'demo': ['share_demo.xml'],
46     'data': [
47         'security/share_security.xml',
48         'res_users_view.xml',
49         'wizard/share_wizard_view.xml',
50         'share_data.xml',
51         'views/share.xml',
52     ],
53     'installable': True,
54     'auto_install': True,
55     'web': True,
56     'qweb' : ['static/src/xml/*.xml'],
57     'images': ['images/share_wizard.jpeg','images/sharing_wizard_step1.jpeg', 'images/sharing_wizard_step2.jpeg'],
58 }
59
60 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: