[FIX] fix in js + cleaning
[odoo/odoo.git] / addons / im / __openerp__.py
1 {
2     'name' : 'Instant Messaging',
3     'version': '1.0',
4     'summary': 'Live Chat, Talks with Others',
5     'sequence': '18',
6     'category': 'Tools',
7     'complexity': 'easy',
8     'description':
9         """
10 Instant Messaging
11 =================
12
13 Allows users to chat with each other in real time. Find other users easily and
14 chat in real time. It support several chats in parallel.
15         """,
16     'data': [
17         'security/ir.model.access.csv',
18         'security/im_security.xml',
19     ],
20     'depends' : ['base', 'web'],
21     'js': [
22         'static/src/js/im_common.js',
23         'static/src/js/im.js',
24     ],
25     'css': ['static/src/css/*.css'],
26     'qweb': ['static/src/xml/*.xml'],
27     'installable': True,
28     'auto_install': False,
29     'application': True,
30 }