Hello community,

here is the log from the commit of package kdoctools for openSUSE:Factory 
checked in at 2019-03-21 09:45:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdoctools (Old)
 and      /work/SRC/openSUSE:Factory/.kdoctools.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdoctools"

Thu Mar 21 09:45:19 2019 rev:66 rq:686736 version:5.56.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdoctools/kdoctools.changes      2019-02-28 
21:29:36.521808585 +0100
+++ /work/SRC/openSUSE:Factory/.kdoctools.new.28833/kdoctools.changes   
2019-03-21 09:45:22.866910247 +0100
@@ -1,0 +2,14 @@
+Sun Mar 10 20:15:36 UTC 2019 - [email protected]
+
+- Update to 5.56.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.56.0.php
+- Changes since 5.55.0:
+  * It compiles find with QT5.13 without deprecated method
+  * Make it compiles without foreach
+  * Port cross-compilation support to KF5_HOST_TOOLING
+  * Only report DocBookXML as found if it was actually found
+  * Update Spanish entities
+
+-------------------------------------------------------------------

Old:
----
  kdoctools-5.55.0.tar.xz

New:
----
  kdoctools-5.56.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kdoctools.spec ++++++
--- /var/tmp/diff_new_pack.w2yqIK/_old  2019-03-21 09:45:23.570910084 +0100
+++ /var/tmp/diff_new_pack.w2yqIK/_new  2019-03-21 09:45:23.574910083 +0100
@@ -17,14 +17,14 @@
 
 
 %define lname   libKF5DocTools5
-%define _tar_path 5.55
+%define _tar_path 5.56
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 %bcond_without lang
 Name:           kdoctools
-Version:        5.55.0
+Version:        5.56.0
 Release:        0
 Summary:        Tools to create documentation from DocBook
 License:        LGPL-2.1-or-later AND MIT
@@ -77,15 +77,16 @@
 Provides tools to generate documentation in various format from DocBook files.
 Development files.
 
+%lang_package
+
 %prep
 %setup -q
 %patch1 -p1
+
 %if 0%{?suse_version} == 1500
 sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 
5.9.0)/" CMakeLists.txt
 %endif
 
-%lang_package
-
 %build
   %cmake_kf5 -d build
   %make_jobs

++++++ kdoctools-5.55.0.tar.xz -> kdoctools-5.56.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.55.0/CMakeLists.txt 
new/kdoctools-5.56.0/CMakeLists.txt
--- old/kdoctools-5.55.0/CMakeLists.txt 2019-02-03 00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/CMakeLists.txt 2019-03-02 14:39:03.000000000 +0100
@@ -1,12 +1,12 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.55.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.55.0") # handled by release scripts
+set(KF5_VERSION "5.56.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.56.0") # handled by release scripts
 project(KDocTools VERSION ${KF5_VERSION})
 
 # ECM setup
 include(FeatureSummary)
-find_package(ECM 5.55.0  NO_MODULE)
+find_package(ECM 5.56.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -80,7 +80,7 @@
                       )
 
 remove_definitions(-DQT_NO_CAST_FROM_ASCII)
-
+add_definitions(-DQT_NO_FOREACH)
 set(_kdoctoolsBootStrapping TRUE)
 set(KDOCTOOLS_CUSTOMIZATION_DIR 
"${CMAKE_CURRENT_BINARY_DIR}/src/customization/")
 if (WIN32)
