From 43af0f0f669a0c603e3011669a1b8ef1ace44069 Mon Sep 17 00:00:00 2001 From: EL HADJI DEM Date: Tue, 1 Apr 2014 10:24:56 -0400 Subject: [PATCH] [IMP] add the good version for cmislib and add the external_dependencies --- cmis/__openerp__.py | 3 +++ cmis/cmis_model.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/cmis/__openerp__.py b/cmis/__openerp__.py index d0336961..c083cc60 100644 --- a/cmis/__openerp__.py +++ b/cmis/__openerp__.py @@ -47,6 +47,9 @@ Contributors 'depends': [ 'connector', ], + 'external_dependencies': { + 'python': ['cmislib'], + }, 'data': [ 'cmis_model_view.xml', 'cmis_menu.xml', diff --git a/cmis/cmis_model.py b/cmis/cmis_model.py index dc0c1d1d..efe57df9 100644 --- a/cmis/cmis_model.py +++ b/cmis/cmis_model.py @@ -36,7 +36,7 @@ class cmis_backend(orm.Model): _backend_type = 'cmis' def _select_versions(self, cr, uid, context=None): - return [('1.7', '1.7')] + return [('1.0', '1.0')] # Test connection with GED def _auth(self, cr, uid, context=None):