The branch "master" has been updated. The following is a summary of the commits.
from: 8f17470c090a8098eb1e519314dfdf0e19fc6942 50c79a5... Imported Kolab_Format from Horde CVS. 1fffcbe... Completed Kolab_Format PHP5 cleanup. 9490783... Typo. 09294b1... Test fixes. 2fa0c8f... Completed testing fixes. 42f850a... Correct catching errors. a1f5cae... Error handling. ----------------------------------------------------------------------- commit 50c79a502e61dcd476c45e09a8ff29b8c17e58aa Author: Gunnar Wrobel <[email protected]> Date: Tue Jun 23 18:06:12 2009 +0200 Imported Kolab_Format from Horde CVS. framework/Kolab_Format/COPYING | 504 ++ framework/Kolab_Format/doc/Horde/Kolab/Format/usage.txt | 339 + framework/Kolab_Format/examples/Horde/Kolab/Format/event.php | 31 + framework/Kolab_Format/examples/Horde/Kolab/Format/new_type.php | 74 + framework/Kolab_Format/lib/Horde/Kolab/Format.php | 58 + framework/Kolab_Format/lib/Horde/Kolab/Format/Date.php | 113 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php | 1468 +++++ framework/Kolab_Format/lib/Horde/Kolab/Format/XML/annotation.php | 101 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML/contact.php | 519 ++ .../Kolab_Format/lib/Horde/Kolab/Format/XML/distributionlist.php | 109 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML/event.php | 138 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML/hprefs.php | 109 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML/note.php | 102 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML/task.php | 191 + framework/Kolab_Format/package.xml | 286 + framework/Kolab_Format/test/Horde/Kolab/Format/AllTests.php | 64 + framework/Kolab_Format/test/Horde/Kolab/Format/ContactTest.php | 162 + framework/Kolab_Format/test/Horde/Kolab/Format/EventTest.php | 68 + framework/Kolab_Format/test/Horde/Kolab/Format/MimeAttrTest.php | 88 + .../Kolab_Format/test/Horde/Kolab/Format/PreferencesTest.php | 104 + framework/Kolab_Format/test/Horde/Kolab/Format/RecurrenceTest.php | 161 + framework/Kolab_Format/test/Horde/Kolab/Format/XmlTest.php | 303 + .../test/Horde/Kolab/Format/fixtures/contact_category.xml | 18 + .../test/Horde/Kolab/Format/fixtures/contact_mail.xml | 18 + .../Kolab_Format/test/Horde/Kolab/Format/fixtures/contact_pgp.xml | 19 + .../test/Horde/Kolab/Format/fixtures/event_umlaut.xml | 19 + .../test/Horde/Kolab/Format/fixtures/event_umlaut_broken.xml | 19 + .../test/Horde/Kolab/Format/fixtures/preferences_read_old.xml | 11 + .../test/Horde/Kolab/Format/fixtures/preferences_write_old.xml | 12 + framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/recur.xml | 40 + .../Kolab_Format/test/Horde/Kolab/Format/fixtures/recur_fail.xml | 39 + 31 files changed, 5287 insertions(+), 0 deletions(-) create mode 100644 framework/Kolab_Format/COPYING create mode 100644 framework/Kolab_Format/doc/Horde/Kolab/Format/usage.txt create mode 100644 framework/Kolab_Format/examples/Horde/Kolab/Format/event.php create mode 100644 framework/Kolab_Format/examples/Horde/Kolab/Format/new_type.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Date.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/annotation.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/contact.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/distributionlist.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/event.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/hprefs.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/note.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/task.php create mode 100644 framework/Kolab_Format/package.xml create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/AllTests.php create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/ContactTest.php create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/EventTest.php create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/MimeAttrTest.php create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/PreferencesTest.php create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/RecurrenceTest.php create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/XmlTest.php create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/contact_category.xml create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/contact_mail.xml create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/contact_pgp.xml create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/event_umlaut.xml create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/event_umlaut_broken.xml create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/preferences_read_old.xml create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/preferences_write_old.xml create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/recur.xml create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/recur_fail.xml http://git.horde.org/co.php/framework/Kolab_Format/COPYING?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/doc/Horde/Kolab/Format/usage.txt?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/examples/Horde/Kolab/Format/event.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/examples/Horde/Kolab/Format/new_type.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/Date.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/annotation.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/contact.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/distributionlist.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/event.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/hprefs.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/note.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/task.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/package.xml?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/AllTests.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/ContactTest.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/EventTest.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/MimeAttrTest.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/PreferencesTest.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/RecurrenceTest.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/XmlTest.php?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/contact_category.xml?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/contact_mail.xml?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/contact_pgp.xml?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/event_umlaut.xml?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/event_umlaut_broken.xml?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/preferences_read_old.xml?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/preferences_write_old.xml?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/recur.xml?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa http://git.horde.org/co.php/framework/Kolab_Format/test/Horde/Kolab/Format/fixtures/recur_fail.xml?rt=horde-git&r=50c79a502e61dcd476c45e09a8ff29b8c17e58aa ----------------------------------------------------------------------- commit 1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 Author: Gunnar Wrobel <[email protected]> Date: Mon Jun 29 05:52:03 2009 +0200 Completed Kolab_Format PHP5 cleanup. framework/Kolab_Format/lib/Horde/Kolab/Format.php | 93 +- framework/Kolab_Format/lib/Horde/Kolab/Format/Date.php | 44 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php | 737 ++--- framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Annotation.php | 109 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Contact.php | 528 +++ .../Kolab_Format/lib/Horde/Kolab/Format/XML/Distributionlist.php | 116 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Event.php | 142 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Hprefs.php | 119 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Note.php | 109 + framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Task.php | 202 ++ framework/Kolab_Format/lib/Horde/Kolab/Format/XML/annotation.php | 101 - framework/Kolab_Format/lib/Horde/Kolab/Format/XML/contact.php | 519 --- .../Kolab_Format/lib/Horde/Kolab/Format/XML/distributionlist.php | 109 - framework/Kolab_Format/lib/Horde/Kolab/Format/XML/event.php | 138 - framework/Kolab_Format/lib/Horde/Kolab/Format/XML/hprefs.php | 109 - framework/Kolab_Format/lib/Horde/Kolab/Format/XML/note.php | 102 - framework/Kolab_Format/lib/Horde/Kolab/Format/XML/task.php | 191 -- 17 files changed, 1771 insertions(+), 1697 deletions(-) create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Annotation.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Contact.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Distributionlist.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Event.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Hprefs.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Note.php create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Task.php delete mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/annotation.php delete mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/contact.php delete mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/distributionlist.php delete mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/event.php delete mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/hprefs.php delete mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/note.php delete mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/XML/task.php http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/Date.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Annotation.php?rt=horde-git&r=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Contact.php?rt=horde-git&r=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Distributionlist.php?rt=horde-git&r=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Event.php?rt=horde-git&r=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Hprefs.php?rt=horde-git&r=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Note.php?rt=horde-git&r=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/co.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Task.php?rt=horde-git&r=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/annotation.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/contact.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/distributionlist.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/event.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/hprefs.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/note.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/task.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9 ----------------------------------------------------------------------- commit 9490783fbacbb2974f64557302cc4941c0c7828c Author: Gunnar Wrobel <[email protected]> Date: Mon Jun 29 05:48:32 2009 +0200 Typo. framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php?rt=horde-git&r1=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9&r2=9490783fbacbb2974f64557302cc4941c0c7828c ----------------------------------------------------------------------- commit 09294b1ca51c0156cfdce95d6ec6ac3545db286a Author: Gunnar Wrobel <[email protected]> Date: Mon Jun 29 06:12:13 2009 +0200 Test fixes. framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php | 4 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Annotation.php | 2 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Contact.php | 2 +- .../Kolab_Format/lib/Horde/Kolab/Format/XML/Distributionlist.php | 2 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Event.php | 2 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Hprefs.php | 6 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Note.php | 2 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Task.php | 2 +- framework/Kolab_Format/package.xml | 28 ++-- framework/Kolab_Format/test/Horde/Kolab/Format/ContactTest.php | 2 +- .../Kolab_Format/test/Horde/Kolab/Format/PreferencesTest.php | 2 +- framework/Kolab_Format/test/Horde/Kolab/Format/XmlTest.php | 20 ++-- 12 files changed, 37 insertions(+), 37 deletions(-) http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php?rt=horde-git&r1=9490783fbacbb2974f64557302cc4941c0c7828c&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Annotation.php?rt=horde-git&r1=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Contact.php?rt=horde-git&r1=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Distributionlist.php?rt=horde-git&r1=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Event.php?rt=horde-git&r1=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Hprefs.php?rt=horde-git&r1=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Note.php?rt=horde-git&r1=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Task.php?rt=horde-git&r1=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/package.xml?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/ContactTest.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/PreferencesTest.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/XmlTest.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=09294b1ca51c0156cfdce95d6ec6ac3545db286a ----------------------------------------------------------------------- commit 2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6 Author: Gunnar Wrobel <[email protected]> Date: Mon Jun 29 07:31:56 2009 +0200 Completed testing fixes. framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php | 30 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Event.php | 2 +- framework/Kolab_Format/test/Horde/Kolab/Format/ContactTest.php | 4 +- framework/Kolab_Format/test/Horde/Kolab/Format/EventTest.php | 10 +- .../Kolab_Format/test/Horde/Kolab/Format/PreferencesTest.php | 4 +- framework/Kolab_Format/test/Horde/Kolab/Format/RecurrenceTest.php | 8 +- framework/Kolab_Format/test/Horde/Kolab/Format/XmlTest.php | 159 +++-- 7 files changed, 125 insertions(+), 92 deletions(-) http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6 http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Event.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6 http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/ContactTest.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6 http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/EventTest.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6 http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/PreferencesTest.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6 http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/RecurrenceTest.php?rt=horde-git&r1=50c79a502e61dcd476c45e09a8ff29b8c17e58aa&r2=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6 http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/XmlTest.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6 ----------------------------------------------------------------------- commit 42f850acb04d7a6e291e8d4497c8bc47e6535da8 Author: Gunnar Wrobel <[email protected]> Date: Mon Jun 29 07:44:07 2009 +0200 Correct catching errors. framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php | 9 +++------ 1 files changed, 3 insertions(+), 6 deletions(-) http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php?rt=horde-git&r1=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6&r2=42f850acb04d7a6e291e8d4497c8bc47e6535da8 ----------------------------------------------------------------------- commit a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac Author: Gunnar Wrobel <[email protected]> Date: Mon Jun 29 07:55:55 2009 +0200 Error handling. framework/Kolab_Format/lib/Horde/Kolab/Format.php | 3 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php | 10 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Annotation.php | 3 - framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Contact.php | 3 - .../Kolab_Format/lib/Horde/Kolab/Format/XML/Distributionlist.php | 3 - framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Event.php | 3 - framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Hprefs.php | 4 +- framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Note.php | 3 - framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Task.php | 3 - framework/Kolab_Format/test/Horde/Kolab/Format/ContactTest.php | 15 --- framework/Kolab_Format/test/Horde/Kolab/Format/EventTest.php | 6 - .../Kolab_Format/test/Horde/Kolab/Format/PreferencesTest.php | 9 -- framework/Kolab_Format/test/Horde/Kolab/Format/RecurrenceTest.php | 23 +---- 13 files changed, 10 insertions(+), 78 deletions(-) http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format.php?rt=horde-git&r1=1fffcbe6ca9a8deb3708dcfcfa99c2e74be56db9&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML.php?rt=horde-git&r1=42f850acb04d7a6e291e8d4497c8bc47e6535da8&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Annotation.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Contact.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Distributionlist.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Event.php?rt=horde-git&r1=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Hprefs.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Note.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/lib/Horde/Kolab/Format/XML/Task.php?rt=horde-git&r1=09294b1ca51c0156cfdce95d6ec6ac3545db286a&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/ContactTest.php?rt=horde-git&r1=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/EventTest.php?rt=horde-git&r1=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/PreferencesTest.php?rt=horde-git&r1=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac http://git.horde.org/diff.php/framework/Kolab_Format/test/Horde/Kolab/Format/RecurrenceTest.php?rt=horde-git&r1=2fa0c8fc0f39cdf2f5a1bd7de8afbbb0ee98cbf6&r2=a1f5cae4e84cfa8c5637a96a60a913290ac6e7ac __ commits mailing list Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [email protected]
