X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=addons%2Fbase_calendar%2F__openerp__.py;h=0dd72a17038ef2088dbbf707d25fb2ce62ce7d06;hb=8a0a9c6ffd06fe44f7440a5b84ab639c5a648926;hp=3f4d8ee314db60c7b452f1af32d188ecaef14b4b;hpb=b7a638ccde0a0a469d54e8285d662ffae9e662fd;p=odoo%2Fodoo.git diff --git a/addons/base_calendar/__openerp__.py b/addons/base_calendar/__openerp__.py index 3f4d8ee..0dd72a1 100644 --- a/addons/base_calendar/__openerp__.py +++ b/addons/base_calendar/__openerp__.py @@ -1,8 +1,56 @@ +# -*- 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": "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: