odoo/addons/document_webdav/__openerp__.py

77 lines
3.0 KiB
Python

# -*- encoding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2004 TINY SPRL. (http://tiny.be), 2009 P. Christeas
# All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be>
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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'],
'data': ['security/ir.model.access.csv',
'webdav_view.xml',
'webdav_setup.xml',
],
'demo': [],
'test': [ #'test/webdav_test1.yml',
],
'auto_install': False,
'installable': True,
'images': ['images/dav_properties.jpeg','images/directories_structure_principals.jpeg'],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: