~romaindeheele/openobject-addons/extra-trunk

« back to all changes in this revision

Viewing changes to base_module_merge/__terp__.py

  • Committer: mra (Open ERP)
  • Date: 2009-11-30 10:03:47 UTC
  • mto: This revision was merged to the branch mainline in revision 4062.
  • Revision ID: mra@tinyerp.com-20091130100347-jj05dkzmtvbdndxr
[ADD] added fr_BE.po file for modules
[IMP] modify some existing files and solve some errors on modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- encoding: utf-8 -*-
 
1
# -*- coding: utf-8 -*-
2
2
##############################################################################
3
3
#    
4
4
#    OpenERP, Open Source Management Solution
18
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
19
19
#
20
20
##############################################################################
 
21
 
 
22
 
21
23
{
22
 
    "name" : "Module Merger",
23
 
    "version" : "1.0",
24
 
    "author" : "Tiny",
25
 
    "website" : "http://www.openerp.com",
26
 
    "category" : "Generic Modules/Base",
27
 
    "description": """
 
24
    'name': 'Module Merger',
 
25
    'version': '1.0',
 
26
    'category': 'Generic Modules/Base',
 
27
    'description': """
28
28
    * The wizard asks a many2many of modules
29
29
    * And then generate a module which is the merge of all selected modules
30
30
    * The new module is provided as a .zip file
33
33
    * Merging all .py files with the same name in the new module
34
34
    * merging all .xml files and take care of id's.
35
35
    """,
36
 
    "depends" : ["base"],
37
 
    "init_xml" : [ ],
38
 
    "demo_xml" : [ ],
39
 
    "update_xml" : [ "base_module_merge_wizard.xml" ],
40
 
    "installable": True
 
36
    'author': 'Tiny',
 
37
    'website': 'http://www.openerp.com',
 
38
    'depends': ['base'],
 
39
    'init_xml': [],
 
40
    'update_xml': ['base_module_merge_wizard.xml'],
 
41
    'demo_xml': [],
 
42
    'installable': True,
 
43
    'certificate': '0035756279709',
41
44
}
42
45
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
43