[MERGE] forward port of branch saas-4 up to 7ecaab9
[odoo/odoo.git] / addons / survey / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-TODAY OpenERP S.A. <http://www.openerp.com>
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 {
23     'name': 'Survey',
24     'version': '2.0',
25     'category': 'Marketing',
26     'description': """
27 Create beautiful web surveys and visualize answers
28 ==================================================
29
30 It depends on the answers or reviews of some questions by different users. A
31 survey may have multiple pages. Each page may contain multiple questions and
32 each question may have multiple answers. Different users may give different
33 answers of question and according to that survey is done. Partners are also
34 sent mails with personal token for the invitation of the survey.
35     """,
36     'summary': 'Create surveys, collect answers and print statistics',
37     'author': 'OpenERP SA',
38     'website': 'https://www.openerp.com/apps/survey/',
39     'depends': ['email_template', 'mail', 'website', 'marketing'],
40     'data': [
41         'security/survey_security.xml',
42         'security/ir.model.access.csv',
43         'views/survey_views.xml',
44         'views/survey_templates.xml',
45         'views/survey_result.xml',
46         'wizard/survey_email_compose_message.xml',
47         'data/survey_stages.xml',
48         'data/survey_cron.xml'
49     ],
50     'demo': ['data/survey_demo_user.xml',
51              'data/survey_demo_feedback.xml',
52              'data/survey.user_input.csv',
53              'data/survey.user_input_line.csv'],
54     'installable': True,
55     'auto_install': False,
56     'application': True,
57     'sequence': 10,
58     'images': [],
59 }