[tryton-debian-vcs] tryton-modules-dashboard branch upstream-1.6 created. 0b1e80457723fb07b6b8e7815cb81130e25f3df7
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Nov 27 17:02:05 UTC 2013
The following commit has been merged in the upstream-1.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-dashboard.git;a=commitdiff;h=0b1e80457723fb07b6b8e7815cb81130e25f3df7
commit 0b1e80457723fb07b6b8e7815cb81130e25f3df7
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 20 20:54:50 2010 +0100
Adding upstream version 1.6.1.
diff --git a/CHANGELOG b/CHANGELOG
index c929537..cb84eb6 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 1.6.1 - 2010-11-02
+* Bug fixes (see mercurial logs for details)
+
Version 1.6.0 - 2010-05-09
* Bug fixes (see mercurial logs for details)
diff --git a/MANIFEST.in b/MANIFEST.in
index b2a140e..dcb2afa 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -7,5 +7,4 @@ include LICENSE
include *.xml
include *.odt
include *.csv
-include tests/*
include doc/*
diff --git a/PKG-INFO b/PKG-INFO
index 99dc863..2b2e47d 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond_dashboard
-Version: 1.6.0
+Version: 1.6.1
Summary: Dashboard:
- Allow to create a personalized dashboard.
diff --git a/__tryton__.py b/__tryton__.py
index e008e8e..1e3992c 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -6,7 +6,7 @@
'name_es_CO': 'Escritorio',
'name_es_ES': 'Escritorio',
'name_fr_FR': 'Tableau de bord',
- 'version': '1.6.0',
+ 'version': '1.6.1',
'author': 'B2CK',
'email': 'info at b2ck.com',
'website': 'http://www.tryton.org/',
diff --git a/ir.py b/ir.py
index 45450ce..ddd8e02 100644
--- a/ir.py
+++ b/ir.py
@@ -142,10 +142,10 @@ class View(Model):
self.dashboard_id(cursor.dbname)
if fields_names is None \
or 'arch' in fields_names:
- if isinstance(ids, (int, long)) \
- and dashboard_id == ids:
- res['arch'] = self.dashboard_view(cursor, user, res['arch'],
- context=context)
+ if isinstance(ids, (int, long)):
+ if dashboard_id == ids:
+ res['arch'] = self.dashboard_view(cursor, user,
+ res['arch'], context=context)
elif dashboard_id in ids:
for res2 in res:
if res2['id'] == dashboard_id:
diff --git a/tests/__init__.pyc b/tests/__init__.pyc
deleted file mode 100644
index f135a2c..0000000
Binary files a/tests/__init__.pyc and /dev/null differ
diff --git a/tests/test_dashboard.pyc b/tests/test_dashboard.pyc
deleted file mode 100644
index 02c7487..0000000
Binary files a/tests/test_dashboard.pyc and /dev/null differ
diff --git a/trytond_dashboard.egg-info/PKG-INFO b/trytond_dashboard.egg-info/PKG-INFO
index 27e49c9..11799bb 100644
--- a/trytond_dashboard.egg-info/PKG-INFO
+++ b/trytond_dashboard.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond-dashboard
-Version: 1.6.0
+Version: 1.6.1
Summary: Dashboard:
- Allow to create a personalized dashboard.
diff --git a/trytond_dashboard.egg-info/SOURCES.txt b/trytond_dashboard.egg-info/SOURCES.txt
index 1551f5c..fed7698 100644
--- a/trytond_dashboard.egg-info/SOURCES.txt
+++ b/trytond_dashboard.egg-info/SOURCES.txt
@@ -19,10 +19,6 @@ setup.py
./res.py
./tests/__init__.py
./tests/test_dashboard.py
-tests/__init__.py
-tests/__init__.pyc
-tests/test_dashboard.py
-tests/test_dashboard.pyc
trytond_dashboard.egg-info/PKG-INFO
trytond_dashboard.egg-info/SOURCES.txt
trytond_dashboard.egg-info/dependency_links.txt
--
tryton-modules-dashboard
More information about the tryton-debian-vcs
mailing list