[FIX]:group by contact in event invitations
[odoo/odoo.git] / addons / base_calendar / __openerp__.py
old mode 100755 (executable)
new mode 100644 (file)
index e8b528d..0dd72a1
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 ##############################################################################
-#    
+#
 #    OpenERP, Open Source Management Solution
 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
 #
 #    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/>.     
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 ##############################################################################
 
 {
-    "name" : "Basic Calendar Functionality", 
-    "version" : "1.0", 
-    "depends" : ["base"], 
-    'description': """Full featured calendar system that support:
+    "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 others people""", 
-    "author" : "Tiny", 
-    'category': 'Generic Modules/Others', 
-    'website': 'http://www.openerp.com', 
+    - Recurring events
+    - Invitations to people""",
+    "author" : "OpenERP SA",
+    'category': 'Hidden',
+    'website': 'http://www.openerp.com',
     "init_xml" : [
         'base_calendar_data.xml'
-    ], 
-    "demo_xml" : [], 
+    ],
+    "demo_xml" : [],
     "update_xml" : [
+        'security/calendar_security.xml',
         'security/ir.model.access.csv',
-        'wizard/calendar_event_edit_all_view.xml', 
-        'wizard/base_calendar_invite_attendee_view.xml', 
+        'wizard/base_calendar_invite_attendee_view.xml',
         'base_calendar_view.xml'
-    ], 
-    "installable" : True, 
-    "active" : False, 
+    ],
+    "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: