Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package suse-xsl-stylesheets for openSUSE:Factory checked in at 2023-03-03 22:24:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/suse-xsl-stylesheets (Old) and /work/SRC/openSUSE:Factory/.suse-xsl-stylesheets.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "suse-xsl-stylesheets" Fri Mar 3 22:24:36 2023 rev:64 rq:1068962 version:2.89.0 Changes: -------- --- /work/SRC/openSUSE:Factory/suse-xsl-stylesheets/suse-xsl-stylesheets.changes 2023-01-27 10:22:57.121659528 +0100 +++ /work/SRC/openSUSE:Factory/.suse-xsl-stylesheets.new.31432/suse-xsl-stylesheets.changes 2023-03-03 22:24:51.674613381 +0100 @@ -1,0 +2,8 @@ +Thu Mar 2 14:53:42 UTC 2023 - Thomas Schraitle <thomas.schrai...@suse.com> - 2.89.0 + +- Update 2.89.0 + - Fix #535: Let formal titles in abstract appear + - Fix #533: Let publication date appear after titles + - Handle abstract/para in article titlepage (#532) + +------------------------------------------------------------------- Old: ---- suse-xsl-2.88.3.tar.bz2 New: ---- suse-xsl-2.89.0.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ suse-xsl-stylesheets.spec ++++++ --- /var/tmp/diff_new_pack.hyNBct/_old 2023-03-03 22:24:52.294615737 +0100 +++ /var/tmp/diff_new_pack.hyNBct/_new 2023-03-03 22:24:52.306615783 +0100 @@ -22,7 +22,7 @@ %define suse_styles_dir %{db_xml_dir}/stylesheet # Name: suse-xsl-stylesheets -Version: 2.88.3 +Version: 2.89.0 Release: 0 Summary: SUSE-Branded Stylesheets for DocBook License: GPL-2.0-only OR GPL-3.0-only ++++++ suse-xsl-2.88.3.tar.bz2 -> suse-xsl-2.89.0.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/suse-xsl-2.88.3/ChangeLog new/suse-xsl-2.89.0/ChangeLog --- old/suse-xsl-2.88.3/ChangeLog 2023-01-26 09:08:41.000000000 +0100 +++ new/suse-xsl-2.89.0/ChangeLog 2023-03-02 15:49:57.000000000 +0100 @@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Thu Mar 02 15:40:00 UTC 2022 - toms...@users.noreply.github.com + +- Update 2.89.0 + - Fix #535: Let formal titles in abstract appear + - Fix #533: Let publication date appear after titles + - Handle abstract/para in article titlepage (#532) + +------------------------------------------------------------------- Thu Dec 26 09:04:00 UTC 2022 - toms...@users.noreply.github.com - Update 2.88.3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/suse-xsl-2.88.3/Makefile new/suse-xsl-2.89.0/Makefile --- old/suse-xsl-2.88.3/Makefile 2023-01-26 09:08:41.000000000 +0100 +++ new/suse-xsl-2.89.0/Makefile 2023-03-02 15:49:57.000000000 +0100 @@ -11,7 +11,7 @@ SHELL := /bin/bash PACKAGE := suse-xsl-stylesheets -VERSION := 2.88.3 +VERSION := 2.89.0 CDIR := $(shell pwd) SUSE_XML_PATH := $(PREFIX)/xml/suse DB_XML_PATH := $(PREFIX)/xml/docbook diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/suse-xsl-2.88.3/suse2022-ns/xhtml/formal.xsl new/suse-xsl-2.89.0/suse2022-ns/xhtml/formal.xsl --- old/suse-xsl-2.88.3/suse2022-ns/xhtml/formal.xsl 2023-01-26 09:08:41.000000000 +0100 +++ new/suse-xsl-2.89.0/suse2022-ns/xhtml/formal.xsl 2023-03-02 15:49:57.000000000 +0100 @@ -86,23 +86,27 @@ </xsl:call-template> </xsl:param> - <!-- The 'if' here avoids outputting the (ugly/obvious) label "Abstract" - before abstracts.--> - <xsl:if test="not($object/ancestor-or-self::d:abstract or - $object/ancestor-or-self::d:highlights)"> - <div class="title-container"> - <div class="{concat(local-name(),'-title-wrap')}"> - <div class="{concat(local-name(), '-title')}"> - <!-- Do NOT create an id here; parent contains one already --> - <xsl:copy-of select="$title"/> - <xsl:call-template name="create.permalink"> - <xsl:with-param name="object" select="$object"/> - </xsl:call-template> + <xsl:choose> + <!-- Avoids outputting the (ugly/obvious) label "Abstract" + before abstracts/highlights: + --> + <xsl:when test="local-name($object) = 'abstract'"/> + <xsl:when test="local-name($object) = 'highlights'"/> + <xsl:otherwise> + <div class="title-container"> + <div class="{concat(local-name(),'-title-wrap')}"> + <div class="{concat(local-name(), '-title')}"> + <!-- Do NOT create an id here; parent contains one already --> + <xsl:copy-of select="$title" /> + <xsl:call-template name="create.permalink"> + <xsl:with-param name="object" select="$object" /> + </xsl:call-template> + </div> + </div> + <xsl:call-template name="generate.title.icons" /> </div> - </div> - <xsl:call-template name="generate.title.icons"/> - </div> - </xsl:if> + </xsl:otherwise> + </xsl:choose> </xsl:template> </xsl:stylesheet> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/suse-xsl-2.88.3/suse2022-ns/xhtml/titlepage.templates.xsl new/suse-xsl-2.89.0/suse2022-ns/xhtml/titlepage.templates.xsl --- old/suse-xsl-2.88.3/suse2022-ns/xhtml/titlepage.templates.xsl 2023-01-26 09:08:41.000000000 +0100 +++ new/suse-xsl-2.89.0/suse2022-ns/xhtml/titlepage.templates.xsl 2023-03-02 15:49:57.000000000 +0100 @@ -249,9 +249,10 @@ </xsl:template> <xsl:template match="d:abstract" mode="article.titlepage.recto.auto.mode"> - <xsl:apply-templates select="."/> + <xsl:apply-imports/> </xsl:template> + <xsl:template name="article.titlepage.before.recto"> <xsl:call-template name="version.info.headline"/> </xsl:template> @@ -290,6 +291,8 @@ </xsl:when> </xsl:choose> + <xsl:call-template name="date.and.revision"/> + <!-- Legal notice removed from here, now positioned at the bottom of the page, see: division.xsl --> <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="d:articleinfo/d:abstract"/> <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="d:artheader/d:abstract"/> @@ -310,7 +313,6 @@ <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="d:articleinfo/d:editor"/> <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="d:info/d:editor"/> - <xsl:call-template name="date.and.revision"/> <xsl:call-template name="vcs.url"/> <xsl:apply-templates mode="article.titlepage.recto.auto.mode" select="d:articleinfo/d:copyright"/>