[commits] Horde branch master updated. 7abf30dc880fcd4281c8f496a086152c4cacbd0e
Jan Schneider
jan at horde.org
Mon Apr 8 10:09:45 UTC 2013
The branch "master" has been updated.
The following is a summary of the commits.
from: 3fddeb862d2ef9653e0552556d161d8521e42469
7da0a9f [mms] All Ingo templates now use Horde_View.
87fd394 [jan] Move shared ruleset selection to sidebar.
42e3771 Expand documentation on shares.
bdc21d3 Hide shares of gone backends.
189f91d Turn transport factory into a base factory.
10b24f3 Fix class layout.
52d6f0b Merge toCode() methods into generate().
5337aae Remove globals usage from Ingo_Script, inject dependencies instead.
63a7a30 Merge remote-tracking branch 'origin/master' into ingo_3_1
fb99605 Fix class layout.
5bfebcb Use single hasFeature() method instead of separate methods for each feature.
a79c02e Fix injecting dependencies into IMAP driver.
775771f Implement composite transports.
53250be Merge remote-tracking branch 'origin/master' into ingo_3_1
d2c9d8f Merge branch 'master' into ingo_3_1
3bf2a45 Merge remote-tracking branch 'origin/master' into ingo_3_1
e6ac7e3 Fix view variable name.
ff151ad Fix reloading when changing criterion.
2b3e13f Enable IMAP backend again.
df7843f Merge remote-tracking branch 'origin/master' into ingo_3_1
8b13876 Merge branch 'master' into ingo_3_1
1085b59 Support for selectively hidden form fields
05175f0 Style
e714102 [jan] Hide unsupported form fields of vacation form (Michael Bunk <mb at computer-leipzig.com>).
00371b7 Sieve doesn't support 'excludes' and 'ignorelist'.
bf767e7 Ingo backend for ISPConfig-Support
38f192e ISPConfig supports sharing, because it uses a central admin user.
4206570 Style
00d8d0c [jan] Add vacation driver for ISPConfig (Michael Bunk <mb at computer-leipzig.com>).
4069bf7 Merge remote-tracking branch 'origin/master' into ingo_3_1
fba9c46 [jan] Add composite script backends.
7e88772 Merge remote-tracking branch 'origin/master' into ingo_3_1
1dfa441 Merge remote-tracking branch 'origin/master' into ingo_3_1
a8faa8b Make sure to only generate script recipes once.
c6a6971 Pass complete recipe list to transport drivers too.
c58185c Fix ISPConfig script to work with Ingo 3.1.
4480db0 Fix method name.
44ba019 Remove superfluous line breaks.
f2263ea Fix comment.
4301554 Merge remote-tracking branch 'origin/master' into ingo_3_1
1dd6de0 Merge remote-tracking branch 'origin/master' into ingo_3_1
bc9b562 phpdoc
3e97aa1 Hide blacklist/whitelist if not supported by current backends.
14cd41c Trim scripts.
592d076 phpdoc
4718084 Fix skipping rules if only using a single catch-all script backend.
f5f2060 Always pass euser, but don't overwrite backend configuration with user credentials.
2a7643e Add customsql driver from vacation module.
ad86cfb Merge branch 'master' into ingo_3_1
b6b7874 Bump version.
abb6f97 Merge branch 'master' into ingo_3_1
7abf30d Merge branch 'ingo_3_1'
-----------------------------------------------------------------------
commit 7da0a9f68facafba37d8c5beebc3831ae3ec5829
Author: Michael M Slusarz <slusarz at horde.org>
Date: Mon Nov 12 23:44:48 2012 -0700
[mms] All Ingo templates now use Horde_View.
Conflicts:
ingo/docs/CHANGES
ingo/package.xml
ingo/blacklist.php | 25 +++-
ingo/docs/CHANGES | 7 +
ingo/filters.php | 80 ++++-----
ingo/js/blacklist.js | 24 ++-
ingo/js/filters.js | 11 ++
ingo/js/rule.js | 26 +++
ingo/js/whitelist.js | 11 ++
ingo/lib/Ingo.php | 18 ++-
ingo/package.xml | 88 ++++-----
ingo/rule.php | 190 ++++++++------------
ingo/script.php | 30 ++--
ingo/templates/basic/blacklist/blacklist.html.php | 57 ++++++
ingo/templates/basic/filters/filters.html.php | 114 ++++++++++++
ingo/templates/basic/menu/menu.html.php | 13 ++
ingo/templates/basic/rule/rule.html.php | 200 +++++++++++++++++++++
ingo/templates/basic/script/script.html.php | 55 ++++++
ingo/templates/basic/whitelist/whitelist.html.php | 33 ++++
ingo/templates/blacklist/blacklist.inc | 53 ------
ingo/templates/filters/filter-none.inc | 5 -
ingo/templates/filters/filter.html | 33 ----
ingo/templates/filters/footer.inc | 8 -
ingo/templates/filters/header.inc | 20 --
ingo/templates/filters/settings.inc | 30 ---
ingo/templates/menu/menu.html | 14 --
ingo/templates/rule/filter.inc | 37 ----
ingo/templates/rule/footer.inc | 69 -------
ingo/templates/rule/header.inc | 47 -----
ingo/templates/script/activate.inc | 39 ----
ingo/templates/script/footer.inc | 4 -
ingo/templates/script/header.inc | 4 -
ingo/templates/script/script.inc | 4 -
ingo/templates/whitelist/whitelist.inc | 34 ----
ingo/whitelist.php | 22 ++-
33 files changed, 768 insertions(+), 637 deletions(-)
create mode 100644 ingo/js/whitelist.js
create mode 100644 ingo/templates/basic/blacklist/blacklist.html.php
create mode 100644 ingo/templates/basic/filters/filters.html.php
create mode 100644 ingo/templates/basic/menu/menu.html.php
create mode 100644 ingo/templates/basic/rule/rule.html.php
create mode 100644 ingo/templates/basic/script/script.html.php
create mode 100644 ingo/templates/basic/whitelist/whitelist.html.php
delete mode 100644 ingo/templates/blacklist/blacklist.inc
delete mode 100644 ingo/templates/filters/filter-none.inc
delete mode 100644 ingo/templates/filters/filter.html
delete mode 100644 ingo/templates/filters/footer.inc
delete mode 100644 ingo/templates/filters/header.inc
delete mode 100644 ingo/templates/filters/settings.inc
delete mode 100644 ingo/templates/menu/menu.html
delete mode 100644 ingo/templates/rule/filter.inc
delete mode 100644 ingo/templates/rule/footer.inc
delete mode 100644 ingo/templates/rule/header.inc
delete mode 100644 ingo/templates/script/activate.inc
delete mode 100644 ingo/templates/script/footer.inc
delete mode 100644 ingo/templates/script/header.inc
delete mode 100644 ingo/templates/script/script.inc
delete mode 100644 ingo/templates/whitelist/whitelist.inc
http://git.horde.org/horde-git/-/commit/7da0a9f68facafba37d8c5beebc3831ae3ec5829
-----------------------------------------------------------------------
commit 87fd39433010a8cabc58b12615a7505135bd93e7
Author: Jan Schneider <jan at horde.org>
Date: Tue Dec 11 09:34:56 2012 +0100
[jan] Move shared ruleset selection to sidebar.
ingo/blacklist.php | 2 --
ingo/docs/CHANGES | 1 +
ingo/filters.php | 2 --
ingo/forward.php | 2 --
ingo/lib/Application.php | 23 +++++++++++++++++++++++
ingo/lib/Ingo.php | 31 -------------------------------
ingo/package.xml | 14 ++++++++++++++
ingo/rule.php | 2 --
ingo/script.php | 2 --
ingo/spam.php | 2 --
ingo/vacation.php | 2 --
ingo/whitelist.php | 2 --
12 files changed, 38 insertions(+), 47 deletions(-)
http://git.horde.org/horde-git/-/commit/87fd39433010a8cabc58b12615a7505135bd93e7
-----------------------------------------------------------------------
commit 42e37714b7314ca5c3804f4fa6e0fe0df9d5eeb9
Author: Jan Schneider <jan at horde.org>
Date: Tue Dec 11 10:02:17 2012 +0100
Expand documentation on shares.
ingo/config/backends.php | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
http://git.horde.org/horde-git/-/commit/42e37714b7314ca5c3804f4fa6e0fe0df9d5eeb9
-----------------------------------------------------------------------
commit bdc21d3f6e2a9906389af59fb80ebd5630beb98d
Author: Jan Schneider <jan at horde.org>
Date: Tue Dec 11 10:03:08 2012 +0100
Hide shares of gone backends.
ingo/lib/Ingo.php | 16 +++++++++++++++-
1 files changed, 15 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/bdc21d3f6e2a9906389af59fb80ebd5630beb98d
-----------------------------------------------------------------------
commit 189f91d2920ef3c5d124951218652e80f2fb993a
Author: Jan Schneider <jan at horde.org>
Date: Thu Dec 13 16:09:11 2012 +0100
Turn transport factory into a base factory.
ingo/lib/Application.php | 3 +--
ingo/lib/Factory/Transport.php | 11 ++++++-----
ingo/lib/Ingo.php | 3 ++-
ingo/script.php | 4 +++-
4 files changed, 12 insertions(+), 9 deletions(-)
http://git.horde.org/horde-git/-/commit/189f91d2920ef3c5d124951218652e80f2fb993a
-----------------------------------------------------------------------
commit 10b24f300a015ed27b3926f04dbe583e4401e6d2
Author: Jan Schneider <jan at horde.org>
Date: Thu Dec 13 17:51:46 2012 +0100
Fix class layout.
ingo/lib/Transport.php | 69 --------------------------------------
ingo/lib/Transport/Base.php | 69 ++++++++++++++++++++++++++++++++++++++
ingo/lib/Transport/Ldap.php | 2 +-
ingo/lib/Transport/Null.php | 4 +--
ingo/lib/Transport/Timsieved.php | 2 +-
ingo/lib/Transport/Vfs.php | 2 +-
6 files changed, 73 insertions(+), 75 deletions(-)
delete mode 100644 ingo/lib/Transport.php
create mode 100644 ingo/lib/Transport/Base.php
http://git.horde.org/horde-git/-/commit/10b24f300a015ed27b3926f04dbe583e4401e6d2
-----------------------------------------------------------------------
commit 52d6f0bd125156f52e3ee2b7e3a936e6b75cbd03
Author: Jan Schneider <jan at horde.org>
Date: Tue Jan 22 17:39:57 2013 +0100
Merge toCode() methods into generate().
ingo/lib/Script.php | 10 -------
ingo/lib/Script/Maildrop.php | 20 +++-----------
ingo/lib/Script/Procmail.php | 40 +++++++++++------------------
ingo/lib/Script/Sieve.php | 58 +++++++++++++++++------------------------
4 files changed, 44 insertions(+), 84 deletions(-)
http://git.horde.org/horde-git/-/commit/52d6f0bd125156f52e3ee2b7e3a936e6b75cbd03
-----------------------------------------------------------------------
commit 5337aaebf73e5276279c7b083b73278ae8c061e4
Author: Jan Schneider <jan at horde.org>
Date: Tue Jan 22 18:38:03 2013 +0100
Remove globals usage from Ingo_Script, inject dependencies instead.
ingo/filters.php | 2 +-
ingo/lib/Api.php | 10 ++--
ingo/lib/Factory/Script.php | 16 +++++-
ingo/lib/Script.php | 30 ++++++++--
ingo/lib/Script/Imap.php | 119 +++++++++++++++++++----------------------
ingo/lib/Script/Maildrop.php | 18 ++++--
ingo/lib/Script/Procmail.php | 15 ++++--
ingo/lib/Script/Sieve.php | 18 ++++--
ingo/lib/tests/ScriptTest.php | 7 ++-
9 files changed, 137 insertions(+), 98 deletions(-)
http://git.horde.org/horde-git/-/commit/5337aaebf73e5276279c7b083b73278ae8c061e4
-----------------------------------------------------------------------
commit 63a7a308028e5da698b1a5374ffd64572c5a5c42
Merge: 5337aae 437f3e9
Author: Jan Schneider <jan at horde.org>
Date: Wed Jan 23 11:46:17 2013 +0100
Merge remote-tracking branch 'origin/master' into ingo_3_1
Conflicts:
ingo/docs/CHANGES
ingo/package.xml
.gitignore | 1 +
ApertureToAnselExportPlugin/ApertureToAnselExportPlugin.h | 2 +-
ApertureToAnselExportPlugin/ApertureToAnselExportPlugin.m | 2 +-
ApertureToAnselExportPlugin/COPYING | 2 +-
ApertureToAnselExportPlugin/TURAnselKit/AnselGalleryViewItem.h | 2 +-
ApertureToAnselExportPlugin/TURAnselKit/AnselGalleryViewItem.m | 2 +-
ApertureToAnselExportPlugin/TURAnselKit/TURAnsel.h | 2 +-
ApertureToAnselExportPlugin/TURAnselKit/TURAnsel.m | 2 +-
ApertureToAnselExportPlugin/TURAnselKit/TURAnselConstants.h | 2 +-
ApertureToAnselExportPlugin/TURAnselKit/TURAnselConstants.m | 2 +-
ApertureToAnselExportPlugin/TURAnselKit/TURAnselGallery.h | 2 +-
ApertureToAnselExportPlugin/TURAnselKit/TURAnselGallery.m | 2 +-
.../TURAnselKit/TURAnselGalleryPanelController.h | 2 +-
.../TURAnselKit/TURAnselGalleryPanelController.m | 2 +-
Dashboard/KeychainPlugin/KeychainPlugIn.h | 2 +-
Dashboard/KeychainPlugin/KeychainPlugIn.m | 2 +-
Dashboard/KeychainPlugin/KeychainPlugIn_Prefix.pch | 2 +-
agora/ban.php | 2 +-
agora/deleteforum.php | 2 +-
agora/editforum.php | 2 +-
agora/forums.php | 2 +-
agora/lib/Agora.php | 2 +-
agora/lib/Api.php | 2 +-
agora/lib/Application.php | 2 +-
agora/lib/Block/Forums.php | 2 +-
agora/lib/Block/Thread.php | 2 +-
agora/lib/Block/Threads.php | 2 +-
agora/lib/Comments.php | 2 +-
agora/lib/Driver.php | 2 +-
agora/lib/Driver/SplitSql.php | 2 +-
agora/lib/Driver/Sql.php | 2 +-
agora/lib/Exception.php | 2 +-
agora/lib/Factory/Driver.php | 2 +-
agora/lib/Form/Forum.php | 2 +-
agora/lib/Form/Message.php | 2 +-
agora/lib/Form/Search.php | 2 +-
agora/lib/Tree/Flat.php | 2 +-
agora/lib/View.php | 2 +-
agora/locale/de/LC_MESSAGES/agora.po | 2 +-
agora/locale/es/LC_MESSAGES/agora.po | 2 +-
agora/locale/fr/LC_MESSAGES/agora.mo | Bin 77537 -> 70318 bytes
agora/locale/fr/LC_MESSAGES/agora.po | 2 +-
agora/locale/hu/LC_MESSAGES/agora.po | 2 +-
agora/locale/it/LC_MESSAGES/agora.po | 2 +-
agora/locale/ja/LC_MESSAGES/agora.po | 2 +-
agora/locale/lt/LC_MESSAGES/agora.po | 2 +-
agora/locale/lv/LC_MESSAGES/agora.mo | Bin 82890 -> 75116 bytes
agora/locale/lv/LC_MESSAGES/agora.po | 2 +-
agora/locale/ro/LC_MESSAGES/agora.po | 2 +-
agora/locale/sl/LC_MESSAGES/agora.po | 2 +-
agora/messages/abuse.php | 2 +-
agora/messages/delete.php | 2 +-
agora/messages/edit.php | 2 +-
agora/messages/index.php | 2 +-
agora/messages/lock.php | 2 +-
agora/messages/merge.php | 2 +-
agora/messages/move.php | 2 +-
agora/messages/split.php | 2 +-
agora/migration/1_agora_base_tables.php | 2 +-
agora/migration/2_agora_upgrade_autoincrement.php | 2 +-
agora/moderate.php | 2 +-
agora/moderators.php | 2 +-
agora/owner.php | 2 +-
agora/rss/index.php | 2 +-
agora/rss/messages.php | 2 +-
agora/rss/threads.php | 2 +-
agora/search.php | 2 +-
agora/threads.php | 2 +-
agora/view.php | 2 +-
ansel/browse.php | 4 +-
ansel/browse_edit.php | 2 +-
ansel/disclamer.php | 2 +-
ansel/docs/CREDITS | 2 +
ansel/edit_dates.php | 2 +-
ansel/faces/claim.php | 2 +-
ansel/faces/custom.php | 2 +-
ansel/faces/face.php | 2 +-
ansel/faces/gallery.php | 2 +-
ansel/faces/image.php | 2 +-
ansel/faces/img.php | 2 +-
ansel/faces/name.php | 2 +-
ansel/faces/report.php | 2 +-
ansel/faces/savecustom.php | 2 +-
ansel/faces/search/all.php | 2 +-
ansel/faces/search/image.php | 2 +-
ansel/faces/search/image_define.php | 2 +-
ansel/faces/search/image_save.php | 2 +-
ansel/faces/search/image_search.php | 2 +-
ansel/faces/search/img.php | 2 +-
ansel/faces/search/name.php | 2 +-
ansel/faces/search/named.php | 2 +-
ansel/faces/search/owner.php | 2 +-
ansel/faces/search/tabs.php | 2 +-
ansel/gallery.php | 2 +-
ansel/gallery/captions.php | 2 +-
ansel/gallery/delete.php | 2 +-
ansel/gallery/sort.php | 2 +-
ansel/group.php | 2 +-
ansel/image.php | 2 +-
ansel/img/download.php | 2 +-
ansel/img/ecard.php | 2 +-
ansel/img/full.php | 2 +-
ansel/img/index.php | 2 +-
ansel/img/mini.php | 2 +-
ansel/img/screen.php | 2 +-
ansel/img/thumb.php | 2 +-
ansel/img/upload.php | 2 +-
ansel/img/upload_preview.php | 2 +-
ansel/index.php | 2 +-
ansel/js/map.js | 2 +-
ansel/js/map_edit.js | 2 +-
ansel/js/smartmobile.js | 2 +-
ansel/js/tagactions.js | 48 -
ansel/js/togglewidget.js | 21 +-
ansel/js/widgets/geotag.js | 2 +-
ansel/js/widgets/tagactions.js | 63 +
ansel/lib/Ajax/Application.php | 2 +-
ansel/lib/Ajax/Application/Handler.php | 37 +-
ansel/lib/Ajax/Imple/EditCaption.php | 2 +-
ansel/lib/Ajax/Imple/EditFaces.php | 2 +-
ansel/lib/Ajax/Imple/LocationAutoCompleter.php | 2 +-
ansel/lib/Ajax/Imple/ToggleGalleryActions.php | 2 +-
ansel/lib/Ajax/Imple/ToggleOtherGalleries.php | 2 +-
ansel/lib/Ansel.php | 2 +-
ansel/lib/Api.php | 2 +-
ansel/lib/Application.php | 35 +-
ansel/lib/Block/Cloud.php | 2 +-
ansel/lib/Block/Gallery.php | 2 +-
ansel/lib/Block/MyGalleries.php | 2 +-
ansel/lib/Block/RecentComments.php | 2 +-
ansel/lib/Block/RecentFaces.php | 2 +-
ansel/lib/Block/RecentlyAdded.php | 2 +-
ansel/lib/Block/RecentlyAddedGeodata.php | 2 +-
ansel/lib/Exception.php | 2 +-
ansel/lib/Faces.php | 2 +-
ansel/lib/Faces/Base.php | 2 +-
ansel/lib/Factory/Storage.php | 2 +-
ansel/lib/Form/Image.php | 2 +-
ansel/lib/Form/ImageDate.php | 2 +-
ansel/lib/Form/Watermark.php | 2 +-
ansel/lib/Gallery.php | 2 +-
ansel/lib/Gallery/Decorator/Date.php | 2 +-
ansel/lib/GalleryMode/Base.php | 2 +-
ansel/lib/GalleryMode/Date.php | 2 +-
ansel/lib/GalleryMode/Normal.php | 2 +-
ansel/lib/Image.php | 2 +-
ansel/lib/ImageGenerator.php | 2 +-
ansel/lib/ImageGenerator/Mini.php | 2 +-
ansel/lib/ImageGenerator/SquareThumb.php | 2 +-
ansel/lib/LoginTasks/SystemTask/Upgrade.php | 2 +-
ansel/lib/Prefs/Special/GallerySelect.php | 2 +-
ansel/lib/Prefs/Special/GalleryStyle.php | 2 +-
ansel/lib/Queue/ProcessThumbs.php | 2 +-
ansel/lib/Report.php | 4 +-
ansel/lib/Search.php | 2 +-
ansel/lib/Search/Tag.php | 2 +-
ansel/lib/Search/exif.php | 2 +-
ansel/lib/Storage.php | 2 +-
ansel/lib/Tagger.php | 2 +-
ansel/lib/Test.php | 2 +-
ansel/lib/View/Ansel.php | 2 +-
ansel/lib/View/Base.php | 2 +-
ansel/lib/View/EmbeddedRenderer/GalleryLink.php | 2 +-
ansel/lib/View/EmbeddedRenderer/Mini.php | 2 +-
ansel/lib/View/EmbeddedRenderer/Slideshow.php | 2 +-
ansel/lib/View/GalleryProperties.php | 2 +-
ansel/lib/View/GalleryRenderer/Base.php | 2 +-
ansel/lib/View/GalleryRenderer/Gallery.php | 2 +-
ansel/lib/View/GalleryRenderer/GalleryLightbox.php | 2 +-
ansel/lib/View/List.php | 2 +-
ansel/lib/View/Results.php | 2 +-
ansel/lib/View/Upload.php | 2 +-
ansel/lib/Widget.php | 2 +-
ansel/lib/Widget/Actions.php | 185 +-
ansel/lib/Widget/Base.php | 2 +-
ansel/lib/Widget/GalleryFaces.php | 2 +-
ansel/lib/Widget/Geotag.php | 2 +-
ansel/lib/Widget/ImageFaces.php | 2 +-
ansel/lib/Widget/OtherGalleries.php | 66 +-
ansel/lib/Widget/Tags.php | 69 +-
ansel/locale/de/LC_MESSAGES/ansel.po | 2 +-
ansel/locale/es/LC_MESSAGES/ansel.po | 2 +-
ansel/locale/fr/LC_MESSAGES/ansel.mo | Bin 117196 -> 108033 bytes
ansel/locale/fr/LC_MESSAGES/ansel.po | 2939 +--
ansel/locale/it/LC_MESSAGES/ansel.po | 2 +-
ansel/locale/ja/LC_MESSAGES/ansel.po | 2 +-
ansel/locale/lt/LC_MESSAGES/ansel.po | 2 +-
ansel/locale/lv/LC_MESSAGES/ansel.mo | Bin 103167 -> 95269 bytes
ansel/locale/lv/LC_MESSAGES/ansel.po | 2 +-
ansel/locale/sk/LC_MESSAGES/ansel.mo | Bin 103720 -> 104838 bytes
ansel/locale/sk/LC_MESSAGES/ansel.po | 2 +-
ansel/locale/sl/LC_MESSAGES/ansel.po | 2 +-
ansel/locale/tr/LC_MESSAGES/ansel.po | 2 +-
ansel/map_edit.php | 2 +-
ansel/migration/10_ansel_upgrade_computestylehashes.php | 2 +-
ansel/migration/1_ansel_base_tables.php | 2 +-
ansel/migration/2_ansel_upgrade_autoincrement.php | 2 +-
ansel/migration/3_ansel_upgrade_style.php | 2 +-
ansel/migration/4_ansel_upgrade_tagstocontent.php | 2 +-
ansel/migration/5_ansel_upgrade_categoriestotags.php | 2 +-
ansel/migration/6_ansel_upgrade_unsignedints.php | 2 +-
ansel/migration/7_ansel_upgrade_stylefix.php | 2 +-
ansel/migration/8_ansel_upgrade_sqlhierarchical.php | 2 +-
ansel/migration/9_ansel_upgrade_sqlng.php | 2 +-
ansel/package.xml | 24 +-
ansel/perms.php | 2 +-
ansel/preview.php | 2 +-
ansel/protect.php | 2 +-
ansel/report.php | 2 +-
ansel/rss.php | 2 +-
ansel/smartmobile.php | 2 +-
ansel/templates/browse/new.inc | 3 +
ansel/templates/widgets/actions.html.php | 59 +
ansel/templates/widgets/begin.html.php | 3 +
ansel/templates/widgets/end.html.php | 1 +
ansel/templates/widgets/othergalleries.html.php | 9 +
ansel/templates/widgets/tags.html.php | 17 +
ansel/test/Ansel/TestCase.php | 2 +-
ansel/test/Ansel/Unit/Base.php | 2 +-
ansel/test/Ansel/Unit/ImageTest.php | 2 +-
ansel/view.php | 2 +-
ansel/xppublish.php | 2 +-
beatnik/autogenerate.php | 2 +-
beatnik/commit.php | 4 +-
beatnik/config/autogenerate.php.dist | 8 -
beatnik/delete.php | 2 +-
beatnik/editrec.php | 4 +-
beatnik/index.php | 4 +-
beatnik/lib/Application.php | 2 +-
beatnik/lib/Driver/pdnsgsql.php | 2 +-
beatnik/lib/Driver/sql.php | 2 +-
beatnik/listzones.php | 4 +-
beatnik/locale/fi/LC_MESSAGES/beatnik.po | 2 +-
beatnik/locale/lv/LC_MESSAGES/beatnik.mo | Bin 77147 -> 69284 bytes
beatnik/locale/lv/LC_MESSAGES/beatnik.po | 2 +-
beatnik/locale/sl/LC_MESSAGES/beatnik.po | 2 +-
beatnik/scripts/export_config.php | 2 +-
beatnik/templates/listzones/footer.inc | 8 -
beatnik/templates/listzones/header.inc | 9 -
beatnik/templates/listzones/row.inc | 9 -
beatnik/templates/menu.inc | 4 +-
beatnik/templates/view/footer.inc | 8 -
beatnik/templates/view/header.inc | 7 -
beatnik/templates/view/record.inc | 6 -
beatnik/viewzone.php | 4 +-
bundles/groupware/docs/CHANGES | 186 +-
bundles/groupware/docs/INSTALL | 10 +-
bundles/groupware/docs/RELEASE_NOTES | 24 +-
bundles/groupware/lib/Bundle.php | 4 +-
bundles/groupware/package.xml | 33 +-
bundles/kolab_webmail/lib/Bundle.php | 2 +-
bundles/webmail/docs/CHANGES | 219 +-
bundles/webmail/docs/INSTALL | 10 +-
bundles/webmail/docs/RELEASE_NOTES | 45 +-
bundles/webmail/lib/Bundle.php | 4 +-
bundles/webmail/package.xml | 37 +-
chora/annotate.php | 2 +-
chora/app/helpers/Diff.php | 2 +-
chora/browsedir.php | 2 +-
chora/browsefile.php | 2 +-
chora/co.php | 2 +-
chora/commit.php | 2 +-
chora/cvsgraph.php | 2 +-
chora/diff.php | 2 +-
chora/history.php | 2 +-
chora/index.php | 2 +-
chora/lib/Application.php | 2 +-
chora/lib/Chora.php | 2 +-
chora/lib/Exception.php | 2 +-
chora/lib/Readme/Collection.php | 2 +-
chora/lib/Renderer/File.php | 2 +-
chora/lib/Renderer/File/Html.php | 2 +-
chora/lib/Renderer/File/Plain.php | 2 +-
chora/lib/Test.php | 2 +-
chora/locale/cs/LC_MESSAGES/chora.po | 2 +-
chora/locale/da/LC_MESSAGES/chora.po | 2 +-
chora/locale/de/LC_MESSAGES/chora.po | 2 +-
chora/locale/es/LC_MESSAGES/chora.po | 2 +-
chora/locale/fr/LC_MESSAGES/chora.mo | Bin 80332 -> 73209 bytes
chora/locale/it/LC_MESSAGES/chora.po | 2 +-
chora/locale/lv/LC_MESSAGES/chora.mo | Bin 75872 -> 68028 bytes
chora/locale/lv/LC_MESSAGES/chora.po | 2 +-
chora/locale/ro/LC_MESSAGES/chora.po | 2 +-
chora/locale/ru/LC_MESSAGES/chora.po | 4 +-
chora/locale/sk/LC_MESSAGES/chora.mo | Bin 70290 -> 71458 bytes
chora/locale/sk/LC_MESSAGES/chora.po | 2 +-
chora/locale/zh_CN/LC_MESSAGES/chora.po | 2 +-
chora/patchsets.php | 2 +-
chora/stats.php | 2 +-
components/data/distribute/debian/templates-php-horde-ansel/rules | 16 +
.../data/distribute/debian/templates-php-horde-content/rules | 6 +-
.../data/distribute/debian/templates-php-horde-gollem/rules | 16 +
.../data/distribute/debian/templates-php-horde-groupware/rules | 13 +-
components/data/distribute/debian/templates-php-horde-imp/rules | 6 +-
components/data/distribute/debian/templates-php-horde-ingo/rules | 6 +-
components/data/distribute/debian/templates-php-horde-jonah/rules | 6 +-
.../distribute/debian/templates-php-horde-kolab-webmail/rules | 30 +-
.../data/distribute/debian/templates-php-horde-kronolith/rules | 6 +-
components/data/distribute/debian/templates-php-horde-mnemo/rules | 6 +-
components/data/distribute/debian/templates-php-horde-nag/rules | 6 +-
.../data/distribute/debian/templates-php-horde-passwd/rules | 6 +-
components/data/distribute/debian/templates-php-horde-sesha/rules | 16 +
components/data/distribute/debian/templates-php-horde-turba/rules | 6 +-
.../data/distribute/debian/templates-php-horde-ulaform/rules | 6 +-
.../data/distribute/debian/templates-php-horde-webmail/rules | 17 +-
components/data/distribute/debian/templates-php-horde-whups/rules | 16 +
.../data/distribute/debian/templates-php-horde-wicked/rules | 6 +-
components/data/distribute/debian/templates-php-horde/rules | 6 +-
components/data/distribute/debian/templates/changelog | 2 +-
components/data/distribute/debian/templates/control | 4 +-
components/data/distribute/debian/templates/pearrc | 2 +-
components/data/distribute/debian/templates/watch | 4 +-
components/lib/Components.php | 2 +-
components/lib/Components/Component.php | 2 +-
components/lib/Components/Component/Archive.php | 2 +-
components/lib/Components/Component/Base.php | 2 +-
components/lib/Components/Component/Dependency.php | 2 +-
components/lib/Components/Component/DependencyList.php | 2 +-
components/lib/Components/Component/Factory.php | 2 +-
components/lib/Components/Component/Identify.php | 2 +-
components/lib/Components/Component/Match.php | 2 +-
components/lib/Components/Component/Remote.php | 2 +-
components/lib/Components/Component/Resolver.php | 2 +-
components/lib/Components/Component/Source.php | 2 +-
components/lib/Components/Config.php | 2 +-
components/lib/Components/Config/Application.php | 2 +-
components/lib/Components/Config/Base.php | 2 +-
components/lib/Components/Config/Bootstrap.php | 2 +-
components/lib/Components/Config/Cli.php | 2 +-
components/lib/Components/Config/File.php | 2 +-
components/lib/Components/Configs.php | 2 +-
components/lib/Components/Constants.php | 2 +-
components/lib/Components/Dependencies.php | 2 +-
components/lib/Components/Dependencies/Bootstrap.php | 2 +-
components/lib/Components/Dependencies/Injector.php | 2 +-
components/lib/Components/Exception.php | 2 +-
components/lib/Components/Exception/Pear.php | 2 +-
components/lib/Components/Helper/ChangeLog.php | 2 +-
components/lib/Components/Helper/Commit.php | 2 +-
components/lib/Components/Helper/Dependencies.php | 2 +-
components/lib/Components/Helper/DocsOrigin.php | 2 +-
components/lib/Components/Helper/Installer.php | 2 +-
components/lib/Components/Helper/Root.php | 2 +-
components/lib/Components/Helper/Template.php | 2 +-
components/lib/Components/Helper/Templates.php | 2 +-
components/lib/Components/Helper/Templates/Directory.php | 2 +-
components/lib/Components/Helper/Templates/RecursiveDirectory.php | 2 +-
components/lib/Components/Helper/Templates/Single.php | 2 +-
components/lib/Components/Helper/Version.php | 2 +-
components/lib/Components/Helper/Website.php | 2 +-
components/lib/Components/Module.php | 2 +-
components/lib/Components/Module/Base.php | 2 +-
components/lib/Components/Module/Change.php | 2 +-
components/lib/Components/Module/CiSetup.php | 2 +-
components/lib/Components/Module/Dependencies.php | 2 +-
components/lib/Components/Module/Distribute.php | 2 +-
components/lib/Components/Module/Fetchdocs.php | 2 +-
components/lib/Components/Module/Help.php | 2 +-
components/lib/Components/Module/Installer.php | 2 +-
components/lib/Components/Module/Qc.php | 2 +-
components/lib/Components/Module/Release.php | 2 +-
components/lib/Components/Module/Snapshot.php | 2 +-
components/lib/Components/Module/Update.php | 2 +-
components/lib/Components/Module/Webdocs.php | 2 +-
components/lib/Components/Output.php | 2 +-
components/lib/Components/Pear/Environment.php | 2 +-
components/lib/Components/Pear/Factory.php | 2 +-
components/lib/Components/Pear/Package.php | 2 +-
components/lib/Components/Qc/Task/Base.php | 2 +-
components/lib/Components/Qc/Task/Cpd.php | 2 +-
components/lib/Components/Qc/Task/Cs.php | 2 +-
components/lib/Components/Qc/Task/Lint.php | 2 +-
components/lib/Components/Qc/Task/Md.php | 2 +-
components/lib/Components/Qc/Task/Unit.php | 2 +-
components/lib/Components/Qc/Tasks.php | 2 +-
components/lib/Components/Release/Notes.php | 2 +-
components/lib/Components/Release/Task/Announce.php | 2 +-
components/lib/Components/Release/Task/Base.php | 2 +-
components/lib/Components/Release/Task/Bugs.php | 2 +-
components/lib/Components/Release/Task/CommitPostRelease.php | 2 +-
components/lib/Components/Release/Task/CommitPreRelease.php | 2 +-
components/lib/Components/Release/Task/CurrentSentinel.php | 2 +-
components/lib/Components/Release/Task/Freecode.php | 2 +-
components/lib/Components/Release/Task/NextSentinel.php | 2 +-
components/lib/Components/Release/Task/NextVersion.php | 2 +-
components/lib/Components/Release/Task/Package.php | 2 +-
components/lib/Components/Release/Task/Sentinel.php | 2 +-
components/lib/Components/Release/Task/TagRelease.php | 2 +-
components/lib/Components/Release/Task/Timestamp.php | 2 +-
components/lib/Components/Release/Tasks.php | 2 +-
components/lib/Components/Runner/Change.php | 2 +-
components/lib/Components/Runner/CiPrebuild.php | 2 +-
components/lib/Components/Runner/CiSetup.php | 2 +-
components/lib/Components/Runner/Dependencies.php | 2 +-
components/lib/Components/Runner/Distribute.php | 2 +-
components/lib/Components/Runner/Fetchdocs.php | 2 +-
components/lib/Components/Runner/Installer.php | 2 +-
components/lib/Components/Runner/Qc.php | 2 +-
components/lib/Components/Runner/Release.php | 2 +-
components/lib/Components/Runner/Snapshot.php | 2 +-
components/lib/Components/Runner/Update.php | 2 +-
components/lib/Components/Runner/Webdocs.php | 2 +-
components/package.xml | 2 +-
components/test/Components/Autoload.php | 2 +-
.../test/Components/Integration/Components/Module/CiSetupTest.php | 2 +-
.../Components/Integration/Components/Module/DistributeTest.php | 2 +-
.../Components/Integration/Components/Module/DocumentTest.php | 2 +-
.../Components/Integration/Components/Module/InstallerTest.php | 2 +-
.../test/Components/Integration/Components/Module/ReleaseTest.php | 2 +-
components/test/Components/StoryTestCase.php | 2 +-
components/test/Components/TestCase.php | 2 +-
.../Components/Unit/Components/Component/DependencyListTest.php | 2 +-
.../test/Components/Unit/Components/Component/DependencyTest.php | 2 +-
.../test/Components/Unit/Components/Component/IdentifyTest.php | 2 +-
.../test/Components/Unit/Components/Component/ResolverTest.php | 2 +-
components/test/Components/Unit/Components/Config/FileTest.php | 2 +-
components/test/Components/Unit/Components/ConfigsTest.php | 2 +-
.../test/Components/Unit/Components/Helper/DocsOriginTest.php | 2 +-
components/test/Components/Unit/Components/Helper/RootTest.php | 2 +-
.../test/Components/Unit/Components/Helper/TemplatesTest.php | 2 +-
.../Components/Unit/Components/Helper/VersionDescriptionTest.php | 2 +-
.../Components/Unit/Components/Helper/VersionStabilityTest.php | 2 +-
components/test/Components/Unit/Components/Helper/VersionTest.php | 2 +-
.../test/Components/Unit/Components/Module/DependenciesTest.php | 2 +-
.../test/Components/Unit/Components/Module/SnapshotTest.php | 2 +-
components/test/Components/Unit/Components/Module/UpdateTest.php | 2 +-
.../Unit/Components/Release/Task/CurrentSentinelTest.php | 2 +-
.../Components/Unit/Components/Release/Task/NextSentinelTest.php | 2 +-
.../test/Components/Unit/Components/Release/Task/PackageTest.php | 2 +-
.../Components/Unit/Components/Release/Task/TimestampTest.php | 2 +-
components/test/Components/Unit/ComponentsTest.php | 2 +-
.../test/distribute/debian/templates-php-horde-content/rules | 6 +-
.../Components/test/distribute/debian/templates-php-horde/rules | 6 +-
content/bin/content-object-add | 2 +-
content/bin/content-object-delete | 2 +-
content/bin/content-tag | 2 +-
content/bin/content-tag-add | 2 +-
content/bin/content-tag-delete | 2 +-
content/bin/content-untag | 2 +-
content/lib/Application.php | 2 +-
content/lib/Indexer.php | 2 +-
content/lib/Objects/Manager.php | 2 +-
content/lib/Objects/Object.php | 2 +-
content/lib/Objects/ObjectMapper.php | 2 +-
content/lib/Tagger.php | 2 +-
content/lib/Tags/Tag.php | 2 +-
content/lib/Tags/TagMapper.php | 2 +-
content/lib/Types/Manager.php | 2 +-
content/lib/Users/Manager.php | 2 +-
content/test/Content/Autoload.php | 2 +-
content/test/Content/Base.php | 2 +-
content/test/Content/Sql/MysqlTest.php | 2 +-
content/test/Content/Sql/MysqliTest.php | 2 +-
folks/index.php | 2 +-
folks/lib/Driver/sql.php | 2 +-
folks/lib/Forms/Activity.php | 2 +-
folks/lib/Forms/AddFriend.php | 2 +-
folks/lib/Forms/Login.php | 2 +-
folks/lib/Forms/Search.php | 2 +-
folks/lib/Friends/application.php | 2 +-
folks/lib/Friends/facebook.php | 2 +-
folks/lib/Friends/prefs.php | 2 +-
folks/lib/Friends/shared.php | 2 +-
folks/lib/Friends/sql.php | 2 +-
folks/locale/fi/LC_MESSAGES/folks.po | 2 +-
folks/locale/lv/LC_MESSAGES/folks.mo | Bin 78613 -> 70758 bytes
folks/locale/lv/LC_MESSAGES/folks.po | 2 +-
folks/locale/sl/LC_MESSAGES/folks.po | 2 +-
folks/perms.php | 2 +-
folks/report.php | 2 +-
folks/scripts/mail-filter.php | 2 +-
folks/scripts/mail.php | 2 +-
framework/ActiveSync/doc/Horde/ActiveSync/TODO | 2 +-
framework/ActiveSync/lib/Horde/ActiveSync.php | 14 +-
framework/ActiveSync/lib/Horde/ActiveSync/Connector/Exporter.php | 10 +-
framework/ActiveSync/lib/Horde/ActiveSync/Connector/Importer.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Driver/Base.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Exception.php | 8 +-
.../ActiveSync/lib/Horde/ActiveSync/Exception/FolderExists.php | 4 +-
.../ActiveSync/lib/Horde/ActiveSync/Exception/FolderGone.php | 4 +-
.../ActiveSync/lib/Horde/ActiveSync/Exception/InvalidRequest.php | 4 +-
.../ActiveSync/lib/Horde/ActiveSync/Exception/StaleState.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Exception/StateGone.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Folder/Base.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Folder/Collection.php | 6 +-
framework/ActiveSync/lib/Horde/ActiveSync/Folder/Imap.php | 6 +-
framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php | 38 +-
framework/ActiveSync/lib/Horde/ActiveSync/Imap/Message.php | 118 +-
.../ActiveSync/lib/Horde/ActiveSync/Interface/ImapFactory.php | 4 +-
.../ActiveSync/lib/Horde/ActiveSync/Interface/LoggerFactory.php | 4 +-
.../lib/Horde/ActiveSync/Message/AirSyncBaseAttachment.php | 4 +-
.../ActiveSync/lib/Horde/ActiveSync/Message/AirSyncBaseBody.php | 4 +-
.../lib/Horde/ActiveSync/Message/AirSyncBaseFileAttachment.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Appointment.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Attachment.php | 16 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Attendee.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Base.php | 8 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Contact.php | 136 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Exception.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Flag.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Folder.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Mail.php | 4 +-
.../ActiveSync/lib/Horde/ActiveSync/Message/MeetingRequest.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Recurrence.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Task.php | 4 +-
.../ActiveSync/lib/Horde/ActiveSync/Message/TaskRecurrence.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Policies.php | 11 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/Autodiscover.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/Base.php | 8 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/FolderCreate.php | 10 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/FolderSync.php | 21 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/GetAttachment.php | 8 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/GetHierarchy.php | 4 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/GetItemEstimate.php | 10 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/ItemOperations.php | 8 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/MeetingResponse.php | 8 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/MoveItems.php | 10 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php | 53 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/Provision.php | 4 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/ResolveRecipients.php | 6 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/Search.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/SendMail.php | 10 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/Settings.php | 4 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/SmartForward.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/SmartReply.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php | 130 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/ValidateCert.php | 6 +-
framework/ActiveSync/lib/Horde/ActiveSync/Rfc822.php | 115 +-
framework/ActiveSync/lib/Horde/ActiveSync/State/Base.php | 6 +-
framework/ActiveSync/lib/Horde/ActiveSync/State/Sql.php | 103 +-
framework/ActiveSync/lib/Horde/ActiveSync/Sync.php | 59 +-
framework/ActiveSync/lib/Horde/ActiveSync/SyncCache.php | 20 +-
framework/ActiveSync/lib/Horde/ActiveSync/Timezone.php | 6 +-
framework/ActiveSync/lib/Horde/ActiveSync/Translation.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Utils.php | 8 +-
framework/ActiveSync/lib/Horde/ActiveSync/Wbxml.php | 75 +-
framework/ActiveSync/lib/Horde/ActiveSync/Wbxml/Decoder.php | 36 +-
framework/ActiveSync/lib/Horde/ActiveSync/Wbxml/Encoder.php | 34 +-
framework/ActiveSync/locale/de/LC_MESSAGES/Horde_ActiveSync.po | 2 +-
framework/ActiveSync/locale/eu/LC_MESSAGES/Horde_ActiveSync.po | 2 +-
framework/ActiveSync/locale/fr/LC_MESSAGES/Horde_ActiveSync.mo | Bin 0 -> 1026 bytes
framework/ActiveSync/locale/fr/LC_MESSAGES/Horde_ActiveSync.po | 73 +
framework/ActiveSync/locale/nl/LC_MESSAGES/Horde_ActiveSync.po | 2 +-
.../Horde/ActiveSync/15_horde_activesync_integerimapuidfield.php | 3 +-
framework/ActiveSync/package.xml | 157 +-
framework/ActiveSync/test/Horde/ActiveSync/CacheTest.php | 56 +-
framework/ActiveSync/test/Horde/ActiveSync/FolderSyncTest.php | Bin 4449 -> 0 bytes
framework/ActiveSync/test/Horde/ActiveSync/HordeDriverTest.php | 346 -
framework/ActiveSync/test/Horde/ActiveSync/Rfc822Test.php | 65 +
framework/ActiveSync/test/Horde/ActiveSync/StateTest/Base.php | 22 +
framework/ActiveSync/test/Horde/ActiveSync/StateTest/Sql/Base.php | 90 +
.../test/Horde/ActiveSync/StateTest/Sql/Pdo/MysqlTest.php | 25 +
framework/ActiveSync/test/Horde/ActiveSync/conf.php.dist | 24 +
.../test/Horde/ActiveSync/fixtures/FolderSyncRequest.txt | Bin 13 -> 0 bytes
.../test/Horde/ActiveSync/fixtures/default_policies.wbxml | Bin 66 -> 30 bytes
.../test/Horde/ActiveSync/fixtures/default_policies.xml | Bin 745 -> 129 bytes
.../test/Horde/ActiveSync/fixtures/iOSMultipartAlternative.eml | 29 +
.../test/Horde/ActiveSync/{137c3bb0-838d-499a-9f0e-fb6c0761da51}1 | 1 -
framework/Alarm/lib/Horde/Alarm.php | 2 +-
framework/Alarm/lib/Horde/Alarm/Exception.php | 2 +-
framework/Alarm/lib/Horde/Alarm/Handler.php | 2 +-
framework/Alarm/lib/Horde/Alarm/Handler/Desktop.php | 2 +-
framework/Alarm/lib/Horde/Alarm/Handler/Mail.php | 2 +-
framework/Alarm/lib/Horde/Alarm/Handler/Notify.php | 2 +-
framework/Alarm/lib/Horde/Alarm/Null.php | 2 +-
framework/Alarm/lib/Horde/Alarm/Object.php | 2 +-
framework/Alarm/lib/Horde/Alarm/Sql.php | 2 +-
framework/Alarm/lib/Horde/Alarm/Translation.php | 2 +-
framework/Alarm/locale/ar/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/bg/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/bs/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/ca/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/cs/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/da/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/de/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/el/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/en/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/es/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/et/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/eu/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/fa/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/fi/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/fr/LC_MESSAGES/Horde_Alarm.mo | Bin 461 -> 827 bytes
framework/Alarm/locale/fr/LC_MESSAGES/Horde_Alarm.po | 36 +-
framework/Alarm/locale/gl/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/he/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/hr/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/hu/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/id/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/is/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/it/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/ja/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/km/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/ko/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/lt/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/lv/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/mk/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/nb/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/nl/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/nn/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/pl/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/pt/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/pt_BR/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/ro/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/ru/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/sk/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/sl/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/sv/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/tr/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/uk/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/zh_CN/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/locale/zh_TW/LC_MESSAGES/Horde_Alarm.po | 2 +-
framework/Alarm/package.xml | 23 +-
framework/Argv/doc/Horde/Argv/COPYING | 2 +-
framework/Argv/lib/Horde/Argv/Translation.php | 2 +-
framework/Argv/locale/ar/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/bg/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/bs/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/ca/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/cs/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/da/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/de/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/el/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/en/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/es/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/et/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/eu/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/fa/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/fi/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/fr/LC_MESSAGES/Horde_Argv.mo | Bin 461 -> 1560 bytes
framework/Argv/locale/fr/LC_MESSAGES/Horde_Argv.po | 66 +-
framework/Argv/locale/gl/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/he/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/hr/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/hu/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/id/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/is/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/it/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/ja/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/km/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/ko/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/lt/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/lv/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/mk/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/nb/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/nl/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/nn/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/pl/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/pt/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/pt_BR/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/ro/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/ru/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/sk/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/sl/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/sv/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/tr/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/uk/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/zh_CN/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/locale/zh_TW/LC_MESSAGES/Horde_Argv.po | 2 +-
framework/Argv/package.xml | 23 +-
framework/Auth/lib/Horde/Auth.php | 2 +-
framework/Auth/lib/Horde/Auth/Auto.php | 2 +-
framework/Auth/lib/Horde/Auth/Base.php | 2 +-
framework/Auth/lib/Horde/Auth/Composite.php | 2 +-
framework/Auth/lib/Horde/Auth/Customsql.php | 2 +-
framework/Auth/lib/Horde/Auth/Cyrsql.php | 2 +-
framework/Auth/lib/Horde/Auth/Exception.php | 2 +-
framework/Auth/lib/Horde/Auth/Ftp.php | 2 +-
framework/Auth/lib/Horde/Auth/Http.php | 2 +-
framework/Auth/lib/Horde/Auth/Http/Remote.php | 2 +-
framework/Auth/lib/Horde/Auth/Imap.php | 2 +-
framework/Auth/lib/Horde/Auth/Ipbasic.php | 2 +-
framework/Auth/lib/Horde/Auth/Kolab.php | 2 +-
framework/Auth/lib/Horde/Auth/Ldap.php | 2 +-
framework/Auth/lib/Horde/Auth/Login.php | 2 +-
framework/Auth/lib/Horde/Auth/Msad.php | 4 +-
framework/Auth/lib/Horde/Auth/Pam.php | 4 +-
framework/Auth/lib/Horde/Auth/Passwd.php | 2 +-
framework/Auth/lib/Horde/Auth/Peclsasl.php | 2 +-
framework/Auth/lib/Horde/Auth/Radius.php | 2 +-
framework/Auth/lib/Horde/Auth/Smb.php | 6 +-
framework/Auth/lib/Horde/Auth/Smbclient.php | 6 +-
framework/Auth/lib/Horde/Auth/Sql.php | 2 +-
framework/Auth/lib/Horde/Auth/Translation.php | 2 +-
framework/Auth/locale/de/LC_MESSAGES/Horde_Auth.po | 2 +-
framework/Auth/locale/es/LC_MESSAGES/Horde_Auth.po | 2 +-
framework/Auth/locale/et/LC_MESSAGES/Horde_Auth.po | 2 +-
framework/Auth/locale/eu/LC_MESSAGES/Horde_Auth.po | 2 +-
framework/Auth/locale/fi/LC_MESSAGES/Horde_Auth.po | 2 +-
framework/Auth/locale/fr/LC_MESSAGES/Horde_Auth.mo | Bin 0 -> 3473 bytes
framework/Auth/locale/fr/LC_MESSAGES/Horde_Auth.po | 119 +
framework/Auth/locale/ja/LC_MESSAGES/Horde_Auth.po | 2 +-
framework/Auth/locale/lv/LC_MESSAGES/Horde_Auth.po | 2 +-
framework/Auth/package.xml | 36 +-
framework/Auth/test/Horde/Auth/TestCase.php | Bin 1747 -> 1747 bytes
framework/Auth/test/Horde/Auth/Unit/AuthTest.php | 2 +-
framework/Auth/test/Horde/Auth/Unit/KolabTest.php | 2 +-
framework/Auth/test/Horde/Auth/Unit/PasswdTest.php | 2 +-
framework/Autoloader_Cache/bin/horde-autoloader-cache-prune | 2 +-
framework/Browser/lib/Horde/Browser.php | 2 +-
framework/Browser/lib/Horde/Browser/Exception.php | 2 +-
framework/Browser/lib/Horde/Browser/Translation.php | 2 +-
framework/Browser/locale/ar/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/bg/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/bs/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/ca/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/cs/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/da/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/de/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/el/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/en/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/es/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/et/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/eu/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/fa/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/fi/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/fr/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/gl/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/he/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/hr/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/hu/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/id/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/is/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/it/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/ja/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/km/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/ko/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/lt/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/lv/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/mk/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/nb/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/nl/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/nn/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/pl/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/pt/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/pt_BR/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/ro/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/ru/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/sk/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/sl/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/sv/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/tr/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/uk/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/zh_CN/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/locale/zh_TW/LC_MESSAGES/Horde_Browser.po | 2 +-
framework/Browser/package.xml | 24 +-
framework/Cache/lib/Horde/Cache.php | 2 +-
framework/Cache/lib/Horde/Cache/Exception.php | 2 +-
framework/Cache/lib/Horde/Cache/Storage/Apc.php | 2 +-
framework/Cache/lib/Horde/Cache/Storage/Base.php | 2 +-
framework/Cache/lib/Horde/Cache/Storage/Eaccelerator.php | 2 +-
framework/Cache/lib/Horde/Cache/Storage/File.php | 2 +-
framework/Cache/lib/Horde/Cache/Storage/Memcache.php | 3 +-
framework/Cache/lib/Horde/Cache/Storage/Mock.php | 2 +-
framework/Cache/lib/Horde/Cache/Storage/Null.php | 2 +-
framework/Cache/lib/Horde/Cache/Storage/Session.php | 2 +-
framework/Cache/lib/Horde/Cache/Storage/Sql.php | 2 +-
framework/Cache/lib/Horde/Cache/Storage/Stack.php | 2 +-
framework/Cache/lib/Horde/Cache/Storage/Xcache.php | 2 +-
framework/Cli/lib/Horde/Cli.php | 2 +-
framework/Cli/lib/Horde/Cli/Translation.php | 2 +-
framework/Cli/locale/ar/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/bg/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/bs/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/ca/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/cs/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/da/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/de/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/el/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/en/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/es/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/et/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/eu/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/fa/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/fi/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/fr/LC_MESSAGES/Horde_Cli.mo | Bin 614 -> 792 bytes
framework/Cli/locale/fr/LC_MESSAGES/Horde_Cli.po | 35 +-
framework/Cli/locale/gl/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/he/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/hr/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/hu/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/id/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/is/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/it/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/ja/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/km/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/ko/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/lt/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/lv/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/mk/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/nb/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/nl/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/nn/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/pl/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/pt/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/pt_BR/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/ro/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/ru/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/sk/LC_MESSAGES/Horde_Cli.mo | Bin 653 -> 750 bytes
framework/Cli/locale/sk/LC_MESSAGES/Horde_Cli.po | 26 +-
framework/Cli/locale/sl/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/sv/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/tr/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/uk/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/zh_CN/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/locale/zh_TW/LC_MESSAGES/Horde_Cli.po | 2 +-
framework/Cli/package.xml | 23 +-
framework/Cli_Modular/lib/Horde/Cli/Modular.php | 2 +-
framework/Cli_Modular/lib/Horde/Cli/Modular/Exception.php | 2 +-
framework/Cli_Modular/lib/Horde/Cli/Modular/Module.php | 2 +-
framework/Cli_Modular/lib/Horde/Cli/Modular/ModuleProvider.php | 2 +-
framework/Cli_Modular/lib/Horde/Cli/Modular/Modules.php | 2 +-
framework/Cli_Modular/test/Horde/Cli/Modular/Autoload.php | 2 +-
framework/Cli_Modular/test/Horde/Cli/Modular/TestCase.php | 2 +-
framework/Cli_Modular/test/Horde/Cli/Modular/Unit/ModularTest.php | 2 +-
.../test/Horde/Cli/Modular/Unit/ModuleProviderTest.php | 2 +-
framework/Cli_Modular/test/Horde/Cli/Modular/Unit/ModulesTest.php | 2 +-
framework/Compress/lib/Horde/Compress.php | 2 +-
framework/Compress/lib/Horde/Compress/Base.php | 2 +-
framework/Compress/lib/Horde/Compress/Dbx.php | 2 +-
framework/Compress/lib/Horde/Compress/Exception.php | 2 +-
framework/Compress/lib/Horde/Compress/Gzip.php | 2 +-
framework/Compress/lib/Horde/Compress/Rar.php | 2 +-
framework/Compress/lib/Horde/Compress/Tar.php | 2 +-
framework/Compress/lib/Horde/Compress/Tnef.php | 2 +-
framework/Compress/lib/Horde/Compress/Translation.php | 2 +-
framework/Compress/lib/Horde/Compress/Zip.php | 2 +-
framework/Compress/locale/ar/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/bg/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/bs/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/ca/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/cs/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/da/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/de/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/el/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/en/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/es/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/et/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/eu/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/fa/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/fi/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/fr/LC_MESSAGES/Horde_Compress.mo | Bin 634 -> 1018 bytes
framework/Compress/locale/fr/LC_MESSAGES/Horde_Compress.po | 43 +-
framework/Compress/locale/gl/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/he/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/hr/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/hu/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/id/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/is/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/it/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/ja/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/km/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/ko/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/lt/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/lv/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/mk/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/nb/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/nl/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/nn/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/pl/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/pt/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/pt_BR/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/ro/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/ru/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/sk/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/sl/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/sv/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/tr/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/uk/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/zh_CN/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/locale/zh_TW/LC_MESSAGES/Horde_Compress.po | 2 +-
framework/Compress/package.xml | 23 +-
framework/Constraint/doc/Horde/Constraint/COPYING | 2 +-
framework/Controller/doc/Horde/Controller/COPYING | 2 +-
framework/Controller/lib/Horde/Controller/Exception.php | 2 +-
framework/Controller/lib/Horde/Controller/FilterRunner.php | 2 +-
framework/Controller/test/Horde/Controller/MockRequestTest.php | 2 +-
framework/Core/js/autocomplete.js | 2 +-
framework/Core/js/dialog.js | 2 +-
framework/Core/js/form_assign.js | 2 +-
framework/Core/js/form_helpers.js | 2 +-
framework/Core/js/growler-jquery.js | 2 +-
framework/Core/js/hordecore.js | 27 +-
framework/Core/js/hordetree.js | 2 +-
framework/Core/js/image.js | 2 +-
framework/Core/js/imple.js | 2 +-
framework/Core/js/inplaceeditor.js | 2 +-
framework/Core/js/jquery.mobile/plugins/autocomplete.js | 6 +-
framework/Core/js/jquery.mobile/plugins/swipebutton.js | 2 +-
framework/Core/js/keynavlist.js | 2 +-
framework/Core/js/map/bing.js | 2 +-
framework/Core/js/map/cloudmade.js | 2 +-
framework/Core/js/map/google.js | 2 +-
framework/Core/js/map/horde.js | 2 +-
framework/Core/js/map/mapquest.js | 2 +-
framework/Core/js/map/mytopo.js | 2 +-
framework/Core/js/map/ocm.js | 2 +-
framework/Core/js/map/osm.js | 2 +-
framework/Core/js/map/yahoo.js | 2 +-
framework/Core/js/open_html_helper.js | 2 +-
framework/Core/js/prettyautocomplete.js | 2 +-
framework/Core/js/smartmobile.js | 2 +-
framework/Core/js/sorter.js | 2 +-
framework/Core/js/sourceselect.js | 9 +-
framework/Core/js/spellchecker.js | 2 +-
framework/Core/js/toggle_quotes.js | 2 +-
framework/Core/lib/Horde.php | 2 +-
framework/Core/lib/Horde/Config.php | 2 +-
framework/Core/lib/Horde/Config/Form.php | 2 +-
framework/Core/lib/Horde/Core/ActiveSync/Connector.php | 4 +-
framework/Core/lib/Horde/Core/ActiveSync/Driver.php | 299 +-
framework/Core/lib/Horde/Core/ActiveSync/Imap/Factory.php | 4 +-
framework/Core/lib/Horde/Core/ActiveSync/Logger/Factory.php | 4 +-
framework/Core/lib/Horde/Core/Ajax/Application.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Application/Handler.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Application/Handler/Chunk.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Application/Handler/Email.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Application/Handler/Groups.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Application/Handler/Imple.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Application/Handler/Noop.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Application/Handler/Prefs.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/AutoCompleter.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/AutoCompleter/Ajax.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/AutoCompleter/Base.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/AutoCompleter/Local.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/AutoCompleter/Pretty.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/ContactAutoCompleter.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/Geocoder/Geonames.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/InPlaceEditor.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/SpellChecker.php | 9 +-
.../lib/Horde/Core/Ajax/Imple/WeatherLocationAutoCompleter.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Response.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Response/HordeCore.php | 2 +-
.../Core/lib/Horde/Core/Ajax/Response/HordeCore/JsonHtml.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Response/HordeCore/NoAuth.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Response/HordeCore/Reload.php | 2 +-
.../lib/Horde/Core/Ajax/Response/HordeCore/SessionTimeout.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Response/Notifications.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Response/Prototypejs.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Response/Raw.php | 2 +-
framework/Core/lib/Horde/Core/Alarm/Handler/Notify.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Application.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Composite.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Imsp.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Ldap.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Msad.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Shibboleth.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Signup/Base.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Signup/Form.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Signup/Null.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Signup/Sql.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Signup/SqlObject.php | 2 +-
framework/Core/lib/Horde/Core/Block.php | 2 +-
framework/Core/lib/Horde/Core/Block/Collection.php | 2 +-
framework/Core/lib/Horde/Core/Block/Layout.php | 2 +-
framework/Core/lib/Horde/Core/Block/Layout/Manager.php | 2 +-
framework/Core/lib/Horde/Core/Block/Layout/View.php | 2 +-
framework/Core/lib/Horde/Core/Block/Upgrade.php | 2 +-
framework/Core/lib/Horde/Core/Browser.php | 2 +-
framework/Core/lib/Horde/Core/Bundle.php | 2 +-
framework/Core/lib/Horde/Core/Cli.php | 2 +-
framework/Core/lib/Horde/Core/Data/Storage.php | 2 +-
framework/Core/lib/Horde/Core/Db/Migration.php | 2 +-
framework/Core/lib/Horde/Core/Editor/Ckeditor.php | 10 +-
framework/Core/lib/Horde/Core/Factory/Ajax.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Alarm.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Auth.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Base.php | 2 +-
framework/Core/lib/Horde/Core/Factory/BlockCollection.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Cache.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Crypt.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Data.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Db.php | 2 +-
framework/Core/lib/Horde/Core/Factory/DbPear.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Editor.php | 2 +-
framework/Core/lib/Horde/Core/Factory/ElasticSearch.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Identity.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Imple.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Imsp.php | 2 +-
framework/Core/lib/Horde/Core/Factory/ImspAuth.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Injector.php | 2 +-
framework/Core/lib/Horde/Core/Factory/KolabServer.php | 2 +-
framework/Core/lib/Horde/Core/Factory/KolabSession.php | 2 +-
framework/Core/lib/Horde/Core/Factory/KolabStorage.php | 2 +-
framework/Core/lib/Horde/Core/Factory/LanguageDetect.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Ldap.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Lock.php | 2 +-
framework/Core/lib/Horde/Core/Factory/LoginTasks.php | 2 +-
framework/Core/lib/Horde/Core/Factory/MimeViewer.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Perms.php | 2 +-
framework/Core/lib/Horde/Core/Factory/PermsCore.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Prefs.php | 2 +-
framework/Core/lib/Horde/Core/Factory/SessionHandler.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Share.php | 2 +-
framework/Core/lib/Horde/Core/Factory/ShareBase.php | 2 +-
framework/Core/lib/Horde/Core/Factory/SpellChecker.php | 2 +-
framework/Core/lib/Horde/Core/Factory/TextFilter.php | 2 +-
framework/Core/lib/Horde/Core/Factory/ThemesCache.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Timezone.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Topbar.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Tree.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Vfs.php | 2 +-
framework/Core/lib/Horde/Core/Factory/View.php | 4 +-
framework/Core/lib/Horde/Core/Group/Ldap.php | 2 +-
framework/Core/lib/Horde/Core/Imsp/Utils.php | 2 +-
framework/Core/lib/Horde/Core/Log/Logger.php | 2 +-
framework/Core/lib/Horde/Core/LoginTasks.php | 2 +-
framework/Core/lib/Horde/Core/LoginTasks/Backend/Horde.php | 2 +-
framework/Core/lib/Horde/Core/LoginTasks/SystemTask/Upgrade.php | 2 +-
framework/Core/lib/Horde/Core/Mime/Viewer/Syntaxhighlighter.php | 2 +-
framework/Core/lib/Horde/Core/Mime/Viewer/Vcard.php | 2 +-
framework/Core/lib/Horde/Core/Notification/Event/Status.php | 2 +-
.../Core/lib/Horde/Core/Notification/Handler/Decorator/Base.php | 2 +-
.../lib/Horde/Core/Notification/Handler/Decorator/Hordelog.php | 2 +-
.../Core/lib/Horde/Core/Notification/Listener/DynamicStatus.php | 2 +-
.../lib/Horde/Core/Notification/Listener/SmartmobileStatus.php | 2 +-
framework/Core/lib/Horde/Core/Notification/Storage/Session.php | 2 +-
framework/Core/lib/Horde/Core/Perms.php | 2 +-
framework/Core/lib/Horde/Core/Perms/Ui.php | 2 +-
framework/Core/lib/Horde/Core/Prefs/Cache/Session.php | 2 +-
framework/Core/lib/Horde/Core/Prefs/Identity.php | 8 +-
framework/Core/lib/Horde/Core/Prefs/Storage/Configuration.php | 2 +-
framework/Core/lib/Horde/Core/Prefs/Storage/Hooks.php | 2 +-
framework/Core/lib/Horde/Core/Prefs/Storage/Upgrade.php | 2 +-
framework/Core/lib/Horde/Core/Prefs/Ui.php | 4 +-
framework/Core/lib/Horde/Core/Prefs/Ui/Special.php | 2 +-
framework/Core/lib/Horde/Core/Prefs/Ui/Widgets.php | 12 +-
framework/Core/lib/Horde/Core/Script/Package/Datejs.php | 9 +-
framework/Core/lib/Horde/Core/Script/Package/Dialog.php | 2 +-
framework/Core/lib/Horde/Core/Script/Package/Keynavlist.php | 2 +-
framework/Core/lib/Horde/Core/Script/Package/Popup.php | 2 +-
framework/Core/lib/Horde/Core/Secret.php | 2 +-
framework/Core/lib/Horde/Core/Share/Driver.php | 2 +-
framework/Core/lib/Horde/Core/Share/FactoryCallback.php | 2 +-
framework/Core/lib/Horde/Core/Smartmobile/Url.php | 2 +-
framework/Core/lib/Horde/Core/Smartmobile/View/Helper.php | 2 +-
framework/Core/lib/Horde/Core/TagBrowser.php | 2 +-
framework/Core/lib/Horde/Core/Tagger.php | 2 +-
framework/Core/lib/Horde/Core/Text/Filter/Bbcode.php | 2 +-
framework/Core/lib/Horde/Core/Text/Filter/Emails.php | 2 +-
framework/Core/lib/Horde/Core/Text/Filter/Emoticons.php | 2 +-
framework/Core/lib/Horde/Core/Text/Filter/Highlightquotes.php | 2 +-
framework/Core/lib/Horde/Core/Topbar.php | 2 +-
framework/Core/lib/Horde/Core/Translation.php | 2 +-
framework/Core/lib/Horde/Core/Tree/Renderer/Html.php | 2 +-
framework/Core/lib/Horde/Core/Tree/Renderer/Javascript.php | 2 +-
framework/Core/lib/Horde/Core/Tree/Renderer/Simplehtml.php | 2 +-
framework/Core/lib/Horde/Core/Ui/FlagImage.php | 2 +-
framework/Core/lib/Horde/Core/Ui/JsCalendar.php | 2 +-
framework/Core/lib/Horde/Core/Ui/Language.php | 2 +-
framework/Core/lib/Horde/Core/Ui/ModalFormRenderer.php | 16 +-
framework/Core/lib/Horde/Core/Ui/Pager.php | 2 +-
framework/Core/lib/Horde/Core/Ui/Tabs.php | 2 +-
framework/Core/lib/Horde/Core/Ui/TagCloud.php | 2 +-
framework/Core/lib/Horde/Core/Ui/VarRenderer.php | 2 +-
framework/Core/lib/Horde/Core/Ui/VarRenderer/Html.php | 2 +-
framework/Core/lib/Horde/Core/Ui/VarRenderer/TablesetHtml.php | 2 +-
framework/Core/lib/Horde/Core/Ui/Widget.php | 2 +-
framework/Core/lib/Horde/Core/View/Helper/Accesskey.php | 2 +-
framework/Core/lib/Horde/Core/View/Helper/Help.php | 2 +-
framework/Core/lib/Horde/Core/View/Helper/Image.php | 2 +-
framework/Core/lib/Horde/Core/View/Helper/Label.php | 2 +-
framework/Core/lib/Horde/ErrorHandler.php | 2 +-
framework/Core/lib/Horde/Exception/AuthenticationFailure.php | 2 +-
framework/Core/lib/Horde/Exception/PushApp.php | 2 +-
framework/Core/lib/Horde/Help.php | 2 +-
framework/Core/lib/Horde/Menu.php | 2 +-
framework/Core/lib/Horde/PageOutput.php | 2 +-
framework/Core/lib/Horde/Registry.php | 3 +-
framework/Core/lib/Horde/Registry/Api.php | 2 +-
framework/Core/lib/Horde/Registry/Application.php | 2 +-
framework/Core/lib/Horde/Registry/Caller.php | 2 +-
framework/Core/lib/Horde/Registry/Nlsconfig.php | 2 +-
framework/Core/lib/Horde/Script/File.php | 2 +-
framework/Core/lib/Horde/Script/File/External.php | 2 +-
framework/Core/lib/Horde/Script/File/JsDir.php | 2 +-
framework/Core/lib/Horde/Script/File/JsFramework.php | 2 +-
framework/Core/lib/Horde/Script/List.php | 2 +-
framework/Core/lib/Horde/Script/Package.php | 2 +-
framework/Core/lib/Horde/Session.php | 2 +-
framework/Core/lib/Horde/Session/Null.php | 40 +-
framework/Core/lib/Horde/Themes.php | 2 +-
framework/Core/lib/Horde/Themes/Cache.php | 2 +-
framework/Core/lib/Horde/Themes/Css.php | 2 +-
framework/Core/lib/Horde/Themes/Element.php | 2 +-
framework/Core/lib/Horde/Themes/Image.php | 2 +-
framework/Core/lib/Horde/Themes/Sound.php | 2 +-
framework/Core/locale/ar/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/bg/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/bs/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/ca/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/cs/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/da/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/de/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/el/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/en/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/es/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/et/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/eu/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/fa/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/fi/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/fr/LC_MESSAGES/Horde_Core.mo | Bin 10834 -> 20140 bytes
framework/Core/locale/fr/LC_MESSAGES/Horde_Core.po | 998 +-
framework/Core/locale/gl/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/he/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/hr/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/hu/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/id/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/is/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/it/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/ja/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/km/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/ko/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/lt/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/lv/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/mk/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/nb/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/nl/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/nn/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/pl/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/pt/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/pt_BR/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/ro/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/ru/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/sk/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/sl/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/sv/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/tr/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/uk/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/zh_CN/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/locale/zh_TW/LC_MESSAGES/Horde_Core.po | 2 +-
framework/Core/package.xml | 66 +-
framework/Core/test/Horde/Core/ActiveSyncTests.php | 149 +
framework/Core/test/Horde/Core/Factory/GroupTest.php | 2 +-
framework/Core/test/Horde/Core/Factory/KolabServerTest.php | 2 +-
framework/Core/test/Horde/Core/Factory/KolabSessionTest.php | 2 +-
framework/Core/test/Horde/Core/RegistryTest.php | 2 +-
framework/Core/test/Horde/Core/Stub/Registry.php | 2 +-
framework/Crypt/lib/Horde/Crypt.php | 2 +-
framework/Crypt/lib/Horde/Crypt/Exception.php | 2 +-
framework/Crypt/lib/Horde/Crypt/Pgp.php | 2 +-
framework/Crypt/lib/Horde/Crypt/Smime.php | 2 +-
framework/Crypt/lib/Horde/Crypt/Translation.php | 2 +-
framework/Crypt/locale/ar/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/bg/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/bs/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/ca/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/cs/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/da/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/de/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/el/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/en/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/es/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/et/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/eu/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/fa/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/fi/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/fr/LC_MESSAGES/Horde_Crypt.mo | Bin 7992 -> 7566 bytes
framework/Crypt/locale/fr/LC_MESSAGES/Horde_Crypt.po | 284 +-
framework/Crypt/locale/gl/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/he/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/hr/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/hu/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/id/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/is/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/it/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/ja/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/km/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/ko/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/lt/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/lv/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/mk/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/nb/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/nl/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/nn/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/pl/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/pt/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/pt_BR/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/ro/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/ru/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/sk/LC_MESSAGES/Horde_Crypt.mo | Bin 8534 -> 7402 bytes
framework/Crypt/locale/sk/LC_MESSAGES/Horde_Crypt.po | 258 +-
framework/Crypt/locale/sl/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/sv/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/tr/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/uk/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/zh_CN/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/locale/zh_TW/LC_MESSAGES/Horde_Crypt.po | 2 +-
framework/Crypt/package.xml | 23 +-
framework/Crypt_Blowfish/lib/Horde/Crypt/Blowfish.php | 6 +-
framework/Crypt_Blowfish/lib/Horde/Crypt/Blowfish/Base.php | 6 +-
framework/Crypt_Blowfish/lib/Horde/Crypt/Blowfish/Exception.php | 6 +-
framework/Crypt_Blowfish/lib/Horde/Crypt/Blowfish/Mcrypt.php | 6 +-
framework/Crypt_Blowfish/lib/Horde/Crypt/Blowfish/Openssl.php | 6 +-
framework/Crypt_Blowfish/lib/Horde/Crypt/Blowfish/Php.php | 6 +-
framework/Crypt_Blowfish/lib/Horde/Crypt/Blowfish/Php/Base.php | 6 +-
framework/Crypt_Blowfish/lib/Horde/Crypt/Blowfish/Php/Cbc.php | 6 +-
framework/Crypt_Blowfish/lib/Horde/Crypt/Blowfish/Php/Ecb.php | 6 +-
framework/Crypt_Blowfish/package.xml | 21 +-
framework/Data/lib/Horde/Data.php | 2 +-
framework/Data/lib/Horde/Data/Base.php | 2 +-
framework/Data/lib/Horde/Data/Csv.php | 2 +-
framework/Data/lib/Horde/Data/Exception.php | 2 +-
framework/Data/lib/Horde/Data/Exception/Charset.php | 2 +-
framework/Data/lib/Horde/Data/Icalendar.php | 2 +-
framework/Data/lib/Horde/Data/Imc.php | 2 +-
framework/Data/lib/Horde/Data/Outlookcsv.php | 2 +-
framework/Data/lib/Horde/Data/Storage.php | 2 +-
framework/Data/lib/Horde/Data/Storage/Mock.php | 2 +-
framework/Data/lib/Horde/Data/Translation.php | 2 +-
framework/Data/lib/Horde/Data/Tsv.php | 2 +-
framework/Data/lib/Horde/Data/Vcard.php | 2 +-
framework/Data/lib/Horde/Data/Vnote.php | 2 +-
framework/Data/lib/Horde/Data/Vtodo.php | 2 +-
framework/Data/locale/ar/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/bg/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/bs/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/ca/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/cs/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/da/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/de/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/el/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/en/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/es/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/et/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/eu/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/fa/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/fi/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/fr/LC_MESSAGES/Horde_Data.mo | Bin 550 -> 1349 bytes
framework/Data/locale/fr/LC_MESSAGES/Horde_Data.po | 47 +-
framework/Data/locale/gl/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/he/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/hr/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/hu/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/id/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/is/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/it/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/ja/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/km/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/ko/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/lt/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/lv/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/mk/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/nb/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/nl/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/nn/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/pl/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/pt/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/pt_BR/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/ro/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/ru/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/sk/LC_MESSAGES/Horde_Data.mo | Bin 596 -> 1306 bytes
framework/Data/locale/sk/LC_MESSAGES/Horde_Data.po | 41 +-
framework/Data/locale/sl/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/sv/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/tr/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/uk/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/zh_CN/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/locale/zh_TW/LC_MESSAGES/Horde_Data.po | 2 +-
framework/Data/package.xml | 23 +-
framework/Date/lib/Horde/Date.php | 10 +-
framework/Date/lib/Horde/Date/Exception.php | 2 +-
framework/Date/lib/Horde/Date/Recurrence.php | 2 +-
framework/Date/lib/Horde/Date/Repeater.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Day.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/DayName.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/DayPortion.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Exception.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Fortnight.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Hour.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Minute.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Month.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/MonthName.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Season.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/SeasonName.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Second.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Time.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Week.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Weekend.php | 2 +-
framework/Date/lib/Horde/Date/Repeater/Year.php | 2 +-
framework/Date/lib/Horde/Date/Span.php | 2 +-
framework/Date/lib/Horde/Date/Translation.php | 2 +-
framework/Date/lib/Horde/Date/Utils.php | 6 +-
framework/Date/locale/ar/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/bg/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/bs/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/ca/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/cs/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/da/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/de/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/el/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/en/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/es/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/et/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/eu/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/fa/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/fi/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/fr/LC_MESSAGES/Horde_Date.mo | Bin 645 -> 1236 bytes
framework/Date/locale/fr/LC_MESSAGES/Horde_Date.po | 70 +-
framework/Date/locale/gl/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/he/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/hr/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/hu/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/id/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/is/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/it/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/ja/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/km/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/ko/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/lt/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/lv/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/mk/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/nb/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/nl/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/nn/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/pl/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/pt/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/pt_BR/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/ro/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/ru/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/sk/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/sl/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/sv/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/tr/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/uk/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/zh_CN/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/locale/zh_TW/LC_MESSAGES/Horde_Date.po | 2 +-
framework/Date/package.xml | 30 +-
framework/Date/test/Horde/Date/RecurrenceTest.php | 3 +
framework/Db/bin/horde-db-migrate-component | 2 +-
framework/Db/doc/Horde/Db/COPYING | 2 +-
framework/Db/lib/Horde/Db.php | 2 +-
framework/Db/lib/Horde/Db/Adapter.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Base.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Base/Column.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Base/ColumnDefinition.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Base/Index.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Base/Schema.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Base/Table.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Base/TableDefinition.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Mysql.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Mysql/Column.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Mysql/Result.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Mysql/Schema.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Mysqli.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Mysqli/Result.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Pdo/Base.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Pdo/Mysql.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Pdo/Pgsql.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Pdo/Sqlite.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Postgresql/Column.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/SplitRead.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Sqlite/Column.php | 2 +-
framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php | 2 +-
framework/Db/lib/Horde/Db/Exception.php | 2 +-
framework/Db/lib/Horde/Db/Migration/Base.php | 2 +-
framework/Db/lib/Horde/Db/Migration/Exception.php | 2 +-
framework/Db/lib/Horde/Db/Migration/Migrator.php | 2 +-
framework/Db/lib/Horde/Db/SearchParser.php | 2 +-
framework/Db/lib/Horde/Db/StatementParser.php | 2 +-
framework/Db/lib/Horde/Db/Value.php | 2 +-
framework/Db/lib/Horde/Db/Value/Binary.php | 2 +-
framework/Db/test/Horde/Db/Adapter/MissingTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Mysql/ColumnDefinitionTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Mysql/ColumnTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Mysql/TableDefinitionTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/MysqlSuite.php | 2 +-
framework/Db/test/Horde/Db/Adapter/MysqlTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/MysqliSuite.php | 2 +-
framework/Db/test/Horde/Db/Adapter/MysqliTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Pdo/MysqlSuite.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Pdo/MysqlTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlSuite.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Pdo/SqliteSuite.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php | 2 +-
.../Db/test/Horde/Db/Adapter/Postgresql/ColumnDefinitionTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Postgresql/ColumnTest.php | 2 +-
.../Db/test/Horde/Db/Adapter/Postgresql/TableDefinitionTest.php | 2 +-
.../Db/test/Horde/Db/Adapter/Sqlite/ColumnDefinitionTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Sqlite/ColumnTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Sqlite/TableDefinitionTest.php | 2 +-
framework/Db/test/Horde/Db/Migration/BaseTest.php | 2 +-
framework/Db/test/Horde/Db/Migration/MigratorTest.php | 2 +-
framework/Db/test/Horde/Db/fixtures/unit_tests.sql | 2 +-
framework/Editor/js/LICENSE.html | 1327 --
framework/Editor/js/ckeditor.js | 1 -
framework/Editor/js/ckeditor/LICENSE.html | 1327 ++
framework/Editor/js/ckeditor/ckeditor.js | 1 +
framework/Editor/js/ckeditor/ckeditor_basic.js | 1 +
framework/Editor/js/ckeditor/config.js | 1 +
framework/Editor/js/ckeditor/contents.css | 25 +
framework/Editor/js/ckeditor/images/spacer.gif | Bin 0 -> 43 bytes
framework/Editor/js/ckeditor/lang/_languages.js | 1 +
framework/Editor/js/ckeditor/lang/af.js | 1 +
framework/Editor/js/ckeditor/lang/ar.js | 1 +
framework/Editor/js/ckeditor/lang/bg.js | 1 +
framework/Editor/js/ckeditor/lang/bn.js | 1 +
framework/Editor/js/ckeditor/lang/bs.js | 1 +
framework/Editor/js/ckeditor/lang/ca.js | 1 +
framework/Editor/js/ckeditor/lang/cs.js | 1 +
framework/Editor/js/ckeditor/lang/cy.js | 1 +
framework/Editor/js/ckeditor/lang/da.js | 1 +
framework/Editor/js/ckeditor/lang/de.js | 1 +
framework/Editor/js/ckeditor/lang/el.js | 1 +
framework/Editor/js/ckeditor/lang/en-au.js | 1 +
framework/Editor/js/ckeditor/lang/en-ca.js | 1 +
framework/Editor/js/ckeditor/lang/en-gb.js | 1 +
framework/Editor/js/ckeditor/lang/en.js | 1 +
framework/Editor/js/ckeditor/lang/eo.js | 1 +
framework/Editor/js/ckeditor/lang/es.js | 1 +
framework/Editor/js/ckeditor/lang/et.js | 1 +
framework/Editor/js/ckeditor/lang/eu.js | 1 +
framework/Editor/js/ckeditor/lang/fa.js | 1 +
framework/Editor/js/ckeditor/lang/fi.js | 1 +
framework/Editor/js/ckeditor/lang/fo.js | 1 +
framework/Editor/js/ckeditor/lang/fr-ca.js | 1 +
framework/Editor/js/ckeditor/lang/fr.js | 1 +
framework/Editor/js/ckeditor/lang/gl.js | 1 +
framework/Editor/js/ckeditor/lang/gu.js | 1 +
framework/Editor/js/ckeditor/lang/he.js | 1 +
framework/Editor/js/ckeditor/lang/hi.js | 1 +
framework/Editor/js/ckeditor/lang/hr.js | 1 +
framework/Editor/js/ckeditor/lang/hu.js | 1 +
framework/Editor/js/ckeditor/lang/id.js | 1 +
framework/Editor/js/ckeditor/lang/is.js | 1 +
framework/Editor/js/ckeditor/lang/it.js | 1 +
framework/Editor/js/ckeditor/lang/ja.js | 1 +
framework/Editor/js/ckeditor/lang/ka.js | 1 +
framework/Editor/js/ckeditor/lang/km.js | 1 +
framework/Editor/js/ckeditor/lang/ko.js | 1 +
framework/Editor/js/ckeditor/lang/ku.js | 1 +
framework/Editor/js/ckeditor/lang/lt.js | 1 +
framework/Editor/js/ckeditor/lang/lv.js | 1 +
framework/Editor/js/ckeditor/lang/mk.js | 1 +
framework/Editor/js/ckeditor/lang/mn.js | 1 +
framework/Editor/js/ckeditor/lang/ms.js | 1 +
framework/Editor/js/ckeditor/lang/nb.js | 1 +
framework/Editor/js/ckeditor/lang/nl.js | 1 +
framework/Editor/js/ckeditor/lang/no.js | 1 +
framework/Editor/js/ckeditor/lang/pl.js | 1 +
framework/Editor/js/ckeditor/lang/pt-br.js | 1 +
framework/Editor/js/ckeditor/lang/pt.js | 1 +
framework/Editor/js/ckeditor/lang/ro.js | 1 +
framework/Editor/js/ckeditor/lang/ru.js | 1 +
framework/Editor/js/ckeditor/lang/sk.js | 1 +
framework/Editor/js/ckeditor/lang/sl.js | 1 +
framework/Editor/js/ckeditor/lang/sr-latn.js | 1 +
framework/Editor/js/ckeditor/lang/sr.js | 1 +
framework/Editor/js/ckeditor/lang/sv.js | 1 +
framework/Editor/js/ckeditor/lang/th.js | 1 +
framework/Editor/js/ckeditor/lang/tr.js | 1 +
framework/Editor/js/ckeditor/lang/ug.js | 1 +
framework/Editor/js/ckeditor/lang/uk.js | 1 +
framework/Editor/js/ckeditor/lang/vi.js | 1 +
framework/Editor/js/ckeditor/lang/zh-cn.js | 1 +
framework/Editor/js/ckeditor/lang/zh.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/cs.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/cy.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/da.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/de.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/el.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/en.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/eo.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/fa.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/fi.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/fr.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/gu.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/he.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/it.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/ku.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/mk.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/nb.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/nl.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/no.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/pt-br.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/ro.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/sk.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/tr.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/ug.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/vi.js | 1 +
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/zh-cn.js | 1 +
framework/Editor/js/ckeditor/plugins/about/dialogs/about.js | 1 +
.../Editor/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png | Bin 0 -> 2759 bytes
framework/Editor/js/ckeditor/plugins/adobeair/plugin.js | 1 +
framework/Editor/js/ckeditor/plugins/ajax/plugin.js | 1 +
framework/Editor/js/ckeditor/plugins/autogrow/plugin.js | 1 +
framework/Editor/js/ckeditor/plugins/bbcode/plugin.js | 1 +
framework/Editor/js/ckeditor/plugins/clipboard/dialogs/paste.js | 1 +
.../Editor/js/ckeditor/plugins/colordialog/dialogs/colordialog.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/bg.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/cs.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/cy.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/da.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/de.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/el.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/en.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/eo.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/et.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/fa.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/fi.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/fr.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/gu.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/he.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/hr.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/it.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/ku.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/nb.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/nl.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/no.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/pl.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/pt-br.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/sk.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/tr.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/ug.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/uk.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/vi.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/zh-cn.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/plugin.js | 1 +
framework/Editor/js/ckeditor/plugins/div/dialogs/div.js | 1 +
framework/Editor/js/ckeditor/plugins/docprops/dialogs/docprops.js | 1 +
framework/Editor/js/ckeditor/plugins/docprops/plugin.js | 1 +
framework/Editor/js/ckeditor/plugins/find/dialogs/find.js | 1 +
framework/Editor/js/ckeditor/plugins/flash/dialogs/flash.js | 1 +
framework/Editor/js/ckeditor/plugins/flash/images/placeholder.png | Bin 0 -> 256 bytes
framework/Editor/js/ckeditor/plugins/forms/dialogs/button.js | 1 +
framework/Editor/js/ckeditor/plugins/forms/dialogs/checkbox.js | 1 +
framework/Editor/js/ckeditor/plugins/forms/dialogs/form.js | 1 +
framework/Editor/js/ckeditor/plugins/forms/dialogs/hiddenfield.js | 1 +
framework/Editor/js/ckeditor/plugins/forms/dialogs/radio.js | 1 +
framework/Editor/js/ckeditor/plugins/forms/dialogs/select.js | 1 +
framework/Editor/js/ckeditor/plugins/forms/dialogs/textarea.js | 1 +
framework/Editor/js/ckeditor/plugins/forms/dialogs/textfield.js | 1 +
framework/Editor/js/ckeditor/plugins/forms/images/hiddenfield.gif | Bin 0 -> 105 bytes
framework/Editor/js/ckeditor/plugins/iframe/dialogs/iframe.js | 1 +
.../Editor/js/ckeditor/plugins/iframe/images/placeholder.png | Bin 0 -> 264 bytes
framework/Editor/js/ckeditor/plugins/iframedialog/plugin.js | 1 +
framework/Editor/js/ckeditor/plugins/image/dialogs/image.js | 1 +
framework/Editor/js/ckeditor/plugins/link/dialogs/anchor.js | 1 +
framework/Editor/js/ckeditor/plugins/link/dialogs/link.js | 1 +
framework/Editor/js/ckeditor/plugins/link/images/anchor.gif | Bin 0 -> 184 bytes
.../Editor/js/ckeditor/plugins/liststyle/dialogs/liststyle.js | 1 +
.../Editor/js/ckeditor/plugins/pagebreak/images/pagebreak.gif | Bin 0 -> 54 bytes
.../Editor/js/ckeditor/plugins/pastefromword/filter/default.js | 1 +
.../Editor/js/ckeditor/plugins/pastetext/dialogs/pastetext.js | 1 +
.../Editor/js/ckeditor/plugins/placeholder/dialogs/placeholder.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/bg.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/cs.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/cy.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/da.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/de.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/el.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/en.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/eo.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/et.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/fa.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/fi.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/fr.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/he.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/hr.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/it.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/ku.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/nb.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/nl.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/no.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/pl.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/pt-br.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/sk.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/tr.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/ug.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/uk.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/vi.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/zh-cn.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/placeholder.gif | Bin 0 -> 96 bytes
framework/Editor/js/ckeditor/plugins/placeholder/plugin.js | 1 +
framework/Editor/js/ckeditor/plugins/preview/preview.html | 10 +
framework/Editor/js/ckeditor/plugins/scayt/dialogs/options.js | 1 +
framework/Editor/js/ckeditor/plugins/scayt/dialogs/toolbar.css | 6 +
.../js/ckeditor/plugins/showblocks/images/block_address.png | Bin 0 -> 152 bytes
.../js/ckeditor/plugins/showblocks/images/block_blockquote.png | Bin 0 -> 154 bytes
.../Editor/js/ckeditor/plugins/showblocks/images/block_div.png | Bin 0 -> 127 bytes
.../Editor/js/ckeditor/plugins/showblocks/images/block_h1.png | Bin 0 -> 119 bytes
.../Editor/js/ckeditor/plugins/showblocks/images/block_h2.png | Bin 0 -> 127 bytes
.../Editor/js/ckeditor/plugins/showblocks/images/block_h3.png | Bin 0 -> 123 bytes
.../Editor/js/ckeditor/plugins/showblocks/images/block_h4.png | Bin 0 -> 123 bytes
.../Editor/js/ckeditor/plugins/showblocks/images/block_h5.png | Bin 0 -> 126 bytes
.../Editor/js/ckeditor/plugins/showblocks/images/block_h6.png | Bin 0 -> 123 bytes
.../Editor/js/ckeditor/plugins/showblocks/images/block_p.png | Bin 0 -> 115 bytes
.../Editor/js/ckeditor/plugins/showblocks/images/block_pre.png | Bin 0 -> 127 bytes
framework/Editor/js/ckeditor/plugins/smiley/dialogs/smiley.js | 1 +
.../Editor/js/ckeditor/plugins/smiley/images/angel_smile.gif | Bin 0 -> 465 bytes
.../Editor/js/ckeditor/plugins/smiley/images/angry_smile.gif | Bin 0 -> 443 bytes
.../Editor/js/ckeditor/plugins/smiley/images/broken_heart.gif | Bin 0 -> 192 bytes
.../Editor/js/ckeditor/plugins/smiley/images/confused_smile.gif | Bin 0 -> 464 bytes
framework/Editor/js/ckeditor/plugins/smiley/images/cry_smile.gif | Bin 0 -> 468 bytes
.../Editor/js/ckeditor/plugins/smiley/images/devil_smile.gif | Bin 0 -> 436 bytes
.../Editor/js/ckeditor/plugins/smiley/images/embaressed_smile.gif | Bin 0 -> 442 bytes
framework/Editor/js/ckeditor/plugins/smiley/images/envelope.gif | Bin 0 -> 426 bytes
framework/Editor/js/ckeditor/plugins/smiley/images/heart.gif | Bin 0 -> 183 bytes
framework/Editor/js/ckeditor/plugins/smiley/images/kiss.gif | Bin 0 -> 241 bytes
framework/Editor/js/ckeditor/plugins/smiley/images/lightbulb.gif | Bin 0 -> 368 bytes
framework/Editor/js/ckeditor/plugins/smiley/images/omg_smile.gif | Bin 0 -> 451 bytes
.../Editor/js/ckeditor/plugins/smiley/images/regular_smile.gif | Bin 0 -> 450 bytes
framework/Editor/js/ckeditor/plugins/smiley/images/sad_smile.gif | Bin 0 -> 460 bytes
.../Editor/js/ckeditor/plugins/smiley/images/shades_smile.gif | Bin 0 -> 449 bytes
.../Editor/js/ckeditor/plugins/smiley/images/teeth_smile.gif | Bin 0 -> 442 bytes
.../Editor/js/ckeditor/plugins/smiley/images/thumbs_down.gif | Bin 0 -> 408 bytes
framework/Editor/js/ckeditor/plugins/smiley/images/thumbs_up.gif | Bin 0 -> 396 bytes
.../Editor/js/ckeditor/plugins/smiley/images/tounge_smile.gif | Bin 0 -> 446 bytes
.../ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif | Bin 0 -> 452 bytes
framework/Editor/js/ckeditor/plugins/smiley/images/wink_smile.gif | Bin 0 -> 458 bytes
.../Editor/js/ckeditor/plugins/specialchar/dialogs/specialchar.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/cs.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/cy.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/de.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/el.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/en.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/eo.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/et.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/fa.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/fi.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/fr.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/he.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/hr.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/it.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/ku.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/nb.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/nl.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/no.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/pt-br.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/tr.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/ug.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/zh-cn.js | 1 +
framework/Editor/js/ckeditor/plugins/styles/styles/default.js | 1 +
framework/Editor/js/ckeditor/plugins/stylesheetparser/plugin.js | 1 +
.../ckeditor/plugins/syntaxhighlight/dialogs/syntaxhighlight.js | 1 +
.../ckeditor/plugins/syntaxhighlight/images/syntaxhighlight.gif | Bin 0 -> 94 bytes
framework/Editor/js/ckeditor/plugins/syntaxhighlight/lang/en.js | 1 +
framework/Editor/js/ckeditor/plugins/syntaxhighlight/plugin.js | 1 +
framework/Editor/js/ckeditor/plugins/table/dialogs/table.js | 1 +
framework/Editor/js/ckeditor/plugins/tableresize/plugin.js | 1 +
.../Editor/js/ckeditor/plugins/tabletools/dialogs/tableCell.js | 1 +
.../Editor/js/ckeditor/plugins/templates/dialogs/templates.js | 1 +
.../Editor/js/ckeditor/plugins/templates/templates/default.js | 1 +
.../js/ckeditor/plugins/templates/templates/images/template1.gif | Bin 0 -> 375 bytes
.../js/ckeditor/plugins/templates/templates/images/template2.gif | Bin 0 -> 333 bytes
.../js/ckeditor/plugins/templates/templates/images/template3.gif | Bin 0 -> 422 bytes
framework/Editor/js/ckeditor/plugins/uicolor/dialogs/uicolor.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/bg.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/cs.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/cy.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/da.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/de.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/el.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/en.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/eo.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/et.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/fa.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/fi.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/fr.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/he.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/hr.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/it.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/ku.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/mk.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/nb.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/nl.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/no.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/pl.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/pt-br.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/sk.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/tr.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/ug.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/uk.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/vi.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/zh-cn.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/plugin.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/uicolor.gif | Bin 0 -> 1108 bytes
.../Editor/js/ckeditor/plugins/uicolor/yui/assets/hue_bg.png | Bin 0 -> 1019 bytes
.../Editor/js/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png | Bin 0 -> 133 bytes
.../Editor/js/ckeditor/plugins/uicolor/yui/assets/picker_mask.png | Bin 0 -> 10560 bytes
.../js/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png | Bin 0 -> 125 bytes
framework/Editor/js/ckeditor/plugins/uicolor/yui/assets/yui.css | 6 +
framework/Editor/js/ckeditor/plugins/uicolor/yui/yui.js | 1 +
framework/Editor/js/ckeditor/plugins/wsc/dialogs/ciframe.html | 49 +
framework/Editor/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html | 52 +
framework/Editor/js/ckeditor/plugins/wsc/dialogs/wsc.css | 6 +
framework/Editor/js/ckeditor/plugins/wsc/dialogs/wsc.js | 1 +
framework/Editor/js/ckeditor/plugins/xml/plugin.js | 1 +
framework/Editor/js/ckeditor/skins/kama/dialog.css | 10 +
framework/Editor/js/ckeditor/skins/kama/editor.css | 13 +
framework/Editor/js/ckeditor/skins/kama/icons.png | Bin 0 -> 4627 bytes
framework/Editor/js/ckeditor/skins/kama/icons_rtl.png | Bin 0 -> 4639 bytes
framework/Editor/js/ckeditor/skins/kama/images/dialog_sides.gif | Bin 0 -> 48 bytes
framework/Editor/js/ckeditor/skins/kama/images/dialog_sides.png | Bin 0 -> 126 bytes
.../Editor/js/ckeditor/skins/kama/images/dialog_sides_rtl.png | Bin 0 -> 131 bytes
framework/Editor/js/ckeditor/skins/kama/images/mini.gif | Bin 0 -> 183 bytes
framework/Editor/js/ckeditor/skins/kama/images/noimage.png | Bin 0 -> 2114 bytes
framework/Editor/js/ckeditor/skins/kama/images/sprites.png | Bin 0 -> 5485 bytes
framework/Editor/js/ckeditor/skins/kama/images/sprites_ie6.png | Bin 0 -> 2558 bytes
framework/Editor/js/ckeditor/skins/kama/images/toolbar_start.gif | Bin 0 -> 105 bytes
framework/Editor/js/ckeditor/skins/kama/skin.js | 1 +
framework/Editor/js/ckeditor/skins/kama/templates.css | 6 +
framework/Editor/js/ckeditor/skins/office2003/dialog.css | 10 +
framework/Editor/js/ckeditor/skins/office2003/editor.css | 14 +
framework/Editor/js/ckeditor/skins/office2003/icons.png | Bin 0 -> 4627 bytes
framework/Editor/js/ckeditor/skins/office2003/icons_rtl.png | Bin 0 -> 4639 bytes
.../Editor/js/ckeditor/skins/office2003/images/dialog_sides.gif | Bin 0 -> 48 bytes
.../Editor/js/ckeditor/skins/office2003/images/dialog_sides.png | Bin 0 -> 127 bytes
.../js/ckeditor/skins/office2003/images/dialog_sides_rtl.png | Bin 0 -> 131 bytes
framework/Editor/js/ckeditor/skins/office2003/images/mini.gif | Bin 0 -> 183 bytes
framework/Editor/js/ckeditor/skins/office2003/images/noimage.png | Bin 0 -> 2114 bytes
framework/Editor/js/ckeditor/skins/office2003/images/sprites.png | Bin 0 -> 5040 bytes
.../Editor/js/ckeditor/skins/office2003/images/sprites_ie6.png | Bin 0 -> 2371 bytes
framework/Editor/js/ckeditor/skins/office2003/skin.js | 1 +
framework/Editor/js/ckeditor/skins/office2003/templates.css | 6 +
framework/Editor/js/ckeditor/skins/v2/dialog.css | 9 +
framework/Editor/js/ckeditor/skins/v2/editor.css | 13 +
framework/Editor/js/ckeditor/skins/v2/icons.png | Bin 0 -> 4627 bytes
framework/Editor/js/ckeditor/skins/v2/icons_rtl.png | Bin 0 -> 4639 bytes
framework/Editor/js/ckeditor/skins/v2/images/dialog_sides.gif | Bin 0 -> 48 bytes
framework/Editor/js/ckeditor/skins/v2/images/dialog_sides.png | Bin 0 -> 126 bytes
framework/Editor/js/ckeditor/skins/v2/images/dialog_sides_rtl.png | Bin 0 -> 131 bytes
framework/Editor/js/ckeditor/skins/v2/images/mini.gif | Bin 0 -> 183 bytes
framework/Editor/js/ckeditor/skins/v2/images/noimage.png | Bin 0 -> 2114 bytes
framework/Editor/js/ckeditor/skins/v2/images/sprites.png | Bin 0 -> 2213 bytes
framework/Editor/js/ckeditor/skins/v2/images/sprites_ie6.png | Bin 0 -> 404 bytes
framework/Editor/js/ckeditor/skins/v2/images/toolbar_start.gif | Bin 0 -> 105 bytes
framework/Editor/js/ckeditor/skins/v2/skin.js | 1 +
framework/Editor/js/ckeditor/skins/v2/templates.css | 6 +
framework/Editor/js/ckeditor/themes/default/theme.js | 1 +
framework/Editor/js/ckeditor_basic.js | 1 -
framework/Editor/js/config.js | 1 -
framework/Editor/js/contents.css | 25 -
framework/Editor/js/images/spacer.gif | Bin 43 -> 0 bytes
framework/Editor/js/lang/_languages.js | 1 -
framework/Editor/js/lang/af.js | 1 -
framework/Editor/js/lang/ar.js | 1 -
framework/Editor/js/lang/bg.js | 1 -
framework/Editor/js/lang/bn.js | 1 -
framework/Editor/js/lang/bs.js | 1 -
framework/Editor/js/lang/ca.js | 1 -
framework/Editor/js/lang/cs.js | 1 -
framework/Editor/js/lang/cy.js | 1 -
framework/Editor/js/lang/da.js | 1 -
framework/Editor/js/lang/de.js | 1 -
framework/Editor/js/lang/el.js | 1 -
framework/Editor/js/lang/en-au.js | 1 -
framework/Editor/js/lang/en-ca.js | 1 -
framework/Editor/js/lang/en-gb.js | 1 -
framework/Editor/js/lang/en.js | 1 -
framework/Editor/js/lang/eo.js | 1 -
framework/Editor/js/lang/es.js | 1 -
framework/Editor/js/lang/et.js | 1 -
framework/Editor/js/lang/eu.js | 1 -
framework/Editor/js/lang/fa.js | 1 -
framework/Editor/js/lang/fi.js | 1 -
framework/Editor/js/lang/fo.js | 1 -
framework/Editor/js/lang/fr-ca.js | 1 -
framework/Editor/js/lang/fr.js | 1 -
framework/Editor/js/lang/gl.js | 1 -
framework/Editor/js/lang/gu.js | 1 -
framework/Editor/js/lang/he.js | 1 -
framework/Editor/js/lang/hi.js | 1 -
framework/Editor/js/lang/hr.js | 1 -
framework/Editor/js/lang/hu.js | 1 -
framework/Editor/js/lang/id.js | 1 -
framework/Editor/js/lang/is.js | 1 -
framework/Editor/js/lang/it.js | 1 -
framework/Editor/js/lang/ja.js | 1 -
framework/Editor/js/lang/ka.js | 1 -
framework/Editor/js/lang/km.js | 1 -
framework/Editor/js/lang/ko.js | 1 -
framework/Editor/js/lang/ku.js | 1 -
framework/Editor/js/lang/lt.js | 1 -
framework/Editor/js/lang/lv.js | 1 -
framework/Editor/js/lang/mk.js | 1 -
framework/Editor/js/lang/mn.js | 1 -
framework/Editor/js/lang/ms.js | 1 -
framework/Editor/js/lang/nb.js | 1 -
framework/Editor/js/lang/nl.js | 1 -
framework/Editor/js/lang/no.js | 1 -
framework/Editor/js/lang/pl.js | 1 -
framework/Editor/js/lang/pt-br.js | 1 -
framework/Editor/js/lang/pt.js | 1 -
framework/Editor/js/lang/ro.js | 1 -
framework/Editor/js/lang/ru.js | 1 -
framework/Editor/js/lang/sk.js | 1 -
framework/Editor/js/lang/sl.js | 1 -
framework/Editor/js/lang/sr-latn.js | 1 -
framework/Editor/js/lang/sr.js | 1 -
framework/Editor/js/lang/sv.js | 1 -
framework/Editor/js/lang/th.js | 1 -
framework/Editor/js/lang/tr.js | 1 -
framework/Editor/js/lang/ug.js | 1 -
framework/Editor/js/lang/uk.js | 1 -
framework/Editor/js/lang/vi.js | 1 -
framework/Editor/js/lang/zh-cn.js | 1 -
framework/Editor/js/lang/zh.js | 1 -
framework/Editor/js/plugins/a11yhelp/dialogs/a11yhelp.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/cs.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/cy.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/da.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/de.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/el.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/en.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/eo.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/fa.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/fi.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/fr.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/gu.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/he.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/it.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/ku.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/mk.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/nb.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/nl.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/no.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/pt-br.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/ro.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/sk.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/tr.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/ug.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/vi.js | 1 -
framework/Editor/js/plugins/a11yhelp/lang/zh-cn.js | 1 -
framework/Editor/js/plugins/about/dialogs/about.js | 1 -
framework/Editor/js/plugins/about/dialogs/logo_ckeditor.png | Bin 2759 -> 0 bytes
framework/Editor/js/plugins/adobeair/plugin.js | 1 -
framework/Editor/js/plugins/ajax/plugin.js | 1 -
framework/Editor/js/plugins/autogrow/plugin.js | 1 -
framework/Editor/js/plugins/bbcode/plugin.js | 1 -
framework/Editor/js/plugins/clipboard/dialogs/paste.js | 1 -
framework/Editor/js/plugins/colordialog/dialogs/colordialog.js | 1 -
framework/Editor/js/plugins/devtools/lang/bg.js | 1 -
framework/Editor/js/plugins/devtools/lang/cs.js | 1 -
framework/Editor/js/plugins/devtools/lang/cy.js | 1 -
framework/Editor/js/plugins/devtools/lang/da.js | 1 -
framework/Editor/js/plugins/devtools/lang/de.js | 1 -
framework/Editor/js/plugins/devtools/lang/el.js | 1 -
framework/Editor/js/plugins/devtools/lang/en.js | 1 -
framework/Editor/js/plugins/devtools/lang/eo.js | 1 -
framework/Editor/js/plugins/devtools/lang/et.js | 1 -
framework/Editor/js/plugins/devtools/lang/fa.js | 1 -
framework/Editor/js/plugins/devtools/lang/fi.js | 1 -
framework/Editor/js/plugins/devtools/lang/fr.js | 1 -
framework/Editor/js/plugins/devtools/lang/gu.js | 1 -
framework/Editor/js/plugins/devtools/lang/he.js | 1 -
framework/Editor/js/plugins/devtools/lang/hr.js | 1 -
framework/Editor/js/plugins/devtools/lang/it.js | 1 -
framework/Editor/js/plugins/devtools/lang/ku.js | 1 -
framework/Editor/js/plugins/devtools/lang/nb.js | 1 -
framework/Editor/js/plugins/devtools/lang/nl.js | 1 -
framework/Editor/js/plugins/devtools/lang/no.js | 1 -
framework/Editor/js/plugins/devtools/lang/pl.js | 1 -
framework/Editor/js/plugins/devtools/lang/pt-br.js | 1 -
framework/Editor/js/plugins/devtools/lang/sk.js | 1 -
framework/Editor/js/plugins/devtools/lang/tr.js | 1 -
framework/Editor/js/plugins/devtools/lang/ug.js | 1 -
framework/Editor/js/plugins/devtools/lang/uk.js | 1 -
framework/Editor/js/plugins/devtools/lang/vi.js | 1 -
framework/Editor/js/plugins/devtools/lang/zh-cn.js | 1 -
framework/Editor/js/plugins/devtools/plugin.js | 1 -
framework/Editor/js/plugins/div/dialogs/div.js | 1 -
framework/Editor/js/plugins/docprops/dialogs/docprops.js | 1 -
framework/Editor/js/plugins/docprops/plugin.js | 1 -
framework/Editor/js/plugins/find/dialogs/find.js | 1 -
framework/Editor/js/plugins/flash/dialogs/flash.js | 1 -
framework/Editor/js/plugins/flash/images/placeholder.png | Bin 256 -> 0 bytes
framework/Editor/js/plugins/forms/dialogs/button.js | 1 -
framework/Editor/js/plugins/forms/dialogs/checkbox.js | 1 -
framework/Editor/js/plugins/forms/dialogs/form.js | 1 -
framework/Editor/js/plugins/forms/dialogs/hiddenfield.js | 1 -
framework/Editor/js/plugins/forms/dialogs/radio.js | 1 -
framework/Editor/js/plugins/forms/dialogs/select.js | 1 -
framework/Editor/js/plugins/forms/dialogs/textarea.js | 1 -
framework/Editor/js/plugins/forms/dialogs/textfield.js | 1 -
framework/Editor/js/plugins/forms/images/hiddenfield.gif | Bin 105 -> 0 bytes
framework/Editor/js/plugins/iframe/dialogs/iframe.js | 1 -
framework/Editor/js/plugins/iframe/images/placeholder.png | Bin 264 -> 0 bytes
framework/Editor/js/plugins/iframedialog/plugin.js | 1 -
framework/Editor/js/plugins/image/dialogs/image.js | 1 -
framework/Editor/js/plugins/link/dialogs/anchor.js | 1 -
framework/Editor/js/plugins/link/dialogs/link.js | 1 -
framework/Editor/js/plugins/link/images/anchor.gif | Bin 184 -> 0 bytes
framework/Editor/js/plugins/liststyle/dialogs/liststyle.js | 1 -
framework/Editor/js/plugins/pagebreak/images/pagebreak.gif | Bin 54 -> 0 bytes
framework/Editor/js/plugins/pastefromword/filter/default.js | 1 -
framework/Editor/js/plugins/pastetext/dialogs/pastetext.js | 1 -
framework/Editor/js/plugins/placeholder/dialogs/placeholder.js | 1 -
framework/Editor/js/plugins/placeholder/lang/bg.js | 1 -
framework/Editor/js/plugins/placeholder/lang/cs.js | 1 -
framework/Editor/js/plugins/placeholder/lang/cy.js | 1 -
framework/Editor/js/plugins/placeholder/lang/da.js | 1 -
framework/Editor/js/plugins/placeholder/lang/de.js | 1 -
framework/Editor/js/plugins/placeholder/lang/el.js | 1 -
framework/Editor/js/plugins/placeholder/lang/en.js | 1 -
framework/Editor/js/plugins/placeholder/lang/eo.js | 1 -
framework/Editor/js/plugins/placeholder/lang/et.js | 1 -
framework/Editor/js/plugins/placeholder/lang/fa.js | 1 -
framework/Editor/js/plugins/placeholder/lang/fi.js | 1 -
framework/Editor/js/plugins/placeholder/lang/fr.js | 1 -
framework/Editor/js/plugins/placeholder/lang/he.js | 1 -
framework/Editor/js/plugins/placeholder/lang/hr.js | 1 -
framework/Editor/js/plugins/placeholder/lang/it.js | 1 -
framework/Editor/js/plugins/placeholder/lang/ku.js | 1 -
framework/Editor/js/plugins/placeholder/lang/nb.js | 1 -
framework/Editor/js/plugins/placeholder/lang/nl.js | 1 -
framework/Editor/js/plugins/placeholder/lang/no.js | 1 -
framework/Editor/js/plugins/placeholder/lang/pl.js | 1 -
framework/Editor/js/plugins/placeholder/lang/pt-br.js | 1 -
framework/Editor/js/plugins/placeholder/lang/sk.js | 1 -
framework/Editor/js/plugins/placeholder/lang/tr.js | 1 -
framework/Editor/js/plugins/placeholder/lang/ug.js | 1 -
framework/Editor/js/plugins/placeholder/lang/uk.js | 1 -
framework/Editor/js/plugins/placeholder/lang/vi.js | 1 -
framework/Editor/js/plugins/placeholder/lang/zh-cn.js | 1 -
framework/Editor/js/plugins/placeholder/placeholder.gif | Bin 96 -> 0 bytes
framework/Editor/js/plugins/placeholder/plugin.js | 1 -
framework/Editor/js/plugins/preview/preview.html | 10 -
framework/Editor/js/plugins/scayt/dialogs/options.js | 1 -
framework/Editor/js/plugins/scayt/dialogs/toolbar.css | 6 -
framework/Editor/js/plugins/showblocks/images/block_address.png | Bin 152 -> 0 bytes
.../Editor/js/plugins/showblocks/images/block_blockquote.png | Bin 154 -> 0 bytes
framework/Editor/js/plugins/showblocks/images/block_div.png | Bin 127 -> 0 bytes
framework/Editor/js/plugins/showblocks/images/block_h1.png | Bin 119 -> 0 bytes
framework/Editor/js/plugins/showblocks/images/block_h2.png | Bin 127 -> 0 bytes
framework/Editor/js/plugins/showblocks/images/block_h3.png | Bin 123 -> 0 bytes
framework/Editor/js/plugins/showblocks/images/block_h4.png | Bin 123 -> 0 bytes
framework/Editor/js/plugins/showblocks/images/block_h5.png | Bin 126 -> 0 bytes
framework/Editor/js/plugins/showblocks/images/block_h6.png | Bin 123 -> 0 bytes
framework/Editor/js/plugins/showblocks/images/block_p.png | Bin 115 -> 0 bytes
framework/Editor/js/plugins/showblocks/images/block_pre.png | Bin 127 -> 0 bytes
framework/Editor/js/plugins/smiley/dialogs/smiley.js | 1 -
framework/Editor/js/plugins/smiley/images/angel_smile.gif | Bin 465 -> 0 bytes
framework/Editor/js/plugins/smiley/images/angry_smile.gif | Bin 443 -> 0 bytes
framework/Editor/js/plugins/smiley/images/broken_heart.gif | Bin 192 -> 0 bytes
framework/Editor/js/plugins/smiley/images/confused_smile.gif | Bin 464 -> 0 bytes
framework/Editor/js/plugins/smiley/images/cry_smile.gif | Bin 468 -> 0 bytes
framework/Editor/js/plugins/smiley/images/devil_smile.gif | Bin 436 -> 0 bytes
framework/Editor/js/plugins/smiley/images/embaressed_smile.gif | Bin 442 -> 0 bytes
framework/Editor/js/plugins/smiley/images/envelope.gif | Bin 426 -> 0 bytes
framework/Editor/js/plugins/smiley/images/heart.gif | Bin 183 -> 0 bytes
framework/Editor/js/plugins/smiley/images/kiss.gif | Bin 241 -> 0 bytes
framework/Editor/js/plugins/smiley/images/lightbulb.gif | Bin 368 -> 0 bytes
framework/Editor/js/plugins/smiley/images/omg_smile.gif | Bin 451 -> 0 bytes
framework/Editor/js/plugins/smiley/images/regular_smile.gif | Bin 450 -> 0 bytes
framework/Editor/js/plugins/smiley/images/sad_smile.gif | Bin 460 -> 0 bytes
framework/Editor/js/plugins/smiley/images/shades_smile.gif | Bin 449 -> 0 bytes
framework/Editor/js/plugins/smiley/images/teeth_smile.gif | Bin 442 -> 0 bytes
framework/Editor/js/plugins/smiley/images/thumbs_down.gif | Bin 408 -> 0 bytes
framework/Editor/js/plugins/smiley/images/thumbs_up.gif | Bin 396 -> 0 bytes
framework/Editor/js/plugins/smiley/images/tounge_smile.gif | Bin 446 -> 0 bytes
.../Editor/js/plugins/smiley/images/whatchutalkingabout_smile.gif | Bin 452 -> 0 bytes
framework/Editor/js/plugins/smiley/images/wink_smile.gif | Bin 458 -> 0 bytes
framework/Editor/js/plugins/specialchar/dialogs/specialchar.js | 1 -
framework/Editor/js/plugins/specialchar/lang/cs.js | 1 -
framework/Editor/js/plugins/specialchar/lang/cy.js | 1 -
framework/Editor/js/plugins/specialchar/lang/de.js | 1 -
framework/Editor/js/plugins/specialchar/lang/el.js | 1 -
framework/Editor/js/plugins/specialchar/lang/en.js | 1 -
framework/Editor/js/plugins/specialchar/lang/eo.js | 1 -
framework/Editor/js/plugins/specialchar/lang/et.js | 1 -
framework/Editor/js/plugins/specialchar/lang/fa.js | 1 -
framework/Editor/js/plugins/specialchar/lang/fi.js | 1 -
framework/Editor/js/plugins/specialchar/lang/fr.js | 1 -
framework/Editor/js/plugins/specialchar/lang/he.js | 1 -
framework/Editor/js/plugins/specialchar/lang/hr.js | 1 -
framework/Editor/js/plugins/specialchar/lang/it.js | 1 -
framework/Editor/js/plugins/specialchar/lang/ku.js | 1 -
framework/Editor/js/plugins/specialchar/lang/nb.js | 1 -
framework/Editor/js/plugins/specialchar/lang/nl.js | 1 -
framework/Editor/js/plugins/specialchar/lang/no.js | 1 -
framework/Editor/js/plugins/specialchar/lang/pt-br.js | 1 -
framework/Editor/js/plugins/specialchar/lang/tr.js | 1 -
framework/Editor/js/plugins/specialchar/lang/ug.js | 1 -
framework/Editor/js/plugins/specialchar/lang/zh-cn.js | 1 -
framework/Editor/js/plugins/styles/styles/default.js | 1 -
framework/Editor/js/plugins/stylesheetparser/plugin.js | 1 -
.../Editor/js/plugins/syntaxhighlight/dialogs/syntaxhighlight.js | 1 -
.../Editor/js/plugins/syntaxhighlight/images/syntaxhighlight.gif | Bin 94 -> 0 bytes
framework/Editor/js/plugins/syntaxhighlight/lang/en.js | 1 -
framework/Editor/js/plugins/syntaxhighlight/plugin.js | 1 -
framework/Editor/js/plugins/table/dialogs/table.js | 1 -
framework/Editor/js/plugins/tableresize/plugin.js | 1 -
framework/Editor/js/plugins/tabletools/dialogs/tableCell.js | 1 -
framework/Editor/js/plugins/templates/dialogs/templates.js | 1 -
framework/Editor/js/plugins/templates/templates/default.js | 1 -
.../Editor/js/plugins/templates/templates/images/template1.gif | Bin 375 -> 0 bytes
.../Editor/js/plugins/templates/templates/images/template2.gif | Bin 333 -> 0 bytes
.../Editor/js/plugins/templates/templates/images/template3.gif | Bin 422 -> 0 bytes
framework/Editor/js/plugins/uicolor/dialogs/uicolor.js | 1 -
framework/Editor/js/plugins/uicolor/lang/bg.js | 1 -
framework/Editor/js/plugins/uicolor/lang/cs.js | 1 -
framework/Editor/js/plugins/uicolor/lang/cy.js | 1 -
framework/Editor/js/plugins/uicolor/lang/da.js | 1 -
framework/Editor/js/plugins/uicolor/lang/de.js | 1 -
framework/Editor/js/plugins/uicolor/lang/el.js | 1 -
framework/Editor/js/plugins/uicolor/lang/en.js | 1 -
framework/Editor/js/plugins/uicolor/lang/eo.js | 1 -
framework/Editor/js/plugins/uicolor/lang/et.js | 1 -
framework/Editor/js/plugins/uicolor/lang/fa.js | 1 -
framework/Editor/js/plugins/uicolor/lang/fi.js | 1 -
framework/Editor/js/plugins/uicolor/lang/fr.js | 1 -
framework/Editor/js/plugins/uicolor/lang/he.js | 1 -
framework/Editor/js/plugins/uicolor/lang/hr.js | 1 -
framework/Editor/js/plugins/uicolor/lang/it.js | 1 -
framework/Editor/js/plugins/uicolor/lang/ku.js | 1 -
framework/Editor/js/plugins/uicolor/lang/mk.js | 1 -
framework/Editor/js/plugins/uicolor/lang/nb.js | 1 -
framework/Editor/js/plugins/uicolor/lang/nl.js | 1 -
framework/Editor/js/plugins/uicolor/lang/no.js | 1 -
framework/Editor/js/plugins/uicolor/lang/pl.js | 1 -
framework/Editor/js/plugins/uicolor/lang/pt-br.js | 1 -
framework/Editor/js/plugins/uicolor/lang/sk.js | 1 -
framework/Editor/js/plugins/uicolor/lang/tr.js | 1 -
framework/Editor/js/plugins/uicolor/lang/ug.js | 1 -
framework/Editor/js/plugins/uicolor/lang/uk.js | 1 -
framework/Editor/js/plugins/uicolor/lang/vi.js | 1 -
framework/Editor/js/plugins/uicolor/lang/zh-cn.js | 1 -
framework/Editor/js/plugins/uicolor/plugin.js | 1 -
framework/Editor/js/plugins/uicolor/uicolor.gif | Bin 1108 -> 0 bytes
framework/Editor/js/plugins/uicolor/yui/assets/hue_bg.png | Bin 1019 -> 0 bytes
framework/Editor/js/plugins/uicolor/yui/assets/hue_thumb.png | Bin 133 -> 0 bytes
framework/Editor/js/plugins/uicolor/yui/assets/picker_mask.png | Bin 10560 -> 0 bytes
framework/Editor/js/plugins/uicolor/yui/assets/picker_thumb.png | Bin 125 -> 0 bytes
framework/Editor/js/plugins/uicolor/yui/assets/yui.css | 6 -
framework/Editor/js/plugins/uicolor/yui/yui.js | 1 -
framework/Editor/js/plugins/wsc/dialogs/ciframe.html | 49 -
framework/Editor/js/plugins/wsc/dialogs/tmpFrameset.html | 52 -
framework/Editor/js/plugins/wsc/dialogs/wsc.css | 6 -
framework/Editor/js/plugins/wsc/dialogs/wsc.js | 1 -
framework/Editor/js/plugins/xml/plugin.js | 1 -
framework/Editor/js/skins/kama/dialog.css | 10 -
framework/Editor/js/skins/kama/editor.css | 13 -
framework/Editor/js/skins/kama/icons.png | Bin 4627 -> 0 bytes
framework/Editor/js/skins/kama/icons_rtl.png | Bin 4639 -> 0 bytes
framework/Editor/js/skins/kama/images/dialog_sides.gif | Bin 48 -> 0 bytes
framework/Editor/js/skins/kama/images/dialog_sides.png | Bin 126 -> 0 bytes
framework/Editor/js/skins/kama/images/dialog_sides_rtl.png | Bin 131 -> 0 bytes
framework/Editor/js/skins/kama/images/mini.gif | Bin 183 -> 0 bytes
framework/Editor/js/skins/kama/images/noimage.png | Bin 2114 -> 0 bytes
framework/Editor/js/skins/kama/images/sprites.png | Bin 5485 -> 0 bytes
framework/Editor/js/skins/kama/images/sprites_ie6.png | Bin 2558 -> 0 bytes
framework/Editor/js/skins/kama/images/toolbar_start.gif | Bin 105 -> 0 bytes
framework/Editor/js/skins/kama/skin.js | 1 -
framework/Editor/js/skins/kama/templates.css | 6 -
framework/Editor/js/skins/office2003/dialog.css | 10 -
framework/Editor/js/skins/office2003/editor.css | 14 -
framework/Editor/js/skins/office2003/icons.png | Bin 4627 -> 0 bytes
framework/Editor/js/skins/office2003/icons_rtl.png | Bin 4639 -> 0 bytes
framework/Editor/js/skins/office2003/images/dialog_sides.gif | Bin 48 -> 0 bytes
framework/Editor/js/skins/office2003/images/dialog_sides.png | Bin 127 -> 0 bytes
framework/Editor/js/skins/office2003/images/dialog_sides_rtl.png | Bin 131 -> 0 bytes
framework/Editor/js/skins/office2003/images/mini.gif | Bin 183 -> 0 bytes
framework/Editor/js/skins/office2003/images/noimage.png | Bin 2114 -> 0 bytes
framework/Editor/js/skins/office2003/images/sprites.png | Bin 5040 -> 0 bytes
framework/Editor/js/skins/office2003/images/sprites_ie6.png | Bin 2371 -> 0 bytes
framework/Editor/js/skins/office2003/skin.js | 1 -
framework/Editor/js/skins/office2003/templates.css | 6 -
framework/Editor/js/skins/v2/dialog.css | 9 -
framework/Editor/js/skins/v2/editor.css | 13 -
framework/Editor/js/skins/v2/icons.png | Bin 4627 -> 0 bytes
framework/Editor/js/skins/v2/icons_rtl.png | Bin 4639 -> 0 bytes
framework/Editor/js/skins/v2/images/dialog_sides.gif | Bin 48 -> 0 bytes
framework/Editor/js/skins/v2/images/dialog_sides.png | Bin 126 -> 0 bytes
framework/Editor/js/skins/v2/images/dialog_sides_rtl.png | Bin 131 -> 0 bytes
framework/Editor/js/skins/v2/images/mini.gif | Bin 183 -> 0 bytes
framework/Editor/js/skins/v2/images/noimage.png | Bin 2114 -> 0 bytes
framework/Editor/js/skins/v2/images/sprites.png | Bin 2213 -> 0 bytes
framework/Editor/js/skins/v2/images/sprites_ie6.png | Bin 404 -> 0 bytes
framework/Editor/js/skins/v2/images/toolbar_start.gif | Bin 105 -> 0 bytes
framework/Editor/js/skins/v2/skin.js | 1 -
framework/Editor/js/skins/v2/templates.css | 6 -
framework/Editor/js/themes/default/theme.js | 1 -
framework/Editor/lib/Horde/Editor.php | 2 +-
framework/Editor/lib/Horde/Editor/Ckeditor.php | 14 +-
framework/Editor/lib/Horde/Editor/Exception.php | 2 +-
framework/Editor/package.xml | 1770 +-
framework/ElasticSearch/doc/Horde/ElasticSearch/COPYING | 4 +-
framework/ElasticSearch/doc/Horde/ElasticSearch/examples/add.php | 2 +-
.../ElasticSearch/doc/Horde/ElasticSearch/examples/count.php | 2 +-
framework/ElasticSearch/doc/Horde/ElasticSearch/examples/get.php | 2 +-
framework/ElasticSearch/doc/Horde/ElasticSearch/examples/map.php | 2 +-
.../ElasticSearch/doc/Horde/ElasticSearch/examples/search.php | 2 +-
.../ElasticSearch/doc/Horde/ElasticSearch/examples/status.php | 2 +-
framework/ElasticSearch/lib/Horde/ElasticSearch/Client.php | 2 +-
framework/ElasticSearch/lib/Horde/ElasticSearch/Exception.php | 2 +-
framework/ElasticSearch/lib/Horde/ElasticSearch/Index.php | 2 +-
framework/ElasticSearch/lib/Horde/ElasticSearch/Type.php | 2 +-
framework/Exception/lib/Horde/Exception.php | 2 +-
framework/Exception/lib/Horde/Exception/LastError.php | 2 +-
framework/Exception/lib/Horde/Exception/NotFound.php | 2 +-
framework/Exception/lib/Horde/Exception/Pear.php | 2 +-
framework/Exception/lib/Horde/Exception/PermissionDenied.php | 2 +-
framework/Exception/lib/Horde/Exception/Translation.php | 2 +-
framework/Exception/lib/Horde/Exception/Wrapped.php | 2 +-
framework/Exception/locale/ar/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/bg/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/bs/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/ca/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/cs/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/da/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/de/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/el/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/en/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/es/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/et/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/eu/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/fa/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/fi/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/fr/LC_MESSAGES/Horde_Exception.mo | Bin 490 -> 613 bytes
framework/Exception/locale/fr/LC_MESSAGES/Horde_Exception.po | 24 +-
framework/Exception/locale/gl/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/he/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/hr/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/hu/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/id/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/is/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/it/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/ja/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/km/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/ko/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/lt/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/lv/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/mk/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/nb/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/nl/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/nn/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/pl/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/pt/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/pt_BR/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/ro/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/ru/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/sk/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/sl/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/sv/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/tr/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/uk/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/zh_CN/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/locale/zh_TW/LC_MESSAGES/Horde_Exception.po | 2 +-
framework/Exception/package.xml | 23 +-
framework/Exception/test/Horde/Exception/ExceptionTest.php | 2 +-
framework/Feed/doc/Horde/Feed/COPYING | 2 +-
framework/Feed/lib/Horde/Feed.php | 2 +-
framework/Feed/lib/Horde/Feed/Atom.php | 2 +-
framework/Feed/lib/Horde/Feed/Base.php | 2 +-
framework/Feed/lib/Horde/Feed/Blogroll.php | 2 +-
framework/Feed/lib/Horde/Feed/Entry/Atom.php | 2 +-
framework/Feed/lib/Horde/Feed/Entry/Base.php | 2 +-
framework/Feed/lib/Horde/Feed/Entry/Blogroll.php | 2 +-
framework/Feed/lib/Horde/Feed/Entry/Rss.php | 2 +-
framework/Feed/lib/Horde/Feed/Rss.php | 2 +-
framework/Form/lib/Horde/Form.php | 2 +-
framework/Form/lib/Horde/Form/Action/ConditionalEnable.php | 2 +-
framework/Form/lib/Horde/Form/Action/ConditionalSetValue.php | 2 +-
framework/Form/lib/Horde/Form/Action/SumFields.php | 2 +-
framework/Form/lib/Horde/Form/Action/reload.php | 2 +-
framework/Form/lib/Horde/Form/Action/setcursorpos.php | 2 +-
framework/Form/lib/Horde/Form/Action/submit.php | 2 +-
framework/Form/lib/Horde/Form/Action/updatefield.php | 2 +-
framework/Form/lib/Horde/Form/Translation.php | 2 +-
framework/Form/lib/Horde/Form/Type.php | 2 +-
framework/Form/locale/ar/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/bg/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/bs/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/ca/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/cs/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/da/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/de/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/el/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/en/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/es/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/et/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/eu/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/fa/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/fi/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/fr/LC_MESSAGES/Horde_Form.mo | Bin 10484 -> 11239 bytes
framework/Form/locale/fr/LC_MESSAGES/Horde_Form.po | 379 +-
framework/Form/locale/gl/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/he/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/hr/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/hu/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/id/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/is/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/it/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/ja/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/km/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/ko/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/lt/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/lv/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/mk/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/nb/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/nl/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/nn/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/pl/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/pt/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/pt_BR/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/ro/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/ru/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/sk/LC_MESSAGES/Horde_Form.mo | Bin 10771 -> 10943 bytes
framework/Form/locale/sk/LC_MESSAGES/Horde_Form.po | 309 +-
framework/Form/locale/sl/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/sv/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/tr/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/uk/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/zh_CN/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/locale/zh_TW/LC_MESSAGES/Horde_Form.po | 2 +-
framework/Form/package.xml | 25 +-
framework/Group/lib/Horde/Group/Base.php | 2 +-
framework/Group/lib/Horde/Group/Exception.php | 2 +-
framework/Group/lib/Horde/Group/Kolab.php | 2 +-
framework/Group/lib/Horde/Group/Ldap.php | 2 +-
framework/Group/lib/Horde/Group/Mock.php | 2 +-
framework/Group/lib/Horde/Group/Sql.php | 2 +-
framework/Group/test/Horde/Group/Base.php | 2 +-
framework/Group/test/Horde/Group/LdapTest.php | 2 +-
framework/Group/test/Horde/Group/MockTest.php | 2 +-
framework/Group/test/Horde/Group/Sql/Base.php | 2 +-
framework/Group/test/Horde/Group/Sql/MysqlTest.php | 2 +-
framework/Group/test/Horde/Group/Sql/MysqliTest.php | 2 +-
framework/Group/test/Horde/Group/Sql/Pdo/MysqlTest.php | 2 +-
framework/Group/test/Horde/Group/Sql/Pdo/PgsqlTest.php | 2 +-
framework/Group/test/Horde/Group/Sql/Pdo/SqliteTest.php | 2 +-
framework/Group/test/Horde/Group/Stub/Api.php | 2 +-
framework/History/lib/Horde/History.php | 2 +-
framework/History/lib/Horde/History/Exception.php | 2 +-
framework/History/lib/Horde/History/Log.php | 2 +-
framework/History/lib/Horde/History/Mock.php | 2 +-
framework/History/lib/Horde/History/Sql.php | 2 +-
framework/History/test/Horde/History/InterfaceTest.php | 2 +-
framework/Http/doc/Horde/Http/COPYING | 2 +-
framework/Http/doc/Horde/Http/examples/get-example-dot-com.php | 2 +-
framework/Http/lib/Horde/Http.php | 2 +-
framework/Http/lib/Horde/Http/Client.php | 2 +-
framework/Http/lib/Horde/Http/Exception.php | 2 +-
framework/Http/lib/Horde/Http/Request/Base.php | 2 +-
framework/Http/lib/Horde/Http/Request/Curl.php | 2 +-
framework/Http/lib/Horde/Http/Request/Factory.php | 2 +-
framework/Http/lib/Horde/Http/Request/Fopen.php | 5 +-
framework/Http/lib/Horde/Http/Request/Mock.php | 2 +-
framework/Http/lib/Horde/Http/Request/Peclhttp.php | 2 +-
framework/Http/lib/Horde/Http/Response/Base.php | 2 +-
framework/Http/lib/Horde/Http/Response/Curl.php | 2 +-
framework/Http/lib/Horde/Http/Response/Fopen.php | 2 +-
framework/Http/lib/Horde/Http/Response/Mock.php | 2 +-
framework/Http/lib/Horde/Http/Response/Peclhttp.php | 11 +-
framework/Http/test/Horde/Http/ClientTest.php | 4 +-
framework/Http/test/Horde/Http/CurlTest.php | 4 +-
framework/Http/test/Horde/Http/FopenTest.php | 2 +-
framework/Icalendar/doc/Horde/Icalendar/COPYING | 2 +-
framework/Icalendar/lib/Horde/Icalendar.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Daylight.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Exception.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Standard.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Translation.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Valarm.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Vcard.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Vevent.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Vfreebusy.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Vjournal.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Vnote.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Vtimezone.php | 2 +-
framework/Icalendar/lib/Horde/Icalendar/Vtodo.php | 2 +-
framework/Icalendar/locale/ar/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/bg/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/bs/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/ca/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/cs/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/da/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/de/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/el/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/en/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/es/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/et/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/eu/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/fa/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/fi/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/fr/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/gl/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/he/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/hr/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/hu/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/id/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/is/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/it/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/ja/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/km/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/ko/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/lt/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/lv/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/mk/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/nb/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/nl/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/nn/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/pl/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/pt/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/pt_BR/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/ro/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/ru/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/sk/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/sl/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/sv/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/tr/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/uk/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/zh_CN/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/locale/zh_TW/LC_MESSAGES/Horde_Icalendar.po | 2 +-
framework/Icalendar/package.xml | 105 +-
framework/Icalendar/test/Horde/Icalendar/AttributeTest.php | 62 +
framework/Icalendar/test/Horde/Icalendar/CharsetTest.php | 27 +
framework/Icalendar/test/Horde/Icalendar/ExportTest.php | 157 +
framework/Icalendar/test/Horde/Icalendar/FreeBusyTest.php | 340 +
framework/Icalendar/test/Horde/Icalendar/ParseTest.php | 357 +
framework/Icalendar/test/Horde/Icalendar/bug_7423.phpt | 32 -
framework/Icalendar/test/Horde/Icalendar/charset1.phpt | 50 -
framework/Icalendar/test/Horde/Icalendar/common.php | 16 -
framework/Icalendar/test/Horde/Icalendar/empty_data.phpt | 30 -
framework/Icalendar/test/Horde/Icalendar/fixtures/bug7423.ics | 11 +
framework/Icalendar/test/Horde/Icalendar/fixtures/charset1.ics | 14 +
framework/Icalendar/test/Horde/Icalendar/fixtures/charset2.ics | 14 +
framework/Icalendar/test/Horde/Icalendar/fixtures/charset3.ics | 14 +
framework/Icalendar/test/Horde/Icalendar/fixtures/date.ics | 14 +
framework/Icalendar/test/Horde/Icalendar/fixtures/empty.ics | 4 +
framework/Icalendar/test/Horde/Icalendar/fixtures/escapes1.ics | 28 +
framework/Icalendar/test/Horde/Icalendar/fixtures/escapes2.ics | 21 +
framework/Icalendar/test/Horde/Icalendar/fixtures/geo1.vcf | 4 +
framework/Icalendar/test/Horde/Icalendar/fixtures/geo2.vcf | 4 +
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-1.ics | 13 +
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-2.ics | 12 +
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-3.ics | 13 +
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-4.ics | 14 +
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-5.ics | 16 +
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-6.ics | 27 +
framework/Icalendar/test/Horde/Icalendar/fixtures/org.vcf | 5 +
.../Icalendar/test/Horde/Icalendar/fixtures/quoted-params.ics | 14 +
framework/Icalendar/test/Horde/Icalendar/fixtures/vcal20.ics | 28 +
framework/Icalendar/test/Horde/Icalendar/fixtures/vfreebusy1.ics | 14 +
framework/Icalendar/test/Horde/Icalendar/fixtures/vfreebusy2.ics | 9 +
framework/Icalendar/test/Horde/Icalendar/geo.phpt | 37 -
framework/Icalendar/test/Horde/Icalendar/iCalendar.phpt | 36 -
framework/Icalendar/test/Horde/Icalendar/line-folding.phpt | 180 -
framework/Icalendar/test/Horde/Icalendar/quoted-params.phpt | 43 -
framework/Icalendar/test/Horde/Icalendar/read-escapes.phpt | 59 -
framework/Icalendar/test/Horde/Icalendar/read-vcard-org.phpt | 25 -
framework/Icalendar/test/Horde/Icalendar/read-write-escapes.phpt | 43 -
framework/Icalendar/test/Horde/Icalendar/timezones.phpt | 828 -
framework/Icalendar/test/Horde/Icalendar/vcal20.phpt | 321 -
framework/Icalendar/test/Horde/Icalendar/vfreebusy.phpt | 269 -
framework/Icalendar/test/Horde/Icalendar/write-escapes.phpt | 51 -
framework/Image/lib/Horde/Image.php | 2 +-
framework/Image/lib/Horde/Image/Base.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Im/Composite.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Im/DropShadow.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Im/LiquidResize.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Im/PhotoStack.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Im/PolaroidImage.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Im/RoundCorners.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Im/TextWatermark.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Im/Unsharpmask.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/CenterCrop.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/Composite.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/DropShadow.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/LiquidResize.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/PhotoStack.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/PolaroidImage.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/RoundCorners.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/SmartCrop.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/TextWatermark.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/Unsharpmask.php | 2 +-
framework/Image/lib/Horde/Image/Exif.php | 2 +-
framework/Image/lib/Horde/Image/Exif/Base.php | 2 +-
framework/Image/lib/Horde/Image/Exif/Bundled.php | 2 +-
framework/Image/lib/Horde/Image/Exif/Exiftool.php | 2 +-
framework/Image/lib/Horde/Image/Exif/Php.php | 2 +-
framework/Image/lib/Horde/Image/Gd.php | 2 +-
framework/Image/lib/Horde/Image/Im.php | 2 +-
framework/Image/lib/Horde/Image/Imagick.php | 2 +-
framework/Image/lib/Horde/Image/Png.php | 2 +-
framework/Image/lib/Horde/Image/Svg.php | 2 +-
framework/Image/lib/Horde/Image/Swf.php | 2 +-
framework/Image/lib/Horde/Image/Translation.php | 2 +-
framework/Image/locale/ar/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/bg/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/bs/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/ca/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/cs/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/da/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/de/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/el/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/en/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/es/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/et/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/eu/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/fa/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/fi/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/fr/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/gl/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/he/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/hr/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/hu/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/id/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/is/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/it/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/ja/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/km/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/ko/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/lt/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/lv/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/mk/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/nb/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/nl/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/nn/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/pl/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/pt/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/pt_BR/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/ro/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/ru/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/sk/LC_MESSAGES/Horde_Image.mo | Bin 15525 -> 15536 bytes
framework/Image/locale/sk/LC_MESSAGES/Horde_Image.po | 32 +-
framework/Image/locale/sl/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/sv/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/tr/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/uk/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/zh_CN/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/locale/zh_TW/LC_MESSAGES/Horde_Image.po | 2 +-
framework/Image/package.xml | 23 +-
framework/Image/test/Horde/Image/Exif/Base.php | 2 +-
framework/Image/test/Horde/Image/Exif/BundledTest.php | 2 +-
framework/Image/test/Horde/Image/Exif/ExiftoolTest.php | 2 +-
framework/Image/test/Horde/Image/Exif/PhpTest.php | 2 +-
framework/Imap_Client/doc/Horde/Imap/Client/UPGRADING | 8 +
framework/Imap_Client/lib/Horde/Imap/Client.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Auth/DigestMD5.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Base.php | 17 +-
framework/Imap_Client/lib/Horde/Imap/Client/Base/Debug.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Base/Deprecated.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Base/Mailbox.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Cache.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Acl.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/AclCommon.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/AclNegative.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/AclRights.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/BaseSubject.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Envelope.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Fetch.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Fetch/Pop3.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Format.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Data/Format/Astring.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Format/Atom.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Format/Date.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Data/Format/DateTime.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Data/Format/Exception.php | 6 +-
.../lib/Horde/Imap/Client/Data/Format/Filter/Quote.php | 6 +-
.../lib/Horde/Imap/Client/Data/Format/Filter/String.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Format/List.php | 14 +-
.../Imap_Client/lib/Horde/Imap/Client/Data/Format/ListMailbox.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Data/Format/Mailbox.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Format/Nil.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Data/Format/Nstring.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Data/Format/Number.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Data/Format/String.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Sync.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Thread.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/DateTime.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Exception.php | 6 +-
.../lib/Horde/Imap/Client/Exception/NoSupportExtension.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Exception/NoSupportPop3.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Exception/SearchCharset.php | 6 +-
.../lib/Horde/Imap/Client/Exception/ServerResponse.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Exception/Sync.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Fetch/Query.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Fetch/Results.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Ids.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Ids/Map.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Ids/Pop3.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Interaction/Client.php | 6 +-
.../Imap_Client/lib/Horde/Imap/Client/Interaction/Server.php | 6 +-
.../lib/Horde/Imap/Client/Interaction/Server/Continuation.php | 6 +-
.../lib/Horde/Imap/Client/Interaction/Server/Tagged.php | 6 +-
.../lib/Horde/Imap/Client/Interaction/Server/Untagged.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Mailbox.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Mailbox/List.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Search/Query.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 29 +-
framework/Imap_Client/lib/Horde/Imap/Client/Socket/Catenate.php | 8 +-
framework/Imap_Client/lib/Horde/Imap/Client/Socket/ClientSort.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Socket/Pop3.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Tokenize.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Translation.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Url.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Utf7imap.php | 6 +-
framework/Imap_Client/locale/de/LC_MESSAGES/Horde_Imap_Client.po | 2 +-
framework/Imap_Client/locale/es/LC_MESSAGES/Horde_Imap_Client.po | 2 +-
framework/Imap_Client/locale/eu/LC_MESSAGES/Horde_Imap_Client.po | 2 +-
framework/Imap_Client/locale/fi/LC_MESSAGES/Horde_Imap_Client.po | 2 +-
framework/Imap_Client/locale/fr/LC_MESSAGES/Horde_Imap_Client.mo | Bin 0 -> 7074 bytes
framework/Imap_Client/locale/fr/LC_MESSAGES/Horde_Imap_Client.po | 272 +
framework/Imap_Client/locale/nl/LC_MESSAGES/Horde_Imap_Client.po | 2 +-
framework/Imap_Client/package.xml | 61 +-
framework/Imap_Client/test/Horde/Imap/Client/AclTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/AuthTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/DataFormatTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/DateTimeTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/IdsTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/MailboxTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/MapTest.php | 2 +-
.../Imap_Client/test/Horde/Imap/Client/RemoteImapServerTest.php | 405 +
framework/Imap_Client/test/Horde/Imap/Client/SearchTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/SocketTest.php | 32 +-
framework/Imap_Client/test/Horde/Imap/Client/SortTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/Stub/DigestMD5.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/Stub/Socket.php | 14 +-
.../Imap_Client/test/Horde/Imap/Client/Stub/SocketClientSort.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/SubjectParseTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/TokenizeTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/UrlParseTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/Utf7ConvertTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/conf.php.dist | 10 +
framework/Imap_Client/test/Horde/Imap/Client/fixtures/remote1.txt | 14 +
framework/Imap_Client/test/Horde/Imap/Client/fixtures/remote2.txt | 17 +
framework/Imap_Client/test/Horde/Imap/Client/fixtures/remote3.txt | 14 +
framework/Imap_Client/test/Horde/Imap/Client/fixtures/remote4.txt | 112 +
framework/Imsp/lib/Horde/Imsp/Auth/Base.php | 2 +-
framework/Imsp/lib/Horde/Imsp/Auth/CramMd5.php | 2 +-
framework/Imsp/lib/Horde/Imsp/Auth/Imtest.php | 2 +-
framework/Imsp/lib/Horde/Imsp/Auth/Plaintext.php | 2 +-
framework/Imsp/lib/Horde/Imsp/Book.php | 2 +-
framework/Imsp/lib/Horde/Imsp/Client/Base.php | 2 +-
framework/Imsp/lib/Horde/Imsp/Client/Socket.php | 2 +-
framework/Imsp/lib/Horde/Imsp/Exception.php | 2 +-
framework/Imsp/lib/Horde/Imsp/Options.php | 2 +-
framework/Imsp/lib/Horde/Imsp/Translation.php | 2 +-
framework/Imsp/locale/ar/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/bg/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/bs/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/ca/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/cs/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/da/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/de/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/el/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/en/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/es/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/et/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/eu/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/fa/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/fi/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/fr/LC_MESSAGES/Horde_Imsp.mo | Bin 631 -> 586 bytes
framework/Imsp/locale/fr/LC_MESSAGES/Horde_Imsp.po | 28 +-
framework/Imsp/locale/gl/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/he/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/hr/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/hu/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/id/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/is/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/it/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/ja/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/km/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/ko/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/lt/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/lv/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/mk/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/nb/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/nl/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/nn/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/pl/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/pt/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/pt_BR/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/ro/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/ru/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/sk/LC_MESSAGES/Horde_Imsp.mo | Bin 641 -> 556 bytes
framework/Imsp/locale/sk/LC_MESSAGES/Horde_Imsp.po | 21 +-
framework/Imsp/locale/sl/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/sv/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/tr/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/uk/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/zh_CN/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/locale/zh_TW/LC_MESSAGES/Horde_Imsp.po | 2 +-
framework/Imsp/package.xml | 23 +-
framework/Injector/doc/Horde/Injector/COPYING | 2 +-
framework/Itip/doc/Horde/Itip/COPYING | 44 -
framework/Itip/lib/Horde/Itip/Event.php | 2 +-
framework/Itip/lib/Horde/Itip/Event/Vevent.php | 2 +-
framework/Itip/lib/Horde/Itip/Exception.php | 2 +-
framework/Itip/lib/Horde/Itip/Resource/Identity.php | 6 +-
framework/Itip/lib/Horde/Itip/Response.php | 2 +-
framework/Itip/lib/Horde/Itip/Response/Options.php | 2 +-
framework/Itip/lib/Horde/Itip/Response/Options/Base.php | 2 +-
framework/Itip/lib/Horde/Itip/Response/Options/Horde.php | 2 +-
framework/Itip/lib/Horde/Itip/Response/Options/Kolab.php | 2 +-
framework/Itip/lib/Horde/Itip/Translation.php | 2 +-
framework/Itip/locale/ar/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/bg/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/bs/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/ca/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/cs/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/da/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/de/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/el/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/en/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/es/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/et/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/eu/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/fa/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/fi/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/fr/LC_MESSAGES/Horde_Itip.mo | Bin 421 -> 1475 bytes
framework/Itip/locale/fr/LC_MESSAGES/Horde_Itip.po | 45 +-
framework/Itip/locale/gl/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/he/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/hr/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/hu/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/id/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/is/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/it/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/ja/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/km/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/ko/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/lt/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/lv/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/mk/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/nb/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/nl/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/nn/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/pl/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/pt/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/pt_BR/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/ro/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/ru/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/sk/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/sl/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/sv/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/tr/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/uk/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/zh_CN/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/locale/zh_TW/LC_MESSAGES/Horde_Itip.po | 2 +-
framework/Itip/package.xml | 23 +-
framework/Itip/test/Horde/Itip/Stub/Identity.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Data/Ledger.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Exception.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Account.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Base.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Data.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Folder.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Format.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Ledger.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/List.php | 2 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Translation.php | 2 +-
framework/Kolab_Cli/locale/es/LC_MESSAGES/Horde_Kolab_Cli.po | 2 +-
framework/Kolab_Cli/locale/eu/LC_MESSAGES/Horde_Kolab_Cli.po | 2 +-
framework/Kolab_Cli/locale/fi/LC_MESSAGES/Horde_Kolab_Cli.po | 2 +-
framework/Kolab_Cli/locale/ja/LC_MESSAGES/Horde_Kolab_Cli.po | 2 +-
framework/Kolab_Cli/locale/lv/LC_MESSAGES/Horde_Kolab_Cli.po | 2 +-
framework/Kolab_Cli/locale/pt_BR/LC_MESSAGES/Horde_Kolab_Cli.po | 2 +-
framework/Kolab_Cli/test/Horde/Kolab/Cli/TestCase.php | 2 +-
.../Kolab_Cli/test/Horde/Kolab/Cli/Unit/Cli/Module/BaseTest.php | 2 +-
framework/Kolab_Cli/test/Horde/Kolab/Cli/Unit/Cli/ModuleTest.php | 2 +-
framework/Kolab_Cli/test/Horde/Kolab/Cli/Unit/Cli/OptionsTest.php | 2 +-
framework/Kolab_Cli/test/Horde/Kolab/Cli/Unit/CliTest.php | 2 +-
framework/Kolab_Config/test/Horde/Kolab/Config/Autoload.php | 2 +-
.../Kolab_Filter/lib/Horde/Kolab/Filter/Transport/LMTPTLS.php | 2 +-
framework/Kolab_Filter/lib/Horde/Kolab/Test/Filter.php | 2 +-
framework/Kolab_Filter/po/Kolab_Filter.pot | 2 +-
framework/Kolab_Filter/test/Horde/Kolab/Filter/Autoload.php | 2 +-
.../Kolab_Filter/test/Horde/Kolab/Filter/Helper/AddressFilter.php | 2 +-
.../test/Horde/Kolab/Filter/Unit/Helper/AddressFilter.php | 2 +-
.../Kolab_Format/doc/Horde/Kolab/Format/examples/new_type.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Date.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Decorator/Base.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Decorator/Memory.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Decorator/Timed.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Exception.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Exception/InvalidRoot.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Exception/MissingUid.php | 2 +-
.../lib/Horde/Kolab/Format/Exception/MissingValue.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Exception/ParseError.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Factory.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Annotation.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Envelope.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Event.php | 1 +
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Helper.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Hprefs.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Note.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Parser.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Task.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/AddressType.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/AttendeeRole.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/AttendeeStatus.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/AutomaticDate.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/AutomaticDate/V1.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Base.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Boolean.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Boolean/True.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Color.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Color/Background.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Color/Foreground.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Composite.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Composite/Address.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Composite/Attendee.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Composite/Name.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Composite/Phone.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Composite/Recurrence.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Composite/Recurrence/V1.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Composite/SimplePerson.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/CreationDate.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/CreationDate/V1.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Date.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Date/V1.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/DateTime.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/DateTime/V1.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/EventDate.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/EventDate/V1.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/EventDateTime.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/EventDateTime/V1.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Integer.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/ModificationDate.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Multiple.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Multiple/Address.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Multiple/Attendee.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Multiple/Boolean.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Multiple/Date.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Multiple/Phone.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Multiple/SimplePerson.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/Multiple/String.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/PhoneType.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/PrefsApplication.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/ProductId.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/RecurrenceInterval.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/RecurrenceRange.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/RecurrenceRange/V1.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Root.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Sensitivity.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/String.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/String/Empty.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/String/Empty/List.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/String/MaybeMissing.php | 2 +-
.../lib/Horde/Kolab/Format/Xml/Type/TaskCompletion.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/TaskPriority.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/TaskStatus.php | 2 +-
framework/Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/Uid.php | 2 +-
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/XmlAppend.php | 2 +-
framework/Kolab_Format/package.xml | 24 +-
framework/Kolab_Format/test/Horde/Kolab/Format/Autoload.php | 2 +-
.../test/Horde/Kolab/Format/Integration/ContactTest.php | 2 +-
.../test/Horde/Kolab/Format/Integration/EventTest.php | 2 +-
.../test/Horde/Kolab/Format/Integration/PreferencesTest.php | 2 +-
.../test/Horde/Kolab/Format/Integration/RecurrenceTest.php | 2 +-
.../Kolab_Format/test/Horde/Kolab/Format/Integration/TaskTest.php | 2 +-
.../Kolab_Format/test/Horde/Kolab/Format/Integration/XmlTest.php | 2 +-
framework/Kolab_Format/test/Horde/Kolab/Format/Stub/Dummy.php | 2 +-
framework/Kolab_Format/test/Horde/Kolab/Format/TestCase.php | 2 +-
framework/Kolab_Format/test/Horde/Kolab/Format/Unit/DateTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Decorator/MemoryTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Decorator/TimedTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Exception/MissingUidTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Exception/MissingValueTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Exception/ParseErrorTest.php | 2 +-
.../Kolab_Format/test/Horde/Kolab/Format/Unit/FactoryTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/EnvelopeTest.php | 2 +-
.../Kolab_Format/test/Horde/Kolab/Format/Unit/Xml/ParserTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/BooleanTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/ColorTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/CompositeTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/CreationDateTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/DateTimeTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/IntegerTest.php | 2 +-
.../Horde/Kolab/Format/Unit/Xml/Type/ModificationDateTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/MultipleTest.php | 2 +-
.../Horde/Kolab/Format/Unit/Xml/Type/PrefsApplicationTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/ProductIdTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/RecurrenceTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/RootTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/StringTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/UidTest.php | 2 +-
framework/Kolab_Format/test/Horde/Kolab/Format/Unit/XmlTest.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Cache/Base.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Controller/Base.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Controller/MatchDict.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Controller/NotFound.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Controller/RequestConfiguration.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Driver/Base.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Driver/Freebusy/Base.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Driver/Freebusy/Interface.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Driver/Freebusy/Kolab.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Driver/Interface.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Exception.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Exception/NotFound.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Exception/Unauthorized.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Export/Freebusy.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Export/Freebusy/Backend.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Export/Freebusy/Backend/Kolab.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Export/Freebusy/Base.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Export/Freebusy/Decorator/Log.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Factory.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Factory/Base.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Freebusy/Factory/Base.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Freebusy/Factory/Kolab.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Freebusy/Helper/Owa.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Freebusy/Owner.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Freebusy/Owner/Kolab.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Freebusy/Params/Folder.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Object/Event.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Owner.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Owner/Kolab.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Params/Freebusy/Resource/Kolab.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Params/Owner.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Params/Resource.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Params/User.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Provider.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Provider/Local.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Provider/Remote.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Provider/Remote/PassThrough.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Provider/Remote/Redirect.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Resource.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Resource/Decorator/Log.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Resource/Decorator/Mcache.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Resource/Event.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Resource/Event/Decorator/Log.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Resource/Event/Decorator/Mcache.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Resource/Event/Kolab.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/Resource/Event/Owa.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Resource/Kolab.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/Translation.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/User.php | 2 +-
.../Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/User/Anonymous.php | 2 +-
.../lib/Horde/Kolab/FreeBusy/User/Decorator/Log.php | 2 +-
framework/Kolab_FreeBusy/lib/Horde/Kolab/FreeBusy/User/Kolab.php | 2 +-
.../Kolab_FreeBusy/locale/ar/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/bg/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/bs/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/ca/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/cs/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/da/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/de/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/el/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/en/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/es/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/et/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/eu/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/fa/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/fi/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/fr/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/gl/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/he/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/hr/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/hu/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/id/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/is/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/it/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/ja/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/km/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/ko/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/lt/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/lv/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/mk/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/nb/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/nl/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/nn/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/pl/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/pt/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../locale/pt_BR/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/ro/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/ru/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/sk/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/sl/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/sv/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/tr/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../Kolab_FreeBusy/locale/uk/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../locale/zh_CN/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../locale/zh_TW/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 2 +-
.../test/Horde/Kolab/FreeBusy/Integration/DispatchTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Integration/FreeBusy.php | 2 +-
.../Horde/Kolab/FreeBusy/Integration/FreeBusyScenarioTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Integration/FreeBusyTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Integration/RedirectTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Integration/TriggerTest.php | 2 +-
framework/Kolab_FreeBusy/test/Horde/Kolab/FreeBusy/TestCase.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/Controller/MatchDictTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/Factory/BaseTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/FreeBusyTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/Freebusy/Factory/BaseTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/Freebusy/Helper/OwaTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/Freebusy/Params/FolderTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/Owner/Freebusy/KolabTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/Params/UserTest.php | 2 +-
.../Horde/Kolab/FreeBusy/Unit/Provider/Remote/PassThroughTest.php | 2 +-
.../Horde/Kolab/FreeBusy/Unit/Provider/Remote/RedirectTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/Resource/Event/KolabTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/Resource/Event/OwaTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/Resource/KolabTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/User/AnonymousTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/User/Decorator/LogTest.php | 2 +-
.../test/Horde/Kolab/FreeBusy/Unit/User/KolabTest.php | 2 +-
framework/Kolab_FreeBusy/www/Horde/Kolab/FreeBusy/config.php | 2 +-
framework/Kolab_Resource/lib/Horde/Kolab/Resource/Exception.php | 2 +-
framework/Kolab_Resource/lib/Horde/Kolab/Resource/Translation.php | 2 +-
.../Kolab_Resource/locale/ar/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/bg/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/bs/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/ca/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/cs/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/da/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/de/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/el/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/en/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/es/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/et/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/eu/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/fa/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/fi/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/fr/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/gl/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/he/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/hr/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/hu/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/id/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/is/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/it/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/ja/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/km/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/ko/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/lt/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/lv/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/mk/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/nb/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/nl/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/nn/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/pl/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/pt/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../locale/pt_BR/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/ro/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/ru/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/sk/LC_MESSAGES/Horde_Kolab_Resource.mo | Bin 459 -> 1004 bytes
.../Kolab_Resource/locale/sk/LC_MESSAGES/Horde_Kolab_Resource.po | 34 +-
.../Kolab_Resource/locale/sl/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/sv/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/tr/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../Kolab_Resource/locale/uk/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../locale/zh_CN/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
.../locale/zh_TW/LC_MESSAGES/Horde_Kolab_Resource.po | 2 +-
framework/Kolab_Resource/test/Horde/Kolab/Resource/Autoload.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Composite.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Connection/File.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Connection/Interface.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Connection/Mock.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Connection/Mock/Ldap.php | 2 +-
.../lib/Horde/Kolab/Server/Connection/Mock/Search.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Connection/Simpleldap.php | 2 +-
.../lib/Horde/Kolab/Server/Connection/Splittedldap.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Decorator/Clean.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Decorator/Count.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Decorator/Log.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Decorator/Map.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Exception.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Exception/Bindfailed.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Exception/Novalue.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Factory.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Interface.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Ldap.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Ldap/Changes.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Ldap/Filtered.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Ldap/Standard.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/List/Base.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/List/Interface.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Object/Attribute/Base.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Createtimestamp.php | 2 +-
.../Horde/Kolab/Server/Object/Attribute/Createtimestampdate.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Decorator.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Default.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Empty.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/External.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Field.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Firstnamelastname.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Object/Attribute/Guid.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Object/Attribute/Id.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Interface.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Internal.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Locked.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Modifytimestamp.php | 2 +-
.../Horde/Kolab/Server/Object/Attribute/Modifytimestampdate.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Objectclass.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Openldapaci.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Required.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Single.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Value.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Attribute/Writelock.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Object/Base.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Object/Factory.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Object/Groupofnames.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Object/Hash.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Object/Inetorgperson.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Object/Interface.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Object/Kolab.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Object/Kolab/Address.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Kolab/Administrator.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Kolab/Adminrole.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Object/Kolab/Distlist.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Kolab/Domainmaintainer.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Kolab/Maintainer.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Object/Kolab/User.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Kolabgermanbankarrangement.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Kolabgroupofnames.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Kolabinetorgperson.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Kolabpop3account.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Kolabsharedfolder.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Object/Mcached.php | 2 +-
.../lib/Horde/Kolab/Server/Object/Organizationalperson.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Object/Person.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Object/Searches.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Object/Top.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Objects/Base.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Objects/Interface.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/And.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Approx.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Begins.php | 2 +-
.../lib/Horde/Kolab/Server/Query/Element/Contains.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Ends.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Equals.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Greater.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Group.php | 2 +-
.../lib/Horde/Kolab/Server/Query/Element/Interface.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Less.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Mapped.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Not.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Or.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Query/Element/Single.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Query/Interface.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Query/Ldap.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Result/Interface.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Result/Ldap.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Schema/Base.php | 2 +-
.../lib/Horde/Kolab/Server/Schema/Decorator/Cache.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Schema/Interface.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Search/Base.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Search/Interface.php | 2 +-
.../Horde/Kolab/Server/Search/Operation/Addressesforuidormail.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Attributes.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Search/Operation/Base.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Children.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Constraint/Single.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Constraint/Strict.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Groupsformember.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Search/Operation/Guid.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Guidforalias.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Guidforcn.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Guidforkolabusers.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Guidformail.php | 2 +-
.../Horde/Kolab/Server/Search/Operation/Guidformailoralias.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Guidforuid.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Guidforuidormail.php | 2 +-
.../Kolab/Server/Search/Operation/Guidforuidormailoralias.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Interface.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Mailforuidormail.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Restrictgroups.php | 2 +-
.../lib/Horde/Kolab/Server/Search/Operation/Restrictkolab.php | 2 +-
.../lib/Horde/Kolab/Server/Structure/Attribute/Double.php | 2 +-
.../lib/Horde/Kolab/Server/Structure/Attribute/Interface.php | 2 +-
.../lib/Horde/Kolab/Server/Structure/Attribute/Value.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Structure/Base.php | 2 +-
.../Kolab_Server/lib/Horde/Kolab/Server/Structure/Interface.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Structure/Kolab.php | 2 +-
framework/Kolab_Server/lib/Horde/Kolab/Server/Structure/Ldap.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Composite/BaseTest.php | 2 +-
.../Horde/Kolab/Server/Class/Server/Connection/Mock/LdapTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Connection/MockTest.php | 2 +-
.../Horde/Kolab/Server/Class/Server/Connection/SimpleldapTest.php | 2 +-
.../Kolab/Server/Class/Server/Connection/SplittedldapTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Decorator/CleanTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Decorator/LogTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Ldap/ChangesTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Ldap/FilteredTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Ldap/StandardTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/LdapTest.php | 2 +-
.../Horde/Kolab/Server/Class/Server/Object/Attribute/BaseTest.php | 2 +-
.../Kolab/Server/Class/Server/Object/Attribute/ValueTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Object/BaseTest.php | 2 +-
.../Horde/Kolab/Server/Class/Server/Query/Element/MappedTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Query/ElementTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Query/LdapTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Result/LdapTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Search/BaseTest.php | 2 +-
.../Horde/Kolab/Server/Class/Server/Search/Operation/GuidTest.php | 2 +-
.../Server/Class/Server/Search/Operation/GuidforaliasTest.php | 2 +-
.../Kolab/Server/Class/Server/Search/Operation/GuidforcnTest.php | 2 +-
.../Server/Class/Server/Search/Operation/GuidformailTest.php | 2 +-
.../Kolab/Server/Class/Server/Search/Operation/GuidforuidTest.php | 2 +-
.../Server/Class/Server/Search/Operation/RestrictgroupsTest.php | 2 +-
.../Server/Class/Server/Search/Operation/RestrictkolabTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Structure/KolabTest.php | 2 +-
.../test/Horde/Kolab/Server/Class/Server/Structure/LdapTest.php | 2 +-
.../test/Horde/Kolab/Server/Integration/AddingObjectsTest.php | 2 +-
.../test/Horde/Kolab/Server/Integration/AdminTest.php | 2 +-
.../test/Horde/Kolab/Server/Integration/DistListHandlingTest.php | 2 +-
.../test/Horde/Kolab/Server/Integration/GroupHandlingTestTodo.php | 2 +-
.../test/Horde/Kolab/Server/Integration/GroupTest.php | 2 +-
.../test/Horde/Kolab/Server/Integration/InetorgpersonTest.php | 2 +-
.../Kolab/Server/Integration/KolabgermanbankarrangementTest.php | 2 +-
.../Horde/Kolab/Server/Integration/KolabinetorgpersonTest.php | 2 +-
.../test/Horde/Kolab/Server/Integration/Kolabpop3accountTest.php | 2 +-
.../Kolab_Server/test/Horde/Kolab/Server/Integration/MockTest.php | 2 +-
.../test/Horde/Kolab/Server/Integration/ObjectTest.php | 4 +-
.../test/Horde/Kolab/Server/Integration/ObjectsTest.php | 2 +-
.../test/Horde/Kolab/Server/Integration/OrgPersonTest.php | 2 +-
.../test/Horde/Kolab/Server/Integration/PersonTest.php | 2 +-
.../Kolab_Server/test/Horde/Kolab/Server/Integration/Scenario.php | 2 +-
.../test/Horde/Kolab/Server/Integration/SearchTest.php | 2 +-
.../Horde/Kolab/Server/Integration/SearchguidforuidormailTest.php | 2 +-
.../test/Horde/Kolab/Server/Integration/UserHandlingTestTodo.php | 2 +-
.../Kolab_Server/test/Horde/Kolab/Server/Integration/UserTest.php | 2 +-
framework/Kolab_Server/test/Horde/Kolab/Server/LdapTestCase.php | 2 +-
framework/Kolab_Server/test/Horde/Kolab/Server/TestCase.php | 2 +-
framework/Kolab_Session/lib/Horde/Kolab/Session.php | 2 +-
framework/Kolab_Session/lib/Horde/Kolab/Session/Abstract.php | 2 +-
framework/Kolab_Session/lib/Horde/Kolab/Session/Base.php | 2 +-
.../Kolab_Session/lib/Horde/Kolab/Session/Decorator/Anonymous.php | 2 +-
.../Kolab_Session/lib/Horde/Kolab/Session/Decorator/Base.php | 2 +-
.../Kolab_Session/lib/Horde/Kolab/Session/Decorator/Logged.php | 2 +-
.../Kolab_Session/lib/Horde/Kolab/Session/Decorator/Stored.php | 2 +-
framework/Kolab_Session/lib/Horde/Kolab/Session/Exception.php | 2 +-
.../Kolab_Session/lib/Horde/Kolab/Session/Exception/Badlogin.php | 2 +-
framework/Kolab_Session/lib/Horde/Kolab/Session/Factory/Imap.php | 2 +-
framework/Kolab_Session/lib/Horde/Kolab/Session/Imap.php | 2 +-
framework/Kolab_Session/lib/Horde/Kolab/Session/Storage.php | 2 +-
framework/Kolab_Session/lib/Horde/Kolab/Session/Storage/Mock.php | 2 +-
.../Kolab_Session/lib/Horde/Kolab/Session/Storage/Session.php | 2 +-
framework/Kolab_Session/lib/Horde/Kolab/Session/Valid.php | 2 +-
framework/Kolab_Session/lib/Horde/Kolab/Session/Valid/Base.php | 2 +-
.../lib/Horde/Kolab/Session/Valid/Decorator/Logged.php | 2 +-
.../test/Horde/Kolab/Session/Integration/AnonymousTest.php | 2 +-
.../test/Horde/Kolab/Session/Integration/ValidTest.php | 2 +-
framework/Kolab_Session/test/Horde/Kolab/Session/TestCase.php | 2 +-
.../Kolab_Session/test/Horde/Kolab/Session/Unit/BaseTest.php | 2 +-
.../test/Horde/Kolab/Session/Unit/Decorator/AnonymousTest.php | 2 +-
.../test/Horde/Kolab/Session/Unit/Decorator/BaseTest.php | 2 +-
.../test/Horde/Kolab/Session/Unit/Decorator/LoggedTest.php | 2 +-
.../test/Horde/Kolab/Session/Unit/Decorator/StoredTest.php | 2 +-
.../Kolab_Session/test/Horde/Kolab/Session/Unit/ImapTest.php | 2 +-
.../test/Horde/Kolab/Session/Unit/Storage/MockTest.php | 2 +-
.../test/Horde/Kolab/Session/Unit/Storage/SessionTest.php | 2 +-
.../test/Horde/Kolab/Session/Unit/Valid/BaseTest.php | 2 +-
.../test/Horde/Kolab/Session/Unit/Valid/Decorator/LoggedTest.php | 2 +-
framework/Kolab_Storage/doc/Horde/Kolab/Storage/OLD/Folder.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Base.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Cache.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Cache/Data.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Cached.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data/Base.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data/Cached.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Data/Decorator/Log.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Data/Exception.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data/Old.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data/Query.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Data/Query/History.php | 2 +-
.../lib/Horde/Kolab/Storage/Data/Query/History/Base.php | 2 +-
.../lib/Horde/Kolab/Storage/Data/Query/History/Cache.php | 2 +-
.../lib/Horde/Kolab/Storage/Data/Query/Preferences.php | 2 +-
.../lib/Horde/Kolab/Storage/Data/Query/Preferences/Base.php | 2 +-
.../lib/Horde/Kolab/Storage/Data/Query/Preferences/Cache.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Decorator/Log.php | 2 +-
.../lib/Horde/Kolab/Storage/Decorator/Synchronization.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Driver.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Driver/Base.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Driver/Cclient.php | 2 +-
.../lib/Horde/Kolab/Storage/Driver/Decorator/Base.php | 2 +-
.../lib/Horde/Kolab/Storage/Driver/Decorator/Log.php | 2 +-
.../lib/Horde/Kolab/Storage/Driver/Decorator/Timer.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Driver/Imap.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Driver/Mock.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Driver/Mock/Data.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Driver/Pear.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Driver/Rcube.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Exception.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Exception/Pear.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Factory.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Folder.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Folder/Base.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Folder/Data.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Folder/Namespace.php | 2 +-
.../lib/Horde/Kolab/Storage/Folder/Namespace/Config.php | 2 +-
.../lib/Horde/Kolab/Storage/Folder/Namespace/Element.php | 2 +-
.../lib/Horde/Kolab/Storage/Folder/Namespace/Element/Other.php | 2 +-
.../lib/Horde/Kolab/Storage/Folder/Namespace/Element/Personal.php | 2 +-
.../lib/Horde/Kolab/Storage/Folder/Namespace/Element/Shared.php | 2 +-
.../Kolab/Storage/Folder/Namespace/Element/SharedWithPrefix.php | 2 +-
.../lib/Horde/Kolab/Storage/Folder/Namespace/Fixed.php | 2 +-
.../lib/Horde/Kolab/Storage/Folder/Namespace/Imap.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Folder/Stamp.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Folder/Stamp/Uids.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Folder/Type.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Folder/Types.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/List/Cache.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/List/Exception.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/List/Manipulation.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Manipulation/Base.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Manipulation/Decorator/Log.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Manipulation/Listener.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/List/Query/Acl.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/List/Query/Acl/Base.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/Acl/Cache.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/ActiveSync.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/ActiveSync/Base.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/ActiveSync/Cache.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/List/Query/List.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/List/Base.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/List/Cache.php | 2 +-
.../Horde/Kolab/Storage/List/Query/List/Cache/Synchronization.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/List/Defaults.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/List/Defaults/Bail.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/List/Defaults/Log.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/List/Query/Share.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/Share/Base.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Query/Share/Cache.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Synchronization.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Synchronization/Base.php | 2 +-
.../Horde/Kolab/Storage/List/Synchronization/Decorator/Log.php | 2 +-
.../lib/Horde/Kolab/Storage/List/Synchronization/Listener.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/List/Tools.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Object.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Object/Exception.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Object/MimeType.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Object/Writer.php | 2 +-
.../lib/Horde/Kolab/Storage/Object/Writer/Format.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Object/Writer/Raw.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Queriable.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Query.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/QuerySet.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/QuerySet/Base.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/QuerySet/Cached.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/QuerySet/Uncached.php | 2 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Synchronization.php | 2 +-
.../lib/Horde/Kolab/Storage/Synchronization/OncePerSession.php | 2 +-
.../lib/Horde/Kolab/Storage/Synchronization/TimeBased.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Translation.php | 2 +-
framework/Kolab_Storage/lib/Horde/Kolab/Storage/Uncached.php | 2 +-
.../Kolab_Storage/locale/ar/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/bg/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/bs/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/ca/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/cs/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/da/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/de/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/el/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/en/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/es/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/et/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/eu/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/fa/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/fi/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/fr/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/gl/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/he/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/hr/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/hu/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/id/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/is/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/it/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/ja/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/km/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/ko/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/lt/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/lv/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/mk/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/nb/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/nl/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/nn/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/pl/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/pt/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/pt_BR/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/ro/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/ru/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/sk/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/sl/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/sv/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/tr/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/uk/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/zh_CN/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
.../Kolab_Storage/locale/zh_TW/LC_MESSAGES/Horde_Kolab_Storage.po | 2 +-
framework/Kolab_Storage/package.xml | 23 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/AttachmentTest.php | 2 +-
.../Storage/ComponentTest/Data/Object/Message/ModifiedTest.php | 2 +-
.../Kolab/Storage/ComponentTest/Data/Object/Message/NewTest.php | 2 +-
.../test/Horde/Kolab/Storage/ComponentTest/List/CacheTest.php | 2 +-
.../Horde/Kolab/Storage/ComponentTest/List/Query/Acl/BaseTest.php | 2 +-
.../Kolab/Storage/ComponentTest/List/Query/List/BaseTest.php | 2 +-
.../Kolab/Storage/ComponentTest/List/Query/List/CacheTest.php | 2 +-
framework/Kolab_Storage/test/Horde/Kolab/Storage/Scenario.php | 2 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/Server/DriverTest.php | 2 +-
framework/Kolab_Storage/test/Horde/Kolab/Storage/TestCase.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Cache/DataTest.php | 2 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/Unit/CacheTest.php | 2 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/Unit/CachedTest.php | 2 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/Unit/Data/BaseTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Data/CachedTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Data/Decorator/LogTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Data/Query/History/BaseTest.php | 2 +-
.../Horde/Kolab/Storage/Unit/Data/Query/Preferences/BaseTest.php | 2 +-
.../Horde/Kolab/Storage/Unit/Data/Query/Preferences/CacheTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Decorator/LogTest.php | 2 +-
.../Horde/Kolab/Storage/Unit/Decorator/SynchronizationTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Driver/CclientTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Driver/Decorator/LogTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Driver/Decorator/TimerTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Driver/ImapTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Driver/MockTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Driver/PearTest.php | 2 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/Unit/FactoryTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Folder/BaseTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Folder/DataTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Folder/NamespaceTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Folder/Stamp/UidsTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Folder/TypeTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Folder/TypesTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/List/Manipulation/BaseTest.php | 2 +-
.../Kolab/Storage/Unit/List/Manipulation/Decorator/LogTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/List/Query/Acl/BaseTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/List/Query/Acl/CacheTest.php | 2 +-
.../Horde/Kolab/Storage/Unit/List/Query/ActiveSync/BaseTest.php | 2 +-
.../Horde/Kolab/Storage/Unit/List/Query/ActiveSync/CacheTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/List/Query/List/BaseTest.php | 2 +-
.../Storage/Unit/List/Query/List/Cache/SynchronizationTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/List/Query/List/CacheTest.php | 2 +-
.../Horde/Kolab/Storage/Unit/List/Query/List/DefaultsTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/List/Query/Share/BaseTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/List/Query/Share/CacheTest.php | 2 +-
.../Horde/Kolab/Storage/Unit/List/Synchronization/BaseTest.php | 2 +-
.../Kolab/Storage/Unit/List/Synchronization/Decorator/LogTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/List/ToolsTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Object/MimeTypeTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Object/Writer/FormatTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/Object/Writer/RawTest.php | 2 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/Unit/ObjectTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/QuerySet/UncachedTest.php | 2 +-
.../Kolab/Storage/Unit/Synchronization/OncePerSessionTest.php | 2 +-
.../Horde/Kolab/Storage/Unit/Synchronization/TimeBasedTest.php | 2 +-
.../test/Horde/Kolab/Storage/Unit/SynchronizationTest.php | 2 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/Unit/UncachedTest.php | 2 +-
framework/Ldap/lib/Horde/Ldap.php | 2 +-
framework/Ldap/lib/Horde/Ldap/Entry.php | 4 +-
framework/Ldap/lib/Horde/Ldap/Exception.php | 2 +-
framework/Ldap/lib/Horde/Ldap/Filter.php | 10 +-
framework/Ldap/lib/Horde/Ldap/Ldif.php | 4 +-
framework/Ldap/lib/Horde/Ldap/RootDse.php | 2 +-
framework/Ldap/lib/Horde/Ldap/Schema.php | 6 +-
framework/Ldap/lib/Horde/Ldap/Search.php | 4 +-
framework/Ldap/lib/Horde/Ldap/Util.php | 32 +-
framework/Ldap/test/Horde/Ldap/EntryTest.php | 2 +-
framework/Ldap/test/Horde/Ldap/FilterTest.php | 2 +-
framework/Ldap/test/Horde/Ldap/LdapTest.php | 2 +-
framework/Ldap/test/Horde/Ldap/LdifTest.php | 18 +-
framework/Ldap/test/Horde/Ldap/SearchTest.php | 2 +-
framework/Ldap/test/Horde/Ldap/TestBase.php | 2 +-
framework/Ldap/test/Horde/Ldap/UtilTest.php | 2 +-
framework/Ldap/test/Horde/Ldap/fixtures/changes.ldif | 2 +-
framework/Ldap/test/Horde/Ldap/fixtures/sorted_w40.ldif | 8 +-
framework/Ldap/test/Horde/Ldap/fixtures/sorted_w50.ldif | 8 +-
framework/Ldap/test/Horde/Ldap/fixtures/unsorted_w30.ldif | 8 +-
framework/Ldap/test/Horde/Ldap/fixtures/unsorted_w50.ldif | 8 +-
framework/Ldap/test/Horde/Ldap/fixtures/unsorted_w50_WIN.ldif | 8 +-
framework/ListHeaders/lib/Horde/ListHeaders.php | 2 +-
framework/ListHeaders/lib/Horde/ListHeaders/Base.php | 2 +-
framework/ListHeaders/lib/Horde/ListHeaders/Id.php | 2 +-
framework/ListHeaders/lib/Horde/ListHeaders/NoPost.php | 2 +-
framework/ListHeaders/lib/Horde/ListHeaders/Object.php | 2 +-
framework/Lock/lib/Horde/Lock.php | 2 +-
framework/Lock/lib/Horde/Lock/Exception.php | 2 +-
framework/Lock/lib/Horde/Lock/Null.php | 2 +-
framework/Lock/lib/Horde/Lock/Sql.php | 2 +-
framework/Log/doc/Horde/Log/COPYING | 2 +-
framework/LoginTasks/lib/Horde/LoginTasks.php | 2 +-
framework/LoginTasks/lib/Horde/LoginTasks/Backend.php | 2 +-
framework/LoginTasks/lib/Horde/LoginTasks/SystemTask.php | 2 +-
framework/LoginTasks/lib/Horde/LoginTasks/Task.php | 2 +-
framework/LoginTasks/lib/Horde/LoginTasks/Tasklist.php | 2 +-
framework/LoginTasks/lib/Horde/LoginTasks/Translation.php | 2 +-
framework/LoginTasks/locale/ar/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/bg/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/bs/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/ca/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/cs/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/da/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/de/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/el/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/en/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/es/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/et/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/eu/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/fa/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/fi/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/fr/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/gl/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/he/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/hr/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/hu/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/id/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/is/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/it/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/ja/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/km/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/ko/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/lt/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/lv/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/mk/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/nb/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/nl/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/nn/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/pl/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/pt/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/pt_BR/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/ro/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/ru/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/sk/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/sl/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/sv/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/tr/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/uk/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/zh_CN/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/locale/zh_TW/LC_MESSAGES/Horde_LoginTasks.po | 2 +-
framework/LoginTasks/package.xml | 23 +-
framework/LoginTasks/test/Horde/LoginTasks/LoginTasksTest.php | 2 +-
framework/Mail/doc/Horde/Mail/COPYING | 2 +-
framework/Mail/lib/Horde/Mail/Exception.php | 6 +-
framework/Mail/lib/Horde/Mail/Rfc822.php | 6 +-
framework/Mail/lib/Horde/Mail/Rfc822/Address.php | 6 +-
framework/Mail/lib/Horde/Mail/Rfc822/Group.php | 6 +-
framework/Mail/lib/Horde/Mail/Rfc822/GroupList.php | 6 +-
framework/Mail/lib/Horde/Mail/Rfc822/List.php | 6 +-
framework/Mail/lib/Horde/Mail/Rfc822/Object.php | 6 +-
framework/Mail/lib/Horde/Mail/Transport.php | 9 +-
framework/Mail/lib/Horde/Mail/Transport/Mail.php | 9 +-
framework/Mail/lib/Horde/Mail/Transport/Mock.php | 8 +-
framework/Mail/lib/Horde/Mail/Transport/Null.php | 6 +-
framework/Mail/lib/Horde/Mail/Transport/Sendmail.php | 9 +-
framework/Mail/lib/Horde/Mail/Transport/Smtp.php | 12 +-
framework/Mail/lib/Horde/Mail/Transport/Smtpmx.php | 20 +-
framework/Mail/package.xml | 21 +-
framework/Memcache/lib/Horde/Memcache.php | 2 +-
framework/Memcache/lib/Horde/Memcache/Exception.php | 2 +-
framework/Mime/lib/Horde/Mime.php | 9 +-
framework/Mime/lib/Horde/Mime/Exception.php | 2 +-
framework/Mime/lib/Horde/Mime/Headers.php | 2 +-
framework/Mime/lib/Horde/Mime/Magic.php | 2 +-
framework/Mime/lib/Horde/Mime/Mail.php | 4 +-
framework/Mime/lib/Horde/Mime/Mdn.php | 2 +-
framework/Mime/lib/Horde/Mime/Part.php | 40 +-
framework/Mime/lib/Horde/Mime/Related.php | 2 +-
framework/Mime/lib/Horde/Mime/Translation.php | 2 +-
framework/Mime/locale/ar/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/bg/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/bs/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/ca/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/cs/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/da/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/de/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/el/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/en/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/es/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/et/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/eu/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/fa/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/fi/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/fr/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/gl/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/he/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/hr/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/hu/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/id/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/is/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/it/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/ja/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/km/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/ko/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/lt/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/lv/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/mk/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/nb/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/nl/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/nn/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/pl/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/pt/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/pt_BR/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/ro/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/ru/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/sk/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/sl/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/sv/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/tr/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/uk/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/zh_CN/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/locale/zh_TW/LC_MESSAGES/Horde_Mime.po | 2 +-
framework/Mime/package.xml | 30 +-
framework/Mime/test/Horde/Mime/HeadersTest.php | 2 +-
framework/Mime/test/Horde/Mime/MagicTest.php | 2 +-
framework/Mime/test/Horde/Mime/MailTest.php | 2 +-
framework/Mime/test/Horde/Mime/MimeTest.php | 2 +-
framework/Mime/test/Horde/Mime/PartTest.php | 61 +-
framework/Mime/test/Horde/Mime/RelatedTest.php | 2 +-
framework/Mime/test/Horde/Mime/fixtures/deeply_nested.txt | 710 +
framework/Mime/test/Horde/Mime/fixtures/samplemultipart_msg.txt | 29 +
framework/Mime_Viewer/lib/Horde/Mime/Viewer.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Audio.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Base.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Deb.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Default.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Enriched.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Exception.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Html.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Images.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Msexcel.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Mspowerpoint.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Msword.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Ooo.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Pdf.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Plain.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Rar.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Report.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Rfc822.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Richtext.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Rpm.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Rtf.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Security.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Simple.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Smil.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Syntaxhighlighter.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Tgz.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Tnef.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Translation.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Wordperfect.php | 2 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Zip.php | 2 +-
framework/Mime_Viewer/locale/ar/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/bg/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/bs/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/ca/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/cs/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/da/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/de/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/el/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/en/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/es/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/et/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/eu/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/fa/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/fi/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/fr/LC_MESSAGES/Horde_Mime_Viewer.mo | Bin 462 -> 1552 bytes
framework/Mime_Viewer/locale/fr/LC_MESSAGES/Horde_Mime_Viewer.po | 62 +-
framework/Mime_Viewer/locale/gl/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/he/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/hr/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/hu/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/id/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/is/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/it/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/ja/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/km/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/ko/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/lt/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/lv/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/mk/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/nb/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/nl/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/nn/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/pl/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/pt/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
.../Mime_Viewer/locale/pt_BR/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/ro/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/ru/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/sk/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/sl/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/sv/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/tr/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/locale/uk/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
.../Mime_Viewer/locale/zh_CN/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
.../Mime_Viewer/locale/zh_TW/LC_MESSAGES/Horde_Mime_Viewer.po | 2 +-
framework/Mime_Viewer/package.xml | 26 +-
framework/Model/lib/Horde/Core/Form.php | 2 +-
framework/Model/lib/Horde/Core/Form/daterendererchanges.php | 2 +-
framework/Model/lib/Horde/Form/VarRenderer.php | 2 +-
framework/Model/lib/Horde/Form/VarRenderer/Xhtml.php | 2 +-
framework/Model/lib/Horde/Model/Translation.php | 2 +-
framework/Model/locale/ar/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/bg/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/bs/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/ca/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/cs/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/da/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/de/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/el/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/en/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/es/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/et/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/eu/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/fa/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/fi/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/fr/LC_MESSAGES/Horde_Model.mo | Bin 10591 -> 7134 bytes
framework/Model/locale/fr/LC_MESSAGES/Horde_Model.po | 780 +-
framework/Model/locale/gl/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/he/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/hr/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/hu/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/id/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/is/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/it/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/ja/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/km/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/ko/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/lt/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/lv/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/mk/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/nb/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/nl/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/nn/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/pl/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/pt/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/pt_BR/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/ro/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/ru/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/sk/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/sl/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/sv/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/tr/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/uk/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/zh_CN/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Model/locale/zh_TW/LC_MESSAGES/Horde_Model.po | 2 +-
framework/Nls/lib/Horde/Nls.php | 2 +-
framework/Nls/lib/Horde/Nls/Geoip.php | 2 +-
framework/Nls/lib/Horde/Nls/Translation.php | 2 +-
framework/Nls/locale/ar/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/bg/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/bs/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/ca/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/cs/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/da/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/de/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/el/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/en/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/es/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/et/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/eu/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/fa/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/fi/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/fr/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/gl/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/he/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/hr/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/hu/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/id/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/is/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/it/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/ja/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/km/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/ko/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/lt/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/lv/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/mk/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/nb/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/nn/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/pl/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/pt/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/pt_BR/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/ro/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/ru/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/sk/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/sl/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/sv/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/tr/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/uk/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/zh_CN/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/locale/zh_TW/LC_MESSAGES/Horde_Nls.po | 2 +-
framework/Nls/package.xml | 23 +-
framework/Notification/lib/Horde/Notification.php | 2 +-
framework/Notification/lib/Horde/Notification/Event.php | 2 +-
framework/Notification/lib/Horde/Notification/Event/Status.php | 2 +-
framework/Notification/lib/Horde/Notification/Exception.php | 2 +-
framework/Notification/lib/Horde/Notification/Handler.php | 2 +-
.../lib/Horde/Notification/Handler/Decorator/Alarm.php | 2 +-
.../lib/Horde/Notification/Handler/Decorator/Base.php | 2 +-
.../Notification/lib/Horde/Notification/Handler/Decorator/Log.php | 2 +-
framework/Notification/lib/Horde/Notification/Listener.php | 2 +-
framework/Notification/lib/Horde/Notification/Listener/Audio.php | 2 +-
framework/Notification/lib/Horde/Notification/Listener/Status.php | 2 +-
.../Notification/lib/Horde/Notification/Storage/Interface.php | 2 +-
framework/Notification/lib/Horde/Notification/Storage/Object.php | 2 +-
framework/Notification/lib/Horde/Notification/Storage/Session.php | 2 +-
.../Horde/Notification/Class/Notification/Event/StatusTest.php | 2 +-
.../test/Horde/Notification/Class/Notification/EventTest.php | 2 +-
.../Class/Notification/Handler/Decorator/AlarmTest.php | 2 +-
.../Class/Notification/Handler/Decorator/HordelogTest.php | 2 +-
.../Notification/Class/Notification/Handler/Decorator/LogTest.php | 2 +-
.../test/Horde/Notification/Class/Notification/HandlerTest.php | 2 +-
.../Horde/Notification/Class/Notification/Listener/AudioTest.php | 2 +-
.../Horde/Notification/Class/Notification/Listener/StatusTest.php | 2 +-
.../test/Horde/Notification/Class/Notification/ListenerTest.php | 2 +-
.../test/Horde/Notification/Class/NotificationTest.php | 2 +-
framework/Oauth/doc/Horde/Oauth/COPYING | 2 +-
framework/Oauth/lib/Horde/Oauth/Consumer.php | 2 +-
framework/Oauth/lib/Horde/Oauth/Exception.php | 2 +-
framework/Oauth/lib/Horde/Oauth/Request.php | 2 +-
framework/Oauth/lib/Horde/Oauth/SignatureMethod.php | 2 +-
framework/Oauth/lib/Horde/Oauth/SignatureMethod/HmacSha1.php | 2 +-
framework/Oauth/lib/Horde/Oauth/SignatureMethod/Plaintext.php | 6 +-
framework/Oauth/lib/Horde/Oauth/SignatureMethod/RsaSha1.php | 2 +-
framework/Oauth/lib/Horde/Oauth/Token.php | 2 +-
framework/Oauth/lib/Horde/Oauth/Utils.php | 2 +-
framework/Pdf/lib/Horde/Pdf/Writer.php | 2 +-
framework/Pdf/package.xml | 23 +-
framework/Pear/doc/Horde/Pear/COPYING | 50 +-
framework/Pear/lib/Horde/Pear/Exception.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/Ignore.php | 2 +-
.../Pear/lib/Horde/Pear/Package/Contents/Ignore/Composite.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/Ignore/Dot.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/Ignore/Git.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/Ignore/Hidden.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/Ignore/Nothing.php | 2 +-
.../Pear/lib/Horde/Pear/Package/Contents/Ignore/Patterns.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/Ignore/Symlink.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/Include.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/Include/All.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/InstallAs.php | 2 +-
.../Pear/lib/Horde/Pear/Package/Contents/InstallAs/Horde.php | 2 +-
.../Horde/Pear/Package/Contents/InstallAs/HordeApplication.php | 2 +-
.../lib/Horde/Pear/Package/Contents/InstallAs/HordeComponent.php | 2 +-
.../Pear/lib/Horde/Pear/Package/Contents/InstallAs/HordeRole.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/List.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Contents/Role.php | 2 +-
.../lib/Horde/Pear/Package/Contents/Role/HordeApplication.php | 2 +-
.../Pear/lib/Horde/Pear/Package/Contents/Role/HordeComponent.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Dependencies.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Task.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Task/UpdateContents.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Type.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Type/Horde.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Xml.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Xml/Contents.php | 4 +-
framework/Pear/lib/Horde/Pear/Package/Xml/Directory.php | 6 +-
framework/Pear/lib/Horde/Pear/Package/Xml/Element/Directory.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Xml/Element/File.php | 2 +-
framework/Pear/lib/Horde/Pear/Package/Xml/Factory.php | 2 +-
framework/Pear/lib/Horde/Pear/Registry.php | 2 +-
framework/Pear/lib/Horde/Pear/Remote.php | 2 +-
framework/Pear/lib/Horde/Pear/Rest.php | 2 +-
framework/Pear/lib/Horde/Pear/Rest/Dependencies.php | 2 +-
framework/Pear/lib/Horde/Pear/Rest/Package.php | 2 +-
framework/Pear/lib/Horde/Pear/Rest/PackageList.php | 2 +-
framework/Pear/lib/Horde/Pear/Rest/Release.php | 2 +-
framework/Pear/lib/Horde/Pear/Rest/Releases.php | 2 +-
framework/Pear/test/Horde/Pear/Server/RegistryTest.php | 2 +-
framework/Pear/test/Horde/Pear/Server/RemoteTest.php | 2 +-
framework/Pear/test/Horde/Pear/Server/RestTest.php | 2 +-
framework/Pear/test/Horde/Pear/TestCase.php | 2 +-
.../Horde/Pear/Unit/Package/Contents/Ignore/CompositeTest.php | 2 +-
.../Pear/test/Horde/Pear/Unit/Package/Contents/Ignore/DotTest.php | 2 +-
.../Pear/test/Horde/Pear/Unit/Package/Contents/Ignore/GitTest.php | 2 +-
.../test/Horde/Pear/Unit/Package/Contents/Ignore/HiddenTest.php | 2 +-
.../test/Horde/Pear/Unit/Package/Contents/Ignore/PatternsTest.php | 2 +-
.../test/Horde/Pear/Unit/Package/Contents/Ignore/SymlinkTest.php | 2 +-
.../Pear/Unit/Package/Contents/InstallAs/HordeApplicationTest.php | 2 +-
.../test/Horde/Pear/Unit/Package/Contents/InstallAs/HordeTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Package/Contents/ListTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Package/DependenciesTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Package/Type/HordeTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Package/Xml/DirectoryTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Package/XmlTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/RegistryTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/RemoteTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Rest/AccessTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Rest/DependenciesTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Rest/PackageListTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Rest/PackageTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Rest/ReleaseTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/Rest/ReleasesTest.php | 2 +-
framework/Pear/test/Horde/Pear/Unit/RestTest.php | 2 +-
framework/Perms/lib/Horde/Perms.php | 2 +-
framework/Perms/lib/Horde/Perms/Base.php | 2 +-
framework/Perms/lib/Horde/Perms/Exception.php | 2 +-
framework/Perms/lib/Horde/Perms/Null.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Acl.php | 2 +-
.../Perms/lib/Horde/Perms/Permission/Kolab/Acl/Anonymous.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Acl/Anyone.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Acl/Group.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Acl/User.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/AclIterator.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Element.php | 2 +-
.../Perms/lib/Horde/Perms/Permission/Kolab/Element/Default.php | 2 +-
.../Perms/lib/Horde/Perms/Permission/Kolab/Element/Group.php | 2 +-
.../Perms/lib/Horde/Perms/Permission/Kolab/Element/Guest.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Element/User.php | 2 +-
.../Perms/lib/Horde/Perms/Permission/Kolab/ElementIterator.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Storage.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Sql.php | 2 +-
framework/Perms/lib/Horde/Perms/Sql.php | 2 +-
framework/Perms/lib/Horde/Perms/Translation.php | 2 +-
framework/Perms/locale/ar/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/bg/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/bs/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/ca/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/cs/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/da/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/de/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/el/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/en/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/es/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/et/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/eu/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/fa/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/fi/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/fr/LC_MESSAGES/Horde_Perms.mo | Bin 626 -> 873 bytes
framework/Perms/locale/fr/LC_MESSAGES/Horde_Perms.po | 39 +-
framework/Perms/locale/gl/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/he/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/hr/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/hu/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/id/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/is/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/it/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/ja/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/km/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/ko/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/lt/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/lv/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/mk/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/nb/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/nl/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/nn/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/pl/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/pt/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/pt_BR/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/ro/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/ru/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/sk/LC_MESSAGES/Horde_Perms.mo | Bin 613 -> 882 bytes
framework/Perms/locale/sk/LC_MESSAGES/Horde_Perms.po | 18 +-
framework/Perms/locale/sl/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/sv/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/tr/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/uk/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/zh_CN/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/locale/zh_TW/LC_MESSAGES/Horde_Perms.po | 2 +-
framework/Perms/package.xml | 24 +-
framework/Perms/test/Horde/Perms/KolabTest.php | 2 +-
framework/Prefs/bin/horde-prefs | 2 +-
framework/Prefs/lib/Horde/Prefs.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Cache/Base.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Cache/Null.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Cache/Session.php | 2 +-
framework/Prefs/lib/Horde/Prefs/CategoryManager.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Exception.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Identity.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Scope.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Storage/Base.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Storage/File.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Storage/Imsp.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Storage/KolabImap.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Storage/Ldap.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Storage/Null.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Storage/Sql.php | 2 +-
framework/Prefs/lib/Horde/Prefs/Translation.php | 2 +-
framework/Prefs/locale/ar/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/bg/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/bs/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/ca/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/cs/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/da/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/de/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/el/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/en/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/es/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/et/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/eu/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/fa/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/fi/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/fr/LC_MESSAGES/Horde_Prefs.mo | Bin 899 -> 1135 bytes
framework/Prefs/locale/fr/LC_MESSAGES/Horde_Prefs.po | 47 +-
framework/Prefs/locale/gl/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/he/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/hr/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/hu/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/id/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/is/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/it/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/ja/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/km/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/ko/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/lt/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/lv/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/mk/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/nb/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/nl/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/nn/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/pl/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/pt/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/pt_BR/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/ro/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/ru/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/sk/LC_MESSAGES/Horde_Prefs.mo | Bin 930 -> 1071 bytes
framework/Prefs/locale/sk/LC_MESSAGES/Horde_Prefs.po | 23 +-
framework/Prefs/locale/sl/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/sv/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/tr/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/uk/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/zh_CN/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/locale/zh_TW/LC_MESSAGES/Horde_Prefs.po | 2 +-
framework/Prefs/package.xml | 27 +-
framework/Prefs/test/Horde/Prefs/Autoload.php | 2 +-
framework/Prefs/test/Horde/Prefs/Stub/Storage.php | 2 +-
framework/Prefs/test/Horde/Prefs/Unit/Storage/FileTest.php | 2 +-
.../Prefs/test/Horde/Prefs/Unit/Storage/KolabImapLogTest.php | 2 +-
framework/Prefs/test/Horde/Prefs/Unit/Storage/KolabImapTest.php | 2 +-
framework/Prefs/test/Horde/Prefs/Unit/Storage/Sql/Base.php | 2 +-
framework/Prefs/test/Horde/Prefs/Unit/Storage/Sql/MysqlTest.php | 2 +-
framework/Prefs/test/Horde/Prefs/Unit/Storage/Sql/MysqliTest.php | 2 +-
.../Prefs/test/Horde/Prefs/Unit/Storage/Sql/Pdo/MysqlTest.php | 2 +-
.../Prefs/test/Horde/Prefs/Unit/Storage/Sql/Pdo/PgsqlTest.php | 2 +-
.../Prefs/test/Horde/Prefs/Unit/Storage/Sql/Pdo/SqliteTest.php | 2 +-
framework/PubSub/doc/Horde/PubSub/COPYING | 2 +-
framework/PubSub/lib/Horde/PubSub.php | 2 +-
framework/PubSub/lib/Horde/PubSub/Handle.php | 2 +-
framework/PubSub/lib/Horde/PubSub/Provider.php | 2 +-
framework/Push/lib/Horde/Push.php | 2 +-
framework/Push/lib/Horde/Push/Cli.php | 2 +-
framework/Push/lib/Horde/Push/Exception.php | 2 +-
framework/Push/lib/Horde/Push/Factory/Push.php | 2 +-
framework/Push/lib/Horde/Push/Factory/Recipients.php | 2 +-
framework/Push/lib/Horde/Push/Recipient.php | 2 +-
framework/Push/lib/Horde/Push/Recipient/Base.php | 2 +-
framework/Push/lib/Horde/Push/Recipient/Blogger.php | 2 +-
framework/Push/lib/Horde/Push/Recipient/Facebook.php | 2 +-
framework/Push/lib/Horde/Push/Recipient/Mail.php | 2 +-
framework/Push/lib/Horde/Push/Recipient/Mock.php | 2 +-
framework/Push/lib/Horde/Push/Recipient/Twitter.php | 2 +-
framework/Push/lib/Horde/Push/Translation.php | 2 +-
framework/Push/locale/de/LC_MESSAGES/Horde_Push.po | 2 +-
framework/Push/locale/es/LC_MESSAGES/Horde_Push.po | 2 +-
framework/Push/locale/eu/LC_MESSAGES/Horde_Push.po | 2 +-
framework/Push/locale/fi/LC_MESSAGES/Horde_Push.po | 2 +-
framework/Push/locale/fr/LC_MESSAGES/Horde_Push.mo | Bin 0 -> 1191 bytes
framework/Push/locale/fr/LC_MESSAGES/Horde_Push.po | 45 +
framework/Push/locale/ja/LC_MESSAGES/Horde_Push.po | 2 +-
framework/Push/locale/lv/LC_MESSAGES/Horde_Push.po | 2 +-
framework/Push/package.xml | 2 +
framework/Push/test/Horde/Push/Autoload.php | 2 +-
framework/Push/test/Horde/Push/TestCase.php | 2 +-
framework/Push/test/Horde/Push/Unit/Push/CliTest.php | 2 +-
framework/Push/test/Horde/Push/Unit/Push/Factory/PushTest.php | 2 +-
.../Push/test/Horde/Push/Unit/Push/Factory/RecipientTest.php | 2 +-
.../Push/test/Horde/Push/Unit/Push/Recipient/BloggerTest.php | 2 +-
framework/Push/test/Horde/Push/Unit/Push/Recipient/MailTest.php | 2 +-
.../Push/test/Horde/Push/Unit/Push/Recipient/TwitterTest.php | 2 +-
framework/Push/test/Horde/Push/Unit/PushTest.php | 2 +-
framework/Rampage/scripts/Horde/Rampage/rampage.php | 2 +-
framework/Rdo/lib/Horde/Rdo.php | 2 +-
framework/Rdo/test/Horde/Rdo/Autoload.php | 2 +-
framework/Rdo/test/Horde/Rdo/Base.php | 2 +-
framework/Rdo/test/Horde/Rdo/Sql/Base.php | 2 +-
framework/Rdo/test/Horde/Rdo/Sql/Pdo/SqliteTest.php | 2 +-
framework/Rdo/test/Horde/Rdo/fixtures/unit_tests.sql | 2 +-
framework/Reflection/lib/Horde/Reflection.php | 2 +-
framework/Reflection/lib/Horde/Reflection/Cli.php | 2 +-
framework/Reflection/lib/Horde/Reflection/Html.php | 2 +-
framework/Reflection/lib/Horde/Reflection/Wiki.php | 2 +-
framework/Release/lib/Horde/Release.php | 4 +-
framework/Release/lib/Horde/Release/Freecode.php | 2 +-
framework/Release/lib/Horde/Release/MailingList.php | 2 +-
framework/Release/lib/Horde/Release/Sentinel.php | 2 +-
framework/Release/lib/Horde/Release/Whups.php | 2 +-
framework/Release/test/Horde/Release/TestCase.php | 2 +-
.../Release/test/Horde/Release/Unit/Release/SentinelTest.php | 2 +-
framework/Release/test/Horde/Release/Unit/Release/WhupsTest.php | 2 +-
framework/Release/test/Horde/Release/Unit/ReleaseTest.php | 2 +-
framework/Role/Horde.php | 2 +-
framework/Role/Horde/Role.php | 2 +-
framework/Routes/doc/Horde/Routes/COPYING | 2 +-
framework/Routes/lib/Horde/Routes/Mapper.php | 2 +-
framework/Routes/lib/Horde/Routes/Matcher.php | 2 +-
framework/Routes/package.xml | 21 +-
framework/Rpc/lib/Horde/Rpc.php | 2 +-
framework/Rpc/lib/Horde/Rpc/ActiveSync.php | 25 +-
framework/Rpc/lib/Horde/Rpc/Exception.php | 2 +-
framework/Rpc/lib/Horde/Rpc/Jsonrpc.php | 2 +-
framework/Rpc/lib/Horde/Rpc/Soap.php | 2 +-
framework/Rpc/lib/Horde/Rpc/Syncml.php | 2 +-
framework/Rpc/lib/Horde/Rpc/Syncml/Wbxml.php | 2 +-
framework/Rpc/lib/Horde/Rpc/Translation.php | 2 +-
framework/Rpc/lib/Horde/Rpc/Webdav.php | 4 +-
framework/Rpc/lib/Horde/Rpc/Webdav2.php | 2 +-
framework/Rpc/lib/Horde/Rpc/Xmlrpc.php | 2 +-
framework/Rpc/locale/ar/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/bg/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/bs/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/ca/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/cs/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/da/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/de/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/el/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/en/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/es/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/et/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/eu/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/fa/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/fi/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/fr/LC_MESSAGES/Horde_Rpc.mo | Bin 1209 -> 1577 bytes
framework/Rpc/locale/fr/LC_MESSAGES/Horde_Rpc.po | 40 +-
framework/Rpc/locale/gl/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/he/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/hr/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/hu/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/id/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/is/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/it/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/ja/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/km/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/ko/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/lt/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/lv/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/mk/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/nb/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/nl/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/nn/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/pl/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/pt/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/pt_BR/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/ro/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/ru/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/sk/LC_MESSAGES/Horde_Rpc.mo | Bin 1242 -> 1534 bytes
framework/Rpc/locale/sk/LC_MESSAGES/Horde_Rpc.po | 32 +-
framework/Rpc/locale/sl/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/sv/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/tr/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/uk/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/zh_CN/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/locale/zh_TW/LC_MESSAGES/Horde_Rpc.po | 2 +-
framework/Rpc/package.xml | 23 +-
framework/Sabre/lib/Sabre/CalDAV/Backend/Horde.php | 2 +-
framework/Sabre/lib/Sabre/DAV/Auth/Backend/Horde.php | 2 +-
framework/Scribe/doc/Horde/Scribe/COPYING | 2 +-
framework/Secret/lib/Horde/Secret.php | 2 +-
framework/Secret/lib/Horde/Secret/Exception.php | 2 +-
framework/Secret/test/Horde/Secret/Unit/SecretTest.php | 2 +-
framework/Serialize/lib/Horde/Serialize.php | 2 +-
framework/Serialize/lib/Horde/Serialize/Exception.php | 2 +-
framework/Service_Facebook/doc/Horde/Service/Facebook/COPYING | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Auth.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Base.php | 2 +-
.../Service_Facebook/lib/Horde/Service/Facebook/ErrorCodes.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Events.php | 2 +-
.../Service_Facebook/lib/Horde/Service/Facebook/Exception.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Fql.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Friends.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Groups.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Links.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Notes.php | 2 +-
.../Service_Facebook/lib/Horde/Service/Facebook/Notifications.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Photos.php | 2 +-
.../Service_Facebook/lib/Horde/Service/Facebook/Request/Base.php | 2 +-
.../Service_Facebook/lib/Horde/Service/Facebook/Request/Graph.php | 2 +-
.../Service_Facebook/lib/Horde/Service/Facebook/Request/Rest.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Streams.php | 2 +-
.../Service_Facebook/lib/Horde/Service/Facebook/Translation.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Users.php | 2 +-
framework/Service_Facebook/lib/Horde/Service/Facebook/Videos.php | 2 +-
.../locale/ar/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/bg/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/bs/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/ca/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/cs/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/da/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/de/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/el/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/en/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/es/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/et/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/eu/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/fa/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/fi/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/fr/LC_MESSAGES/Horde_Service_Facebook.mo | Bin 433 -> 731 bytes
.../locale/fr/LC_MESSAGES/Horde_Service_Facebook.po | 30 +-
.../locale/gl/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/he/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/hr/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/hu/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/id/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/is/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/it/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/ja/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/km/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/ko/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/lt/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/lv/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/mk/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/nb/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/nl/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/nn/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/pl/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/pt/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/pt_BR/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/ro/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/ru/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/sk/LC_MESSAGES/Horde_Service_Facebook.mo | Bin 670 -> 683 bytes
.../locale/sk/LC_MESSAGES/Horde_Service_Facebook.po | 16 +-
.../locale/sl/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/sv/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/tr/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/uk/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/zh_CN/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
.../locale/zh_TW/LC_MESSAGES/Horde_Service_Facebook.po | 2 +-
framework/Service_Facebook/package.xml | 23 +-
framework/Service_Gravatar/lib/Horde/Service/Gravatar.php | 2 +-
.../Service_Gravatar/test/Horde/Service/Gravatar/GravatarTest.php | 2 +-
.../Service_Gravatar/test/Horde/Service/Gravatar/ServerTest.php | 2 +-
framework/Service_Scribd/doc/Horde/Service/Scribd/COPYING | 2 +-
framework/Service_Scribd/lib/Horde/Service/Scribd.php | 2 +-
framework/Service_Scribd/lib/Horde/Service/Scribd/Exception.php | 2 +-
framework/Service_Scribd/lib/Horde/Service/Scribd/Request.php | 2 +-
framework/Service_Scribd/lib/Horde/Service/Scribd/Response.php | 2 +-
framework/Service_Scribd/lib/Horde/Service/Scribd/Result.php | 2 +-
framework/Service_Scribd/lib/Horde/Service/Scribd/ResultSet.php | 2 +-
framework/Service_Scribd/lib/Horde/Service/Scribd/Translation.php | 2 +-
.../Service_Scribd/locale/ar/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/bg/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/bs/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/ca/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/cs/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/da/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/de/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/el/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/en/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/es/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/et/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/eu/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/fa/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/fi/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/fr/LC_MESSAGES/Horde_Service_Scribd.mo | Bin 431 -> 574 bytes
.../Service_Scribd/locale/fr/LC_MESSAGES/Horde_Service_Scribd.po | 26 +-
.../Service_Scribd/locale/gl/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/he/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/hr/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/hu/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/id/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/is/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/it/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/ja/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/km/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/ko/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/lt/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/lv/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/mk/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/nb/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/nl/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/nn/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/pl/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/pt/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../locale/pt_BR/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/ro/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/ru/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/sk/LC_MESSAGES/Horde_Service_Scribd.mo | Bin 459 -> 545 bytes
.../Service_Scribd/locale/sk/LC_MESSAGES/Horde_Service_Scribd.po | 14 +-
.../Service_Scribd/locale/sl/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/sv/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/tr/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../Service_Scribd/locale/uk/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../locale/zh_CN/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
.../locale/zh_TW/LC_MESSAGES/Horde_Service_Scribd.po | 2 +-
framework/Service_Scribd/package.xml | 1 +
framework/Service_Twitter/doc/Horde/Service/Twitter/COPYING | 2 +-
.../Service_Twitter/doc/Horde/Service/Twitter/twitter_browser.php | 2 +-
.../Service_Twitter/doc/Horde/Service/Twitter/twitter_cli.php | 2 +-
framework/Service_Twitter/lib/Horde/Service/Twitter.php | 2 +-
framework/Service_Twitter/lib/Horde/Service/Twitter/Account.php | 2 +-
framework/Service_Twitter/lib/Horde/Service/Twitter/Auth.php | 2 +-
.../Service_Twitter/lib/Horde/Service/Twitter/Auth/Oauth.php | 2 +-
framework/Service_Twitter/lib/Horde/Service/Twitter/Exception.php | 2 +-
framework/Service_Twitter/lib/Horde/Service/Twitter/Request.php | 2 +-
.../Service_Twitter/lib/Horde/Service/Twitter/Request/Oauth.php | 2 +-
framework/Service_Twitter/lib/Horde/Service/Twitter/Statuses.php | 2 +-
.../Service_UrlShortener/lib/Horde/Service/UrlShortener/Base.php | 2 +-
.../lib/Horde/Service/UrlShortener/Exception.php | 2 +-
.../lib/Horde/Service/UrlShortener/TinyUrl.php | 2 +-
framework/Service_Vimeo/doc/Horde/Service/Vimeo/COPYING | 2 +-
framework/Service_Vimeo/lib/Horde/Service/Vimeo.php | 2 +-
framework/Service_Vimeo/lib/Horde/Service/Vimeo/Advanced.php | 2 +-
framework/Service_Vimeo/lib/Horde/Service/Vimeo/Exception.php | 2 +-
framework/Service_Vimeo/lib/Horde/Service/Vimeo/Simple.php | 2 +-
framework/Service_Weather/doc/Horde/Service/Weather/COPYING | 4 +-
framework/Service_Weather/lib/Horde/Service/Weather.php | 2 +-
framework/Service_Weather/lib/Horde/Service/Weather/Base.php | 2 +-
.../Service_Weather/lib/Horde/Service/Weather/Current/Base.php | 2 +-
.../lib/Horde/Service/Weather/Current/WeatherUnderground.php | 2 +-
.../Service_Weather/lib/Horde/Service/Weather/Current/Wwo.php | 2 +-
framework/Service_Weather/lib/Horde/Service/Weather/Exception.php | 2 +-
.../lib/Horde/Service/Weather/Exception/InvalidProperty.php | 2 +-
.../Service_Weather/lib/Horde/Service/Weather/Forecast/Base.php | 2 +-
.../lib/Horde/Service/Weather/Forecast/WeatherUnderground.php | 2 +-
.../Service_Weather/lib/Horde/Service/Weather/Forecast/Wwo.php | 2 +-
.../Service_Weather/lib/Horde/Service/Weather/Period/Base.php | 2 +-
.../lib/Horde/Service/Weather/Period/WeatherUnderground.php | 2 +-
.../Service_Weather/lib/Horde/Service/Weather/Period/Wwo.php | 2 +-
framework/Service_Weather/lib/Horde/Service/Weather/Station.php | 2 +-
.../Service_Weather/lib/Horde/Service/Weather/Translation.php | 2 +-
.../lib/Horde/Service/Weather/WeatherUnderground.php | 2 +-
framework/Service_Weather/lib/Horde/Service/Weather/Wwo.php | 2 +-
.../locale/de/LC_MESSAGES/Horde_Service_Weather.po | 2 +-
.../locale/en_US/LC_MESSAGES/Horde_Service_Weather.po | 2 +-
.../locale/es/LC_MESSAGES/Horde_Service_Weather.po | 2 +-
.../locale/eu/LC_MESSAGES/Horde_Service_Weather.po | 2 +-
.../locale/fi/LC_MESSAGES/Horde_Service_Weather.po | 2 +-
.../locale/fr/LC_MESSAGES/Horde_Service_Weather.mo | Bin 0 -> 11946 bytes
.../locale/fr/LC_MESSAGES/Horde_Service_Weather.po | 870 +
.../locale/ja/LC_MESSAGES/Horde_Service_Weather.po | 2 +-
.../locale/lv/LC_MESSAGES/Horde_Service_Weather.po | 2 +-
.../locale/nl/LC_MESSAGES/Horde_Service_Weather.po | 2 +-
framework/Service_Weather/package.xml | 31 +-
framework/SessionHandler/lib/Horde/SessionHandler.php | 2 +-
framework/SessionHandler/lib/Horde/SessionHandler/Exception.php | 2 +-
framework/SessionHandler/lib/Horde/SessionHandler/Storage.php | 2 +-
.../SessionHandler/lib/Horde/SessionHandler/Storage/Builtin.php | 2 +-
.../SessionHandler/lib/Horde/SessionHandler/Storage/External.php | 2 +-
.../SessionHandler/lib/Horde/SessionHandler/Storage/File.php | 6 +-
.../SessionHandler/lib/Horde/SessionHandler/Storage/Memcache.php | 2 +-
framework/SessionHandler/lib/Horde/SessionHandler/Storage/Sql.php | 2 +-
.../SessionHandler/lib/Horde/SessionHandler/Storage/Stack.php | 2 +-
.../test/Horde/SessionHandler/Storage/BuiltinTest.php | 2 +-
.../test/Horde/SessionHandler/Storage/ExternalTest.php | 2 +-
.../SessionHandler/test/Horde/SessionHandler/Storage/FileTest.php | 2 +-
.../test/Horde/SessionHandler/Storage/MemcacheTest.php | 2 +-
.../SessionHandler/test/Horde/SessionHandler/Storage/Sql/Base.php | 2 +-
.../test/Horde/SessionHandler/Storage/Sql/MysqlTest.php | 2 +-
.../test/Horde/SessionHandler/Storage/Sql/MysqliTest.php | 2 +-
.../test/Horde/SessionHandler/Storage/Sql/Pdo/MysqlTest.php | 2 +-
.../test/Horde/SessionHandler/Storage/Sql/Pdo/PgsqlTest.php | 2 +-
.../test/Horde/SessionHandler/Storage/Sql/Pdo/SqliteTest.php | 2 +-
.../test/Horde/SessionHandler/Storage/StackTest.php | 2 +-
framework/Share/lib/Horde/Share/Base.php | 2 +-
framework/Share/lib/Horde/Share/Kolab.php | 2 +-
framework/Share/lib/Horde/Share/Object.php | 2 +-
framework/Share/lib/Horde/Share/Object/Kolab.php | 2 +-
framework/Share/lib/Horde/Share/Sql.php | 2 +-
framework/Share/lib/Horde/Share/Sqlng.php | 2 +-
framework/Share/lib/Horde/Share/Translation.php | 2 +-
framework/Share/locale/ar/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/bg/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/bs/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/ca/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/cs/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/da/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/de/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/el/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/en/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/es/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/et/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/eu/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/fa/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/fi/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/fr/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/gl/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/he/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/hr/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/hu/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/id/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/is/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/it/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/ja/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/km/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/ko/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/lt/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/lv/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/mk/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/nb/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/nl/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/nn/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/pl/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/pt/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/pt_BR/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/ro/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/ru/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/sk/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/sl/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/sv/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/tr/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/uk/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/zh_CN/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/locale/zh_TW/LC_MESSAGES/Horde_Share.po | 2 +-
framework/Share/package.xml | 23 +-
framework/Share/test/Horde/Share/Autoload.php | 2 +-
framework/Share/test/Horde/Share/Base.php | 4 +-
framework/Share/test/Horde/Share/Kolab/MockTest.php | 6 +-
framework/Share/test/Horde/Share/Kolab/UnitTest.php | 2 +-
framework/Share/test/Horde/Share/Sql/Base.php | 4 +-
framework/Share/test/Horde/Share/Sql/MysqlTest.php | 2 +-
framework/Share/test/Horde/Share/Sql/MysqliTest.php | 2 +-
framework/Share/test/Horde/Share/Sql/Pdo/MysqlTest.php | 2 +-
framework/Share/test/Horde/Share/Sql/Pdo/PgsqlTest.php | 2 +-
framework/Share/test/Horde/Share/Sql/Pdo/SqliteTest.php | 2 +-
framework/Share/test/Horde/Share/Sqlng/Base.php | 4 +-
framework/Share/test/Horde/Share/Sqlng/MysqlTest.php | 2 +-
framework/Share/test/Horde/Share/Sqlng/MysqliTest.php | 2 +-
framework/Share/test/Horde/Share/Sqlng/Pdo/MysqlTest.php | 2 +-
framework/Share/test/Horde/Share/Sqlng/Pdo/PgsqlTest.php | 2 +-
framework/Share/test/Horde/Share/Sqlng/Pdo/SqliteTest.php | 2 +-
framework/SpellChecker/lib/Horde/SpellChecker.php | 6 +-
framework/SpellChecker/lib/Horde/SpellChecker/Aspell.php | 6 +-
framework/SpellChecker/lib/Horde/SpellChecker/Exception.php | 6 +-
framework/SpellChecker/package.xml | 27 +-
framework/SpellChecker/test/Horde/SpellChecker/AspellTest.php | 2 +-
framework/Stream/lib/Horde/Stream.php | 2 +-
framework/Stream/lib/Horde/Stream/Exception.php | 2 +-
framework/Stream/lib/Horde/Stream/Existing.php | 2 +-
framework/Stream/lib/Horde/Stream/Temp.php | 2 +-
framework/Stream_Filter/lib/Horde/Stream/Filter/Bin2hex.php | 2 +-
framework/Stream_Filter/lib/Horde/Stream/Filter/Crc32.php | 2 +-
framework/Stream_Filter/lib/Horde/Stream/Filter/Eol.php | 2 +-
.../Stream_Filter/lib/Horde/Stream/Filter/Htmlspecialchars.php | 2 +-
framework/Stream_Filter/lib/Horde/Stream/Filter/Null.php | 2 +-
framework/Stream_Wrapper/lib/Horde/Stream/Wrapper/Combine.php | 2 +-
.../Stream_Wrapper/lib/Horde/Stream/Wrapper/CombineStream.php | 2 +-
framework/Stream_Wrapper/lib/Horde/Stream/Wrapper/String.php | 2 +-
.../Stream_Wrapper/lib/Horde/Stream/Wrapper/StringStream.php | 2 +-
framework/Support/doc/Horde/Support/COPYING | 2 +-
framework/Support/lib/Horde/Support/Array.php | 2 +-
framework/Support/lib/Horde/Support/Backtrace.php | 2 +-
framework/Support/lib/Horde/Support/CombineStream.php | 2 +-
framework/Support/lib/Horde/Support/ConsistentHash.php | 2 +-
framework/Support/lib/Horde/Support/Guid.php | 2 +-
framework/Support/lib/Horde/Support/Inflector.php | 2 +-
framework/Support/lib/Horde/Support/Memory.php | 2 +-
framework/Support/lib/Horde/Support/Numerizer.php | 2 +-
framework/Support/lib/Horde/Support/Numerizer/Locale/Base.php | 2 +-
framework/Support/lib/Horde/Support/Numerizer/Locale/De.php | 2 +-
framework/Support/lib/Horde/Support/Numerizer/Locale/Pt.php | 2 +-
framework/Support/lib/Horde/Support/ObjectStub.php | 2 +-
framework/Support/lib/Horde/Support/Randomid.php | 6 +-
framework/Support/lib/Horde/Support/Stack.php | 2 +-
framework/Support/lib/Horde/Support/StringStream.php | 2 +-
framework/Support/lib/Horde/Support/Stub.php | 2 +-
framework/Support/lib/Horde/Support/Timer.php | 2 +-
framework/Support/lib/Horde/Support/Uuid.php | 2 +-
framework/Support/package.xml | 4 +-
framework/Support/test/Horde/Support/ArrayTest.php | 2 +-
framework/Support/test/Horde/Support/BacktraceTest.php | 2 +-
framework/Support/test/Horde/Support/CombineStreamTest.php | 2 +-
framework/Support/test/Horde/Support/ConsistentHashTest.php | 2 +-
framework/Support/test/Horde/Support/GuidTest.php | 2 +-
framework/Support/test/Horde/Support/InflectorTest.php | 2 +-
framework/Support/test/Horde/Support/MemoryTest.php | 2 +-
framework/Support/test/Horde/Support/ObjectStubTest.php | 2 +-
framework/Support/test/Horde/Support/RandomidTest.php | 2 +-
framework/Support/test/Horde/Support/StackTest.php | 2 +-
framework/Support/test/Horde/Support/StringStreamTest.php | 2 +-
framework/Support/test/Horde/Support/StubTest.php | 2 +-
framework/Support/test/Horde/Support/TimerTest.php | 2 +-
framework/Support/test/Horde/Support/UuidTest.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Backend.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Backend/Horde.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Backend/Sql.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command/Alert.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command/Final.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command/Get.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command/Map.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command/Put.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command/Replace.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command/Results.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command/Status.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command/Sync.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Command/SyncHdr.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/ContentHandler.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/DataStore.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Device.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Device/Nokia.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Device/P800.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Device/Sync4JMozilla.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Device/Sync4j.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Device/Synthesis.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/DeviceInfo.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Property.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/PropertyParameter.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/State.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Sync.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/SyncElement.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/Translation.php | 2 +-
framework/SyncMl/lib/Horde/SyncMl/XmlOutput.php | 2 +-
framework/SyncMl/locale/ar/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/bg/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/bs/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/ca/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/cs/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/da/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/de/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/el/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/en/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/es/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/et/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/eu/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/fa/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/fi/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/fr/LC_MESSAGES/Horde_SyncMl.mo | Bin 423 -> 596 bytes
framework/SyncMl/locale/fr/LC_MESSAGES/Horde_SyncMl.po | 22 +-
framework/SyncMl/locale/gl/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/he/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/hr/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/hu/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/id/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/is/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/it/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/ja/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/km/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/ko/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/lt/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/lv/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/mk/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/nb/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/nl/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/nn/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/pl/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/pt/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/pt_BR/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/ro/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/ru/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/sk/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/sl/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/sv/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/tr/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/uk/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/zh_CN/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/locale/zh_TW/LC_MESSAGES/Horde_SyncMl.po | 2 +-
framework/SyncMl/package.xml | 23 +-
framework/SyncMl/test/Horde/SyncMl/testpacket.php | 2 +-
framework/SyncMl/test/Horde/SyncMl/testsync.php | 2 +-
framework/Template/lib/Horde/Template.php | 2 +-
framework/Test/lib/Horde/Test/AllTests.php | 2 +-
framework/Test/lib/Horde/Test/Autoload.php | 2 +-
framework/Test/lib/Horde/Test/Bootstrap.php | 2 +-
framework/Test/lib/Horde/Test/Case.php | 2 +-
framework/Test/lib/Horde/Test/Exception.php | 2 +-
framework/Test/lib/Horde/Test/Factory/Alarm.php | 2 +-
framework/Test/lib/Horde/Test/Factory/Cache.php | 2 +-
framework/Test/lib/Horde/Test/Factory/Db.php | 2 +-
framework/Test/lib/Horde/Test/Factory/Group.php | 2 +-
framework/Test/lib/Horde/Test/Factory/History.php | 2 +-
framework/Test/lib/Horde/Test/Factory/KolabStorage.php | 2 +-
framework/Test/lib/Horde/Test/Factory/Perms.php | 2 +-
framework/Test/lib/Horde/Test/Factory/Prefs.php | 2 +-
framework/Test/lib/Horde/Test/Factory/Registry.php | 2 +-
framework/Test/lib/Horde/Test/Factory/Session.php | 2 +-
framework/Test/lib/Horde/Test/Factory/Share.php | 2 +-
framework/Test/lib/Horde/Test/Functional.php | 2 +-
framework/Test/lib/Horde/Test/Log.php | 2 +-
framework/Test/lib/Horde/Test/Setup.php | 2 +-
framework/Test/lib/Horde/Test/Stub/Cli.php | 2 +-
framework/Test/lib/Horde/Test/Stub/Factory.php | 2 +-
framework/Test/lib/Horde/Test/Stub/Parser.php | 2 +-
framework/Test/lib/Horde/Test/Stub/Registry.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Engine/Native.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Engine/Shell.php | 24 +-
framework/Text_Diff/lib/Horde/Text/Diff/Engine/String.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Engine/Xdiff.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Exception.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Mapped.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Op/Add.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Op/Base.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Op/Change.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Op/Copy.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Op/Delete.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Renderer.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Renderer/Context.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Renderer/Inline.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/Renderer/Unified.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/ThreeWay.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/ThreeWay/BlockBuilder.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/ThreeWay/Op/Base.php | 2 +-
framework/Text_Diff/lib/Horde/Text/Diff/ThreeWay/Op/Copy.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Base.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Bbcode.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Cleanascii.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Cleanhtml.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Dimsignature.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Emails.php | 9 +-
framework/Text_Filter/lib/Horde/Text/Filter/Emoticons.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Environment.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Exception.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Highlightquotes.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Html2text.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/JavascriptMinify.php | 2 +-
.../Text_Filter/lib/Horde/Text/Filter/JavascriptMinify/JsMin.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Linkurls.php | 9 +-
framework/Text_Filter/lib/Horde/Text/Filter/Simplemarkup.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Space2html.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Tabs2spaces.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Text2html.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Translation.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Words.php | 2 +-
framework/Text_Filter/lib/Horde/Text/Filter/Xss.php | 2 +-
framework/Text_Filter/locale/ar/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/bg/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/bs/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/ca/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/cs/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/da/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/de/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/el/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/en/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/es/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/et/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/eu/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/fa/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/fi/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/fr/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/gl/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/he/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/hr/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/hu/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/id/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/is/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/it/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/ja/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/km/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/ko/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/lt/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/lv/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/mk/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/nb/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/nl/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/nn/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/pl/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/pt/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
.../Text_Filter/locale/pt_BR/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/ro/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/ru/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/sk/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/sl/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/sv/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/tr/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/locale/uk/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
.../Text_Filter/locale/zh_CN/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
.../Text_Filter/locale/zh_TW/LC_MESSAGES/Horde_Text_Filter.po | 2 +-
framework/Text_Filter/package.xml | 26 +-
framework/Text_Filter_Csstidy/lib/Horde/Text/Filter/Csstidy.php | 2 +-
framework/Text_Flowed/lib/Horde/Text/Flowed.php | 2 +-
framework/Thrift/doc/Horde/Thrift/COPYING | 2 +-
framework/Timezone/doc/Horde/Timezone/COPYING | 458 +
framework/Timezone/lib/Horde/Timezone.php | 2 +-
framework/Timezone/lib/Horde/Timezone/Exception.php | 2 +-
framework/Timezone/lib/Horde/Timezone/Rule.php | 2 +-
framework/Timezone/lib/Horde/Timezone/Zone.php | 2 +-
framework/Timezone/package.xml | 18 +-
framework/Token/lib/Horde/Token.php | 2 +-
framework/Token/lib/Horde/Token/Base.php | 2 +-
framework/Token/lib/Horde/Token/Exception.php | 2 +-
framework/Token/lib/Horde/Token/Exception/Expired.php | 2 +-
framework/Token/lib/Horde/Token/Exception/Invalid.php | 2 +-
framework/Token/lib/Horde/Token/Exception/Used.php | 2 +-
framework/Token/lib/Horde/Token/File.php | 2 +-
framework/Token/lib/Horde/Token/Null.php | 2 +-
framework/Token/lib/Horde/Token/Sql.php | 2 +-
framework/Token/lib/Horde/Token/Translation.php | 2 +-
framework/Token/locale/ar/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/bg/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/bs/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/ca/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/cs/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/da/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/de/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/el/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/en/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/es/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/et/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/eu/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/fa/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/fi/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/fr/LC_MESSAGES/Horde_Token.mo | Bin 422 -> 1316 bytes
framework/Token/locale/fr/LC_MESSAGES/Horde_Token.po | 38 +-
framework/Token/locale/gl/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/he/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/hr/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/hu/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/id/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/is/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/it/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/ja/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/km/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/ko/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/lt/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/lv/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/mk/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/nb/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/nl/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/nn/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/pl/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/pt/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/pt_BR/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/ro/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/ru/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/sk/LC_MESSAGES/Horde_Token.mo | Bin 967 -> 1314 bytes
framework/Token/locale/sk/LC_MESSAGES/Horde_Token.po | 26 +-
framework/Token/locale/sl/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/sv/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/tr/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/uk/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/zh_CN/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/locale/zh_TW/LC_MESSAGES/Horde_Token.po | 2 +-
framework/Token/package.xml | 23 +-
framework/Token/test/Horde/Token/Autoload.php | 2 +-
framework/Token/test/Horde/Token/BackendTestCase.php | 2 +-
framework/Token/test/Horde/Token/Unit/FileTest.php | 2 +-
framework/Token/test/Horde/Token/Unit/SqlTest.php | 2 +-
framework/Translation/lib/Horde/Translation.php | 2 +-
framework/Translation/lib/Horde/Translation/Exception.php | 2 +-
framework/Translation/lib/Horde/Translation/Handler.php | 2 +-
framework/Translation/lib/Horde/Translation/Handler/Gettext.php | 2 +-
.../test/Horde/Translation/locale/de/LC_MESSAGES/Horde_Other.po | 2 +-
.../Horde/Translation/locale/de/LC_MESSAGES/Horde_Translation.po | 2 +-
framework/Tree/lib/Horde/Tree.php | 2 +-
framework/Tree/lib/Horde/Tree/Exception.php | 2 +-
framework/Tree/lib/Horde/Tree/Renderer.php | 2 +-
framework/Tree/lib/Horde/Tree/Renderer/Base.php | 2 +-
framework/Tree/lib/Horde/Tree/Renderer/Html.php | 2 +-
framework/Tree/lib/Horde/Tree/Renderer/Jquerymobile.php | 2 +-
framework/Tree/lib/Horde/Tree/Renderer/Select.php | 2 +-
framework/Tree/lib/Horde/Tree/Renderer/Simplehtml.php | 2 +-
framework/Url/lib/Horde/Url.php | 2 +-
framework/Url/lib/Horde/Url/Exception.php | 2 +-
framework/Util/lib/Horde/Array.php | 2 +-
framework/Util/lib/Horde/Array/Sort/Helper.php | 2 +-
framework/Util/lib/Horde/Domhtml.php | 2 +-
framework/Util/lib/Horde/String.php | 2 +-
framework/Util/lib/Horde/Util.php | 2 +-
framework/Util/lib/Horde/Variables.php | 2 +-
framework/Util/package.xml | 21 +-
framework/Util/test/Horde/Util/StringTest.php | 4 +-
framework/Vcs/lib/Horde/Vcs.php | 2 +-
framework/Vcs/lib/Horde/Vcs/Base.php | 2 +-
framework/Vcs/lib/Horde/Vcs/Cvs.php | 2 +-
framework/Vcs/lib/Horde/Vcs/Directory/Base.php | 2 +-
framework/Vcs/lib/Horde/Vcs/Directory/Cvs.php | 2 +-
framework/Vcs/lib/Horde/Vcs/Directory/Git.php | 8 +-
framework/Vcs/lib/Horde/Vcs/Directory/Rcs.php | 2 +-
framework/Vcs/lib/Horde/Vcs/File/Base.php | 2 +-
framework/Vcs/lib/Horde/Vcs/File/Cvs.php | 2 +-
framework/Vcs/lib/Horde/Vcs/File/Git.php | 2 +-
framework/Vcs/lib/Horde/Vcs/File/Rcs.php | 2 +-
framework/Vcs/lib/Horde/Vcs/Git.php | 2 +-
framework/Vcs/lib/Horde/Vcs/Log/Base.php | 2 +-
framework/Vcs/lib/Horde/Vcs/Log/Cvs.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/Cvs.php | 2 +-
framework/Vcs/lib/Horde/Vcs/Patchset/Git.php | 2 +-
framework/Vcs/lib/Horde/Vcs/QuickLog/Base.php | 2 +-
framework/Vcs/lib/Horde/Vcs/QuickLog/Cvs.php | 2 +-
framework/Vcs/lib/Horde/Vcs/QuickLog/Git.php | 2 +-
framework/Vcs/lib/Horde/Vcs/QuickLog/Rcs.php | 2 +-
framework/Vcs/lib/Horde/Vcs/QuickLog/Svn.php | 2 +-
framework/Vcs/lib/Horde/Vcs/Svn.php | 2 +-
framework/Vfs/lib/Horde/Vfs.php | 2 +-
framework/Vfs/lib/Horde/Vfs/Base.php | 2 +-
framework/Vfs/lib/Horde/Vfs/Exception.php | 2 +-
framework/Vfs/lib/Horde/Vfs/File.php | 2 +-
framework/Vfs/lib/Horde/Vfs/Ftp.php | 2 +-
framework/Vfs/lib/Horde/Vfs/Gc.php | 2 +-
framework/Vfs/lib/Horde/Vfs/Horde.php | 2 +-
framework/Vfs/lib/Horde/Vfs/Kolab.php | 2 +-
framework/Vfs/lib/Horde/Vfs/Musql.php | 2 +-
framework/Vfs/lib/Horde/Vfs/Sql.php | 2 +-
framework/Vfs/lib/Horde/Vfs/Ssh2.php | 2 +-
framework/Vfs/lib/Horde/Vfs/Translation.php | 2 +-
framework/Vfs/locale/ar/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/bg/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/bs/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/ca/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/cs/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/da/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/de/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/el/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/en/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/es/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/et/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/eu/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/fa/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/fi/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/fr/LC_MESSAGES/Horde_Vfs.mo | Bin 614 -> 696 bytes
framework/Vfs/locale/fr/LC_MESSAGES/Horde_Vfs.po | 23 +-
framework/Vfs/locale/gl/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/he/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/hr/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/hu/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/id/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/is/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/it/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/ja/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/km/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/ko/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/lt/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/lv/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/mk/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/nb/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/nl/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/nn/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/pl/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/pt/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/pt_BR/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/ro/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/ru/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/sk/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/sl/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/sv/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/tr/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/uk/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/zh_CN/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/locale/zh_TW/LC_MESSAGES/Horde_Vfs.po | 2 +-
framework/Vfs/package.xml | 25 +-
framework/Vfs/test/Horde/Vfs/Base.php | 2 +-
framework/Vfs/test/Horde/Vfs/FileTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/FtpTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/KolabTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/SmbTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/Sql/Base.php | 2 +-
framework/Vfs/test/Horde/Vfs/Sql/MysqlTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/Sql/MysqliTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/Sql/Pdo/MysqlTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/Sql/Pdo/PgsqlTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/Sql/Pdo/SqliteTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/SqlFile/Base.php | 2 +-
framework/Vfs/test/Horde/Vfs/SqlFile/MysqlTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/SqlFile/MysqliTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/SqlFile/Pdo/MysqlTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/SqlFile/Pdo/PgsqlTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/SqlFile/Pdo/SqliteTest.php | 2 +-
framework/Vfs/test/Horde/Vfs/Ssh2Test.php | 2 +-
framework/View/lib/Horde/View/Helper/Benchmark.php | 2 +-
framework/View/lib/Horde/View/Helper/Benchmark/Timer.php | 2 +-
framework/View/lib/Horde/View/Helper/Block.php | 2 +-
framework/View/lib/Horde/View/Helper/Capture.php | 2 +-
framework/View/lib/Horde/View/Helper/Capture/Base.php | 2 +-
framework/View/lib/Horde/View/Helper/Capture/ContentFor.php | 2 +-
framework/View/lib/Horde/View/Helper/Date.php | 2 +-
framework/View/lib/Horde/View/Helper/Debug.php | 2 +-
framework/View/lib/Horde/View/Helper/Form.php | 4 +-
framework/View/lib/Horde/View/Helper/Form/Builder.php | 2 +-
framework/View/lib/Horde/View/Helper/Form/InstanceTag/Base.php | 2 +-
framework/View/lib/Horde/View/Helper/Form/InstanceTag/Form.php | 2 +-
framework/View/lib/Horde/View/Helper/FormTag.php | 2 +-
framework/View/lib/Horde/View/Helper/Javascript.php | 2 +-
framework/View/lib/Horde/View/Helper/Number.php | 2 +-
framework/View/lib/Horde/View/Helper/Tag.php | 2 +-
framework/View/lib/Horde/View/Helper/Text.php | 2 +-
framework/View/lib/Horde/View/Helper/Text/Cycle.php | 2 +-
framework/View/lib/Horde/View/Helper/Url.php | 2 +-
framework/View/test/Horde/View/BaseTest.php | 2 +-
framework/View/test/Horde/View/Helper/BenchmarkTest.php | 2 +-
framework/View/test/Horde/View/Helper/CaptureTest.php | 2 +-
framework/View/test/Horde/View/Helper/DateTest.php | 2 +-
framework/View/test/Horde/View/Helper/DebugTest.php | 2 +-
framework/View/test/Horde/View/Helper/FormTagTest.php | 2 +-
framework/View/test/Horde/View/Helper/FormTest.php | 2 +-
framework/View/test/Horde/View/Helper/JavascriptTest.php | 2 +-
framework/View/test/Horde/View/Helper/NumberTest.php | 2 +-
framework/View/test/Horde/View/Helper/TagTest.php | 2 +-
framework/View/test/Horde/View/Helper/TextTest.php | 2 +-
framework/View/test/Horde/View/Helper/UrlTest.php | 2 +-
framework/View/test/Horde/View/InterfaceTest.php | 2 +-
framework/Xml_Element/doc/Horde/Xml/Element/COPYING | 2 +-
framework/Xml_Element/lib/Horde/Xml/Element.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/ContentHandler.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/Decoder.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/Dtd.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/Dtd/SyncMl.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/Dtd/SyncMlDevInf.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/Dtd/SyncMlMetInf.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/DtdManager.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/Encoder.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/Exception.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/HashTable.php | 2 +-
framework/Xml_Wbxml/lib/Horde/Xml/Wbxml/LifoQueue.php | 2 +-
framework/Yaml/doc/Horde/Yaml/COPYING | 2 +-
framework/Yaml/test/Horde/Yaml/Autoload.php | 2 +-
framework/admintools/horde-remove-pref.php | 2 +-
framework/admintools/horde-sql-shell.php | 2 +-
framework/bin/install_framework | 2 +-
framework/devtools/horde-generate-module.php | 2 +-
gollem/clipboard.php | 2 +-
gollem/config/backends.php | 3 -
gollem/config/prefs.php | 4 +-
gollem/docs/CHANGES | 12 +
gollem/docs/CREDITS | 1 +
gollem/docs/RELEASE_NOTES | 20 +-
gollem/edit.php | 2 +-
gollem/index.php | 2 +-
gollem/js/login.js | 2 +-
gollem/lib/Api.php | 2 +-
gollem/lib/Application.php | 16 +-
gollem/lib/Auth.php | 14 +-
gollem/lib/Exception.php | 2 +-
gollem/lib/Factory/Vfs.php | 2 +-
gollem/lib/Factory/VfsDefault.php | 2 +-
gollem/lib/Gollem.php | 32 +-
gollem/lib/LoginTasks/SystemTask/Upgrade.php | 2 +-
gollem/lib/Prefs/Special/Columnselect.php | 19 +-
gollem/lib/Test.php | 2 +-
gollem/locale/bg/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/ca/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/cs/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/da/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/de/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/es/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/fr/LC_MESSAGES/gollem.mo | Bin 82797 -> 74583 bytes
gollem/locale/fr/LC_MESSAGES/gollem.po | 524 +-
gollem/locale/hr/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/it/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/ja/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/lv/LC_MESSAGES/gollem.mo | Bin 79365 -> 71548 bytes
gollem/locale/lv/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/pl/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/pt_BR/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/ro/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/sk/LC_MESSAGES/gollem.mo | Bin 71900 -> 72844 bytes
gollem/locale/sk/LC_MESSAGES/gollem.po | 268 +-
gollem/locale/sl/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/tr/LC_MESSAGES/gollem.po | 2 +-
gollem/locale/uk/LC_MESSAGES/gollem.po | 2 +-
gollem/manager.php | 13 +-
gollem/migration/1_gollem_base_tables.php | 2 +-
gollem/migration/2_gollem_upgrade_autoincrement.php | 2 +-
gollem/package.xml | 32 +-
gollem/quota.php | 2 +-
gollem/selectlist.php | 2 +-
gollem/share.php | 2 +-
gollem/view.php | 2 +-
hermes/LICENSE | 2 +-
hermes/admin.php | 2 +-
hermes/bin/hermes-purge | 2 +-
hermes/deliverables.php | 2 +-
hermes/entry.php | 2 +-
hermes/index.php | 2 +-
hermes/invoicing.php | 2 +-
hermes/js/hermes.js | 71 +-
hermes/lib/Ajax.php | 4 +-
hermes/lib/Ajax/Application.php | 2 +-
hermes/lib/Ajax/Application/Handler.php | 2 +-
hermes/lib/Application.php | 2 +-
hermes/lib/Data/Iif.php | 2 +-
hermes/lib/Form/Admin/AddJobType.php | 2 +-
hermes/lib/Form/Admin/DeleteJobType.php | 2 +-
hermes/lib/Form/Admin/EditClientStepOne.php | 2 +-
hermes/lib/Form/Admin/EditClientStepTwo.php | 2 +-
hermes/lib/Form/Admin/EditJobTypeStepOne.php | 2 +-
hermes/lib/Form/Admin/EditJobTypeStepTwo.php | 2 +-
hermes/lib/Form/Deliverable.php | 2 +-
hermes/lib/Form/Deliverable/ClientSelector.php | 2 +-
hermes/lib/Form/Export.php | 2 +-
hermes/lib/Form/JobType/Add.php | 2 +-
hermes/lib/Form/JobType/Edit/Step1.php | 2 +-
hermes/lib/Form/Search.php | 2 +-
hermes/lib/Form/Time.php | 2 +-
hermes/lib/Form/Time/Entry.php | 2 +-
hermes/lib/LoginTasks/SystemTask/Upgrade.php | 2 +-
hermes/lib/Slice.php | 2 +-
hermes/lib/View/Sidebar.php | 2 +-
hermes/locale/de/LC_MESSAGES/hermes.po | 2 +-
hermes/locale/es/LC_MESSAGES/hermes.po | 2 +-
hermes/locale/lv/LC_MESSAGES/hermes.mo | Bin 77282 -> 69443 bytes
hermes/locale/lv/LC_MESSAGES/hermes.po | 2 +-
hermes/migration/1_hermes_base_tables.php | 2 +-
hermes/migration/2_hermes_autoincrement.php | 2 +-
hermes/search.php | 2 +-
hermes/start.php | 2 +-
hermes/templates/dynamic/search.inc | 16 +-
hermes/time.php | 2 +-
horde/.htaccess | 3 +
horde/admin/activesync.php | 8 +-
horde/admin/alarms.php | 8 +-
horde/admin/cmdshell.php | 8 +-
horde/admin/config/config.php | 8 +-
horde/admin/config/diff.php | 8 +-
horde/admin/config/index.php | 8 +-
horde/admin/config/scripts.php | 8 +-
horde/admin/groups.php | 8 +-
horde/admin/locks.php | 8 +-
horde/admin/perms/addchild.php | 8 +-
horde/admin/perms/delete.php | 8 +-
horde/admin/perms/edit.php | 8 +-
horde/admin/perms/index.php | 8 +-
horde/admin/phpshell.php | 8 +-
horde/admin/sessions.php | 8 +-
horde/admin/signup_confirm.php | 8 +-
horde/admin/sqlshell.php | 8 +-
horde/admin/user.php | 8 +-
horde/bin/horde-active-sessions | 8 +-
horde/bin/horde-alarms | 8 +-
horde/bin/horde-check-logger | 8 +-
horde/bin/horde-clear-cache | 8 +-
horde/bin/horde-crond | 8 +-
horde/bin/horde-db-migrate | 8 +-
horde/bin/horde-import-squirrelmail-prefs | 8 +-
horde/bin/horde-memcache-stats | 8 +-
horde/bin/horde-run-task | 8 +-
horde/bin/horde-set-perms | 8 +-
horde/bin/horde-themes | 8 +-
horde/bin/horde-translation | 2 +-
horde/docs/CHANGES | 11 +-
horde/docs/CODING_STANDARDS | 17 +-
horde/docs/CREDITS | 2 +
horde/docs/INSTALL | 18 +-
horde/docs/RELEASE_NOTES | 14 +-
horde/docs/TRANSLATIONS | 2 +-
horde/index.php | 8 +-
horde/install/horde.php | 14 +-
horde/js/activesyncadmin.js | 4 +-
horde/js/activesyncprefs.js | 4 +-
horde/js/categoryprefs.js | 4 +-
horde/js/dragdrop2.js | 2 +-
horde/js/form_ghost.js | 2 +-
horde/js/form_sections.js | 6 +-
horde/js/ieescguard.js | 4 +-
horde/js/logintasks-jquery.js | 4 +-
horde/js/logintasks.js | 4 +-
horde/js/sidebar.js | 4 +-
horde/js/slider2.js | 2 +-
horde/js/stripe.js | 4 +-
horde/js/syncmlprefs.js | 4 +-
horde/js/topbar.js | 6 +-
horde/js/userupdate.js | 4 +-
horde/js/vatid.js | 4 +-
horde/lib/Ajax/Application.php | 8 +-
horde/lib/Ajax/Application/Handler.php | 8 +-
horde/lib/Application.php | 32 +-
horde/lib/Block/Account.php | 6 +-
horde/lib/Block/Account/Base.php | 6 +-
horde/lib/Block/Account/Finger.php | 6 +-
horde/lib/Block/Account/Ldap.php | 6 +-
horde/lib/Block/Account/Localhost.php | 6 +-
horde/lib/Block/FbStream.php | 2 +-
horde/lib/Block/TwitterTimeline.php | 6 +-
horde/lib/Block/Weather.php | 2 +-
horde/lib/LoginTasks/SystemTask/GarbageCollection.php | 8 +-
horde/lib/LoginTasks/SystemTask/Upgrade.php | 8 +-
horde/lib/LoginTasks/Task/AdminCheck.php | 8 +-
horde/lib/LoginTasks/Task/LastLogin.php | 8 +-
horde/lib/LoginTasks/Task/TosAgreement.php | 2 +-
horde/lib/Prefs/Special/Activesync.php | 6 +-
horde/lib/Prefs/Special/Category.php | 6 +-
horde/lib/Prefs/Special/Facebook.php | 6 +-
horde/lib/Prefs/Special/Syncml.php | 6 +-
horde/lib/Prefs/Special/Twitter.php | 6 +-
horde/lib/Test.php | 8 +-
horde/lib/Tree/Renderer/Menu.php | 8 +-
horde/lib/Tree/Renderer/Sidebar.php | 8 +-
horde/lib/View/Sidebar.php | 8 +-
horde/lib/View/Topbar.php | 10 +-
horde/lib/core.php | 8 +-
horde/locale/bg/LC_MESSAGES/horde.po | 2 +-
horde/locale/bs/LC_MESSAGES/horde.po | 2 +-
horde/locale/ca/LC_MESSAGES/horde.po | 2 +-
horde/locale/cs/LC_MESSAGES/horde.po | 2 +-
horde/locale/da/LC_MESSAGES/horde.po | 2 +-
horde/locale/de/LC_MESSAGES/horde.po | 2 +-
horde/locale/es/LC_MESSAGES/horde.po | 2 +-
horde/locale/fr/LC_MESSAGES/horde.mo | Bin 73560 -> 66503 bytes
horde/locale/fr/LC_MESSAGES/horde.po | 2201 +--
horde/locale/hr/LC_MESSAGES/horde.po | 2 +-
horde/locale/hu/LC_MESSAGES/horde.po | 2 +-
horde/locale/id/LC_MESSAGES/horde.po | 2 +-
horde/locale/is/LC_MESSAGES/horde.po | 2 +-
horde/locale/ja/LC_MESSAGES/horde.po | 2 +-
horde/locale/km/LC_MESSAGES/horde.po | 2 +-
horde/locale/ko/LC_MESSAGES/horde.po | 2 +-
horde/locale/lt/LC_MESSAGES/horde.po | 2 +-
horde/locale/lv/LC_MESSAGES/horde.mo | Bin 71437 -> 63566 bytes
horde/locale/lv/LC_MESSAGES/horde.po | 2071 +--
horde/locale/nb/LC_MESSAGES/horde.po | 2 +-
horde/locale/pl/LC_MESSAGES/horde.po | 2 +-
horde/locale/pt_BR/LC_MESSAGES/horde.po | 2 +-
horde/locale/ro/LC_MESSAGES/horde.po | 2 +-
horde/locale/ru/LC_MESSAGES/horde.po | 2 +-
horde/locale/sk/LC_MESSAGES/horde.mo | Bin 63338 -> 64474 bytes
horde/locale/sk/LC_MESSAGES/horde.po | 213 +-
horde/locale/sl/LC_MESSAGES/horde.po | 2 +-
horde/locale/tr/LC_MESSAGES/horde.po | 2 +-
horde/login.php | 8 +-
horde/package.xml | 97 +-
horde/rampage.php | 2 +-
horde/rpc.php | 14 +-
horde/rpc/index.php | 8 +-
horde/scripts/cookie_login.php | 8 +-
horde/scripts/get_login.php | 8 +-
horde/scripts/http_login.php | 8 +-
horde/services/ajax.php | 8 +-
horde/services/cache.php | 8 +-
horde/services/cacheview.php | 8 +-
horde/services/changepassword.php | 8 +-
horde/services/confirm.php | 8 +-
horde/services/download/index.php | 8 +-
horde/services/facebook/index.php | 8 +-
horde/services/go.php | 8 +-
horde/services/help/index.php | 8 +-
horde/services/images/pixel.php | 8 +-
horde/services/images/view.php | 8 +-
horde/services/language.php | 8 +-
horde/services/logintasks.php | 8 +-
horde/services/obrowser/index.php | 8 +-
horde/services/portal/cloud_search.php | 8 +-
horde/services/portal/edit.php | 8 +-
horde/services/portal/index.php | 8 +-
horde/services/portal/smartmobile.php | 8 +-
horde/services/prefs.php | 8 +-
horde/services/problem.php | 8 +-
horde/services/resetpassword.php | 8 +-
horde/services/shares/edit.php | 8 +-
horde/services/snooze.php | 8 +-
horde/services/twitter/index.php | 8 +-
horde/signup.php | 8 +-
horde/templates/prefs/source.html | 3 +
horde/templates/topbar/_menubar.html.php | 2 +-
horde/test.php | 8 +-
horde/util/barcode.php | 8 +-
horde/util/icon_browser.php | 6 +-
hylax/compose.php | 2 +-
hylax/index.php | 2 +-
hylax/lib/Application.php | 2 +-
hylax/lib/Driver.php | 2 +-
hylax/lib/Driver/hylafax.php | 2 +-
hylax/lib/Driver/spandsp.php | 2 +-
hylax/lib/Hylax.php | 2 +-
hylax/lib/Image.php | 2 +-
hylax/lib/SQL/Attributes.php | 2 +-
hylax/lib/Storage.php | 2 +-
hylax/lib/Storage/sql.php | 2 +-
iPhoto2Ansel/AnselExportController.h | 2 +-
iPhoto2Ansel/AnselExportController.m | 2 +-
iPhoto2Ansel/AnselExportPluginBox.h | 2 +-
iPhoto2Ansel/AnselExportPluginBox.m | 2 +-
iPhoto2Ansel/COPYING | 2 +-
iPhoto2Ansel/TURAnselKit/AnselGalleryViewItem.h | 2 +-
iPhoto2Ansel/TURAnselKit/AnselGalleryViewItem.m | 2 +-
iPhoto2Ansel/TURAnselKit/TURAnsel.h | 2 +-
iPhoto2Ansel/TURAnselKit/TURAnsel.m | 2 +-
iPhoto2Ansel/TURAnselKit/TURAnselConstants.h | 2 +-
iPhoto2Ansel/TURAnselKit/TURAnselConstants.m | 2 +-
iPhoto2Ansel/TURAnselKit/TURAnselGallery.h | 2 +-
iPhoto2Ansel/TURAnselKit/TURAnselGallery.m | 2 +-
iPhoto2Ansel/TURAnselKit/TURAnselGalleryPanelController.h | 2 +-
iPhoto2Ansel/TURAnselKit/TURAnselGalleryPanelController.m | 2 +-
imp/attachment.php | 8 +-
imp/bin/imp-bounce-spam | 2 +-
imp/bin/imp-mailbox-decode | 2 +-
imp/bin/imp-query-imap-cache | 2 +-
imp/compose.php | 27 +-
imp/contacts.php | 18 +-
imp/docs/CHANGES | 32 +-
imp/docs/CREDITS | 2 +
imp/docs/RELEASE_NOTES | 28 +-
imp/dynamic.php | 2 +-
imp/folders.php | 3 +-
imp/index.php | 2 +-
imp/js/compose-base.js | 15 +-
imp/js/compose-dimp.js | 2 +-
imp/js/dimpbase.js | 55 +-
imp/js/dimpcore.js | 2 +-
imp/js/indices.js | 2 +-
imp/js/mailbox.js | 4 +-
imp/js/message-dimp.js | 2 +-
imp/js/message.js | 2 +-
imp/js/smartmobile.js | 24 +-
imp/js/viewport.js | 2 +-
imp/lib/Ajax/Application.php | 8 +-
imp/lib/Ajax/Application/Compose.php | 6 +-
imp/lib/Ajax/Application/Handler/Common.php | 6 +-
imp/lib/Ajax/Application/Handler/Dynamic.php | 77 +-
imp/lib/Ajax/Application/Handler/ImageUnblock.php | 6 +-
imp/lib/Ajax/Application/Handler/Mboxtoggle.php | 72 +
imp/lib/Ajax/Application/Handler/Passphrase.php | 6 +-
imp/lib/Ajax/Application/Handler/Search.php | 6 +-
imp/lib/Ajax/Application/Handler/Smartmobile.php | 6 +-
imp/lib/Ajax/Application/ListMessages.php | 10 +-
imp/lib/Ajax/Application/ShowMessage.php | 6 +-
imp/lib/Ajax/Imple/ContactAutoCompleter.php | 6 +-
imp/lib/Ajax/Imple/ImportEncryptKey.php | 6 +-
imp/lib/Ajax/Imple/ItipRequest.php | 6 +-
imp/lib/Ajax/Imple/PassphraseDialog.php | 6 +-
imp/lib/Ajax/Queue.php | 6 +-
imp/lib/Api.php | 6 +-
imp/lib/Application.php | 8 +-
imp/lib/Auth.php | 6 +-
imp/lib/Block/Newmail.php | 6 +-
imp/lib/Block/Summary.php | 6 +-
imp/lib/Compose.php | 79 +-
imp/lib/Compose/Exception.php | 6 +-
imp/lib/Compose/References.php | 94 +
imp/lib/Compose/View.php | 6 +-
imp/lib/Contents.php | 6 +-
imp/lib/Contents/View.php | 6 +-
imp/lib/Crypt/Pgp.php | 6 +-
imp/lib/Crypt/Smime.php | 6 +-
imp/lib/Dynamic/AddressList.php | 6 +-
imp/lib/Dynamic/Base.php | 10 +-
imp/lib/Dynamic/Compose.php | 14 +-
imp/lib/Dynamic/Compose/Common.php | 19 +-
imp/lib/Dynamic/Helper/Base.php | 10 +-
imp/lib/Dynamic/Mailbox.php | 19 +-
imp/lib/Dynamic/Message.php | 12 +-
imp/lib/Exception.php | 6 +-
imp/lib/Factory/AuthImap.php | 6 +-
imp/lib/Factory/Compose.php | 6 +-
imp/lib/Factory/Contents.php | 6 +-
imp/lib/Factory/Flags.php | 6 +-
imp/lib/Factory/Identity.php | 6 +-
imp/lib/Factory/Imap.php | 6 +-
imp/lib/Factory/Imaptree.php | 6 +-
imp/lib/Factory/Mail.php | 6 +-
imp/lib/Factory/Mailbox.php | 6 +-
imp/lib/Factory/MailboxList.php | 6 +-
imp/lib/Factory/MimeViewer.php | 6 +-
imp/lib/Factory/Pgp.php | 6 +-
imp/lib/Factory/PrefsSort.php | 6 +-
imp/lib/Factory/Quota.php | 6 +-
imp/lib/Factory/Search.php | 6 +-
imp/lib/Factory/Sentmail.php | 6 +-
imp/lib/Factory/Smime.php | 6 +-
imp/lib/Filter.php | 6 +-
imp/lib/Flag/Base.php | 6 +-
imp/lib/Flag/Imap.php | 6 +-
imp/lib/Flag/Imap/Answered.php | 6 +-
imp/lib/Flag/Imap/Deleted.php | 6 +-
imp/lib/Flag/Imap/Draft.php | 6 +-
imp/lib/Flag/Imap/Flagged.php | 6 +-
imp/lib/Flag/Imap/Forwarded.php | 6 +-
imp/lib/Flag/Imap/Junk.php | 6 +-
imp/lib/Flag/Imap/NotJunk.php | 6 +-
imp/lib/Flag/Imap/Seen.php | 6 +-
imp/lib/Flag/System/Attachment.php | 6 +-
imp/lib/Flag/System/Encrypted.php | 6 +-
imp/lib/Flag/System/HighPriority.php | 6 +-
imp/lib/Flag/System/List.php | 6 +-
imp/lib/Flag/System/LowPriority.php | 6 +-
imp/lib/Flag/System/Match/Address.php | 6 +-
imp/lib/Flag/System/Match/Flag.php | 6 +-
imp/lib/Flag/System/Match/Header.php | 6 +-
imp/lib/Flag/System/Personal.php | 6 +-
imp/lib/Flag/System/Signed.php | 6 +-
imp/lib/Flag/System/Unseen.php | 6 +-
imp/lib/Flag/User.php | 6 +-
imp/lib/Flags.php | 6 +-
imp/lib/IMP.php | 6 +-
imp/lib/Imap.php | 6 +-
imp/lib/Imap/Acl.php | 6 +-
imp/lib/Imap/Exception.php | 6 +-
imp/lib/Imap/PermanentFlags.php | 6 +-
imp/lib/Imap/Tree.php | 6 +-
imp/lib/Indices.php | 6 +-
imp/lib/Indices/Form.php | 6 +-
imp/lib/LoginTasks/SystemTask/GarbageCollection.php | 6 +-
imp/lib/LoginTasks/SystemTask/Upgrade.php | 6 +-
imp/lib/LoginTasks/SystemTask/UpgradeAuth.php | 6 +-
imp/lib/LoginTasks/Task/Autocreate.php | 6 +-
imp/lib/LoginTasks/Task/DeleteSentmailMonthly.php | 6 +-
imp/lib/LoginTasks/Task/FilterOnLogin.php | 6 +-
imp/lib/LoginTasks/Task/PurgeSentmail.php | 6 +-
imp/lib/LoginTasks/Task/PurgeSpam.php | 6 +-
imp/lib/LoginTasks/Task/PurgeTrash.php | 6 +-
imp/lib/LoginTasks/Task/RecoverDraft.php | 6 +-
imp/lib/LoginTasks/Task/RenameSentmailMonthly.php | 6 +-
imp/lib/Mailbox.php | 6 +-
imp/lib/Mailbox/List.php | 6 +-
imp/lib/Mailbox/List/Thread.php | 6 +-
imp/lib/Mailbox/List/Track.php | 6 +-
imp/lib/Maillog.php | 6 +-
imp/lib/Mbox/Parse.php | 6 +-
imp/lib/Message.php | 6 +-
imp/lib/Mime/Status.php | 6 +-
imp/lib/Mime/Viewer/Alternative.php | 6 +-
imp/lib/Mime/Viewer/Appledouble.php | 6 +-
imp/lib/Mime/Viewer/Audio.php | 6 +-
imp/lib/Mime/Viewer/Enriched.php | 6 +-
imp/lib/Mime/Viewer/Externalbody.php | 6 +-
imp/lib/Mime/Viewer/Html.php | 6 +-
imp/lib/Mime/Viewer/Images.php | 6 +-
imp/lib/Mime/Viewer/Itip.php | 6 +-
imp/lib/Mime/Viewer/Mdn.php | 6 +-
imp/lib/Mime/Viewer/Partial.php | 6 +-
imp/lib/Mime/Viewer/Pdf.php | 6 +-
imp/lib/Mime/Viewer/Pgp.php | 6 +-
imp/lib/Mime/Viewer/Plain.php | 6 +-
imp/lib/Mime/Viewer/Related.php | 12 +-
imp/lib/Mime/Viewer/Rfc822.php | 6 +-
imp/lib/Mime/Viewer/Smil.php | 6 +-
imp/lib/Mime/Viewer/Smime.php | 8 +-
imp/lib/Mime/Viewer/Status.php | 6 +-
imp/lib/Mime/Viewer/Vcard.php | 6 +-
imp/lib/Mime/Viewer/Video.php | 6 +-
imp/lib/Mime/Viewer/Zip.php | 6 +-
imp/lib/Minimal/Base.php | 8 +-
imp/lib/Minimal/Compose.php | 32 +-
imp/lib/Minimal/Folders.php | 4 +-
imp/lib/Minimal/Mailbox.php | 4 +-
imp/lib/Minimal/Message.php | 4 +-
imp/lib/Minimal/Messagepart.php | 4 +-
imp/lib/Minimal/Search.php | 4 +-
imp/lib/Notification/Event/Status.php | 8 +-
imp/lib/Notification/Handler/Decorator/ImapAlerts.php | 2 +-
imp/lib/Notification/Handler/Decorator/NewmailNotify.php | 2 +-
imp/lib/Prefs/Identity.php | 2 +-
imp/lib/Prefs/Sort.php | 2 +-
imp/lib/Prefs/Sort/Fixed.php | 2 +-
imp/lib/Prefs/Sort/Sortpref.php | 2 +-
imp/lib/Prefs/Special/Acl.php | 2 +-
imp/lib/Prefs/Special/ComposeTemplates.php | 2 +-
imp/lib/Prefs/Special/Drafts.php | 2 +-
imp/lib/Prefs/Special/Encrypt.php | 2 +-
imp/lib/Prefs/Special/Flag.php | 2 +-
imp/lib/Prefs/Special/HtmlSignature.php | 2 +-
imp/lib/Prefs/Special/ImageReplacement.php | 2 +-
imp/lib/Prefs/Special/InitialPage.php | 2 +-
imp/lib/Prefs/Special/Mailto.php | 2 +-
imp/lib/Prefs/Special/NewmailSound.php | 2 +-
imp/lib/Prefs/Special/PgpPrivateKey.php | 2 +-
imp/lib/Prefs/Special/PgpPublicKey.php | 2 +-
imp/lib/Prefs/Special/Searches.php | 3 +-
imp/lib/Prefs/Special/Sentmail.php | 2 +-
imp/lib/Prefs/Special/SmimePrivateKey.php | 2 +-
imp/lib/Prefs/Special/SmimePublicKey.php | 2 +-
imp/lib/Prefs/Special/Sourceselect.php | 2 +-
imp/lib/Prefs/Special/Spam.php | 2 +-
imp/lib/Prefs/Special/SpecialMboxes.php | 2 +-
imp/lib/Prefs/Special/Trash.php | 2 +-
imp/lib/Quota.php | 2 +-
imp/lib/Quota/Command.php | 2 +-
imp/lib/Quota/Hook.php | 2 +-
imp/lib/Quota/Imap.php | 2 +-
imp/lib/Quota/Maildir.php | 2 +-
imp/lib/Quota/Mdaemon.php | 2 +-
imp/lib/Quota/Mercury32.php | 2 +-
imp/lib/Quota/Null.php | 2 +-
imp/lib/Quota/Sql.php | 2 +-
imp/lib/Script/Package/ComposeBase.php | 2 +-
imp/lib/Script/Package/Imp.php | 2 +-
imp/lib/Search.php | 2 +-
imp/lib/Search/Element.php | 2 +-
imp/lib/Search/Element/Attachment.php | 2 +-
imp/lib/Search/Element/Autogenerated.php | 2 +-
imp/lib/Search/Element/Bulk.php | 2 +-
imp/lib/Search/Element/Contacts.php | 2 +-
imp/lib/Search/Element/Date.php | 2 +-
imp/lib/Search/Element/Daterange.php | 2 +-
imp/lib/Search/Element/Flag.php | 2 +-
imp/lib/Search/Element/Header.php | 2 +-
imp/lib/Search/Element/Mailinglist.php | 2 +-
imp/lib/Search/Element/Or.php | 2 +-
imp/lib/Search/Element/Personal.php | 2 +-
imp/lib/Search/Element/Recipient.php | 2 +-
imp/lib/Search/Element/Size.php | 2 +-
imp/lib/Search/Element/Text.php | 2 +-
imp/lib/Search/Element/Within.php | 2 +-
imp/lib/Search/Filter.php | 2 +-
imp/lib/Search/Filter/Attachment.php | 2 +-
imp/lib/Search/Filter/Autogenerated.php | 2 +-
imp/lib/Search/Filter/Builtin.php | 2 +-
imp/lib/Search/Filter/Bulk.php | 2 +-
imp/lib/Search/Filter/Contacts.php | 2 +-
imp/lib/Search/Filter/Mailinglist.php | 2 +-
imp/lib/Search/Filter/Personal.php | 2 +-
imp/lib/Search/Query.php | 2 +-
imp/lib/Search/Vfolder.php | 2 +-
imp/lib/Search/Vfolder/Builtin.php | 2 +-
imp/lib/Search/Vfolder/Vinbox.php | 2 +-
imp/lib/Search/Vfolder/Vtrash.php | 2 +-
imp/lib/Sentmail.php | 2 +-
imp/lib/Sentmail/Null.php | 6 +-
imp/lib/Sentmail/Sql.php | 6 +-
imp/lib/Smartmobile.php | 4 +-
imp/lib/Spam.php | 2 +-
imp/lib/Test.php | 2 +-
imp/lib/Tree/Flist.php | 2 +-
imp/lib/Tree/Jquerymobile.php | 2 +-
imp/lib/Tree/Simplehtml.php | 2 +-
imp/lib/Ui/Compose.php | 2 +-
imp/lib/Ui/Contacts.php | 2 +-
imp/lib/Ui/Editor.php | 2 +-
imp/lib/Ui/Folder.php | 2 +-
imp/lib/Ui/Headers.php | 2 +-
imp/lib/Ui/Imageview.php | 2 +-
imp/lib/Ui/Mailbox.php | 2 +-
imp/lib/Ui/Message.php | 2 +-
imp/lib/Ui/Quota.php | 2 +-
imp/lib/Ui/Search.php | 2 +-
imp/lib/View/Subinfo.php | 4 +-
imp/locale/bg/LC_MESSAGES/imp.po | 2 +-
imp/locale/bs/LC_MESSAGES/imp.po | 2 +-
imp/locale/ca/LC_MESSAGES/imp.po | 2 +-
imp/locale/cs/LC_MESSAGES/imp.po | 2 +-
imp/locale/da/LC_MESSAGES/imp.po | 2 +-
imp/locale/de/LC_MESSAGES/imp.po | 2 +-
imp/locale/es/LC_MESSAGES/imp.po | 2 +-
imp/locale/fr/LC_MESSAGES/imp.mo | Bin 190052 -> 183777 bytes
imp/locale/fr/LC_MESSAGES/imp.po | 754 +-
imp/locale/hr/LC_MESSAGES/imp.po | 2 +-
imp/locale/hu/LC_MESSAGES/imp.po | 2 +-
imp/locale/id/LC_MESSAGES/imp.po | 10 +-
imp/locale/is/LC_MESSAGES/imp.po | 2 +-
imp/locale/it/LC_MESSAGES/imp.po | 2 +-
imp/locale/ja/LC_MESSAGES/imp.po | 2 +-
imp/locale/km/LC_MESSAGES/imp.po | 2 +-
imp/locale/ko/LC_MESSAGES/imp.po | 2 +-
imp/locale/lt/LC_MESSAGES/imp.po | 2 +-
imp/locale/lv/LC_MESSAGES/imp.mo | Bin 188944 -> 174783 bytes
imp/locale/lv/LC_MESSAGES/imp.po | 4599 ++---
imp/locale/nb/LC_MESSAGES/imp.po | 2 +-
imp/locale/nl/LC_MESSAGES/imp.po | 2 +-
imp/locale/pl/LC_MESSAGES/imp.po | 2 +-
imp/locale/pt_BR/LC_MESSAGES/imp.po | 2 +-
imp/locale/ro/LC_MESSAGES/imp.po | 2 +-
imp/locale/sk/LC_MESSAGES/imp.mo | Bin 177054 -> 178326 bytes
imp/locale/sk/LC_MESSAGES/imp.po | 712 +-
imp/locale/sl/LC_MESSAGES/imp.po | 2 +-
imp/locale/sv/LC_MESSAGES/imp.po | 2 +-
imp/locale/th/LC_MESSAGES/imp.po | 2 +-
imp/locale/tr/LC_MESSAGES/imp.po | 2 +-
imp/mailbox.php | 28 +-
imp/message.php | 9 +-
imp/migration/1_imp_base_tables.php | 2 +-
imp/migration/2_imp_autoincrement_sentmail.php | 2 +-
imp/minimal.php | 2 +-
imp/package.xml | 66 +-
imp/pgp.php | 2 +-
imp/rss.php | 2 +-
imp/saveimage.php | 2 +-
imp/search-basic.php | 2 +-
imp/search.php | 2 +-
imp/smartmobile.php | 2 +-
imp/smime.php | 2 +-
imp/templates/basic/compose/compose.html.php | 16 +-
imp/templates/basic/compose/redirect.html.php | 4 +-
imp/templates/basic/folders/folders_confirm.html.php | 2 +-
imp/templates/basic/folders/folders_size.html.php | 2 +-
imp/templates/basic/folders/import.html.php | 2 +-
imp/templates/basic/mailbox/mailbox.html.php | 6 +-
imp/templates/basic/mailbox/navbar.html.php | 4 +-
imp/templates/basic/message/message.html.php | 2 +-
imp/templates/contacts/contacts.html.php | 8 +-
imp/templates/dynamic/compose.html.php | 9 +-
imp/templates/dynamic/mailbox.html.php | 12 +-
imp/templates/dynamic/message.html.php | 6 +-
imp/templates/smartmobile/mailbox.html.php | 4 +-
imp/test/Imp/Stub/HtmlViewer.php | 6 +-
imp/test/Imp/Stub/ItipRequest.php | 6 +-
imp/test/Imp/Unit/ComposeTest.php | 6 +-
imp/test/Imp/Unit/MboxParseTest.php | 6 +-
imp/test/Imp/Unit/Mime/Viewer/HtmlTest.php | 6 +-
imp/test/Imp/Unit/Mime/Viewer/ItipTest.php | 6 +-
imp/test/Imp/Unit/QuotaTest.php | 6 +-
imp/test/Imp/Unit/ReferencesTest.php | 98 +
imp/themes/default/dynamic/screen.css | 4 +
imp/themes/default/screen.css | 1 -
imp/thread.php | 2 +-
imp/view.php | 6 +-
ingo/LICENSE | 2 +-
ingo/bin/ingo-convert-prefs-to-sql | 2 +-
ingo/bin/ingo-convert-sql-shares-to-sqlng | 2 +-
ingo/bin/ingo-postfix-policyd | 2 +-
ingo/blacklist.php | 2 +-
ingo/docs/CHANGES | 10 +-
ingo/docs/CREDITS | 2 +
ingo/docs/RELEASE_NOTES | 12 +-
ingo/filters.php | 2 +-
ingo/forward.php | 2 +-
ingo/index.php | 2 +-
ingo/js/smartmobile.js | 2 +-
ingo/lib/Ajax/Application.php | 2 +-
ingo/lib/Ajax/Application/Smartmobile.php | 2 +-
ingo/lib/Api.php | 2 +-
ingo/lib/Application.php | 4 +-
ingo/lib/Block/Overview.php | 2 +-
ingo/lib/Exception.php | 2 +-
ingo/lib/Exception/Pear.php | 2 +-
ingo/lib/Factory/Script.php | 2 +-
ingo/lib/Factory/Storage.php | 2 +-
ingo/lib/Factory/Transport.php | 2 +-
ingo/lib/Form/Base.php | 2 +-
ingo/lib/Form/Forward.php | 2 +-
ingo/lib/Form/Spam.php | 2 +-
ingo/lib/Form/Vacation.php | 2 +-
ingo/lib/Ingo.php | 2 +-
ingo/lib/LoginTasks/SystemTask/Upgrade.php | 2 +-
ingo/lib/Script.php | 2 +-
ingo/lib/Script/Imap.php | 2 +-
ingo/lib/Script/Imap/Api.php | 2 +-
ingo/lib/Script/Imap/Live.php | 2 +-
ingo/lib/Script/Imap/Mock.php | 2 +-
ingo/lib/Script/Procmail.php | 2 +-
ingo/lib/Script/Procmail/Comment.php | 2 +-
ingo/lib/Script/Procmail/Recipe.php | 2 +-
ingo/lib/Script/Procmail/Variable.php | 2 +-
ingo/lib/Script/Sieve/Action.php | 2 +-
ingo/lib/Script/Sieve/Action/Addflag.php | 2 +-
ingo/lib/Script/Sieve/Action/Discard.php | 2 +-
ingo/lib/Script/Sieve/Action/Fileinto.php | 2 +-
ingo/lib/Script/Sieve/Action/Flag.php | 2 +-
ingo/lib/Script/Sieve/Action/Keep.php | 2 +-
ingo/lib/Script/Sieve/Action/Notify.php | 2 +-
ingo/lib/Script/Sieve/Action/Redirect.php | 2 +-
ingo/lib/Script/Sieve/Action/Reject.php | 2 +-
ingo/lib/Script/Sieve/Action/Removeflag.php | 2 +-
ingo/lib/Script/Sieve/Action/Stop.php | 2 +-
ingo/lib/Script/Sieve/Action/Vacation.php | 2 +-
ingo/lib/Script/Sieve/Comment.php | 2 +-
ingo/lib/Script/Sieve/Else.php | 2 +-
ingo/lib/Script/Sieve/Elsif.php | 2 +-
ingo/lib/Script/Sieve/If.php | 2 +-
ingo/lib/Script/Sieve/Test.php | 2 +-
ingo/lib/Script/Sieve/Test/Address.php | 2 +-
ingo/lib/Script/Sieve/Test/Allof.php | 2 +-
ingo/lib/Script/Sieve/Test/Anyof.php | 2 +-
ingo/lib/Script/Sieve/Test/Body.php | 2 +-
ingo/lib/Script/Sieve/Test/Exists.php | 2 +-
ingo/lib/Script/Sieve/Test/False.php | 2 +-
ingo/lib/Script/Sieve/Test/Header.php | 2 +-
ingo/lib/Script/Sieve/Test/Not.php | 2 +-
ingo/lib/Script/Sieve/Test/Relational.php | 2 +-
ingo/lib/Script/Sieve/Test/Size.php | 2 +-
ingo/lib/Script/Sieve/Test/True.php | 2 +-
ingo/lib/Smartmobile.php | 2 +-
ingo/lib/Storage.php | 2 +-
ingo/lib/Storage/Blacklist.php | 2 +-
ingo/lib/Storage/Filters.php | 2 +-
ingo/lib/Storage/Filters/Sql.php | 2 +-
ingo/lib/Storage/Forward.php | 2 +-
ingo/lib/Storage/Mock.php | 2 +-
ingo/lib/Storage/Prefs.php | 2 +-
ingo/lib/Storage/Rule.php | 2 +-
ingo/lib/Storage/Spam.php | 2 +-
ingo/lib/Storage/Sql.php | 2 +-
ingo/lib/Storage/Vacation.php | 2 +-
ingo/lib/Storage/VacationTest.php | 2 +-
ingo/lib/Storage/Whitelist.php | 2 +-
ingo/lib/Test.php | 2 +-
ingo/lib/Transport/Base.php | 2 +-
ingo/lib/Transport/Ldap.php | 2 +-
ingo/lib/Transport/Null.php | 2 +-
ingo/lib/Transport/Sivtest.php | 2 +-
ingo/lib/Transport/Timsieved.php | 2 +-
ingo/lib/Transport/Vfs.php | 4 +-
ingo/lib/Ui/VarRenderer/Ingo.php | 2 +-
ingo/lib/tests/AllTests.php | 2 +-
ingo/locale/ca/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/cs/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/da/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/de/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/el/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/es/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/fr/LC_MESSAGES/ingo.mo | Bin 91641 -> 85790 bytes
ingo/locale/fr/LC_MESSAGES/ingo.po | 572 +-
ingo/locale/hr/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/hu/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/it/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/ja/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/ko/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/lt/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/lv/LC_MESSAGES/ingo.mo | Bin 88763 -> 82040 bytes
ingo/locale/lv/LC_MESSAGES/ingo.po | 529 +-
ingo/locale/nb/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/nl/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/pl/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/pt/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/pt_BR/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/ro/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/sk/LC_MESSAGES/ingo.mo | Bin 82465 -> 83621 bytes
ingo/locale/sk/LC_MESSAGES/ingo.po | 12 +-
ingo/locale/sl/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/tr/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/uk/LC_MESSAGES/ingo.po | 2 +-
ingo/locale/zh_CN/LC_MESSAGES/ingo.po | 2 +-
ingo/migration/1_ingo_base_tables.php | 2 +-
ingo/migration/2_ingo_upgrade_autoincrement.php | 2 +-
ingo/migration/3_ingo_upgrade_sqlng.php | 2 +-
ingo/migration/4_ingo_upgrade_sqlhierarchical.php | 2 +-
ingo/migration/5_ingo_upgrade_sqlnghierarchical.php | 2 +-
ingo/package.xml | 61 +-
ingo/rule.php | 2 +-
ingo/script.php | 2 +-
ingo/smartmobile.php | 2 +-
ingo/spam.php | 2 +-
ingo/vacation.php | 4 +-
ingo/whitelist.php | 2 +-
jonah/LICENSE | 2 +-
jonah/channels/delete.php | 2 +-
jonah/channels/edit.php | 2 +-
jonah/channels/index.php | 2 +-
jonah/delivery/html.php | 2 +-
jonah/delivery/index.php | 2 +-
jonah/delivery/rss.php | 2 +-
jonah/dispatcher.php | 2 +-
jonah/feed.php | 2 +-
jonah/index.php | 2 +-
jonah/lib/Api.php | 2 +-
jonah/lib/Block/Cloud.php | 2 +-
jonah/lib/Block/Delivery.php | 2 +-
jonah/lib/Block/News.php | 2 +-
jonah/lib/Block/NewsPopular.php | 2 +-
jonah/lib/Driver.php | 2 +-
jonah/lib/Driver/Sql.php | 2 +-
jonah/lib/Exception.php | 2 +-
jonah/lib/Factory/Driver.php | 2 +-
jonah/lib/FeedParser.php | 2 +-
jonah/lib/Form/Feed.php | 2 +-
jonah/lib/Form/Story.php | 2 +-
jonah/lib/Jonah.php | 2 +-
jonah/lib/Test.php | 2 +-
jonah/lib/View/Base.php | 2 +-
jonah/lib/View/ChannelDelete.php | 2 +-
jonah/lib/View/ChannelEdit.php | 2 +-
jonah/lib/View/ChannelList.php | 2 +-
jonah/lib/View/DeliveryHtml.php | 2 +-
jonah/lib/View/StoryDelete.php | 2 +-
jonah/lib/View/StoryEdit.php | 2 +-
jonah/lib/View/StoryList.php | 2 +-
jonah/lib/View/StoryPdf.php | 2 +-
jonah/lib/View/StoryView.php | 2 +-
jonah/lib/View/TagSearchList.php | 2 +-
jonah/locale/de/LC_MESSAGES/jonah.po | 2 +-
jonah/locale/es/LC_MESSAGES/jonah.po | 2 +-
jonah/locale/fr/LC_MESSAGES/jonah.mo | Bin 78828 -> 71639 bytes
jonah/locale/fr/LC_MESSAGES/jonah.po | 2 +-
jonah/locale/lv/LC_MESSAGES/jonah.mo | Bin 79227 -> 71372 bytes
jonah/locale/lv/LC_MESSAGES/jonah.po | 2 +-
jonah/locale/nl/LC_MESSAGES/jonah.po | 2 +-
jonah/locale/ro/LC_MESSAGES/jonah.po | 2 +-
jonah/locale/tr/LC_MESSAGES/jonah.po | 2 +-
jonah/locale/zh_TW/LC_MESSAGES/jonah.po | 2 +-
jonah/migration/1_jonah_base_tables.php | 2 +-
jonah/migration/2_jonah_upgrade_autoincrement.php | 2 +-
jonah/stories/delete.php | 2 +-
jonah/stories/edit.php | 2 +-
jonah/stories/index.php | 2 +-
jonah/stories/pdf.php | 2 +-
jonah/stories/results.php | 2 +-
jonah/stories/share.php | 2 +-
jonah/stories/view.php | 2 +-
klutz/backend.php | 2 +-
klutz/comics.php | 2 +-
klutz/index.php | 2 +-
klutz/lib/Comic.php | 30 +-
klutz/lib/Klutz.php | 2 +-
klutz/locale/da/LC_MESSAGES/klutz.po | 2 +-
klutz/locale/de/LC_MESSAGES/klutz.po | 2 +-
klutz/locale/es/LC_MESSAGES/klutz.po | 2 +-
klutz/locale/lv/LC_MESSAGES/klutz.mo | Bin 74703 -> 66784 bytes
klutz/locale/lv/LC_MESSAGES/klutz.po | 2 +-
klutz/locale/ro/LC_MESSAGES/klutz.po | 2 +-
klutz/locale/sv/LC_MESSAGES/klutz.po | 2 +-
klutz/migration/1_klutz_base_tables.php | 2 +-
klutz/savecomic.php | 2 +-
kolab/index.php | 2 +-
kolab/lib/Api.php | 2 +-
kolab/lib/Application.php | 2 +-
kolab/lib/Driver.php | 2 +-
kolab/lib/Driver/Sql.php | 2 +-
kolab/lib/Exception.php | 2 +-
kolab/lib/Factory/Driver.php | 2 +-
kolab/lib/Test.php | 2 +-
kolab/locale/fi/LC_MESSAGES/kolab.po | 2 +-
kolab/locale/fr/LC_MESSAGES/kolab.mo | Bin 0 -> 66670 bytes
kolab/locale/fr/LC_MESSAGES/kolab.po | 36 +
koward/lib/Koward.php | 2 +-
koward/lib/Koward/Cli.php | 2 +-
koward/lib/Koward/Exception.php | 2 +-
koward/lib/Koward/Test.php | 2 +-
koward/lib/Koward/Test/AllTests.php | 2 +-
koward/lib/Koward/Test/Server/UserTest.php | 2 +-
koward/package.xml | 2 +-
koward/test/Koward/KowardTest.php | 2 +-
kronolith/add.php | 2 +-
kronolith/attend.php | 2 +-
kronolith/bin/kronolith-agenda | 2 +-
kronolith/bin/kronolith-import-icals | 2 +-
kronolith/bin/kronolith-import-squirrelmail-calendar | 2 +-
kronolith/calendars/create.php | 2 +-
kronolith/calendars/delete.php | 2 +-
kronolith/calendars/edit.php | 2 +-
kronolith/calendars/remote_edit.php | 2 +-
kronolith/calendars/remote_subscribe.php | 2 +-
kronolith/calendars/remote_unsubscribe.php | 2 +-
kronolith/calendars/subscribe.php | 2 +-
kronolith/contacts.php | 2 +-
kronolith/data.php | 2 +-
kronolith/day.php | 2 +-
kronolith/delete.php | 2 +-
kronolith/docs/CHANGES | 20 +-
kronolith/docs/CREDITS | 2 +
kronolith/docs/RELEASE_NOTES | 12 +-
kronolith/edit.php | 2 +-
kronolith/event.php | 2 +-
kronolith/fb.php | 2 +-
kronolith/feed/index.php | 2 +-
kronolith/index.php | 2 +-
kronolith/js/dragdrop2.js | 2 +-
kronolith/js/edit.js | 2 +-
kronolith/js/goto.js | 2 +-
kronolith/js/kronolith.js | 20 +-
kronolith/js/smartmobile.js | 2 +-
kronolith/lib/Ajax.php | 4 +-
kronolith/lib/Ajax/Application.php | 2 +-
kronolith/lib/Ajax/Application/Handler.php | 2 +-
kronolith/lib/Ajax/Imple/ContactAutoCompleter.php | 2 +-
kronolith/lib/Ajax/Imple/ResourceAutoCompleter.php | 2 +-
kronolith/lib/Ajax/Imple/TagActions.php | 2 +-
kronolith/lib/Ajax/Imple/TagAutoCompleter.php | 2 +-
kronolith/lib/Application.php | 27 +-
kronolith/lib/Calendar.php | 2 +-
kronolith/lib/Calendar/External.php | 2 +-
kronolith/lib/Calendar/External/Tasks.php | 2 +-
kronolith/lib/Calendar/Holiday.php | 2 +-
kronolith/lib/Calendar/Internal.php | 2 +-
kronolith/lib/Calendar/Remote.php | 2 +-
kronolith/lib/Calendar/Resource.php | 2 +-
kronolith/lib/Calendar/ResourceGroup.php | 2 +-
kronolith/lib/Driver.php | 2 +-
kronolith/lib/Driver/Holidays.php | 2 +-
kronolith/lib/Driver/Horde.php | 2 +-
kronolith/lib/Driver/Ical.php | 5 +-
kronolith/lib/Driver/Kolab.php | 2 +-
kronolith/lib/Driver/Mock.php | 2 +-
kronolith/lib/Driver/Resource/Sql.php | 2 +-
kronolith/lib/Driver/Sql.php | 2 +-
kronolith/lib/Event.php | 37 +-
kronolith/lib/Event/Holidays.php | 2 +-
kronolith/lib/Event/Horde.php | 2 +-
kronolith/lib/Event/Ical.php | 2 +-
kronolith/lib/Event/Kolab.php | 9 +-
kronolith/lib/Event/Resource/Sql.php | 2 +-
kronolith/lib/Event/Sql.php | 2 +-
kronolith/lib/Exception.php | 2 +-
kronolith/lib/Form/Type/KronolithTags.php | 2 +-
kronolith/lib/FreeBusy/View.php | 2 +-
kronolith/lib/FreeBusy/View/Day.php | 2 +-
kronolith/lib/FreeBusy/View/Month.php | 2 +-
kronolith/lib/FreeBusy/View/Week.php | 2 +-
kronolith/lib/FreeBusy/View/Workweek.php | 2 +-
kronolith/lib/Geo/Base.php | 2 +-
kronolith/lib/Geo/Mysql.php | 2 +-
kronolith/lib/Geo/Sql.php | 2 +-
kronolith/lib/Kronolith.php | 2 +-
kronolith/lib/LoginTasks/SystemTask/Upgrade.php | 2 +-
kronolith/lib/LoginTasks/Task/PurgeEvents.php | 2 +-
kronolith/lib/Prefs/Special/DefaultAlarm.php | 2 +-
kronolith/lib/Prefs/Special/EventAlarms.php | 2 +-
kronolith/lib/Prefs/Special/Sourceselect.php | 2 +-
kronolith/lib/Resource.php | 2 +-
kronolith/lib/Resource/Base.php | 2 +-
kronolith/lib/Resource/Group.php | 2 +-
kronolith/lib/Resource/Single.php | 2 +-
kronolith/lib/Storage/Kolab.php | 2 +-
kronolith/lib/Tagger.php | 2 +-
kronolith/lib/Test.php | 2 +-
kronolith/lib/View/Sidebar.php | 2 +-
kronolith/lib/View/SidebarTasks.php | 2 +-
kronolith/locale/bg/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/ca/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/cs/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/da/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/de/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/es/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/fr/LC_MESSAGES/kronolith.mo | Bin 135930 -> 128581 bytes
kronolith/locale/fr/LC_MESSAGES/kronolith.po | 1976 +-
kronolith/locale/hr/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/hu/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/ja/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/lt/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/lv/LC_MESSAGES/kronolith.mo | Bin 131595 -> 123141 bytes
kronolith/locale/lv/LC_MESSAGES/kronolith.po | 1835 +-
kronolith/locale/nb/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/nl/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/pl/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/pt_BR/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/ro/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/sk/LC_MESSAGES/kronolith.mo | Bin 123411 -> 124536 bytes
kronolith/locale/sl/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/tr/LC_MESSAGES/kronolith.po | 2 +-
kronolith/locale/zh_CN/LC_MESSAGES/kronolith.po | 2 +-
kronolith/migration/10_kronolith_upgrade_exceptions.php | 2 +-
kronolith/migration/11_kronolith_upgrade_resourceemail.php | 2 +-
kronolith/migration/12_kronolith_upgrade_addzoom.php | 2 +-
kronolith/migration/13_kronolith_upgrade_systemshares.php | 2 +-
kronolith/migration/14_kronolith_upgrade_missingresourcefield.php | 2 +-
kronolith/migration/15_kronolith_upgrade_sqlng.php | 2 +-
kronolith/migration/16_kronolith_upgrade_sqlhierarchical.php | 2 +-
kronolith/migration/17_kronolith_upgrade_sqlnghierarchical.php | 2 +-
kronolith/migration/18_kronolith_upgrade_categoriestotags.php | 2 +-
kronolith/migration/19_kronolith_upgrade_addmysqlgeo.php | 2 +-
kronolith/migration/1_kronolith_base_tables.php | 2 +-
kronolith/migration/20_kronolith_upgrade_timezone.php | 2 +-
kronolith/migration/21_kronolith_upgrade_exceptionutc.php | 2 +-
kronolith/migration/2_kronolith_upgrade_autoincrement.php | 2 +-
kronolith/migration/3_kronolith_upgrade_addallday.php | 2 +-
kronolith/migration/4_kronolith_upgrade_addalarmmethods.php | 2 +-
kronolith/migration/5_kronolith_upgrade_addcolor.php | 2 +-
kronolith/migration/6_kronolith_upgrade_addresources.php | 2 +-
kronolith/migration/7_kronolith_upgrade_resourceautoincrement.php | 2 +-
kronolith/migration/8_kronolith_upgrade_addgeo.php | 2 +-
kronolith/migration/9_kronolith_upgrade_addurl.php | 2 +-
kronolith/month.php | 2 +-
kronolith/new.php | 8 +-
kronolith/package.xml | 44 +-
kronolith/perms.php | 2 +-
kronolith/resources/create.php | 2 +-
kronolith/resources/delete.php | 2 +-
kronolith/resources/edit.php | 2 +-
kronolith/resources/groups/create.php | 2 +-
kronolith/resources/groups/delete.php | 2 +-
kronolith/resources/groups/edit.php | 2 +-
kronolith/search.php | 2 +-
kronolith/smartmobile.php | 2 +-
kronolith/test/Kronolith/Integration/AllDayTest.php | 2 +-
kronolith/test/Kronolith/Integration/Driver/Base.php | 2 +-
kronolith/test/Kronolith/Integration/Driver/KolabTest.php | 2 +-
kronolith/test/Kronolith/Integration/Driver/Sql/Base.php | 2 +-
.../test/Kronolith/Integration/Driver/Sql/Pdo/SqliteTest.php | 2 +-
kronolith/test/Kronolith/Integration/FromIcalendarTest.php | 15 +-
kronolith/test/Kronolith/Integration/Kronolith/Base.php | 2 +-
kronolith/test/Kronolith/Integration/Kronolith/KolabTest.php | 2 +-
kronolith/test/Kronolith/Integration/Kronolith/Sql/Base.php | 2 +-
.../test/Kronolith/Integration/Kronolith/Sql/Pdo/SqliteTest.php | 2 +-
kronolith/test/Kronolith/Integration/ToIcalendarTest.php | 2 +-
kronolith/test/Kronolith/TestCase.php | 2 +-
kronolith/test/Kronolith/fixtures/bug11688.ics | 53 +
kronolith/view.php | 2 +-
kronolith/week.php | 2 +-
kronolith/workweek.php | 2 +-
kronolith/year.php | 2 +-
luxor/bin/luxor-indexer | 2 +-
luxor/index.php | 2 +-
luxor/lib/Lang.php | 16 +-
luxor/lib/SimpleParse.php | 11 +-
luxor/locale/de/LC_MESSAGES/luxor.po | 2 +-
luxor/locale/es/LC_MESSAGES/luxor.po | 2 +-
luxor/locale/fi/LC_MESSAGES/luxor.po | 2 +-
luxor/locale/lv/LC_MESSAGES/luxor.mo | Bin 73340 -> 65421 bytes
luxor/locale/lv/LC_MESSAGES/luxor.po | 2 +-
luxor/locale/ro/LC_MESSAGES/luxor.po | 2 +-
luxor/search.php | 2 +-
luxor/source.php | 2 +-
luxor/symbol.php | 2 +-
mnemo/LICENSE | 2 +-
mnemo/bin/mnemo-convert-to-utf8 | 2 +-
mnemo/bin/mnemo-import-text-note | 2 +-
mnemo/data.php | 2 +-
mnemo/docs/CHANGES | 11 +-
mnemo/docs/CREDITS | 3 +
mnemo/docs/RELEASE_NOTES | 8 +-
mnemo/index.php | 2 +-
mnemo/lib/Ajax/Application.php | 2 +-
mnemo/lib/Ajax/Imple/EditNote.php | 2 +-
mnemo/lib/Api.php | 2 +-
mnemo/lib/Application.php | 7 +-
mnemo/lib/Block/Note.php | 2 +-
mnemo/lib/Driver.php | 2 +-
mnemo/lib/Driver/Kolab.php | 2 +-
mnemo/lib/Driver/Sql.php | 2 +-
mnemo/lib/Exception.php | 2 +-
mnemo/lib/Factory/Driver.php | 2 +-
mnemo/lib/Factory/Notepads.php | 2 +-
mnemo/lib/Mnemo.php | 2 +-
mnemo/lib/Notepads/Base.php | 2 +-
mnemo/lib/Notepads/Default.php | 2 +-
mnemo/lib/Notepads/Kolab.php | 2 +-
mnemo/list.php | 2 +-
mnemo/locale/bg/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/cs/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/da/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/de/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/es/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/et/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/fr/LC_MESSAGES/mnemo.mo | Bin 83949 -> 76224 bytes
mnemo/locale/fr/LC_MESSAGES/mnemo.po | 364 +-
mnemo/locale/hr/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/hu/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/it/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/ja/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/lt/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/lv/LC_MESSAGES/mnemo.mo | Bin 81491 -> 72876 bytes
mnemo/locale/lv/LC_MESSAGES/mnemo.po | 371 +-
mnemo/locale/nb/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/pl/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/pt_BR/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/ro/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/sk/LC_MESSAGES/mnemo.mo | Bin 73928 -> 72837 bytes
mnemo/locale/sk/LC_MESSAGES/mnemo.po | 515 +-
mnemo/locale/sl/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/sv/LC_MESSAGES/mnemo.po | 2 +-
mnemo/locale/tr/LC_MESSAGES/mnemo.po | 2 +-
mnemo/memo.php | 2 +-
mnemo/migration/1_mnemo_base_tables.php | 2 +-
mnemo/migration/2_mnemo_upgrade_autoincrement.php | 2 +-
mnemo/migration/3_mnemo_upgrade_sqlng.php | 2 +-
mnemo/migration/4_mnemo_upgrade_sqlhierarchical.php | 4 +-
mnemo/migration/5_mnemo_upgrade_sqlnghierarchical.php | 4 +-
mnemo/note/pdf.php | 2 +-
mnemo/notepads/create.php | 2 +-
mnemo/notepads/delete.php | 2 +-
mnemo/notepads/edit.php | 2 +-
mnemo/notes/index.php | 2 +-
mnemo/package.xml | 36 +-
mnemo/search.php | 2 +-
mnemo/test/Mnemo/TestCase.php | 2 +-
mnemo/test/Mnemo/Unit/Driver/KolabTest.php | 2 +-
mnemo/test/Mnemo/Unit/Factory/DriverTest.php | 2 +-
mnemo/test/Mnemo/Unit/Mnemo/Base.php | 2 +-
mnemo/test/Mnemo/Unit/Mnemo/KolabTest.php | 2 +-
mnemo/test/Mnemo/Unit/Mnemo/Sql/Base.php | 2 +-
mnemo/test/Mnemo/Unit/Mnemo/Sql/Pdo/SqliteTest.php | 2 +-
mnemo/view.php | 2 +-
nag/bin/nag-create-missing-add-histories-sql | 2 +-
nag/bin/nag-import-vtodos | 2 +-
nag/data.php | 2 +-
nag/docs/CHANGES | 10 +-
nag/docs/CREDITS | 2 +
nag/docs/RELEASE_NOTES | 12 +-
nag/index.php | 2 +-
nag/js/calendar.js | 2 +-
nag/js/smartmobile.js | 2 +-
nag/lib/Ajax/Application.php | 2 +-
nag/lib/Ajax/Application/Handler/Smartmobile.php | 2 +-
nag/lib/Ajax/Imple/TagAutoCompleter.php | 2 +-
nag/lib/Application.php | 2 +-
nag/lib/Driver/Kolab.php | 2 +-
nag/lib/Exception.php | 2 +-
nag/lib/Form/Type/NagSearchDue.php | 2 +-
nag/lib/Form/Type/NagTags.php | 2 +-
nag/lib/LoginTasks/Task/PurgeCompleted.php | 2 +-
nag/lib/Prefs/Special/TaskAlarms.php | 2 +-
nag/lib/Search.php | 4 +-
nag/lib/Smartmobile.php | 2 +-
nag/lib/TagBrowser.php | 4 +-
nag/lib/Tagger.php | 2 +-
nag/lib/View/List.php | 2 +-
nag/list.php | 2 +-
nag/locale/bg/LC_MESSAGES/nag.po | 2 +-
nag/locale/ca/LC_MESSAGES/nag.po | 2 +-
nag/locale/cs/LC_MESSAGES/nag.po | 2 +-
nag/locale/da/LC_MESSAGES/nag.po | 2 +-
nag/locale/de/LC_MESSAGES/nag.po | 2 +-
nag/locale/es/LC_MESSAGES/nag.po | 2 +-
nag/locale/fr/LC_MESSAGES/nag.mo | Bin 98703 -> 92463 bytes
nag/locale/fr/LC_MESSAGES/nag.po | 1007 +-
nag/locale/hr/LC_MESSAGES/nag.po | 2 +-
nag/locale/hu/LC_MESSAGES/nag.po | 2 +-
nag/locale/id/LC_MESSAGES/nag.po | 10 +-
nag/locale/ja/LC_MESSAGES/nag.po | 2 +-
nag/locale/lt/LC_MESSAGES/nag.po | 2 +-
nag/locale/lv/LC_MESSAGES/nag.mo | Bin 95431 -> 87560 bytes
nag/locale/lv/LC_MESSAGES/nag.po | 2 +-
nag/locale/nb/LC_MESSAGES/nag.po | 2 +-
nag/locale/nl/LC_MESSAGES/nag.po | 2 +-
nag/locale/pl/LC_MESSAGES/nag.po | 2 +-
nag/locale/pt/LC_MESSAGES/nag.po | 2 +-
nag/locale/pt_BR/LC_MESSAGES/nag.po | 2 +-
nag/locale/ro/LC_MESSAGES/nag.po | 2 +-
nag/locale/sk/LC_MESSAGES/nag.mo | Bin 87322 -> 88448 bytes
nag/locale/sl/LC_MESSAGES/nag.po | 2 +-
nag/locale/tr/LC_MESSAGES/nag.po | 2 +-
nag/locale/uk/LC_MESSAGES/nag.po | 2 +-
nag/migration/10_nag_upgrade_categoriestotags.php | 2 +-
nag/migration/11_nag_upgrade_smartlists.php | 2 +-
nag/migration/1_nag_base_tables.php | 2 +-
nag/migration/2_nag_upgrade_autoincrement.php | 2 +-
nag/migration/3_nag_upgrade_addalarmmethods.php | 2 +-
nag/migration/4_nag_upgrade_addcolor.php | 2 +-
nag/migration/5_nag_upgrade_systemshares.php | 2 +-
nag/migration/6_nag_upgrade_sqlng.php | 2 +-
nag/migration/7_nag_upgrade_sqlhierarchical.php | 2 +-
nag/migration/8_nag_upgrade_sqlnghierarchical.php | 2 +-
nag/migration/9_nag_upgrade_recurrence.php | 2 +-
nag/package.xml | 30 +-
nag/search.php | 2 +-
nag/smartmobile.php | 2 +-
nag/task.php | 2 +-
nag/tasklists/create.php | 2 +-
nag/tasklists/delete.php | 2 +-
nag/tasklists/edit.php | 2 +-
nag/tasks/index.php | 2 +-
nag/test/Nag/TestCase.php | 2 +-
nag/test/Nag/Unit/Driver/Base.php | 2 +-
nag/test/Nag/Unit/Driver/KolabTest.php | 2 +-
nag/test/Nag/Unit/Driver/Sql/Base.php | 2 +-
nag/test/Nag/Unit/Driver/Sql/Pdo/SqliteTest.php | 2 +-
nag/test/Nag/Unit/Factory/TasklistsTest.php | 2 +-
nag/test/Nag/Unit/Form/Task/Base.php | 2 +-
nag/test/Nag/Unit/Form/Task/KolabTest.php | 2 +-
nag/test/Nag/Unit/Form/Task/Sql/Base.php | 2 +-
nag/test/Nag/Unit/Form/Task/Sql/Pdo/SqliteTest.php | 2 +-
nag/test/Nag/Unit/Nag/Base.php | 2 +-
nag/test/Nag/Unit/Nag/KolabTest.php | 2 +-
nag/test/Nag/Unit/Nag/Sql/Base.php | 2 +-
nag/test/Nag/Unit/Nag/Sql/Pdo/SqliteTest.php | 2 +-
nag/view.php | 2 +-
operator/export.php | 2 +-
operator/graphgen.php | 2 +-
operator/index.php | 2 +-
operator/lib/Driver.php | 2 +-
operator/lib/Driver/asterisksql.php | 2 +-
operator/lib/Operator.php | 2 +-
operator/lib/api.php | 2 +-
operator/search.php | 2 +-
operator/viewgraph.php | 2 +-
passwd/docs/CHANGES | 2 +
passwd/docs/CREDITS | 3 +
passwd/index.php | 2 +-
passwd/lib/Application.php | 2 +-
passwd/lib/Driver.php | 2 +-
passwd/lib/Driver/Adsi.php | 2 +-
passwd/lib/Driver/Composite.php | 2 +-
passwd/lib/Driver/Expect.php | 2 +-
passwd/lib/Driver/Expectpecl.php | 2 +-
passwd/lib/Driver/Horde.php | 2 +-
passwd/lib/Driver/Http.php | 2 +-
passwd/lib/Driver/Kolab.php | 2 +-
passwd/lib/Driver/Ldap.php | 2 +-
passwd/lib/Driver/Pine.php | 2 +-
passwd/lib/Driver/Poppassd.php | 2 +-
passwd/lib/Driver/Procopen.php | 2 +-
passwd/lib/Driver/Pspasswd.php | 2 +-
passwd/lib/Driver/Servuftp.php | 2 +-
passwd/lib/Driver/Smbldap.php | 2 +-
passwd/lib/Driver/Smbpasswd.php | 2 +-
passwd/lib/Driver/Soap.php | 2 +-
passwd/lib/Driver/Sql.php | 2 +-
passwd/lib/Driver/Vmailmgr.php | 2 +-
passwd/lib/Driver/Vpopmail.php | 2 +-
passwd/lib/Exception.php | 2 +-
passwd/lib/Factory/Driver.php | 2 +-
passwd/lib/Passwd.php | 2 +-
passwd/lib/Test.php | 2 +-
passwd/locale/bg/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/cs/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/da/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/de/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/es/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/fr/LC_MESSAGES/passwd.mo | Bin 79698 -> 72725 bytes
passwd/locale/fr/LC_MESSAGES/passwd.po | 326 +-
passwd/locale/hr/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/hu/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/id/LC_MESSAGES/passwd.po | 10 +-
passwd/locale/ja/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/lt/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/lv/LC_MESSAGES/passwd.mo | Bin 80496 -> 72678 bytes
passwd/locale/lv/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/pl/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/pt_BR/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/ro/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/ru/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/sk/LC_MESSAGES/passwd.mo | Bin 72255 -> 70251 bytes
passwd/locale/sk/LC_MESSAGES/passwd.po | 256 +-
passwd/locale/sl/LC_MESSAGES/passwd.po | 2 +-
passwd/locale/tr/LC_MESSAGES/passwd.po | 2 +-
passwd/package.xml | 1 +
passwd/templates/index.html.php | 2 +-
passwd/test/Passwd/Autoload.php | 2 +-
pastie/LICENSE | 2 +-
pastie/index.php | 2 +-
pastie/lib/Application.php | 2 +-
pastie/lib/Driver.php | 2 +-
pastie/lib/Driver/Rdo.php | 2 +-
pastie/lib/Driver/Sql.php | 2 +-
pastie/lib/Entity/PasteMapper.php | 4 +-
pastie/lib/Factory/Driver.php | 2 +-
pastie/lib/Test.php | 2 +-
pastie/migration/1_pastie_base_tables.php | 2 +-
pastie/paste.php | 2 +-
pastie/scripts/sql/pastie.sql | 2 +-
pastie/view.php | 2 +-
sam/blacklist.php | 2 +-
sam/index.php | 2 +-
sam/lib/Application.php | 2 +-
sam/lib/Driver/Amavisd/Sql.php | 2 +-
sam/lib/Driver/Spamd/Base.php | 2 +-
sam/lib/Driver/Spamd/Ftp.php | 2 +-
sam/lib/Driver/Spamd/Ldap.php | 2 +-
sam/lib/Driver/Spamd/Sql.php | 2 +-
sam/lib/Exception.php | 2 +-
sam/lib/Factory/Driver.php | 2 +-
sam/lib/Form/Blacklist.php | 2 +-
sam/lib/Form/List.php | 2 +-
sam/lib/Form/Options.php | 2 +-
sam/lib/Form/Whitelist.php | 2 +-
sam/lib/Sam.php | 2 +-
sam/locale/cs/LC_MESSAGES/sam.po | 2 +-
sam/locale/de/LC_MESSAGES/sam.po | 2 +-
sam/locale/es/LC_MESSAGES/sam.po | 2 +-
sam/locale/et/LC_MESSAGES/sam.po | 2 +-
sam/locale/fr/LC_MESSAGES/sam.mo | Bin 75889 -> 68793 bytes
sam/locale/it/LC_MESSAGES/sam.po | 2 +-
sam/locale/lv/LC_MESSAGES/sam.mo | Bin 74454 -> 66583 bytes
sam/locale/lv/LC_MESSAGES/sam.po | 2 +-
sam/locale/ro/LC_MESSAGES/sam.po | 2 +-
sam/migration/1_sam_base_tables.php | 2 +-
sam/spam.php | 2 +-
sam/whitelist.php | 2 +-
sesha/admin.php | 2 +-
sesha/bin/sesha-add-stock | 2 +-
sesha/docs/CHANGES | 6 +
sesha/docs/RELEASE_NOTES | 4 +-
sesha/index.php | 2 +-
sesha/lib/Api.php | 2 +-
sesha/lib/Application.php | 4 +-
sesha/lib/Driver.php | 2 +-
sesha/lib/Driver/Rdo.php | 2 +-
sesha/lib/Entity/CategoryMapper.php | 4 +-
sesha/lib/Entity/PropertyMapper.php | 4 +-
sesha/lib/Entity/StockMapper.php | 4 +-
sesha/lib/Entity/Value.php | 37 +-
sesha/lib/Entity/ValueMapper.php | 4 +-
sesha/lib/Exception.php | 2 +-
sesha/lib/Form/Category.php | 2 +-
sesha/lib/Form/CategoryDelete.php | 2 +-
sesha/lib/Form/CategoryList.php | 2 +-
sesha/lib/Form/Property.php | 2 +-
sesha/lib/Form/PropertyDelete.php | 2 +-
sesha/lib/Form/PropertyList.php | 2 +-
sesha/lib/Form/Search.php | 2 +-
sesha/lib/Form/Stock.php | 2 +-
sesha/lib/Form/Type/Client.php | 2 +-
sesha/lib/Sesha.php | 2 +-
sesha/lib/Ui/VarRenderer/Stockedit_Html.php | 2 +-
sesha/lib/View/Base.php | 4 +-
sesha/lib/View/List.php | 2 +-
sesha/list.php | 6 +-
sesha/locale/de/LC_MESSAGES/sesha.po | 2 +-
sesha/locale/es/LC_MESSAGES/sesha.po | 2 +-
sesha/locale/fi/LC_MESSAGES/sesha.po | 2 +-
sesha/locale/lt/LC_MESSAGES/sesha.po | 2 +-
sesha/locale/lv/LC_MESSAGES/sesha.mo | Bin 77292 -> 69413 bytes
sesha/locale/lv/LC_MESSAGES/sesha.po | 2 +-
sesha/migration/1_sesha_base_tables.php | 2 +-
sesha/migration/2_sesha_upgrade_autoincrement.php | 2 +-
sesha/package.xml | 23 +-
sesha/search.php | 2 +-
sesha/stock.php | 2 +-
sesha/test/Sesha/Autoload.php | 2 +-
shout/lib/Ajax/Application.php | 2 +-
shout/lib/Ajax/Application/Handler.php | 2 +-
skeleton/LICENSE.ASL | 2 +-
skeleton/LICENSE.BSDL | 2 +-
skeleton/index.php | 2 +-
skeleton/lib/Ajax/Application.php | 2 +-
skeleton/lib/Api.php | 2 +-
skeleton/lib/Application.php | 2 +-
skeleton/lib/Driver.php | 2 +-
skeleton/lib/Driver/Sql.php | 2 +-
skeleton/lib/Exception.php | 4 +-
skeleton/lib/Factory/Driver.php | 2 +-
skeleton/lib/Test.php | 2 +-
skeleton/list.php | 2 +-
skeleton/locale/fi/LC_MESSAGES/skeleton.po | 2 +-
skeleton/migration/1_skeleton_base_tables.php | 2 +-
timeobjects/docs/CHANGES | 10 +-
timeobjects/docs/COPYING | 2 +-
timeobjects/lib/Application.php | 2 +-
timeobjects/lib/Driver.php | 2 +-
timeobjects/lib/Driver/Base.php | 2 +-
timeobjects/lib/Driver/FacebookEvents.php | 2 +-
timeobjects/lib/Driver/Weather.php | 2 +-
timeobjects/lib/Exception.php | 2 +-
timeobjects/locale/de/LC_MESSAGES/timeobjects.po | 2 +-
timeobjects/locale/et/LC_MESSAGES/timeobjects.po | 2 +-
timeobjects/locale/fi/LC_MESSAGES/timeobjects.po | 2 +-
timeobjects/locale/fr/LC_MESSAGES/timeobjects.mo | Bin 0 -> 67043 bytes
timeobjects/locale/fr/LC_MESSAGES/timeobjects.po | 73 +
timeobjects/locale/hu/LC_MESSAGES/timeobjects.po | 2 +-
timeobjects/locale/ja/LC_MESSAGES/timeobjects.po | 2 +-
timeobjects/locale/lv/LC_MESSAGES/timeobjects.mo | Bin 72063 -> 65215 bytes
timeobjects/locale/lv/LC_MESSAGES/timeobjects.po | 8 +-
timeobjects/locale/nl/LC_MESSAGES/timeobjects.po | 2 +-
timeobjects/locale/pl/LC_MESSAGES/timeobjects.po | 2 +-
timeobjects/locale/sv/LC_MESSAGES/timeobjects.po | 2 +-
timeobjects/package.xml | 31 +-
trean/LICENSE | 2 +-
trean/add.php | 2 +-
trean/bin/trean-backfill-crawler | 2 +-
trean/bin/trean-backfill-favicons | 2 +-
trean/bin/trean-backfill-remove-utm-params | 28 +
trean/bin/trean-url-checker | 2 +-
trean/browse.php | 2 +-
trean/docs/CHANGES | 11 +-
trean/docs/RELEASE_NOTES | 10 +-
trean/edit.php | 2 +-
trean/favicon.php | 2 +-
trean/index.php | 2 +-
trean/lib/Ajax/Application.php | 2 +-
trean/lib/Ajax/Imple/TagAutoCompleter.php | 2 +-
trean/lib/Api.php | 74 +-
trean/lib/Application.php | 2 +-
trean/lib/Block/Bookmarks.php | 2 +-
trean/lib/Block/Mostclicked.php | 2 +-
trean/lib/Bookmarks.php | 2 +-
trean/lib/Queue/Task/Crawl.php | 43 +-
trean/lib/TagBrowser.php | 2 +-
trean/lib/Tagger.php | 2 +-
trean/lib/Trean.php | 2 +-
trean/lib/Url.php | 22 +
trean/lib/View/BookmarkList.php | 2 +-
trean/locale/de/LC_MESSAGES/trean.po | 2 +-
trean/locale/es/LC_MESSAGES/trean.po | 2 +-
trean/locale/fr/LC_MESSAGES/trean.mo | Bin 79099 -> 71991 bytes
trean/locale/fr/LC_MESSAGES/trean.po | 2 +-
trean/locale/it/LC_MESSAGES/trean.po | 2 +-
trean/locale/lv/LC_MESSAGES/trean.mo | Bin 81875 -> 74012 bytes
trean/locale/lv/LC_MESSAGES/trean.po | 2 +-
trean/locale/nb/LC_MESSAGES/trean.po | 2 +-
trean/locale/nl/LC_MESSAGES/trean.po | 2 +-
trean/locale/pl/LC_MESSAGES/trean.po | 2 +-
trean/locale/sl/LC_MESSAGES/trean.po | 2 +-
trean/locale/tr/LC_MESSAGES/trean.po | 2 +-
trean/migration/1_trean_base_tables.php | 2 +-
trean/migration/2_trean_upgrade_folders_to_tags_pre.php | 2 +-
trean/migration/3_trean_upgrade_folders_to_tags.php | 2 +-
trean/migration/4_trean_upgrade_folders_to_tags_post.php | 2 +-
trean/migration/5_trean_add_favicon_url.php | 2 +-
trean/package.xml | 41 +-
trean/redirect.php | 2 +-
trean/rss.php | 2 +-
trean/search.php | 8 +-
trean/templates/add.html.php | 2 +-
turba/LICENSE | 2 +-
turba/add.php | 2 +-
turba/addressbooks/create.php | 2 +-
turba/addressbooks/delete.php | 2 +-
turba/addressbooks/edit.php | 2 +-
turba/bin/turba-import-squirrelmail-file-abook | 2 +-
turba/bin/turba-import-squirrelmail-sql-abook | 2 +-
turba/bin/turba-import-vcards | 2 +-
turba/bin/turba-public-to-horde-share | 2 +-
turba/browse.php | 2 +-
turba/contact.php | 2 +-
turba/data.php | 15 +-
turba/delete.php | 2 +-
turba/deletefile.php | 2 +-
turba/docs/CHANGES | 13 +-
turba/docs/CREDITS | 2 +
turba/docs/RELEASE_NOTES | 6 +-
turba/edit.php | 2 +-
turba/index.php | 2 +-
turba/js/columnprefs.js | 2 +-
turba/js/minisearch.js | 2 +-
turba/js/search.js | 2 +-
turba/js/smartmobile.js | 2 +-
turba/lib/Ajax/Application.php | 2 +-
turba/lib/Ajax/Application/Handler/Minisearch.php | 2 +-
turba/lib/Ajax/Application/Handler/Smartmobile.php | 2 +-
turba/lib/Api.php | 2 +-
turba/lib/Application.php | 4 +-
turba/lib/Block/Minisearch.php | 2 +-
turba/lib/Data/Ldif.php | 169 +-
turba/lib/Driver.php | 13 +-
turba/lib/Driver/Facebook.php | 2 +-
turba/lib/Driver/Favourites.php | 2 +-
turba/lib/Driver/Group.php | 2 +-
turba/lib/Driver/Imsp.php | 2 +-
turba/lib/Driver/Kolab.php | 2 +-
turba/lib/Driver/Ldap.php | 2 +-
turba/lib/Driver/Prefs.php | 2 +-
turba/lib/Driver/Share.php | 16 +-
turba/lib/Driver/Sql.php | 2 +-
turba/lib/Driver/Vbook.php | 2 +-
turba/lib/Exception.php | 2 +-
turba/lib/Exception/ObjectExists.php | 2 +-
turba/lib/Factory/Driver.php | 2 +-
turba/lib/List.php | 2 +-
turba/lib/LoginTasks/SystemTask/Upgrade.php | 2 +-
turba/lib/Prefs/Special/Columnselect.php | 2 +-
turba/lib/Smartmobile.php | 2 +-
turba/lib/Test.php | 2 +-
turba/lib/Turba.php | 2 +-
turba/lib/View/Browse.php | 2 +-
turba/lib/View/Duplicates.php | 2 +-
turba/lib/View/List.php | 2 +-
turba/locale/bg/LC_MESSAGES/turba.po | 2 +-
turba/locale/ca/LC_MESSAGES/turba.po | 2 +-
turba/locale/cs/LC_MESSAGES/turba.po | 2 +-
turba/locale/da/LC_MESSAGES/turba.po | 2 +-
turba/locale/de/LC_MESSAGES/turba.po | 4 +-
turba/locale/es/LC_MESSAGES/turba.po | 2 +-
turba/locale/fr/LC_MESSAGES/turba.mo | Bin 105492 -> 98535 bytes
turba/locale/fr/LC_MESSAGES/turba.po | 136 +-
turba/locale/hr/LC_MESSAGES/turba.po | 2 +-
turba/locale/hu/LC_MESSAGES/turba.po | 2 +-
turba/locale/is/LC_MESSAGES/turba.po | 2 +-
turba/locale/ja/LC_MESSAGES/turba.po | 2 +-
turba/locale/ko/LC_MESSAGES/turba.po | 2 +-
turba/locale/lt/LC_MESSAGES/turba.po | 2 +-
turba/locale/lv/LC_MESSAGES/turba.mo | Bin 102352 -> 94304 bytes
turba/locale/lv/LC_MESSAGES/turba.po | 770 +-
turba/locale/nb/LC_MESSAGES/turba.po | 2 +-
turba/locale/pl/LC_MESSAGES/turba.po | 2 +-
turba/locale/pt_BR/LC_MESSAGES/turba.po | 2 +-
turba/locale/ro/LC_MESSAGES/turba.po | 2 +-
turba/locale/sk/LC_MESSAGES/turba.mo | Bin 94557 -> 95619 bytes
turba/locale/sk/LC_MESSAGES/turba.po | 70 +-
turba/locale/sl/LC_MESSAGES/turba.po | 2 +-
turba/locale/tr/LC_MESSAGES/turba.po | 2 +-
turba/merge.php | 2 +-
turba/migration/1_turba_base_tables.php | 2 +-
turba/migration/2_turba_upgrade_autoincrement.php | 2 +-
turba/migration/3_turba_upgrade_sqlng.php | 2 +-
turba/migration/4_turba_upgrade_sqlhierarchical.php | 2 +-
turba/migration/5_turba_upgrade_sqlnghierarchical.php | 2 +-
turba/migration/6_turba_upgrade_updateschema.php | 2 +-
turba/package.xml | 30 +-
turba/search.php | 2 +-
turba/smartmobile.php | 2 +-
turba/test/Turba/TestCase.php | 2 +-
turba/test/Turba/ToDo/ApiTest.php | 2 +-
turba/test/Turba/ToDo/KolabTestBase.php | 2 +-
turba/test/Turba/Unit/Driver/Base.php | 2 +-
turba/test/Turba/Unit/Driver/KolabTest.php | 2 +-
turba/test/Turba/Unit/Driver/Sql/Base.php | 2 +-
turba/test/Turba/Unit/Driver/Sql/Pdo/SqliteTest.php | 2 +-
turba/test/Turba/Unit/Turba/Base.php | 2 +-
turba/test/Turba/Unit/Turba/KolabTest.php | 2 +-
turba/test/Turba/Unit/Turba/Sql/Base.php | 2 +-
turba/test/Turba/Unit/Turba/Sql/Pdo/SqliteTest.php | 2 +-
turba/vcard.php | 2 +-
turba/view.php | 2 +-
ulaform/delete.php | 2 +-
ulaform/deletefield.php | 2 +-
ulaform/display.php | 2 +-
ulaform/edit.php | 2 +-
ulaform/fields.php | 2 +-
ulaform/forms.php | 2 +-
ulaform/genhtml.php | 2 +-
ulaform/index.php | 2 +-
ulaform/lib/Action.php | 2 +-
ulaform/lib/Action/Mailto.php | 2 +-
ulaform/lib/Action/Sql.php | 2 +-
ulaform/lib/Api.php | 2 +-
ulaform/lib/Application.php | 2 +-
ulaform/lib/Block/Form.php | 2 +-
ulaform/lib/Driver.php | 2 +-
ulaform/lib/Driver/Sql.php | 2 +-
ulaform/lib/Exception.php | 2 +-
ulaform/lib/Factory/Action.php | 2 +-
ulaform/lib/Factory/Driver.php | 2 +-
ulaform/lib/Test.php | 2 +-
ulaform/lib/Ulaform.php | 2 +-
ulaform/locale/de/LC_MESSAGES/ulaform.po | 2 +-
ulaform/locale/es/LC_MESSAGES/ulaform.po | 2 +-
ulaform/locale/it/LC_MESSAGES/ulaform.po | 2 +-
ulaform/locale/lt/LC_MESSAGES/ulaform.po | 2 +-
ulaform/locale/lv/LC_MESSAGES/ulaform.mo | Bin 76573 -> 68718 bytes
ulaform/locale/lv/LC_MESSAGES/ulaform.po | 2 +-
ulaform/migration/1_ulaform_base_tables.php | 2 +-
ulaform/migration/2_ulaform_upgrade_autoincrement.php | 2 +-
ulaform/migration/3_ulaform_upgrade_actions.php | 2 +-
ulaform/sortfields.php | 2 +-
vilma/LICENSE | 2 +-
vilma/domains/delete.php | 2 +-
vilma/domains/edit.php | 2 +-
vilma/domains/index.php | 2 +-
vilma/index.php | 2 +-
vilma/lib/Driver.php | 2 +-
vilma/lib/Driver/Sql.php | 2 +-
vilma/lib/MailboxDriver.php | 2 +-
vilma/lib/MailboxDriver/Imap.php | 2 +-
vilma/lib/MailboxDriver/Maildrop.php | 2 +-
vilma/lib/MailboxDriver/Null.php | 2 +-
vilma/lib/Test.php | 2 +-
vilma/lib/Vilma.php | 2 +-
vilma/locale/de/LC_MESSAGES/vilma.po | 2 +-
vilma/locale/es/LC_MESSAGES/vilma.po | 2 +-
vilma/locale/fi/LC_MESSAGES/vilma.po | 2 +-
vilma/locale/it/LC_MESSAGES/vilma.po | 2 +-
vilma/locale/lt/LC_MESSAGES/vilma.po | 2 +-
vilma/locale/lv/LC_MESSAGES/vilma.mo | Bin 78896 -> 71057 bytes
vilma/locale/lv/LC_MESSAGES/vilma.po | 2 +-
vilma/migration/1_vilma_base_tables.php | 2 +-
vilma/migration/2_vilma_drop_domainkey.php | 2 +-
vilma/users/delete.php | 2 +-
vilma/users/edit.php | 2 +-
vilma/users/editAlias.php | 2 +-
vilma/users/editForward.php | 2 +-
vilma/users/index.php | 2 +-
vilma/virtuals/delete.php | 2 +-
vilma/virtuals/edit.php | 2 +-
vilma/virtuals/index.php | 2 +-
whups/LICENSE | 2 +-
whups/admin/index.php | 4 +-
whups/bin/whups-bugzilla-import | 2 +-
whups/bin/whups-convert-to-utf8 | 2 +-
whups/bin/whups-obliterate | 2 +-
whups/bin/whups-reminders | 2 +-
whups/docs/CHANGES | 1 +
whups/index.php | 2 +-
whups/lib/Ajax/Imple/ContactAutoCompleter.php | 2 +-
whups/lib/Application.php | 20 +-
whups/lib/Driver.php | 2 +-
whups/lib/Driver/Sql.php | 2 +-
whups/lib/Form/Action/whups_reload.php | 2 +-
whups/lib/Form/AddListener.php | 2 +-
whups/lib/Form/Admin/AddAttribute.php | 2 +-
whups/lib/Form/Admin/AddPriority.php | 2 +-
whups/lib/Form/Admin/AddQueue.php | 2 +-
whups/lib/Form/Admin/AddReply.php | 2 +-
whups/lib/Form/Admin/AddState.php | 2 +-
whups/lib/Form/Admin/AddType.php | 2 +-
whups/lib/Form/Admin/AddUser.php | 2 +-
whups/lib/Form/Admin/AddVersion.php | 2 +-
whups/lib/Form/Admin/CloneType.php | 2 +-
whups/lib/Form/Admin/DefaultPriority.php | 2 +-
whups/lib/Form/Admin/DefaultState.php | 2 +-
whups/lib/Form/Admin/DeleteAttribute.php | 2 +-
whups/lib/Form/Admin/DeletePriority.php | 2 +-
whups/lib/Form/Admin/DeleteQueue.php | 2 +-
whups/lib/Form/Admin/DeleteReply.php | 2 +-
whups/lib/Form/Admin/DeleteState.php | 2 +-
whups/lib/Form/Admin/DeleteType.php | 2 +-
whups/lib/Form/Admin/DeleteVersion.php | 2 +-
whups/lib/Form/Admin/EditAttributeStepOne.php | 2 +-
whups/lib/Form/Admin/EditAttributeStepTwo.php | 2 +-
whups/lib/Form/Admin/EditPriorityStepOne.php | 2 +-
whups/lib/Form/Admin/EditPriorityStepTwo.php | 2 +-
whups/lib/Form/Admin/EditQueueStepOne.php | 2 +-
whups/lib/Form/Admin/EditQueueStepTwo.php | 2 +-
whups/lib/Form/Admin/EditReplyStepOne.php | 2 +-
whups/lib/Form/Admin/EditReplyStepTwo.php | 2 +-
whups/lib/Form/Admin/EditStateStepOne.php | 2 +-
whups/lib/Form/Admin/EditStateStepTwo.php | 2 +-
whups/lib/Form/Admin/EditTypeStepOne.php | 2 +-
whups/lib/Form/Admin/EditTypeStepTwo.php | 2 +-
whups/lib/Form/Admin/EditUser.php | 2 +-
whups/lib/Form/Admin/EditVersionStepOne.php | 2 +-
whups/lib/Form/Admin/EditVersionStepTwo.php | 2 +-
whups/lib/Form/DeleteListener.php | 2 +-
whups/lib/Form/InsertBranch.php | 2 +-
whups/lib/Form/Query/Parameter.php | 2 +-
whups/lib/Form/Query/UserCriterion.php | 2 +-
whups/lib/Form/Queue/StepOne.php | 2 +-
whups/lib/Form/Queue/StepThree.php | 2 +-
whups/lib/Form/Queue/StepTwo.php | 2 +-
whups/lib/Form/Renderer/Comment.php | 2 +-
whups/lib/Form/Renderer/Query.php | 2 +-
whups/lib/Form/SendReminder.php | 2 +-
whups/lib/Form/SetTypeStepOne.php | 2 +-
whups/lib/Form/SetTypeStepTwo.php | 2 +-
whups/lib/Form/Ticket/CreateStepFour.php | 2 +-
whups/lib/Form/Ticket/CreateStepOne.php | 2 +-
whups/lib/Form/Ticket/CreateStepThree.php | 2 +-
whups/lib/Form/Ticket/CreateStepTwo.php | 2 +-
whups/lib/Form/Ticket/Delete.php | 2 +-
whups/lib/LoginTasks/SystemTask/Upgrade.php | 2 +-
whups/lib/Mail.php | 2 +-
whups/lib/Mime/Viewer/Zip.php | 2 +-
whups/lib/Prefs/Special/Sourceselect.php | 2 +-
whups/lib/Query.php | 2 +-
whups/lib/Query/Manager.php | 2 +-
whups/lib/Reports.php | 2 +-
whups/lib/Ticket.php | 2 +-
whups/lib/Ui/VarRenderer/Whups.php | 2 +-
whups/lib/View/Base.php | 2 +-
whups/lib/View/Results.php | 2 +-
whups/lib/View/SavedQueries.php | 2 +-
whups/lib/Whups.php | 19 +-
whups/lib/tests/ApiTest.php | 2 +-
whups/lib/tests/TestBase.php | 2 +-
whups/locale/bg/LC_MESSAGES/whups.po | 2 +-
whups/locale/de/LC_MESSAGES/whups.po | 2 +-
whups/locale/es/LC_MESSAGES/whups.po | 2 +-
whups/locale/fr/LC_MESSAGES/whups.mo | Bin 108777 -> 101691 bytes
whups/locale/hu/LC_MESSAGES/whups.po | 2 +-
whups/locale/it/LC_MESSAGES/whups.po | 2 +-
whups/locale/lt/LC_MESSAGES/whups.po | 2 +-
whups/locale/lv/LC_MESSAGES/whups.mo | Bin 94668 -> 86808 bytes
whups/locale/lv/LC_MESSAGES/whups.po | 2 +-
whups/locale/nb/LC_MESSAGES/whups.po | 2 +-
whups/locale/nl/LC_MESSAGES/whups.po | 2 +-
whups/locale/pl/LC_MESSAGES/whups.po | 2 +-
whups/locale/pt_BR/LC_MESSAGES/whups.po | 2 +-
whups/locale/ro/LC_MESSAGES/whups.po | 2 +-
whups/locale/sl/LC_MESSAGES/whups.po | 2 +-
whups/locale/tr/LC_MESSAGES/whups.po | 2 +-
whups/locale/uk/LC_MESSAGES/whups.po | 2 +-
whups/migration/1_whups_base_tables.php | 2 +-
whups/migration/2_whups_autoincrement_shares.php | 2 +-
whups/migration/3_whups_upgrade_sqlng.php | 2 +-
whups/migration/4_whups_upgrade_sqlhierarchical.php | 2 +-
whups/migration/5_whups_upgrade_sqlnghierarchical.php | 2 +-
whups/migration/6_whups_upgrade_transactions.php | 2 +-
whups/migration/7_whups_upgrade_autoincrement.php | 2 +-
whups/migration/8_whups_add_attribute_index.php | 2 +-
whups/mybugs.php | 4 +-
whups/mybugs_edit.php | 4 +-
whups/opensearch.php | 2 +-
whups/package.xml | 1 +
whups/query/index.php | 4 +-
whups/query/rss.php | 2 +-
whups/query/run.php | 4 +-
whups/queue/index.php | 2 +-
whups/queue/rss.php | 2 +-
whups/reports.php | 4 +-
whups/search.php | 6 +-
whups/search/rss.php | 2 +-
whups/templates/menu.inc | 7 -
whups/themes/default/screen.css | 14 +
whups/ticket/comment.php | 4 +-
whups/ticket/create.php | 4 +-
whups/ticket/delete.php | 4 +-
whups/ticket/delete_attachment.php | 2 +-
whups/ticket/delete_history.php | 2 +-
whups/ticket/index.php | 9 +-
whups/ticket/queue.php | 4 +-
whups/ticket/rss.php | 2 +-
whups/ticket/type.php | 4 +-
whups/ticket/update.php | 4 +-
whups/ticket/watch.php | 4 +-
whups/view.php | 2 +-
wicked/bin/wicked-convert-to-utf8 | 2 +-
wicked/diff.php | 2 +-
wicked/display.php | 2 +-
wicked/docs/CREDITS | 1 +
wicked/history.php | 2 +-
wicked/index.php | 2 +-
wicked/lib/Api.php | 2 +-
wicked/lib/Application.php | 2 +-
wicked/lib/Block/Page.php | 2 +-
wicked/lib/Driver.php | 2 +-
wicked/lib/Exception.php | 2 +-
wicked/lib/Factory/Driver.php | 2 +-
wicked/lib/Page.php | 2 +-
wicked/lib/Page/AddPage.php | 2 +-
wicked/lib/Page/AllPages.php | 2 +-
wicked/lib/Page/AttachedFiles.php | 2 +-
wicked/lib/Page/BackLinks.php | 2 +-
wicked/lib/Page/DeletePage.php | 2 +-
wicked/lib/Page/EditPage.php | 2 +-
wicked/lib/Page/LeastPopular.php | 2 +-
wicked/lib/Page/LikePages.php | 2 +-
wicked/lib/Page/MergeOrRename.php | 12 +-
wicked/lib/Page/MostPopular.php | 2 +-
wicked/lib/Page/NewPage.php | 2 +-
wicked/lib/Page/RecentChanges.php | 2 +-
wicked/lib/Page/RevertPage.php | 2 +-
wicked/lib/Page/Search.php | 2 +-
wicked/lib/Page/StandardPage.php | 2 +-
wicked/lib/Page/SyncDiff.php | 2 +-
wicked/lib/Page/SyncPages.php | 2 +-
wicked/lib/Sync.php | 2 +-
wicked/lib/Sync/Wicked.php | 2 +-
wicked/lib/Test.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Bold.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Code.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Deflist.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Freelink.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Heading.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Links.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/List.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Newline.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Paragraph.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Raw.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Toc.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Tt.php | 2 +-
wicked/lib/Text_Wiki/Render/Rst/Url.php | 2 +-
wicked/lib/Wicked.php | 2 +-
wicked/locale/de/LC_MESSAGES/wicked.po | 2 +-
wicked/locale/es/LC_MESSAGES/wicked.po | 2 +-
wicked/locale/it/LC_MESSAGES/wicked.po | 2 +-
wicked/locale/ja/LC_MESSAGES/wicked.po | 2 +-
wicked/locale/lv/LC_MESSAGES/wicked.mo | Bin 76136 -> 68313 bytes
wicked/locale/lv/LC_MESSAGES/wicked.po | 2 +-
wicked/locale/pt_BR/LC_MESSAGES/wicked.po | 2 +-
wicked/locale/sk/LC_MESSAGES/wicked.mo | Bin 78042 -> 78902 bytes
wicked/locale/sk/LC_MESSAGES/wicked.po | 239 +-
wicked/locale/sl/LC_MESSAGES/wicked.po | 2 +-
wicked/locale/uk/LC_MESSAGES/wicked.po | 2 +-
wicked/locale/zh_TW/LC_MESSAGES/wicked.po | 2 +-
wicked/migration/1_wicked_base_tables.php | 2 +-
wicked/migration/2_wicked_autoincrement_page_id.php | 2 +-
wicked/migration/3_wicked_unsigned_ints.php | 2 +-
wicked/migration/4_wicked_single_revisions.php | 2 +-
wicked/migration/5_wicked_rename_pages.php | 2 +-
wicked/opensearch.php | 2 +-
wicked/preview.php | 2 +-
wicked/test/Wicked/Autoload.php | 2 +-
wicked/test/Wicked/TestCase.php | 2 +-
wicked/test/Wicked/Unit/Driver/SqlTest.php | 2 +-
wicked/test/Wicked/Unit/RstTest.php | 2 +-
6492 files changed, 31164 insertions(+), 28593 deletions(-)
http://git.horde.org/horde-git/-/commit/63a7a308028e5da698b1a5374ffd64572c5a5c42
-----------------------------------------------------------------------
commit fb9960550715b2352f5c163af360445805798d6b
Author: Jan Schneider <jan at horde.org>
Date: Wed Jan 23 11:59:16 2013 +0100
Fix class layout.
ingo/config/prefs.php | 2 +-
ingo/lib/Ingo.php | 10 +
ingo/lib/Script.php | 335 -------------------------
ingo/lib/Script/Base.php | 326 ++++++++++++++++++++++++
ingo/lib/Script/Imap.php | 8 +-
ingo/lib/Script/Maildrop.php | 2 +-
ingo/lib/Script/Procmail.php | 2 +-
ingo/lib/Script/Sieve.php | 2 +-
ingo/templates/basic/filters/filters.html.php | 4 +-
9 files changed, 346 insertions(+), 345 deletions(-)
delete mode 100644 ingo/lib/Script.php
create mode 100644 ingo/lib/Script/Base.php
http://git.horde.org/horde-git/-/commit/fb9960550715b2352f5c163af360445805798d6b
-----------------------------------------------------------------------
commit 5bfebcbc69db96ae3f87667536dcaafff6a5a676
Author: Jan Schneider <jan at horde.org>
Date: Wed Jan 23 12:48:10 2013 +0100
Use single hasFeature() method instead of separate methods for each feature.
ingo/config/prefs.php | 2 +-
ingo/docs/UPGRADING | 9 +++
ingo/filters.php | 9 +--
ingo/lib/Api.php | 21 ++----
ingo/lib/Application.php | 10 +--
ingo/lib/Ingo.php | 2 +-
ingo/lib/Script/Base.php | 147 +++++++++++-------------------------------
ingo/lib/Script/Imap.php | 68 +++++++-------------
ingo/lib/Script/Maildrop.php | 46 ++++++-------
ingo/lib/Script/Procmail.php | 39 +++++------
ingo/lib/Script/Sieve.php | 46 +++++--------
ingo/rule.php | 8 +-
ingo/script.php | 4 +-
13 files changed, 149 insertions(+), 262 deletions(-)
http://git.horde.org/horde-git/-/commit/5bfebcbc69db96ae3f87667536dcaafff6a5a676
-----------------------------------------------------------------------
commit a79c02e7e91f843ae0e21803e075134532c975a3
Author: Jan Schneider <jan at horde.org>
Date: Wed Jan 23 13:02:46 2013 +0100
Fix injecting dependencies into IMAP driver.
ingo/lib/Factory/Script.php | 5 ++++-
ingo/lib/Script/Imap.php | 11 ++---------
2 files changed, 6 insertions(+), 10 deletions(-)
http://git.horde.org/horde-git/-/commit/a79c02e7e91f843ae0e21803e075134532c975a3
-----------------------------------------------------------------------
commit 775771f79d1cfd6b69612c909fbcf6480dca09d7
Author: Jan Schneider <jan at horde.org>
Date: Wed Jan 23 18:43:35 2013 +0100
Implement composite transports.
This allows for individual transport backends for different filter rules.
ingo/config/backends.php | 323 ++++++++++++++------------
ingo/docs/CHANGES | 1 +
ingo/docs/UPGRADING | 7 +
ingo/lib/Application.php | 7 +-
ingo/lib/Factory/Script.php | 3 +
ingo/lib/Factory/Transport.php | 19 +-
ingo/lib/Ingo.php | 47 +++--
ingo/lib/Script/Base.php | 60 ++++-
ingo/lib/Script/Imap.php | 1 +
ingo/lib/Script/Item.php | 24 ++
ingo/lib/Script/Maildrop.php | 92 ++------
ingo/lib/Script/Maildrop/Comment.php | 9 +-
ingo/lib/Script/Maildrop/Recipe.php | 6 +-
ingo/lib/Script/Maildrop/Variable.php | 6 +-
ingo/lib/Script/Procmail.php | 91 +++-----
ingo/lib/Script/Procmail/Comment.php | 9 +-
ingo/lib/Script/Procmail/Default.php | 47 ++++
ingo/lib/Script/Procmail/Recipe.php | 5 +-
ingo/lib/Script/Procmail/Variable.php | 6 +-
ingo/lib/Script/Sieve.php | 128 +++++------
ingo/lib/Script/Sieve/Action.php | 19 +--
ingo/lib/Script/Sieve/Action/Addflag.php | 15 +-
ingo/lib/Script/Sieve/Action/Discard.php | 4 +-
ingo/lib/Script/Sieve/Action/Fileinto.php | 4 +-
ingo/lib/Script/Sieve/Action/Flag.php | 6 +-
ingo/lib/Script/Sieve/Action/Keep.php | 4 +-
ingo/lib/Script/Sieve/Action/Notify.php | 4 +-
ingo/lib/Script/Sieve/Action/Redirect.php | 4 +-
ingo/lib/Script/Sieve/Action/Reject.php | 4 +-
ingo/lib/Script/Sieve/Action/Removeflag.php | 6 +-
ingo/lib/Script/Sieve/Action/Stop.php | 4 +-
ingo/lib/Script/Sieve/Action/Vacation.php | 4 +-
ingo/lib/Script/Sieve/Comment.php | 11 +-
ingo/lib/Script/Sieve/Else.php | 10 +-
ingo/lib/Script/Sieve/Elsif.php | 12 +-
ingo/lib/Script/Sieve/If.php | 16 +-
ingo/lib/Script/Sieve/Require.php | 52 ++++
ingo/lib/Script/Sieve/Test.php | 16 +-
ingo/lib/Script/Sieve/Test/Address.php | 4 +-
ingo/lib/Script/Sieve/Test/Allof.php | 8 +-
ingo/lib/Script/Sieve/Test/Anyof.php | 8 +-
ingo/lib/Script/Sieve/Test/Body.php | 4 +-
ingo/lib/Script/Sieve/Test/Exists.php | 4 +-
ingo/lib/Script/Sieve/Test/False.php | 4 +-
ingo/lib/Script/Sieve/Test/Header.php | 4 +-
ingo/lib/Script/Sieve/Test/Not.php | 6 +-
ingo/lib/Script/Sieve/Test/Relational.php | 4 +-
ingo/lib/Script/Sieve/Test/Size.php | 4 +-
ingo/lib/Script/Sieve/Test/True.php | 4 +-
ingo/lib/Script/String.php | 43 ++++
ingo/lib/Transport/Base.php | 9 +-
ingo/lib/Transport/Ldap.php | 18 +-
ingo/lib/Transport/Timsieved.php | 57 ++----
ingo/lib/Transport/Vfs.php | 39 ++--
ingo/package.xml | 29 ++-
ingo/script.php | 41 +++--
ingo/templates/basic/script/_script.html.php | 6 +
ingo/templates/basic/script/script.html.php | 17 +--
58 files changed, 770 insertions(+), 629 deletions(-)
create mode 100644 ingo/lib/Script/Item.php
create mode 100644 ingo/lib/Script/Procmail/Default.php
create mode 100644 ingo/lib/Script/Sieve/Require.php
create mode 100644 ingo/lib/Script/String.php
create mode 100644 ingo/templates/basic/script/_script.html.php
http://git.horde.org/horde-git/-/commit/775771f79d1cfd6b69612c909fbcf6480dca09d7
-----------------------------------------------------------------------
commit 53250be95b474be4a45653d8a9ecba09d4676fe4
Merge: 775771f 58e6ea8
Author: Jan Schneider <jan at horde.org>
Date: Thu Jan 24 10:27:02 2013 +0100
Merge remote-tracking branch 'origin/master' into ingo_3_1
Conflicts:
ingo/package.xml
.gitattributes | 7 -
.gitignore | 39 +--
ansel/config/conf.xml | 5 -
ansel/js/widgets/geotag.js | 6 +-
ansel/lib/Ajax/Application/Handler.php | 20 +-
ansel/lib/Ansel.php | 19 ++
ansel/lib/Application.php | 65 ++--
ansel/lib/View/Upload.php | 32 ++-
ansel/lib/Widget/Geotag.php | 180 ++++-------
ansel/map_edit.php | 126 ++------
ansel/templates/image/plupload.inc | 2 +-
ansel/templates/map_edit.html.php | 37 +++
ansel/templates/widgets/actions.html.php | 4 +-
ansel/templates/widgets/geotag.html.php | 30 ++
ansel/themes/default/graphics/add.png | Bin 496 -> 0 bytes
ansel/themes/default/graphics/allgalleries.png | Bin 0 -> 646 bytes
ansel/themes/default/graphics/ansel.png | Bin 493 -> 454 bytes
ansel/themes/default/graphics/arrow_switch.png | Bin 650 -> 680 bytes
ansel/themes/default/graphics/bookmark.png | Bin 0 -> 292 bytes
ansel/themes/default/graphics/browse.png | Bin 492 -> 578 bytes
ansel/themes/default/graphics/down.png | Bin 241 -> 384 bytes
ansel/themes/default/graphics/faces.png | Bin 0 -> 609 bytes
ansel/themes/default/graphics/favicon.ico | Bin 1386 -> 1742 bytes
ansel/themes/default/graphics/galleries.png | Bin 492 -> 454 bytes
ansel/themes/default/graphics/image_add.png | Bin 208 -> 0 bytes
ansel/themes/default/graphics/mygalleries.png | Bin 492 -> 454 bytes
ansel/themes/default/graphics/photomarker-shadow.png | Bin 0 -> 947 bytes
ansel/themes/default/graphics/photomarker.png | Bin 0 -> 598 bytes
ansel/themes/default/graphics/plus.png | Bin 0 -> 626 bytes
ansel/themes/default/graphics/problem.png | Bin 124 -> 591 bytes
ansel/themes/default/graphics/slideshow_next.png | Bin 255 -> 451 bytes
ansel/themes/default/graphics/slideshow_pause.png | Bin 259 -> 222 bytes
ansel/themes/default/graphics/slideshow_play.png | Bin 234 -> 345 bytes
ansel/themes/default/graphics/slideshow_prev.png | Bin 264 -> 451 bytes
ansel/themes/default/graphics/success.png | Bin 336 -> 0 bytes
ansel/themes/default/graphics/text.png | Bin 104 -> 4109 bytes
ansel/themes/default/graphics/twitter.png | Bin 493 -> 0 bytes
ansel/themes/default/graphics/up.png | Bin 244 -> 370 bytes
ansel/themes/default/screen.css | 18 +-
framework/Imap_Client/lib/Horde/Imap/Client/Base.php | 2 +-
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 56 ++--
framework/Imap_Client/package.xml | 4 +-
framework/Imap_Client/test/Horde/Imap/Client/SocketTest.php | 11 +-
horde/js/plupload/uploader.js | 26 +-
horde/themes/default/graphics/map/marker-blue.png | Bin 714 -> 0 bytes
horde/themes/default/graphics/map/marker-gold.png | Bin 651 -> 0 bytes
horde/themes/default/graphics/map/marker-green.png | Bin 702 -> 0 bytes
horde/themes/default/graphics/mime/compressed.png | Bin 672 -> 732 bytes
horde/themes/default/graphics/uploader/backgrounds.gif | Bin 2977 -> 0 bytes
horde/themes/default/graphics/uploader/up.png | Bin 480 -> 0 bytes
horde/themes/default/screen.css | 26 +-
ingo/docs/CHANGES | 2 +
ingo/lib/Form/Vacation.php | 4 +-
ingo/package.xml | 1 +
kronolith/js/kronolith.js | 20 +-
nag/lib/Api.php | 1 +
56 files changed, 355 insertions(+), 388 deletions(-)
http://git.horde.org/horde-git/-/commit/53250be95b474be4a45653d8a9ecba09d4676fe4
-----------------------------------------------------------------------
commit d2c9d8f0aed14b761137593c06ff32c199537d34
Merge: 53250be be0b272
Author: Jan Schneider <jan at horde.org>
Date: Thu Jan 31 20:30:28 2013 +0100
Merge branch 'master' into ingo_3_1
Conflicts:
ingo/config/backends.php
ingo/package.xml
.gitattributes | 9 +
.travis.yml | 8 +
agora/locale/de/LC_MESSAGES/agora.mo | Bin 81321 -> 81281 bytes
ansel/config/conf.xml | 7 -
ansel/image.php | 27 +-
ansel/js/resizeimage.js | 12 +
ansel/lib/Ansel.php | 2 +-
ansel/lib/Block/RecentlyAddedGeodata.php | 55 +-
ansel/lib/Image.php | 4 +-
ansel/lib/Tile/DateGallery.php | 78 +-
ansel/lib/Tile/Gallery.php | 114 +-
ansel/lib/Tile/Image.php | 133 +-
ansel/lib/View/Image.php | 303 +-
ansel/lib/View/Slideshow.php | 4 +
ansel/lib/Widget/Geotag.php | 2 +-
ansel/locale/ansel.pot | 356 +-
ansel/locale/de/LC_MESSAGES/ansel.mo | Bin 106721 -> 106504 bytes
ansel/locale/de/LC_MESSAGES/ansel.po | 364 +-
ansel/package.xml | 50 +-
ansel/templates/image/crop_image.inc | 6 +-
ansel/templates/image/resize_image.inc | 39 +-
ansel/templates/tile/dategallery.html.php | 4 +
ansel/templates/tile/dategallery.inc | 4 -
ansel/templates/tile/gallery.html.php | 16 +
ansel/templates/tile/gallery.inc | 14 -
ansel/templates/tile/gallerymini.html.php | 6 +
ansel/templates/tile/gallerymini.inc | 4 -
ansel/templates/tile/image.html.php | 27 +
ansel/templates/tile/image.inc | 27 -
ansel/templates/view/image.inc | 6 +-
ansel/templates/view/slideshow.inc | 4 -
ansel/templates/widgets/actions.html.php | 4 +-
ansel/themes/default/cropper.css | 4 +-
ansel/themes/default/graphics/add.png | Bin 0 -> 4687 bytes
ansel/themes/default/graphics/allgalleries.png | Bin 646 -> 4948 bytes
ansel/themes/default/graphics/galleries.png | Bin 454 -> 4817 bytes
ansel/themes/default/graphics/marqueeHoriz.gif | Bin 0 -> 1125 bytes
ansel/themes/default/graphics/marqueeVert.gif | Bin 0 -> 1141 bytes
ansel/themes/default/screen.css | 16 +-
beatnik/locale/beatnik.pot | 32 +-
chora/locale/de/LC_MESSAGES/chora.mo | Bin 71461 -> 71421 bytes
framework/ActiveSync/locale/Horde_ActiveSync.pot | 28 +-
framework/ActiveSync/locale/de/LC_MESSAGES/Horde_ActiveSync.mo | Bin 1008 -> 1008 bytes
framework/ActiveSync/locale/de/LC_MESSAGES/Horde_ActiveSync.po | 28 +-
framework/ActiveSync/package.xml | 31 +-
framework/Alarm/lib/Horde/Alarm/Handler/Desktop.php | 2 +-
framework/Alarm/lib/Horde/Alarm/Sql.php | 8 +-
framework/Argv/package.xml | 23 +-
framework/Auth/package.xml | 35 +-
framework/Autoloader_Cache/package.xml | 1 +
framework/Browser/locale/Horde_Browser.pot | 14 +-
framework/Browser/locale/de/LC_MESSAGES/Horde_Browser.mo | Bin 1382 -> 1382 bytes
framework/Browser/locale/de/LC_MESSAGES/Horde_Browser.po | 14 +-
framework/Cache/package.xml | 2 +
framework/Cli/package.xml | 23 +-
framework/Compress/locale/Horde_Compress.pot | 8 +-
framework/Compress/locale/de/LC_MESSAGES/Horde_Compress.mo | Bin 939 -> 939 bytes
framework/Compress/locale/de/LC_MESSAGES/Horde_Compress.po | 8 +-
framework/Compress/package.xml | 23 +-
framework/Core/lib/Horde.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Application.php | 11 +-
framework/Core/lib/Horde/Core/Ajax/Imple/InPlaceEditor.php | 7 +-
framework/Core/lib/Horde/Core/Mime/Viewer/Vcard.php | 2 +-
framework/Core/locale/Horde_Core.pot | 200 +-
framework/Core/locale/de/LC_MESSAGES/Horde_Core.mo | Bin 19930 -> 19930 bytes
framework/Core/locale/de/LC_MESSAGES/Horde_Core.po | 200 +-
framework/Core/package.xml | 28 +-
framework/Crypt/package.xml | 23 +-
framework/Data/package.xml | 23 +-
framework/Date/locale/Horde_Date.pot | 14 +-
framework/Date/locale/de/LC_MESSAGES/Horde_Date.mo | Bin 1126 -> 1126 bytes
framework/Date/locale/de/LC_MESSAGES/Horde_Date.po | 14 +-
framework/Date/package.xml | 25 +-
framework/Db/lib/Horde/Db/Adapter/Mysql.php | 2 +-
framework/Db/package.xml | 30 +-
framework/Db/test/Horde/Db/Adapter/MissingTest.php | 31 -
framework/Db/test/Horde/Db/Adapter/Mysql/ColumnDefinition.php | 121 +
framework/Db/test/Horde/Db/Adapter/Mysql/ColumnDefinitionTest.php | 131 -
framework/Db/test/Horde/Db/Adapter/Mysql/TableDefinition.php | 76 +
framework/Db/test/Horde/Db/Adapter/Mysql/TableDefinitionTest.php | 86 -
framework/Db/test/Horde/Db/Adapter/MysqlSuite.php | 90 -
framework/Db/test/Horde/Db/Adapter/MysqlTest.php | 128 +-
framework/Db/test/Horde/Db/Adapter/MysqliSuite.php | 90 -
framework/Db/test/Horde/Db/Adapter/MysqliTest.php | 128 +-
framework/Db/test/Horde/Db/Adapter/Pdo/MysqlSuite.php | 90 -
framework/Db/test/Horde/Db/Adapter/Pdo/MysqlTest.php | 129 +-
framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlBase.php | 76 +
framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlSuite.php | 94 -
framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlTest.php | 8 +-
framework/Db/test/Horde/Db/Adapter/Pdo/SqliteBase.php | 65 +
framework/Db/test/Horde/Db/Adapter/Pdo/SqliteSuite.php | 80 -
framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php | 12 +-
.../Db/test/Horde/Db/Adapter/Postgresql/ColumnDefinitionTest.php | 7 +-
framework/Db/test/Horde/Db/Adapter/Postgresql/ColumnTest.php | 2 +-
.../Db/test/Horde/Db/Adapter/Postgresql/TableDefinitionTest.php | 7 +-
.../Db/test/Horde/Db/Adapter/Sqlite/ColumnDefinitionTest.php | 7 +-
framework/Db/test/Horde/Db/Adapter/Sqlite/ColumnTest.php | 2 +-
framework/Db/test/Horde/Db/Adapter/Sqlite/TableDefinitionTest.php | 7 +-
framework/Db/test/Horde/Db/Migration/MigratorTest.php | 2 +-
framework/Editor/package.xml | 23 +-
framework/Form/lib/Horde/Form/Type.php | 30 +-
framework/Form/locale/Horde_Form.pot | 344 +-
framework/Form/locale/de/LC_MESSAGES/Horde_Form.mo | Bin 10966 -> 10966 bytes
framework/Form/locale/de/LC_MESSAGES/Horde_Form.po | 344 +-
framework/Form/package.xml | 23 +-
framework/Group/package.xml | 10 +-
framework/Group/test/Horde/Group/Base.php | 141 -
framework/Group/test/Horde/Group/LdapTest.php | 7 +-
framework/Group/test/Horde/Group/MockTest.php | 7 +-
framework/Group/test/Horde/Group/Sql/Base.php | 7 +-
framework/Group/test/Horde/Group/TestBase.php | 141 +
framework/Icalendar/lib/Horde/Icalendar.php | 1 -
framework/Icalendar/lib/Horde/Icalendar/Vevent.php | 14 +-
framework/Icalendar/locale/Horde_Icalendar.pot | 4 +-
framework/Icalendar/locale/de/LC_MESSAGES/Horde_Icalendar.mo | Bin 503 -> 503 bytes
framework/Icalendar/locale/de/LC_MESSAGES/Horde_Icalendar.po | 4 +-
framework/Icalendar/package.xml | 24 +-
framework/Icalendar/test/Horde/Icalendar/fixtures/escapes2.ics | 1 -
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-1.ics | 2 -
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-2.ics | 2 -
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-3.ics | 2 -
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-4.ics | 2 -
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-5.ics | 2 -
.../Icalendar/test/Horde/Icalendar/fixtures/line-folding-6.ics | 2 -
.../Icalendar/test/Horde/Icalendar/fixtures/quoted-params.ics | 1 -
framework/Image/lib/Horde/Image/Effect/Im/TextWatermark.php | 2 +-
framework/Image/lib/Horde/Image/Effect/Imagick/TextWatermark.php | 2 +-
framework/Image/package.xml | 21 +-
framework/Imap_Client/doc/Horde/Imap/Client/UPGRADING | 8 +
framework/Imap_Client/lib/Horde/Imap/Client/Fetch/Results.php | 10 +
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 128 +-
framework/Imap_Client/locale/Horde_Imap_Client.pot | 136 +-
framework/Imap_Client/locale/de/LC_MESSAGES/Horde_Imap_Client.mo | Bin 7138 -> 7305 bytes
framework/Imap_Client/locale/de/LC_MESSAGES/Horde_Imap_Client.po | 138 +-
framework/Imap_Client/package.xml | 12 +-
.../Imap_Client/test/Horde/Imap/Client/RemoteImapServerTest.php | 63 +-
framework/Imap_Client/test/Horde/Imap/Client/SocketTest.php | 66 +-
framework/Imap_Client/test/Horde/Imap/Client/Stub/Socket.php | 77 +-
framework/Imap_Client/test/Horde/Imap/Client/conf.php.dist | 2 +
framework/Imsp/package.xml | 23 +-
framework/Itip/package.xml | 23 +-
framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Folder.php | 2 +-
framework/Kolab_Config/package.xml | 4 +
framework/Kolab_Filter/lib/Horde/Kolab/Filter.php | 3 -
framework/Kolab_Filter/package.xml | 4 +
.../Kolab_Format/lib/Horde/Kolab/Format/Xml/Type/DateTime.php | 3 +
framework/Kolab_Format/test/Horde/Kolab/Format/Stub/Log.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Decorator/MemoryTest.php | 2 +-
.../test/Horde/Kolab/Format/Unit/Decorator/TimedTest.php | 2 +-
framework/Ldap/package.xml | 21 +-
framework/Memcache/package.xml | 1 +
framework/Mime/package.xml | 31 +-
framework/Mime_Viewer/package.xml | 23 +-
framework/Nls/package.xml | 1 +
framework/Perms/package.xml | 23 +-
framework/Prefs/lib/Horde/Prefs/Identity.php | 20 +-
framework/Prefs/lib/Horde/Prefs/Storage/Ldap.php | 424 +-
framework/Prefs/package.xml | 30 +-
framework/Push/test/Horde/Push/TestCase.php | 2 +-
framework/Rdo/package.xml | 10 +-
framework/Rdo/test/Horde/Rdo/Base.php | 14 -
framework/Rdo/test/Horde/Rdo/Sql/Base.php | 7 +-
framework/Rdo/test/Horde/Rdo/TestBase.php | 14 +
framework/Rpc/locale/Horde_Rpc.pot | 4 +-
framework/Rpc/locale/de/LC_MESSAGES/Horde_Rpc.mo | Bin 1546 -> 1546 bytes
framework/Rpc/locale/de/LC_MESSAGES/Horde_Rpc.po | 4 +-
framework/Rpc/package.xml | 23 +-
framework/Serialize/package.xml | 1 +
framework/Service_Facebook/package.xml | 23 +-
framework/Service_Weather/locale/Horde_Service_Weather.pot | 14 +-
.../locale/de/LC_MESSAGES/Horde_Service_Weather.mo | Bin 12010 -> 12010 bytes
.../locale/de/LC_MESSAGES/Horde_Service_Weather.po | 14 +-
framework/Service_Weather/package.xml | 33 +-
.../Service_Weather/test/Horde/Service/Weather/GoogleTest.php | 148 -
framework/Share/package.xml | 10 +-
framework/Share/test/Horde/Share/Base.php | 613 --
framework/Share/test/Horde/Share/Kolab/MockTest.php | 9 +-
framework/Share/test/Horde/Share/Kolab/UnitTest.php | 14 +-
framework/Share/test/Horde/Share/Sql/Base.php | 9 +-
framework/Share/test/Horde/Share/Sqlng/Base.php | 9 +-
framework/Share/test/Horde/Share/Stub/Group.php | 2 +-
framework/Share/test/Horde/Share/TestBase.php | 613 ++
framework/Support/lib/Horde/Support/Randomid.php | 3 +-
framework/Support/package.xml | 23 +-
framework/Test/lib/Horde/Test/AllTests.php | 34 +-
framework/Test/lib/Horde/Test/Autoload.php | 15 +-
framework/Test/lib/Horde/Test/Bootstrap.php | 14 +-
framework/Test/package.xml | 8 +-
framework/Text_Filter/locale/Horde_Text_Filter.pot | 6 +-
framework/Text_Filter/locale/de/LC_MESSAGES/Horde_Text_Filter.mo | Bin 476 -> 476 bytes
framework/Text_Filter/locale/de/LC_MESSAGES/Horde_Text_Filter.po | 6 +-
framework/Timezone/package.xml | 23 +-
framework/Token/package.xml | 23 +-
framework/Url/lib/Horde/Url/Data.php | 96 +
framework/Url/package.xml | 31 +-
framework/Url/test/Horde/Url/UrlDataTest.php | 68 +
framework/Vcs/lib/Horde/Vcs/Patchset/Base.php | 4 +-
framework/Vfs/locale/Horde_Vfs.pot | 8 +-
framework/Vfs/locale/de/LC_MESSAGES/Horde_Vfs.mo | Bin 631 -> 631 bytes
framework/Vfs/locale/de/LC_MESSAGES/Horde_Vfs.po | 8 +-
framework/Vfs/package.xml | 11 +-
framework/Vfs/test/Horde/Vfs/Base.php | 398 --
framework/Vfs/test/Horde/Vfs/FileTest.php | 7 +-
framework/Vfs/test/Horde/Vfs/FtpTest.php | 7 +-
framework/Vfs/test/Horde/Vfs/SmbTest.php | 8 +-
framework/Vfs/test/Horde/Vfs/Sql/Base.php | 7 +-
framework/Vfs/test/Horde/Vfs/SqlFile/Base.php | 7 +-
framework/Vfs/test/Horde/Vfs/Ssh2Test.php | 7 +-
framework/Vfs/test/Horde/Vfs/TestBase.php | 398 ++
framework/bin/test_framework | 32 +-
gollem/locale/de/LC_MESSAGES/gollem.mo | Bin 73933 -> 73418 bytes
gollem/locale/de/LC_MESSAGES/gollem.po | 188 +-
gollem/locale/gollem.pot | 186 +-
hermes/locale/de/LC_MESSAGES/hermes.mo | Bin 79668 -> 79861 bytes
hermes/locale/de/LC_MESSAGES/hermes.po | 266 +-
hermes/locale/hermes.pot | 256 +-
horde/bin/horde-translation | 4 +-
horde/lib/Api.php | 4 +-
horde/locale/de/LC_MESSAGES/horde.mo | Bin 65325 -> 65285 bytes
horde/locale/de/LC_MESSAGES/horde.po | 352 +-
horde/locale/horde.pot | 354 +-
imp/attachment.php | 9 +-
imp/docs/CHANGES | 2 +
imp/docs/INSTALL | 14 +-
imp/docs/RFCS | 2 +-
imp/js/compose.js | 2 +
imp/js/dimpbase.js | 4 +-
imp/lib/Contents.php | 3 +-
imp/lib/Mime/Viewer/Itip.php | 4 +-
imp/locale/de/LC_MESSAGES/imp.mo | Bin 181625 -> 181519 bytes
imp/locale/de/LC_MESSAGES/imp.po | 1565 +++--
imp/locale/imp.pot | 1561 ++--
imp/package.xml | 4 +
ingo/config/backends.php | 11 +-
ingo/docs/CHANGES | 1 +
ingo/locale/de/LC_MESSAGES/ingo.mo | Bin 84643 -> 84603 bytes
ingo/locale/de/LC_MESSAGES/ingo.po | 28 +-
ingo/locale/ingo.pot | 30 +-
ingo/package.xml | 1 +
jonah/locale/de/LC_MESSAGES/jonah.mo | Bin 75235 -> 75179 bytes
klutz/locale/de/LC_MESSAGES/klutz.mo | Bin 70057 -> 69993 bytes
kronolith/docs/CHANGES | 2 +
kronolith/lib/Driver.php | 96 +-
kronolith/lib/Driver/Ical.php | 11 +-
kronolith/lib/Driver/Kolab.php | 18 +-
kronolith/lib/Driver/Sql.php | 69 +-
kronolith/lib/Event.php | 4 +-
kronolith/locale/de/LC_MESSAGES/kronolith.mo | Bin 126080 -> 125921 bytes
kronolith/locale/de/LC_MESSAGES/kronolith.po | 301 +-
kronolith/locale/kronolith.pot | 303 +-
kronolith/package.xml | 2 +
luxor/locale/de/LC_MESSAGES/luxor.mo | Bin 67342 -> 67302 bytes
mnemo/locale/de/LC_MESSAGES/mnemo.mo | Bin 74891 -> 74851 bytes
mnemo/locale/de/LC_MESSAGES/mnemo.po | 32 +-
mnemo/locale/mnemo.pot | 34 +-
nag/lib/Driver/Kolab.php | 5 +-
nag/locale/de/LC_MESSAGES/nag.mo | Bin 90841 -> 90801 bytes
nag/locale/de/LC_MESSAGES/nag.po | 166 +-
nag/locale/nag.pot | 168 +-
passwd/locale/de/LC_MESSAGES/passwd.mo | Bin 71275 -> 71235 bytes
passwd/locale/de/LC_MESSAGES/passwd.po | 18 +-
passwd/locale/passwd.pot | 18 +-
sam/locale/de/LC_MESSAGES/sam.mo | Bin 69415 -> 69335 bytes
sesha/admin.php | 2 +-
sesha/list.php | 2 +-
sesha/locale/de/LC_MESSAGES/#sesha.po# | 536 ++
sesha/locale/de/LC_MESSAGES/sesha.mo | Bin 73964 -> 74072 bytes
sesha/locale/de/LC_MESSAGES/sesha.po | 173 +-
sesha/locale/sesha.pot | 169 +-
sesha/search.php | 2 +-
sesha/stock.php | 2 +-
skeleton/locale/skeleton.pot | 60 +-
timeobjects/locale/de/LC_MESSAGES/timeobjects.mo | Bin 65862 -> 65822 bytes
trean/lib/Application.php | 6 -
trean/locale/de/LC_MESSAGES/trean.mo | Bin 69874 -> 69605 bytes
trean/locale/de/LC_MESSAGES/trean.po | 115 +-
trean/locale/trean.pot | 113 +-
turba/config/attributes.php | 12 +
turba/lib/Driver.php | 3 +
turba/locale/de/LC_MESSAGES/turba.mo | Bin 97100 -> 97175 bytes
turba/locale/de/LC_MESSAGES/turba.po | 292 +-
turba/locale/turba.pot | 290 +-
ulaform/locale/de/LC_MESSAGES/ulaform.mo | Bin 71118 -> 71054 bytes
vilma/locale/de/LC_MESSAGES/vilma.mo | Bin 76741 -> 76701 bytes
whups/locale/de/LC_MESSAGES/whups.mo | Bin 107074 -> 107023 bytes
whups/locale/de/LC_MESSAGES/whups.po | 414 +-
whups/locale/whups.pot | 410 +-
wicked/locale/de/LC_MESSAGES/wicked.mo | Bin 79796 -> 79732 bytes
wicked/locale/de/LC_MESSAGES/wicked.po | 32 +-
wicked/locale/wicked.pot | 32 +-
290 files changed, 9588 insertions(+), 8501 deletions(-)
http://git.horde.org/horde-git/-/commit/d2c9d8f0aed14b761137593c06ff32c199537d34
-----------------------------------------------------------------------
commit 3bf2a45e1c03eefb90cb26f4f580ab1df918ae16
Merge: d2c9d8f 13db04f
Author: Jan Schneider <jan at horde.org>
Date: Fri Feb 1 14:55:18 2013 +0100
Merge remote-tracking branch 'origin/master' into ingo_3_1
Conflicts:
ingo/package.xml
ingo/rule.php
ansel/docs/CREDITS | 1 +
ansel/locale/sk/LC_MESSAGES/ansel.po | 663 +-
framework/Core/locale/sk/LC_MESSAGES/Horde_Core.mo | Bin 16427 -> 19588 bytes
framework/Core/locale/sk/LC_MESSAGES/Horde_Core.po | 722 +-
framework/Core/package.xml | 2 +
.../Kolab_FreeBusy/locale/sk/LC_MESSAGES/Horde_Kolab_FreeBusy.mo | Bin 661 -> 1820 bytes
.../Kolab_FreeBusy/locale/sk/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 101 +-
framework/Mime/locale/sk/LC_MESSAGES/Horde_Mime.mo | Bin 1395 -> 1307 bytes
framework/Mime/locale/sk/LC_MESSAGES/Horde_Mime.po | 38 +-
framework/bin/pear_batch_install | 3 +
gollem/locale/sk/LC_MESSAGES/gollem.mo | Bin 72844 -> 72384 bytes
gollem/locale/sk/LC_MESSAGES/gollem.po | 188 +-
horde/lib/Api.php | 133 +-
imp/docs/CHANGES | 1 +
imp/locale/de/LC_MESSAGES/imp.mo | Bin 181519 -> 181520 bytes
imp/locale/de/LC_MESSAGES/imp.po | 10 +-
imp/locale/sk/LC_MESSAGES/imp.mo | Bin 178326 -> 178051 bytes
imp/locale/sk/LC_MESSAGES/imp.po | 2000 ++---
imp/package.xml | 2 +
ingo/docs/CHANGES | 3 +
ingo/lib/Script/Maildrop/Recipe.php | 3 +-
ingo/lib/Script/Procmail/Recipe.php | 27 +-
ingo/package.xml | 4 +-
ingo/rule.php | 4 +-
mnemo/docs/CHANGES | 1 +
mnemo/locale/sk/LC_MESSAGES/mnemo.mo | Bin 72837 -> 74156 bytes
mnemo/locale/sk/LC_MESSAGES/mnemo.po | 81 +-
mnemo/package.xml | 2 +
28 files changed, 2027 insertions(+), 1962 deletions(-)
http://git.horde.org/horde-git/-/commit/3bf2a45e1c03eefb90cb26f4f580ab1df918ae16
-----------------------------------------------------------------------
commit e6ac7e3b60b3e4581adfae131af3595a3b388d8b
Author: Jan Schneider <jan at horde.org>
Date: Fri Feb 1 14:55:46 2013 +0100
Fix view variable name.
ingo/rule.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/e6ac7e3b60b3e4581adfae131af3595a3b388d8b
-----------------------------------------------------------------------
commit ff151ad4987e9a883ee39edbe37c39b6c013260a
Author: Jan Schneider <jan at horde.org>
Date: Fri Feb 1 14:56:11 2013 +0100
Fix reloading when changing criterion.
ingo/js/rule.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/ff151ad4987e9a883ee39edbe37c39b6c013260a
-----------------------------------------------------------------------
commit 2b3e13f49df4aa7be5f81dd8cc5b391a75c4fb58
Author: Jan Schneider <jan at horde.org>
Date: Wed Feb 6 10:14:56 2013 +0100
Enable IMAP backend again.
ingo/config/backends.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
http://git.horde.org/horde-git/-/commit/2b3e13f49df4aa7be5f81dd8cc5b391a75c4fb58
-----------------------------------------------------------------------
commit df7843f5458d0934ae37fdf9f1220fe99730514d
Merge: 2b3e13f 594e7b8
Author: Jan Schneider <jan at horde.org>
Date: Fri Feb 8 15:00:42 2013 +0100
Merge remote-tracking branch 'origin/master' into ingo_3_1
ansel/browse.php | 3 +-
ansel/gallery.php | 100 +-
ansel/gallery/delete.php | 84 -
ansel/image.php | 875 +-
ansel/js/imagefaces.js | 4 +-
ansel/js/views/common.js | 112 +
ansel/js/views/image.js | 57 +
ansel/js/widgets/tagactions.js | 3 +
ansel/lib/ActionHandler.php | 1046 +
ansel/lib/Ajax/Application/Handler.php | 5 +-
ansel/lib/Api.php | 7 +-
ansel/lib/GalleryMode/Base.php | 2 +
ansel/lib/Image.php | 30 +-
ansel/lib/Search.php | 101 -
ansel/lib/Search/Tag.php | 305 -
ansel/lib/Search/exif.php | 42 -
ansel/lib/Storage.php | 37 +-
ansel/lib/TagBrowser.php | 128 +
ansel/lib/Tile/Image.php | 13 +-
ansel/lib/View/Base.php | 2 +-
ansel/lib/View/Gallery.php | 56 +-
ansel/lib/View/GalleryProperties.php | 17 +-
ansel/lib/View/GalleryRenderer/Base.php | 173 +-
ansel/lib/View/GalleryRenderer/Gallery.php | 118 +-
ansel/lib/View/GalleryRenderer/GalleryLightbox.php | 145 +-
ansel/lib/View/Image.php | 271 +-
ansel/lib/View/List.php | 2 +-
ansel/lib/View/Results.php | 241 +-
ansel/lib/View/Slideshow.php | 1 -
ansel/lib/View/Upload.php | 2 +-
ansel/lib/Widget/Actions.php | 2 +-
ansel/lib/Widget/Tags.php | 29 +-
ansel/package.xml | 36 +-
ansel/templates/gallery/delete_confirmation.inc | 4 +-
ansel/templates/gallery/properties.html.php | 29 +-
ansel/templates/tile/image.html.php | 2 +-
ansel/templates/view/api/gallery.html.php | 43 +
ansel/templates/view/gallery.html.php | 93 +
ansel/templates/view/gallery.inc | 171 -
ansel/templates/view/gallerylightbox.inc | 204 -
ansel/templates/view/image.html.php | 98 +
ansel/templates/view/image.inc | 96 -
ansel/templates/view/results.html.php | 95 +
ansel/templates/view/results.inc | 140 -
ansel/themes/default/screen.css | 18 +-
ansel/view.php | 8 +-
content/docs/CHANGES | 2 +
content/lib/Tagger.php | 4 +-
content/lib/Types/Manager.php | 4 +-
content/package.xml | 4 +-
content/test/Content/Base.php | 30 +-
content/test/Content/Sql/Base.php | 6 +
framework/ActiveSync/lib/Horde/ActiveSync/Connector/Importer.php | 23 +-
framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php | 48 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/MoveItems.php | 51 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php | 101 +-
framework/ActiveSync/package.xml | 28 +-
framework/Argv/lib/Horde/Argv/Parser.php | 17 -
framework/Cli_Modular/lib/Horde/Cli/Modular.php | 28 +-
framework/Core/js/jquery.mobile/jquery.js | 8342 +++--
framework/Core/js/jquery.mobile/jquery.min.js | 6 +-
framework/Core/js/jquery.mobile/jquery.mobile.js | 5531 ++--
framework/Core/js/jquery.mobile/jquery.mobile.min.css | 4 +-
framework/Core/js/jquery.mobile/jquery.mobile.min.js | 186 +-
framework/Core/js/jquery.mobile/plugins/autocomplete.js | 15 +-
framework/Core/js/map/OpenLayers-debug.js | 8 -
framework/Core/js/map/OpenLayers.js | 1943 +-
framework/Core/js/map/horde.js | 22 +-
framework/Core/lib/Horde/Core/ActiveSync/Driver.php | 15 +-
framework/Core/lib/Horde/Core/Auth/Application.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Notification.php | 19 +-
framework/Core/lib/Horde/Core/Tagger.php | 5 +-
framework/Core/lib/Horde/Registry.php | 3 +-
framework/Core/package.xml | 31 +-
framework/Date_Parser/lib/Horde/Date/Parser/Locale/Base.php | 31 +-
.../Date_Parser/lib/Horde/Date/Parser/Locale/Base/Timezone.php | 2 +-
framework/Date_Parser/lib/Horde/Date/Parser/Token.php | 6 +-
framework/Date_Parser/test/Horde/Date/Parser/ParserTest.php | 40 +
framework/Date_Parser/test/Horde/Date/Parser/TokenTest.php | 26 +
framework/Db/test/Horde/Db/Adapter/MysqlTest.php | 18 +-
framework/Db/test/Horde/Db/Adapter/MysqliTest.php | 18 +-
framework/Db/test/Horde/Db/Adapter/Pdo/MysqlTest.php | 18 +-
framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlBase.php | 16 +-
framework/Db/test/Horde/Db/Adapter/Pdo/SqliteBase.php | 14 +-
framework/Editor/js/ckeditor/LICENSE.html | 4 +-
framework/Editor/js/ckeditor/ckeditor.js | 2 +-
framework/Editor/js/ckeditor/ckeditor_basic.js | 2 +-
framework/Editor/js/ckeditor/contents.css | 2 +-
framework/Editor/js/ckeditor/lang/af.js | 2 +-
framework/Editor/js/ckeditor/lang/ar.js | 2 +-
framework/Editor/js/ckeditor/lang/bg.js | 2 +-
framework/Editor/js/ckeditor/lang/bn.js | 2 +-
framework/Editor/js/ckeditor/lang/bs.js | 2 +-
framework/Editor/js/ckeditor/lang/ca.js | 2 +-
framework/Editor/js/ckeditor/lang/cs.js | 2 +-
framework/Editor/js/ckeditor/lang/cy.js | 2 +-
framework/Editor/js/ckeditor/lang/da.js | 2 +-
framework/Editor/js/ckeditor/lang/de.js | 2 +-
framework/Editor/js/ckeditor/lang/el.js | 2 +-
framework/Editor/js/ckeditor/lang/en-au.js | 2 +-
framework/Editor/js/ckeditor/lang/en-ca.js | 2 +-
framework/Editor/js/ckeditor/lang/en-gb.js | 2 +-
framework/Editor/js/ckeditor/lang/en.js | 2 +-
framework/Editor/js/ckeditor/lang/eo.js | 2 +-
framework/Editor/js/ckeditor/lang/es.js | 2 +-
framework/Editor/js/ckeditor/lang/et.js | 2 +-
framework/Editor/js/ckeditor/lang/eu.js | 2 +-
framework/Editor/js/ckeditor/lang/fa.js | 2 +-
framework/Editor/js/ckeditor/lang/fi.js | 2 +-
framework/Editor/js/ckeditor/lang/fo.js | 2 +-
framework/Editor/js/ckeditor/lang/fr-ca.js | 2 +-
framework/Editor/js/ckeditor/lang/fr.js | 2 +-
framework/Editor/js/ckeditor/lang/gl.js | 2 +-
framework/Editor/js/ckeditor/lang/gu.js | 2 +-
framework/Editor/js/ckeditor/lang/he.js | 2 +-
framework/Editor/js/ckeditor/lang/hi.js | 2 +-
framework/Editor/js/ckeditor/lang/hr.js | 2 +-
framework/Editor/js/ckeditor/lang/hu.js | 2 +-
framework/Editor/js/ckeditor/lang/id.js | 2 +-
framework/Editor/js/ckeditor/lang/is.js | 2 +-
framework/Editor/js/ckeditor/lang/it.js | 2 +-
framework/Editor/js/ckeditor/lang/ja.js | 2 +-
framework/Editor/js/ckeditor/lang/ka.js | 2 +-
framework/Editor/js/ckeditor/lang/km.js | 2 +-
framework/Editor/js/ckeditor/lang/ko.js | 2 +-
framework/Editor/js/ckeditor/lang/ku.js | 2 +-
framework/Editor/js/ckeditor/lang/lt.js | 2 +-
framework/Editor/js/ckeditor/lang/lv.js | 2 +-
framework/Editor/js/ckeditor/lang/mk.js | 2 +-
framework/Editor/js/ckeditor/lang/mn.js | 2 +-
framework/Editor/js/ckeditor/lang/ms.js | 2 +-
framework/Editor/js/ckeditor/lang/nb.js | 2 +-
framework/Editor/js/ckeditor/lang/nl.js | 2 +-
framework/Editor/js/ckeditor/lang/no.js | 2 +-
framework/Editor/js/ckeditor/lang/pl.js | 2 +-
framework/Editor/js/ckeditor/lang/pt-br.js | 2 +-
framework/Editor/js/ckeditor/lang/pt.js | 2 +-
framework/Editor/js/ckeditor/lang/ro.js | 2 +-
framework/Editor/js/ckeditor/lang/ru.js | 2 +-
framework/Editor/js/ckeditor/lang/sk.js | 2 +-
framework/Editor/js/ckeditor/lang/sl.js | 2 +-
framework/Editor/js/ckeditor/lang/sr-latn.js | 2 +-
framework/Editor/js/ckeditor/lang/sr.js | 2 +-
framework/Editor/js/ckeditor/lang/sv.js | 2 +-
framework/Editor/js/ckeditor/lang/th.js | 2 +-
framework/Editor/js/ckeditor/lang/tr.js | 2 +-
framework/Editor/js/ckeditor/lang/ug.js | 2 +-
framework/Editor/js/ckeditor/lang/uk.js | 2 +-
framework/Editor/js/ckeditor/lang/vi.js | 2 +-
framework/Editor/js/ckeditor/lang/zh-cn.js | 2 +-
framework/Editor/js/ckeditor/lang/zh.js | 2 +-
framework/Editor/js/ckeditor/plugins/a11yhelp/lang/lv.js | 1 +
framework/Editor/js/ckeditor/plugins/devtools/lang/lv.js | 1 +
framework/Editor/js/ckeditor/plugins/placeholder/lang/lv.js | 1 +
framework/Editor/js/ckeditor/plugins/scayt/dialogs/toolbar.css | 2 +-
framework/Editor/js/ckeditor/plugins/specialchar/lang/lv.js | 1 +
framework/Editor/js/ckeditor/plugins/specialchar/lang/sk.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/lang/lv.js | 1 +
framework/Editor/js/ckeditor/plugins/uicolor/yui/assets/yui.css | 2 +-
framework/Editor/js/ckeditor/plugins/wsc/dialogs/ciframe.html | 2 +-
framework/Editor/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html | 2 +-
framework/Editor/js/ckeditor/plugins/wsc/dialogs/wsc.css | 2 +-
framework/Editor/js/ckeditor/skins/kama/dialog.css | 2 +-
framework/Editor/js/ckeditor/skins/kama/editor.css | 4 +-
framework/Editor/js/ckeditor/skins/kama/templates.css | 2 +-
framework/Editor/js/ckeditor/skins/office2003/dialog.css | 2 +-
framework/Editor/js/ckeditor/skins/office2003/editor.css | 16 +-
framework/Editor/js/ckeditor/skins/office2003/templates.css | 2 +-
framework/Editor/js/ckeditor/skins/v2/dialog.css | 2 +-
framework/Editor/js/ckeditor/skins/v2/editor.css | 6 +-
framework/Editor/js/ckeditor/skins/v2/templates.css | 2 +-
framework/Editor/package.xml | 22 +-
framework/History/test/Horde/History/InterfaceTest.php | 2 +-
framework/Itip/lib/Horde/Itip/Resource.php | 12 +-
framework/Itip/lib/Horde/Itip/Resource/Base.php | 21 +-
framework/Itip/lib/Horde/Itip/Resource/Identity.php | 43 +-
framework/Itip/package.xml | 11 +-
framework/Itip/test/Horde/Itip/Stub/Identity.php | 13 +-
framework/Mime/lib/Horde/Mime/Part.php | 11 +-
framework/Mime/package.xml | 4 +-
framework/Mime/test/Horde/Mime/PartTest.php | 25 +-
framework/Prefs/lib/Horde/Prefs/Identity.php | 40 +-
framework/Prefs/package.xml | 2 +
.../Prefs/test/Horde/Prefs/Unit/Storage/KolabImapLogTest.php | 5 +-
framework/Prefs/test/Horde/Prefs/Unit/Storage/KolabImapTest.php | 2 +
framework/Push/test/Horde/Push/Unit/Push/CliTest.php | 5 -
framework/Push/test/Horde/Push/Unit/Push/Factory/PushTest.php | 1 +
framework/Rdo/test/Horde/Rdo/Sql/Base.php | 2 +-
framework/Rdo/test/Horde/Rdo/TestBase.php | 14 -
framework/Test/lib/Horde/Test/AllTests.php | 3 +-
framework/Text_Filter/lib/Horde/Text/Filter/Xss.php | 36 -
framework/Text_Filter/package.xml | 4 +-
framework/Text_Filter/test/Horde/Text/Filter/XssTest.php | Bin 23500 -> 23372 bytes
framework/Util/lib/Horde/Domhtml.php | 58 +-
framework/Util/package.xml | 16 +-
framework/Util/test/Horde/Util/DomhtmlTest.php | 65 +
framework/bin/test_framework | 9 +-
horde/js/plupload/uploader.js | 2 +-
imp/docs/CHANGES | 4 +
imp/js/compose-dimp.js | 8 +-
imp/js/dimpbase.js | 18 +-
imp/js/dimpcore.js | 4 +-
imp/js/imp.js | 7 +-
imp/js/message-dimp.js | 17 +-
imp/js/search.js | 3 +-
imp/js/smartmobile.js | 19 +-
imp/lib/Ajax/Application/Handler/Common.php | 8 +-
imp/lib/Compose.php | 4 +-
imp/lib/Dynamic/Compose/Common.php | 7 +-
imp/lib/LoginTasks/Task/PurgeSentmail.php | 2 +-
imp/lib/Mime/Viewer/Html.php | 17 +-
imp/package.xml | 8 +-
imp/rss.php | 12 +-
imp/templates/dynamic/compose.html.php | 6 +
kronolith/lib/Ajax/Application/Handler.php | 62 -
kronolith/lib/Ajax/Imple/TagActions.php | 139 -
kronolith/package.xml | 8 +-
wicked/docs/CHANGES | 1 +
wicked/lib/Text_Wiki/Render/Rst/Blockquote.php | 59 +
wicked/lib/Text_Wiki/Render/Rst/Emphasis.php | 46 +
wicked/package.xml | 12 +-
221 files changed, 12199 insertions(+), 10607 deletions(-)
http://git.horde.org/horde-git/-/commit/df7843f5458d0934ae37fdf9f1220fe99730514d
-----------------------------------------------------------------------
commit 8b13876727a9959d057364da2bbcdd6fae2c08bc
Merge: df7843f e6117cb
Author: Jan Schneider <jan at horde.org>
Date: Tue Feb 26 15:31:05 2013 +0100
Merge branch 'master' into ingo_3_1
Conflicts:
ingo/docs/CHANGES
ingo/package.xml
.travis.yml | 11 +-
ansel/docs/INSTALL | 4 +-
ansel/faces/custom.php | 25 +
ansel/js/slideshow.js | 10 +-
ansel/js/views/image.js | 2 +-
ansel/js/views/slideshow.js | 11 +
ansel/lib/Ajax/Imple/EditFaces.php | 8 +-
ansel/lib/Ansel.php | 6 +-
ansel/lib/Faces.php | 2 +-
ansel/lib/Tile/DateGallery.php | 1 +
ansel/lib/View/GalleryProperties.php | 1 +
ansel/lib/View/GalleryRenderer/Base.php | 32 +-
ansel/lib/View/GalleryRenderer/GalleryLightbox.php | 9 +
ansel/lib/View/Image.php | 35 +-
ansel/lib/View/List.php | 157 +-
ansel/lib/View/Slideshow.php | 23 +-
ansel/lib/Widget/ImageFaces.php | 105 +-
ansel/lib/Widget/Links.php | 32 +-
ansel/package.xml | 24 +-
ansel/templates/faces/custom.inc | 34 -
ansel/templates/view/image.html.php | 29 +-
ansel/templates/view/list.html.php | 60 +
ansel/templates/view/list.inc | 64 -
ansel/templates/view/slideshow.html.php | 39 +
ansel/templates/view/slideshow.inc | 58 -
ansel/templates/widgets/imagefaces.html.php | 24 +
ansel/templates/widgets/links.html.php | 21 +
ansel/themes/default/graphics/embed.png | Bin 0 -> 579 bytes
ansel/themes/default/screen.css | 74 +-
ansel/view.php | 2 +-
bundles/groupware/README | 22 +-
bundles/groupware/docs/CHANGES | 144 ++-
bundles/groupware/docs/INSTALL | 11 +-
bundles/groupware/docs/RELEASE_NOTES | 28 +-
bundles/groupware/lib/Bundle.php | 2 +-
bundles/groupware/package.xml | 33 +-
bundles/webmail/README | 22 +-
bundles/webmail/docs/CHANGES | 172 ++-
bundles/webmail/docs/INSTALL | 12 +-
bundles/webmail/docs/PERFORMANCE | 3 +
bundles/webmail/docs/RELEASE_NOTES | 49 +-
bundles/webmail/lib/Bundle.php | 2 +-
bundles/webmail/package.xml | 37 +-
chora/commit.php | 5 +-
chora/patchsets.php | 2 +-
chora/themes/default/ie7.css | 4 -
components/data/qc_standards/phpmd.xml | 1 +
components/lib/Components/Component/Base.php | 19 +
components/lib/Components/Component/Remote.php | 19 -
components/lib/Components/Component/Source.php | 22 +
components/lib/Components/Helper/Website.php | 1 +
components/lib/Components/Module/Qc.php | 2 +
components/lib/Components/Qc/Task/Base.php | 2 +-
components/lib/Components/Qc/Task/Cpd.php | 10 +-
components/lib/Components/Qc/Task/Cs.php | 5 +-
components/lib/Components/Qc/Task/Dcd.php | 79 +
components/lib/Components/Qc/Task/Lint.php | 2 +-
components/lib/Components/Qc/Task/Loc.php | 73 +
components/lib/Components/Qc/Task/Md.php | 2 +-
components/lib/Components/Qc/Task/Unit.php | 13 +-
components/lib/Components/Qc/Tasks.php | 2 +-
components/lib/Components/Runner/Qc.php | 8 +
components/package.xml | 40 +-
content/docs/CHANGES | 8 +-
content/lib/Application.php | 2 +-
content/package.xml | 47 +-
framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php | 2 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Appointment.php | 16 +
framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php | 1 -
framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php | 18 +-
framework/ActiveSync/lib/Horde/ActiveSync/SyncCache.php | 2 +-
framework/ActiveSync/lib/Horde/ActiveSync/Timezone.php | 1 +
framework/ActiveSync/lib/Horde/ActiveSync/Utils.php | 12 +-
framework/ActiveSync/lib/Horde/ActiveSync/Wbxml/Decoder.php | 5 +-
framework/ActiveSync/package.xml | 21 +-
framework/ActiveSync/test/Horde/ActiveSync/InviteTest.php | 1 +
.../test/Horde/ActiveSync/StateTest/Sql/Pdo/MysqlTest.php | 2 +
framework/ActiveSync/test/Horde/ActiveSync/conf.php.dist | 46 +-
framework/Alarm/test/Horde/Alarm/HandlerTest.php | 4 +-
framework/Argv/doc/Horde/Argv/ADVANCED | 397 +++++
framework/Argv/doc/Horde/Argv/CALLBACKS | 237 +++
framework/Argv/doc/Horde/Argv/DOCS_ORIGIN | 17 +
framework/Argv/doc/Horde/Argv/EXTEND | 157 ++
framework/Argv/doc/Horde/Argv/README | 309 ++++
framework/Argv/lib/Horde/Argv/Option.php | 102 +-
framework/Argv/package.xml | 20 +-
framework/Auth/lib/Horde/Auth.php | 16 +-
framework/Auth/lib/Horde/Auth/Auto.php | 28 +-
framework/Auth/lib/Horde/Auth/Base.php | 44 +-
framework/Auth/lib/Horde/Auth/Composite.php | 20 +-
framework/Auth/lib/Horde/Auth/Customsql.php | 21 +-
framework/Auth/lib/Horde/Auth/Cyrsql.php | 22 +-
framework/Auth/lib/Horde/Auth/Exception.php | 14 +-
framework/Auth/lib/Horde/Auth/Ftp.php | 16 +-
framework/Auth/lib/Horde/Auth/Http.php | 19 +-
framework/Auth/lib/Horde/Auth/Http/Remote.php | 15 +-
framework/Auth/lib/Horde/Auth/Imap.php | 19 +-
framework/Auth/lib/Horde/Auth/Ipbasic.php | 43 +-
framework/Auth/lib/Horde/Auth/Kolab.php | 19 +-
framework/Auth/lib/Horde/Auth/Ldap.php | 25 +-
framework/Auth/lib/Horde/Auth/Msad.php | 23 +-
framework/Auth/lib/Horde/Auth/Pam.php | 19 +-
framework/Auth/lib/Horde/Auth/Passwd.php | 20 +-
framework/Auth/lib/Horde/Auth/Peclsasl.php | 19 +-
framework/Auth/lib/Horde/Auth/Radius.php | 19 +-
framework/Auth/lib/Horde/Auth/Shibboleth.php | 29 +-
framework/Auth/lib/Horde/Auth/Smb.php | 20 +-
framework/Auth/lib/Horde/Auth/Smbclient.php | 16 +-
framework/Auth/lib/Horde/Auth/Sql.php | 25 +-
framework/Auth/lib/Horde/Auth/Translation.php | 13 +-
framework/Auth/migration/Horde/Auth/1_horde_auth_base_tables.php | 6 +
framework/Cli_Modular/lib/Horde/Cli/Modular/Modules.php | 53 +-
framework/Core/js/accesskeys.js | 9 +-
framework/Core/js/autocomplete.js | 2 +-
framework/Core/js/calendar.js | 12 +-
framework/Core/js/colorpicker.js | 22 +-
framework/Core/js/date/date.js | 128 +-
framework/Core/js/dialog.js | 33 +-
framework/Core/js/form_assign.js | 118 +-
framework/Core/js/form_helpers.js | 22 +-
framework/Core/js/growler-jquery.js | 4 +-
framework/Core/js/growler.js | 54 +-
framework/Core/js/horde-jquery.js | 8 +-
framework/Core/js/horde.js | 6 +-
framework/Core/js/hordecore.js | 31 +-
framework/Core/js/hordetree.js | 10 +-
framework/Core/js/image.js | 8 +-
framework/Core/js/imple.js | 6 +-
framework/Core/js/jquery.mobile/jquery.js | 206 +--
framework/Core/js/jquery.mobile/jquery.min.js | 4 +-
framework/Core/js/liquidmetal.js | 2 +-
framework/Core/js/prettyautocomplete.js | 28 +-
framework/Core/js/smartmobile.js | 9 +-
framework/Core/js/sorter.js | 28 +-
framework/Core/js/spellchecker.js | 6 +-
framework/Core/js/tables.js | 20 +-
framework/Core/js/tooltips.js | 2 +-
framework/Core/lib/Horde.php | 46 +-
framework/Core/lib/Horde/Core/ActiveSync/Driver.php | 19 +-
framework/Core/lib/Horde/Core/ActiveSync/Imap/Factory.php | 14 +-
framework/Core/lib/Horde/Core/Ajax/Response/Raw.php | 8 +-
framework/Core/lib/Horde/Core/Factory/QueueStorage.php | 5 +-
framework/Core/lib/Horde/Core/Factory/ShutdownRunner.php | 14 +
framework/Core/lib/Horde/PageOutput.php | 30 +-
framework/Core/lib/Horde/Registry.php | 1 +
framework/Core/lib/Horde/Session.php | 65 +-
framework/Core/lib/Horde/Session/Null.php | 299 +---
framework/Core/lib/Horde/Themes.php | 75 +-
framework/Core/lib/Horde/Themes/Cache.php | 32 +-
framework/Core/lib/Horde/Themes/Css.php | 100 +-
framework/Core/lib/Horde/Themes/Element.php | 36 +-
framework/Core/package.xml | 66 +-
framework/Core/test/Horde/Core/UrlTest.php | 242 ++--
framework/Crypt/lib/Horde/Crypt/Pgp.php | 24 +-
framework/Crypt/package.xml | 14 +-
framework/Crypt/test/Horde/Crypt/PgpKeyserverTest.php | 7 +-
framework/Crypt/test/Horde/Crypt/conf.php.dist | 2 +
framework/Date/lib/Horde/Date.php | 14 +-
framework/Date/lib/Horde/Date/Recurrence.php | 19 +-
framework/Date/package.xml | 4 +-
.../Date_Parser/lib/Horde/Date/Parser/Locale/Base/Repeater.php | 76 +-
.../Date_Parser/lib/Horde/Date/Parser/Locale/Base/Timezone.php | 2 +-
framework/Date_Parser/test/Horde/Date/Parser/ParserTest.php | 1 -
framework/Date_Parser/test/Horde/Date/Parser/TokenTest.php | 31 +-
framework/Db/doc/Horde/Db/README.TESTING.txt | 32 -
framework/Db/doc/Horde/Db/README_TESTING | 32 +
framework/Db/doc/Horde/Db/TODO | 53 +
framework/Db/doc/Horde/Db/TODO.txt | 55 -
framework/Db/lib/Horde/Db/Adapter/Pdo/Pgsql.php | 2 +-
framework/Db/package.xml | 18 +-
framework/Db/test/Horde/Db/Adapter/MysqlTest.php | 3 +
framework/Db/test/Horde/Db/Adapter/MysqliTest.php | 3 +
framework/Db/test/Horde/Db/Adapter/Pdo/MysqlTest.php | 3 +
framework/Editor/package.xml | 23 +-
framework/Exception/package.xml | 23 +-
framework/Group/test/Horde/Group/LdapTest.php | 7 +-
framework/Group/test/Horde/Group/Sql/MysqlTest.php | 2 +
framework/Group/test/Horde/Group/Sql/MysqliTest.php | 2 +
framework/Group/test/Horde/Group/Sql/Pdo/MysqlTest.php | 2 +
framework/Group/test/Horde/Group/Sql/Pdo/PgsqlTest.php | 2 +
framework/Icalendar/lib/Horde/Icalendar.php | 7 +-
framework/Icalendar/lib/Horde/Icalendar/Vtimezone.php | 7 +-
.../Icalendar/test/Horde/Icalendar/fixtures/vTimezone/Vilnius.ics | 4 +-
.../test/Horde/Icalendar/fixtures/vTimezone/exchange.ics | 4 +-
.../Icalendar/test/Horde/Icalendar/fixtures/vTimezone/meeting.ics | 4 +-
framework/Image/package.xml | 12 +-
framework/Image/test/Horde/Image/Exif/Base.php | 75 -
framework/Image/test/Horde/Image/Exif/BundledTest.php | 15 +-
framework/Image/test/Horde/Image/Exif/ExiftoolTest.php | 18 +-
framework/Image/test/Horde/Image/Exif/PhpTest.php | 15 +-
framework/Image/test/Horde/Image/Exif/TestBase.php | 72 +
framework/Image/test/Horde/Image/Fixtures/img_exif.jpg | Bin 181131 -> 181401 bytes
framework/Imap_Client/doc/Horde/Imap/Client/UPGRADING | 10 +-
framework/Imap_Client/lib/Horde/Imap/Client/Base.php | 23 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/BaseSubject.php | 6 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Sync.php | 2 +-
framework/Imap_Client/lib/Horde/Imap/Client/Ids.php | 37 +-
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 99 +-
framework/Imap_Client/package.xml | 46 +-
framework/Imap_Client/test/Horde/Imap/Client/AuthTest.php | 2 +-
framework/Imap_Client/test/Horde/Imap/Client/IdsTest.php | 42 +-
framework/Imap_Client/test/Horde/Imap/Client/MapTest.php | 5 +
.../Imap_Client/test/Horde/Imap/Client/RemoteImapServerTest.php | 7 +
framework/Imap_Client/test/Horde/Imap/Client/SocketTest.php | 5 +
framework/Itip/package.xml | 23 +-
.../test/Horde/Kolab/Format/Unit/Xml/Type/DateTimeTest.php | 9 +-
.../Horde/Kolab/Server/Class/Server/Connection/SimpleldapTest.php | 4 +
.../Kolab/Server/Class/Server/Connection/SplittedldapTest.php | 4 +
framework/Kolab_Storage/doc/Horde/Kolab/Storage/API.txt | 6 +-
.../Kolab_Storage/lib/Horde/Kolab/Storage/Folder/Namespace.php | 52 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/AttachmentTest.php | 3 +-
.../Storage/ComponentTest/Data/Object/Message/ModifiedTest.php | 3 +-
.../Kolab/Storage/ComponentTest/Data/Object/Message/NewTest.php | 5 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/Unit/ObjectTest.php | 4 +-
framework/Mail/test/Horde/Mail/ListTest.php | 5 +
framework/Mail/test/Horde/Mail/ParseTest.php | 5 +
framework/Mime/package.xml | 23 +-
framework/Mime/test/Horde/Mime/MailTest.php | 8 +-
framework/Mime/test/Horde/Mime/RelatedTest.php | 5 +
framework/Mime_Viewer/js/syntaxhighlighter/src/shCore.js | 8 +-
framework/Mime_Viewer/lib/Horde/Mime/Viewer/Msexcel.php | 22 +-
framework/Mime_Viewer/package.xml | 4 +-
framework/Pdf/lib/Horde/Pdf/Writer.php | 7 +-
framework/Pdf/package.xml | 21 +-
framework/Pdf/test/Horde/Pdf/WriterTest.php | 10 +-
framework/Pear/lib/Horde/Pear/Remote.php | 2 +-
framework/Pear/test/Horde/Pear/Server/RemoteTest.php | 4 +-
framework/Pear/test/Horde/Pear/Server/RestTest.php | 2 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab.php | 56 +-
.../Perms/lib/Horde/Perms/Permission/Kolab/Acl/Anonymous.php | 17 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Acl/Anyone.php | 17 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Acl/Group.php | 30 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Acl/User.php | 22 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/AclIterator.php | 17 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Element.php | 14 +-
.../Perms/lib/Horde/Perms/Permission/Kolab/Element/Default.php | 12 +-
.../Perms/lib/Horde/Perms/Permission/Kolab/Element/Group.php | 16 +-
.../Perms/lib/Horde/Perms/Permission/Kolab/Element/Guest.php | 12 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Element/User.php | 15 +-
.../Perms/lib/Horde/Perms/Permission/Kolab/ElementIterator.php | 15 +-
framework/Perms/lib/Horde/Perms/Permission/Kolab/Storage.php | 10 +-
framework/Perms/package.xml | 18 +-
framework/Prefs/lib/Horde/Prefs/Identity.php | 10 +-
framework/Prefs/lib/Horde/Prefs/Scope.php | 29 +-
framework/Prefs/package.xml | 41 +-
.../Prefs/test/Horde/Prefs/Unit/Storage/KolabImapLogTest.php | 2 +
framework/Prefs/test/Horde/Prefs/Unit/Storage/KolabImapTest.php | 10 +-
framework/Prefs/test/Horde/Prefs/Unit/Storage/Sql/MysqlTest.php | 2 +
framework/Prefs/test/Horde/Prefs/Unit/Storage/Sql/MysqliTest.php | 2 +
.../Prefs/test/Horde/Prefs/Unit/Storage/Sql/Pdo/MysqlTest.php | 2 +
.../Prefs/test/Horde/Prefs/Unit/Storage/Sql/Pdo/PgsqlTest.php | 2 +
framework/Push/doc/Horde/Push/TODO | 1 +
framework/Queue/package.xml | 32 +-
framework/Rdo/doc/Horde/Rdo/TODO | 157 ++
framework/Rdo/doc/Horde/Rdo/TODO.txt | 154 --
framework/Rdo/package.xml | 12 +-
.../doc/Horde/Service/Facebook/examples/facebook_example.php | 139 ++
.../doc/Horde/Service/Facebook/facebook_example.php | 139 --
framework/Service_Facebook/package.xml | 12 +-
.../Service_Gravatar/test/Horde/Service/Gravatar/ServerTest.php | 17 +-
.../doc/Horde/Service/Twitter/examples/twitter_browser.php | 84 +
.../doc/Horde/Service/Twitter/examples/twitter_cli.php | 36 +
.../Service_Twitter/doc/Horde/Service/Twitter/twitter_browser.php | 84 -
.../Service_Twitter/doc/Horde/Service/Twitter/twitter_cli.php | 36 -
framework/Service_Twitter/package.xml | 16 +-
framework/Service_Weather/doc/Horde/Service/Weather/UPGRADING | 6 +-
.../test/Horde/SessionHandler/Storage/BuiltinTest.php | 9 +
.../test/Horde/SessionHandler/Storage/MemcacheTest.php | 5 +-
.../test/Horde/SessionHandler/Storage/Sql/Pdo/MysqlTest.php | 2 +
.../test/Horde/SessionHandler/Storage/Sql/Pdo/PgsqlTest.php | 2 +
.../test/Horde/SessionHandler/Storage/StackTest.php | 5 +-
framework/Share/lib/Horde/Share/Object.php | 5 +-
framework/Share/lib/Horde/Share/Object/Kolab.php | 6 +-
framework/Share/package.xml | 6 +-
framework/Share/test/Horde/Share/Kolab/UnitTest.php | 12 +-
framework/Share/test/Horde/Share/Sql/Base.php | 4 +-
framework/Share/test/Horde/Share/Sql/MysqlTest.php | 3 +
framework/Share/test/Horde/Share/Sql/MysqliTest.php | 3 +
framework/Share/test/Horde/Share/Sql/Pdo/MysqlTest.php | 3 +
framework/Share/test/Horde/Share/Sql/Pdo/PgsqlTest.php | 3 +
framework/Share/test/Horde/Share/Sqlng/Base.php | 4 +-
framework/Share/test/Horde/Share/Sqlng/MysqlTest.php | 3 +
framework/Share/test/Horde/Share/Sqlng/MysqliTest.php | 3 +
framework/Share/test/Horde/Share/Sqlng/Pdo/MysqlTest.php | 3 +
framework/Share/test/Horde/Share/Sqlng/Pdo/PgsqlTest.php | 3 +
framework/Share/test/Horde/Share/TestBase.php | 8 +-
framework/Support/lib/Horde/Support/Array.php | 39 +-
framework/Support/test/Horde/Support/ArrayTest.php | 4 +-
framework/Support/test/Horde/Support/GuidTest.php | 5 +-
framework/Support/test/Horde/Support/InflectorTest.php | 6 +-
framework/SyncMl/doc/Horde/SyncMl/README.program_flow.txt | 29 +-
framework/SyncMl/doc/Horde/SyncMl/README.syncml_primer.txt | 50 +-
framework/Test/lib/Horde/Test/AllTests.php | 11 +-
framework/Test/package.xml | 23 +-
framework/Text_Filter/lib/Horde/Text/Filter/Html2text.php | 24 +-
framework/Text_Filter/lib/Horde/Text/Filter/Words.php | 55 +-
framework/Text_Filter/package.xml | 28 +-
framework/Text_Filter/test/Horde/Text/Filter/Html2textTest.php | 13 +-
framework/Text_Filter/test/Horde/Text/Filter/WordsTest.php | 64 +
framework/Util/lib/Horde/Domhtml.php | 61 +-
framework/Util/lib/Horde/Variables.php | 51 +-
framework/Util/package.xml | 41 +-
framework/Util/test/Horde/Util/DomhtmlTest.php | 18 +-
framework/Vcs/lib/Horde/Vcs/Base.php | 13 +-
framework/Vcs/lib/Horde/Vcs/Cvs.php | 9 +-
framework/Vcs/lib/Horde/Vcs/Patchset/Cvs.php | 26 +-
framework/Vcs/package.xml | 8 +-
framework/Vcs/test/Horde/Vcs/CvsTest.php | 16 +-
framework/Vcs/test/Horde/Vcs/GitTest.php | 2 +-
framework/Vcs/test/Horde/Vcs/RcsTest.php | 8 +-
framework/Vcs/test/Horde/Vcs/SvnTest.php | 2 +-
framework/Vcs/test/Horde/Vcs/TestBase.php | 5 +-
framework/Vcs/test/Horde/Vcs/conf.php.dist | 12 +
framework/Vfs/lib/Horde/Vfs/Ftp.php | 25 -
framework/Vfs/lib/Horde/Vfs/SqlFile.php | 5 +-
framework/Vfs/lib/Horde/Vfs/Ssh2.php | 2 +-
framework/Vfs/package.xml | 4 +-
framework/Vfs/test/Horde/Vfs/FileTest.php | 33 +-
framework/Vfs/test/Horde/Vfs/FtpTest.php | 2 +
framework/Vfs/test/Horde/Vfs/SmbTest.php | 2 +
framework/Vfs/test/Horde/Vfs/Sql/MysqlTest.php | 2 +
framework/Vfs/test/Horde/Vfs/Sql/MysqliTest.php | 2 +
framework/Vfs/test/Horde/Vfs/Sql/Pdo/MysqlTest.php | 2 +
framework/Vfs/test/Horde/Vfs/Sql/Pdo/PgsqlTest.php | 2 +
framework/Vfs/test/Horde/Vfs/Ssh2Test.php | 2 +
framework/View/lib/Horde/View/Helper/FormTag.php | 3 +-
framework/View/package.xml | 21 +-
framework/View/test/Horde/View/Helper/DebugTest.php | 6 +-
framework/View/test/Horde/View/Helper/FormTagTest.php | 32 +-
framework/View/test/Horde/View/Helper/FormTest.php | 114 +-
framework/View/test/Horde/View/Helper/TagTest.php | 16 +-
framework/Yaml/lib/Horde/Yaml/Dumper.php | 115 +-
framework/Yaml/lib/Horde/Yaml/Loader.php | 184 +-
framework/Yaml/package.xml | 4 +-
framework/Yaml/test/Horde/Yaml/DumperTest.php | 4 -
framework/Yaml/test/Horde/Yaml/LoaderTest.php | 11 +-
gollem/docs/CHANGES | 8 +-
gollem/docs/INSTALL | 6 +-
gollem/docs/RELEASE_NOTES | 19 +-
gollem/lib/Application.php | 2 +-
gollem/package.xml | 33 +-
hermes/js/hermes.js | 34 +-
hermes/lib/Ajax.php | 5 +-
hermes/lib/Ajax/Application/Handler.php | 34 +-
hermes/lib/Application.php | 5 +-
hermes/lib/Driver/Sql.php | 18 +-
hermes/lib/Form/Search.php | 11 +-
hermes/lib/Slice.php | 10 +
hermes/templates/dynamic/export.inc | 7 +-
hermes/templates/dynamic/sidebar.html.php | 3 +
hermes/templates/dynamic/slices.inc | 17 +-
horde/docs/CHANGES | 8 +-
horde/docs/CODING_STANDARDS | 8 +-
horde/docs/INSTALL | 24 +-
horde/docs/RELEASE_NOTES | 12 +-
horde/js/activesyncadmin.js | 3 +-
horde/js/activesyncprefs.js | 3 +-
horde/js/categoryprefs.js | 2 +-
horde/js/contextsensitive.js | 6 +-
horde/js/dragdrop2.js | 2 +-
horde/js/facebookclient.js | 4 +-
horde/js/form_sections.js | 6 +-
horde/js/ieescguard.js | 14 +-
horde/js/login.js | 49 +-
horde/js/logintasks.js | 12 +-
horde/js/quickfinder.js | 17 +-
horde/js/slider2.js | 40 +-
horde/js/twitterclient.js | 16 +-
horde/js/userupdate.js | 7 +-
horde/js/vatid.js | 3 +-
horde/lib/Application.php | 2 +-
horde/package.xml | 85 +-
horde/themes/default/ie7.css | 9 -
horde/themes/default/ie8.css | 24 +
horde/themes/default/screen.css | 5 +-
horde/util/icon_browser.php | 79 +-
imp/attachment.php | 3 +-
imp/config/backends.php | 12 +-
imp/docs/CHANGES | 22 +-
imp/docs/INSTALL | 5 +-
imp/docs/RELEASE_NOTES | 22 +-
imp/dynamic.php | 2 +-
imp/js/dimpbase.js | 13 +-
imp/js/pgp.js | 8 +-
imp/js/searchesprefs.js | 3 -
imp/js/viewport.js | 12 +-
imp/lib/Application.php | 2 +-
imp/lib/Compose.php | 5 +-
imp/lib/Contents.php | 17 +-
imp/lib/IMP.php | 23 +-
imp/lib/Imap.php | 6 +-
imp/lib/Imap/Tree.php | 122 +-
imp/lib/LoginTasks/SystemTask/GarbageCollection.php | 21 +-
imp/lib/Maillog.php | 25 +-
imp/lib/Message.php | 21 +-
imp/lib/Mime/Viewer/Html.php | 8 +-
imp/lib/Mime/Viewer/Pgp.php | 2 +-
imp/lib/Mime/Viewer/Smime.php | 2 +-
imp/lib/Prefs/Special/Searches.php | 18 +-
imp/message.php | 8 +-
imp/minimal.php | 2 +-
imp/package.xml | 62 +-
imp/search.php | 4 +-
imp/templates/prefs/searches.html.php | 4 -
imp/templates/smartmobile/search.html.php | 2 +-
imp/themes/default/basic/screen.css | 3 +
imp/themes/default/dynamic/ie7.css | 50 -
imp/themes/default/ie7.css | 12 -
imp/themes/default/screen.css | 5 -
imp/thread.php | 4 +-
ingo/docs/CHANGES | 12 +-
ingo/docs/RELEASE_NOTES | 12 +-
ingo/lib/Application.php | 2 +-
ingo/lib/Script/Sieve.php | 11 +-
ingo/package.xml | 27 +-
ingo/spam.php | 2 +-
ingo/vacation.php | 2 +-
kronolith/docs/CHANGES | 11 +-
kronolith/docs/RELEASE_NOTES | 16 +-
kronolith/lib/Application.php | 2 +-
kronolith/lib/Driver.php | 3 +-
kronolith/lib/Driver/Resource/Sql.php | 52 +-
kronolith/lib/Event.php | 4 +-
kronolith/lib/Event/Sql.php | 11 +-
kronolith/package.xml | 57 +-
kronolith/themes/default/ie7.css | 47 -
mnemo/docs/CHANGES | 8 +-
mnemo/docs/RELEASE_NOTES | 12 +-
mnemo/lib/Application.php | 2 +-
mnemo/package.xml | 25 +-
nag/docs/CHANGES | 1 +
nag/lib/Task.php | 12 +-
nag/package.xml | 18 +-
passwd/README | 4 +-
skeleton/lib/Ajax/Application.php | 22 +-
skeleton/lib/Api.php | 22 +-
skeleton/lib/Application.php | 21 +-
skeleton/lib/Block/Example.php | 5 +-
skeleton/lib/Driver.php | 19 +-
skeleton/lib/Driver/Sql.php | 12 +-
skeleton/lib/Exception.php | 11 +-
skeleton/lib/Factory/Driver.php | 11 +-
skeleton/lib/Test.php | 16 +-
timeobjects/docs/CHANGES | 8 +-
timeobjects/lib/Application.php | 2 +-
timeobjects/package.xml | 31 +-
trean/bin/trean-backfill-remove-utm-params | 2 +-
trean/bin/trean-url-checker | 2 +-
trean/docs/CHANGES | 9 +-
trean/docs/INSTALL | 6 +-
trean/docs/RELEASE_NOTES | 16 +-
trean/lib/Application.php | 2 +-
trean/lib/Queue/Task/Crawl.php | 2 +-
trean/lib/Queue/Task/Favicon.php | 2 +-
trean/package.xml | 49 +-
turba/docs/CHANGES | 8 +-
turba/docs/RELEASE_NOTES | 14 +-
turba/lib/Application.php | 2 +-
turba/package.xml | 51 +-
turba/themes/default/ie7.css | 9 -
whups/docs/INSTALL | 2 +-
461 files changed, 6998 insertions(+), 4300 deletions(-)
http://git.horde.org/horde-git/-/commit/8b13876727a9959d057364da2bbcdd6fae2c08bc
-----------------------------------------------------------------------
commit 1085b59864f06f62c48d83bb70a5dba93b6ab726
Author: Michael Bunk <mb at computer-leipzig.com>
Date: Fri Feb 8 14:46:21 2013 +0100
Support for selectively hidden form fields
This new functionality will be used to hide form fields
not supported by the ISPConfig backend (i.e. vacation subject
is not user configurable in ISPConfig).
Signed-off-by: Jan Schneider <jan at horde.org>
ingo/lib/Form/Base.php | 19 ++++++++++
ingo/lib/Form/Vacation.php | 79 ++++++++++++++++++++++++++++---------------
ingo/lib/Script/Base.php | 20 +++++++++++
ingo/vacation.php | 4 ++-
4 files changed, 93 insertions(+), 29 deletions(-)
http://git.horde.org/horde-git/-/commit/1085b59864f06f62c48d83bb70a5dba93b6ab726
-----------------------------------------------------------------------
commit 05175f0c455947f277d2b07846452ce39578544a
Author: Jan Schneider <jan at horde.org>
Date: Tue Feb 26 15:36:10 2013 +0100
Style
ingo/lib/Script/Base.php | 7 ++++---
ingo/vacation.php | 10 +++++++---
2 files changed, 11 insertions(+), 6 deletions(-)
http://git.horde.org/horde-git/-/commit/05175f0c455947f277d2b07846452ce39578544a
-----------------------------------------------------------------------
commit e714102213a9c06e3f2cba19640740c2570560df
Author: Jan Schneider <jan at horde.org>
Date: Tue Feb 26 15:37:28 2013 +0100
[jan] Hide unsupported form fields of vacation form (Michael Bunk <mb at computer-leipzig.com>).
ingo/docs/CHANGES | 2 ++
ingo/package.xml | 2 ++
2 files changed, 4 insertions(+), 0 deletions(-)
http://git.horde.org/horde-git/-/commit/e714102213a9c06e3f2cba19640740c2570560df
-----------------------------------------------------------------------
commit 00371b7bad17a64b2553660bd8a96e1f0ac48b81
Author: Jan Schneider <jan at horde.org>
Date: Tue Feb 26 15:50:55 2013 +0100
Sieve doesn't support 'excludes' and 'ignorelist'.
ingo/lib/Script/Sieve.php | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
http://git.horde.org/horde-git/-/commit/00371b7bad17a64b2553660bd8a96e1f0ac48b81
-----------------------------------------------------------------------
commit bf767e79b4091904f2bffcf059346ca3564cf846
Author: Michael Bunk <mb at computer-leipzig.com>
Date: Fri Feb 8 15:27:38 2013 +0100
Ingo backend for ISPConfig-Support
Signed-off-by: Jan Schneider <jan at horde.org>
ingo/config/backends.php | 20 ++++
ingo/lib/Script/Ispconfig.php | 76 ++++++++++++++++
ingo/lib/Transport/Ispconfig.php | 185 ++++++++++++++++++++++++++++++++++++++
3 files changed, 281 insertions(+), 0 deletions(-)
create mode 100644 ingo/lib/Script/Ispconfig.php
create mode 100644 ingo/lib/Transport/Ispconfig.php
http://git.horde.org/horde-git/-/commit/bf767e79b4091904f2bffcf059346ca3564cf846
-----------------------------------------------------------------------
commit 38f192e7e1ee31b241dc202b870d0eb33c3816e1
Author: Jan Schneider <jan at horde.org>
Date: Tue Feb 26 15:54:02 2013 +0100
ISPConfig supports sharing, because it uses a central admin user.
ingo/config/backends.php | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
http://git.horde.org/horde-git/-/commit/38f192e7e1ee31b241dc202b870d0eb33c3816e1
-----------------------------------------------------------------------
commit 4206570e2ea153cfaaed8f629d80266a3444ff9c
Author: Jan Schneider <jan at horde.org>
Date: Tue Feb 26 15:58:02 2013 +0100
Style
ingo/lib/Script/Ispconfig.php | 4 ++--
ingo/lib/Transport/Ispconfig.php | 24 +++++++++++-------------
2 files changed, 13 insertions(+), 15 deletions(-)
http://git.horde.org/horde-git/-/commit/4206570e2ea153cfaaed8f629d80266a3444ff9c
-----------------------------------------------------------------------
commit 00d8d0c3e12eedfd49f94f9ea3ba5dffe7475f00
Author: Jan Schneider <jan at horde.org>
Date: Tue Feb 26 15:58:29 2013 +0100
[jan] Add vacation driver for ISPConfig (Michael Bunk <mb at computer-leipzig.com>).
ingo/docs/CHANGES | 2 ++
ingo/package.xml | 2 ++
2 files changed, 4 insertions(+), 0 deletions(-)
http://git.horde.org/horde-git/-/commit/00d8d0c3e12eedfd49f94f9ea3ba5dffe7475f00
-----------------------------------------------------------------------
commit 4069bf7825ff830b44a568c74c8f88557b84a805
Merge: 00d8d0c 559bcb5
Author: Jan Schneider <jan at horde.org>
Date: Wed Mar 6 14:58:07 2013 +0100
Merge remote-tracking branch 'origin/master' into ingo_3_1
agora/locale/de/LC_MESSAGES/agora.mo | Bin 81281 -> 80886 bytes
ansel/faces/custom.php | 2 +-
ansel/js/editfaces.js | 4 +-
ansel/lib/Ajax/Application/Handler.php | 7 +-
ansel/lib/Ajax/Imple/EditFaces.php | 6 +-
ansel/lib/Ansel.php | 2 +-
ansel/lib/Widget/Actions.php | 2 +-
ansel/lib/Widget/GalleryFaces.php | 2 +-
ansel/lib/Widget/Geotag.php | 64 +-
ansel/locale/ansel.pot | 385 +-
ansel/locale/de/LC_MESSAGES/ansel.mo | Bin 106504 -> 105788 bytes
ansel/locale/de/LC_MESSAGES/ansel.po | 389 +-
ansel/templates/faces/image.inc | 2 +-
ansel/templates/view/image.html.php | 4 +-
ansel/templates/widgets/geotag.html.php | 14 +-
ansel/templates/widgets/imagefaces.html.php | 14 +-
chora/lib/Application.php | 24 +-
chora/lib/Chora.php | 2 +-
chora/locale/chora.pot | 16 +-
chora/locale/de/LC_MESSAGES/chora.mo | Bin 71421 -> 71050 bytes
chora/locale/de/LC_MESSAGES/chora.po | 16 +-
components/lib/Components/Component/Source.php | 13 +-
framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php | 10 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Appointment.php | 18 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/MeetingResponse.php | 30 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php | 3 +
framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php | 12 +-
framework/ActiveSync/lib/Horde/ActiveSync/SyncCache.php | 51 +-
framework/ActiveSync/package.xml | 41 +-
framework/ActiveSync/test/Horde/ActiveSync/AppointmentTest.php | 4 +-
.../ActiveSync/test/Horde/ActiveSync/fixtures/appointment.wbxml | Bin 371 -> 376 bytes
.../ActiveSync/test/Horde/ActiveSync/fixtures/recurrence.wbxml | Bin 389 -> 394 bytes
.../test/Horde/ActiveSync/fixtures/simpleexception.wbxml | Bin 423 -> 428 bytes
framework/Alarm/package.xml | 21 +-
framework/Argv/locale/Horde_Argv.pot | 16 +-
framework/Argv/locale/de/LC_MESSAGES/Horde_Argv.mo | Bin 1492 -> 1492 bytes
framework/Argv/locale/de/LC_MESSAGES/Horde_Argv.po | 16 +-
framework/Argv/package.xml | 25 +-
framework/Auth/locale/Horde_Auth.pot | 30 +-
framework/Auth/locale/de/LC_MESSAGES/Horde_Auth.mo | Bin 3104 -> 3104 bytes
framework/Auth/locale/de/LC_MESSAGES/Horde_Auth.po | 30 +-
framework/Auth/package.xml | 21 +-
framework/Autoloader_Cache/package.xml | 21 +-
framework/Cache/lib/Horde/Cache.php | 23 +-
framework/Cache/package.xml | 47 +-
framework/Cli_Modular/package.xml | 21 +-
framework/Compress_Fast/doc/Horde/Compress/Fast/COPYING | 458 +++
framework/Compress_Fast/lib/Horde/Compress/Fast.php | 113 +
framework/Compress_Fast/lib/Horde/Compress/Fast/Base.php | 55 +
framework/Compress_Fast/lib/Horde/Compress/Fast/Exception.php | 25 +
framework/Compress_Fast/lib/Horde/Compress/Fast/Lz4.php | 50 +
framework/Compress_Fast/lib/Horde/Compress/Fast/Lzf.php | 50 +
framework/Compress_Fast/lib/Horde/Compress/Fast/Null.php | 39 +
framework/Compress_Fast/package.xml | 161 +
framework/Compress_Fast/test/Horde/Compress/Fast/AllTests.php | 3 +
.../Compress_Fast/test/Horde/Compress/Fast/CompressFastTest.php | 180 +
framework/Compress_Fast/test/Horde/Compress/Fast/bootstrap.php | 3 +
framework/Compress_Fast/test/Horde/Compress/Fast/phpunit.xml | 1 +
framework/Core/lib/Horde/Core/ActiveSync/Driver.php | 8 +-
framework/Core/lib/Horde/Core/Factory/Cache.php | 4 +-
framework/Core/lib/Horde/Core/Factory/QueueStorage.php | 5 +-
framework/Core/lib/Horde/Core/Factory/ShutdownRunner.php | 14 -
framework/Core/lib/Horde/Core/Log/Wrapper.php | 37 +
framework/Core/lib/Horde/Registry.php | 34 +-
framework/Core/lib/Horde/Session.php | 33 +-
framework/Core/lib/Horde/Session/Null.php | 1 +
framework/Core/lib/Horde/Shutdown.php | 73 +
framework/Core/lib/Horde/Shutdown/Task.php | 31 +
framework/Core/locale/Horde_Core.pot | 63 +-
framework/Core/locale/de/LC_MESSAGES/Horde_Core.mo | Bin 19930 -> 20186 bytes
framework/Core/locale/de/LC_MESSAGES/Horde_Core.po | 73 +-
framework/Core/package.xml | 83 +-
framework/Crypt/locale/Horde_Crypt.pot | 74 +-
framework/Crypt/locale/de/LC_MESSAGES/Horde_Crypt.mo | Bin 7765 -> 7765 bytes
framework/Crypt/locale/de/LC_MESSAGES/Horde_Crypt.po | 74 +-
framework/Crypt/package.xml | 24 +-
framework/Date/locale/Horde_Date.pot | 12 +-
framework/Date/locale/de/LC_MESSAGES/Horde_Date.mo | Bin 1126 -> 1126 bytes
framework/Date/locale/de/LC_MESSAGES/Horde_Date.po | 12 +-
framework/Date/package.xml | 23 +-
framework/Date_Parser/package.xml | 21 +-
framework/Db/package.xml | 21 +-
framework/ElasticSearch/package.xml | 23 +-
framework/Group/package.xml | 21 +-
framework/History/package.xml | 21 +-
framework/Http/lib/Horde/Http/Request/Fopen.php | 1 +
framework/Http/package.xml | 21 +-
framework/Icalendar/package.xml | 21 +-
framework/Image/package.xml | 21 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Acl.php | 2 +-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Sync.php | 10 +-
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 6 +-
framework/Imap_Client/locale/Horde_Imap_Client.pot | 70 +-
framework/Imap_Client/locale/de/LC_MESSAGES/Horde_Imap_Client.mo | Bin 7305 -> 7305 bytes
framework/Imap_Client/locale/de/LC_MESSAGES/Horde_Imap_Client.po | 70 +-
framework/Imap_Client/package.xml | 22 +-
framework/Kolab_Format/package.xml | 21 +-
framework/Kolab_Server/package.xml | 21 +-
framework/Kolab_Storage/package.xml | 21 +-
framework/Lock/lib/Horde/Lock/Sql.php | 33 +-
framework/Lock/package.xml | 39 +-
framework/Lock/test/Horde/Lock/AllTests.php | 3 +
framework/Lock/test/Horde/Lock/LockTest.php | 218 +
framework/Lock/test/Horde/Lock/bootstrap.php | 3 +
framework/Lock/test/Horde/Lock/phpunit.xml | 1 +
framework/Mail/package.xml | 21 +-
framework/Memcache/package.xml | 21 +-
framework/Mime_Viewer/package.xml | 23 +-
framework/Pear/package.xml | 25 +-
framework/Perms/package.xml | 23 +-
framework/Prefs/locale/Horde_Prefs.pot | 8 +-
framework/Prefs/locale/de/LC_MESSAGES/Horde_Prefs.mo | Bin 1031 -> 1031 bytes
framework/Prefs/locale/de/LC_MESSAGES/Horde_Prefs.po | 8 +-
framework/Prefs/package.xml | 22 +-
framework/Rdo/package.xml | 21 +-
framework/Serialize/package.xml | 21 +-
framework/Service_Facebook/package.xml | 21 +-
framework/Service_Twitter/package.xml | 21 +-
framework/Service_Weather/package.xml | 21 +-
framework/SessionHandler/package.xml | 21 +-
framework/Share/package.xml | 23 +-
framework/Support/lib/Horde/Support/Stub.php | 70 +-
framework/Support/package.xml | 25 +-
framework/SyncMl/package.xml | 21 +-
framework/Test/package.xml | 21 +-
framework/Text_Diff/package.xml | 21 +-
framework/Text_Filter/package.xml | 23 +-
framework/Tree/doc/Horde/Tree/COPYING | 599 ++-
framework/Tree/package.xml | 51 +-
framework/Url/lib/Horde/Url/Data.php | 22 +-
framework/Url/package.xml | 27 +-
framework/Url/test/Horde/Url/UrlDataTest.php | 11 +
framework/Util/package.xml | 21 +-
framework/Vfs/test/Horde/Vfs/FileTest.php | 3 +
framework/Yaml/package.xml | 23 +-
framework/lz4/CREDITS | 11 +
framework/lz4/LICENSE | 68 +
framework/lz4/LICENSE.lz4 | 30 +
framework/lz4/README.md | 64 +
framework/lz4/config.m4 | 37 +
framework/lz4/horde_lz4.c | 154 +
framework/lz4/horde_lz4.h | 28 +
framework/lz4/lz4.c | 906 +++++
framework/lz4/lz4.h | 128 +
framework/lz4/lz4hc.c | 730 ++++
framework/lz4/lz4hc.h | 60 +
framework/lz4/package.xml | 107 +
framework/lz4/php_verdep.h | 65 +
framework/lz4/tests/001.phpt | 26 +
framework/lz4/tests/002.phpt | 38 +
framework/lz4/tests/003.phpt | 19 +
framework/lz4/tests/004.phpt | 19 +
framework/lz4/tests/005.phpt | 43 +
framework/lz4/tests/006.phpt | 26 +
framework/lz4/tests/007.phpt | 20 +
framework/lz4/tests/data.inc | 87 +
gollem/locale/de/LC_MESSAGES/gollem.mo | Bin 73418 -> 73047 bytes
hermes/lib/Hermes.php | 6 +-
hermes/locale/de/LC_MESSAGES/hermes.mo | Bin 79861 -> 79813 bytes
hermes/locale/de/LC_MESSAGES/hermes.po | 210 +-
hermes/locale/hermes.pot | 206 +-
horde/config/conf.xml | 4 +-
horde/docs/CHANGES | 3 +
horde/docs/INSTALL | 4 +-
horde/js/login.js | 9 +-
horde/lib/Test.php | 5 +-
horde/lib/View/Topbar.php | 5 +
horde/locale/de/LC_MESSAGES/horde.mo | Bin 65285 -> 64938 bytes
horde/locale/de/LC_MESSAGES/horde.po | 47 +-
horde/locale/horde.pot | 49 +-
horde/login.php | 44 +-
horde/package.xml | 6 +-
horde/templates/login/login.inc | 15 +
horde/templates/topbar/_menubar.html.php | 3 +
horde/themes/default/ie8.css | 1 +
imp/docs/CHANGES | 4 +-
imp/js/dimpbase.js | 10 +-
imp/lib/Ajax/Application/Handler/Smartmobile.php | 2 +-
imp/lib/Compose/References.php | 8 +-
imp/lib/Imap/Tree.php | 18 +-
imp/lib/Search.php | 22 +-
imp/lib/Test.php | 10 +-
imp/locale/de/LC_MESSAGES/imp.mo | Bin 181520 -> 181260 bytes
imp/locale/de/LC_MESSAGES/imp.po | 304 +-
imp/locale/imp.pot | 304 +-
imp/package.xml | 6 +-
ingo/lib/Test.php | 2 +-
ingo/locale/de/LC_MESSAGES/ingo.mo | Bin 84603 -> 84240 bytes
ingo/locale/de/LC_MESSAGES/ingo.po | 8 +-
ingo/locale/ingo.pot | 10 +-
jonah/locale/de/LC_MESSAGES/jonah.mo | Bin 75179 -> 74848 bytes
klutz/locale/de/LC_MESSAGES/klutz.mo | Bin 69993 -> 69670 bytes
kronolith/docs/CHANGES | 4 +
kronolith/js/kronolith.js | 13 +-
kronolith/lib/Application.php | 2 +-
kronolith/locale/de/LC_MESSAGES/kronolith.mo | Bin 125921 -> 125502 bytes
kronolith/locale/de/LC_MESSAGES/kronolith.po | 142 +-
kronolith/locale/kronolith.pot | 144 +-
kronolith/package.xml | 4 +
luxor/locale/de/LC_MESSAGES/luxor.mo | Bin 67302 -> 66979 bytes
mnemo/locale/de/LC_MESSAGES/mnemo.mo | Bin 74851 -> 74528 bytes
nag/docs/CHANGES | 2 +
nag/lib/Api.php | 14 +-
nag/locale/de/LC_MESSAGES/nag.mo | Bin 90801 -> 90446 bytes
nag/locale/de/LC_MESSAGES/nag.po | 4 +-
nag/locale/nag.pot | 4 +-
nag/package.xml | 4 +
passwd/locale/de/LC_MESSAGES/passwd.mo | Bin 71235 -> 70888 bytes
sam/locale/de/LC_MESSAGES/sam.mo | Bin 69335 -> 69012 bytes
sesha/locale/de/LC_MESSAGES/sesha.mo | Bin 74072 -> 73709 bytes
skeleton/locale/skeleton.pot | 22 +-
timeobjects/locale/de/LC_MESSAGES/timeobjects.mo | Bin 65822 -> 65475 bytes
trean/locale/de/LC_MESSAGES/trean.mo | Bin 69605 -> 69282 bytes
turba/locale/de/LC_MESSAGES/turba.mo | Bin 97175 -> 96852 bytes
ulaform/locale/de/LC_MESSAGES/ulaform.mo | Bin 71054 -> 70707 bytes
vilma/locale/de/LC_MESSAGES/vilma.mo | Bin 76701 -> 76378 bytes
whups/locale/de/LC_MESSAGES/whups.mo | Bin 107023 -> 106636 bytes
wicked/lib/Text_Wiki/Render/Xhtml/Image2.php | 10 +-
wicked/locale/de/LC_MESSAGES/wicked.mo | Bin 79732 -> 79385 bytes
219 files changed, 7322 insertions(+), 2211 deletions(-)
http://git.horde.org/horde-git/-/commit/4069bf7825ff830b44a568c74c8f88557b84a805
-----------------------------------------------------------------------
commit fba9c4675c7035f06581d6b16503b3e72ae6fda5
Author: Jan Schneider <jan at horde.org>
Date: Wed Mar 6 18:15:27 2013 +0100
[jan] Add composite script backends.
ingo/blacklist.php | 3 +-
ingo/config/backends.php | 155 ++++++++++++++++++-----------
ingo/config/prefs.php | 3 +-
ingo/docs/CHANGES | 1 +
ingo/docs/UPGRADING | 5 +-
ingo/filters.php | 10 +-
ingo/lib/Ajax/Application/Smartmobile.php | 9 ++-
ingo/lib/Api.php | 19 ++--
ingo/lib/Application.php | 37 +++----
ingo/lib/Factory/Script.php | 106 +++++++++++++++++---
ingo/lib/Factory/Transport.php | 8 +-
ingo/lib/Ingo.php | 15 ++--
ingo/lib/Script/Base.php | 6 +-
ingo/lib/Script/Imap.php | 2 +-
ingo/lib/Script/Ispconfig.php | 2 +-
ingo/lib/Script/Maildrop.php | 2 +-
ingo/lib/Script/Procmail.php | 2 +-
ingo/lib/Script/Sieve.php | 2 +-
ingo/lib/Storage/Filters.php | 43 ++++++++-
ingo/package.xml | 2 +
ingo/rule.php | 3 +-
ingo/script.php | 8 +-
ingo/vacation.php | 3 +-
23 files changed, 310 insertions(+), 136 deletions(-)
http://git.horde.org/horde-git/-/commit/fba9c4675c7035f06581d6b16503b3e72ae6fda5
-----------------------------------------------------------------------
commit 7e88772659af795e78ef9d5064885a96bd858d4b
Merge: fba9c46 4d6f9cb
Author: Jan Schneider <jan at horde.org>
Date: Thu Mar 7 15:51:17 2013 +0100
Merge remote-tracking branch 'origin/master' into ingo_3_1
.travis.yml | 2 +-
framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php | 6 +-
framework/ActiveSync/lib/Horde/ActiveSync/Imap/Message.php | 8 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/GetItemEstimate.php | 12 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php | 28 +-
framework/ActiveSync/lib/Horde/ActiveSync/State/Sql.php | 5 +-
framework/ActiveSync/lib/Horde/ActiveSync/Utils.php | 5 +-
framework/Autoloader_Cache/lib/Horde/Autoloader/Cache.php | 15 +-
framework/Autoloader_Cache/package.xml | 11 +-
framework/Cache/lib/Horde/Cache/Storage/Apc.php | 29 +-
framework/Cache/lib/Horde/Cache/Storage/Base.php | 51 ++-
framework/Cache/lib/Horde/Cache/Storage/Eaccelerator.php | 26 +-
framework/Cache/lib/Horde/Cache/Storage/File.php | 69 +-
framework/Cache/lib/Horde/Cache/Storage/Memcache.php | 63 +-
framework/Cache/lib/Horde/Cache/Storage/Mock.php | 34 +-
framework/Cache/lib/Horde/Cache/Storage/Null.php | 20 +-
framework/Cache/lib/Horde/Cache/Storage/Session.php | 32 +-
framework/Cache/lib/Horde/Cache/Storage/Sql.php | 55 +-
framework/Cache/lib/Horde/Cache/Storage/Stack.php | 43 +-
framework/Cache/lib/Horde/Cache/Storage/Xcache.php | 26 +-
framework/Cache/package.xml | 4 +-
framework/Cli_Modular/lib/Horde/Cli/Modular.php | 10 +-
framework/Cli_Modular/lib/Horde/Cli/Modular/Module.php | 39 +-
framework/Core/lib/Horde.php | 69 +-
framework/Core/lib/Horde/Core/ActiveSync/Logger/Factory.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Application/Handler/Groups.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/ContactAutoCompleter.php | 2 +-
framework/Core/lib/Horde/Core/Ajax/Imple/SpellChecker.php | 2 +-
framework/Core/lib/Horde/Core/Auth/Shibboleth.php | 2 +-
framework/Core/lib/Horde/Core/Factory/Logger.php | 54 ++-
framework/Core/lib/Horde/Core/Factory/Prefs.php | 2 +-
.../lib/Horde/Core/Notification/Handler/Decorator/Hordelog.php | 4 +-
framework/Core/lib/Horde/Core/Prefs/Ui.php | 2 +-
framework/Core/lib/Horde/Core/Share/Driver.php | 4 +-
framework/Core/lib/Horde/Core/Topbar.php | 2 +-
framework/Core/lib/Horde/ErrorHandler.php | 2 +-
framework/Core/lib/Horde/Registry.php | 31 +-
framework/Core/lib/Horde/Session.php | 12 +-
framework/Core/lib/Horde/Session/Null.php | 11 +-
framework/Core/lib/Horde/Themes/Element.php | 2 +-
framework/Core/package.xml | 6 +
framework/Prefs/lib/Horde/Prefs/Scope.php | 148 +++--
framework/Prefs/package.xml | 4 +-
framework/Rpc/lib/Horde/Rpc/ActiveSync.php | 4 -
horde/rpc.php | 1 -
imp/js/dimpbase.js | 13 +-
imp/lib/IMP.php | 6 +-
imp/search.php | 2 +-
imp/themes/default/dynamic/screen.css | 3 +
nag/docs/CHANGES | 1 +
nag/js/smartmobile.js | 5 +-
nag/lib/Ajax/Application/Handler/Smartmobile.php | 2 +-
nag/lib/Tasklist.php | 2 +-
nag/package.xml | 2 +
turba/docs/CHANGES | 2 +
turba/lib/Data/Ldif.php | 2 +-
turba/lib/Driver/Ldap.php | 4 +-
turba/package.xml | 4 +-
58 files changed, 637 insertions(+), 372 deletions(-)
http://git.horde.org/horde-git/-/commit/7e88772659af795e78ef9d5064885a96bd858d4b
-----------------------------------------------------------------------
commit 1dfa4413d7736cc70995313b152c29c1dab2319a
Merge: 7e88772 ffca861
Author: Jan Schneider <jan at horde.org>
Date: Fri Mar 8 15:14:02 2013 +0100
Merge remote-tracking branch 'origin/master' into ingo_3_1
framework/ActiveSync/lib/Horde/ActiveSync/Folder/Imap.php | 7 +-
framework/ActiveSync/lib/Horde/ActiveSync/Imap/Message.php | 3 +-
framework/ActiveSync/lib/Horde/ActiveSync/Message/Contact.php | 3 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/FolderSync.php | 2 +-
.../ActiveSync/lib/Horde/ActiveSync/Request/GetItemEstimate.php | 59 +++-
framework/ActiveSync/lib/Horde/ActiveSync/Request/MoveItems.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Request/Ping.php | 75 ++--
framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php | 85 ++---
framework/ActiveSync/lib/Horde/ActiveSync/State/Sql.php | 2 +-
framework/ActiveSync/lib/Horde/ActiveSync/SyncCache.php | 4 +-
framework/ActiveSync/lib/Horde/ActiveSync/Wbxml/Encoder.php | 4 +-
framework/Cache/lib/Horde/Cache/Storage/Stack.php | 2 +-
framework/Core/package.xml | 26 +-
framework/Rpc/lib/Horde/Rpc/ActiveSync.php | 9 +-
horde/templates/login/smartmobile.html.php | 13 +
15 files changed, 179 insertions(+), 119 deletions(-)
http://git.horde.org/horde-git/-/commit/1dfa4413d7736cc70995313b152c29c1dab2319a
-----------------------------------------------------------------------
commit a8faa8b0011d68c9315293222b0c65b553013dab
Author: Jan Schneider <jan at horde.org>
Date: Fri Mar 8 16:00:16 2013 +0100
Make sure to only generate script recipes once.
ingo/lib/Script/Base.php | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/a8faa8b0011d68c9315293222b0c65b553013dab
-----------------------------------------------------------------------
commit c6a697135840cf0e6f311381bd855cb286486f3c
Author: Jan Schneider <jan at horde.org>
Date: Fri Mar 8 18:02:10 2013 +0100
Pass complete recipe list to transport drivers too.
This is useful for filter systems that don't work with a single textual script.
ingo/lib/Ingo.php | 2 +-
ingo/lib/Script/Base.php | 4 +++-
ingo/lib/Transport/Base.php | 5 ++---
ingo/lib/Transport/Ldap.php | 13 ++++++-------
ingo/lib/Transport/Timsieved.php | 15 +++++++--------
ingo/lib/Transport/Vfs.php | 17 ++++++++---------
6 files changed, 27 insertions(+), 29 deletions(-)
http://git.horde.org/horde-git/-/commit/c6a697135840cf0e6f311381bd855cb286486f3c
-----------------------------------------------------------------------
commit c58185cafd34eec98198b3d35d2efd8a6d9d842f
Author: Jan Schneider <jan at horde.org>
Date: Fri Mar 8 18:04:05 2013 +0100
Fix ISPConfig script to work with Ingo 3.1.
ingo/config/backends.php | 19 ++++-----
ingo/lib/Script/Ispconfig.php | 68 ++++++++++++++-----------------
ingo/lib/Script/Ispconfig/Vacation.php | 49 +++++++++++++++++++++++
ingo/lib/Transport/Ispconfig.php | 32 ++++++++++-----
ingo/package.xml | 14 +++++-
5 files changed, 122 insertions(+), 60 deletions(-)
create mode 100644 ingo/lib/Script/Ispconfig/Vacation.php
http://git.horde.org/horde-git/-/commit/c58185cafd34eec98198b3d35d2efd8a6d9d842f
-----------------------------------------------------------------------
commit 4480db041ab70884dc643a334aca0657b0e7746b
Author: Jan Schneider <jan at horde.org>
Date: Fri Mar 8 18:18:47 2013 +0100
Fix method name.
ingo/script.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/4480db041ab70884dc643a334aca0657b0e7746b
-----------------------------------------------------------------------
commit 44ba0190c11c57301cfd9826c46a162e125ecf5a
Author: Jan Schneider <jan at horde.org>
Date: Fri Mar 8 18:19:05 2013 +0100
Remove superfluous line breaks.
ingo/lib/Script/Maildrop/Recipe.php | 6 +++---
ingo/lib/Script/Maildrop/Variable.php | 2 +-
ingo/lib/Script/Procmail/Recipe.php | 6 +++---
ingo/lib/Script/Sieve.php | 2 +-
ingo/lib/Script/Sieve/Action/Vacation.php | 6 +++---
ingo/lib/Script/Sieve/Else.php | 4 ++--
ingo/lib/Script/Sieve/Elsif.php | 4 ++--
ingo/lib/Script/Sieve/If.php | 6 +++---
ingo/lib/Script/Sieve/Require.php | 4 ++--
9 files changed, 20 insertions(+), 20 deletions(-)
http://git.horde.org/horde-git/-/commit/44ba0190c11c57301cfd9826c46a162e125ecf5a
-----------------------------------------------------------------------
commit f2263ea371d30dd6eeee6cc4d2f5f5dec40082ed
Author: Jan Schneider <jan at horde.org>
Date: Fri Mar 8 18:53:42 2013 +0100
Fix comment.
ingo/lib/Transport/Vfs.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/f2263ea371d30dd6eeee6cc4d2f5f5dec40082ed
-----------------------------------------------------------------------
commit 430155418854efb3a1f34c25377e5850c9e275b4
Merge: f2263ea 813ad65
Author: Jan Schneider <jan at horde.org>
Date: Mon Mar 11 16:08:33 2013 +0100
Merge remote-tracking branch 'origin/master' into ingo_3_1
Conflicts:
ingo/package.xml
.travis.yml | 2 +-
ansel/lib/View/Ansel.php | 5 +-
framework/ActiveSync/lib/Horde/ActiveSync.php | 5 ++-
framework/ActiveSync/package.xml | 23 +++++++++--
framework/Db/lib/Horde/Db/Adapter/Postgresql/Schema.php | 5 ++
framework/Db/package.xml | 4 +-
framework/Db/test/Horde/Db/Adapter/MysqlTest.php | 4 ++
framework/Db/test/Horde/Db/Adapter/MysqliTest.php | 4 ++
framework/Db/test/Horde/Db/Adapter/Pdo/MysqlTest.php | 4 ++
framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlTest.php | 4 ++
framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php | 4 ++
framework/Imap_Client/lib/Horde/Imap/Client/Base.php | 12 ++++-
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 7 ++-
framework/Imap_Client/package.xml | 22 ++++++++--
hermes/lib/Form/Search.php | 2 +-
horde/js/login.js | 2 +-
horde/js/smartmobile-login.js | 27 +++++++++++-
horde/login.php | 2 +-
imp/js/login.js | 25 ++++--------
imp/js/smartmobile.js | 4 +-
imp/lib/Application.php | 2 +-
ingo/docs/CHANGES | 1 +
ingo/lib/Ingo.php | 2 +-
ingo/package.xml | 1 +
nag/docs/CHANGES | 1 +
nag/migration/12_nag_fix_smartlists.php | 32 +++++++++++++++
nag/package.xml | 10 +++-
27 files changed, 167 insertions(+), 49 deletions(-)
http://git.horde.org/horde-git/-/commit/430155418854efb3a1f34c25377e5850c9e275b4
-----------------------------------------------------------------------
commit 1dd6de0adc8bd253eb96bed28472b26f98dbafe6
Merge: 4301554 b4db1c8
Author: Jan Schneider <jan at horde.org>
Date: Tue Mar 12 11:57:23 2013 +0100
Merge remote-tracking branch 'origin/master' into ingo_3_1
framework/ActiveSync/lib/Horde/ActiveSync.php | 8 +-
framework/ActiveSync/lib/Horde/ActiveSync/State/Sql.php | 3 +-
framework/ActiveSync/lib/Horde/ActiveSync/Wbxml/Encoder.php | 6 +-
framework/Autoloader_Cache/bin/horde-autoloader-cache-prune | 6 +-
framework/Autoloader_Cache/lib/Horde/Autoloader/Cache.php | 66 ++-
framework/Autoloader_Cache/package.xml | 31 +-
framework/Core/lib/Horde.php | 3 +-
framework/Core/lib/Horde/Core/Ajax/Application.php | 16 +-
framework/Core/package.xml | 25 +-
framework/Imap_Client/doc/Horde/Imap/Client/UPGRADING | 20 +-
framework/Imap_Client/lib/Horde/Imap/Client/Base.php | 112 ++++-
framework/Imap_Client/lib/Horde/Imap/Client/Data/Sync.php | 85 +++-
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 71 +---
framework/Imap_Client/package.xml | 16 +-
horde/lib/LoginTasks/Task/AdminCheck.php | 19 +-
imp/lib/Ajax/Application/ListMessages.php | 2 +-
imp/lib/Ui/Folder.php | 6 +-
ingo/lib/Ingo.php | 9 +-
mnemo/lib/Driver.php | 2 +-
passwd/README | 2 +-
passwd/config/backends.php | 212 +++-----
passwd/config/hooks.php.dist | 1 +
passwd/docs/CHANGES | 1 +
passwd/docs/INSTALL | 12 +-
passwd/docs/UPGRADING | 4 +-
passwd/index.php | 228 +--------
passwd/js/passwd.js | 11 +-
passwd/lib/Application.php | 30 +-
passwd/lib/Basic.php | 286 +++++++++++
passwd/lib/Driver.php | 41 +-
passwd/lib/Driver/Http.php | 66 ++--
passwd/lib/Exception.php | 18 +-
passwd/lib/Factory/Driver.php | 90 ++--
passwd/lib/Passwd.php | 106 ----
passwd/lib/Test.php | 40 +-
passwd/locale/en/help.xml | 21 +-
passwd/package.xml | 16 +-
passwd/templates/index.html.php | 34 +-
passwd/test/Passwd/Unit/Factory/DriverTest.php | 19 +-
39 files changed, 931 insertions(+), 813 deletions(-)
http://git.horde.org/horde-git/-/commit/1dd6de0adc8bd253eb96bed28472b26f98dbafe6
-----------------------------------------------------------------------
commit bc9b56298e52f07d30e059655e908d29082425c3
Author: Jan Schneider <jan at horde.org>
Date: Tue Mar 12 14:15:54 2013 +0100
phpdoc
ingo/lib/Ajax/Application.php | 11 +++++++++--
ingo/lib/Ajax/Application/Smartmobile.php | 11 +++++++++--
ingo/lib/Api.php | 16 +++++++++++-----
ingo/lib/Application.php | 12 +++++++-----
ingo/lib/Block/Overview.php | 11 +++++++++--
ingo/lib/Exception.php | 11 +++++++++--
ingo/lib/Exception/Pear.php | 11 +++++++++--
ingo/lib/Factory/Storage.php | 12 ++++--------
ingo/lib/Factory/Transport.php | 10 ++++------
ingo/lib/Form/Base.php | 11 +++++++++--
ingo/lib/Form/Forward.php | 11 +++++++++--
ingo/lib/Form/Spam.php | 11 +++++++++--
ingo/lib/Form/Vacation.php | 11 +++++++++--
ingo/lib/Ingo.php | 12 ++++++++++--
ingo/lib/LoginTasks/SystemTask/Upgrade.php | 11 +++++++++--
ingo/lib/Script/Base.php | 14 +++++++++++---
ingo/lib/Script/Imap.php | 13 ++++++++++---
ingo/lib/Script/Imap/Api.php | 11 +++++++++--
ingo/lib/Script/Imap/Live.php | 12 ++++++++++--
ingo/lib/Script/Imap/Mock.php | 6 ++++++
ingo/lib/Script/Ispconfig.php | 12 +++++++++---
ingo/lib/Script/Ispconfig/Vacation.php | 13 ++++++++++---
ingo/lib/Script/Item.php | 13 ++++++++++---
ingo/lib/Script/Maildrop.php | 12 ++++++++++--
ingo/lib/Script/Maildrop/Comment.php | 12 ++++++++++--
ingo/lib/Script/Maildrop/Recipe.php | 12 ++++++++++--
ingo/lib/Script/Maildrop/Variable.php | 12 ++++++++++--
ingo/lib/Script/Procmail.php | 13 +++++++++++--
ingo/lib/Script/Procmail/Comment.php | 12 ++++++++++--
ingo/lib/Script/Procmail/Default.php | 13 ++++++++++---
ingo/lib/Script/Procmail/Recipe.php | 12 ++++++++++--
ingo/lib/Script/Procmail/Variable.php | 12 ++++++++++--
ingo/lib/Script/Sieve.php | 12 +++++++++++-
ingo/lib/Script/Sieve/Action.php | 16 ++++++++++++----
ingo/lib/Script/Sieve/Action/Addflag.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Action/Discard.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Action/Fileinto.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Action/Flag.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Action/Keep.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Action/Notify.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Action/Redirect.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Action/Reject.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Action/Removeflag.php | 14 +++++++++++---
ingo/lib/Script/Sieve/Action/Stop.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Action/Vacation.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Comment.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Else.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Elsif.php | 12 ++++++++++--
ingo/lib/Script/Sieve/If.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Require.php | 11 +++++++++--
ingo/lib/Script/Sieve/Test.php | 16 ++++++++++++----
ingo/lib/Script/Sieve/Test/Address.php | 14 +++++++++++---
ingo/lib/Script/Sieve/Test/Allof.php | 16 ++++++++++++----
ingo/lib/Script/Sieve/Test/Anyof.php | 16 ++++++++++++----
ingo/lib/Script/Sieve/Test/Body.php | 14 +++++++++++---
ingo/lib/Script/Sieve/Test/Exists.php | 14 +++++++++++---
ingo/lib/Script/Sieve/Test/False.php | 14 +++++++++++---
ingo/lib/Script/Sieve/Test/Header.php | 14 +++++++++++---
ingo/lib/Script/Sieve/Test/Not.php | 14 +++++++++++---
ingo/lib/Script/Sieve/Test/Relational.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Test/Size.php | 12 ++++++++++--
ingo/lib/Script/Sieve/Test/True.php | 14 +++++++++++---
ingo/lib/Script/String.php | 11 +++++++++--
ingo/lib/Smartmobile.php | 11 +++++++++--
ingo/lib/Storage.php | 12 ++++++++++--
ingo/lib/Storage/Blacklist.php | 13 ++++++++++---
ingo/lib/Storage/Filters.php | 13 ++++++++++---
ingo/lib/Storage/Filters/Sql.php | 16 ++++++++++++----
ingo/lib/Storage/Forward.php | 13 ++++++++++---
ingo/lib/Storage/Mock.php | 12 +++++++++---
ingo/lib/Storage/Prefs.php | 14 +++++++++++---
ingo/lib/Storage/Rule.php | 13 ++++++++++---
ingo/lib/Storage/Spam.php | 13 ++++++++++---
ingo/lib/Storage/Sql.php | 14 +++++++++++---
ingo/lib/Storage/Vacation.php | 13 ++++++++++---
ingo/lib/Storage/VacationTest.php | 13 ++++++++++---
ingo/lib/Storage/Whitelist.php | 13 ++++++++++---
ingo/lib/Test.php | 11 +++++++++--
ingo/lib/Transport/Base.php | 12 ++++++++++--
ingo/lib/Transport/Ispconfig.php | 16 +++++++++++++---
ingo/lib/Transport/Ldap.php | 17 +++++++++++++----
ingo/lib/Transport/Null.php | 12 +++++++++---
ingo/lib/Transport/Sivtest.php | 14 +++++++++++---
ingo/lib/Transport/Timsieved.php | 18 ++++++++++++++----
ingo/lib/Transport/Vfs.php | 18 ++++++++++++++----
ingo/lib/Ui/VarRenderer/Ingo.php | 13 ++++++++++---
86 files changed, 862 insertions(+), 230 deletions(-)
http://git.horde.org/horde-git/-/commit/bc9b56298e52f07d30e059655e908d29082425c3
-----------------------------------------------------------------------
commit 3e97aa19f2125e20d28ec6cb9a2b60f1356c1b01
Author: Jan Schneider <jan at horde.org>
Date: Wed Mar 13 12:10:10 2013 +0100
Hide blacklist/whitelist if not supported by current backends.
ingo/lib/Application.php | 15 ++++++++++-----
1 files changed, 10 insertions(+), 5 deletions(-)
http://git.horde.org/horde-git/-/commit/3e97aa19f2125e20d28ec6cb9a2b60f1356c1b01
-----------------------------------------------------------------------
commit 14cd41c779dae58560a49095fd62c26b63c6efba
Author: Jan Schneider <jan at horde.org>
Date: Wed Mar 13 13:12:11 2013 +0100
Trim scripts.
ingo/script.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/14cd41c779dae58560a49095fd62c26b63c6efba
-----------------------------------------------------------------------
commit 592d076cc57df9a18e6b345432f0833e23e37b41
Author: Jan Schneider <jan at horde.org>
Date: Wed Mar 13 13:12:54 2013 +0100
phpdoc
ingo/lib/Script/Base.php | 2 --
ingo/lib/Transport/Base.php | 5 ++++-
ingo/lib/Transport/Ispconfig.php | 4 +++-
ingo/lib/Transport/Ldap.php | 4 +++-
ingo/lib/Transport/Timsieved.php | 3 ++-
ingo/lib/Transport/Vfs.php | 3 ++-
6 files changed, 14 insertions(+), 7 deletions(-)
http://git.horde.org/horde-git/-/commit/592d076cc57df9a18e6b345432f0833e23e37b41
-----------------------------------------------------------------------
commit 4718084d5c8ca2bf8d33fff8f24d496e6c04baeb
Author: Jan Schneider <jan at horde.org>
Date: Wed Mar 13 13:13:56 2013 +0100
Fix skipping rules if only using a single catch-all script backend.
ingo/lib/Factory/Script.php | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
http://git.horde.org/horde-git/-/commit/4718084d5c8ca2bf8d33fff8f24d496e6c04baeb
-----------------------------------------------------------------------
commit f5f2060cd26631a552f24e4a10fac19174c5487b
Author: Jan Schneider <jan at horde.org>
Date: Wed Mar 13 13:14:45 2013 +0100
Always pass euser, but don't overwrite backend configuration with user credentials.
ingo/lib/Factory/Transport.php | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
http://git.horde.org/horde-git/-/commit/f5f2060cd26631a552f24e4a10fac19174c5487b
-----------------------------------------------------------------------
commit 2a7643e186b92d9be3e14d9c33262ed0b1476586
Author: Jan Schneider <jan at horde.org>
Date: Wed Mar 13 13:24:29 2013 +0100
Add customsql driver from vacation module.
ingo/config/backends.php | 43 ++++++++++---
ingo/lib/Script/Customsql.php | 136 +++++++++++++++++++++++++++++++++++++++++
ingo/lib/Transport/Base.php | 11 +++
ingo/lib/Transport/Sql.php | 97 +++++++++++++++++++++++++++++
ingo/package.xml | 10 ++-
5 files changed, 284 insertions(+), 13 deletions(-)
create mode 100644 ingo/lib/Script/Customsql.php
create mode 100644 ingo/lib/Transport/Sql.php
http://git.horde.org/horde-git/-/commit/2a7643e186b92d9be3e14d9c33262ed0b1476586
-----------------------------------------------------------------------
commit ad86cfbabfcffad630cb5e3b00f7ee4a235ef32d
Merge: 2a7643e 8a6f665
Author: Jan Schneider <jan at horde.org>
Date: Thu Mar 14 11:34:46 2013 +0100
Merge branch 'master' into ingo_3_1
framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php | 1 +
framework/ActiveSync/locale/eu/LC_MESSAGES/Horde_ActiveSync.mo | Bin 944 -> 981 bytes
framework/ActiveSync/locale/eu/LC_MESSAGES/Horde_ActiveSync.po | 6 +-
framework/Alarm/locale/eu/LC_MESSAGES/Horde_Alarm.mo | Bin 762 -> 772 bytes
framework/Alarm/locale/eu/LC_MESSAGES/Horde_Alarm.po | 9 +-
framework/Argv/locale/eu/LC_MESSAGES/Horde_Argv.mo | Bin 585 -> 596 bytes
framework/Argv/locale/eu/LC_MESSAGES/Horde_Argv.po | 5 +-
framework/Auth/lib/Horde/Auth/Ldap.php | 4 +-
framework/Auth/locale/eu/LC_MESSAGES/Horde_Auth.mo | Bin 742 -> 753 bytes
framework/Auth/locale/eu/LC_MESSAGES/Horde_Auth.po | 31 +-
framework/Browser/locale/eu/LC_MESSAGES/Horde_Browser.mo | Bin 1149 -> 1160 bytes
framework/Browser/locale/eu/LC_MESSAGES/Horde_Browser.po | 5 +-
framework/Cli/locale/eu/LC_MESSAGES/Horde_Cli.mo | Bin 696 -> 707 bytes
framework/Cli/locale/eu/LC_MESSAGES/Horde_Cli.po | 5 +-
framework/Compress/locale/eu/LC_MESSAGES/Horde_Compress.mo | Bin 731 -> 983 bytes
framework/Compress/locale/eu/LC_MESSAGES/Horde_Compress.po | 9 +-
framework/Core/lib/Horde.php | 287 +-
framework/Core/lib/Horde/Config.php | 26 +-
framework/Core/lib/Horde/Core/ActiveSync/Connector.php | 2 +-
framework/Core/lib/Horde/Core/ActiveSync/Driver.php | 1 +
framework/Core/lib/Horde/Core/Db/Migration.php | 31 +-
framework/Core/lib/Horde/Core/Factory/Logger.php | 15 +-
framework/Core/lib/Horde/Deprecated.php | 105 +
framework/Core/lib/Horde/Themes/Image.php | 122 +-
framework/Core/locale/eu/LC_MESSAGES/Horde_Core.mo | Bin 5850 -> 19198 bytes
framework/Core/locale/eu/LC_MESSAGES/Horde_Core.po | 567 +-
framework/Core/package.xml | 16 +-
framework/Crypt/locale/eu/LC_MESSAGES/Horde_Crypt.mo | Bin 805 -> 1893 bytes
framework/Crypt/locale/eu/LC_MESSAGES/Horde_Crypt.po | 116 +-
framework/Data/locale/eu/LC_MESSAGES/Horde_Data.mo | Bin 851 -> 1262 bytes
framework/Data/locale/eu/LC_MESSAGES/Horde_Data.po | 11 +-
framework/Date/locale/eu/LC_MESSAGES/Horde_Date.mo | Bin 488 -> 1189 bytes
framework/Date/locale/eu/LC_MESSAGES/Horde_Date.po | 62 +-
framework/Exception/locale/eu/LC_MESSAGES/Horde_Exception.mo | Bin 591 -> 602 bytes
framework/Exception/locale/eu/LC_MESSAGES/Horde_Exception.po | 5 +-
framework/Form/locale/eu/LC_MESSAGES/Horde_Form.mo | Bin 1098 -> 1997 bytes
framework/Form/locale/eu/LC_MESSAGES/Horde_Form.po | 61 +-
framework/Icalendar/locale/eu/LC_MESSAGES/Horde_Icalendar.mo | Bin 553 -> 564 bytes
framework/Icalendar/locale/eu/LC_MESSAGES/Horde_Icalendar.po | 5 +-
framework/Image/locale/eu/LC_MESSAGES/Horde_Image.mo | Bin 1279 -> 1352 bytes
framework/Image/locale/eu/LC_MESSAGES/Horde_Image.po | 12 +-
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 4 +-
framework/Imap_Client/locale/eu/LC_MESSAGES/Horde_Imap_Client.mo | Bin 1408 -> 2044 bytes
framework/Imap_Client/locale/eu/LC_MESSAGES/Horde_Imap_Client.po | 135 +-
framework/Imsp/locale/eu/LC_MESSAGES/Horde_Imsp.mo | Bin 569 -> 580 bytes
framework/Imsp/locale/eu/LC_MESSAGES/Horde_Imsp.po | 5 +-
framework/Itip/locale/eu/LC_MESSAGES/Horde_Itip.mo | Bin 603 -> 1432 bytes
framework/Itip/locale/eu/LC_MESSAGES/Horde_Itip.po | 23 +-
framework/Kolab_Cli/locale/eu/LC_MESSAGES/Horde_Kolab_Cli.mo | Bin 492 -> 959 bytes
framework/Kolab_Cli/locale/eu/LC_MESSAGES/Horde_Kolab_Cli.po | 22 +-
.../Kolab_FreeBusy/locale/eu/LC_MESSAGES/Horde_Kolab_FreeBusy.mo | Bin 623 -> 983 bytes
.../Kolab_FreeBusy/locale/eu/LC_MESSAGES/Horde_Kolab_FreeBusy.po | 20 +-
.../Kolab_Resource/locale/eu/LC_MESSAGES/Horde_Kolab_Resource.mo | Bin 988 -> 999 bytes
.../Kolab_Resource/locale/eu/LC_MESSAGES/Horde_Kolab_Resource.po | 5 +-
.../Kolab_Storage/locale/eu/LC_MESSAGES/Horde_Kolab_Storage.mo | Bin 496 -> 806 bytes
.../Kolab_Storage/locale/eu/LC_MESSAGES/Horde_Kolab_Storage.po | 33 +-
framework/LoginTasks/locale/eu/LC_MESSAGES/Horde_LoginTasks.mo | Bin 696 -> 707 bytes
framework/LoginTasks/locale/eu/LC_MESSAGES/Horde_LoginTasks.po | 5 +-
framework/Mime/locale/eu/LC_MESSAGES/Horde_Mime.mo | Bin 1318 -> 1329 bytes
framework/Mime/locale/eu/LC_MESSAGES/Horde_Mime.po | 5 +-
framework/Mime_Viewer/locale/eu/LC_MESSAGES/Horde_Mime_Viewer.mo | Bin 1559 -> 1570 bytes
framework/Mime_Viewer/locale/eu/LC_MESSAGES/Horde_Mime_Viewer.po | 5 +-
framework/Model/locale/eu/LC_MESSAGES/Horde_Model.mo | Bin 1296 -> 2980 bytes
framework/Model/locale/eu/LC_MESSAGES/Horde_Model.po | 107 +-
framework/Nls/locale/eu/LC_MESSAGES/Horde_Nls.mo | Bin 592 -> 2485 bytes
framework/Nls/locale/eu/LC_MESSAGES/Horde_Nls.po | 103 +-
framework/Perms/locale/eu/LC_MESSAGES/Horde_Perms.mo | Bin 855 -> 866 bytes
framework/Perms/locale/eu/LC_MESSAGES/Horde_Perms.po | 5 +-
framework/Prefs/locale/eu/LC_MESSAGES/Horde_Prefs.mo | Bin 1071 -> 1082 bytes
framework/Prefs/locale/eu/LC_MESSAGES/Horde_Prefs.po | 5 +-
framework/Push/locale/eu/LC_MESSAGES/Horde_Push.mo | Bin 487 -> 767 bytes
framework/Push/locale/eu/LC_MESSAGES/Horde_Push.po | 11 +-
framework/Rpc/locale/eu/LC_MESSAGES/Horde_Rpc.mo | Bin 560 -> 571 bytes
framework/Rpc/locale/eu/LC_MESSAGES/Horde_Rpc.po | 5 +-
.../locale/eu/LC_MESSAGES/Horde_Service_Facebook.mo | Bin 717 -> 728 bytes
.../locale/eu/LC_MESSAGES/Horde_Service_Facebook.po | 5 +-
.../Service_Scribd/locale/eu/LC_MESSAGES/Horde_Service_Scribd.mo | Bin 557 -> 568 bytes
.../Service_Scribd/locale/eu/LC_MESSAGES/Horde_Service_Scribd.po | 5 +-
.../locale/eu/LC_MESSAGES/Horde_Service_Weather.mo | Bin 782 -> 868 bytes
.../locale/eu/LC_MESSAGES/Horde_Service_Weather.po | 26 +-
framework/Share/locale/eu/LC_MESSAGES/Horde_Share.mo | Bin 626 -> 637 bytes
framework/Share/locale/eu/LC_MESSAGES/Horde_Share.po | 5 +-
framework/SyncMl/locale/eu/LC_MESSAGES/Horde_SyncMl.mo | Bin 565 -> 576 bytes
framework/SyncMl/locale/eu/LC_MESSAGES/Horde_SyncMl.po | 5 +-
framework/Text_Filter/locale/eu/LC_MESSAGES/Horde_Text_Filter.mo | Bin 532 -> 543 bytes
framework/Text_Filter/locale/eu/LC_MESSAGES/Horde_Text_Filter.po | 5 +-
framework/Token/locale/eu/LC_MESSAGES/Horde_Token.mo | Bin 488 -> 499 bytes
framework/Token/locale/eu/LC_MESSAGES/Horde_Token.po | 5 +-
framework/Vcs/test/Horde/Vcs/CvsTest.php | 8 +
framework/Vcs/test/Horde/Vcs/SvnTest.php | 8 +
framework/Vfs/locale/eu/LC_MESSAGES/Horde_Vfs.mo | Bin 678 -> 689 bytes
framework/Vfs/locale/eu/LC_MESSAGES/Horde_Vfs.po | 5 +-
framework/Vfs/test/Horde/Vfs/FileTest.php | 6 +-
gollem/locale/eu/LC_MESSAGES/gollem.mo | Bin 72426 -> 71826 bytes
gollem/locale/eu/LC_MESSAGES/gollem.po | 236 +-
horde/config/conf.xml | 2 +-
horde/lib/Api.php | 52 +-
horde/locale/eu/LC_MESSAGES/horde.mo | Bin 64314 -> 63610 bytes
horde/locale/eu/LC_MESSAGES/horde.po | 1534 +-
horde/locale/eu/help.xml | 12 +-
horde/templates/prefs/activesync.html | 2 +-
imp/locale/de/LC_MESSAGES/imp.mo | Bin 181260 -> 181259 bytes
imp/locale/de/LC_MESSAGES/imp.po | 4 +-
imp/locale/eu/LC_MESSAGES/imp.mo | Bin 181856 -> 175647 bytes
imp/locale/eu/LC_MESSAGES/imp.po | 4525 ++---
imp/locale/eu/help.xml | 684 +-
ingo/locale/eu/LC_MESSAGES/ingo.mo | Bin 81975 -> 82436 bytes
ingo/locale/eu/LC_MESSAGES/ingo.po | 531 +-
ingo/locale/eu/help.xml | 8 +-
kronolith/locale/eu/LC_MESSAGES/kronolith.mo | Bin 124127 -> 122953 bytes
kronolith/locale/eu/LC_MESSAGES/kronolith.po | 1819 +-
mnemo/locale/eu/LC_MESSAGES/mnemo.mo | Bin 74245 -> 72826 bytes
mnemo/locale/eu/LC_MESSAGES/mnemo.po | 312 +-
mnemo/locale/eu/help.xml | 2 +-
nag/locale/eu/LC_MESSAGES/nag.mo | Bin 88756 -> 88412 bytes
nag/locale/eu/LC_MESSAGES/nag.po | 993 +-
passwd/config/backends.php | 57 +-
passwd/config/hooks.php.dist | 64 +-
passwd/docs/CHANGES | 1 +
passwd/docs/CREDITS | 6 +-
passwd/docs/UPGRADING | 27 +-
passwd/lib/Basic.php | 52 +-
passwd/lib/Driver.php | 32 +-
passwd/lib/Driver/Adsi.php | 45 +-
passwd/lib/Driver/Composite.php | 93 +-
passwd/lib/Driver/Expect.php | 47 +-
passwd/lib/Driver/Expectpecl.php | 116 +-
passwd/lib/Driver/Horde.php | 44 +-
passwd/lib/Driver/Http.php | 11 +-
passwd/lib/Driver/Kolab.php | 52 +-
passwd/lib/Driver/Ldap.php | 144 +-
passwd/lib/Driver/Null.php | 31 +
passwd/lib/Driver/Pine.php | 141 +-
passwd/lib/Driver/Poppassd.php | 76 +-
passwd/lib/Driver/Procopen.php | 45 +-
passwd/lib/Driver/Pspasswd.php | 56 +-
passwd/lib/Driver/Servuftp.php | 77 +-
passwd/lib/Driver/Smbldap.php | 66 +-
passwd/lib/Driver/Smbpasswd.php | 64 +-
passwd/lib/Driver/Soap.php | 56 +-
passwd/lib/Driver/Sql.php | 132 +-
passwd/lib/Driver/Vmailmgr.php | 36 +-
passwd/lib/Driver/Vpopmail.php | 119 +-
passwd/lib/Factory/Driver.php | 75 +-
passwd/package.xml | 11 +-
passwd/test/Passwd/Autoload.php | 10 +-
passwd/test/Passwd/TestCase.php | 39 +-
passwd/test/Passwd/Unit/Driver/SqlTest.php | 39 +-
passwd/test/Passwd/Unit/Factory/DriverTest.php | 57 +-
timeobjects/locale/eu/LC_MESSAGES/timeobjects.mo | Bin 64818 -> 64133 bytes
timeobjects/locale/eu/LC_MESSAGES/timeobjects.po | 14 +-
turba/locale/eu/LC_MESSAGES/turba.mo | Bin 95563 -> 94710 bytes
turba/locale/eu/LC_MESSAGES/turba.po | 734 +-
153 files changed, 7682 insertions(+), 7803 deletions(-)
http://git.horde.org/horde-git/-/commit/ad86cfbabfcffad630cb5e3b00f7ee4a235ef32d
-----------------------------------------------------------------------
commit b6b787413417f328878054c8eb979c50fb479d76
Author: Jan Schneider <jan at horde.org>
Date: Thu Mar 14 11:36:10 2013 +0100
Bump version.
ingo/lib/Application.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/b6b787413417f328878054c8eb979c50fb479d76
-----------------------------------------------------------------------
commit abb6f97ff842a8122e6ca5a60468250a5ebd6fc8
Merge: b6b7874 1926896
Author: Jan Schneider <jan at horde.org>
Date: Thu Mar 14 12:19:36 2013 +0100
Merge branch 'master' into ingo_3_1
.../test/Horde/SessionHandler/Storage/StackTest.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/abb6f97ff842a8122e6ca5a60468250a5ebd6fc8
-----------------------------------------------------------------------
commit 7abf30dc880fcd4281c8f496a086152c4cacbd0e
Merge: 3fddeb8 abb6f97
Author: Jan Schneider <jan at horde.org>
Date: Mon Apr 8 12:09:23 2013 +0200
Merge branch 'ingo_3_1'
Conflicts:
ingo/package.xml
ingo/blacklist.php | 30 +-
ingo/config/backends.php | 529 +++++++++++++--------
ingo/config/prefs.php | 5 +-
ingo/docs/CHANGES | 14 +
ingo/docs/UPGRADING | 17 +
ingo/filters.php | 89 ++--
ingo/forward.php | 2 -
ingo/js/blacklist.js | 24 +-
ingo/js/filters.js | 11 +
ingo/js/rule.js | 26 +
ingo/js/whitelist.js | 11 +
ingo/lib/Ajax/Application.php | 11 +-
ingo/lib/Ajax/Application/Smartmobile.php | 20 +-
ingo/lib/Api.php | 46 +-
ingo/lib/Application.php | 103 +++--
ingo/lib/Block/Overview.php | 11 +-
ingo/lib/Exception.php | 11 +-
ingo/lib/Exception/Pear.php | 11 +-
ingo/lib/Factory/Script.php | 125 +++++-
ingo/lib/Factory/Storage.php | 12 +-
ingo/lib/Factory/Transport.php | 40 +-
ingo/lib/Form/Base.php | 30 ++-
ingo/lib/Form/Forward.php | 11 +-
ingo/lib/Form/Spam.php | 11 +-
ingo/lib/Form/Vacation.php | 90 +++--
ingo/lib/Ingo.php | 124 +++---
ingo/lib/LoginTasks/SystemTask/Upgrade.php | 11 +-
ingo/lib/Script.php | 327 -------------
ingo/lib/Script/Base.php | 337 +++++++++++++
ingo/lib/Script/Customsql.php | 136 ++++++
ingo/lib/Script/Imap.php | 190 +++-----
ingo/lib/Script/Imap/Api.php | 11 +-
ingo/lib/Script/Imap/Live.php | 12 +-
ingo/lib/Script/Imap/Mock.php | 6 +
ingo/lib/Script/Ispconfig.php | 76 +++
ingo/lib/Script/Ispconfig/Vacation.php | 56 +++
ingo/lib/Script/Item.php | 31 ++
ingo/lib/Script/Maildrop.php | 182 +++-----
ingo/lib/Script/Maildrop/Comment.php | 19 +-
ingo/lib/Script/Maildrop/Recipe.php | 22 +-
ingo/lib/Script/Maildrop/Variable.php | 18 +-
ingo/lib/Script/Procmail.php | 180 +++-----
ingo/lib/Script/Procmail/Comment.php | 19 +-
ingo/lib/Script/Procmail/Default.php | 54 +++
ingo/lib/Script/Procmail/Recipe.php | 21 +-
ingo/lib/Script/Procmail/Variable.php | 16 +-
ingo/lib/Script/Sieve.php | 233 +++++-----
ingo/lib/Script/Sieve/Action.php | 35 +-
ingo/lib/Script/Sieve/Action/Addflag.php | 27 +-
ingo/lib/Script/Sieve/Action/Discard.php | 16 +-
ingo/lib/Script/Sieve/Action/Fileinto.php | 16 +-
ingo/lib/Script/Sieve/Action/Flag.php | 18 +-
ingo/lib/Script/Sieve/Action/Keep.php | 16 +-
ingo/lib/Script/Sieve/Action/Notify.php | 16 +-
ingo/lib/Script/Sieve/Action/Redirect.php | 16 +-
ingo/lib/Script/Sieve/Action/Reject.php | 16 +-
ingo/lib/Script/Sieve/Action/Removeflag.php | 20 +-
ingo/lib/Script/Sieve/Action/Stop.php | 16 +-
ingo/lib/Script/Sieve/Action/Vacation.php | 22 +-
ingo/lib/Script/Sieve/Comment.php | 21 +-
ingo/lib/Script/Sieve/Else.php | 24 +-
ingo/lib/Script/Sieve/Elsif.php | 24 +-
ingo/lib/Script/Sieve/If.php | 30 +-
ingo/lib/Script/Sieve/Require.php | 59 +++
ingo/lib/Script/Sieve/Test.php | 30 +-
ingo/lib/Script/Sieve/Test/Address.php | 18 +-
ingo/lib/Script/Sieve/Test/Allof.php | 24 +-
ingo/lib/Script/Sieve/Test/Anyof.php | 24 +-
ingo/lib/Script/Sieve/Test/Body.php | 18 +-
ingo/lib/Script/Sieve/Test/Exists.php | 18 +-
ingo/lib/Script/Sieve/Test/False.php | 18 +-
ingo/lib/Script/Sieve/Test/Header.php | 18 +-
ingo/lib/Script/Sieve/Test/Not.php | 20 +-
ingo/lib/Script/Sieve/Test/Relational.php | 16 +-
ingo/lib/Script/Sieve/Test/Size.php | 16 +-
ingo/lib/Script/Sieve/Test/True.php | 18 +-
ingo/lib/Script/String.php | 50 ++
ingo/lib/Smartmobile.php | 11 +-
ingo/lib/Storage.php | 12 +-
ingo/lib/Storage/Blacklist.php | 13 +-
ingo/lib/Storage/Filters.php | 56 ++-
ingo/lib/Storage/Filters/Sql.php | 16 +-
ingo/lib/Storage/Forward.php | 13 +-
ingo/lib/Storage/Mock.php | 12 +-
ingo/lib/Storage/Prefs.php | 14 +-
ingo/lib/Storage/Rule.php | 13 +-
ingo/lib/Storage/Spam.php | 13 +-
ingo/lib/Storage/Sql.php | 14 +-
ingo/lib/Storage/Vacation.php | 13 +-
ingo/lib/Storage/VacationTest.php | 13 +-
ingo/lib/Storage/Whitelist.php | 13 +-
ingo/lib/Test.php | 11 +-
ingo/lib/Transport.php | 69 ---
ingo/lib/Transport/Base.php | 89 ++++
ingo/lib/Transport/Ispconfig.php | 207 ++++++++
ingo/lib/Transport/Ldap.php | 44 ++-
ingo/lib/Transport/Null.php | 16 +-
ingo/lib/Transport/Sivtest.php | 14 +-
ingo/lib/Transport/Sql.php | 97 ++++
ingo/lib/Transport/Timsieved.php | 75 ++--
ingo/lib/Transport/Vfs.php | 61 ++--
ingo/lib/Ui/VarRenderer/Ingo.php | 13 +-
ingo/lib/tests/ScriptTest.php | 7 +-
ingo/package.xml | 142 ++++--
ingo/rule.php | 189 +++-----
ingo/script.php | 73 ++--
ingo/spam.php | 2 -
ingo/templates/basic/blacklist/blacklist.html.php | 57 +++
ingo/templates/basic/filters/filters.html.php | 114 +++++
ingo/templates/basic/menu/menu.html.php | 13 +
ingo/templates/basic/rule/rule.html.php | 200 ++++++++
ingo/templates/basic/script/_script.html.php | 6 +
ingo/templates/basic/script/script.html.php | 44 ++
ingo/templates/basic/whitelist/whitelist.html.php | 33 ++
ingo/templates/blacklist/blacklist.inc | 53 --
ingo/templates/filters/filter-none.inc | 5 -
ingo/templates/filters/filter.html | 33 --
ingo/templates/filters/footer.inc | 8 -
ingo/templates/filters/header.inc | 20 -
ingo/templates/filters/settings.inc | 30 --
ingo/templates/menu/menu.html | 14 -
ingo/templates/rule/filter.inc | 37 --
ingo/templates/rule/footer.inc | 69 ---
ingo/templates/rule/header.inc | 47 --
ingo/templates/script/activate.inc | 39 --
ingo/templates/script/footer.inc | 4 -
ingo/templates/script/header.inc | 4 -
ingo/templates/script/script.inc | 4 -
ingo/templates/whitelist/whitelist.inc | 34 --
ingo/vacation.php | 11 +-
ingo/whitelist.php | 24 +-
131 files changed, 3991 insertions(+), 2298 deletions(-)
http://git.horde.org/horde-git/-/commit/7abf30dc880fcd4281c8f496a086152c4cacbd0e
More information about the commits
mailing list