[IMP] project: use same user ids as in hr
[odoo/odoo.git] / addons / project_scrum / __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 #
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 {
24     'name': 'Methodology: SCRUM',
25     'version': '1.0',
26     'category': 'Project Management',
27     'complexity': "normal",
28     'description': """
29 This module implements all concepts defined by the scrum project management methodology for IT companies.
30 =========================================================================================================
31
32     * Project with sprints, product owner, scrum master
33     * Sprints with reviews, daily meetings, feedbacks
34     * Product backlog
35     * Sprint backlog
36
37 It adds some concepts to the project management module:
38     * Mid-term, long-term road-map
39     * Customers/functional requests VS technical ones
40
41 It also creates a new reporting:
42     * Burn-down chart
43
44 The scrum projects and tasks inherit from the real projects and
45 tasks, so you can continue working on normal tasks that will also
46 include tasks from scrum projects.
47
48 More information on the methodology:
49     * http://controlchaos.com
50     """,
51     'author': 'OpenERP SA',
52     'images': ['images/product_backlogs.jpeg', 'images/project_sprints.jpeg', 'images/scrum_dashboard.jpeg', 'images/scrum_meetings.jpeg'],
53     'depends': ['project', 'process', 'mail'],
54     'init_xml': [],
55     'update_xml': [
56         'security/ir.model.access.csv',
57         'project_scrum_report.xml',
58         'wizard/project_scrum_backlog_create_task_view.xml',
59         'wizard/project_scrum_backlog_merger_view.xml',
60         'wizard/project_scrum_postpone_view.xml',
61 #        "wizard/project_scrum_email_view.xml",
62         'project_scrum_view.xml',
63         'wizard/project_scrum_backlog_sprint_view.xml',
64         'process/project_scrum_process.xml',
65         "board_project_scrum_view.xml",
66     ],
67     'demo_xml': ['project_scrum_demo.xml'],
68     'test': ['test/backlog_process.yml',
69              'test/sprint_process.yml',
70              'test/cancel_backlog.yml',
71              'test/project_scrum_demo.yml',
72              ],
73     'installable': True,
74     'active': False,
75     'certificate' : '00736750152003010781',
76 }
77 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: