[tryton-debian-vcs] tryton-neso branch upstream updated. upstream/3.2.1-1-gf050389

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Thu Oct 23 12:19:31 UTC 2014


The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-neso.git;a=commitdiff;h=upstream/3.2.1-1-gf050389

commit f050389b538ad2d27941f41b966ef4944abec9a8
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Oct 21 11:29:25 2014 +0200

    Adding upstream version 3.4.0.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index 2e97db8..f20c9ca 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-Version 3.2.1 - 2014-04-27
+Version 3.4.0 - 2014-10-20
 * Bug fixes (see mercurial logs for details)
 
 Version 3.2.0 - 2014-04-21
diff --git a/PKG-INFO b/PKG-INFO
index e62a117..7c49730 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: neso
-Version: 3.2.1
+Version: 3.4.0
 Summary: Standalone Client/Server for the Tryton Application Platform
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.2/
+Download-URL: http://downloads.tryton.org/3.4/
 Description: neso
         ====
         
diff --git a/bin/neso b/bin/neso
index 851d8ab..72b9a04 100755
--- a/bin/neso
+++ b/bin/neso
@@ -75,7 +75,7 @@ for i in ('tryton', 'trytond'):
 import tryton.client
 TrytonClient = tryton.client.TrytonClient()
 
-from trytond.config import CONFIG
+from trytond.config import config
 from tryton.config import get_home_dir
 
 DATA_DIR = os.path.join(os.path.abspath(os.path.normpath(
@@ -89,11 +89,7 @@ VERSION_DATA_DIR = os.path.join(DATA_DIR, VERSION.rsplit('.', 1)[0])
 if not os.path.isdir(VERSION_DATA_DIR):
     os.mkdir(VERSION_DATA_DIR, 0700)
 
-CONFIG.options['jsonrpc'] = False
-CONFIG.options['xmlrpc'] = False
-CONFIG.options['webdav'] = False
-CONFIG.options['db_type'] = 'sqlite'
-CONFIG.options['data_path'] = VERSION_DATA_DIR
+config.set('database', 'path', VERSION_DATA_DIR)
 
 for mod in sys.modules.keys():
     if mod.startswith('trytond.') \
@@ -103,6 +99,10 @@ for mod in sys.modules.keys():
 from trytond.pool import Pool
 Pool.start()
 
+from trytond import security
+
+security.check_super = lambda *a: True
+
 from trytond.protocols.dispatcher import dispatch
 from trytond.exceptions import UserError, UserWarning, NotLogged, \
     ConcurrencyException
@@ -218,9 +218,9 @@ def cron():
             pool = Pool(dbname)
             if 'ir.cron' not in pool.object_name_list():
                 continue
-            cron_obj = pool.get('ir.cron')
+            Cron = pool.get('ir.cron')
             thread = threading.Thread(
-                    target=cron_obj.run,
+                    target=Cron.run,
                     args=(dbname,), kwargs={})
             thread.start()
             threads[dbname] = thread
diff --git a/neso.egg-info/PKG-INFO b/neso.egg-info/PKG-INFO
index e62a117..7c49730 100644
--- a/neso.egg-info/PKG-INFO
+++ b/neso.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: neso
-Version: 3.2.1
+Version: 3.4.0
 Summary: Standalone Client/Server for the Tryton Application Platform
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.2/
+Download-URL: http://downloads.tryton.org/3.4/
 Description: neso
         ====
         
diff --git a/neso.egg-info/requires.txt b/neso.egg-info/requires.txt
index 72fabf9..f976de0 100644
--- a/neso.egg-info/requires.txt
+++ b/neso.egg-info/requires.txt
@@ -1,2 +1,2 @@
-tryton >= 3.2, < 3.3
-trytond >= 3.2, < 3.3
\ No newline at end of file
+tryton >= 3.4, < 3.5
+trytond >= 3.4, < 3.5
\ No newline at end of file
diff --git a/neso/version.py b/neso/version.py
index 0e39619..ad64590 100644
--- a/neso/version.py
+++ b/neso/version.py
@@ -1,6 +1,6 @@
 #This file is part of Tryton.  The COPYRIGHT file at the top level of
 #this repository contains the full copyright notices and license terms.
 PACKAGE = "neso"
-VERSION = "3.2.1"
+VERSION = "3.4.0"
 LICENSE = "GPL-3"
 WEBSITE = "http://www.tryton.org/"
-- 
tryton-neso



More information about the tryton-debian-vcs mailing list