[MERGE] mail/chatter complete review/refactoring
[odoo/odoo.git] / addons / mail / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2010-Today OpenERP S.A. (<http://www.openerp.com>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 {
23     'name': 'Social Network',
24     'version': '1.0',
25     'category': 'Social Network',
26     'sequence': 2,
27     'summary': 'Discussions, Mailing Lists, News',
28     'description': """
29 A business oriented Social Networking with a fully-integrated email and message management.
30 ===========================================================================================
31
32 The Social Networking module provides an unified social network
33 abstraction layer allowing applications to display a complete 
34 communication history on documents. It gives the users the possibility
35 to read and send messages and emails in an unified way.
36
37 It also provides a feeds page combined to a subscription mechanism, that 
38 allows to follow documents, and to be constantly updated about recent
39 news.
40         
41 The main features of the module are:
42 ------------------------------------
43     * a clean and renewed communication history for any OpenERP
44       document that can act as a discussion topic,
45     * a discussion mean on documents,
46     * a subscription mechanism to be updated about new messages on 
47       interesting documents,
48     * an unified feeds page to see recent messages and activity 
49       on followed documents,
50     * user communication through the feeds page,
51     * a threaded discussion design,
52     * relies on the global outgoing mail server, an integrated email
53       management system allowing to send emails with a configurable 
54       scheduler-based processing engine
55     * includes an extensible generic email composition assistant, that can turn
56       into a mass-mailing assistant, and is capable of interpreting
57       simple *placeholder expressions* that will be replaced with
58       dynamic data when each email is actually sent
59     """,
60     'author': 'OpenERP SA',
61     'website': 'http://www.openerp.com',
62     'depends': ['base', 'base_tools', 'base_setup'],
63     'data': [
64         'wizard/mail_compose_message_view.xml',
65         'res_config_view.xml',
66         'mail_message_view.xml',
67         'mail_mail_view.xml',
68         'mail_followers_view.xml',
69         'mail_thread_view.xml',
70         'mail_group_view.xml',
71         'res_partner_view.xml',
72         'data/mail_data.xml',
73         'data/mail_group_data.xml',
74         'security/mail_security.xml',
75         'security/ir.model.access.csv',
76         'mail_alias_view.xml',
77         'res_users_view.xml',
78     ],
79     'demo': ['data/mail_demo.xml'],
80     'installable': True,
81     'auto_install': False,
82     'application': True,
83     'certificate': '001056784984222247309',
84     'images': [
85         'images/customer_history.jpeg',
86         'images/messages_form.jpeg',
87         'images/messages_list.jpeg',
88         'static/src/img/email_icong.png',
89         'static/src/img/_al.png',
90         'static/src/img/_pincky.png',
91         'static/src/img/groupdefault.png',
92         'static/src/img/attachment.png',
93         'static/src/img/checklist.png',
94         'static/src/img/formatting.png',
95     ],
96     'css': [
97         'static/src/css/mail.css',
98         'static/src/css/mail_group.css',
99         'static/src/css/mail_compose_message.css',
100     ],
101     'js': [
102         'static/lib/jquery.expander/jquery.expander.js',
103         'static/src/js/mail.js',
104         'static/src/js/mail_followers.js',
105     ],
106     'qweb': [
107         'static/src/xml/mail.xml',
108         'static/src/xml/mail_followers.xml',
109     ],
110 }
111 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: