Hello community, here is the log from the commit of package kdav for openSUSE:Factory checked in at 2019-08-16 15:36:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdav (Old) and /work/SRC/openSUSE:Factory/.kdav.new.22127 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdav" Fri Aug 16 15:36:40 2019 rev:30 rq:723623 version:19.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kdav/kdav.changes 2019-07-26 12:26:48.534377470 +0200 +++ /work/SRC/openSUSE:Factory/.kdav.new.22127/kdav.changes 2019-08-16 15:36:44.149854805 +0200 @@ -1,0 +2,31 @@ +Fri Aug 9 08:30:38 UTC 2019 - Christophe Giboudeaux <[email protected]> + +- Update to 19.08.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08.0.php +- No code change since 19.07.90 + +------------------------------------------------------------------- +Tue Aug 06 16:50:48 UTC 2019 - [email protected] + +- Update to 19.07.90 + * New bugfix release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08-rc.php +- No code changes since 19.07.80 + +------------------------------------------------------------------- +Tue Jul 23 11:58:58 UTC 2019 - [email protected] + +- Update to 19.07.80 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.08-beta.php +- Changes since 19.04.3: + * When we use framework 5.59.0 we can use new logging file directory + * It was fixed in 5.13.0beta2 + * metainfo.yaml: Fix cmakename, is own top-level entry + * Make it compile without foreach + +------------------------------------------------------------------- Old: ---- kdav-19.04.3.tar.xz New: ---- applications.keyring kdav-19.08.0.tar.xz kdav-19.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdav.spec ++++++ --- /var/tmp/diff_new_pack.3Gg4MN/_old 2019-08-16 15:36:45.037854547 +0200 +++ /var/tmp/diff_new_pack.3Gg4MN/_new 2019-08-16 15:36:45.041854546 +0200 @@ -18,13 +18,17 @@ %bcond_without lang Name: kdav -Version: 19.04.3 +Version: 19.08.0 Release: 0 Summary: DAV protocol implementation License: GPL-2.0-only Group: Productivity/Other URL: https://www.kde.org -Source0: %{name}-%{version}.tar.xz +Source: https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz +%if %{with lang} +Source1: https://download.kde.org/stable/applications/%{version}/src/%{name}-%{version}.tar.xz.sig +Source2: applications.keyring +%endif BuildRequires: extra-cmake-modules BuildRequires: cmake(KF5CoreAddons) BuildRequires: cmake(KF5I18n) ++++++ kdav-19.04.3.tar.xz -> kdav-19.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/CMakeLists.txt new/kdav-19.08.0/CMakeLists.txt --- old/kdav-19.04.3/CMakeLists.txt 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/CMakeLists.txt 2019-08-09 02:58:01.000000000 +0200 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.5) -set(PIM_VERSION "5.11.3") +set(PIM_VERSION "5.12.0") project(libkdav VERSION ${PIM_VERSION}) set(LIBKDAV_VERSION ${PIM_VERSION}) -set(KF5_MIN_VERSION "5.56.0") +set(KF5_MIN_VERSION "5.60.0") find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) @@ -24,7 +24,7 @@ include(ECMQtDeclareLoggingCategory) -set(QT_REQUIRED_VERSION "5.10.0") +set(QT_REQUIRED_VERSION "5.11.0") find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Core Gui XmlPatterns Test) @@ -32,12 +32,8 @@ # setup lib -# workaround for https://bugreports.qt.io/browse/QTBUG-74665 (bug in qt5.13 reevaluate it) -if (${Qt5Widgets_VERSION} STRGREATER "5.13") - MESSAGE(STATUS "Qt version: ${Qt5Widgets_VERSION} DISABLE compile without deprecated methods. bug QTBUG-74665") -else() - add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) -endif() +add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000) +add_definitions(-DQT_NO_FOREACH) @@ -69,7 +65,7 @@ DESTINATION ${KDE_INSTALL_INCLUDEDIR}/KPim COMPONENT Devel ) -install(FILES kdav.categories DESTINATION ${KDE_INSTALL_CONFDIR}) +install(FILES kdav.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR}) add_subdirectory(src) if(BUILD_TESTING) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/autotests/fakeserver.cpp new/kdav-19.08.0/autotests/fakeserver.cpp --- old/kdav-19.04.3/autotests/fakeserver.cpp 2019-06-07 07:03:20.000000000 +0200 +++ new/kdav-19.08.0/autotests/fakeserver.cpp 2019-08-03 11:44:37.000000000 +0200 @@ -139,7 +139,7 @@ { QMutexLocker locker(&m_mutex); - foreach (const QList<QByteArray> &scenario, m_scenarios) { + for (const QList<QByteArray> &scenario : qAsConst(m_scenarios)) { if (!scenario.isEmpty()) { return false; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/metainfo.yaml new/kdav-19.08.0/metainfo.yaml --- old/kdav-19.04.3/metainfo.yaml 2019-06-07 07:03:20.000000000 +0200 +++ new/kdav-19.08.0/metainfo.yaml 2019-08-03 11:44:37.000000000 +0200 @@ -9,7 +9,7 @@ libraries: - qmake: PimKDAV cmake: "KPimKDAV" - cmakename: KPimKDAV +cmakename: KPimKDAV public_lib: true group: kdepim diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/ar/libkdav.po new/kdav-19.08.0/po/ar/libkdav.po --- old/kdav-19.04.3/po/ar/libkdav.po 2019-07-09 02:27:48.000000000 +0200 +++ new/kdav-19.08.0/po/ar/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2018-01-31 22:49+0300\n" "Last-Translator: Safa Alfulaij <[email protected]>\n" "Language-Team: Arabic <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/ca/libkdav.po new/kdav-19.08.0/po/ca/libkdav.po --- old/kdav-19.04.3/po/ca/libkdav.po 2019-07-09 02:27:48.000000000 +0200 +++ new/kdav-19.08.0/po/ca/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libkdav\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-12-12 12:17+0100\n" "Last-Translator: Antoni Bella Pérez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/ca@valencia/libkdav.po new/kdav-19.08.0/po/ca@valencia/libkdav.po --- old/kdav-19.04.3/po/ca@valencia/libkdav.po 2019-07-09 02:27:48.000000000 +0200 +++ new/kdav-19.08.0/po/ca@valencia/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libkdav\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-12-12 12:17+0100\n" "Last-Translator: Antoni Bella Pérez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/cs/libkdav.po new/kdav-19.08.0/po/cs/libkdav.po --- old/kdav-19.04.3/po/cs/libkdav.po 2019-07-09 02:27:48.000000000 +0200 +++ new/kdav-19.08.0/po/cs/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-02-27 13:49+0100\n" "Last-Translator: Vít Pelčák <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/de/libkdav.po new/kdav-19.08.0/po/de/libkdav.po --- old/kdav-19.04.3/po/de/libkdav.po 2019-07-09 02:27:48.000000000 +0200 +++ new/kdav-19.08.0/po/de/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2018-02-27 13:42+0100\n" "Last-Translator: Burkhard Lück <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/en_GB/libkdav.po new/kdav-19.08.0/po/en_GB/libkdav.po --- old/kdav-19.04.3/po/en_GB/libkdav.po 2019-07-09 02:27:48.000000000 +0200 +++ new/kdav-19.08.0/po/en_GB/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-12-22 15:41+0000\n" "Last-Translator: Steve Allewell <[email protected]>\n" "Language-Team: British English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/es/libkdav.po new/kdav-19.08.0/po/es/libkdav.po --- old/kdav-19.04.3/po/es/libkdav.po 2019-07-09 02:27:48.000000000 +0200 +++ new/kdav-19.08.0/po/es/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-12-14 09:10+0100\n" "Last-Translator: Javier Viñal <[email protected]>\n" "Language-Team: Spanish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/fi/libkdav.po new/kdav-19.08.0/po/fi/libkdav.po --- old/kdav-19.04.3/po/fi/libkdav.po 2019-07-09 02:27:48.000000000 +0200 +++ new/kdav-19.08.0/po/fi/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: akonadi_davgroupware_resource\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-12-25 20:33+0200\n" "Last-Translator: Tommi Nieminen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/fr/libkdav.po new/kdav-19.08.0/po/fr/libkdav.po --- old/kdav-19.04.3/po/fr/libkdav.po 2019-07-09 02:27:48.000000000 +0200 +++ new/kdav-19.08.0/po/fr/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: akonadi_davgroupware_resource\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2018-01-11 17:51+0100\n" "Last-Translator: Vincent Pinon <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/gl/libkdav.po new/kdav-19.08.0/po/gl/libkdav.po --- old/kdav-19.04.3/po/gl/libkdav.po 2019-07-09 02:27:48.000000000 +0200 +++ new/kdav-19.08.0/po/gl/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -1,12 +1,15 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. +# Xosé <[email protected]>, 2009, 2010, 2013. +# Adrian Chaves Fernandez <[email protected]>, 2013, 2015, 2017. +# Marce Villarino <[email protected]>, 2014. +# Adrián Chaves (Gallaecio) <[email protected]>, 2017, 2018, 2019. # -# Adrian Chaves <[email protected]>, 2018, 2019. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2019-03-16 19:40+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" @@ -15,7 +18,6 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 18.12.2\n" #: common/daverror.cpp:83 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/it/libkdav.po new/kdav-19.08.0/po/it/libkdav.po --- old/kdav-19.04.3/po/it/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/it/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: akonadi_davgroupware_resource\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-12-14 21:04+0100\n" "Last-Translator: Luigi Toscano <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/ja/libkdav.po new/kdav-19.08.0/po/ja/libkdav.po --- old/kdav-19.04.3/po/ja/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/ja/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: akonadi_davcalendar_resource\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2009-11-04 20:48+0900\n" "Last-Translator: Japanese KDE translation team <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/ko/libkdav.po new/kdav-19.08.0/po/ko/libkdav.po --- old/kdav-19.04.3/po/ko/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/ko/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2018-08-15 12:26+0100\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/lt/libkdav.po new/kdav-19.08.0/po/lt/libkdav.po --- old/kdav-19.04.3/po/lt/libkdav.po 1970-01-01 01:00:00.000000000 +0100 +++ new/kdav-19.08.0/po/lt/libkdav.po 2019-08-09 02:58:00.000000000 +0200 @@ -0,0 +1,143 @@ +# Lithuanian translations for kdav package. +# Copyright (C) 2019 This file is copyright: +# This file is distributed under the same license as the kdav package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: kdav\n" +"Report-Msgid-Bugs-To: https://bugs.kde.org\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" +"PO-Revision-Date: 2018-08-16 09:12+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: lt\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" +"%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" + +#: common/daverror.cpp:83 +#, kde-format +msgid "Invalid username/password" +msgstr "" + +#: common/daverror.cpp:85 +#, kde-format +msgid "Access forbidden" +msgstr "" + +#: common/daverror.cpp:87 +#, kde-format +msgid "Resource not found" +msgstr "" + +#: common/daverror.cpp:89 +#, kde-format +msgid "HTTP error" +msgstr "" + +#: common/daverror.cpp:91 +#, kde-format +msgid "" +"There was a problem with the request.\n" +"%1 (%2)." +msgstr "" + +#: common/daverror.cpp:95 +#, kde-format +msgid "Protocol for the collection does not support MULTIGET" +msgstr "" + +#: common/daverror.cpp:98 +#, kde-format +msgid "" +"The server encountered an error that prevented it from completing your " +"request: %1 (%2)" +msgstr "" + +#: common/daverror.cpp:101 +#, kde-format +msgid "" +"There was a problem with the request. The collection has not been deleted " +"from the server.\n" +"%1 (%2)." +msgstr "" + +#: common/daverror.cpp:105 +#, kde-format +msgid "Invalid responses from backend" +msgstr "" + +#: common/daverror.cpp:108 +#, kde-format +msgid "Error setting focus for XQuery" +msgstr "" + +#: common/daverror.cpp:111 +#, kde-format +msgid "Invalid XQuery submitted by DAV implementation" +msgstr "" + +#: common/daverror.cpp:114 +#, kde-format +msgid "" +"There was a problem with the request. The collection has not been modified " +"on the server.\n" +"%1 (%2)." +msgstr "" + +#: common/daverror.cpp:118 +#, kde-format +msgid "No properties to change or remove" +msgstr "" + +#: common/daverror.cpp:121 +#, kde-format +msgid "There was an error when modifying the properties" +msgstr "" + +#: common/daverror.cpp:123 +#, kde-format +msgid "" +"\n" +"The server returned more information:\n" +"%1" +msgstr "" + +#: common/daverror.cpp:127 +#, kde-format +msgid "" +"There was a problem with the request. The item has not been created on the " +"server.\n" +"%1 (%2)." +msgstr "" + +#: common/daverror.cpp:131 +#, kde-format +msgid "" +"There was a problem with the request. The item has not been deleted from the " +"server.\n" +"%1 (%2)." +msgstr "" + +#: common/daverror.cpp:135 +#, kde-format +msgid "" +"There was a problem with the request. The item was not modified on the " +"server.\n" +"%1 (%2)." +msgstr "" + +#: common/daverror.cpp:140 +#, kde-format +msgid "There was a problem with the request." +msgstr "" + +#: common/daverror.cpp:144 +#, kde-format +msgid "" +"There was a problem with the request. The requested MIME types are not " +"supported." +msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/nb/libkdav.po new/kdav-19.08.0/po/nb/libkdav.po --- old/kdav-19.04.3/po/nb/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/nb/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2014-09-19 22:47+0200\n" "Last-Translator: Bjørn Steensrud <[email protected]>\n" "Language-Team: Norwegian Bokmål <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/nl/libkdav.po new/kdav-19.08.0/po/nl/libkdav.po --- old/kdav-19.04.3/po/nl/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/nl/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-12-12 22:49+0100\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/pl/libkdav.po new/kdav-19.08.0/po/pl/libkdav.po --- old/kdav-19.04.3/po/pl/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/pl/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2018-01-28 06:08+0100\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/pt/libkdav.po new/kdav-19.08.0/po/pt/libkdav.po --- old/kdav-19.04.3/po/pt/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/pt/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: libkdav\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-12-04 11:32+0000\n" "Last-Translator: José Nuno Coelho Pires <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/pt_BR/libkdav.po new/kdav-19.08.0/po/pt_BR/libkdav.po --- old/kdav-19.04.3/po/pt_BR/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/pt_BR/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libkdav\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2018-07-24 22:45-0300\n" "Last-Translator: André Marcelo Alvarenga <[email protected]>\n" "Language-Team: Brazilian Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/ru/libkdav.po new/kdav-19.08.0/po/ru/libkdav.po --- old/kdav-19.04.3/po/ru/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/ru/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2018-07-16 21:52+0300\n" "Last-Translator: Alexander Yavorsky <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/sk/libkdav.po new/kdav-19.08.0/po/sk/libkdav.po --- old/kdav-19.04.3/po/sk/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/sk/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -1,18 +1,19 @@ # translation of libkdav.po to Slovak # Roman Paholík <[email protected]>, 2017. +# Matej Mrenica <[email protected]>, 2019. msgid "" msgstr "" "Project-Id-Version: libkdav\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2017-12-03 21:41+0100\n" -"Last-Translator: Roman Paholik <[email protected]>\n" -"Language-Team: Slovak <[email protected]>\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" +"PO-Revision-Date: 2019-08-04 18:19+0200\n" +"Last-Translator: Matej Mrenica <[email protected]>\n" +"Language-Team: Slovak <[email protected]>\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.07.90\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: common/daverror.cpp:83 @@ -149,11 +150,9 @@ msgstr "Bol problém s požiadavkou." #: common/daverror.cpp:144 -#, fuzzy, kde-format -#| msgid "" -#| "There was a problem with the request. The requested mimetypes are not " -#| "supported." +#, kde-format msgid "" "There was a problem with the request. The requested MIME types are not " "supported." -msgstr "Nastal problém s požiadavkou. Požadované mime typy nie sú podporované." +msgstr "" +"Nastal problém s vašou požiadavkou. Požadované MIME typy nie sú podporované." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/sv/libkdav.po new/kdav-19.08.0/po/sv/libkdav.po --- old/kdav-19.04.3/po/sv/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/sv/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-12-12 19:37+0100\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/uk/libkdav.po new/kdav-19.08.0/po/uk/libkdav.po --- old/kdav-19.04.3/po/uk/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/uk/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libkdav\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: 2017-12-12 08:38+0200\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/zh_CN/libkdav.po new/kdav-19.08.0/po/zh_CN/libkdav.po --- old/kdav-19.04.3/po/zh_CN/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/zh_CN/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" -"PO-Revision-Date: 2019-06-02 13:16\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" +"PO-Revision-Date: 2019-07-18 15:11\n" "Last-Translator: Guo Yunhe (guoyunhe)\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/po/zh_TW/libkdav.po new/kdav-19.08.0/po/zh_TW/libkdav.po --- old/kdav-19.04.3/po/zh_TW/libkdav.po 2019-07-09 02:27:49.000000000 +0200 +++ new/kdav-19.08.0/po/zh_TW/libkdav.po 2019-08-09 02:58:01.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdav\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2019-05-20 07:43+0200\n" +"POT-Creation-Date: 2019-05-20 03:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Chinese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/src/common/davcollectionmodifyjob.cpp new/kdav-19.08.0/src/common/davcollectionmodifyjob.cpp --- old/kdav-19.04.3/src/common/davcollectionmodifyjob.cpp 2019-06-07 07:03:20.000000000 +0200 +++ new/kdav-19.08.0/src/common/davcollectionmodifyjob.cpp 2019-08-03 11:44:37.000000000 +0200 @@ -82,7 +82,7 @@ QDomElement propElement = mQuery.createElementNS(QStringLiteral("DAV:"), QStringLiteral("prop")); setElement.appendChild(propElement); - foreach (const QDomElement &element, mSetProperties) { + for (const QDomElement &element : qAsConst(mSetProperties)) { propElement.appendChild(element); } } @@ -94,7 +94,7 @@ QDomElement propElement = mQuery.createElementNS(QStringLiteral("DAV:"), QStringLiteral("prop")); removeElement.appendChild(propElement); - foreach (const QDomElement &element, mSetProperties) { + for (const QDomElement &element : qAsConst(mSetProperties)) { propElement.appendChild(element); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/src/common/davcollectionsmultifetchjob.cpp new/kdav-19.08.0/src/common/davcollectionsmultifetchjob.cpp --- old/kdav-19.04.3/src/common/davcollectionsmultifetchjob.cpp 2019-06-07 07:03:20.000000000 +0200 +++ new/kdav-19.08.0/src/common/davcollectionsmultifetchjob.cpp 2019-08-03 11:44:37.000000000 +0200 @@ -35,7 +35,7 @@ emitResult(); } - foreach (const DavUrl &url, mUrls) { + for (const DavUrl &url : qAsConst(mUrls)) { DavCollectionsFetchJob *job = new DavCollectionsFetchJob(url, this); connect(job, &DavCollectionsFetchJob::result, this, &DavCollectionsMultiFetchJob::davJobFinished); connect(job, &DavCollectionsFetchJob::collectionDiscovered, this, &DavCollectionsMultiFetchJob::collectionDiscovered); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/src/common/davcollectionsmultifetchjob.h new/kdav-19.08.0/src/common/davcollectionsmultifetchjob.h --- old/kdav-19.04.3/src/common/davcollectionsmultifetchjob.h 2019-06-07 07:03:20.000000000 +0200 +++ new/kdav-19.08.0/src/common/davcollectionsmultifetchjob.h 2019-08-03 11:44:37.000000000 +0200 @@ -72,7 +72,7 @@ void davJobFinished(KJob *); DavUrl::List mUrls; DavCollection::List mCollections; - uint mSubJobCount; + int mSubJobCount = -1; }; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/src/common/davitemcreatejob.cpp new/kdav-19.08.0/src/common/davitemcreatejob.cpp --- old/kdav-19.04.3/src/common/davitemcreatejob.cpp 2019-06-07 07:03:20.000000000 +0200 +++ new/kdav-19.08.0/src/common/davitemcreatejob.cpp 2019-08-03 11:44:37.000000000 +0200 @@ -84,7 +84,7 @@ // The 'Location:' HTTP header is used to indicate the new URL const QStringList allHeaders = storedJob->queryMetaData(QStringLiteral("HTTP-Headers")).split(QLatin1Char('\n')); QString location; - foreach (const QString &header, allHeaders) { + for (const QString &header : allHeaders) { if (header.startsWith(QLatin1String("location:"), Qt::CaseInsensitive)) { location = header.section(QLatin1Char(' '), 1); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/src/common/davitemsfetchjob.cpp new/kdav-19.08.0/src/common/davitemsfetchjob.cpp --- old/kdav-19.04.3/src/common/davitemsfetchjob.cpp 2019-06-07 07:03:20.000000000 +0200 +++ new/kdav-19.08.0/src/common/davitemsfetchjob.cpp 2019-08-03 11:44:37.000000000 +0200 @@ -57,7 +57,7 @@ { DavItem::List values; values.reserve(mItems.size()); - Q_FOREACH (const auto &value, mItems) { + for (const auto &value : qAsConst(mItems)) { values << value; } return values; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/src/common/davprincipalsearchjob.cpp new/kdav-19.08.0/src/common/davprincipalsearchjob.cpp --- old/kdav-19.04.3/src/common/davprincipalsearchjob.cpp 2019-06-07 07:03:20.000000000 +0200 +++ new/kdav-19.08.0/src/common/davprincipalsearchjob.cpp 2019-08-03 11:44:37.000000000 +0200 @@ -298,7 +298,7 @@ // All requested properties are now under propElement, so let's find them typedef QPair<QString, QString> PropertyPair; - foreach (const PropertyPair &fetchProperty, mFetchProperties) { + for (const PropertyPair &fetchProperty : qAsConst(mFetchProperties)) { QDomNodeList fetchNodes = propElement.elementsByTagNameNS(fetchProperty.first, fetchProperty.second); for (int i = 0; i < fetchNodes.size(); ++i) { QDomElement fetchElement = fetchNodes.at(i).toElement(); @@ -369,7 +369,7 @@ principalPropertySearch.appendChild(prop); typedef QPair<QString, QString> PropertyPair; - foreach (const PropertyPair &fetchProperty, mFetchProperties) { + for (const PropertyPair &fetchProperty : qAsConst(mFetchProperties)) { QDomElement elem = query.createElementNS(fetchProperty.first, fetchProperty.second); prop.appendChild(elem); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdav-19.04.3/test/testserver.cpp new/kdav-19.08.0/test/testserver.cpp --- old/kdav-19.04.3/test/testserver.cpp 2019-06-07 07:03:20.000000000 +0200 +++ new/kdav-19.08.0/test/testserver.cpp 2019-08-03 11:44:37.000000000 +0200 @@ -44,7 +44,8 @@ auto *job = new KDAV::DavCollectionsFetchJob(davUrl); job->exec(); - foreach(const auto collection, job->collections()) { + const auto collections = job->collections(); + for (const auto &collection : collections) { qDebug() << collection.displayName() << "PRIVS: " << collection.privileges(); auto collectionUrl = collection.url(); std::shared_ptr<KDAV::EtagCache> cache(new KDAV::EtagCache()); @@ -57,7 +58,8 @@ qDebug() << "items:" << itemListJob->items().size(); qDebug() << "changed Items:" << itemListJob->changedItems().size(); qDebug() << "deleted Items:" << itemListJob->deletedItems(); - foreach(const auto item, itemListJob->changedItems()) { + const auto changedItems = itemListJob->changedItems(); + for (const auto &item : changedItems) { qDebug() << item.url().url() << item.contentType() << item.data(); auto itemFetchJob = new KDAV::DavItemFetchJob(item); itemFetchJob->exec();
