[tryton-debian-vcs] tryton-modules-dashboard branch debian-squeeze-1.6 created. 2885d5cf2e61d6c34219afada41c64f9f7085d12

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Nov 27 17:02:04 UTC 2013


The following commit has been merged in the debian-squeeze-1.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-dashboard.git;a=commitdiff;h=2885d5cf2e61d6c34219afada41c64f9f7085d12
commit 2885d5cf2e61d6c34219afada41c64f9f7085d12
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat Nov 20 21:29:09 2010 +0100

    Releasing debian version 1.6.1-0~50squeeze1.

diff --git a/debian/changelog b/debian/changelog
index 2a105ea..5a2efd5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-dashboard (1.6.1-0~50squeeze1) unstable; urgency=low
+
+  * Merging upstream version 1.6.1.
+  * Changing my email address.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Sat, 20 Nov 2010 21:23:59 +0100
+
 tryton-modules-dashboard (1.6.0-1) unstable; urgency=low
 
   [ Daniel Baumann ]
commit ff69ac6056ba728b8d99a07d1dc1d9f7c1112893
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat Nov 20 21:16:03 2010 +0100

    Changing my email address.

diff --git a/debian/control b/debian/control
index 45097c3..d3cd451 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Debian Tryton Maintainers <tryton at lists.debian-maintainers.org>
 Uploaders:
  Daniel Baumann <daniel at debian.org>,
- Mathias Behrle <mathiasb at mbsolutions.selfip.biz>
+ Mathias Behrle <mathiasb at m9s.biz>
 Dm-Upload-Allowed: yes
 Build-Depends: debhelper (>= 7), python, python-setuptools, python-support
 Standards-Version: 3.8.4
commit 40785712e9108ee6575f174bb0bc9a0a11eb681e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat Nov 20 20:54:51 2010 +0100

    Merging 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