1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#
# Use the custom module to put your specific code in a separate module.
#
{
"name" : "Integrated Document Management System",
"version" : "1.0",
"author" : "Tiny",
"category" : "Generic Modules/Others",
"website": "http://www.openerp.com",
"description": """This is a complete document management system:
* WebDav Interface
* User Authentification
* Document Indexation
""",
"depends" : ["base"],
"init_xml" : ["document_data.xml"],
"update_xml" : ["document_view.xml"],
"demo_xml" : ["document_demo.xml"],
"active": False,
"installable": True
}
|