[commits] Horde branch master updated. content-1.0.0alpha1-86-g3075121

Gunnar Wrobel p at rdus.de
Fri Mar 11 07:41:07 UTC 2011


The branch "master" has been updated.
The following is a summary of the commits.

from: d63e615b6e5c990426bba7dfbca8a457785a9dbb

bca1e14 Remove obsolete functions dealing with MIME specific details (now handled withing Kolab_Storage). Tweak the load/save methods to deal with resources only. phpdoc.
2d4be1d All decorators overwrite these anyhow.
10b1565 Obsolete but missed in the first commit.
3af5b1d Start a stream based XML handler.
85014e5 Fix and test the parse error.
31024f9 MissingValue exception.
b41034d MissingUid exception.
7dae6fa Fix class name.
dc5c087 Fix missing value.
86ef8f4 Use new exception types.
1a52a36 Simple test for saving notes.
57f4a32 Update package.xml.
2ff21e7 No translations anymore.
c8092f7 Completed.
2b04fdc Revert "Start a stream based XML handler."
e52656a phpdoc.
90a5ed6 Add an object type that provides an XML envelope around arbitrary data.
61777bc phpdoc.
0654de9 Allow manipulation of the root note.
bca66d8 Support storing arbitrary XML.
db015da Only do this when adding text nodes.
aa6d030 phpdoc
75d775c Provide the factory to the Xml handler. Clean up testing while adapting to the change.
5365e86 Extract class.
75076e0 Add a ledger module.
c4f02c7 Start a ledger handler.
7a8589a phpdoc
3634523 Support importing data.
c415e1b Support the ledger namespaces.
3075121 Support the ledger object type.

-----------------------------------------------------------------------

commit bca1e149a283f46e98ee897b068924efe0a10385
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 22:11:19 2011 +0100

    Remove obsolete functions dealing with MIME specific details (now handled withing Kolab_Storage). Tweak the load/save methods to deal with resources only. phpdoc.

 framework/Kolab_Format/lib/Horde/Kolab/Format.php                 |   33 +---
 framework/Kolab_Format/lib/Horde/Kolab/Format/Decorator/Base.php  |   44 +----
 .../Kolab_Format/lib/Horde/Kolab/Format/Decorator/Memory.php      |   14 +-
 framework/Kolab_Format/lib/Horde/Kolab/Format/Decorator/Timed.php |   14 +-
 framework/Kolab_Format/lib/Horde/Kolab/Format/Translation.php     |   27 ++-
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml.php             |   14 +-
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Contact.php     |    4 +-
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Hprefs.php      |   14 +-
 .../test/Horde/Kolab/Format/Unit/Decorator/MemoryTest.php         |   30 ---
 .../test/Horde/Kolab/Format/Unit/Decorator/TimedTest.php          |   30 ---
 10 files changed, 63 insertions(+), 161 deletions(-)

http://git.horde.org/horde-git/-/commit/bca1e149a283f46e98ee897b068924efe0a10385

-----------------------------------------------------------------------

commit 2d4be1dafc8b3d6c2553028dd1802aeefc8e980b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 22:16:09 2011 +0100

    All decorators overwrite these anyhow.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Decorator/Base.php |   30 +-----
 1 files changed, 1 insertions(+), 29 deletions(-)

http://git.horde.org/horde-git/-/commit/2d4be1dafc8b3d6c2553028dd1802aeefc8e980b

-----------------------------------------------------------------------

commit 10b156572719be1c992509ae072cd5ab2c30fc8a
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 22:19:40 2011 +0100

    Obsolete but missed in the first commit.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml.php             |   37 ---
 .../test/Horde/Kolab/Format/Integration/MimeAttrTest.php          |   71 -----
 2 files changed, 0 insertions(+), 108 deletions(-)
 delete mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/Integration/MimeAttrTest.php

http://git.horde.org/horde-git/-/commit/10b156572719be1c992509ae072cd5ab2c30fc8a

-----------------------------------------------------------------------

commit 3af5b1dd12e611344d9d6122f7158e59844a8c88
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 22:35:22 2011 +0100

    Start a stream based XML handler.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Factory.php         |    4 +
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xmlstream.php       |   59 +++++
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xmlstream/Raw.php   |   33 +++
 framework/Kolab_Format/package.xml                                |   10 +-
 .../Kolab_Format/test/Horde/Kolab/Format/Unit/FactoryTest.php     |   17 ++
 5 files changed, 120 insertions(+), 3 deletions(-)
 create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Xmlstream.php
 create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Xmlstream/Raw.php

http://git.horde.org/horde-git/-/commit/3af5b1dd12e611344d9d6122f7158e59844a8c88

-----------------------------------------------------------------------

commit 85014e525e1e26e817fd4558fabb95d661d7b7af
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 23:16:26 2011 +0100

    Fix and test the parse error.

 .../Kolab_Format/lib/Horde/Kolab/Format/Exception/ParseError.php  |   24 ++-
 .../test/Horde/Kolab/Format/Unit/Exception/ParseErrorTest.php     |   66 +++++
 2 files changed, 88 insertions(+), 2 deletions(-)
 create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/Unit/Exception/ParseErrorTest.php

http://git.horde.org/horde-git/-/commit/85014e525e1e26e817fd4558fabb95d661d7b7af

-----------------------------------------------------------------------

commit 31024f9578b9e47711053412e2ceb3e66c38a6bf
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 23:36:39 2011 +0100

    MissingValue exception.

 .../lib/Horde/Kolab/Format/Exception/MissingValue.php             |   63 +++++
 .../test/Horde/Kolab/Format/Unit/Exception/MissingValueTest.php   |   55 ++++
 2 files changed, 118 insertions(+), 0 deletions(-)
 create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Exception/MissingValue.php
 create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/Unit/Exception/MissingValueTest.php

http://git.horde.org/horde-git/-/commit/31024f9578b9e47711053412e2ceb3e66c38a6bf

-----------------------------------------------------------------------

commit b41034d80e6eeb22f4545dc197c37cfa5e081da3
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 23:42:49 2011 +0100

    MissingUid exception.

 .../Kolab_Format/lib/Horde/Kolab/Format/Exception/MissingUid.php  |   38 ++++
 .../test/Horde/Kolab/Format/Unit/Exception/MissingUidTest.php     |   46 +++++
 2 files changed, 84 insertions(+), 0 deletions(-)
 create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Exception/MissingUid.php
 create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/Unit/Exception/MissingUidTest.php

http://git.horde.org/horde-git/-/commit/b41034d80e6eeb22f4545dc197c37cfa5e081da3

-----------------------------------------------------------------------

commit 7dae6fada90db7e246d09844674d59afb759ec80
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 23:50:00 2011 +0100

    Fix class name.

 .../test/Horde/Kolab/Format/Unit/Exception/ParseErrorTest.php     |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/7dae6fada90db7e246d09844674d59afb759ec80

-----------------------------------------------------------------------

commit dc5c087743c4861bc71a78b4623431dc6d07f398
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 23:53:22 2011 +0100

    Fix missing value.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Note.php |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/dc5c087743c4861bc71a78b4623431dc6d07f398

-----------------------------------------------------------------------

commit 86ef8f4975c433cda25dd2c7194de4a5b20636e0
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 23:53:50 2011 +0100

    Use new exception types.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml.php |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/86ef8f4975c433cda25dd2c7194de4a5b20636e0

-----------------------------------------------------------------------

commit 1a52a360ca41b49a802770ab8212a76fd9e1ea4b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 23:54:05 2011 +0100

    Simple test for saving notes.

 framework/Kolab_Format/test/Horde/Kolab/Format/Unit/XmlTest.php |   54 +++++++
 1 files changed, 54 insertions(+), 0 deletions(-)
 create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/Unit/XmlTest.php

http://git.horde.org/horde-git/-/commit/1a52a360ca41b49a802770ab8212a76fd9e1ea4b

-----------------------------------------------------------------------

commit 57f4a32fb9fef9c4d3fa1334eef2eccc97b423d9
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 8 23:54:21 2011 +0100

    Update package.xml.

 framework/Kolab_Format/package.xml |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/57f4a32fb9fef9c4d3fa1334eef2eccc97b423d9

-----------------------------------------------------------------------

commit 2ff21e729ad989a03404bc15e4e0627888f66b9f
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Mar 9 00:04:08 2011 +0100

    No translations anymore.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Translation.php     |   63 -
 framework/Kolab_Format/locale/Horde_Kolab_Format.pot              |   31 -
 .../Kolab_Format/locale/ar/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/ar/LC_MESSAGES/Horde_Kolab_Format.po      |   29 -
 .../Kolab_Format/locale/bg/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/bg/LC_MESSAGES/Horde_Kolab_Format.po      |   29 -
 .../Kolab_Format/locale/bs/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/bs/LC_MESSAGES/Horde_Kolab_Format.po      |   29 -
 .../Kolab_Format/locale/ca/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/ca/LC_MESSAGES/Horde_Kolab_Format.po      |   29 -
 .../Kolab_Format/locale/cs/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 457 -> 0 bytes
 .../Kolab_Format/locale/cs/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/da/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 430 -> 0 bytes
 .../Kolab_Format/locale/da/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/de/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 715 -> 0 bytes
 .../Kolab_Format/locale/de/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/el/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 430 -> 0 bytes
 .../Kolab_Format/locale/el/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/en/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 740 -> 0 bytes
 .../Kolab_Format/locale/en/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/es/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 781 -> 0 bytes
 .../Kolab_Format/locale/es/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/et/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 636 -> 0 bytes
 .../Kolab_Format/locale/et/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/eu/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/eu/LC_MESSAGES/Horde_Kolab_Format.po      |   16 -
 .../Kolab_Format/locale/fa/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/fa/LC_MESSAGES/Horde_Kolab_Format.po      |   29 -
 .../Kolab_Format/locale/fi/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 748 -> 0 bytes
 .../Kolab_Format/locale/fi/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/fr/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 658 -> 0 bytes
 .../Kolab_Format/locale/fr/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/gl/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/gl/LC_MESSAGES/Horde_Kolab_Format.po      |   29 -
 .../Kolab_Format/locale/he/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 430 -> 0 bytes
 .../Kolab_Format/locale/he/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/hr/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 834 -> 0 bytes
 .../Kolab_Format/locale/hr/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/hu/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 652 -> 0 bytes
 .../Kolab_Format/locale/hu/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/id/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/id/LC_MESSAGES/Horde_Kolab_Format.po      |   29 -
 .../Kolab_Format/locale/is/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/is/LC_MESSAGES/Horde_Kolab_Format.po      |   29 -
 .../Kolab_Format/locale/it/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 760 -> 0 bytes
 .../Kolab_Format/locale/it/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/ja/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 663 -> 0 bytes
 .../Kolab_Format/locale/ja/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/km/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/km/LC_MESSAGES/Horde_Kolab_Format.po      |   29 -
 .../Kolab_Format/locale/ko/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 423 -> 0 bytes
 .../Kolab_Format/locale/ko/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/lt/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 682 -> 0 bytes
 .../Kolab_Format/locale/lt/LC_MESSAGES/Horde_Kolab_Format.po      |   32 -
 .../Kolab_Format/locale/lv/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 465 -> 0 bytes
 .../Kolab_Format/locale/lv/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/mk/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/mk/LC_MESSAGES/Horde_Kolab_Format.po      |   29 -
 .../Kolab_Format/locale/nb/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 430 -> 0 bytes
 .../Kolab_Format/locale/nb/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/nl/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 430 -> 0 bytes
 .../Kolab_Format/locale/nl/LC_MESSAGES/Horde_Kolab_Format.po      |   17 -
 .../Kolab_Format/locale/nn/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 430 -> 0 bytes
 .../Kolab_Format/locale/nn/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/pl/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 488 -> 0 bytes
 .../Kolab_Format/locale/pl/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/pt/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 430 -> 0 bytes
 .../Kolab_Format/locale/pt/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/pt_BR/LC_MESSAGES/Horde_Kolab_Format.mo   |  Bin 754 -> 0 bytes
 .../Kolab_Format/locale/pt_BR/LC_MESSAGES/Horde_Kolab_Format.po   |   30 -
 .../Kolab_Format/locale/ro/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 476 -> 0 bytes
 .../Kolab_Format/locale/ro/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/ru/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 657 -> 0 bytes
 .../Kolab_Format/locale/ru/LC_MESSAGES/Horde_Kolab_Format.po      |   33 -
 .../Kolab_Format/locale/sk/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 791 -> 0 bytes
 .../Kolab_Format/locale/sk/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/sl/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 482 -> 0 bytes
 .../Kolab_Format/locale/sl/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/sv/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 430 -> 0 bytes
 .../Kolab_Format/locale/sv/LC_MESSAGES/Horde_Kolab_Format.po      |   30 -
 .../Kolab_Format/locale/tr/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 632 -> 0 bytes
 .../Kolab_Format/locale/tr/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/uk/LC_MESSAGES/Horde_Kolab_Format.mo      |  Bin 504 -> 0 bytes
 .../Kolab_Format/locale/uk/LC_MESSAGES/Horde_Kolab_Format.po      |   31 -
 .../Kolab_Format/locale/zh_CN/LC_MESSAGES/Horde_Kolab_Format.mo   |  Bin 387 -> 0 bytes
 .../Kolab_Format/locale/zh_CN/LC_MESSAGES/Horde_Kolab_Format.po   |   29 -
 .../Kolab_Format/locale/zh_TW/LC_MESSAGES/Horde_Kolab_Format.mo   |  Bin 710 -> 0 bytes
 .../Kolab_Format/locale/zh_TW/LC_MESSAGES/Horde_Kolab_Format.po   |   29 -
 framework/Kolab_Format/package.xml                                |  369 +----
 89 files changed, 9 insertions(+), 1722 deletions(-)
 delete mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Translation.php
 delete mode 100644 framework/Kolab_Format/locale/Horde_Kolab_Format.pot
 delete mode 100644 framework/Kolab_Format/locale/ar/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/ar/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/bg/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/bg/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/bs/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/bs/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/ca/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/ca/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/cs/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/cs/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/da/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/da/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/de/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/de/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/el/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/el/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/en/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/en/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/es/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/es/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/et/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/et/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/eu/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/eu/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/fa/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/fa/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/fi/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/fi/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/fr/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/fr/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/gl/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/gl/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/he/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/he/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/hr/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/hr/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/hu/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/hu/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/id/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/id/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/is/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/is/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/it/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/it/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/ja/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/ja/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/km/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/km/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/ko/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/ko/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/lt/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/lt/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/lv/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/lv/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/mk/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/mk/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/nb/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/nb/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/nl/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/nl/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/nn/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/nn/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/pl/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/pl/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/pt/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/pt/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/pt_BR/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/pt_BR/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/ro/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/ro/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/ru/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/ru/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/sk/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/sk/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/sl/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/sl/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/sv/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/sv/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/tr/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/tr/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/uk/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/uk/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/zh_CN/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/zh_CN/LC_MESSAGES/Horde_Kolab_Format.po
 delete mode 100644 framework/Kolab_Format/locale/zh_TW/LC_MESSAGES/Horde_Kolab_Format.mo
 delete mode 100644 framework/Kolab_Format/locale/zh_TW/LC_MESSAGES/Horde_Kolab_Format.po

http://git.horde.org/horde-git/-/commit/2ff21e729ad989a03404bc15e4e0627888f66b9f

-----------------------------------------------------------------------

commit c8092f7356f171f3a22250400f554647d3c667f0
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Mar 9 00:13:29 2011 +0100

    Completed.

 framework/Kolab_Format/TODO |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/c8092f7356f171f3a22250400f554647d3c667f0

-----------------------------------------------------------------------

commit 2b04fdc2c1b7484f31c1ee858eadb119cce6e04c
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Mar 9 00:47:24 2011 +0100

    Revert "Start a stream based XML handler."
    
    This reverts commit 7bf06cf2bf1cab084c3793c77de0d5ebe8a3f78d.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Factory.php         |    4 -
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xmlstream.php       |   59 ---
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xmlstream/Raw.php   |   33 --
 framework/Kolab_Format/package.xml                                |  101 ++++-
 .../Kolab_Format/test/Horde/Kolab/Format/Unit/FactoryTest.php     |   17 -
 5 files changed, 94 insertions(+), 120 deletions(-)
 delete mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Xmlstream.php
 delete mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Xmlstream/Raw.php

http://git.horde.org/horde-git/-/commit/2b04fdc2c1b7484f31c1ee858eadb119cce6e04c

-----------------------------------------------------------------------

