improved project kanban vignette
[odoo/odoo.git] / addons / project / __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": "Project Management",
25     "version": "1.1",
26     "author": "OpenERP SA",
27     "website": "http://www.openerp.com",
28     "category": "Project Management",
29     "sequence": 8,
30     "images": ["images/gantt.png", "images/project_dashboard.jpeg","images/project_task_tree.jpeg","images/project_task.jpeg","images/project.jpeg","images/task_analysis.jpeg"],
31     "depends": ["base_setup", "base_status", "product", "analytic", "board",  "mail", "resource","web_kanban"],
32     "description": """
33 Project management module tracks multi-level projects, tasks, work done on tasks, eso.
34 ======================================================================================
35
36 It is able to render planning, order tasks, eso.
37
38 Dashboard for project members that includes:
39 --------------------------------------------
40     * List of my open tasks
41     * List of my delegated tasks
42     * Graph of My Projects: Planned vs Total Hours
43     * Graph of My Remaining Hours by Project
44     """,
45     "init_xml": [],
46     "update_xml": [
47         "security/project_security.xml",
48         "wizard/project_task_delegate_view.xml",
49         "wizard/project_task_reevaluate_view.xml",
50         "security/ir.model.access.csv",
51         "project_data.xml",
52         "project_view.xml",
53         "process/task_process.xml",
54         "res_partner_view.xml",
55         "report/project_report_view.xml",
56         'report/project_cumulative.xml',
57         "board_project_view.xml",
58         'res_config_view.xml',
59     ],
60     'demo_xml': [
61         'project_demo.xml',
62     ],
63     'test':[
64         'test/project_demo.yml',
65         'test/project_process.yml',
66         'test/task_process.yml',
67     ],
68     'installable': True,
69     'auto_install': False,
70     'application': True,
71     'css': ['static/src/css/project.css'],
72     'js': ['static/src/js/project.js'],
73     'certificate': '0075116868317',
74 }
75 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: