# -*- encoding: utf-8 -*- ############################################################################## # # Copyright (c) 2004 TINY SPRL. (http://tiny.be), 2009 P. Christeas # All Rights Reserved. # Fabien Pinckaers # # WARNING: This program as such is intended to be used by professional # programmers who take the whole responsability of assessing all potential # consequences resulting from its eventual inadequacies and bugs # End users who are looking for a ready-to-use solution with commercial # garantees and support are strongly adviced to contract a Free Software # Service Company # # This program is Free Software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## { "name" : "Shared Repositories (WebDAV)", "version" : "2.3", "author" : "OpenERP SA", "category" : "Knowledge Management", "website": "http://www.openerp.com", "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. Server Configuration Parameter: [webdav] ; enable = True ; Serve webdav over the http(s) servers ; vdir = webdav ; the directory that webdav will be served at ; this default val means that webdav will be ; on "http://localhost:8069/webdav/ ; verbose = True ; Turn on the verbose messages of webdav ; debug = True ; Turn on the debugging messages of webdav ; 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', 'webdav_view.xml', 'webdav_setup.xml', ], "demo_xml" : [], "test": [ #'test/webdav_test1.yml', ], "auto_install": False, "installable": True, "certificate" : "001236490750845657973", 'images': ['images/dav_properties.jpeg','images/directories_structure_principals.jpeg'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: