[FIX] email_template: fixed active_mode, active_id and active_ids.
[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     'description': """
28 A bussiness oriented Social Networking with a fully-integrated email 
29 and message management.
30 =====================================================================
31 The Social Networking module provides an unified social network
32 abstraction layer allowing applications to display a complete 
33 communication history on documents.It gives the users the possibility
34 to read and send messages and emails in an unified way.
35
36 It also provides a feeds page combined to a subscription mechanism, that 
37 allows to follow documents, and to be constantly updated about recent
38 news.
39         
40 The main features of the module are :
41
42     * a clean and renewed communication history for any OpenERP
43       document that can act as a discussion topic,       
44     * a discussion mean on documents,
45     * a subscription mechanism to be updated about new messages on 
46       interesting documents,
47     * an unified feeds page to see recent messages and activity 
48       on followed documents,
49     * user communication through the feeds page,
50     * a threaded discussion design,
51     * relies on the global outgoing mail server, an integrated email
52       management system allowing to send emails with a configurable 
53       scheduler-based processing engine
54     * includes an extensible generic email composition assistant, that can turn
55       into a mass-mailing assistant, and is capable of interpreting
56       simple *placeholder expressions* that will be replaced with
57       dynamic data when each email is actually sent
58     """,
59     'author': 'OpenERP SA',
60     'website': 'http://www.openerp.com',
61     'depends': ['base', 'base_tools'],
62     'data': [
63         'wizard/mail_compose_message_view.xml',
64         'mail_message_view.xml',
65         'mail_subscription_view.xml',
66         'mail_thread_view.xml',
67         'mail_group_view.xml',
68         'res_partner_view.xml',
69         'res_users_view.xml',
70         'data/mail_data.xml',
71         'data/mail_group_data.xml',
72         'security/mail_security.xml',
73         'security/ir.model.access.csv',
74     ],
75     'installable': True,
76     'auto_install': False,
77     'application':True,
78     'certificate': '001056784984222247309',
79     'images': [
80         'images/customer_history.jpeg',
81         'images/messages_form.jpeg',
82         'images/messages_list.jpeg',
83         'static/src/img/email_icong.png',
84         'static/src/img/_al.png',
85         'static/src/img/_pincky.png',
86         'static/src/img/feeds.png',
87         'static/src/img/feeds-hover.png',
88         'static/src/img/groupdefault.png',
89     ],
90     'css': [
91         'static/src/css/mail.css',
92         'static/src/css/mail_group.css',
93         'static/src/css/mail_compose_message.css',
94     ],
95     'js': [
96         'static/lib/jquery.expander/jquery.expander.js',
97         'static/src/js/mail.js',
98     ],
99     'qweb': [
100         'static/src/xml/mail.xml',
101     ],
102     'demo': [
103         'mail_demo.xml',
104     ],   
105 }
106 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: