cb5754af64ae5ab0a7d5cb7f8b108f3f545838c6
[odoo/odoo.git] / addons / base_module_record / __terp__.py
1 # -*- encoding: utf-8 -*-
2 {
3     "name" : "Module Recorder",
4     "version" : "1.0",
5     "author" : "Tiny",
6     "website" : "http://tinyerp.com",
7     "category" : "Generic Modules/Base",
8     "description": """
9 This module allows you to create a new module without any development.
10 It records all operations on objects during the recording session and
11 produce a .ZIP module. So you can create your own module directly from
12 the Tiny ERP client.
13
14 This version works for creating and updating existing records. It recomputes
15 dependencies and links for all types of widgets (many2one, many2many, ...).
16 It also support workflows and demo/update data.
17
18 This should help you to easily create reuseable and publishable modules
19 for custom configurations and demo/testing data.
20
21 How to use it:
22 1. Start the recording
23 2. Do stuff in your Tiny ERP client
24 3. Stop the recording session
25 4. Export to a reusable module
26     """,
27     "depends" : ["base"],
28     "init_xml" : [ ],
29     "demo_xml" : [ ],
30     "update_xml" : [ "base_module_record_wizard.xml" ],
31     "installable": True
32 }
33 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
34