Hello community,

here is the log from the commit of package kapidox for openSUSE:Factory checked 
in at 2020-01-15 16:14:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kapidox (Old)
 and      /work/SRC/openSUSE:Factory/.kapidox.new.30080 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kapidox"

Wed Jan 15 16:14:13 2020 rev:73 rq:763436 version:5.66.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kapidox/kapidox.changes  2019-12-21 
12:29:11.963300979 +0100
+++ /work/SRC/openSUSE:Factory/.kapidox.new.30080/kapidox.changes       
2020-01-15 16:39:03.889028295 +0100
@@ -1,0 +2,10 @@
+Sun Jan  5 09:01:57 UTC 2020 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 5.66.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.66.0.php
+- Changes since 5.65.0:
+  * Display fully qualified class/namespace name as page header (kde#406588)
+
+-------------------------------------------------------------------

Old:
----
  kapidox-5.65.0.tar.xz
  kapidox-5.65.0.tar.xz.sig

New:
----
  kapidox-5.66.0.tar.xz
  kapidox-5.66.0.tar.xz.sig

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

Other differences:
------------------
++++++ kapidox.spec ++++++
--- /var/tmp/diff_new_pack.0nSmnt/_old  2020-01-15 16:39:04.377028471 +0100
+++ /var/tmp/diff_new_pack.0nSmnt/_new  2020-01-15 16:39:04.377028471 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kapidox
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,13 @@
 
 # Only needed for the package signature condition
 %bcond_without lang
-%define _tar_path 5.65
+%define _tar_path 5.66
 # 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}')}
 Name:           kapidox
-Version:        5.65.0
+Version:        5.66.0
 Release:        0
 Summary:        Scripts and data for building API documentation
 License:        BSD-2-Clause


++++++ kapidox-5.65.0.tar.xz -> kapidox-5.66.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapidox-5.65.0/setup.py new/kapidox-5.66.0/setup.py
--- old/kapidox-5.65.0/setup.py 2019-12-02 08:08:31.000000000 +0100
+++ new/kapidox-5.66.0/setup.py 2019-12-27 14:59:54.000000000 +0100
@@ -14,7 +14,7 @@
 
 setup(
         name='kapidox',
-        version='5.65.0',
+        version='5.66.0',
         description='KDE API documentation generation tools',
         maintainer = 'Olivier Churlaud',
         maintainer_email = 'oliv...@churlaud.com',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kapidox-5.65.0/src/kapidox/data/templates/library.html 
new/kapidox-5.66.0/src/kapidox/data/templates/library.html
--- old/kapidox-5.65.0/src/kapidox/data/templates/library.html  2019-12-02 
08:08:31.000000000 +0100
+++ new/kapidox-5.66.0/src/kapidox/data/templates/library.html  2019-12-27 
14:59:54.000000000 +0100
@@ -1,6 +1,13 @@
 {% extends "base.html" %}
 {% block page_title %}{{ dox.projectname }} - {{ dox.title }}{% endblock %}
-{% block title %} {{ dox.projectname }} {% endblock %}
+
+{% block title %}
+{% if fullname %}
+{{ fullname }}
+{% else %}
+{{ dox.projectname }}
+{% endif %}
+{% endblock title %}
 
 {% block content %}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kapidox-5.65.0/src/kapidox/generator.py 
new/kapidox-5.66.0/src/kapidox/generator.py
--- old/kapidox-5.65.0/src/kapidox/generator.py 2019-12-02 08:08:31.000000000 
+0100
+++ new/kapidox-5.66.0/src/kapidox/generator.py 2019-12-27 14:59:54.000000000 
+0100
@@ -448,8 +448,13 @@
 
             if name != 'classes.html' and name.startswith('class'):
                 mapping['classname'] = name[5:-5].split('_1_1')[-1]
+                mapping['fullname'] = name[5:-5].replace('_1_1', '::')
+            elif name.startswith('namespace') and name != 'namespaces.html' 
and not name.startswith('namespacemembers'):
+                mapping['classname'] = None
+                mapping['fullname'] = name[9:-5].replace('_1_1', '::')
             else:
                 mapping['classname'] = None
+                mapping['fullname'] = None
 
             with codecs.open(path, 'r', 'utf-8', errors='ignore') as f:
                 mapping['dox'] = parse_dox_html(f)


Reply via email to