[tryton-debian-vcs] tryton-modules-calendar-scheduling branch debian-jessie-3.4 updated. debian/3.4.3-1-2-g9e281e6
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Dec 23 16:51:55 UTC 2015
The following commit has been merged in the debian-jessie-3.4 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-calendar-scheduling.git;a=commitdiff;h=debian/3.4.3-1-2-g9e281e6
commit 9e281e676c44b1f0c31f511902e8ef6d2842595f
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 23 15:09:19 2015 +0100
Releasing debian version 3.4.4-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index dee5c90..2a5f665 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-calendar-scheduling (3.4.4-1) unstable; urgency=medium
+
+ * Merging upstream version 3.4.4.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 23 Dec 2015 15:09:19 +0100
+
tryton-modules-calendar-scheduling (3.4.3-1) unstable; urgency=medium
* Merging upstream version 3.4.3.
commit fe6f9d97a8a1b66730bb3fc2728793a89847c46e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 23 15:09:18 2015 +0100
Merging upstream version 3.4.4.
diff --git a/CHANGELOG b/CHANGELOG
index f60e402..fbe713f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.4 - 2015-12-22
+* Bug fixes (see mercurial logs for details)
+
Version 3.4.3 - 2015-09-19
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 4bc42a9..5029845 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_calendar_scheduling
-Version: 3.4.3
+Version: 3.4.4
Summary: Tryton module to add scheduling support on CalDAV
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/calendar_.py b/calendar_.py
index 549f133..c4ae558 100644
--- a/calendar_.py
+++ b/calendar_.py
@@ -333,11 +333,11 @@ class Event:
return
actions = iter(args)
+ events_edited = set()
for events, values in zip(actions, actions):
- event_edited = False
for k in values:
if k != 'attendees':
- event_edited = True
+ events_edited.update(events)
break
# store old attendee info
@@ -384,7 +384,7 @@ class Event:
sent_succes = []
sent_fail = []
- if event_edited:
+ if event in events_edited:
if event.status == 'cancelled':
ical.method.value = 'CANCEL'
#send cancel to old attendee
@@ -445,9 +445,11 @@ class Event:
vals = {'status': 'needs-action'}
vals['schedule_status'] = '1.1' # successfully sent
- Attendee.write(sent_succes, vals)
+ if sent_succes:
+ Attendee.write(sent_succes, vals)
vals['schedule_status'] = '5.1' # could not complete delivery
- Attendee.write(sent_fail, vals)
+ if sent_fail:
+ Attendee.write(sent_fail, vals)
@classmethod
def delete(cls, events):
diff --git a/tryton.cfg b/tryton.cfg
index 7b70bb1..4745f5c 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.4.3
+version=3.4.4
depends:
calendar
ir
diff --git a/trytond_calendar_scheduling.egg-info/PKG-INFO b/trytond_calendar_scheduling.egg-info/PKG-INFO
index 85d776c..f73ee4e 100644
--- a/trytond_calendar_scheduling.egg-info/PKG-INFO
+++ b/trytond_calendar_scheduling.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-calendar-scheduling
-Version: 3.4.3
+Version: 3.4.4
Summary: Tryton module to add scheduling support on CalDAV
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-calendar-scheduling
More information about the tryton-debian-vcs
mailing list