[MERGE] lp:~xrg/openobject-addons/trunk-patch18
[odoo/odoo.git] / addons / document_webdav / __openerp__.py
index 3a573dc..0fd21a4 100644 (file)
@@ -30,7 +30,7 @@
 
 {
         "name" : "WebDAV server for Document Management",
-        "version" : "2.1",
+        "version" : "2.3",
         "author" : "OpenERP SA",
         "category" : "Generic Modules/Others",
         "website": "http://www.openerp.com",
         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", ],
+        "update_xml" : ['security/ir.model.access.csv', 
+                        'webdav_view.xml',
+                        'webdav_setup.xml',
+                        ],
         "demo_xml" : [],
+        "test": [ #'test/webdav_test1.yml', 
+                ],
         "active": False,
         "installable": True
 }