[IMP] bundlify addons (except website)
[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 Business oriented Social Networking
30 ===================================
31 The Social Networking module provides a unified social network abstraction layer allowing applications to display a complete
32 communication history on documents with a fully-integrated email and message management system.
33
34 It enables the users to read and send messages as well as emails. It also provides a feeds page combined to a subscription mechanism that allows to follow documents and to be constantly updated about recent news.
35
36 Main Features
37 -------------
38 * Clean and renewed communication history for any OpenERP document that can act as a discussion topic
39 * Subscription mechanism to be updated about new messages on interesting documents
40 * Unified feeds page to see recent messages and activity on followed documents
41 * User communication through the feeds page
42 * Threaded discussion design on documents
43 * Relies on the global outgoing mail server - an integrated email management system - allowing to send emails with a configurable scheduler-based processing engine
44 * Includes an extensible generic email composition assistant, that can turn into a mass-mailing assistant and is capable of interpreting simple *placeholder expressions* that will be replaced with dynamic data when each email is actually sent.
45     """,
46     'author': 'OpenERP SA',
47     'website': 'http://www.openerp.com',
48     'depends': ['base', 'base_setup'],
49     'data': [
50         'wizard/invite_view.xml',
51         'wizard/mail_compose_message_view.xml',
52         'mail_message_subtype.xml',
53         'res_config_view.xml',
54         'mail_message_view.xml',
55         'mail_mail_view.xml',
56         'mail_followers_view.xml',
57         'mail_thread_view.xml',
58         'mail_group_view.xml',
59         'res_partner_view.xml',
60         'data/mail_data.xml',
61         'data/mail_group_data.xml',
62         'security/mail_security.xml',
63         'security/ir.model.access.csv',
64         'mail_alias_view.xml',
65         'res_users_view.xml',
66         'views/mail.xml',
67     ],
68     'demo': [
69         'data/mail_demo.xml',
70         'data/mail_group_demo_data.xml',
71     ],
72     'installable': True,
73     'application': True,
74     'images': [
75         'images/inbox.jpeg',
76         'images/messages_form.jpeg',
77         'images/messages_list.jpeg',
78         'images/email.jpeg',
79         'images/join_a_group.jpeg',
80         'images/share_a_message.jpeg',
81     ],
82     'qweb': [
83         'static/src/xml/mail.xml',
84         'static/src/xml/mail_followers.xml',
85         'static/src/xml/announcement.xml',
86         'static/src/xml/suggestions.xml',
87     ],
88 }
89 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: