# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # # 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 . # ############################################################################## { "name" : "Basic Calendar Functionality", "version" : "1.0", "depends" : ["base"], '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': 'Tools', '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/calendar_event_edit_all_view.xml', 'wizard/base_calendar_invite_attendee_view.xml', 'wizard/base_calendar_set_exrule_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: