[IMP]Adding summary
[odoo/odoo.git] / addons / event / __openerp__.py
1
2 # -*- coding: utf-8 -*-
3 ##############################################################################
4 #
5 #    OpenERP, Open Source Management Solution
6 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
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': 'Events Organisation',
26     'version': '0.1',
27     'category': 'Tools',
28     'summary': 'Invitation, Subscription',
29     'description': """
30 Organization and management of Events.
31 ======================================
32
33 This module allows you
34     * to manage your events and their registrations
35     * to use emails to automatically confirm and send acknowledgements for any registration to an event
36     * ...
37
38 Note that:
39     - You can define new types of events in
40         Association / Configuration / Types of Events
41 """,
42     'author': 'OpenERP SA',
43     'depends': ['base_setup', 'board', 'email_template', 'google_map'],
44     'init_xml': [],
45     'update_xml': [
46         'security/event_security.xml',
47         'security/ir.model.access.csv',
48         'wizard/event_confirm_view.xml',
49         'event_view.xml',
50         'report/report_event_registration_view.xml',
51         'board_association_view.xml',
52         'res_partner_view.xml',
53         'email_template.xml',
54     ],
55     'demo_xml': ['event_demo.yml'],
56     'test': ['test/process/event_draft2done.yml'],
57     'css': ['static/src/css/event.css'],
58     'installable': True,
59     'application': True,
60     'auto_install': False,
61     'images': ['images/1_event_type_list.jpeg','images/2_events.jpeg','images/3_registrations.jpeg'],
62 }
63 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: