Projects
Kolab:3.4
libkolabxml
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 28
View file
libkolabxml.spec
Changed
@@ -48,7 +48,7 @@ %else Name: libkolabxml %endif -Version: 1.0.0 +Version: 1.0.1 Release: 1%{?dist} Summary: Kolab XML format collection parser library @@ -368,6 +368,9 @@ %endif %changelog +* Wed Oct 30 2013 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 1.0.1-1 +- New upstream release + * Mon Oct 14 2013 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 1.0.0-1 - New upstream release
View file
debian.changelog
Changed
@@ -1,3 +1,9 @@ +libkolabxml (1.0.1-0~kolab1) unstable; urgency=low + + * Check in upstream release 1.0.1 + + -- Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Wed, 30 Oct 2013 16:38:05 +0200 + libkolabxml (1.0.0-0~kolab1) unstable; urgency=low * Check in upstream release 1.0.0
View file
libkolabxml-1.0.0.tar.gz/CMakeLists.txt -> libkolabxml-1.0.1.tar.gz/CMakeLists.txt
Changed
@@ -43,7 +43,7 @@ set (Libkolabxml_VERSION_MAJOR 1) set (Libkolabxml_VERSION_MINOR 0) # Enable the full x.y.z version only for release versions -set (Libkolabxml_VERSION_PATCH 0) +set (Libkolabxml_VERSION_PATCH 1) set (Libkolabxml_VERSION "${Libkolabxml_VERSION_MAJOR}.${Libkolabxml_VERSION_MINOR}.${Libkolabxml_VERSION_PATCH}" ) #set (Libkolabxml_VERSION "${Libkolabxml_VERSION_MAJOR}.${Libkolabxml_VERSION_MINOR}" )
View file
libkolabxml-1.0.0.tar.gz/src/objectvalidation.cpp -> libkolabxml-1.0.1.tar.gz/src/objectvalidation.cpp
Changed
@@ -100,7 +100,9 @@ { ASSERTVALID(todo.start()); ASSERTVALID(todo.due()); - ASSERTEQUAL(todo.start().timezone(), todo.due().timezone()); + if (todo.start().isValid() && todo.due().isValid()) { + ASSERTEQUAL(todo.start().timezone(), todo.due().timezone()); + } } void validate(const Journal& journal)
View file
libkolabxml-1.0.0.tar.gz/tests/validationtest.cpp -> libkolabxml-1.0.1.tar.gz/tests/validationtest.cpp
Changed
@@ -39,6 +39,29 @@ QCOMPARE(Kolab::error(), Kolab::NoError); } +void ValidationTest::testNoErrorOnValidTodo() +{ + { + Todo todo; + todo.setStart(cDateTime("Europe/Zurich", 2013,1,1,1,1,1)); + writeTodo(todo); + QCOMPARE(Kolab::error(), Kolab::NoError); + } + { + Todo todo; + todo.setDue(cDateTime("Europe/Zurich", 2013,1,1,1,1,1)); + writeTodo(todo); + QCOMPARE(Kolab::error(), Kolab::NoError); + } + { + Todo todo; + todo.setStart(cDateTime("Europe/Zurich", 2013,1,1,1,1,1)); + todo.setDue(cDateTime("Europe/Zurich", 2013,1,1,1,1,1)); + writeTodo(todo); + QCOMPARE(Kolab::error(), Kolab::NoError); + } +} + void ValidationTest::testOlsonTimezone() { Event event; @@ -54,6 +77,12 @@ event.setEnd(cDateTime("Europe/London",2013,1,1,1,1,1)); writeEvent(event); QCOMPARE(Kolab::error(), Kolab::Error); + + Todo todo; + todo.setStart(cDateTime("Europe/Zurich",2013,1,1,1,1,1)); + todo.setDue(cDateTime("Europe/London",2013,1,1,1,1,1)); + writeTodo(todo); + QCOMPARE(Kolab::error(), Kolab::Error); } void ValidationTest::testUTCwithTimezone()
View file
libkolabxml-1.0.0.tar.gz/tests/validationtest.h -> libkolabxml-1.0.1.tar.gz/tests/validationtest.h
Changed
@@ -26,6 +26,7 @@ private slots: void testErrorOnEmptyEvent(); void testNoErrorOnValidEvent(); + void testNoErrorOnValidTodo(); void testOlsonTimezone(); void testDifferentTimezones(); void testUTCwithTimezone();
View file
libkolabxml.dsc
Changed
@@ -2,7 +2,7 @@ Source: libkolabxml Binary: libkolabxml1, php-kolabformat, python-kolabformat, libkolabxml-dev Architecture: any -Version: 1.0.0-0~kolab1 +Version: 1.0.1-0~kolab1 Maintainer: Debian Kolab Maintainers <pkg-kolab-devel@lists.alioth.debian.org> Uploaders: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>, Paul Klos <kolab@klos2day.nl> Homepage: http://git.kolab.org/libkolabxml @@ -26,5 +26,5 @@ php-kolabformat deb libs optional python-kolabformat deb python optional Files: - 00000000000000000000000000000000 0 libkolabxml-1.0.0.tar.gz + 00000000000000000000000000000000 0 libkolabxml-1.0.1.tar.gz 00000000000000000000000000000000 0 debian.tar.gz
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.