[FIX]:group by contact in event invitations
[odoo/odoo.git] / addons / base_calendar / __openerp__.py
index 3f4d8ee..0dd72a1 100644 (file)
@@ -1,8 +1,56 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU Affero General Public License as
+#    published by the Free Software Foundation, either version 3 of the
+#    License, or (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU Affero General Public License for more details.
+#
+#    You should have received a copy of the GNU Affero General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
 {
-    "name": "Hello",
-    "version": "2.0",
-    "depends": [],
-    "js": ["static/*/js/*.js"],
-    "css": [],
-    'active': False
+    "name" : "Basic Calendar Functionality",
+    "version" : "1.0",
+    "depends" : ["base", "mail"],
+    'complexity': "easy",
+    'description': """
+This is a full-featured calendar system.
+========================================
+
+It supports:
+    - Calendar of events
+    - Alerts (create requests)
+    - Recurring events
+    - Invitations to people""",
+    "author" : "OpenERP SA",
+    'category': 'Hidden',
+    'website': 'http://www.openerp.com',
+    "init_xml" : [
+        'base_calendar_data.xml'
+    ],
+    "demo_xml" : [],
+    "update_xml" : [
+        'security/calendar_security.xml',
+        'security/ir.model.access.csv',
+        'wizard/base_calendar_invite_attendee_view.xml',
+        'base_calendar_view.xml'
+    ],
+    "test" : ['test/base_calendar_test.yml'],
+    "installable" : True,
+    "active" : False,
+    "certificate" : "00694071962960352821",
+    'images': ['images/base_calendar1.jpeg','images/base_calendar2.jpeg','images/base_calendar3.jpeg','images/base_calendar4.jpeg',],
 }
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: