~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to user_story_long_term/__openerp__.py

  • Committer: Yanina Aular
  • Date: 2014-03-26 21:12:27 UTC
  • mfrom: (543.7.444 trunk)
  • mto: (543.7.455 trunk)
  • mto: This revision was merged to the branch mainline in revision 857.
  • Revision ID: yanina.aular@vauxoo.com-20140326211227-c7x4e62lgzqoy2l9

[MERGE] from addons-vauxoo-7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
# -*- encoding: utf-8 -*-
 
3
###############################################################################
 
4
#    Module Writen to OpenERP, Open Source Management Solution
 
5
#    Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
 
6
#    All Rights Reserved
 
7
############# Credits #########################################################
 
8
#    Coded by: Yanina Aular <yani@vauxoo.com>
 
9
#    Planified by: Maria Gabriela Quilarque <gabriela@vauxoo.com>
 
10
#    Audited by: Maria Gabriela Quilarque <gabriela@vauxoo.com>
 
11
###############################################################################
 
12
#    This program is free software: you can redistribute it and/or modify
 
13
#    it under the terms of the GNU Affero General Public License as published
 
14
#    by the Free Software Foundation, either version 3 of the License, or
 
15
#    (at your option) any later version.
 
16
#
 
17
#    This program is distributed in the hope that it will be useful,
 
18
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
#    GNU Affero General Public License for more details.
 
21
#
 
22
#    You should have received a copy of the GNU Affero General Public License
 
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
24
###############################################################################
 
25
 
 
26
{
 
27
    'name': 'Long Term User Story',
 
28
    'version': '1.0',
 
29
    'author': 'Vauxoo',
 
30
    'website': 'http://www.vauxoo.com',
 
31
    'category': 'User Story Management',
 
32
    'depends': ['base', 'mail', 'user_story', 'project_conf'],
 
33
    'description': """
 
34
Long Term User Story Management module
 
35
======================================
 
36
 
 
37
Features:
 
38
---------
 
39
    * Define various Phases of User Story
 
40
    * Send mail to the followers of the user story as an acceptance criteria is accepted.
 
41
    * Send mail to the owner, responsible supervisor and execution responsible when the user story
 
42
      pass from in progress to pending state.
 
43
    """,
 
44
    'demo': [
 
45
        #'user_story_long_term_demo.xml'
 
46
        'demo/user_story_conf.xml',
 
47
        ],
 
48
    'test': [],
 
49
    'data': [
 
50
        #'security/ir.model.access.csv',
 
51
        'user_story_long_term_view.xml',
 
52
        'workflow/user_story_long_term_workflow.xml',
 
53
        'data/user_story_template.xml',
 
54
        #'wizard/user_story_compute_phases_view.xml',
 
55
        #'wizard/user_story_compute_tasks_view.xml',
 
56
    ],
 
57
    'installable': True,
 
58
    'auto_install': False,
 
59
}
 
60
 
 
61
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: