[commits] Horde branch develop updated. 1960778fb792d6fa061ab03420e5ddb6cc0a273a

Jan Schneider jan at horde.org
Tue Dec 13 14:07:43 UTC 2011


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

from: 16eb6993a66f776bbdd01255991e9c6acf05b33f

10412ac [gwr] Alternative API to support modified dates with SQLite as well.
109a2bd Remove non-standard fields.
d3f7bd8 [gwr] Completed missing data API v1 support.
1a79a1c [gwr] Added Alarm, Cache, and Session stub factories
a806dc8 [jan] Use locale based sorting.
ceae4a8 [jan] Use locale based folder sorting.
9f71f01 Update file list.
4d0cfc8 [gwr] Fixed migrations for SQLite as database backend.
dd11353 Switch to using Horde_Test.
8b60237 Fix incompatibilities with the interface of the parent class in a backward compatible way (removing type hints).
5cec6a4 Fix deleting events. Fix pass by reference.
dea38df Changelog.
321002f [gwr] Fixed naming of the default calendar for the Kolab backend.
00ba61c [gwr] Fixed recurrence handling with the Kolab backend.
8732ae4 Optional.
407037a Tweak method name.
7049601 sprintf()
5b5b2cd Improve tests for modifyDate().
ac891bc It actually *does* make sense to keep the quoting.
d31d5b9 Add @since tags.
dc3ef87 Implement all portable interval units in sqlite.
d0813b3 [jan] Add Latvian translation (Jānis Eisaks <jancs at dv.lv>).
41541a0 [jan] Add Latvian translation (Jānis Eisaks <jancs at dv.lv>).
9238a76 Update lv translation.
4f8d3e6 Rename remaining 'query' methods.
e7eb40d Tweak wording (Bug #5501).
817413f [jan] Fix setting custom alarm methods (Bug #9543).
957d50a [jan] Hide disabled calendar sections (Bug #9815).
3652bdf Tweak
20d4802 Fix clear sort in traditional view
9f39a0a phpdoc
8c95027 [mms] Move to next message after deleting in traditional view and hiding deleted messages (Bug #10853).
9dc69ad Optimize
4c8a3f3 Fix display of messages after stripping attachments
f19376c Fix cache message determination for search mailboxes
53ba018 Require Db 1.2.0.
f5ed78a Released Horde_Auth-1.4.7
4df2187 Development mode for Horde_Auth-1.4.8
630ae66 Released Horde_Autoloader_Cache-1.0.0RC3
c467242 Development mode for Horde_Autoloader_Cache-1.0.0
f8591ae Remove debug line.
c6114c3 BFN
9e7cf70 Released Horde_Core-1.8.2
82bde70 Development mode for Horde_Core-1.8.3
1f6a72d Released Horde_Crypt-1.1.0
31c71c1 Development mode for Horde_Crypt-1.1.1
903203a Released Horde_Date-1.0.8
26443db Development mode for Horde_Date-1.0.9
8868866 Released Horde_Db-1.2.0
3d7ab30 Development mode for Horde_Db-1.2.1
82c5408 Released Horde_ActiveSync-1.1.10
6c48beb Development mode for Horde_ActiveSync-1.1.11
1b4dcc4 Add @since tag.
af19a8c Released Horde_Mime-1.4.0
fa4fb95 Development mode for Horde_Mime-1.4.1
438af81 Released Horde_Imap_Client-1.3.0
d64bde6 Development mode for Horde_Imap_Client-1.3.1
665168e Released Horde_Prefs-1.1.7
93b42e3 Development mode for Horde_Prefs-1.1.8
74ed9e5 Released Horde_Service_Weather-1.0.0RC1
5137343 Development mode for Horde_Service_Weather-1.0.0
a6cb26a Released Horde_Test-1.3.0
e6e29f8 Development mode for Horde_Test-1.3.1
5491394 Released timeobjects-1.0.5
0ce9bef Development mode for timeobjects-1.0.6
4189d56 Prepare releases.
9d10f40 Released horde-4.0.13
9387f92 Development mode for horde-4.0.14
8a23c37 Released imp-5.0.16
d2ec841 Development mode for imp-5.0.17
9876166 Released ingo-2.0.7
8c23565 Development mode for ingo-2.0.8
6da600d Released kronolith-3.0.13
5742294 Development mode for kronolith-3.0.14
bfd1437 Released nag-3.0.7
319aa1e Development mode for nag-3.0.8
f8e56ec Released mnemo-3.0.4
6d879ae Development mode for mnemo-3.0.5
b9e7253 Released whups-2.0.1
895ea1f Development mode for whups-2.0.2
01271a9 Released wicked-1.0.1
d6099e0 Development mode for wicked-1.0.2
bf92244 Fix changelogs.
62e70f4 Released groupware-4.0.5
282638c Development mode for groupware-4.0.6
e6c04db Released webmail-4.0.5
b6eea88 Development mode for webmail-4.0.6
febebbc Prepare releases.
1960778 Merge branch 'master' into develop

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

commit 10412ac76665a12d5587d3a2b5535ac799d6e469
Author: Gunnar Wrobel <p at rdus.de>
Date:   Sun Dec 11 14:54:29 2011 +0100

    [gwr] Alternative API to support modified dates with SQLite as well.
    
    "INTERVAL" is not supported on SQLite. This made our migrations fail
    for kronolith when using a SQLite backend. The existing Horde_Db
    interval() API cannot satisfy what the SQLite date/time functions need
    to achieve effects similar to "INTERVAL".
    
    I decided to add a new function (rather than hacking the signature of
    the current interval() method). This is only a very basic stub that
    allows modifying the date by a given number of days on SQLite as well.
    
    Especially the SQLite variant of the method would still need to be
    fleshed out to cover the whole spectrum that can be achieved with the
    date/time functionality in the diffent DB. In addition some test for
    the different platforms would be good.
    
    But I lack the time for this at the moment and I think it is already a
    good start if we make the default migrations work on SQLite.

 framework/Db/lib/Horde/Db/Adapter/Base/Schema.php   |   27 +++++++++++++++++++
 framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php |   25 +++++++++++++++++
 framework/Db/package.xml                            |   16 ++++++-----
 framework/Db/test/Horde/Db/Migration/BaseTest.php   |   22 +++++++++++++++
 4 files changed, 83 insertions(+), 7 deletions(-)

http://git.horde.org/horde-git/-/commit/10412ac76665a12d5587d3a2b5535ac799d6e469

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

commit 109a2bd69de0f88d9008ccc3ed4d8a092cb4095f
Author: Gunnar Wrobel <p at rdus.de>
Date:   Sun Dec 11 15:43:39 2011 +0100

    Remove non-standard fields.

 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Contact.php     |    5 -
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Task.php        |    9 +--
 .../test/Horde/Kolab/Format/Integration/ContactTest.php           |   26 -----
 3 files changed, 1 insertions(+), 39 deletions(-)

http://git.horde.org/horde-git/-/commit/109a2bd69de0f88d9008ccc3ed4d8a092cb4095f

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

commit d3f7bd8cbf9d48f42322231ccdb620e71495e60c
Author: Gunnar Wrobel <p at rdus.de>
Date:   Sun Dec 11 15:47:25 2011 +0100

    [gwr] Completed missing data API v1 support.

 .../lib/Horde/Kolab/Format/Xml/Type/Composite/Recurrence/V1.php   |   43 ++
 .../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Date/V1.php      |   90 +++
 .../lib/Horde/Kolab/Format/Xml/Type/RecurrenceRange/V1.php        |  137 +++++
 framework/Kolab_Format/package.xml                                |   22 +-
 4 files changed, 287 insertions(+), 5 deletions(-)
 create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Composite/Recurrence/V1.php
 create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Date/V1.php
 create mode 100644 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/RecurrenceRange/V1.php

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

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

commit 1a79a1cacb8060e40783cf0fcb276dce1eec0649
Author: Gunnar Wrobel <p at rdus.de>
Date:   Sun Dec 11 20:55:01 2011 +0100

    [gwr] Added Alarm, Cache, and Session stub factories

 framework/Test/lib/Horde/Test/Factory/Alarm.php   |   44 +++++++++++++++++++
 framework/Test/lib/Horde/Test/Factory/Cache.php   |   44 +++++++++++++++++++
 framework/Test/lib/Horde/Test/Factory/Session.php |   48 +++++++++++++++++++++
 framework/Test/lib/Horde/Test/Stub/Registry.php   |   23 ++++++++++
 framework/Test/package.xml                        |   22 ++++++---
 5 files changed, 174 insertions(+), 7 deletions(-)
 create mode 100644 framework/Test/lib/Horde/Test/Factory/Alarm.php
 create mode 100644 framework/Test/lib/Horde/Test/Factory/Cache.php
 create mode 100644 framework/Test/lib/Horde/Test/Factory/Session.php

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

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

commit a806dc80e64303403ad91d162956551cbd44c911
Author: Jan Schneider <jan at horde.org>
Date:   Fri Dec 9 14:20:29 2011 +0100

    [jan] Use locale based sorting.

 mnemo/docs/CHANGES  |    1 +
 mnemo/lib/Mnemo.php |   18 +++++++++---------
 mnemo/package.xml   |    2 ++
 3 files changed, 12 insertions(+), 9 deletions(-)

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

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

commit ceae4a89782f933874deaacd24ba47449c787bf2
Author: Jan Schneider <jan at horde.org>
Date:   Fri Dec 9 14:37:02 2011 +0100

    [jan] Use locale based folder sorting.

 imp/docs/CHANGES   |    1 +
 imp/js/dimpbase.js |    2 +-
 imp/package.xml    |    2 ++
 3 files changed, 4 insertions(+), 1 deletions(-)

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

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

commit 9f71f01eaf0e6b078d0967876fd3173034a5fade
Author: Jan Schneider <jan at horde.org>
Date:   Sun Dec 11 22:15:38 2011 +0100

    Update file list.

 framework/ActiveSync/package.xml |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/9f71f01eaf0e6b078d0967876fd3173034a5fade

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

commit 4d0cfc8cd950525b3e5e1730b25c044cc70d4aa5
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Dec 12 06:37:44 2011 +0100

    [gwr] Fixed migrations for SQLite as database backend.
    
    This requires the newer Horde_Db-1.2.0 API.

 kronolith/docs/CHANGES                                |    1 +
 kronolith/migration/3_kronolith_upgrade_addallday.php |    2 +-
 kronolith/package.xml                                 |    4 +++-
 3 files changed, 5 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/4d0cfc8cd950525b3e5e1730b25c044cc70d4aa5

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

commit dd11353738ec0ea5067114d5eb80ae9ca526582e
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Dec 12 06:40:25 2011 +0100

    Switch to using Horde_Test.

 kronolith/package.xml                                             |    7 +
 kronolith/test/Kronolith/Autoload.php                             |    7 +
 kronolith/test/Kronolith/Integration/Driver/Base.php              |  139 ++++
 kronolith/test/Kronolith/Integration/Driver/KolabTest.php         |   47 ++
 kronolith/test/Kronolith/Integration/Driver/Sql/Base.php          |   45 ++
 .../test/Kronolith/Integration/Driver/Sql/Pdo/SqliteTest.php      |   62 ++
 kronolith/test/Kronolith/Stub/ShareFactory.php                    |   16 +
 kronolith/test/Kronolith/Stub/Tagger.php                          |   17 +
 kronolith/test/Kronolith/Stub/Types.php                           |    8 +
 kronolith/test/Kronolith/TestCase.php                             |  151 +++-
 kronolith/test/Kronolith/Unit/KolabTest.php                       |   83 ---
 11 files changed, 461 insertions(+), 121 deletions(-)
 create mode 100644 kronolith/test/Kronolith/Integration/Driver/Base.php
 create mode 100644 kronolith/test/Kronolith/Integration/Driver/KolabTest.php
 create mode 100644 kronolith/test/Kronolith/Integration/Driver/Sql/Base.php
 create mode 100644 kronolith/test/Kronolith/Integration/Driver/Sql/Pdo/SqliteTest.php
 create mode 100644 kronolith/test/Kronolith/Stub/ShareFactory.php
 create mode 100644 kronolith/test/Kronolith/Stub/Tagger.php
 create mode 100644 kronolith/test/Kronolith/Stub/Types.php
 delete mode 100644 kronolith/test/Kronolith/Unit/KolabTest.php

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

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

commit 8b60237e8996423af49c6101bd525e2d05686b2a
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Dec 12 06:41:47 2011 +0100

    Fix incompatibilities with the interface of the parent class in a backward compatible way (removing type hints).

 kronolith/lib/Driver/Sql.php |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/8b60237e8996423af49c6101bd525e2d05686b2a

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

commit 5cec6a4f1c4e2cdac952467a634cfbf9040f13bc
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Dec 12 06:44:21 2011 +0100

    Fix deleting events. Fix pass by reference.

 kronolith/lib/Driver/Kolab.php |   38 +++++++++++++++++---------------------
 1 files changed, 17 insertions(+), 21 deletions(-)

http://git.horde.org/horde-git/-/commit/5cec6a4f1c4e2cdac952467a634cfbf9040f13bc

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

commit dea38df75bb0bb2d3a790bcc693b671e39042efa
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Dec 12 06:45:22 2011 +0100

    Changelog.

 kronolith/docs/CHANGES |    1 +
 kronolith/package.xml  |    2 ++
 2 files changed, 3 insertions(+), 0 deletions(-)

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

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

commit 321002f84a8741f85fb414f9ff41a28369c4f423
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Dec 12 06:51:03 2011 +0100

    [gwr] Fixed naming of the default calendar for the Kolab backend.

 kronolith/lib/Calendars/Base.php                                  |   70 +++
 kronolith/lib/Calendars/Default.php                               |   48 ++
 kronolith/lib/Calendars/Kolab.php                                 |   23 +
 kronolith/lib/Factory/Calendars.php                               |   69 +++
 kronolith/lib/Kronolith.php                                       |   13 +-
 kronolith/package.xml                                             |   56 ++-
 kronolith/test/Kronolith/Integration/Kronolith/Base.php           |  110 +++++
 kronolith/test/Kronolith/Integration/Kronolith/KolabTest.php      |   52 ++
 kronolith/test/Kronolith/Integration/Kronolith/Sql/Base.php       |   45 ++
 .../test/Kronolith/Integration/Kronolith/Sql/Pdo/SqliteTest.php   |   58 +++
 10 files changed, 529 insertions(+), 15 deletions(-)
 create mode 100644 kronolith/lib/Calendars/Base.php
 create mode 100644 kronolith/lib/Calendars/Default.php
 create mode 100644 kronolith/lib/Calendars/Kolab.php
 create mode 100644 kronolith/lib/Factory/Calendars.php
 create mode 100644 kronolith/test/Kronolith/Integration/Kronolith/Base.php
 create mode 100644 kronolith/test/Kronolith/Integration/Kronolith/KolabTest.php
 create mode 100644 kronolith/test/Kronolith/Integration/Kronolith/Sql/Base.php
 create mode 100644 kronolith/test/Kronolith/Integration/Kronolith/Sql/Pdo/SqliteTest.php

http://git.horde.org/horde-git/-/commit/321002f84a8741f85fb414f9ff41a28369c4f423

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

commit 00ba61cac7fc9fb04df92f64e14e199e79852b4e
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Dec 12 06:51:57 2011 +0100

    [gwr] Fixed recurrence handling with the Kolab backend.

 kronolith/docs/CHANGES        |    2 +
 kronolith/lib/Event/Kolab.php |   46 ++++++++++++++++++++++++++++++++++++++--
 kronolith/package.xml         |    2 +
 3 files changed, 47 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/00ba61cac7fc9fb04df92f64e14e199e79852b4e

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

commit 8732ae48600f7827a4f733060e44714e02770a1f
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Dec 12 07:01:16 2011 +0100

    Optional.

 kronolith/package.xml |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

http://git.horde.org/horde-git/-/commit/8732ae48600f7827a4f733060e44714e02770a1f

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

commit 407037ac01e2e5870c110d0ac674131cd3569593
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 11:28:12 2011 +0100

    Tweak method name.

 framework/Db/lib/Horde/Db/Adapter/Base/Schema.php     |    4 ++--
 framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php   |    2 +-
 framework/Db/test/Horde/Db/Migration/BaseTest.php     |    4 ++--
 kronolith/migration/3_kronolith_upgrade_addallday.php |    2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

http://git.horde.org/horde-git/-/commit/407037ac01e2e5870c110d0ac674131cd3569593

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

commit 7049601846623a5738c499b163536348559409f4
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 11:29:57 2011 +0100

    sprintf()

 framework/Db/lib/Horde/Db/Adapter/Base/Schema.php |   15 +++++----------
 1 files changed, 5 insertions(+), 10 deletions(-)

http://git.horde.org/horde-git/-/commit/7049601846623a5738c499b163536348559409f4

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

commit 5b5b2cd2c83c04ea45333782ad5e11dbca7c843f
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 12:38:43 2011 +0100

    Improve tests for modifyDate().
    
    This method hasn't anything to do with migrations, move test to the correct test
    suites.
    Generalize the test.
    Add tests for interval().
    Remove unnecessary quoting.
    Add modifyDate() implementation for PostgreSQL.

 framework/Db/lib/Horde/Db/Adapter/Base/Schema.php       |    2 +-
 framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php |   19 +++++++++
 framework/Db/test/Horde/Db/Adapter/MysqlTest.php        |   30 +++++++++++++++
 framework/Db/test/Horde/Db/Adapter/MysqliTest.php       |   30 +++++++++++++++
 framework/Db/test/Horde/Db/Adapter/Pdo/MysqlTest.php    |   30 +++++++++++++++
 framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlTest.php    |   30 +++++++++++++++
 framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php   |   23 +++++++++++
 framework/Db/test/Horde/Db/Migration/BaseTest.php       |   22 -----------
 8 files changed, 163 insertions(+), 23 deletions(-)

http://git.horde.org/horde-git/-/commit/5b5b2cd2c83c04ea45333782ad5e11dbca7c843f

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

commit ac891bc9383a060d531e9e8ab2084b2064d12fa5
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 12:43:52 2011 +0100

    It actually *does* make sense to keep the quoting.
    
    It may be necessary to use non-integer intervals at some point.

 framework/Db/lib/Horde/Db/Adapter/Base/Schema.php    |    2 +-
 framework/Db/test/Horde/Db/Adapter/MysqlTest.php     |    2 +-
 framework/Db/test/Horde/Db/Adapter/MysqliTest.php    |    2 +-
 framework/Db/test/Horde/Db/Adapter/Pdo/MysqlTest.php |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

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

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

commit d31d5b90e5bc3cab6385dbb41650a3007cbae32d
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 12:45:21 2011 +0100

    Add @since tags.

 framework/Db/lib/Horde/Db/Adapter/Base/Schema.php       |    2 ++
 framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php |    2 ++
 framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php     |    2 ++
 3 files changed, 6 insertions(+), 0 deletions(-)

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

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

commit dc3ef87c7f0b5152bb9247c37e12ed541ad70dc7
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 13:01:44 2011 +0100

    Implement all portable interval units in sqlite.

 framework/Db/lib/Horde/Db/Adapter/Base/Schema.php       |    3 +-
 framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php |    3 +-
 framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php     |   20 ++++++++++++--
 framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php   |   16 ++++++++++++
 4 files changed, 37 insertions(+), 5 deletions(-)

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

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

commit d0813b3e9572247298ec2d3f12cfda44ca031d9c
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 13:07:22 2011 +0100

    [jan] Add Latvian translation (Jānis Eisaks <jancs at dv.lv>).

 framework/Push/locale/lv/LC_MESSAGES/Horde_Push.mo |  Bin 0 -> 745 bytes
 framework/Push/locale/lv/LC_MESSAGES/Horde_Push.po |   30 ++++++++++++++++++++
 framework/Push/package.xml                         |    2 +
 3 files changed, 32 insertions(+), 0 deletions(-)
 create mode 100644 framework/Push/locale/lv/LC_MESSAGES/Horde_Push.mo
 create mode 100644 framework/Push/locale/lv/LC_MESSAGES/Horde_Push.po

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

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

commit 41541a0c334352b41ae1aa3c755f848debc7ff1e
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 13:07:43 2011 +0100

    [jan] Add Latvian translation (Jānis Eisaks <jancs at dv.lv>).

 framework/Auth/locale/lv/LC_MESSAGES/Horde_Auth.mo |  Bin 0 -> 3239 bytes
 framework/Auth/locale/lv/LC_MESSAGES/Horde_Auth.po |  103 ++++++++++++++++++++
 framework/Auth/package.xml                         |    4 +-
 3 files changed, 105 insertions(+), 2 deletions(-)
 create mode 100644 framework/Auth/locale/lv/LC_MESSAGES/Horde_Auth.mo
 create mode 100644 framework/Auth/locale/lv/LC_MESSAGES/Horde_Auth.po

http://git.horde.org/horde-git/-/commit/41541a0c334352b41ae1aa3c755f848debc7ff1e

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

commit 9238a7618874680741d110e00e5be33fe43dd538
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 13:10:24 2011 +0100

    Update lv translation.

 agora/locale/lv/LC_MESSAGES/agora.mo                              |  Bin 73150 -> 76038 bytes
 agora/locale/lv/LC_MESSAGES/agora.po                              |  445 +-
 ansel/locale/lv/LC_MESSAGES/ansel.mo                              |  Bin 80610 -> 86375 bytes
 ansel/locale/lv/LC_MESSAGES/ansel.po                              |  514 +-
 beatnik/locale/lv/LC_MESSAGES/beatnik.mo                          |  Bin 74296 -> 70270 bytes
 beatnik/locale/lv/LC_MESSAGES/beatnik.po                          |   85 +-
 beatnik/locale/lv/help.xml                                        |    8 +-
 chora/locale/lv/LC_MESSAGES/chora.mo                              |  Bin 75351 -> 68979 bytes
 folks/locale/lv/LC_MESSAGES/folks.mo                              |  Bin 78052 -> 71680 bytes
 folks/locale/lv/LC_MESSAGES/folks.po                              |    2 +-
 framework/Image/locale/lv/LC_MESSAGES/Horde_Image.mo              |  Bin 6886 -> 7013 bytes
 framework/Image/locale/lv/LC_MESSAGES/Horde_Image.po              |    9 +-
 .../locale/lv/LC_MESSAGES/Horde_Service_Weather.mo                |  Bin 0 -> 639 bytes
 .../locale/lv/LC_MESSAGES/Horde_Service_Weather.po                |   34 +
 gollem/locale/lv/LC_MESSAGES/gollem.mo                            |  Bin 79055 -> 72715 bytes
 hermes/locale/lv/LC_MESSAGES/hermes.mo                            |  Bin 76594 -> 70397 bytes
 hermes/locale/lv/LC_MESSAGES/hermes.po                            |    8 +-
 hermes/locale/lv/help.xml                                         |   18 +-
 horde/locale/lv/LC_MESSAGES/horde.mo                              |  Bin 70924 -> 64600 bytes
 horde/locale/lv/LC_MESSAGES/horde.po                              |  646 +--
 imp/locale/lv/LC_MESSAGES/imp.mo                                  |  Bin 185393 -> 179076 bytes
 imp/locale/lv/LC_MESSAGES/imp.po                                  |    4 +-
 imp/locale/lv/help.xml                                            | 1632 +++--
 ingo/locale/lv/LC_MESSAGES/ingo.mo                                |  Bin 88250 -> 81862 bytes
 ingo/locale/lv/help.xml                                           |    8 +-
 jonah/locale/lv/LC_MESSAGES/jonah.mo                              |  Bin 78682 -> 72310 bytes
 jonah/locale/lv/help.xml                                          |    6 +-
 klutz/locale/lv/LC_MESSAGES/klutz.mo                              |  Bin 73916 -> 67794 bytes
 klutz/locale/lv/LC_MESSAGES/klutz.po                              |   26 +-
 kronolith/locale/lv/LC_MESSAGES/kronolith.mo                      |  Bin 130810 -> 124457 bytes
 kronolith/locale/lv/LC_MESSAGES/kronolith.po                      |  706 +-
 kronolith/locale/lv/help.xml                                      |  103 +-
 luxor/locale/lv/LC_MESSAGES/luxor.mo                              |  Bin 72739 -> 66383 bytes
 mnemo/locale/lv/LC_MESSAGES/mnemo.mo                              |  Bin 80916 -> 74536 bytes
 mnemo/locale/lv/help.xml                                          |   10 +-
 nag/locale/lv/LC_MESSAGES/nag.mo                                  |  Bin 95035 -> 89095 bytes
 nag/locale/lv/LC_MESSAGES/nag.po                                  |  295 +-
 nag/locale/lv/help.xml                                            |    6 +-
 passwd/locale/lv/LC_MESSAGES/passwd.mo                            |  Bin 79991 -> 73571 bytes
 passwd/locale/lv/help.xml                                         |   16 +-
 sam/locale/lv/LC_MESSAGES/sam.mo                                  |  Bin 73989 -> 67521 bytes
 sesha/locale/lv/LC_MESSAGES/sesha.mo                              |  Bin 76771 -> 70399 bytes
 timeobjects/locale/lv/LC_MESSAGES/timeobjects.mo                  |  Bin 71598 -> 66193 bytes
 trean/locale/lv/LC_MESSAGES/trean.mo                              |  Bin 81362 -> 74990 bytes
 turba/locale/lv/LC_MESSAGES/turba.mo                              |  Bin 101035 -> 95011 bytes
 turba/locale/lv/LC_MESSAGES/turba.po                              |  133 +-
 turba/locale/lv/help.xml                                          |   10 +-
 ulaform/locale/lv/LC_MESSAGES/ulaform.mo                          |  Bin 76052 -> 69680 bytes
 ulaform/locale/lv/help.xml                                        |    4 +-
 vilma/locale/lv/LC_MESSAGES/vilma.mo                              |  Bin 78083 -> 72011 bytes
 vilma/locale/lv/LC_MESSAGES/vilma.po                              |   13 +-
 whups/locale/lv/LC_MESSAGES/whups.mo                              |  Bin 89138 -> 87735 bytes
 whups/locale/lv/LC_MESSAGES/whups.po                              |  409 +-
 whups/locale/lv/help.xml                                          |    4 +-
 wicked/locale/lv/LC_MESSAGES/wicked.mo                            |  Bin 71197 -> 69243 bytes
 wicked/locale/lv/LC_MESSAGES/wicked.po                            |  305 +-
 wicked/locale/lv/help.xml                                         |    6 +-
 57 files changed, 2270 insertions(+), 3195 deletions(-)
 create mode 100644 framework/Service_Weather/locale/lv/LC_MESSAGES/Horde_Service_Weather.mo
 create mode 100644 framework/Service_Weather/locale/lv/LC_MESSAGES/Horde_Service_Weather.po

http://git.horde.org/horde-git/-/commit/9238a7618874680741d110e00e5be33fe43dd538

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

commit 4f8d3e6e7b2f4ceaddd4c39bc0ea40f19fb7e2ca
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 17:04:09 2011 +0100

    Rename remaining 'query' methods.

 framework/Vcs/lib/Horde/Vcs/File/Rcs.php     |    2 +-
 framework/Vcs/lib/Horde/Vcs/Log/Git.php      |    2 +-
 framework/Vcs/lib/Horde/Vcs/Log/Rcs.php      |    2 +-
 framework/Vcs/lib/Horde/Vcs/Patchset/Git.php |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/4f8d3e6e7b2f4ceaddd4c39bc0ea40f19fb7e2ca

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

commit e7eb40df0b0913660999eba817f2e822d4e062e0
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 17:53:06 2011 +0100

    Tweak wording (Bug #5501).

 kronolith/config/prefs.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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

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

commit 817413fb9d9c1adbd8a3d6c6cee2630f1b1bff98
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 19:30:18 2011 +0100

    [jan] Fix setting custom alarm methods (Bug #9543).

 nag/docs/CHANGES                |    1 +
 nag/lib/Form/Type/NagMethod.php |    3 --
 nag/lib/Ui/VarRenderer/Nag.php  |   49 ++++++++------------------------------
 nag/package.xml                 |    2 +
 4 files changed, 14 insertions(+), 41 deletions(-)

http://git.horde.org/horde-git/-/commit/817413fb9d9c1adbd8a3d6c6cee2630f1b1bff98

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

commit 957d50afbb8deb6a194afa2a55b07bb8f4ab5da8
Author: Jan Schneider <jan at horde.org>
Date:   Mon Dec 12 19:53:50 2011 +0100

    [jan] Hide disabled calendar sections (Bug #9815).

 kronolith/docs/CHANGES              |    1 +
 kronolith/package.xml               |    2 ++
 kronolith/templates/index/index.inc |    6 +++++-
 3 files changed, 8 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/957d50afbb8deb6a194afa2a55b07bb8f4ab5da8

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

commit 3652bdfda0ff2260f273a6c7203c999c07d2d88c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Dec 12 15:30:43 2011 -0700

    Tweak

 framework/Imap_Client/lib/Horde/Imap/Client/Socket.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/3652bdfda0ff2260f273a6c7203c999c07d2d88c

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

commit 20d4802b29402ded6c4d832477e531671e9bbf4f
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Dec 12 16:06:51 2011 -0700

    Fix clear sort in traditional view

 imp/js/mailbox.js |    7 ++++---
 imp/mailbox.php   |    2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/20d4802b29402ded6c4d832477e531671e9bbf4f

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

commit 9f39a0aa5da889e1a1a47ea56368fa9ed2b213aa
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Dec 12 18:32:09 2011 -0700

    phpdoc

 imp/lib/Mailbox/List.php |    2 +-
 imp/lib/Ui/Message.php   |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/9f39a0aa5da889e1a1a47ea56368fa9ed2b213aa

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

commit 8c95027cb84599e74c9df9af4d310d64e3294136
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Dec 12 18:36:08 2011 -0700

    [mms] Move to next message after deleting in traditional view and hiding deleted messages (Bug #10853).

 imp/lib/Message.php |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/8c95027cb84599e74c9df9af4d310d64e3294136

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

commit 9dc69adde45f7b875bafb0d6520fe9bf5f0ec8b2
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Dec 13 00:31:53 2011 -0700

    Optimize

 imp/js/dimpbase.js |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/9dc69adde45f7b875bafb0d6520fe9bf5f0ec8b2

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

commit 4c8a3f3f09f260aa567e7f5c7bf365622bfabfbe
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Dec 13 01:02:51 2011 -0700

    Fix display of messages after stripping attachments

 imp/js/dimpbase.js           |   18 ++++++++++++------
 imp/lib/Ajax/Application.php |    3 ---
 2 files changed, 12 insertions(+), 9 deletions(-)

http://git.horde.org/horde-git/-/commit/4c8a3f3f09f260aa567e7f5c7bf365622bfabfbe

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

commit f19376cd916148a61f3cf00b48bda6cd5d91f93f
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Dec 13 01:03:05 2011 -0700

    Fix cache message determination for search mailboxes

 imp/lib/Views/ListMessages.php |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

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

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

commit 53ba01834101d88838c1cb1b6475ff5a323a0ac5
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:35:19 2011 +0100

    Require Db 1.2.0.

 framework/ActiveSync/package.xml |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/53ba01834101d88838c1cb1b6475ff5a323a0ac5

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

commit f5ed78a04bc3e0ea19c29ea1c0d84c53888033cf
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:38:22 2011 +0100

    Released Horde_Auth-1.4.7

 framework/Auth/package.xml |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

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

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

commit 4df21873062d6385fa2aa88b4dc5ade8de3d2df6
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:38:22 2011 +0100

    Development mode for Horde_Auth-1.4.8

 framework/Auth/package.xml |   19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/4df21873062d6385fa2aa88b4dc5ade8de3d2df6

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

commit 630ae66f301b0d93deb27dad52fcd207a8f0569b
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:40:47 2011 +0100

    Released Horde_Autoloader_Cache-1.0.0RC3

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

http://git.horde.org/horde-git/-/commit/630ae66f301b0d93deb27dad52fcd207a8f0569b

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

commit c467242f432554793120f6a6c49495c6fbdcd480
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:40:47 2011 +0100

    Development mode for Horde_Autoloader_Cache-1.0.0

 framework/Autoloader_Cache/package.xml |   19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

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

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

commit f8591aeacf71cd3caf81bbab56bb5cce94032a1c
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:43:04 2011 +0100

    Remove debug line.

 framework/Core/lib/Horde/Core/Factory/ActiveSyncServer.php |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

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

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

commit c6114c3a2d88a7511427bbddef6c128a12dde9fd
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:43:49 2011 +0100

    BFN

 framework/Core/package.xml |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

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

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

commit 9e7cf70cca57fc93f09033d2824458c4341e7ffe
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:47:01 2011 +0100

    Released Horde_Core-1.8.2

 framework/Core/package.xml |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/9e7cf70cca57fc93f09033d2824458c4341e7ffe

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

commit 82bde703b53e3a27e222a989d1aca28225a19725
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:47:02 2011 +0100

    Development mode for Horde_Core-1.8.3

 framework/Core/package.xml |   20 ++++++++++++++++----
 1 files changed, 16 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/82bde703b53e3a27e222a989d1aca28225a19725

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

commit 1f6a72dd3c4ddc00bc1c9275ca31e93ffaa632e6
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:48:34 2011 +0100

    Released Horde_Crypt-1.1.0

 framework/Crypt/package.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

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

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

commit 31c71c1ce197f26efd9b3426e48c6f846e339109
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:48:34 2011 +0100

    Development mode for Horde_Crypt-1.1.1

 framework/Crypt/package.xml |   21 ++++++++++++++++-----
 1 files changed, 16 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/31c71c1ce197f26efd9b3426e48c6f846e339109

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

commit 903203a38c9f515a514e4e786bee561c0e95302a
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:50:17 2011 +0100

    Released Horde_Date-1.0.8

 framework/Date/package.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/903203a38c9f515a514e4e786bee561c0e95302a

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

commit 26443db35072d9971fb178f109db2d468a678ca6
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:50:17 2011 +0100

    Development mode for Horde_Date-1.0.9

 framework/Date/package.xml |   19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/26443db35072d9971fb178f109db2d468a678ca6

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

commit 886886604319f21ea2ccc92035ae1acd932a1328
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:52:01 2011 +0100

    Released Horde_Db-1.2.0

 framework/Db/package.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/886886604319f21ea2ccc92035ae1acd932a1328

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

commit 3d7ab3075a02e283de62dff06454e8570c75004c
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:52:02 2011 +0100

    Development mode for Horde_Db-1.2.1

 framework/Db/package.xml |   20 ++++++++++++++++----
 1 files changed, 16 insertions(+), 4 deletions(-)

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

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

commit 82c5408afea9d4a32d50dfe00d8667df4a260bf8
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:53:30 2011 +0100

    Released Horde_ActiveSync-1.1.10

 framework/ActiveSync/package.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/82c5408afea9d4a32d50dfe00d8667df4a260bf8

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

commit 6c48beb23184932deffee5878f26bb5d1ae5458d
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:53:30 2011 +0100

    Development mode for Horde_ActiveSync-1.1.11

 framework/ActiveSync/package.xml |   20 ++++++++++++++++----
 1 files changed, 16 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/6c48beb23184932deffee5878f26bb5d1ae5458d

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

commit 1b4dcc4850b5ed8c11adce00b9f65f89b71b7733
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:56:23 2011 +0100

    Add @since tag.

 framework/Mime/lib/Horde/Mime/Headers.php |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

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

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

commit af19a8cddbf3d9b9c4062b62d59858c703119adb
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:58:09 2011 +0100

    Released Horde_Mime-1.4.0

 framework/Mime/package.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

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

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

commit fa4fb95b0071e6aa53dff2479088d71cc13c6272
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:58:09 2011 +0100

    Development mode for Horde_Mime-1.4.1

 framework/Mime/package.xml |   22 ++++++++++++++++------
 1 files changed, 16 insertions(+), 6 deletions(-)

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

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

commit 438af81ad4af3e80192e43a80b9a09e63cb17915
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:59:37 2011 +0100

    Released Horde_Imap_Client-1.3.0

 framework/Imap_Client/package.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/438af81ad4af3e80192e43a80b9a09e63cb17915

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

commit d64bde630b68e6cce16c7b699901f0106bc09237
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 11:59:37 2011 +0100

    Development mode for Horde_Imap_Client-1.3.1

 framework/Imap_Client/package.xml |   20 ++++++++++++++++----
 1 files changed, 16 insertions(+), 4 deletions(-)

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

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

commit 665168e101896bf4f33931472ffd40eb613b5fe8
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:01:54 2011 +0100

    Released Horde_Prefs-1.1.7

 framework/Prefs/package.xml |   26 +++++++++++++++++++++++---
 1 files changed, 23 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/665168e101896bf4f33931472ffd40eb613b5fe8

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

commit 93b42e310a861dc3501ec34a446aa71a50b83e51
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:01:54 2011 +0100

    Development mode for Horde_Prefs-1.1.8

 framework/Prefs/package.xml |   20 ++++++++++++++++----
 1 files changed, 16 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/93b42e310a861dc3501ec34a446aa71a50b83e51

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

commit 74ed9e5c187dbae11c46414eafa7e184e3dfec97
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:04:58 2011 +0100

    Released Horde_Service_Weather-1.0.0RC1

 framework/Service_Weather/package.xml |   22 +++++++++++++++-------
 1 files changed, 15 insertions(+), 7 deletions(-)

http://git.horde.org/horde-git/-/commit/74ed9e5c187dbae11c46414eafa7e184e3dfec97

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

commit 51373432030ac16dd35552007d400214e6476122
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:04:59 2011 +0100

    Development mode for Horde_Service_Weather-1.0.0

 framework/Service_Weather/package.xml |   19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/51373432030ac16dd35552007d400214e6476122

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

commit a6cb26a658f29db71f847aa71ef16b6b03303849
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:07:00 2011 +0100

    Released Horde_Test-1.3.0

 framework/Test/package.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

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

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

commit e6e29f86b95f59653169e3beb87f3e09c2b725f0
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:07:00 2011 +0100

    Development mode for Horde_Test-1.3.1

 framework/Test/package.xml |   20 ++++++++++++++++----
 1 files changed, 16 insertions(+), 4 deletions(-)

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

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

commit 5491394386f809b50809c97499546dcc031a9902
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:26:54 2011 +0100

    Released timeobjects-1.0.5

 timeobjects/docs/CHANGES        |    6 +++---
 timeobjects/lib/Application.php |    2 +-
 timeobjects/package.xml         |   14 +++++++++++---
 3 files changed, 15 insertions(+), 7 deletions(-)

http://git.horde.org/horde-git/-/commit/5491394386f809b50809c97499546dcc031a9902

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

commit 0ce9befa34cbfa228348464212f2b2bfdef15480
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:26:58 2011 +0100

    Development mode for timeobjects-1.0.6

 timeobjects/docs/CHANGES        |    6 ++++++
 timeobjects/lib/Application.php |    2 +-
 timeobjects/package.xml         |   20 ++++++++++++++++----
 3 files changed, 23 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/0ce9befa34cbfa228348464212f2b2bfdef15480

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

commit 4189d56a92347cd7a37f5586b40a95827fed83c9
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:33:59 2011 +0100

    Prepare releases.

 horde/docs/RELEASE_NOTES     |   12 ++++++------
 imp/docs/RELEASE_NOTES       |   25 ++++++++++++-------------
 ingo/docs/RELEASE_NOTES      |   12 +++++++-----
 kronolith/docs/RELEASE_NOTES |   16 ++++++++--------
 mnemo/docs/RELEASE_NOTES     |   10 ++++++----
 nag/docs/RELEASE_NOTES       |   14 +++++++-------
 whups/docs/RELEASE_NOTES     |   24 ++++++++++--------------
 wicked/docs/RELEASE_NOTES    |    9 ++++++---
 8 files changed, 62 insertions(+), 60 deletions(-)

http://git.horde.org/horde-git/-/commit/4189d56a92347cd7a37f5586b40a95827fed83c9

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

commit 9d10f408753633124ec55a8727e25e684634aa85
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:48:19 2011 +0100

    Released horde-4.0.13

 horde/docs/CHANGES        |    6 +++---
 horde/lib/Application.php |    2 +-
 horde/package.xml         |    6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

http://git.horde.org/horde-git/-/commit/9d10f408753633124ec55a8727e25e684634aa85

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

commit 9387f9244909a4a7f22b7e8bd8b0af09ae8c0e3d
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 12:48:26 2011 +0100

    Development mode for horde-4.0.14

 horde/docs/CHANGES        |    6 ++++++
 horde/lib/Application.php |    2 +-
 horde/package.xml         |   22 ++++++++++++++++------
 3 files changed, 23 insertions(+), 7 deletions(-)

http://git.horde.org/horde-git/-/commit/9387f9244909a4a7f22b7e8bd8b0af09ae8c0e3d

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

commit 8a23c37e9c3f120e12d8e4a44800180125a3d5cf
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:09:51 2011 +0100

    Released imp-5.0.16

 imp/docs/CHANGES        |    6 +++---
 imp/lib/Application.php |    2 +-
 imp/package.xml         |    8 +++++---
 3 files changed, 9 insertions(+), 7 deletions(-)

http://git.horde.org/horde-git/-/commit/8a23c37e9c3f120e12d8e4a44800180125a3d5cf

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

commit d2ec8410f4a7537e1ff7339a40c6bb5aa3ad5d89
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:09:59 2011 +0100

    Development mode for imp-5.0.17

 imp/docs/CHANGES        |    6 ++++++
 imp/lib/Application.php |    2 +-
 imp/package.xml         |   34 ++++++++++++++++------------------
 3 files changed, 23 insertions(+), 19 deletions(-)

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

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

commit 98761667f5ec5c3f97aa7ae0dd42a87d75774395
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:14:39 2011 +0100

    Released ingo-2.0.7

 ingo/docs/CHANGES        |    6 +++---
 ingo/lib/Application.php |    2 +-
 ingo/package.xml         |    6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

http://git.horde.org/horde-git/-/commit/98761667f5ec5c3f97aa7ae0dd42a87d75774395

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

commit 8c23565425d95629e5f0eee0e043a8e5a8290094
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:14:46 2011 +0100

    Development mode for ingo-2.0.8

 ingo/docs/CHANGES        |    6 ++++++
 ingo/lib/Application.php |    2 +-
 ingo/package.xml         |   20 ++++++++++++++++----
 3 files changed, 23 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/8c23565425d95629e5f0eee0e043a8e5a8290094

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

commit 6da600d29e1d2280277c7e4c12a6a31c4f68496f
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:19:57 2011 +0100

    Released kronolith-3.0.13

 kronolith/docs/CHANGES        |    6 +++---
 kronolith/lib/Application.php |    2 +-
 kronolith/package.xml         |    6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

http://git.horde.org/horde-git/-/commit/6da600d29e1d2280277c7e4c12a6a31c4f68496f

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

commit 57422942be5979cbbaa6240838417c858877115c
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:20:04 2011 +0100

    Development mode for kronolith-3.0.14

 kronolith/docs/CHANGES        |    6 ++++++
 kronolith/lib/Application.php |    2 +-
 kronolith/package.xml         |   31 ++++++++++++++++---------------
 3 files changed, 23 insertions(+), 16 deletions(-)

http://git.horde.org/horde-git/-/commit/57422942be5979cbbaa6240838417c858877115c

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

commit bfd14372b9b08675cef97188755f9cb3d8c8487c
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:24:12 2011 +0100

    Released nag-3.0.7

 nag/docs/CHANGES        |    6 +++---
 nag/lib/Application.php |    2 +-
 nag/package.xml         |    6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

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

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

commit 319aa1ef9e354baebcd91e55b9d9e1853e1721d9
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:24:19 2011 +0100

    Development mode for nag-3.0.8

 nag/docs/CHANGES        |    6 ++++++
 nag/lib/Application.php |    2 +-
 nag/package.xml         |   20 ++++++++++++++++----
 3 files changed, 23 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/319aa1ef9e354baebcd91e55b9d9e1853e1721d9

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

commit f8e56ec908ccb0dcb02051ddc18cbb258c7756e2
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:27:50 2011 +0100

    Released mnemo-3.0.4

 mnemo/docs/CHANGES        |    6 +++---
 mnemo/lib/Application.php |    2 +-
 mnemo/package.xml         |    6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

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

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

commit 6d879ae2a4e1837c9eabc10ce60a208defc043e8
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:27:59 2011 +0100

    Development mode for mnemo-3.0.5

 mnemo/docs/CHANGES        |    6 ++++++
 mnemo/lib/Application.php |    2 +-
 mnemo/package.xml         |   21 ++++++++++++++++-----
 3 files changed, 23 insertions(+), 6 deletions(-)

http://git.horde.org/horde-git/-/commit/6d879ae2a4e1837c9eabc10ce60a208defc043e8

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

commit b9e72536166195c15e3043a48f67f2d0e8f781c5
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:32:17 2011 +0100

    Released whups-2.0.1

 whups/docs/CHANGES        |    6 +++---
 whups/lib/Application.php |    2 +-
 whups/package.xml         |   18 +++++++++++-------
 3 files changed, 15 insertions(+), 11 deletions(-)

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

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

commit 895ea1f6fdd84dd455b183bd9c5ef9e58c94998d
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:32:24 2011 +0100

    Development mode for whups-2.0.2

 whups/docs/CHANGES        |    6 ++++++
 whups/lib/Application.php |    2 +-
 whups/package.xml         |   24 ++++++++++++++++--------
 3 files changed, 23 insertions(+), 9 deletions(-)

http://git.horde.org/horde-git/-/commit/895ea1f6fdd84dd455b183bd9c5ef9e58c94998d

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

commit 01271a926a2aaa98b0cbab596f1df36458120ccd
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:35:05 2011 +0100

    Released wicked-1.0.1

 wicked/docs/CHANGES        |    6 +++---
 wicked/lib/Application.php |    2 +-
 wicked/package.xml         |   10 +++++-----
 3 files changed, 9 insertions(+), 9 deletions(-)

http://git.horde.org/horde-git/-/commit/01271a926a2aaa98b0cbab596f1df36458120ccd

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

commit d6099e0ed77dfb37f2d72f0d5dcc6aff10866ca9
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 13:35:12 2011 +0100

    Development mode for wicked-1.0.2

 wicked/docs/CHANGES        |    6 ++++++
 wicked/lib/Application.php |    2 +-
 wicked/package.xml         |   21 ++++++++++++++++-----
 3 files changed, 23 insertions(+), 6 deletions(-)

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

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

commit bf92244c7e373ec5ecf8c0dbf62a73dd3b2a4e3c
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 14:32:05 2011 +0100

    Fix changelogs.

 framework/ActiveSync/package.xml      |    2 +-
 framework/Mime/package.xml            |    2 +-
 framework/Service_Weather/package.xml |    2 +-
 framework/Text_Filter/package.xml     |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

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

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

commit 62e70f495f5e7969c5d117725e3f62fd362c067a
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 14:46:22 2011 +0100

    Released groupware-4.0.5

 bundles/groupware/docs/CHANGES   |  128 +++++++++++++++++++++++++++++++++++++-
 bundles/groupware/lib/Bundle.php |    2 +-
 bundles/groupware/package.xml    |   18 +++---
 3 files changed, 135 insertions(+), 13 deletions(-)

http://git.horde.org/horde-git/-/commit/62e70f495f5e7969c5d117725e3f62fd362c067a

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

commit 282638c0e97a66430ec5f158061412b7aa0109bd
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 14:46:30 2011 +0100

    Development mode for groupware-4.0.6

 bundles/groupware/docs/CHANGES   |    6 ++++++
 bundles/groupware/lib/Bundle.php |    2 +-
 bundles/groupware/package.xml    |   17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/282638c0e97a66430ec5f158061412b7aa0109bd

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

commit e6c04db80b14f574a716fabc89301a96f1679658
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 14:48:29 2011 +0100

    Released webmail-4.0.5

 bundles/webmail/docs/CHANGES   |  162 ++++++++++++++++++++++++++++++++++++++--
 bundles/webmail/lib/Bundle.php |    2 +-
 bundles/webmail/package.xml    |   22 +++---
 3 files changed, 168 insertions(+), 18 deletions(-)

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

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

commit b6eea88911151e3d74f74fb915c5b4b27e4f4c9b
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 14:48:36 2011 +0100

    Development mode for webmail-4.0.6

 bundles/webmail/docs/CHANGES   |    6 ++++++
 bundles/webmail/lib/Bundle.php |    2 +-
 bundles/webmail/package.xml    |   17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

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

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

commit febebbc5847c5f80f7c2d517f33f590af37357d1
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 15:00:20 2011 +0100

    Prepare releases.

 bundles/groupware/docs/RELEASE_NOTES |   37 ++++++++++-------------
 bundles/webmail/docs/RELEASE_NOTES   |   55 ++++++++++++++++------------------
 2 files changed, 42 insertions(+), 50 deletions(-)

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

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

commit 1960778fb792d6fa061ab03420e5ddb6cc0a273a
Merge: 16eb699 febebbc
Author: Jan Schneider <jan at horde.org>
Date:   Tue Dec 13 15:07:23 2011 +0100

    Merge branch 'master' into develop
    
    Conflicts:
    	framework/Core/package.xml
    	framework/Date/package.xml
    	horde/lib/Application.php
    	horde/package.xml
    	imp/js/dimpbase.js
    	imp/lib/Application.php
    	imp/package.xml
    	ingo/lib/Application.php
    	ingo/package.xml
    	kronolith/lib/Application.php
    	kronolith/package.xml
    	mnemo/lib/Application.php
    	mnemo/package.xml
    	nag/lib/Application.php
    	nag/package.xml

 agora/locale/lv/LC_MESSAGES/agora.mo                              |  Bin 73150 -> 76038 bytes
 agora/locale/lv/LC_MESSAGES/agora.po                              |  445 +-
 ansel/locale/lv/LC_MESSAGES/ansel.mo                              |  Bin 80610 -> 86375 bytes
 ansel/locale/lv/LC_MESSAGES/ansel.po                              |  514 +-
 beatnik/locale/lv/LC_MESSAGES/beatnik.mo                          |  Bin 74296 -> 70270 bytes
 beatnik/locale/lv/LC_MESSAGES/beatnik.po                          |   85 +-
 beatnik/locale/lv/help.xml                                        |    8 +-
 bundles/groupware/docs/CHANGES                                    |  130 +-
 bundles/groupware/docs/RELEASE_NOTES                              |   37 +-
 bundles/groupware/lib/Bundle.php                                  |    2 +-
 bundles/groupware/package.xml                                     |   33 +-
 bundles/webmail/docs/CHANGES                                      |  164 +-
 bundles/webmail/docs/RELEASE_NOTES                                |   55 +-
 bundles/webmail/lib/Bundle.php                                    |    2 +-
 bundles/webmail/package.xml                                       |   37 +-
 chora/locale/lv/LC_MESSAGES/chora.mo                              |  Bin 75351 -> 68979 bytes
 folks/locale/lv/LC_MESSAGES/folks.mo                              |  Bin 78052 -> 71680 bytes
 folks/locale/lv/LC_MESSAGES/folks.po                              |    2 +-
 framework/ActiveSync/package.xml                                  |   30 +-
 framework/Auth/locale/lv/LC_MESSAGES/Horde_Auth.mo                |  Bin 0 -> 3239 bytes
 framework/Auth/locale/lv/LC_MESSAGES/Horde_Auth.po                |  103 +
 framework/Auth/package.xml                                        |   29 +-
 framework/Autoloader_Cache/package.xml                            |   27 +-
 framework/Core/lib/Horde/Core/Factory/ActiveSyncServer.php        |    1 -
 framework/Core/package.xml                                        |   18 +-
 framework/Crypt/package.xml                                       |   25 +-
 framework/Date/package.xml                                        |   19 +-
 framework/Db/lib/Horde/Db/Adapter/Base/Schema.php                 |   25 +
 framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php           |   22 +
 framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php               |   41 +
 framework/Db/package.xml                                          |   30 +-
 framework/Db/test/Horde/Db/Adapter/MysqlTest.php                  |   30 +
 framework/Db/test/Horde/Db/Adapter/MysqliTest.php                 |   30 +
 framework/Db/test/Horde/Db/Adapter/Pdo/MysqlTest.php              |   30 +
 framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlTest.php              |   30 +
 framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php             |   39 +
 framework/Image/locale/lv/LC_MESSAGES/Horde_Image.mo              |  Bin 6886 -> 7013 bytes
 framework/Image/locale/lv/LC_MESSAGES/Horde_Image.po              |    9 +-
 framework/Imap_Client/lib/Horde/Imap/Client/Socket.php            |    2 +-
 framework/Imap_Client/package.xml                                 |   24 +-
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Contact.php     |    5 -
 framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Task.php        |    9 +-
 .../lib/Horde/Kolab/Format/Xml/Type/Composite/Recurrence/V1.php   |   43 +
 .../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Date/V1.php      |   90 +
 .../lib/Horde/Kolab/Format/Xml/Type/RecurrenceRange/V1.php        |  137 +
 framework/Kolab_Format/package.xml                                |   22 +-
 .../test/Horde/Kolab/Format/Integration/ContactTest.php           |   26 -
 framework/Mime/lib/Horde/Mime/Headers.php                         |    2 +
 framework/Mime/package.xml                                        |   28 +-
 framework/Prefs/package.xml                                       |   44 +-
 framework/Push/locale/lv/LC_MESSAGES/Horde_Push.mo                |  Bin 0 -> 745 bytes
 framework/Push/locale/lv/LC_MESSAGES/Horde_Push.po                |   30 +
 framework/Push/package.xml                                        |    2 +
 .../locale/lv/LC_MESSAGES/Horde_Service_Weather.mo                |  Bin 0 -> 639 bytes
 .../locale/lv/LC_MESSAGES/Horde_Service_Weather.po                |   34 +
 framework/Service_Weather/package.xml                             |   37 +-
 framework/Test/lib/Horde/Test/Factory/Alarm.php                   |   44 +
 framework/Test/lib/Horde/Test/Factory/Cache.php                   |   44 +
 framework/Test/lib/Horde/Test/Factory/Session.php                 |   48 +
 framework/Test/lib/Horde/Test/Stub/Registry.php                   |   23 +
 framework/Test/package.xml                                        |   36 +-
 framework/Text_Filter/package.xml                                 |    2 +-
 framework/Vcs/lib/Horde/Vcs/File/Rcs.php                          |    2 +-
 framework/Vcs/lib/Horde/Vcs/Log/Git.php                           |    2 +-
 framework/Vcs/lib/Horde/Vcs/Log/Rcs.php                           |    2 +-
 framework/Vcs/lib/Horde/Vcs/Patchset/Git.php                      |    2 +-
 gollem/locale/lv/LC_MESSAGES/gollem.mo                            |  Bin 79055 -> 72715 bytes
 hermes/locale/lv/LC_MESSAGES/hermes.mo                            |  Bin 76594 -> 70397 bytes
 hermes/locale/lv/LC_MESSAGES/hermes.po                            |    8 +-
 hermes/locale/lv/help.xml                                         |   18 +-
 horde/docs/CHANGES                                                |    8 +-
 horde/docs/RELEASE_NOTES                                          |   12 +-
 horde/locale/lv/LC_MESSAGES/horde.mo                              |  Bin 70924 -> 64600 bytes
 horde/locale/lv/LC_MESSAGES/horde.po                              |  646 +--
 horde/package.xml                                                 |   24 +-
 imp/docs/CHANGES                                                  |    9 +-
 imp/docs/RELEASE_NOTES                                            |   25 +-
 imp/js/dimpbase.js                                                |   60 +-
 imp/js/mailbox.js                                                 |    7 +-
 imp/lib/Ajax/Application.php                                      |    3 -
 imp/lib/Mailbox/List.php                                          |    2 +-
 imp/lib/Message.php                                               |    3 +
 imp/lib/Ui/Message.php                                            |    4 +-
 imp/lib/Views/ListMessages.php                                    |   14 +-
 imp/locale/lv/LC_MESSAGES/imp.mo                                  |  Bin 185393 -> 179076 bytes
 imp/locale/lv/LC_MESSAGES/imp.po                                  |    4 +-
 imp/locale/lv/help.xml                                            | 1632 +++--
 imp/mailbox.php                                                   |    2 +-
 imp/package.xml                                                   |   36 +-
 ingo/docs/CHANGES                                                 |    8 +-
 ingo/docs/RELEASE_NOTES                                           |   12 +-
 ingo/locale/lv/LC_MESSAGES/ingo.mo                                |  Bin 88250 -> 81862 bytes
 ingo/locale/lv/help.xml                                           |    8 +-
 ingo/package.xml                                                  |   21 +-
 jonah/locale/lv/LC_MESSAGES/jonah.mo                              |  Bin 78682 -> 72310 bytes
 jonah/locale/lv/help.xml                                          |    6 +-
 klutz/locale/lv/LC_MESSAGES/klutz.mo                              |  Bin 73916 -> 67794 bytes
 klutz/locale/lv/LC_MESSAGES/klutz.po                              |   26 +-
 kronolith/config/prefs.php                                        |    2 +-
 kronolith/docs/CHANGES                                            |   13 +-
 kronolith/docs/RELEASE_NOTES                                      |   16 +-
 kronolith/lib/Calendars/Base.php                                  |   70 +
 kronolith/lib/Calendars/Default.php                               |   48 +
 kronolith/lib/Calendars/Kolab.php                                 |   23 +
 kronolith/lib/Driver/Kolab.php                                    |   38 +-
 kronolith/lib/Driver/Sql.php                                      |    6 +-
 kronolith/lib/Event/Kolab.php                                     |   46 +-
 kronolith/lib/Factory/Calendars.php                               |   69 +
 kronolith/lib/Kronolith.php                                       |   13 +-
 kronolith/locale/lv/LC_MESSAGES/kronolith.mo                      |  Bin 130810 -> 124457 bytes
 kronolith/locale/lv/LC_MESSAGES/kronolith.po                      |  706 +-
 kronolith/locale/lv/help.xml                                      |  103 +-
 kronolith/migration/3_kronolith_upgrade_addallday.php             |    2 +-
 kronolith/package.xml                                             |   79 +-
 kronolith/templates/index/index.inc                               |    6 +-
 kronolith/test/Kronolith/Autoload.php                             |    7 +
 kronolith/test/Kronolith/Integration/Driver/Base.php              |  139 +
 kronolith/test/Kronolith/Integration/Driver/KolabTest.php         |   47 +
 kronolith/test/Kronolith/Integration/Driver/Sql/Base.php          |   45 +
 .../test/Kronolith/Integration/Driver/Sql/Pdo/SqliteTest.php      |   62 +
 kronolith/test/Kronolith/Integration/Kronolith/Base.php           |  110 +
 kronolith/test/Kronolith/Integration/Kronolith/KolabTest.php      |   52 +
 kronolith/test/Kronolith/Integration/Kronolith/Sql/Base.php       |   45 +
 .../test/Kronolith/Integration/Kronolith/Sql/Pdo/SqliteTest.php   |   58 +
 kronolith/test/Kronolith/Stub/ShareFactory.php                    |   16 +
 kronolith/test/Kronolith/Stub/Tagger.php                          |   17 +
 kronolith/test/Kronolith/Stub/Types.php                           |    8 +
 kronolith/test/Kronolith/TestCase.php                             |  151 +-
 kronolith/test/Kronolith/Unit/KolabTest.php                       |   83 -
 luxor/locale/lv/LC_MESSAGES/luxor.mo                              |  Bin 72739 -> 66383 bytes
 mnemo/docs/CHANGES                                                |    9 +-
 mnemo/docs/RELEASE_NOTES                                          |   10 +-
 mnemo/lib/Mnemo.php                                               |   18 +-
 mnemo/locale/lv/LC_MESSAGES/mnemo.mo                              |  Bin 80916 -> 74536 bytes
 mnemo/locale/lv/help.xml                                          |   10 +-
 mnemo/package.xml                                                 |   22 +-
 nag/docs/CHANGES                                                  |    9 +-
 nag/docs/RELEASE_NOTES                                            |   14 +-
 nag/lib/Form/Type/NagMethod.php                                   |    3 -
 nag/lib/Ui/VarRenderer/Nag.php                                    |   49 +-
 nag/locale/lv/LC_MESSAGES/nag.mo                                  |  Bin 95035 -> 89095 bytes
 nag/locale/lv/LC_MESSAGES/nag.po                                  |  295 +-
 nag/locale/lv/help.xml                                            |    6 +-
 nag/package.xml                                                   |   20 +-
 passwd/locale/lv/LC_MESSAGES/passwd.mo                            |  Bin 79991 -> 73571 bytes
 passwd/locale/lv/help.xml                                         |   16 +-
 sam/locale/lv/LC_MESSAGES/sam.mo                                  |  Bin 73989 -> 67521 bytes
 sesha/locale/lv/LC_MESSAGES/sesha.mo                              |  Bin 76771 -> 70399 bytes
 timeobjects/docs/CHANGES                                          |    8 +-
 timeobjects/lib/Application.php                                   |    2 +-
 timeobjects/locale/lv/LC_MESSAGES/timeobjects.mo                  |  Bin 71598 -> 66193 bytes
 timeobjects/package.xml                                           |   32 +-
 trean/locale/lv/LC_MESSAGES/trean.mo                              |  Bin 81362 -> 74990 bytes
 turba/locale/lv/LC_MESSAGES/turba.mo                              |  Bin 101035 -> 95011 bytes
 turba/locale/lv/LC_MESSAGES/turba.po                              |  133 +-
 turba/locale/lv/help.xml                                          |   10 +-
 ulaform/locale/lv/LC_MESSAGES/ulaform.mo                          |  Bin 76052 -> 69680 bytes
 ulaform/locale/lv/help.xml                                        |    4 +-
 vilma/locale/lv/LC_MESSAGES/vilma.mo                              |  Bin 78083 -> 72011 bytes
 vilma/locale/lv/LC_MESSAGES/vilma.po                              |   13 +-
 whups/docs/CHANGES                                                |    8 +-
 whups/docs/RELEASE_NOTES                                          |   24 +-
 whups/lib/Application.php                                         |    2 +-
 whups/locale/lv/LC_MESSAGES/whups.mo                              |  Bin 89138 -> 87735 bytes
 whups/locale/lv/LC_MESSAGES/whups.po                              |  409 +-
 whups/locale/lv/help.xml                                          |    4 +-
 whups/package.xml                                                 |   40 +-
 wicked/docs/CHANGES                                               |    8 +-
 wicked/docs/RELEASE_NOTES                                         |    9 +-
 wicked/lib/Application.php                                        |    2 +-
 wicked/locale/lv/LC_MESSAGES/wicked.mo                            |  Bin 71197 -> 69243 bytes
 wicked/locale/lv/LC_MESSAGES/wicked.po                            |  305 +-
 wicked/locale/lv/help.xml                                         |    6 +-
 wicked/package.xml                                                |   29 +-
 174 files changed, 5224 insertions(+), 3775 deletions(-)

http://git.horde.org/horde-git/-/commit/1960778fb792d6fa061ab03420e5ddb6cc0a273a




More information about the commits mailing list