[ADD]: Images: caldav, crm_caldav, document_webdav, project_caldav

bzr revid: vro@tinyerp.com-20110317132800-olxywjriieykgafo
This commit is contained in:
vro 2011-03-17 18:58:00 +05:30
parent 960091b74a
commit a00f7aa97f
4 changed files with 38 additions and 24 deletions

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
##############################################################################
#
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
@ -15,20 +15,22 @@
# 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" : "Share Calendar using CalDAV",
"version" : "1.1",
"name" : "Share Calendar using CalDAV",
"version" : "1.1",
"depends" : [
"base",
"base",
"document_webdav",
],
'description': """
This module Contains basic functionality for caldav system like:
This module contains basic functionality for Caldav system.
===========================================================
- Webdav server that provides remote access to calendar
- Synchronisation of calendar using WebDAV
- Customize calendar event and todo attribute with any of OpenERP model
@ -45,24 +47,25 @@
PORT : Port on which OpenERP server is running (By Default : 8069)
DATABASE_NAME: Name of database on which OpenERP Calendar is created
CALENDAR_NAME: Name of calendar to access
""",
"author" : "OpenERP SA",
'category': 'Generic Modules/Others',
'website': 'http://www.openerp.com',
"init_xml" : ["caldav_data.xml"],
"demo_xml" : [],
""",
"author" : "OpenERP SA",
'category': 'Generic Modules/Others',
'website': 'http://www.openerp.com',
"init_xml" : ["caldav_data.xml"],
"demo_xml" : [],
"update_xml" : [
'security/ir.model.access.csv',
'security/ir.model.access.csv',
'wizard/calendar_event_export_view.xml',
'wizard/calendar_event_import_view.xml',
'wizard/calendar_event_subscribe_view.xml',
'wizard/caldav_browse_view.xml',
'caldav_view.xml',
'caldav_setup.xml'
],
"installable" : True,
"active" : False,
],
"installable" : True,
"active" : False,
"certificate" : "00924841426645403741",
'images': ['images/calendar_collections.jpeg','images/calendars.jpeg','images/export_ics_file.jpeg'],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -26,7 +26,9 @@
'version': '1.1',
'category': 'Generic Modules/CRM & SRM',
'description': """
New Features in Meeting:
Caldav features in Meeting.
===========================
* Share meeting with other calendar clients like sunbird
""",
'author': 'OpenERP SA',
@ -42,6 +44,7 @@
'installable': True,
'active': False,
'certificate' : '001088048737252670109',
'images': ['images/caldav_browse_step1.jpeg','images/caldav_browse_step2.jpeg'],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -34,10 +34,13 @@
"author" : "OpenERP SA",
"category" : "Generic Modules/Others",
"website": "http://www.openerp.com",
"description": """ With this module, the WebDAV server for the documents is activated.
"description": """
With this module, the WebDAV server for documents is activated.
===============================================================
You can then use any compatible browser to remotely see the attachments of OpenObject.
After installation, the webDAV server can be controlled by a [webdav] section in the server's config.
After installation, the WebDAV server can be controlled by a [webdav] section in the server's config.
Server Configuration Parameter:
[webdav]
; enable = True ; Serve webdav over the http(s) servers
@ -49,20 +52,21 @@
; since the messages are routed to the python logging, with
; levels "debug" and "debug_rpc" respectively, you can leave
; these options on
Also implements IETF RFC 5785 for services discovery on a http server,
which needs explicit configuration in openerp-server.conf, too.
""",
"depends" : ["base", "document"],
"init_xml" : [],
"update_xml" : ['security/ir.model.access.csv',
"update_xml" : ['security/ir.model.access.csv',
'webdav_view.xml',
'webdav_setup.xml',
],
"demo_xml" : [],
"test": [ #'test/webdav_test1.yml',
"test": [ #'test/webdav_test1.yml',
],
"active": False,
"installable": True,
"certificate" : "001236490750845657973",
'images': ['images/dav_properties.jpeg','images/directories_structure_principals.jpeg'],
}

View File

@ -20,11 +20,14 @@
##############################################################################
{
"name": "CalDAV for task management",
"name": "CalDAV for Task Management",
"version": "1.1",
"author": "OpenERP SA",
"category": "Generic Modules/Others",
"description": """ Synchronize between Project task and Caldav Vtodo.""",
"description": """
Synchronization between Project Task and Caldav Vtodo.
======================================================
""",
"depends": ["project", "caldav", "base_calendar"],
"init_xml": ["project_caldav_data.xml", 'project_caldav_setup.xml', ],
"demo_xml": [],
@ -33,4 +36,5 @@
"website": "http://www.openerp.com",
"installable": True,
"certificate" : "001114200456808204637",
'images': ['images/project_tasks_caldav.jpeg'],
}