[tryton-debian-vcs] tryton-modules-calendar-classification branch upstream updated. upstream/3.2.0-1-g8302755

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Thu Oct 23 12:15:01 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-modules-calendar-classification.git;a=commitdiff;h=upstream/3.2.0-1-g8302755

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

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

diff --git a/CHANGELOG b/CHANGELOG
index 468af02..787a3a3 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.0 - 2014-10-20
+* Bug fixes (see mercurial logs for details)
+
 Version 3.2.0 - 2014-04-21
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 2cdcc3a..b7feacd 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_calendar_classification
-Version: 3.2.0
+Version: 3.4.0
 Summary: Tryton module to add classification access to events
 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: trytond_calendar_classification
         ===============================
         
diff --git a/calendar_.py b/calendar_.py
index 16a6371..e101500 100644
--- a/calendar_.py
+++ b/calendar_.py
@@ -2,7 +2,7 @@
 #this repository contains the full copyright notices and license terms.
 import vobject
 
-from trytond.tools import reduce_ids
+from trytond.tools import reduce_ids, grouped_slice
 from trytond.transaction import Transaction
 from trytond.pool import Pool, PoolMeta
 
@@ -97,8 +97,7 @@ class Event:
         writable_ids = []
         domain = Rule.domain_get(cls.__name__, mode='write')
         if domain:
-            for i in range(0, len(ids), cursor.IN_MAX):
-                sub_ids = ids[i:i + cursor.IN_MAX]
+            for sub_ids in grouped_slice(ids):
                 red_sql = reduce_ids(table.id, sub_ids)
                 cursor.execute(*table.select(table.id,
                         where=red_sql & table.id.in_(domain)))
diff --git a/locale/es_EC.po b/locale/es_EC.po
new file mode 100644
index 0000000..b8538d9
--- /dev/null
+++ b/locale/es_EC.po
@@ -0,0 +1,11 @@
+# 
+msgid ""
+msgstr "Content-Type: text/plain; charset=utf-8\n"
+
+msgctxt "error:calendar.event:"
+msgid "Busy"
+msgstr "Ocupado"
+
+msgctxt "error:calendar.event:"
+msgid "Free"
+msgstr "Libre"
diff --git a/tryton.cfg b/tryton.cfg
index 02265fe..2f6ba6b 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.2.0
+version=3.4.0
 depends:
     calendar
     ir
diff --git a/trytond_calendar_classification.egg-info/PKG-INFO b/trytond_calendar_classification.egg-info/PKG-INFO
index f8c5917..ceb3f5d 100644
--- a/trytond_calendar_classification.egg-info/PKG-INFO
+++ b/trytond_calendar_classification.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-calendar-classification
-Version: 3.2.0
+Version: 3.4.0
 Summary: Tryton module to add classification access to events
 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: trytond_calendar_classification
         ===============================
         
diff --git a/trytond_calendar_classification.egg-info/SOURCES.txt b/trytond_calendar_classification.egg-info/SOURCES.txt
index ff569b1..74ae8a7 100644
--- a/trytond_calendar_classification.egg-info/SOURCES.txt
+++ b/trytond_calendar_classification.egg-info/SOURCES.txt
@@ -8,12 +8,26 @@ setup.py
 tryton.cfg
 ./__init__.py
 ./calendar_.py
+./tryton.cfg
+./locale/bg_BG.po
+./locale/ca_ES.po
+./locale/cs_CZ.po
+./locale/de_DE.po
+./locale/es_AR.po
+./locale/es_CO.po
+./locale/es_EC.po
+./locale/es_ES.po
+./locale/fr_FR.po
+./locale/nl_NL.po
+./locale/ru_RU.po
+./locale/sl_SI.po
 locale/bg_BG.po
 locale/ca_ES.po
 locale/cs_CZ.po
 locale/de_DE.po
 locale/es_AR.po
 locale/es_CO.po
+locale/es_EC.po
 locale/es_ES.po
 locale/fr_FR.po
 locale/nl_NL.po
diff --git a/trytond_calendar_classification.egg-info/requires.txt b/trytond_calendar_classification.egg-info/requires.txt
index b3a32ff..4a027be 100644
--- a/trytond_calendar_classification.egg-info/requires.txt
+++ b/trytond_calendar_classification.egg-info/requires.txt
@@ -1,3 +1,3 @@
 vobject >= 0.8.0
-trytond_calendar >= 3.2, < 3.3
-trytond >= 3.2, < 3.3
\ No newline at end of file
+trytond_calendar >= 3.4, < 3.5
+trytond >= 3.4, < 3.5
\ No newline at end of file
-- 
tryton-modules-calendar-classification



More information about the tryton-debian-vcs mailing list