commit kdewebkit for openSUSE:Factory
Hello community, here is the log from the commit of package kdewebkit for openSUSE:Factory checked in at 2014-04-02 17:21:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdewebkit (Old) and /work/SRC/openSUSE:Factory/.kdewebkit.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "kdewebkit" Changes: -------- --- /work/SRC/openSUSE:Factory/kdewebkit/kdewebkit.changes 2014-03-10 12:18:01.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kdewebkit.new/kdewebkit.changes 2014-04-02 17:22:05.000000000 +0200 @@ -1,0 +2,9 @@ +Sat Mar 29 19:47:31 UTC 2014 - hrvoje.senjan@gmail.com + +- Update to 4.98.0 + * API improvements and cleanups + * Buildsystem fixes + * For more details please see: + http://www.kde.org/announcements/announce-frameworks5-beta1.php + +------------------------------------------------------------------- Old: ---- kdewebkit-4.97.0.tar.xz New: ---- kdewebkit-4.98.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdewebkit.spec ++++++ --- /var/tmp/diff_new_pack.XJVt25/_old 2014-04-02 17:22:05.000000000 +0200 +++ /var/tmp/diff_new_pack.XJVt25/_new 2014-04-02 17:22:05.000000000 +0200 @@ -18,10 +18,10 @@ %define lname libKF5WebKit5 Name: kdewebkit -Version: 4.97.0 +Version: 4.98.0 Release: 0 BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 0.0.11 +BuildRequires: extra-cmake-modules >= 0.0.12 BuildRequires: fdupes BuildRequires: kbookmarks-devel >= %{_kf5_version} BuildRequires: kcompletion-devel >= %{_kf5_version} ++++++ kdewebkit-4.97.0.tar.xz -> kdewebkit-4.98.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdewebkit-4.97.0/CMakeLists.txt new/kdewebkit-4.98.0/CMakeLists.txt --- old/kdewebkit-4.97.0/CMakeLists.txt 2014-03-01 12:50:37.000000000 +0100 +++ new/kdewebkit-4.98.0/CMakeLists.txt 2014-03-28 19:16:37.000000000 +0100 @@ -2,7 +2,7 @@ project(KDEWebKit) -find_package(ECM 0.0.11 REQUIRED NO_MODULE) +find_package(ECM 0.0.12 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) @@ -18,7 +18,7 @@ include(ECMSetupVersion) include(ECMGenerateHeaders) -set(KF5_VERSION "4.97.0") +set(KF5_VERSION "4.98.0") ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KDEWEBKIT VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kdewebkit_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5WebKitConfigVersion.cmake" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdewebkit-4.97.0/src/kgraphicswebview.h new/kdewebkit-4.98.0/src/kgraphicswebview.h --- old/kdewebkit-4.97.0/src/kgraphicswebview.h 2014-03-01 12:50:37.000000000 +0100 +++ new/kdewebkit-4.98.0/src/kgraphicswebview.h 2014-03-28 19:16:37.000000000 +0100 @@ -34,12 +34,13 @@ template<class T> class KWebViewPrivate; /** - * @short A re-implementation of QGraphicsWebView that provides KDE integration. + * @short A re-implementation of QGraphicsWebView that provides KDE Frameworks + * integration. * * This is a drop-in replacement for QGraphicsWebView that provides full KDE - * integration through the use of @ref KWebPage. It also provides signals that - * capture middle, shift and ctrl mouse clicks on links and URL pasting from the - * selection clipboard. + * frameworks integration through the use of @ref KWebPage. It also provides + * signals that capture middle, shift and ctrl mouse clicks on links and URL + * pasting from the selection clipboard. * * The specific functionality provided by this class (over and above what * would be acheived by using KWebPage with a QGraphicsWebView) is that @@ -61,9 +62,9 @@ * Constructs a KGraphicsWebView object with parent @p parent. * * Set @p createCustomPage to false to prevent the creation of a - * @ref KWebPage object for KDE integration. Doing so allows you to - * avoid unnecessary object creation and deletion if you are going to - * use a subclass of KWebPage. + * @ref KWebPage object for KDE frameworks integration. Doing so allows you + * to avoid unnecessary object creation and deletion if you are going to use + * a subclass of KWebPage. * * @param parent the parent object * @param createCustomPage if @c true, the view's page is set to an @@ -149,8 +150,8 @@ * Emitted when a link is clicked with the left mouse button while SHIFT is * held down. * - * A KDE user would typically expect this to result in the triggering of a - * "save link as" action. + * A user of Plasma Desktop would typically expect this to result in the + * triggering of a "save link as" action. * * @param url the URL of the clicked link */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdewebkit-4.97.0/src/kwebpage.cpp new/kdewebkit-4.98.0/src/kwebpage.cpp --- old/kdewebkit-4.97.0/src/kwebpage.cpp 2014-03-01 12:50:37.000000000 +0100 +++ new/kdewebkit-4.98.0/src/kwebpage.cpp 2014-03-28 19:16:37.000000000 +0100 @@ -606,7 +606,7 @@ } } if (!downloadResource(replyUrl, suggestedFileName, d->windowWidget())) { - break; + return true; // file dialog was cancelled, stop here } } return true; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdewebkit-4.97.0/src/kwebpage.h new/kdewebkit-4.98.0/src/kwebpage.h --- old/kdewebkit-4.97.0/src/kwebpage.h 2014-03-01 12:50:37.000000000 +0100 +++ new/kdewebkit-4.98.0/src/kwebpage.h 2014-03-28 19:16:37.000000000 +0100 @@ -39,13 +39,13 @@ } /** - * @short An enhanced QWebPage that provides integration into the KDE environment. + * @short An enhanced QWebPage that provides integration with KDE Frameworks. * * This is a convenience class that provides full integration with KDE - * technologies such as KIO for network request handling, KCookiejar for cookie - * handling, KParts for embedding non-html content and KWallet for storing - * form data. It also sets standard icons for many of the actions provided by - * QWebPage. + * frameworks technologies such as KIO for network request handling, KCookiejar + * for cookie handling, KParts for embedding non-html content and KWallet for + * storing form data. It also sets standard icons for many of the actions + * provided by QWebPage. * * Most of this integration happens behind the scenes. If you want KWallet * integration, however, you will have to provide a mechanism for deciding @@ -145,11 +145,11 @@ /** * The wallet integration manager. * - * If you wish to use KDE wallet integration, you will have to connect to + * If you wish to use KWallet integration, you will have to connect to * signals emitted by this object and react accordingly. See KWebWallet * for more information. * - * @return the wallet integration manager, or 0 if KDE wallet integration + * @return the wallet integration manager, or 0 if KWallet integration * is disabled */ KWebWallet *wallet() const; @@ -205,9 +205,9 @@ * This slot first prompts the user where to save the requested resource * and then downloads it using KIO. * - * In KDE 4.8 and higher, if @p reply contains a QObject property called - * "DownloadManagerExe", then an attempt will be made to the command - * specified by that property to download the specified resource. + * If @p reply contains a QObject property called "DownloadManagerExe", then + * an attempt will be made to the command specified by that property to + * download the specified resource. * * If the "DownloadManagerExe" property is not defined or the command * specified by it could not be successfully executed, then the user will @@ -309,8 +309,8 @@ /** * @reimp * - * This function is re-implemented to provide KDE user-agent management - * integration through KProtocolManager. + * This function is re-implemented to provide KIO user-agent management + * integration with KProtocolManager. * * If a special user-agent has been configured for the host indicated by * @p url, that user-agent will be returned. Otherwise, QWebPage's @@ -339,9 +339,9 @@ /** * Attempts to handle @p reply and returns true on success, false otherwise. * - * In KDE 4.8 and higher, if @p reply contains a QObject property called - * "DownloadManagerExe", then an attempt will be made to let the command - * specified by that property to download the requested resource. + * If @p reply contains a QObject property called "DownloadManagerExe", then + * an attempt will be made to let the command specified by that property to + * download the requested resource. * * If the "DownloadManagerExe" property is not defined or the command * specified by it could not be successfully executed, then the user will diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdewebkit-4.97.0/src/kwebpluginfactory.h new/kdewebkit-4.98.0/src/kwebpluginfactory.h --- old/kdewebkit-4.97.0/src/kwebpluginfactory.h 2014-03-01 12:50:37.000000000 +0100 +++ new/kdewebkit-4.98.0/src/kwebpluginfactory.h 2014-03-28 19:16:37.000000000 +0100 @@ -33,7 +33,7 @@ } /** - * @short A QWebPluginFactory with integration into the KDE environment. + * @short A QWebPluginFactory that is integrated with KDE frameworks. * * This class will attempt to find a KPart to satisfy a plugin request. * @@ -98,7 +98,7 @@ /** * Returns true if the given mime-type is excluded from being used to create - * a web plugin using KDE's trader. + * a web plugin using KService's trader. * * Currently this function only returns true for mimetypes 'x-java', * 'x-shockwave-flash', and 'futuresplash' in the 'application' category @@ -111,7 +111,7 @@ /** * Returns an instance of the service associated with @p mimeType. * - * This function uses KDE's trader to create an instance of the service + * This function uses KService's trader to create an instance of the service * associated with the given parameters. The parameters are the <param> * tags of the HTML object. The name and the value attributes of these * tags are specified by the @p argumentNames and @p argumentValues diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdewebkit-4.97.0/src/kwebview.h new/kdewebkit-4.98.0/src/kwebview.h --- old/kdewebkit-4.97.0/src/kwebview.h 2014-03-01 12:50:37.000000000 +0100 +++ new/kdewebkit-4.98.0/src/kwebview.h 2014-03-28 19:16:37.000000000 +0100 @@ -34,9 +34,10 @@ template<class T> class KWebViewPrivate; /** - * @short A re-implementation of QWebView that provides KDE integration. + * @short A re-implementation of QWebView that provides integration with KDE + * frameworks. * - * This is a drop-in replacement for QWebView that provides full KDE + * This is a drop-in replacement for QWebView that provides full KDE frameworks * integration through @ref KWebPage as well as additional signals that * capture middle, shift and ctrl mouse clicks on links and URL pasting * from the selection clipboard. @@ -62,9 +63,9 @@ * Constructs a KWebView object with parent @p parent. * * Set @p createCustomPage to false to prevent the creation of a - * @ref KWebPage object for KDE integration. Doing so allows you to - * avoid unnecessary object creation and deletion if you are going to - * use a subclass of KWebPage. + * @ref KWebPage object for KDE frameworks integration. Doing so allows you + * to avoid unnecessary object creation and deletion if you are going to use + * a subclass of KWebPage. * * @param parent the parent object * @param createCustomPage if @c true, the view's page is set to an @@ -150,8 +151,8 @@ * Emitted when a link is clicked with the left mouse button while SHIFT is * held down. * - * A KDE user would typically expect this to result in the triggering of a - * "save link as" action. + * A user of Plasma desktop would typically expect this to result in the + * triggering of a "save link as" action. * * @param url the URL of the clicked link */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdewebkit-4.97.0/src/kwebwallet.h new/kdewebkit-4.98.0/src/kwebwallet.h --- old/kdewebkit-4.97.0/src/kwebwallet.h 2014-03-01 12:50:37.000000000 +0100 +++ new/kdewebkit-4.98.0/src/kwebwallet.h 2014-03-28 19:16:37.000000000 +0100 @@ -36,7 +36,7 @@ class QWebPage; /** - * @short A class that provides KDE wallet integration for QWebFrame. + * @short A class that provides KWallet integration for QWebFrame. * * Normally, you will use this class via KWebPage. In this case, you need to * connect to the saveFormDataRequested signal and call either @@ -95,7 +95,7 @@ * * @p parent is usually the QWebPage this wallet is being used for. * - * The @p wid parameter is used to tell KDE's wallet manager which window + * The @p wid parameter is used to tell the KWallet manager which window * is requesting access to the wallet. * * @param parent the owner of this wallet -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de