@@ -94,7 +94,7 @@
 
 set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5DocTools")
 add_definitions(-DTRANSLATION_DOMAIN=\"kdoctools5\")
-#add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000)
+add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
 if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po" AND KF5I18n_FOUND)
     ki18n_install(po)
     kdoctools_install(po)
@@ -107,6 +107,7 @@
 endif()
 
 install(EXPORT KF5DocToolsTargets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" 
FILE KF5DocToolsTargets.cmake NAMESPACE KF5:: )
+install(EXPORT KF5DocToolsToolsTargets DESTINATION 
"${CMAKECONFIG_INSTALL_DIR}" FILE KF5DocToolsToolsTargets.cmake NAMESPACE KF5:: 
)
 
 if (BUILD_QCH)
     ecm_install_qch_export(
@@ -128,6 +129,7 @@
 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/KF5DocToolsMacros.cmake 
${CMAKE_BINARY_DIR}/cmake/KF5DocToolsMacros.cmake COPYONLY)
 # we need a separate copy with local pathes for install autotests
 export(EXPORT KF5DocToolsTargets FILE 
${CMAKE_BINARY_DIR}/cmake/KF5DocToolsTargets.cmake NAMESPACE KF5::)
+export(EXPORT KF5DocToolsToolsTargets FILE 
${CMAKE_BINARY_DIR}/cmake/KF5DocToolsToolsTargets.cmake NAMESPACE KF5::)
 
 install(FILES
   "${CMAKE_BINARY_DIR}/cmake/KF5DocToolsConfig.cmake"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.55.0/KF5DocToolsConfig.cmake.in 
new/kdoctools-5.56.0/KF5DocToolsConfig.cmake.in
--- old/kdoctools-5.55.0/KF5DocToolsConfig.cmake.in     2019-02-03 
00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/KF5DocToolsConfig.cmake.in     2019-03-02 
14:39:03.000000000 +0100
@@ -7,19 +7,27 @@
 
 include("${CMAKE_CURRENT_LIST_DIR}/KF5DocToolsTargets.cmake")
 
-if(CMAKE_CROSSCOMPILING AND MEINPROC5_EXECUTABLE)
-    set_target_properties(KF5::meinproc5 PROPERTIES IMPORTED_LOCATION_NONE 
${MEINPROC5_EXECUTABLE})
-    set_target_properties(KF5::meinproc5 PROPERTIES IMPORTED_LOCATION 
${MEINPROC5_EXECUTABLE})
-endif()
+    if (CMAKE_CROSSCOMPILING AND KF5_HOST_TOOLING)
+    find_file(KDOCTOOLS_TARGETSFILE KF5DocTools/KF5DocToolsToolsTargets.cmake 
PATHS ${KF5_HOST_TOOLING} ${CMAKE_CURRENT_LIST_DIR} NO_DEFAULT_PATH)
+    include("${KDOCTOOLS_TARGETSFILE}")
+else()
+    include("${CMAKE_CURRENT_LIST_DIR}/KF5DocToolsToolsTargets.cmake")
 
-if(CMAKE_CROSSCOMPILING AND DOCBOOKL10NHELPER_EXECUTABLE)
-    set_target_properties(KF5::docbookl10nhelper PROPERTIES 
IMPORTED_LOCATION_NONE ${DOCBOOKL10NHELPER_EXECUTABLE})
-    set_target_properties(KF5::docbookl10nhelper PROPERTIES IMPORTED_LOCATION 
${DOCBOOKL10NHELPER_EXECUTABLE})
-endif()
+    # TODO KF6: deprecated, remove the below
+    if(CMAKE_CROSSCOMPILING AND MEINPROC5_EXECUTABLE)
+        set_target_properties(KF5::meinproc5 PROPERTIES IMPORTED_LOCATION_NONE 
${MEINPROC5_EXECUTABLE})
+        set_target_properties(KF5::meinproc5 PROPERTIES IMPORTED_LOCATION 
${MEINPROC5_EXECUTABLE})
+    endif()
+
+    if(CMAKE_CROSSCOMPILING AND DOCBOOKL10NHELPER_EXECUTABLE)
+        set_target_properties(KF5::docbookl10nhelper PROPERTIES 
IMPORTED_LOCATION_NONE ${DOCBOOKL10NHELPER_EXECUTABLE})
+        set_target_properties(KF5::docbookl10nhelper PROPERTIES 
IMPORTED_LOCATION ${DOCBOOKL10NHELPER_EXECUTABLE})
+    endif()
 
-if(CMAKE_CROSSCOMPILING AND CHECKXML5_EXECUTABLE)
-    set_target_properties(KF5::checkXML5 PROPERTIES IMPORTED_LOCATION_NONE 
${CHECKXML5_EXECUTABLE})
-    set_target_properties(KF5::checkXML5 PROPERTIES IMPORTED_LOCATION 
${CHECKXML5_EXECUTABLE})
+    if(CMAKE_CROSSCOMPILING AND CHECKXML5_EXECUTABLE)
+        set_target_properties(KF5::checkXML5 PROPERTIES IMPORTED_LOCATION_NONE 
${CHECKXML5_EXECUTABLE})
+        set_target_properties(KF5::checkXML5 PROPERTIES IMPORTED_LOCATION 
${CHECKXML5_EXECUTABLE})
+    endif()
 endif()
 
 include(${CMAKE_CURRENT_LIST_DIR}/KF5DocToolsMacros.cmake)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.55.0/cmake/FindDocBookXML4.cmake 
new/kdoctools-5.56.0/cmake/FindDocBookXML4.cmake
--- old/kdoctools-5.55.0/cmake/FindDocBookXML4.cmake    2019-02-03 
00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/cmake/FindDocBookXML4.cmake    2019-03-02 
14:39:03.000000000 +0100
@@ -82,7 +82,11 @@
             PATH_SUFFIXES ${DTD_PATH_LIST}
         )
     endif ()
-    set (${found_dir} ${searched_dir} PARENT_SCOPE)
+    if (searched_dir)
+        set (${found_dir} ${searched_dir} PARENT_SCOPE)
+    else()
+        message(WARNING "${found_dir}: Could not find docbookx.dtd in 
${CMAKE_SYSTEM_PREFIX_PATH} with suffixes ${DTD_PATH_LIST}")
+    endif()
 endfunction()
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.55.0/po/id/kdoctools5.po 
new/kdoctools-5.56.0/po/id/kdoctools5.po
--- old/kdoctools-5.55.0/po/id/kdoctools5.po    2019-02-03 00:56:41.000000000 
+0100
+++ new/kdoctools-5.56.0/po/id/kdoctools5.po    2019-03-02 14:39:03.000000000 
+0100
@@ -14,7 +14,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #: xslt.cpp:140
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.55.0/po/zh_CN/kdoctools5.po 
new/kdoctools-5.56.0/po/zh_CN/kdoctools5.po
--- old/kdoctools-5.55.0/po/zh_CN/kdoctools5.po 2019-02-03 00:56:41.000000000 
+0100
+++ new/kdoctools-5.56.0/po/zh_CN/kdoctools5.po 2019-03-02 14:39:03.000000000 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2018-08-16 09:05+0200\n"
-"PO-Revision-Date: 2019-01-27 22:57\n"
+"PO-Revision-Date: 2019-02-20 23:16\n"
 "Last-Translator: guoyunhe <[email protected]>\n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.55.0/src/CMakeLists.txt 
new/kdoctools-5.56.0/src/CMakeLists.txt
--- old/kdoctools-5.55.0/src/CMakeLists.txt     2019-02-03 00:56:41.000000000 
+0100
+++ new/kdoctools-5.56.0/src/CMakeLists.txt     2019-03-02 14:39:03.000000000 
+0100
@@ -108,7 +108,7 @@
 ecm_mark_nongui_executable(meinproc5)
 target_link_libraries(meinproc5 Qt5::Core ${LIBXML2_LIBRARIES} 
${LIBXSLT_LIBRARIES} ${LIBXSLT_EXSLT_LIBRARIES} ${meinproc_additional_LIBS})
 target_compile_definitions(meinproc5 PRIVATE -DKDOCTOOLS_EXPORT=)
-install(TARGETS meinproc5 EXPORT KF5DocToolsTargets 
${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
+install(TARGETS meinproc5 EXPORT KF5DocToolsToolsTargets 
${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
 
 if(CMAKE_CROSSCOMPILING AND MEINPROC5_EXECUTABLE)
     add_executable(KF5::meinproc5 IMPORTED GLOBAL)
@@ -206,7 +206,7 @@
 ecm_mark_nongui_executable( docbookl10nhelper )
 target_link_libraries( docbookl10nhelper Qt5::Core )
 if(INSTALL_INTERNAL_TOOLS)
-    install(TARGETS docbookl10nhelper EXPORT KF5DocToolsTargets 
${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
+    install(TARGETS docbookl10nhelper EXPORT KF5DocToolsToolsTargets 
${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
 endif()
 
 if(CMAKE_CROSSCOMPILING AND DOCBOOKL10NHELPER_EXECUTABLE)
@@ -232,7 +232,7 @@
 add_executable( checkXML5 ${checkXML5_SRCS} )
 ecm_mark_nongui_executable( checkXML5 )
 target_link_libraries( checkXML5 Qt5::Core )
-install(TARGETS checkXML5 EXPORT KF5DocToolsTargets 
${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
+install(TARGETS checkXML5 EXPORT KF5DocToolsToolsTargets 
${KF5_INSTALL_TARGETS_DEFAULT_ARGS})
 
 if(CMAKE_CROSSCOMPILING AND CHECKXML5_EXECUTABLE)
     add_executable(KF5::checkXML5 IMPORTED GLOBAL)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.55.0/src/customization/es/catalog.xml 
new/kdoctools-5.56.0/src/customization/es/catalog.xml
--- old/kdoctools-5.55.0/src/customization/es/catalog.xml       2019-02-03 
00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/catalog.xml       2019-03-02 
14:39:03.000000000 +0100
@@ -13,6 +13,10 @@
 
   <public publicId="-//KDE//DOCUMENT GPL Licence Declaration//ES"
           uri="entities/underGPL.docbook"/> 
+  <public publicId="-//KDE//DOCUMENT LGPL Licence Declaration//ES"
+          uri="entities/underLGPL.docbook"/>
+  <public publicId="-//KDE//DOCUMENT CC BY-SA 4.0 Licence Declaration//ES"
+          uri="entities/underCCBYSA4.docbook"/>
   <public publicId="-//KDE//DOCUMENT FDL Licence Declaration//ES"
           uri="entities/underFDL.docbook"/>
   <public publicId="-//KDE//DOCUMENT BSD Licence Declaration//ES"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.55.0/src/customization/es/entities/ccbysa4-notice.docbook 
new/kdoctools-5.56.0/src/customization/es/entities/ccbysa4-notice.docbook
--- old/kdoctools-5.55.0/src/customization/es/entities/ccbysa4-notice.docbook   
1970-01-01 01:00:00.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/entities/ccbysa4-notice.docbook   
2019-03-02 14:39:03.000000000 +0100
@@ -0,0 +1,4 @@
+<para>Se concede permiso para copiar, distribuir y/o modificar este
+documento bajo los términos de la Creative Commons
+Atribución-CompartirIgual 4.0 Internacional o posterior.
+Se ha incluido una copia de la licencia en <xref linkend="cc-by-sa-4"/>.</para>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.55.0/src/customization/es/entities/fdl-notice.docbook 
new/kdoctools-5.56.0/src/customization/es/entities/fdl-notice.docbook
--- old/kdoctools-5.55.0/src/customization/es/entities/fdl-notice.docbook       
2019-02-03 00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/entities/fdl-notice.docbook       
2019-03-02 14:39:03.000000000 +0100
@@ -23,11 +23,11 @@
 
     Include a copy of the license in the documentation distribution.
  -->
-<para>Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License,
-Version 1.2 or any later version published by the Free Software
-Foundation; with &FDLInvariantSections;, with &FDLFrontCoverText;, and
-with &FDLBackCoverText;.  A copy of the license is included in <xref 
linkend="gnu-fdl"/>.</para>
+<para>Se concede permiso para copiar, distribuir y/o modificar este
+documento bajo los términos de la Licencia de Documentación Libre,
+versión 1.2 o cualquier versión posterior publicada por la Free Software
+Foundation; con &FDLInvariantSections;, con &FDLFrontCoverText; y
+con &FDLBackCoverText;. Se ha incluido una copia de la licencia en <xref 
linkend="gnu-fdl"/>.</para>
 
 <!-- If you have no Invariant Sections, don't add any FDLIS entities.
      If you have no Front-Cover Texts, don't add any FDLFCT; likewise
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.55.0/src/customization/es/entities/gpl-notice.docbook 
new/kdoctools-5.56.0/src/customization/es/entities/gpl-notice.docbook
--- old/kdoctools-5.55.0/src/customization/es/entities/gpl-notice.docbook       
2019-02-03 00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/entities/gpl-notice.docbook       
2019-03-02 14:39:03.000000000 +0100
@@ -1,53 +1,32 @@
 <!-- This file can be used to include the notice in documentation 
-     <!DOCTYPE book ... [
-      <!ENTITY % FDLIS "INCLUDE">
-      <!ENTITY FDLISTitles "title 1, title 2, title 3">
-      <!ENTITY % FDLFCT "INCLUDE">
-      <!ENTITY FDLFCTTitles "title 4, title 5, title 6">
-      <!ENTITY % FDLBCT "INCLUDE">
-      <!ENTITY FDLBCTTitles "title 7, title 7b">
-      <!ENTITY % ents "-//KDE//ENTITIES Application-Variable Entities 
V1.0//EN">
-      %ents;
-      ...
-     ]>
+     <!DOCTYPE book ... >
     ...
      <bookinfo>
        <legalnotice>
          <para>Copyright (C) 20yy  [name of author]</para>
-         &FDLnotice;
+         &GPLnotice;
        </legalnotice>
      </bookinfo>
     ...
 
     Alternatively, you can include the text literally.
-
-    Include a copy of the license in the documentation distribution.
  -->
-<para>Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License,
-Version 1.2 or any later version published by the Free Software
-Foundation; with &FDLInvariantSections;, with &FDLFrontCoverText;, and
-with &FDLBackCoverText;.  A copy of the license is included in <xref 
linkend="gnu-fdl"/>.</para>
+<para>This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as
+published by the Free Software Foundation; either version 2 of the
+License, or (at your option) any later version.</para>
 
-<!-- If you have no Invariant Sections, don't add any FDLIS entities.
-     If you have no Front-Cover Texts, don't add any FDLFCT; likewise
-     for Back-Cover Texts (the SGML setup takes care of complying with
-     the GNU requirements).  Adding the entities: if you use any, then
-     add FDL* with value "INCLUDE" and FDL*Titles with a list of
-     titles.  You will get the default GNU template text if you don't
-     specify the FDL*Titles entity after specifying the FDL* entity.
-     This will only have effect when you specify %FDLSlots; _after_
-     the entity definitions.
+<para>This program is distributed in the hope that it will be
+useful, but WITHOUT ANY WARRANTY; without even the implied warranty
+of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.</para>
 
-     If your document contains nontrivial examples of program code, we
-     recommend releasing these examples in parallel under your choice
-     of free software license, such as the GNU General Public License,
-     to permit their use in free software.
- -->
+<para>You should have received a copy of the GNU General Public
+License along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
USA.</para>
 <!--
 Local variables:
 mode: sgml
 sgml-general-insert-case: lower
-sgml-parent-document: ("index.docbook" "book" "bookinfo" "legalnotice" "para")
 End:
 -->
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.55.0/src/customization/es/entities/install-compile.docbook 
new/kdoctools-5.56.0/src/customization/es/entities/install-compile.docbook
--- old/kdoctools-5.55.0/src/customization/es/entities/install-compile.docbook  
2019-02-03 00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/entities/install-compile.docbook  
2019-03-02 14:39:03.000000000 +0100
@@ -1,7 +1,6 @@
-<para>Consulte <ulink url="http://techbase.kde.org/Getting_Started";>
-Construyendo y ejecutando software KDE desde el código fuente</ulink> para
-obtener información detallada sobre cómo compilar e instalar aplicaciones de
-&kde;</para>
+<para>Consulte <ulink url="http://techbase.kde.org/";>&kde; Techbase</ulink>
+para obtener información sobre cómo compilar e instalar aplicaciones de
+&kde;.</para>
 
 <para>Como &kde; usa <command>cmake</command>, no debería tener ningún
 problema para compilarlo. Si encuentra alguna dificultad le rogamos que
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.55.0/src/customization/es/entities/install-intro.docbook 
new/kdoctools-5.56.0/src/customization/es/entities/install-intro.docbook
--- old/kdoctools-5.55.0/src/customization/es/entities/install-intro.docbook    
2019-02-03 00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/entities/install-intro.docbook    
2019-03-02 14:39:03.000000000 +0100
@@ -1,6 +1,5 @@
 <!-- requires that packagename is defined in the documentation prologue -->
 <para>&kappname; forma parte del proyecto &kde; &kde-http;.</para>
 
-<para>&kappname; está incluido en el paquete &package; en &kde-ftp;, 
-el servidor &FTP; del proyecto &kde;.
-</para>
+<para>Puede encontrar &kappname; en el <ulink url="http://download.kde.org/";>
+sitio de descargas</ulink> del proyecto &kde;.</para>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.55.0/src/customization/es/entities/lgpl-notice.docbook 
new/kdoctools-5.56.0/src/customization/es/entities/lgpl-notice.docbook
--- old/kdoctools-5.55.0/src/customization/es/entities/lgpl-notice.docbook      
2019-02-03 00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/entities/lgpl-notice.docbook      
2019-03-02 14:39:03.000000000 +0100
@@ -1,53 +1,33 @@
 <!-- This file can be used to include the notice in documentation 
-     <!DOCTYPE book ... [
-      <!ENTITY % FDLIS "INCLUDE">
-      <!ENTITY FDLISTitles "title 1, title 2, title 3">
-      <!ENTITY % FDLFCT "INCLUDE">
-      <!ENTITY FDLFCTTitles "title 4, title 5, title 6">
-      <!ENTITY % FDLBCT "INCLUDE">
-      <!ENTITY FDLBCTTitles "title 7, title 7b">
-      <!ENTITY % ents "-//KDE//ENTITIES Application-Variable Entities 
V1.0//EN">
-      %ents;
-      ...
-     ]>
+     <!DOCTYPE book ... >
     ...
      <bookinfo>
        <legalnotice>
          <para>Copyright (C) 20yy  [name of author]</para>
-         &FDLnotice;
+         &LGPLnotice;
        </legalnotice>
      </bookinfo>
     ...
 
     Alternatively, you can include the text literally.
-
-    Include a copy of the license in the documentation distribution.
  -->
-<para>Permission is granted to copy, distribute and/or modify this
-document under the terms of the GNU Free Documentation License,
-Version 1.2 or any later version published by the Free Software
-Foundation; with &FDLInvariantSections;, with &FDLFrontCoverText;, and
-with &FDLBackCoverText;.  A copy of the license is included in <xref 
linkend="gnu-fdl"/>.</para>
+<para>This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public License
+as published by the Free Software Foundation; either version 2 of
+the License, or (at your option) any later version.</para>
 
-<!-- If you have no Invariant Sections, don't add any FDLIS entities.
-     If you have no Front-Cover Texts, don't add any FDLFCT; likewise
-     for Back-Cover Texts (the SGML setup takes care of complying with
-     the GNU requirements).  Adding the entities: if you use any, then
-     add FDL* with value "INCLUDE" and FDL*Titles with a list of
-     titles.  You will get the default GNU template text if you don't
-     specify the FDL*Titles entity after specifying the FDL* entity.
-     This will only have effect when you specify %FDLSlots; _after_
-     the entity definitions.
+<para>This library is distributed in the hope that it will be
+useful, but WITHOUT ANY WARRANTY; without even the implied warranty
+of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+Lesser General Public License for more details.</para>
 
-     If your document contains nontrivial examples of program code, we
-     recommend releasing these examples in parallel under your choice
-     of free software license, such as the GNU General Public License,
-     to permit their use in free software.
- -->
+<para>You should have received a copy of the GNU Lesser General
+Public License along with this library; if not, write to the Free
+Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA</para>
 <!--
 Local variables:
 mode: sgml
 sgml-general-insert-case: lower
-sgml-parent-document: ("index.docbook" "book" "bookinfo" "legalnotice" "para")
 End:
 -->
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.55.0/src/customization/es/entities/underCCBYSA4.docbook 
new/kdoctools-5.56.0/src/customization/es/entities/underCCBYSA4.docbook
--- old/kdoctools-5.55.0/src/customization/es/entities/underCCBYSA4.docbook     
1970-01-01 01:00:00.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/entities/underCCBYSA4.docbook     
2019-03-02 14:39:03.000000000 +0100
@@ -0,0 +1,3 @@
+<para id="cc-by-sa-4" xreflabel="the credits and license section">Esta 
documentación está licenciada
+bajo los términos de la <ulink type="commondoc" 
url="ccbysa4-license.html">Creative
+Commons Atribución-CompartirIgual 4.0 Internacional</ulink>.</para>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.55.0/src/customization/es/entities/update-doc.docbook 
new/kdoctools-5.56.0/src/customization/es/entities/update-doc.docbook
--- old/kdoctools-5.55.0/src/customization/es/entities/update-doc.docbook       
2019-02-03 00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/entities/update-doc.docbook       
2019-03-02 14:39:03.000000000 +0100
@@ -1,3 +1,3 @@
 <para>Es posible que este documento haya sido actualizado desde su instalación.
-Compruebe en <ulink url="http://docs.kde.org/";>http://docs.kde.org</ulink> 
-si existe una versión más reciente.</para>
+Puede encontrar la última versión en <ulink
+url="http://docs.kde.org/";>http://docs.kde.org</ulink>.</para>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.55.0/src/customization/es/lang.entities 
new/kdoctools-5.56.0/src/customization/es/lang.entities
--- old/kdoctools-5.55.0/src/customization/es/lang.entities     2019-02-03 
00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/lang.entities     2019-03-02 
14:39:03.000000000 +0100
@@ -38,11 +38,8 @@
 
 
 <!-- CC BY-SA 4 notice -->
-<!-- In order to translate it, copy it into 
<lang>/entities/ccbysa4-notice.docbook
-and change the reference from English version to the translated document
-and remove this comment. -->
 <!ENTITY CCBYSA4Notice PUBLIC "-//KDE//DOCUMENT CC BY-SA 4 Documentation 
Notice//ES"
-         "../en/entities/ccbysa4-notice.docbook">
+         "entities/ccbysa4-notice.docbook">
 <!-- FDL notice -->
 <!ENTITY FDLNotice PUBLIC "-//KDE//DOCUMENT GNU Free Documentation Notice//ES"
          "entities/fdl-notice.docbook">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.55.0/src/customization/es/strings.entities 
new/kdoctools-5.56.0/src/customization/es/strings.entities
--- old/kdoctools-5.55.0/src/customization/es/strings.entities  2019-02-03 
00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/strings.entities  2019-03-02 
14:39:03.000000000 +0100
@@ -21,3 +21,19 @@
 <!ENTITY FDLBackCoverText "los textos en la contraportada estando 
&FDLBCTTitles;">
  ]]>
 <!ENTITY FDLBackCoverText "textos que no estén en la contraportada">
+
+<!-- modespec entity: must be adapted in accordance with the normal usage
+     for documents in a language; the most likely candidates are the value
+     of xreflabel (now %t for title of section referred to) and the content
+     (now empty).  If more than one format is needed, contact 
[email protected].
+     ** In general, this setup will not work with more than one language in 
+        a document **
+     Usage: in <bookinfo>
+     Only strictly needed when olinks are used
+ -->
+<!--ENTITY kde-modespec '<modespec id="kdems-default" 
xreflabel="&percnt;t"></modespec>'-->
+<!ENTITY kde.modespec '
+ <modespec id="kdems-help">help:</modespec>
+ <modespec id="kdems-man">man:</modespec>'>
+
+<!ENTITY olinktype "kde-installation">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.55.0/src/customization/es/user.entities 
new/kdoctools-5.56.0/src/customization/es/user.entities
--- old/kdoctools-5.55.0/src/customization/es/user.entities     2019-02-03 
00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/customization/es/user.entities     2019-03-02 
14:39:03.000000000 +0100
@@ -6,43 +6,53 @@
      names (which if they occur will cost you a _lot_ of time)
  -->
 
-<!ENTITY Alt "<keycap>Alt</keycap>">
-<!ENTITY amarok "<application>amaroK</application>">
-<!ENTITY Backspace "<keycap>Retroceso</keycap>">
-<!ENTITY cdrom  "<hardware>CD-ROM</hardware>">
-<!ENTITY Ctrl "<keycap>Ctrl</keycap>">
-<!ENTITY digikam "<application>digiKam</application>">
-<!ENTITY dpi    "<acronym>ppp</acronym>">
-<!ENTITY eg     "<abbrev>p. ej.</abbrev>" ><!-- eg -->
-<!ENTITY Enter "<keycap>Intro</keycap>">
-<!ENTITY Esc "<keycap>Esc</keycap>">
+<!ENTITY Alt   "<keycap>Alt</keycap>">
+<!ENTITY applications  "<productname>Aplicaciones</productname>">
+<!ENTITY Backspace     "<keysym>Retroceso</keysym>">
+<!ENTITY cdrom '<hardware>unidad de CD-ROM</hardware>'>
+<!ENTITY Ctrl  "<keycap>Ctrl</keycap>">
+<!ENTITY Del   "<keycap>Supr</keycap>">
+<!ENTITY Down  "<keysym>Flecha abajo</keysym>"> <!-- Cursor key-->
+<!ENTITY dpi   '<acronym>ppp</acronym>'>
+<!ENTITY eg     "<abbrev>por ejemplo</abbrev>">
+<!ENTITY End   "<keycap>Fin</keycap>">
+<!ENTITY Enter "<keysym>Intro</keysym>">
+<!ENTITY Esc   "<keycap>Esc</keycap>">
 <!ENTITY etc    "<abbrev>etc.</abbrev>">
-<!ENTITY FAQ    "<acronym>PFs</acronym>">
-<!ENTITY ie     "es decir" ><!-- ie -->
-<!ENTITY kcc "<application>Centro de control de KDE</application>" ><!-- kcc 
-->
-<!ENTITY kcontrolcenter "<application>Centro de control de 
&kde;</application>">
+<!ENTITY FAQ   '<acronym>PF</acronym>'>
+<!ENTITY Home  "<keycap>Inicio</keycap>">
+<!ENTITY ie     "<abbrev>es decir</abbrev>">
+<!ENTITY infocenter    "<application>Centro de información</application>">
+<!ENTITY Ins   "<keycap>Ins</keycap>">
 <!ENTITY kde-frameworks        "<productname>&kde; Frameworks</productname>">
-<!ENTITY kde-sc        "&kde; <acronym>SC</acronym>">
-<!ENTITY kde-sc-full   "<productname>&kde; Software Compilation</productname>">
-<!ENTITY kf5   "<acronym>KF5</acronym>">
 <!ENTITY kf5-full      "&kde-frameworks; <productnumber>5</productnumber>">
-<!ENTITY khelpcenter "<application>Centro de ayuda</application>" >
-<!ENTITY kiosktool "<application>Herramienta de administración 
KIOSK</application>">
-<!ENTITY konversation "<application>Konversation</application>">
-<!ENTITY kubuntu "<application>Kubuntu</application>">
-<!ENTITY kmenu  "menú <guimenu>K</guimenu>">
-<!ENTITY liloconfig "Configuración de LILO">
-<!ENTITY LMB    "<mousebutton>botón izquierdo</mousebutton>">
-<!ENTITY MMB    "<mousebutton>botón central</mousebutton>">
-<!ENTITY OS "Sistema operativo">
-<!ENTITY plasma-active "<productname>&kde; Plasma Active</productname>">
-<!ENTITY plasma-media-center   "<productname>&kde; Plasma Media 
Center</productname>">
-<!ENTITY plasma-netbook        "<productname>&kde; Plasma 
Netbook</productname>">
-<!ENTITY plasma-desktop        "<productname>&kde; Plasma 
Desktop</productname>">
-<!ENTITY plasma-workspaces     "<productname>&kde; Plasma 
Workspaces</productname>">
-<!ENTITY RMB    "<mousebutton>botón derecho</mousebutton>">
-<!ENTITY Shift "<keycap>Mayúsculas</keycap>">
-<!ENTITY systemsettings "<application>Preferencias del sistema</application>">
-<!ENTITY Tab  "<keycap>Tab</keycap>">
-<!ENTITY TODO "Pendiente">
-<!ENTITY X-Windows      "Sistema de ventanas X">
+<!ENTITY Left  "<keysym>Flecha izquierda</keysym>"> <!-- Cursor key-->
+<!ENTITY LMB    "botón <mousebutton>izquierdo</mousebutton> del ratón">
+<!ENTITY Meta  "<keysym>Meta</keysym>"> <!-- Super key or Windows key -->
+<!ENTITY MMB    "botón <mousebutton>central</mousebutton> del ratón">
+<!ENTITY OS    "sistema operativo"><!-- <acronym>OS</acronym>-->
+<!ENTITY partman "<application>Gestor de particiones de KDE</application>">
+<!ENTITY plasma-mobile "<productname>Plasma Mobile de &kde;</productname>">
+<!ENTITY plasma-media-center   "<productname>Centro multimedia de 
&kde;</productname>">
+<!ENTITY plasma-netbook        "<productname>Plasma Netbook de 
&kde;</productname>">
+<!ENTITY plasma-desktop        "<productname>Escritorio Plasma de 
&kde;</productname>">
+<!ENTITY plasma-workspaces     "<productname>Espacios de trabajo Plasma de 
&kde;</productname>">
+<!ENTITY plasmapa       "<productname>Pulseaudio de Plasma para 
&kde;</productname>">
+<!ENTITY PgUp  "<keysym>RePág</keysym>">
+<!ENTITY PgDn  "<keysym>AvPág</keysym>">
+<!ENTITY Right "<keysym>Flecha derecha</keysym>"> <!-- Cursor key-->
+<!ENTITY RMB    "botón <mousebutton>derecho</mousebutton> del ratón">
+<!ENTITY Shift "<keycap>Mayúsculas</keycap>">
+<!ENTITY Space "<keysym>Espacio</keysym>">
+<!ENTITY systemsettings        "<application>Preferencias del 
sistema</application>">
+<!ENTITY systemtray "<application>bandeja del sistema</application>">
+<!ENTITY Tab   "<keycap>Tab</keycap>">
+<!ENTITY Up    "<keysym>Flecha arriba</keysym>"> <!-- Cursor key-->
+
+<!-- Deprecated, will be removed at a future time, do not use -->
+<!ENTITY kcontrolcenter        "<application>Centro de control de 
&kde;</application>">
+<!ENTITY kf5   "<acronym>KF5</acronym>">
+<!ENTITY kmenu  "Menú <guimenu>K</guimenu>">
+<!ENTITY kde-sc        "<acronym>SC</acronym> de &kde;">
+<!ENTITY kde-sc-full   "<productname>Compilación de software de 
&kde;</productname>">
+<!ENTITY plasma-active "<productname>Plasma Active de &kde;</productname>">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.55.0/src/xslt.cpp 
new/kdoctools-5.56.0/src/xslt.cpp
--- old/kdoctools-5.55.0/src/xslt.cpp   2019-02-03 00:56:41.000000000 +0100
+++ new/kdoctools-5.56.0/src/xslt.cpp   2019-03-02 14:39:03.000000000 +0100
@@ -462,18 +462,18 @@
 {
     // Find all catalogs as catalog*.xml, and add them to the list, starting
     // from catalog.xml (the main one).
-    QStringList dirNames = 
locateFilesInDtdResource(QStringLiteral("customization"),
+    const QStringList dirNames = 
locateFilesInDtdResource(QStringLiteral("customization"),
                                                     
QStandardPaths::LocateDirectory);
     if (dirNames.isEmpty()) {
         return QStringList();
     }
     QStringList catalogFiles;
-    foreach (const QString &customizationDirName, dirNames) {
+    for (const QString &customizationDirName : dirNames) {
         QDir customizationDir = QDir(customizationDirName);
         const QStringList catalogFileFilters(QStringLiteral("catalog*.xml"));
         const QFileInfoList catalogInfoFiles = 
customizationDir.entryInfoList(catalogFileFilters,
                                                QDir::Files, QDir::Name);
-        foreach (const QFileInfo &fileInfo, catalogInfoFiles) {
+        for (const QFileInfo &fileInfo : catalogInfoFiles) {
             const QString fullFileName = 
QUrl::fromLocalFile(fileInfo.absoluteFilePath()).toEncoded();
             if (fileInfo.fileName() == QStringLiteral("catalog.xml")) {
                catalogFiles.prepend(fullFileName);
@@ -484,7 +484,7 @@
     }
 
     QStringList catalogs;
-    foreach (const QString &aCatalog, catalogFiles) {
+    for (const QString &aCatalog : qAsConst(catalogFiles)) {
         catalogs << aCatalog;
     }
     //qCDebug(KDocToolsLog) << "Found catalogs: " << catalogs;


Reply via email to