[MERGE]:trunk
[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': 'Trainings, Conferences, Meetings, Exhibitions, Registrations',
29     'description': """
30 Organization and management of Events.
31 ======================================
32
33 The event module allows you to efficiently organise events and all related tasks: planification, registration tracking,
34 attendances, etc.
35
36 Key Features
37 ------------
38 * Manage your Events and Registrations
39 * Use emails to automatically confirm and send acknowledgements for any event registration
40 """,
41     'author': 'OpenERP SA',
42     'depends': ['base_setup', 'board', 'email_template'],
43     'data': [
44         'security/event_security.xml',
45         'security/ir.model.access.csv',
46         'wizard/event_confirm_view.xml',
47         'event_view.xml',
48         'event_data.xml',
49         'report/report_event_registration_view.xml',
50         'board_association_view.xml',
51         'res_partner_view.xml',
52         'email_template.xml',
53     ],
54     'demo': ['event_demo.xml'],
55     'test': ['test/process/event_draft2done.yml'],
56     'css': ['static/src/css/event.css'],
57     'installable': True,
58     'application': True,
59     'auto_install': False,
60     'images': ['images/1_event_type_list.jpeg','images/2_events.jpeg','images/3_registrations.jpeg'],
61 }
62 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: