Hello community,
here is the log from the commit of package suse-xsl-stylesheets for
openSUSE:Factory checked in at 2016-09-20 13:21:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/suse-xsl-stylesheets (Old)
and /work/SRC/openSUSE:Factory/.suse-xsl-stylesheets.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "suse-xsl-stylesheets"
Changes:
--------
---
/work/SRC/openSUSE:Factory/suse-xsl-stylesheets/suse-xsl-stylesheets.changes
2016-08-09 22:14:16.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.suse-xsl-stylesheets.new/suse-xsl-stylesheets.changes
2016-09-20 13:21:25.000000000 +0200
@@ -1,0 +2,25 @@
+Thu Sep 15 15:06:10 UTC 2016 - [email protected]
+
+Stable release of the SUSE XSL stylesheets 2.0.6.2:
+
+Find issues in our GitHub tracker at
+https://github.com/openSUSE/suse-xsl/issues/NUMBER
+
+* Packaging
+ - Fixed post/postun segments of spec file
+
+* SUSE Word List for aspell
+ - Added more words
+
+* Stylesheets (common)
+ - Added VERSION.xsl for suse2005 stylesheets
+
+* Stylesheets (PDF)
+ - Removed duplicate fo:markers that led to build errors with XEP
+ (suse-xsl #260)
+
+* Stylesheets (XHTML)
+ - Fixed embedded JavaScript, removed old Chrome/Android quirk
+ - Fixed embedding of branding CSS
+
+-------------------------------------------------------------------
@@ -11,0 +37,2 @@
+ - Made syntax highlighting functional with openSUSE and DAPS
+ brandings
Old:
----
suse-xsl-stylesheets-2.0.6.1.tar.bz2
New:
----
suse-xsl-stylesheets-2.0.6.2.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ suse-xsl-stylesheets.spec ++++++
--- /var/tmp/diff_new_pack.KCZv2T/_old 2016-09-20 13:21:26.000000000 +0200
+++ /var/tmp/diff_new_pack.KCZv2T/_new 2016-09-20 13:21:26.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package suse-xsl-stylesheets
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,24 +17,23 @@
Name: suse-xsl-stylesheets
-Version: 2.0.6.1
+Version: 2.0.6.2
Release: 0
###############################################################
#
-# ATTENTION: Do NOT edit this file outside of
-# https://svn.code.sf.net/p/daps/svn/trunk/daps/\
-# suse/packaging/suse-xsl-stylesheets.spec
+# IMPORTANT:
+# Only edit this file directly in the Git repo:
+# https://github.com/openSUSE/daps, branch develop,
+# packaging/suse-xsl-stylesheets.spec
#
-# Your changes will be lost on the next update
-# If you do not have access to the SVN repository, notify
+# Your changes will be lost on the next update.
+# If you do not have access to the Git repository, notify
# <[email protected]> and <[email protected]>
-# or send a patch
+# or send a patch.
#
################################################################
-%define dbstyles %{_datadir}/xml/docbook/stylesheet/nwalsh/current
-%define susexsl_catalog catalog-for-%{name}.xml
%define db_xml_dir %{_datadir}/xml/docbook
%define suse_styles_dir %{db_xml_dir}/stylesheet
@@ -67,7 +66,6 @@
Requires: docbook_5
Requires: docbook-xsl-stylesheets >= 1.77
Requires: docbook5-xsl-stylesheets >= 1.77
-
Requires: libxslt
Requires: aspell-en
@@ -80,10 +78,8 @@
# Western fallback: currently necessary for building with XEP, it seems.
Requires: ghostscript-fonts-std
-
# Western fallback 2: These should make the Ghostscript fonts unnecessary.
Requires: gnu-free-fonts
-
# "Generic" font for use in cases where we don't want one of the gnu-free-fonts
Requires: dejavu-fonts
@@ -99,7 +95,6 @@
# Chinese:
Requires: wqy-microhei-fonts
-
# FONTS USED IN "suse2013" STYLESHEETS
# Western fonts:
Requires: google-opensans-fonts
@@ -127,64 +122,52 @@
subset of the DocBook 5 schema.
#--------------------------------------------------------------------------
+
%prep
%setup -q -n %{name}
#--------------------------------------------------------------------------
+
%build
%__make %{?_smp_mflags}
#--------------------------------------------------------------------------
+
%install
-make install DESTDIR=$RPM_BUILD_ROOT LIBDIR=%_libdir
+make install DESTDIR=%{buildroot} LIBDIR=%{_libdir}
# create symlinks:
-%fdupes -s $RPM_BUILD_ROOT/%{_datadir}
+%fdupes -s %{buildroot}/%{_datadir}
#----------------------
+
%post
-# XML Catalogs
-#
-# remove existing entries first - needed for
-# zypper in, since it does not call postun
-# delete ...
-if [ "2" = "$1" ]; then
+%reconfigure_fonts_post
+if [ ! -f %{_sysconfdir}/xml/suse-catalog.xml -a -x
%{_bindir}/edit-xml-catalog ] ; then
+ # susexsl entry
+ edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \
+ --del %{name}
edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \
- --del %{name} || true
+ --del suse_schemas
fi
-
-# ... and (re)add it again
-edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \
- --add %{_sysconfdir}/xml/%{susexsl_catalog}
-
-%reconfigure_fonts_post
exit 0
#----------------------
+
%postun
-#
-# Remove catalog entries
-#
-# delete catalog entries
-# only run if package is really uninstalled ($1 = 0) and not
-# in case of an update
-#
if [ "0" = "$1" ]; then
- if [ ! -f %{_sysconfdir}/xml/%{suse_schemas_catalog} -a -x
/usr/bin/edit-xml-catalog ] ; then
- # susexsl entry
- edit-xml-catalog --group --catalog %{_sysconfdir}/xml/suse-catalog.xml \
- --del %{name}
- fi
%reconfigure_fonts_post
fi
exit 0
#----------------------
+
%posttrans
%reconfigure_fonts_posttrans
#----------------------
+
%files
%defattr(-,root,root)
++++++ suse-xsl-stylesheets-2.0.6.1.tar.bz2 ->
suse-xsl-stylesheets-2.0.6.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/ChangeLog
new/suse-xsl-stylesheets/ChangeLog
--- old/suse-xsl-stylesheets/ChangeLog 2016-08-04 20:28:49.000000000 +0200
+++ new/suse-xsl-stylesheets/ChangeLog 2016-09-15 17:02:26.000000000 +0200
@@ -1,4 +1,31 @@
-------------------------------------------------------------------
+Thu Sep 15 15:00:00 UTC 2016 - [email protected]
+
+Stable release of the SUSE XSL stylesheets 2.0.6.2:
+
+Find issues in our GitHub tracker at
+https://github.com/openSUSE/suse-xsl/issues/NUMBER
+
+* Packaging
+ - Fixed post/postun segments of spec file
+
+* SUSE Word List for aspell
+ - Added more words
+
+* Stylesheets (common)
+ - Added `VERSION.xsl` for `suse2005` stylesheets
+
+* Stylesheets (PDF)
+ - Removed duplicate `fo:marker`s that led to build errors with XEP
+ (suse-xsl #260)
+
+* Stylesheets (XHTML)
+ - Fixed embedded JavaScript, removed old Chrome/Android quirk
+ - Fixed embedding of branding CSS
+ - Made syntax highlighting functional with openSUSE and DAPS
+ brandings
+
+-------------------------------------------------------------------
Thu Aug 04 18:00:00 UTC 2016 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.6.1:
@@ -8,7 +35,7 @@
* Stylesheets (XHTML)
- Fixed style of <section><title> elements
- - Turned of syntax highlighting in cases where it is unexpected
+ - Turned off syntax highlighting in cases where it is unexpected
-------------------------------------------------------------------
Mon Aug 01 16:00:00 UTC 2016 - [email protected]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/Makefile
new/suse-xsl-stylesheets/Makefile
--- old/suse-xsl-stylesheets/Makefile 2016-08-04 20:28:49.000000000 +0200
+++ new/suse-xsl-stylesheets/Makefile 2016-09-15 17:02:26.000000000 +0200
@@ -12,7 +12,7 @@
SHELL := /bin/bash
PACKAGE := suse-xsl-stylesheets
# HINT: Also raise version number in packaging/suse-xsl-stylesheets.spec
-VERSION := 2.0.6.1
+VERSION := 2.0.6.2
CDIR := $(shell pwd)
DIST_EXCLUDES := packaging/exclude-files_for_susexsl_package.txt
SUSE_XML_PATH := $(PREFIX)/xml/suse
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/README.adoc
new/suse-xsl-stylesheets/README.adoc
--- old/suse-xsl-stylesheets/README.adoc 2016-08-04 20:28:49.000000000
+0200
+++ new/suse-xsl-stylesheets/README.adoc 2016-09-15 17:02:26.000000000
+0200
@@ -1,4 +1,4 @@
-SUSE XSL Stylesheets 2.0.6.1
+SUSE XSL Stylesheets 2.0.6.2
============================
Thomas Schraitle <[email protected]>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/aspell/suse_wordlist.txt
new/suse-xsl-stylesheets/aspell/suse_wordlist.txt
--- old/suse-xsl-stylesheets/aspell/suse_wordlist.txt 2016-08-04
20:28:49.000000000 +0200
+++ new/suse-xsl-stylesheets/aspell/suse_wordlist.txt 2016-09-15
17:02:26.000000000 +0200
@@ -22,6 +22,7 @@
AGP
AHCI
aKregator
+allocable
ALSA
ALUA
amaroK
@@ -148,6 +149,8 @@
bigalloc
Bindmount
binutils
+biometric
+biometrics
BIOS
BIOSes
bitmask
@@ -331,6 +334,7 @@
CPACF
cpio
cpu
+CPUID
CPUs
cramfs
crashkernel
@@ -366,6 +370,10 @@
CTCP
Ctrl
cucme
+cumulate
+cumulated
+cumulates
+cumulating
cupsctl
cupsd
cURL
@@ -540,6 +548,8 @@
enableHttps
enableInterOp
enablement
+encoding
+encodings
encryptions
endian
Engenio
@@ -573,7 +583,7 @@
ESX
ESXi
eth
-ethernet
+Etherboot
ethtool
ethx
ETR
@@ -600,6 +610,7 @@
failovers
failsafe
Failsafe
+fallbacks
fallocate
Faq
FastCGI
@@ -638,7 +649,8 @@
FineReader
Firefox
FireGL
-Firewire
+firewalled
+firewalling
FireWire
firstboot
Firstboot
@@ -736,6 +748,7 @@
Globbed
globbing
Globbing
+GlusterFS
GLX
GmbH
gnokii
@@ -883,6 +896,8 @@
hwtype
HWtype
HWTYPE
+hypercall
+hypercalls
hyperthreaded
hyperthreading
hypervisor
@@ -968,6 +983,7 @@
InputDevice
inputrc
insserv
+installable
instlux
instserver
instsource
@@ -1074,6 +1090,7 @@
JPG
JPGs
JS
+JSON
JSP
JSxx
JuK
@@ -1393,6 +1410,8 @@
mirrorability
misconfigured
misordering
+mistyped
+mistyping
mitigations
MI/X
mkdir
@@ -1687,7 +1706,15 @@
other's
ou
OU
+overamplifies
+overamplified
overamplification
+overamplify
+overamplifying
+overcommit
+overcommits
+overcommitted
+overcommitting
OWA
Pack
PackageKit
@@ -1967,6 +1994,7 @@
Quicktime
ra
radvd
+RADOS
RAID
RAIDn
RAIDs
@@ -2035,16 +2063,34 @@
RenderX
renice
reniced
+repartition
+repartitioned
+repartitioning
+repartitions
+repo
repos
+repost
+reposted
+reposts
reposting
reprofile
resave
resaving
resends
resize
-Resize
resized
+resizes
+resizing
resync
+resyncs
+resynced
+resynchronize
+resynchronized
+resynchronizes
+resynchronization
+resynchronizing
+resynchronization
+resyncing
retitle
REXX
rfb
@@ -2067,6 +2113,8 @@
ROOTELEMENTS
rootid
ROOTID
+rootkit
+rootkits
Rosegarden
Roxio
rpasswd
@@ -2159,6 +2207,7 @@
sdpd
sdptool
sdX
+SeaBIOS
searchable
searchd
searchlist
@@ -2203,6 +2252,7 @@
SGI
sha
ShamirAdleman
+shareable
SHARENAME
SharePoint
shmctl
@@ -2271,6 +2321,7 @@
SourceForge
SourceSafe
S/PDIF
+SPARC
Speedstep
SphinxSearchDaemon
SPident
@@ -2609,6 +2660,7 @@
uniprocessor
unistroke
unix
+unmaintained
unmanaged
unmark
unmount
@@ -2685,6 +2737,7 @@
vimtutor
Vinagre
VIPArip
+virsh
virtfs
virtio
VirtualBox
@@ -2762,6 +2815,8 @@
webhelp
websafe
Websafe
+WebSocket
+WebSockets
Websphere
WebSphere
WEP
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/suse-xsl-stylesheets/daps2013/static/css/highlight.css
new/suse-xsl-stylesheets/daps2013/static/css/highlight.css
--- old/suse-xsl-stylesheets/daps2013/static/css/highlight.css 1970-01-01
01:00:00.000000000 +0100
+++ new/suse-xsl-stylesheets/daps2013/static/css/highlight.css 2016-09-20
13:21:27.000000000 +0200
@@ -0,0 +1 @@
+symbolic link to ../../../suse2013/static/css/highlight.css
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/daps2013/static/css/style.css
new/suse-xsl-stylesheets/daps2013/static/css/style.css
--- old/suse-xsl-stylesheets/daps2013/static/css/style.css 2016-08-04
20:28:49.000000000 +0200
+++ new/suse-xsl-stylesheets/daps2013/static/css/style.css 2016-09-15
17:02:26.000000000 +0200
@@ -1098,7 +1098,7 @@
border-top: 1px solid #999;
clear: both;
display: none;
- color: 666;
+ color: #666;
}
.offline .online-contents {
@@ -1319,7 +1319,6 @@
}
.sect1 .title, .single .sect1 .title,
-.section .title, .single .section .title,
.chapter .qandaset .title, .preface .qandaset .title, .appendix .qandaset
.title,
.bibliography .qandaset .title, .reference .qandaset .title,
.part .qandaset .title, .glossary .qandaset .title {
@@ -1329,16 +1328,14 @@
text-align: left;
}
-.sect2 .title, .single .sect2 .title, .sect1 .qandaset .title,
-.section .section .title, .single .section .section .title {
+.sect2 .title, .single .sect2 .title, .sect1 .qandaset .title {
font-size: 22px;
padding: 40px 0 0;
text-align: left;
}
.sect3 .title, .single .sect3 .title,
-.sect2 .qandaset .title, .refentry h2, h2, .indexdiv h3,
-.section .section .section .title, .single .section .section .section .title {
+.sect2 .qandaset .title, .refentry h2, h2, .indexdiv h3 {
font-size: 20px;
font-weight: normal;
padding: 33px 0 0;
@@ -1346,8 +1343,7 @@
}
.sect4 .title, .single .sect4 .title,
-.sect5 .title, .single .sect5 .title,
-.section .section .section .title, .single .section .section .section .title {
+.sect5 .title, .single .sect5 .title {
font-size: 16px;
padding: 53px 0 0;
margin: 0 0 -33px;
@@ -1357,12 +1353,12 @@
text-align: left;
}
-.sect4 .title, .section .section .section .section .title {
- font-weight: 600;
+.sect4 .title {
+ font-weight: 600 !important;
}
-.sect5 .title, .section .section .section .section .section .title {
- font-weight: normal;
+.sect5 .title {
+ font-weight: normal !important;
}
.legal-section p {
@@ -2299,7 +2295,7 @@
}
.qandadiv {
- margin: 0 0 40px 0;#
+ margin: 0 0 40px 0;
}
.answer .table-title, .answer .verbatim-wrap, .answer .variablelist {
@@ -2481,7 +2477,7 @@
}
@page {
- size: 100%;
+ size: portrait;
margin: 20mm 22.5mm 22.5mm 22.5mm;
}
@@ -3065,7 +3061,6 @@
}
.sect1 .title, .single .sect1 .title,
- .section .title, .single .section .title,
.chapter .qandaset .title, .preface .qandaset .title, .appendix .qandaset
.title,
.bibliography .qandaset .title, .reference .qandaset .title,
.part .qandaset .title, .glossary .qandaset .title, .set .subtitle,
@@ -3073,14 +3068,12 @@
font-size: 22px;
}
- .sect2 .title, .single .sect2 .title, .sect1 .qandaset .title,
- .section .section .title, .single .section .section .title {
+ .sect2 .title, .single .sect2 .title, .sect1 .qandaset .title {
font-size: 20px;
}
.sect3 .title, .single .sect3 .title,
- .sect2 .qandaset .title, .refentry h2, h2, .indexdiv h3,
- .section .section .section .title, .single .section .section .section
.title {
+ .sect2 .qandaset .title, .refentry h2, h2, .indexdiv h3 {
font-size: 18px;
}
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/suse-xsl-stylesheets/daps2013/static/js/highlight.min.js
new/suse-xsl-stylesheets/daps2013/static/js/highlight.min.js
--- old/suse-xsl-stylesheets/daps2013/static/js/highlight.min.js
1970-01-01 01:00:00.000000000 +0100
+++ new/suse-xsl-stylesheets/daps2013/static/js/highlight.min.js
2016-09-20 13:21:27.000000000 +0200
@@ -0,0 +1 @@
+symbolic link to ../../../suse2013/static/js/highlight.min.js
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/suse-xsl-stylesheets/opensuse2013/static/css/higlight.css
new/suse-xsl-stylesheets/opensuse2013/static/css/higlight.css
--- old/suse-xsl-stylesheets/opensuse2013/static/css/higlight.css
1970-01-01 01:00:00.000000000 +0100
+++ new/suse-xsl-stylesheets/opensuse2013/static/css/higlight.css
2016-09-20 13:21:27.000000000 +0200
@@ -0,0 +1 @@
+symbolic link to ../../../suse2013/static/css/highlight.css
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/suse-xsl-stylesheets/opensuse2013/static/js/highlight.min.js
new/suse-xsl-stylesheets/opensuse2013/static/js/highlight.min.js
--- old/suse-xsl-stylesheets/opensuse2013/static/js/highlight.min.js
1970-01-01 01:00:00.000000000 +0100
+++ new/suse-xsl-stylesheets/opensuse2013/static/js/highlight.min.js
2016-09-20 13:21:27.000000000 +0200
@@ -0,0 +1 @@
+symbolic link to ../../../suse2013/static/js/highlight.min.js
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/suse/VERSION.xsl
new/suse-xsl-stylesheets/suse/VERSION.xsl
--- old/suse-xsl-stylesheets/suse/VERSION.xsl 1970-01-01 01:00:00.000000000
+0100
+++ new/suse-xsl-stylesheets/suse/VERSION.xsl 2016-09-20 13:21:27.000000000
+0200
@@ -0,0 +1 @@
+symbolic link to VERSION
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/suse2013/fo/admon.xsl
new/suse-xsl-stylesheets/suse2013/fo/admon.xsl
--- old/suse-xsl-stylesheets/suse2013/fo/admon.xsl 2016-08-04
20:28:49.000000000 +0200
+++ new/suse-xsl-stylesheets/suse2013/fo/admon.xsl 2016-09-15
17:02:26.000000000 +0200
@@ -98,7 +98,6 @@
<xsl:variable name="color">
<xsl:call-template name="admon.symbol.color"/>
</xsl:variable>
- <!-- <xsl:variable name="graphic.width" select="6.1"/> -->
<xsl:variable name="graphic.width" select="8"/>
<fo:block id="{$id}"
xsl:use-attribute-sets="graphical.admonition.properties">
@@ -107,7 +106,7 @@
provisional-label-separation="&gutter;mm">
<fo:list-item>
<fo:list-item-label end-indent="label-end()">
- <fo:block text-align="end" padding-before="1.2mm"
padding-after="1.2mm">
+ <fo:block text-align="start" padding-before="1.2mm"
padding-after="1.2mm">
<fo:instream-foreign-object content-width="{$graphic.width}mm">
<xsl:call-template name="admon.symbol">
<xsl:with-param name="color" select="$color"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/suse2013/fo/component.xsl
new/suse-xsl-stylesheets/suse2013/fo/component.xsl
--- old/suse-xsl-stylesheets/suse2013/fo/component.xsl 2016-08-04
20:28:49.000000000 +0200
+++ new/suse-xsl-stylesheets/suse2013/fo/component.xsl 2016-09-15
17:02:26.000000000 +0200
@@ -56,23 +56,6 @@
<xsl:apply-templates select="$node" mode="titleabbrev.markup"/>
</xsl:variable>
- <!-- Need to do that to have chapter/... names in the footer, too... -->
- <fo:marker marker-class-name="section.head.marker.short">
- <xsl:choose>
- <xsl:when test="titleabbrev = ''">
- <xsl:call-template name="shorten-section-markers">
- <xsl:with-param name="title" select="$title"/>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:call-template name="shorten-section-markers">
- <xsl:with-param name="title" select="$titleabbrev"/>
- </xsl:call-template>
- </xsl:otherwise>
- </xsl:choose>
- </fo:marker>
-
-
<fo:block xsl:use-attribute-sets="section.title.properties">
<xsl:if test="$pagewide != 0">
<!-- Doesn't work to use 'all' here since not a child of fo:flow -->
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/suse2013/fo/sections.xsl
new/suse-xsl-stylesheets/suse2013/fo/sections.xsl
--- old/suse-xsl-stylesheets/suse2013/fo/sections.xsl 2016-08-04
20:28:49.000000000 +0200
+++ new/suse-xsl-stylesheets/suse2013/fo/sections.xsl 2016-09-15
17:02:26.000000000 +0200
@@ -126,9 +126,6 @@
<fo:block xsl:use-attribute-sets="section.title.properties">
<xsl:if test="$marker != 0">
- <fo:marker marker-class-name="section.head.marker">
- <xsl:copy-of select="$marker.title"/>
- </fo:marker>
<fo:marker marker-class-name="section.head.marker.short">
<xsl:call-template name="shorten-section-markers">
<xsl:with-param name="title" select="$marker.title"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/suse2013/static/css/style.css
new/suse-xsl-stylesheets/suse2013/static/css/style.css
--- old/suse-xsl-stylesheets/suse2013/static/css/style.css 2016-08-04
20:28:49.000000000 +0200
+++ new/suse-xsl-stylesheets/suse2013/static/css/style.css 2016-09-15
17:02:26.000000000 +0200
@@ -1099,7 +1099,7 @@
border-top: 1px solid #999;
clear: both;
display: none;
- color: 666;
+ color: #666;
}
.offline .online-contents {
@@ -1320,7 +1320,6 @@
}
.sect1 .title, .single .sect1 .title,
-.section .title, .single .section .title,
.chapter .qandaset .title, .preface .qandaset .title, .appendix .qandaset
.title,
.bibliography .qandaset .title, .reference .qandaset .title,
.part .qandaset .title, .glossary .qandaset .title {
@@ -1330,16 +1329,14 @@
text-align: left;
}
-.sect2 .title, .single .sect2 .title, .sect1 .qandaset .title,
-.section .section .title, .single .section .section .title {
+.sect2 .title, .single .sect2 .title, .sect1 .qandaset .title {
font-size: 22px;
padding: 40px 0 0;
text-align: left;
}
.sect3 .title, .single .sect3 .title,
-.sect2 .qandaset .title, .refentry h2, h2, .indexdiv h3,
-.section .section .section .title, .single .section .section .section .title {
+.sect2 .qandaset .title, .refentry h2, h2, .indexdiv h3 {
font-size: 20px;
font-weight: normal;
padding: 33px 0 0;
@@ -1347,8 +1344,7 @@
}
.sect4 .title, .single .sect4 .title,
-.sect5 .title, .single .sect5 .title,
-.section .section .section .title, .single .section .section .section .title {
+.sect5 .title, .single .sect5 .title {
font-size: 16px;
padding: 53px 0 0;
margin: 0 0 -33px;
@@ -1358,12 +1354,12 @@
text-align: left;
}
-.sect4 .title, .section .section .section .section .title {
- font-weight: 600;
+.sect4 .title {
+ font-weight: 600 !important;
}
-.sect5 .title, .section .section .section .section .section .title {
- font-weight: normal;
+.sect5 .title {
+ font-weight: normal !important;
}
.legal-section p {
@@ -2301,7 +2297,7 @@
}
.qandadiv {
- margin: 0 0 40px 0;#
+ margin: 0 0 40px 0;
}
.answer .table-title, .answer .verbatim-wrap, .answer .variablelist {
@@ -2483,7 +2479,7 @@
}
@page {
- size: 100%;
+ size: portrait;
margin: 20mm 22.5mm 22.5mm 22.5mm;
}
@@ -3067,7 +3063,6 @@
}
.sect1 .title, .single .sect1 .title,
- .section .title, .single .section .title,
.chapter .qandaset .title, .preface .qandaset .title, .appendix .qandaset
.title,
.bibliography .qandaset .title, .reference .qandaset .title,
.part .qandaset .title, .glossary .qandaset .title, .set .subtitle,
@@ -3075,14 +3070,12 @@
font-size: 22px;
}
- .sect2 .title, .single .sect2 .title, .sect1 .qandaset .title,
- .section .section .title, .single .section .section .title {
+ .sect2 .title, .single .sect2 .title, .sect1 .qandaset .title {
font-size: 20px;
}
.sect3 .title, .single .sect3 .title,
- .sect2 .qandaset .title, .refentry h2, h2, .indexdiv h3,
- .section .section .section .title, .single .section .section .section
.title {
+ .sect2 .qandaset .title, .refentry h2, h2, .indexdiv h3 {
font-size: 18px;
}
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/suse2013/xhtml/docbook.xsl
new/suse-xsl-stylesheets/suse2013/xhtml/docbook.xsl
--- old/suse-xsl-stylesheets/suse2013/xhtml/docbook.xsl 2016-08-04
20:28:49.000000000 +0200
+++ new/suse-xsl-stylesheets/suse2013/xhtml/docbook.xsl 2016-09-15
17:02:26.000000000 +0200
@@ -626,15 +626,6 @@
<xsl:param name="node" select="."/>
<xsl:if test="$build.for.web = 1">
- <!-- Load fonts from the web:
- if (we are online) {
- if (Chrome/Android) {
- Use a CSS file without local() fonts, as
- Chrome/Chromium on Android do not understand local(). }
- else {
- Download the normal CSS that contains references to the web
- fonts. }
- -->
<script type="text/javascript">
<xsl:text disable-output-escaping="yes">
<![CDATA[
@@ -643,10 +634,7 @@
var agent = navigator.userAgent.toLowerCase();
var wanted = ( protocol == 'https:') ? 'https' : 'http';
var file = 'fonts.css';
- if (agent.indexOf('android') != -1 && agent.indexOf('chrom') != -1 ) {
- file = 'fonts-nolocal.css';
- }
- document.write('<link rel="stylesheet" type="text/css" href="' + wanted +
'://static.opensuse.org/fonts/'+ file +'"></link>');cd
+ document.write('<link rel="stylesheet" type="text/css" href="' + wanted +
'://static.opensuse.org/fonts/'+ file +'"></link>');
}
else {
document.write('<link rel="stylesheet" type="text/css"
href="static/css/fonts-onlylocal.css"></link>');
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/suse-xsl-stylesheets/suse2013/xhtml/param.xsl
new/suse-xsl-stylesheets/suse2013/xhtml/param.xsl
--- old/suse-xsl-stylesheets/suse2013/xhtml/param.xsl 2016-08-04
20:28:49.000000000 +0200
+++ new/suse-xsl-stylesheets/suse2013/xhtml/param.xsl 2016-09-15
17:02:26.000000000 +0200
@@ -127,7 +127,7 @@
<xsl:param name="html.stylesheet">
<xsl:if test="$build.for.web !=
1">static/css/fonts-onlylocal.css</xsl:if><xsl:text> </xsl:text>
<xsl:value-of select="$daps.header.css.standard"/><xsl:text> </xsl:text>
-<xsl:if test="$enable.source.highlighting = 1"><xsl:value-of
select="$daps.header.css.highlight"/></xsl:if>
+<xsl:if test="$enable.source.highlighting = 1"><xsl:value-of
select="$daps.header.css.highlight"/><xsl:text> </xsl:text></xsl:if>
<xsl:value-of select="$extra.css"/>
</xsl:param>
<xsl:param name="make.clean.html" select="1"/>
++++++ susexsl-fetch-source-git ++++++
--- /var/tmp/diff_new_pack.KCZv2T/_old 2016-09-20 13:21:28.000000000 +0200
+++ /var/tmp/diff_new_pack.KCZv2T/_new 2016-09-20 13:21:28.000000000 +0200
@@ -70,7 +70,10 @@
# Check for archive file name
#
if [[ -z $1 ]]; then
- exit_on_error "Please specify a URl for a suse-xsl release archive on
Github, e.g.\https://github.com/openSUSE/suse-xsl/archive/2.0-rc5.tar.gz"
+ exit_on_error "Please specify a URL for a suse-xsl release archive on
Github, e.g.\https://github.com/openSUSE/suse-xsl/archive/2.0-rc5.tar.gz.
Alternatively, use --tag [TAG_NAME]."
+elif [[ $1 = '--tag' ]] && [[ $2 ]]; then
+ ARCHIVE_URL="https://github.com/openSUSE/suse-xsl/archive/$2.tar.gz"
+ ARCHIVE_NAME="${ARCHIVE_URL##*/}"
else
ARCHIVE_URL="$1"
ARCHIVE_NAME="${ARCHIVE_URL##*/}"