commit e52656a72708c02c85a796bb98211e9c72149276
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Mar 9 17:29:28 2011 +0100

    phpdoc.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Note.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/e52656a72708c02c85a796bb98211e9c72149276

-----------------------------------------------------------------------

commit 90a5ed60b8e12e26142122ccb8d0ccc4d3c3b54f
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Mar 9 17:32:47 2011 +0100

    Add an object type that provides an XML envelope around arbitrary data.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Envelope.php    |   31 ++
 framework/Kolab_Format/package.xml                                |  105 +----
 .../test/Horde/Kolab/Format/Unit/Xml/EnvelopeTest.php             |   47 ++
 3 files changed, 86 insertions(+), 97 deletions(-)
 create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Envelope.php
 create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/Unit/Xml/EnvelopeTest.php

http://git.horde.org/horde-git/-/commit/90a5ed60b8e12e26142122ccb8d0ccc4d3c3b54f

-----------------------------------------------------------------------

commit 61777bcce7383b3fef617fde5a3fb373b06fc51d
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Mar 9 17:33:04 2011 +0100

    phpdoc.

 framework/Kolab_Format/test/Horde/Kolab/Format/Unit/XmlTest.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/61777bcce7383b3fef617fde5a3fb373b06fc51d

-----------------------------------------------------------------------

commit 0654de93f640385d6151ae24cab8d216d5ad60e2
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Mar 9 18:10:33 2011 +0100

    Allow manipulation of the root note.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Envelope.php    |   17 +++
 .../test/Horde/Kolab/Format/Unit/Xml/EnvelopeTest.php             |   33 ++++-
 2 files changed, 47 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/0654de93f640385d6151ae24cab8d216d5ad60e2

-----------------------------------------------------------------------

commit bca66d846363e2424b7d234fb322693256960f93
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 11:04:28 2011 +0100

    Support storing arbitrary XML.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml.php             |   24 +++++
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Envelope.php    |   17 +++
 .../test/Horde/Kolab/Format/Unit/Xml/EnvelopeTest.php             |   10 ++
 3 files changed, 51 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/bca66d846363e2424b7d234fb322693256960f93

-----------------------------------------------------------------------

commit db015da216e916a9f0989e179d48a467bd381a81
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 11:20:58 2011 +0100

    Only do this when adding text nodes.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/db015da216e916a9f0989e179d48a467bd381a81

-----------------------------------------------------------------------

commit aa6d0302695dcf354225bddba2c990f8d3b65b9e
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 11:21:21 2011 +0100

    phpdoc

 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/aa6d0302695dcf354225bddba2c990f8d3b65b9e

-----------------------------------------------------------------------

commit 75d775c4e21197270fc6ca326f85dc20ebf8d18d
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 11:45:27 2011 +0100

    Provide the factory to the Xml handler. Clean up testing while adapting to the change.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Factory.php         |    1 +
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml.php             |   16 +-
 framework/Kolab_Format/package.xml                                |   12 +-
 framework/Kolab_Format/test/Horde/Kolab/Format/Autoload.php       |    3 +
 .../test/Horde/Kolab/Format/Integration/ContactTest.php           |   87 +----
 .../test/Horde/Kolab/Format/Integration/PreferencesTest.php       |   75 +---
 .../Kolab_Format/test/Horde/Kolab/Format/Integration/XmlTest.php  |   94 +----
 .../Kolab_Format/test/Horde/Kolab/Format/Stub/Contactdummy.php    |   77 ++++
 framework/Kolab_Format/test/Horde/Kolab/Format/Stub/Dummy.php     |   57 +++
 .../Kolab_Format/test/Horde/Kolab/Format/Stub/Hprefsdummy.php     |   77 ++++
 10 files changed, 273 insertions(+), 226 deletions(-)
 create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/Stub/Contactdummy.php
 create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/Stub/Dummy.php
 create mode 100644 framework/Kolab_Format/test/Horde/Kolab/Format/Stub/Hprefsdummy.php

