[tryton-debian-vcs] tryton-modules-calendar-scheduling branch upstream-2.2 created. de955ad4343fe7ea84a008c9f35254304dab0003
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Nov 27 16:59:51 UTC 2013
The following commit has been merged in the upstream-2.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-calendar-scheduling.git;a=commitdiff;h=de955ad4343fe7ea84a008c9f35254304dab0003
commit de955ad4343fe7ea84a008c9f35254304dab0003
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Sep 12 15:45:18 2012 +0200
Adding upstream version 2.2.2.
diff --git a/CHANGELOG b/CHANGELOG
index 4646a7a..069a2fd 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.2.2 - 2012-09-02
+* Bug fixes (see mercurial logs for details)
+
Version 2.2.1 - 2011-12-26
* Bug fixes (see mercurial logs for details)
diff --git a/COPYRIGHT b/COPYRIGHT
index 1245dd5..0650193 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2009-2011 Cédric Krier.
+Copyright (C) 2009-2012 Cédric Krier.
Copyright (C) 2009-2011 Bertrand Chenal.
-Copyright (C) 2009-2011 B2CK SPRL.
+Copyright (C) 2009-2012 B2CK SPRL.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index f126c62..6b6bd14 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.0
Name: trytond_calendar_scheduling
-Version: 2.2.1
+Version: 2.2.2
Summary: Add Scheduling support on CalDAV
Home-page: http://www.tryton.org/
Author: B2CK
diff --git a/__tryton__.py b/__tryton__.py
index 52bc346..5e856aa 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -9,7 +9,7 @@
'name_es_ES' : 'Planificador del calendario',
'name_fr_FR' : 'Programmation calendrier',
'name_ru_RU' : 'Календарное планирование',
- 'version' : '2.2.1',
+ 'version': '2.2.2',
'author' : 'B2CK',
'email': 'info at b2ck.com',
'website': 'http://www.tryton.org/',
diff --git a/calendar.py b/calendar.py
index 436604e..895fc69 100644
--- a/calendar.py
+++ b/calendar.py
@@ -759,7 +759,7 @@ class EventAttendee(ModelSQL, ModelView):
attendees = self.browse(ids)
for attendee in attendees:
owner = attendee.event.calendar.owner
- if not owner.calendar_email_notification_partstat:
+ if not owner or not owner.calendar_email_notification_partstat:
continue
organizer = self.organiser_to_notify(attendee)
if not organizer:
@@ -804,7 +804,7 @@ class EventAttendee(ModelSQL, ModelView):
if attendee.status == 'declined':
continue
- if not owner.calendar_email_notification_partstat:
+ if not owner or not owner.calendar_email_notification_partstat:
continue
organizer = self.organiser_to_notify(attendee)
if not organizer:
@@ -846,7 +846,7 @@ class EventAttendee(ModelSQL, ModelView):
if (not attendee.status) or attendee.status in ('', 'needs-action'):
return res_id
- if not owner.calendar_email_notification_partstat:
+ if not owner or not owner.calendar_email_notification_partstat:
return res_id
organizer = self.organiser_to_notify(attendee)
if not organizer:
diff --git a/trytond_calendar_scheduling.egg-info/PKG-INFO b/trytond_calendar_scheduling.egg-info/PKG-INFO
index 2dc3b3c..5085b59 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
+Metadata-Version: 1.0
Name: trytond-calendar-scheduling
-Version: 2.2.1
+Version: 2.2.2
Summary: Add Scheduling support on CalDAV
Home-page: http://www.tryton.org/
Author: B2CK
--
tryton-modules-calendar-scheduling
More information about the tryton-debian-vcs
mailing list