~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to document_change/__terp__.py

  • Committer: Fabien Pinckaers
  • Date: 2010-01-29 01:04:21 UTC
  • Revision ID: fp@tinyerp.com-20100129010421-6wt4fmex3iecktp9
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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': 'Integrated Document Management System',
 
25
    'version': '1.99',
 
26
    'category': 'Generic Modules/Others',
 
27
    'description': """
 
28
The document_change module allows to track and manage process changes to
 
29
update documents in directories, and keep track of these updates. You
 
30
can define control points, phase of changes. This module has been
 
31
developed for Caterpillar Belgium.
 
32
""",
 
33
    'author': 'Tiny',
 
34
    'website': 'http://www.openerp.com',
 
35
    'depends': ['base', 'document_ftp','mail_gateway','board'],
 
36
    'init_xml': ['document_change_data.xml'],
 
37
    'update_xml': [
 
38
        'security/document_process_security.xml',
 
39
        'document_change_view.xml',
 
40
        'document_change_sequence.xml',
 
41
        'document_change_workflow.xml',
 
42
        'document_change_report_view.xml',
 
43
        'document_phase_workflow.xml',
 
44
        'document_process_workflow.xml',
 
45
        'cat_demo.xml'
 
46
    ],
 
47
    'demo_xml': [ ],
 
48
    'installable': True,
 
49
    'active': False,
 
50
    'certificate': None,
 
51
}
 
52
 
 
53
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: