~therp-nl/openerp-web/7.0-lp1013636-x2m_honour_required_attribute

« back to all changes in this revision

Viewing changes to addons/web_diagram/__openerp__.py

[MERGE] from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
    "version" : "2.0",
6
6
    "depends" : ["web"],
7
7
    "js": [
8
 
        'static/lib/js/raphael-min.js',
9
 
        'static/lib/js/dracula_graffle.js',
10
 
        'static/lib/js/dracula_graph.js',
11
 
        'static/lib/js/dracula_algorithms.js',
12
 
        'static/src/js/diagram.js'
 
8
        'static/lib/js/raphael.js',
 
9
        'static/lib/js/jquery.mousewheel.js',
 
10
        'static/src/js/vec2.js',
 
11
        'static/src/js/graph.js',
 
12
        'static/src/js/diagram.js',
13
13
    ],
14
14
    'css' : [
15
15
        "static/src/css/base_diagram.css",
17
17
    'qweb' : [
18
18
        "static/src/xml/*.xml",
19
19
    ],
20
 
    'active': True,
 
20
    'auto_install': True,
21
21
}