-
Notifications
You must be signed in to change notification settings - Fork 10
/
ChangeLog
1069 lines (818 loc) · 37.1 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-------------------------------------------------------------------
Wed Aug 21 11:43:27 UTC 2024 - [email protected]
Update 2.94.8
- Convert variablelist into a HTML tab structure (#611)
- Use correct stylesheet version in Makefile
- Fix typo in json-ld-seriesname (Products, plural)
-------------------------------------------------------------------
Wed May 16 13:19:00 UTC 2024 - [email protected]
Update 2.94.7
- Corrected handling of dateModified & datePublished (#624, DOCTEAM-1367)
Also allow datePublished <= dateModified
- Fix some JSON-LD problems (#626)
- No JSON-LD was generated for SBP & TRD
- Simplify XPath for extracting revhistory
- Improve handling of SBP series (#624, #628)
- Improve handling of TRD series/partners (#627)
-------------------------------------------------------------------
Wed Mar 27 16:19:56 UTC 2024 - [email protected]
Update 2.94.6
- Fix JSON-LD generation for single & chunked HTML (#622)
- Metadata: Make checking for content more stable (#622)
- Check for $content != '' instead of just $content
- datePublished checks now ancestor nodes too to avoid distracting
warning message
- categories for DC Dublin Core
-------------------------------------------------------------------
Mon Mar 25 13:25:48 UTC 2024 - [email protected]
Update 2.94.5
Fix #617 JSON-LD: and put task and webpage both into "about" property
-------------------------------------------------------------------
Mon Mar 25 10:40:29 UTC 2024 - [email protected]
Update 2.94.4
- Add additional entries which creates pointers to all enabled formats (#612)
-------------------------------------------------------------------
Mon Mar 25 06:48:35 UTC 2024 - [email protected]
- Update 2.94.3
* Fix handling of external JSON-LD generation (#617)
Additionally, this commit changes:
* Add language into external JSON-LD filename
* Take into account rootid parameter for filename
* Enable JSON-LD structure for HTML by default
* Correct social media length (#615)
-------------------------------------------------------------------
Tue Mar 19 12:47:24 UTC 2024 - [email protected]
- Update 2.94.2
* Add abstract/para in article.titlepage.recto.auto.mode (SBPs) (#610)
* Correct include.ssi.{header,body,footer} params (#613)
* Introduce json-ld-base.dir parameter (#614)
* Correct social media length (#615)
-------------------------------------------------------------------
Fri Feb 16 16:26:56 UTC 2024 - [email protected]
- Update 2.94.1
Fix 3-column layout
-------------------------------------------------------------------
Fri Feb 16 13:38:12 UTC 2024 - [email protected]
- Update 2.94.0
Create external JSON-LD file
The structure is based on schema.org
Introduce new parameters:
* generate.json-ld.external (0=no, 1=yes)
Should a JSON-LD structure stored?
* json-ld-use-individual-authors (0=no, 1=yes)
Should the individual authors be used?
* json-ld.ext (default ".json)
The default extension of the JSON file
* json-ld-date-timezone (default "T00:00+02:00)
The default timezone for dates when no timezone is specified
* json-ld-fallback-author-name (default "SUSE Product & Solution
Documentation Team")
Default name of author when no <author> is specified
* json-ld-fallback-author-url (default: "https://documentation.suse.com")
Default URL for an author, when no <author> is specified
* json-ld-fallback-author-type (default "Corporation")
Default type of an author, when no <author> is specified
* json-ld-fallback-author-logo (default
"https://www.suse.com/assets/img/suse-white-logo-green.svg")
Default logo URL, when no <author> is specified
* json-ld-image-url (default $json-ld-fallback-author-logo)
Default image URL for a TechArticle
* stitchfile (str, default ='')
Absolute filename to the single stitch file that Docserv generates on startup
-------------------------------------------------------------------
Tue Nov 28 10:11:35 UTC 2023 - [email protected]
- Update 2.93.0
* Fix #597: Correct zh-cn/zh-tw for optional steps
* Fix #596: Correct runinhead.default.title.end.punct
* Fix #491: 2 column layout fix for single HTML
* Remove "compact" output in admons (#593)
* Add U+201C quotation mark (#588)
-------------------------------------------------------------------
Wed Nov 01 14:25:26 UTC 2023 - [email protected]
Update 2.92.9
- Set glossary.sort=1 to sort glossaries and glosslists (#582)
- Swap Twitter icon for X (partly fixes DOCTEAM#1134) (#583)
-------------------------------------------------------------------
Thu Oct 19 05:17:31 UTC 2023 - [email protected]
- Update to 2.92.8
* Process <revhistory> in book & article title pages (PR #578)
* Add missing "#" for footnote reference (#579)
* Process substeps/@performance='optional' (#517)
-------------------------------------------------------------------
Mon Sep 18 10:42:46 UTC 2023 - [email protected]
- Update 2.92.7
* Suse global header integration (#574)
* Update style.css - right-nav changes (#573)
-------------------------------------------------------------------
Thu Aug 15 16:04:00 UTC 2022 - [email protected]
- Update 2.92.6
- Fix SUSE header to avoid issues with new+old header code #571
-------------------------------------------------------------------
Thu Aug 15 16:04:00 UTC 2022 - [email protected]
- Update 2.92.5
- JSON-LD: Remove quotes in headlines & descriptions (#569)
- DOCTEAM-1018: Feedback from reported SLE 15 SP5 translations
- zh-tw: Change table-label and figure-label
- zh-cn: change startquote and endquote
- Qualtrics script correction (#568)
-------------------------------------------------------------------
Thu Aug 10 15:46:00 UTC 2022 - [email protected]
- Update 2.92.4
- Update Qualtrics JS script (#560)
- TRD/FO: Process `d:meta[@name="platform"]` in book (#566)
- XHTML: Trim text for twitter:* metadata (#565)
- Change param socialmedia.description.length=125 (83b4557)
-------------------------------------------------------------------
Thu Aug 03 09:10:00 UTC 2022 - [email protected]
- Update 2.92.3
- Introduce json-ld-use-individual-authors parameter
=> 0=don't use individual authors, use fallback author
1=use authors which are in <authorgroup> or <author>s
- Remove "role" property for authors
-------------------------------------------------------------------
Wed Aug 02 11:15:00 UTC 2022 - [email protected]
- Update 2.92.2
- Correct metadata
- Rename "abstract" -> "description" and refactor code
- Introduce "sameAs" property
- Disable json-ld-version and json-ld-keywords
- Use "Corporation" instead of "Organization" for default author and publisher
- JSON-LD: Rewrite author + authorgroup code
- Simplify code and create a two set approach
If no (author/editor/corpauthor/contributor)s or authorgroup is
found, fallback to a default corporation author
- Add new parameters:
- json-ld-fallback-author-name: The author's name
- json-ld-fallback-author-url: the author's URL
- json-ld-fallback-author-type: "Corporation" by default
(but can also be a "Person")
- json-ld-fallback-author-logo: the URL pointing to the logo
-------------------------------------------------------------------
Mon Jul 31 13:36:00 UTC 2022 - [email protected]
- Update 2.92.1
- Implement Qualtrics ratings #551:
* generate.qualtrics.div (default 0)
When this parameter is set to 1, the empty div
container is created.
* qualtrics.id (default "qualtrics_container")
The default id to reference in Qualtrics. Any
non-empty value will be used.
This parameter should normally not changed.
Keep in mind, only when $generate.qualtrics.div != 0
AND $qualtrics.id != '' are set that the empty <div> is
generated. This avoids a <div id=""> container.
- Improve Qualtrics implementation #556:
* Add qualtrics-feedback.js parameter
* Add the file "qualtrics-feedback.js".
* ATM, if generate.qualtrics.div != 0 and qualtrics-feedback.js == '', we fallback to a hardcoded
implementation.
TODO: remove it once the file implementation is stable
* If the file needs to be customized, this should be the content:
<html xmlns="http://www.w3.org/1999/xhtml">
<!--BEGIN QUALTRICS WEBSITE FEEDBACK SNIPPET-->
<script type='text/javascript'><![CDATA[... add your content here ...]]></script>
<div id='ZN_8qZUmklKYbBqAYe'><!--DO NOT REMOVE-CONTENTS PLACED HERE--></div>
<!--END WEBSITE FEEDBACK SNIPPET-->
</html>
-------------------------------------------------------------------
Wed Jul 26 16:57:00 UTC 2022 - [email protected]
- Update 2.92.0
- Add #552: Implement first attempt of JSON-LD (DOCTEAM-1061)
- Fix #524: Add footnote template in mode="xref-to"
- Fix #554: "Request for a label of unexpected element"
- Fix #550: Add missing xsl:attribute to create "lang" attribute
- Add #548: Add support for <phrase role="style:...">
-------------------------------------------------------------------
Fri May 12 08:56:00 UTC 2022 - [email protected]
- Update 2.91.2
- Use search.description.length and search.title.length
- Correct copy-and-paste error for "twitter:*":
Use <meta name="..."> instead of <meta property="...">
-------------------------------------------------------------------
Mon May 09 13:25:00 UTC 2022 - [email protected]
- Update 2.91.1
- Improve social media (Twitter OpenGraph) #544
-------------------------------------------------------------------
Mon May 08 15:25:00 UTC 2022 - [email protected]
- Update 2.91.0
- DOCTEAM-633: Preparing SUSE header changes (#531)
- Include XML files into GitHub statistics
- Metadata for HTML (#542)
-------------------------------------------------------------------
Tue Apr 18 11:02:00 UTC 2022 - [email protected]
- Update 2.90.0
- Correct SUSE logo in suse2022-ns/fo/logo.xsl
-------------------------------------------------------------------
Thu Mar 02 15:40:00 UTC 2022 - [email protected]
- 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 - [email protected]
- Update 2.88.3
- Fix #525: typo in URL to upstream DB stylesheet
- Fix #526: book titlepage for TRD stylesheets
- Fix #527: make more space for cover icons (TRD/SBP)
- Fix #529: Support "return" key for keycaps
-------------------------------------------------------------------
Mon Dec 12 22:28:00 UTC 2022 - [email protected]
- Update 2.88.2
- Fix #521: SBP(FO): don't hyphenate title & subtitle
- #522: SBP(FO): Small cleanup
-------------------------------------------------------------------
Mon Dec 12 16:10:00 UTC 2022 - [email protected]
- Update 2.88.1
Only a bugfix release. In the SBP stylesheets for FO, the
article titlepage wasn't really imported.
-------------------------------------------------------------------
Fri Dec 09 14:10:00 UTC 2022 - [email protected]
- Update 2.88.0
Changes for both formats:
- Base TRD stylesheets on SBP
- Supports affiliation/jobtitle and affiliation/orgname in author,
editor, and othercredit. Distinguish between a personname and an
orgname
- Detects meta[@name='series'] and meta[@name='type'].
Still possible to use meta[@name='platform']
- For SBP, we use <meta name="category">, but TRD needs
<meta name="type">
* FO output
- Use jungle color for productname and add space
- Change article titlepage for FO
- upper right shows seris and type
- title, optional subtitle, and SVG separator
- Platforms and authors (first authors, then editors and
othercredits)
- Shows max 5 company logos from right to left
- Don't hyphenate titles
- Shows title and subtitle on page 2
- Shows date(s)
- Shows abstract(s)
* HTML output
- Change article titlepage for XHTML
- Starts with productname
- Shows title & subtitle followed by d:meta[@name='series'] and
d:meta[@name='type']. Don't hyphenate titles
- Shows authors and contributors
- Shows optional company logos
- Shows date(s)
- Shows abstract(s)
* SBP: Introduce titlepage.logo.image
-------------------------------------------------------------------
Mon Nov 28 16:21:00 UTC 2022 - [email protected]
- Update 2.87.1
- SBP: Add missing VERSION/VERSION.xsl
- Add missing sbp directory in Makefile
- Fix typo of --precision option
- Fix #513: Correct SBP stylesheets
- Fix broken PDF generation in `fo:block-container`
- Add date and localized date key to FO/XHTML
- Fix author alignment in XHTML
- SBP(FO,XHTML): Group author elements
- Group author, editor, and othercredit into an authorgroup
and apply the authorgroup template (use exsl:node-set() function)
- Make article.titlepage.recto the last template
-------------------------------------------------------------------
Mon Nov 21 13:45:00 UTC 2022 - [email protected]
- Update 2.87.0
- Fix #505: Add CJK fonts NotoSans
- Fix #507: Create SBP stylesheets
- Fix #508: For de, change "Prozedur" -> "Vorgehen"
-------------------------------------------------------------------
Fri Oct 28 08:11:00 UTC 2022 - [email protected]
- Update 2.86.5
- Related to #493/DOCTEAM-732: Fixed several layout issues
- subtitle overlaps with title
- book title misses report bug/edit source icons
- article titles: report bug link leads to empty title ""
in Bugzilla
-------------------------------------------------------------------
Tue Oct 25 13:45:00 UTC 2022 - [email protected]
- Update 2.86.4
- Fix #472: Include SVG icons for "Report doc bug" and "Edit source"
- Fix #499: Use abbreviated productname in `<title>` tag (DOCTEAM-781)
- Fix #493, #490: "Report bug" links are gone from all doc HTML pages
(DOCTEAM-732)
- Fix #413: issues in l10n for French
-------------------------------------------------------------------
Wed Oct 12 12:10:00 UTC 2022 - [email protected]
- Update 2.86.3
- Fix DOCTEAM-721: Add quote characters for zh_TW (5df1237)
- Fix #DOCTEAM-778: Adjust HTML headings (SEO) (#498)
-------------------------------------------------------------------
Tue Sep 08 13:50:00 UTC 2022 - [email protected]
- Update 2.86.2
- Fix another problem with report bug links (#493)
-------------------------------------------------------------------
Tue Sep 07 13:50:00 UTC 2022 - [email protected]
- Update 2.86.1
- Use new jQuery syntax (report bug links) (#493)
- Add missing elements to h1-fix (#484)
-------------------------------------------------------------------
Tue Aug 02 13:42:00 UTC 2022 - [email protected]
- Update 2.86.0
- Update jQuery to 1.12.4 (#485)
- Add new section "creating a new release" in README
- Fix again color issue (#486)
-------------------------------------------------------------------
Mon Aug 01 17:07:00 UTC 2022 - [email protected]
- Update 2.85.2
Fix single h1 issue in HTML
Make to cause chapter titles to use a single <h1>
element in HTML output.
-------------------------------------------------------------------
Fri Jul 29 09:10:00 UTC 2022 - [email protected]
- Update 2.85.1
- Fix #453: colors in <phrase role="color:..."> works now
- update README
-------------------------------------------------------------------
Tue Jul 26 15:08:00 UTC 2022 - [email protected]
- Update to 2.85.0
- Fix #479: Typo fix in parameter qnumber -> number
- Fix #478: reduce length count for socialmedia and search description
to 150
- Fix #474: Support alt/title attributes in images
- Fix #455: Add missing strings for HTML output
- Fix #286: Rudimentary style <result> element
-------------------------------------------------------------------
Fri Jul 08 11:50:00 UTC 2022 - [email protected]
- Update to 2.84.1
- Fix #454: Implement color for phrase/para
- Fix #470: Make "Report bug" links attached to titles
-------------------------------------------------------------------
Fri Jul 08 09:05:00 UTC 2022 - [email protected]
- Update to 2.84.0:
- Fix #96: Remove SUSE address
- Fix #458: figure-label for fr-fr: remove stray letter "t"
- Fix #458: Add missing datetime format for zh_*
- Fix #465: Replace old SUSE logo for suse2013
- Fix #463: Use correct inline color for screen
- Add README for SUSE's SASS customization
-------------------------------------------------------------------
Wed Mar 30 17:02:00 UTC 2022 - [email protected]
- Update to 2.83.1:
Fix publication date on title page
-------------------------------------------------------------------
Thu Feb 21 13:37:00 UTC 2022 - [email protected]
Beta release of the SUSE XSL stylesheets 2.83.0:
https://github.com/openSUSE/suse-xsl/releases/tag/2.83.0
- PDF/HTML
- A variety of small, but important bug fixes for SUSE 2022
stylesheets, including a PDF build breaker
-------------------------------------------------------------------
Thu Feb 17 13:37:00 UTC 2020 - [email protected]
Beta release of the SUSE XSL stylesheets 2.82.0:
https://github.com/openSUSE/suse-xsl/releases/tag/2.82.0
- PDF/HTML
- Added first version of SUSE 2022 stylesheets (three-column,
HTML5)
- Minor updates to SUSE 2021 stylesheets
-------------------------------------------------------------------
Thu May 4 13:37:00 UTC 2020 - [email protected]
Beta release of the SUSE XSL stylesheets 2.81.0:
https://github.com/openSUSE/suse-xsl/releases/tag/2.81.0
- PDF/HTML
- Added first version of SUSE 2021 stylesheets
- HTML:
- SUSE 2013: Avoid interference between "Copy code" buttons and
highlight.js
- PDF:
- SUSE 2013: List sect1 within PDF ToCs
-------------------------------------------------------------------
Thu May 20 13:37:00 UTC 2020 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.17:
https://github.com/openSUSE/suse-xsl/releases/tag/2.0.17
- HTML:
- Fix recursion issue that broke builds of certain long
documents because we evaluated far too much content for
teaser texts
- Get fonts CSS via HTTPS by default
- Other:
- Fix release version insertion in Makefile
-------------------------------------------------------------------
Thu May 14 13:37:00 UTC 2020 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.16:
https://github.com/openSUSE/suse-xsl/releases/tag/2.0.16
- General:
- Use consistent question label in `qandaentry`s (bsc#1162324)
- HTML:
- Allow copying content of screens to the clipboard
- Support for issue templates in report-bug links
- Share buttons: Use LinkedIn instead of Google+, use oldschool
"mailto:" link instead of e-mail form on suse.com
- Fix issues where we got duplicate section/chapter IDs in HTML
output (#269)
- Add permalinks to more output elements (such as chapters)
- Add og:... tags to HTML pages, for improved social sharing
- Allow including external JS with new parameters external.js (always
include) and external.js.onlineonly (only include when on
non-"file:" URL)
- Stop relying on negative margins in CSS that were causing overlaid
elements and other ugly experience issue
- Fix closing behavior of mobile menu
- Minor CSS improvements
- Update SUSE footer link URLs
- Open clicked images in new tab/window by default
- Stop adding "Abstract" titles over abstracts
- PDF:
- Fix layout regressions that occurred after libxml bug fixes:
admon titles, book titles, imprint text (#369)
- Change imprint address to SUSE LLC Provo
- Other:
- Repo cleanup
- Makefile simplifications
- Set up .gitattributes for packaging
-------------------------------------------------------------------
Fri Nov 22 16:09:00 UTC 2019 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.15:
https://github.com/openSUSE/suse-xsl/releases/tag/2.0.15
General:
* Update architecture names to current nomenclature
HTML + PDF:
* Fix old documentation link www.suse.com/documentation
and replace it with https://documentation.suse.com/
(#402)
* Disable intra-xrefs
If we point to another book AND we have an @xrefstyle
-> output the same text content as the original xref
template but remove the link(#398)
-------------------------------------------------------------------
Fri Aug 29 13:37:00 UTC 2019 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.14:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
HTML only:
* Improve text of Report Bug links
* Support inserting <link rel=canonical> via XSLT parameter
$canonical-url-base=https://some.example.org/doc
-------------------------------------------------------------------
Wed Nov 23 13:37:00 UTC 2018 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.13:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
HTML only:
* Add bypass blocks for accessibility (FATE#326549)
* Bug Report links: Added section names to Bugzilla bug title
* openSUSE2013 only: Fixed highlighting
PDF only:
* Fixed XML issue in XEP formatter configuration
PDF/HTML:
* Use reproducibly generated IDs (gh#openSUSE/daps#482)
* Don't try to use no-break space in Korean, our Korean fonts do
not support that
* Update Italian, Japanese, Arabic localizations
-------------------------------------------------------------------
Wed Jun 13 13:37:00 UTC 2018 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.12:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
HTML only:
* Add "Edit Source" link feature to draft mode documents
PDF/HTML:
* Fix "infinite" recursion issue in splitscreen template
-------------------------------------------------------------------
Mon Jun 11 13:37:00 UTC 2018 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.11:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
HTML only:
* Fix label code for "Report Bug" links leading to GitHub
PDF/HTML:
* Fix display of glosslists
-------------------------------------------------------------------
Mon Apr 16 13:37:00 UTC 2018 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.10:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
HTML only:
* Treat simpara in listitem like para in listitem
* Allow "Draft" watermark to shine through again
-------------------------------------------------------------------
Thu Feb 14 15:27:00 UTC 2018 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.9:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
HTML only:
* Bug tracker PIs are now allowed in the info element which means they can now
be profiled properly
* Update GitHub issues URL syntax to properly apply labels again
PDF/HTML:
* Support for intra xrefs to "section" and "sect5" elements
Packaging:
* Exclude env/ and *.tmp files from TAR ball
* Remove dependencies on liberation2-fonts and aspell
* Remove SUSE dictionary from this package: It does not belong here
Test cases:
* Markup fixes for dapscompare tests
* Use correct SCHEMA for dapscompare tests
-------------------------------------------------------------------
Thu Sep 28 09:45:00 UTC 2017 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.8:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
PDF only:
* Support footnotes, requested by Stefan Quandt
(suse-xsl #313, suse-xsl #314)
* No colons after type/number in languages other than English
(suse-xsl #334)
HTML only:
* Glossdiv Title: rendered in gray instead of green
(suse-xsl #350)
PDF/HTML:
* No more spaces at the end of titles in formalparas
(suse-xsl #288)
* Intra xref to step doesn't work (suse-xsl #343)
I18N:
* ja: don't generate the word "book" in intra-xrefs (suse-xsl #323)
* Correct German quotes (suse-xsl #324, suse-xsl #340)
* glossseealso: "See Also" -> "See also" (suse-xsl #330)
General:
* Exclude drupal and db2mediawiki stylesheets as they are now
obsolete (suse-xsl #310, suse-xsl #312)
* Check length of text content in screen (suse-xsl #328)
* Validate stylesheets through Jing in Travis (suse-xsl #327,
suse-xsl #337, suse-xsl #342)
Spec File:
* Use catalog.d mechanism and remove old XML catalog files, see
https://en.opensuse.org/openSUSE:Packaging_XML_Schemas_and_Stylesheets#Add_XML_Catalog_Support
-------------------------------------------------------------------
Thu May 11 17:00:00 UTC 2017 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.7.2:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
* SUSE Word List for aspell
- Removed duplicate and invalid words
* Stylesheets (common)
- Add a compact style for admonitions, enabled by role="compact" attribute
(suse-xsl #211)
* Stylesheets (HTML)
- Fix superscript/subscript styles
-------------------------------------------------------------------
Thu Feb 08 19:00:00 UTC 2017 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.7.1:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
* Packaging
- On non-SLE platforms, require liberation2-fonts instead of
liberation-fonts (suse-xsl #298)
* SUSE Word List for aspell
- Added more words from the SUSE Enterprise Storage and
SUSE OpenStack Cloud documentation, removed duplicates
* Stylesheets (common)
- Fix zh_TW of "Procedure" in certain circumstances (further to
suse-xsl #292)
-------------------------------------------------------------------
Thu Jan 27 17:00:00 UTC 2017 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.7:
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)
- Translation fixes for zh_CN, zh_TW (suse-xsl #292)
- Support of performance="optional" in step (suse-xsl #245)
- Do not output empty paras (suse-xsl #270)
- Make links and xrefs within remarks readable (suse-xsl #266)
* Stylesheets (PDF)
- Make sure procedures appear in qandasets (re: suse-xsl #200)
- Color commands in screens green for consistency with HTML version
(suse-xsl #216)
- Remove hyphenations from ToC and titles (suse-xsl #253)
- Use text scaling capabilities for all text
- Use sans font for intra-xrefs
* Stylesheets (XHTML)
- Old "suse" stylesheets: fix breadcrumbs
- Add a caution icon to HTML
-------------------------------------------------------------------
Thu Sep 30 14:00:00 UTC 2016 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.6.3:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
* Packaging
- Update post/postun segments of spec file to install the catalog
* Catalog
- Remove mentions of NovDoc, as NovDoc is now part of a separate
package
* Stylesheets (common)
- Updated translations for `suse2013` stylesheets
-------------------------------------------------------------------
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:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
* Stylesheets (XHTML)
- Fixed style of <section><title> elements
- Turned off syntax highlighting in cases where it is unexpected
-------------------------------------------------------------------
Mon Aug 01 16:00:00 UTC 2016 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.6:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
* Schema
- Completely removed schemas from SUSE XSL Stylesheets: Schemas
can now be found at https://github.com/openSUSE/geekodoc
* SUSE Word List for aspell
- Added more words, many of which were found in SUSE release
notes
* Stylesheets (PDF)
- Allow disabling secondary branding (Geeko Tail) via parameter:
enable.secondary.branding=0
* Stylesheets (XHTML)
- Added syntax highlighting for screens
- To enable, add language="..." to your screen
- Recognized languages are: bash, c++, css, diff, html, xml,
http, ini, json, java, javascript, makefile, nginx, php,
perl, python, ruby, sql, crmsh, dockerfile, lisp, yaml
- Report Bug Links: Fixed ampersands in Bugzilla URLs
- Report Bug Links: Fixed JavaScript responsible for GitHub labels
* Common Stylesheet Changes
- Fixed a number of L10N issues in CJK and European languages
(suse-xsl #218, suse-xsl #51, suse-xsl #200, suse-xsl #82,
suse-xsl #87, suse-xsl #79)
- Reverted back to VERSION.xsl as used by upstream for
compatibility
- Improved screen trimming behavior to fix screens that contain
whitespace at beginning and end
* Packaging
- Added more fonts to requires to avoid broken foreign-language
PDF builds in the build service
- Removed mentions of schemas from spec file (see top)
-------------------------------------------------------------------
Fri Apr 22 09:00:00 UTC 2016 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.5:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
* Schema
- Add flat SUSEDoc schema for RNC and RNG
- Fix NovDoc/DB4 incompatibility: Phrase is only allowed in
productname, but not in productnumber
* Spelling
- Fix trailing whitespace
* Stylesheets (PDF)
- Added missing procedure, itemizedlist, and orderedlist for
intra.title.markup mode (suse-xsl #162, ec0cb3d6)
- Fix Ulink/Link template for DB 5
- Specifically check for @role='abbrev'
- Fix for vertical spaces on nested lists (#221)
- Question and answers
- Make an answer closer to a question
- Make consistent use of sans-stack for questions
- Use all paras in question consistently
- Italic for question label and first para (#200)
- Clean up web links
- Specifically check for @role='abbrev'
- Fix Ulink/Link template for DB 5
* Stylesheets (XHTML)
- Add GitHub URL in titlepage of book and article (suse-xsl #35)
- Fix functionality of "dm:version"
- xref handling
- Improve xref and is.xref.in.samebook template
- Fix xref resolution when $rootid is empty
- Implement vcs.url to fix, remove add.github.url and
bibliosource (suse-xsl #35)
- add actual book title to HTML pages again (suse-xsl #208)
- Fix formatting for intraxref (provides final fix suse-xsl #162)
* Stylesheets (EPUB)
- Build EPUBs by default without comments
* Common Stylesheet Changes
- allow intra xref linking for tables, figures, admons (suse-xsl #155)
- Added missing procedure, itemizedlist, and orderedlist for
intra.title.markup mode (suse-xsl #162)
* Packaging
- Update Requires/Recommends (also fixes suse-xsl #220)
- suse_beta => suse2013
- Improve package description in Spec file
-------------------------------------------------------------------
Tue Dec 02 13:41:00 UTC 2015 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.4:
Find issues in our GitHub tracker at
https://github.com/openSUSE/suse-xsl/issues/NUMBER
* Schema
- Allow constant and see (inside `<indexterm>`); make db.all.blocks
zero or more (*) for question (fbebfb6)
- Remove XLinks from DB5 elements (suse-xsl #99)
- Disallow db.all.blocks in lists (suse-xsl #100)
- Remove `<menuchoice>` from guiinlines (Novdoc) (a049b85)
- Allow `<menuchoice>` in titles (Novdoc) (975b8d6)
* Stylesheets (PDF)
- "unbolded" admonition titles (suse-xsl #46)
- Odd space in footer where `<productname>` used to be,
`<productname>` not displayed on book title page (suse-xsl #50)
- Fix style of `<sect5>` titles (suse-xsl #52, bsc#955663)
- FOP don't like empty `<fo:table-cell>`s (suse-xsl #97)
- Make `<remark>` handling a little more elegant
- Attribute sets: fix logic for replacing bold/italic in CJK
languages
* Stylesheets (XHTML)
- Make Callouts "uncopyable" (suse-xsl #55)
- Don't link inline images (suse-xsl #65)
- Publication date is incorrectly capitalized (suse-xsl #70)
- Create better plain-text output via DAPS (suse-xsl #101)
- debug.filename-id: Use `xml:id` for metadata
- Various fixes for JS code for tracker
* Common Stylesheet Changes
- Style for `<package>` (issue #49)
- xrefs to variablelists in another book is broken (suse-xsl #73)
- Trim spaces/newlines at beginning/end of verbatim elements
(suse-xsl #53)
- Fix bugtracker for db4 (suse-xsl #102)
-------------------------------------------------------------------
Tue Aug 11 15:11:52 UTC 2015 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.3 (only for OBS):
- Schema:
. Fixed #41: Missing prompt element
- Stylesheets:
. Fixed #18: Variablelist (with ID and Title) Lacks Permalink
. Fixed #31: not declared namespace prefix d
. Fixed #36: Fix Hard-Coded Bugzilla Link ("Report Bug")
- Infrastructure:
. no changes
-------------------------------------------------------------------
Tue Jul 02 09:11:00 UTC 2015 - [email protected]
Stable release of the SUSE XSL stylesheets 2.0.1
- Schema
. Enabled subtitle and textobject (susedoc5.rnc)
- Stylesheets
. Changed bugzilla component to 'Documentation' for SLERT
(suse2013/static/js/script.js)
. Added missing subtitle for articles
suse2013/fo/article.titlepage.templates.xsl
- Infrastructure
. Trying to fix an undef value error (bin/xslns-build)