http://git.horde.org/horde-git/-/commit/75d775c4e21197270fc6ca326f85dc20ebf8d18d

-----------------------------------------------------------------------

commit 5365e86e5975b6eabd061f81b03b596bb37abc71
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 13:15:01 2011 +0100

    Extract class.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Factory.php         |   27 ++
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml.php             |   21 +--
 .../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/XmlAppend.php    |   62 +++++
 framework/Kolab_Format/package.xml                                |    6 +-
 4 files changed, 97 insertions(+), 19 deletions(-)
 create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/XmlAppend.php

http://git.horde.org/horde-git/-/commit/5365e86e5975b6eabd061f81b03b596bb37abc71

-----------------------------------------------------------------------

commit 75076e06b2b63aa17349237366d30dff598ec0b8
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 13:39:31 2011 +0100

    Add a ledger module.

 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Ledger.php |  152 +++++++++++++
 framework/Kolab_Cli/package.xml                           |   10 +-
 2 files changed, 158 insertions(+), 4 deletions(-)
 create mode 100644 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Ledger.php

http://git.horde.org/horde-git/-/commit/75076e06b2b63aa17349237366d30dff598ec0b8

-----------------------------------------------------------------------

commit c4f02c7b9a3c028ca5866b1e2eb0c455bb830dcc
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 13:55:32 2011 +0100

    Start a ledger handler.

 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Data/Ledger.php           |   34 +++
 framework/Kolab_Cli/package.xml                                   |   14 +-
 .../Kolab_Cli/test/Horde/Kolab/Cli/Unit/Cli/Data/LedgerTest.php   |   41 +++
 framework/Kolab_Cli/test/Horde/Kolab/Cli/fixtures/ledger.xml      |   65 +++++
 4 files changed, 153 insertions(+), 1 deletions(-)
 create mode 100644 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Data/Ledger.php
 create mode 100644 framework/Kolab_Cli/test/Horde/Kolab/Cli/Unit/Cli/Data/LedgerTest.php
 create mode 100644 framework/Kolab_Cli/test/Horde/Kolab/Cli/fixtures/ledger.xml

http://git.horde.org/horde-git/-/commit/c4f02c7b9a3c028ca5866b1e2eb0c455bb830dcc

-----------------------------------------------------------------------

commit 7a8589ad9b19b2d95b47c7fb1bea2f54989093f7
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 13:55:44 2011 +0100

    phpdoc

 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/7a8589ad9b19b2d95b47c7fb1bea2f54989093f7

-----------------------------------------------------------------------

commit 3634523f8090d5cf580dccdf45582492230627cd
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 14:27:17 2011 +0100

    Support importing data.

 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Data/Ledger.php           |   42 ++++-
 .../Kolab_Cli/test/Horde/Kolab/Cli/Unit/Cli/Data/LedgerTest.php   |   29 +++-
 2 files changed, 68 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/3634523f8090d5cf580dccdf45582492230627cd

-----------------------------------------------------------------------

commit c415e1be9b496f98463a593785acb9383c753aff
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 15:35:07 2011 +0100

    Support the ledger namespaces.

 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Data/Ledger.php           |    4 +-
 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Ledger.php         |   10 ++++-
 .../Kolab_Cli/test/Horde/Kolab/Cli/Unit/Cli/Data/LedgerTest.php   |    2 +-
 3 files changed, 13 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/c415e1be9b496f98463a593785acb9383c753aff

-----------------------------------------------------------------------

commit 3075121927440234690aa5a6d340a58d3b0c6e7a
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Mar 10 15:35:38 2011 +0100

    Support the ledger object type.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Factory.php         |   13 +++--
 .../Kolab_Storage/lib/Horde/Kolab/Storage/Data/Format/Mime.php    |    6 ++
 2 files changed, 15 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/3075121927440234690aa5a6d340a58d3b0c6e7a




More information about the commits mailing list