Skip to content

Commit 830dc17

Browse files
committed
v.7.53.0
2 parents 68c42cc + 5644611 commit 830dc17

File tree

134 files changed

+39316
-22223
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+39316
-22223
lines changed

.github/workflows/test.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Stylesheets Tests
2+
3+
on:
4+
push:
5+
pull_request:
6+
branches: [ dev ]
7+
8+
# Allows you to run this workflow manually from the Actions tab
9+
workflow_dispatch:
10+
11+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
12+
jobs:
13+
test1:
14+
runs-on: ubuntu-latest
15+
container:
16+
image: ghcr.io/teic/jenkins:dev
17+
options: "--user root"
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
22+
- name: Run tests from the Test directory
23+
run: make clean test deb dist
24+
25+
- name: Slack Notification
26+
if: always()
27+
uses: rtCamp/action-slack-notify@v2
28+
env:
29+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
30+
SLACK_COLOR: ${{ job.status }}
31+
MSG_MINIMAL: commit,actions url
32+
33+
test2:
34+
runs-on: ubuntu-latest
35+
container:
36+
image: ghcr.io/teic/jenkins:dev
37+
options: "--user root"
38+
39+
steps:
40+
- uses: actions/checkout@v2
41+
42+
- name: Run tests from the Test2 directory
43+
run: make test2
44+
45+
- name: Slack Notification
46+
if: always()
47+
uses: rtCamp/action-slack-notify@v2
48+
env:
49+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
50+
SLACK_COLOR: ${{ job.status }}
51+
MSG_MINIMAL: commit,actions url

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ tei_msdescription.css
2020
teislides.css
2121

2222
Test/d3.v3.min.js
23+
lib/fop-*
2324

2425
*.processedodd
2526

ChangeLog

Lines changed: 219 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,222 @@
1+
2022-04-19 Raff Viglianti <raffaeleviglianti@gmail.com>
2+
3+
set to v.7.53.0
4+
5+
updated p5 subset
6+
7+
2022-04-18 Syd Bauman <sydb@users.noreply.github.com>
8+
9+
Merge pull request #542 from TEIC/sydb_issue_537
10+
Allow the `<ref>` elements to get processed:
11+
12+
2022-04-17 Hugh A. Cayless <philomousos@gmail.com>
13+
14+
Flag out-of-date Translations (#547)
15+
16+
2022-04-16 Peter Stadler <stadlerpeter@yahoo.fr>
17+
18+
add dedicated processing of links in specLists
19+
20+
2022-04-15 Peter Stadler <stadlerpeter@yahoo.fr>
21+
22+
Revert "Allow the `<ref>` elements to get processed:"
23+
This reverts commit 91ae8d75c10092ec206bb516eb27725e0c4b0ddb.
24+
25+
2022-04-05 Syd Bauman <s.bauman@northeastern.edu>
26+
27+
only whitespace fixes, no real changes
28+
29+
Fix namespace; see #546.
30+
31+
2022-03-25 Syd Bauman <s.bauman@northeastern.edu>
32+
33+
work on Stylesheets ticket #479
34+
35+
2022-03-23 Syd Bauman <s.bauman@northeastern.edu>
36+
37+
With @martinascholger update p5subset.
38+
39+
2022-02-18 martindholmes <mholmes@uvic.ca>
40+
41+
Updating Test results for new p5subset.xml.
42+
43+
Fix Test2 discrepancies due to updated p5subset.xml.
44+
45+
Updated p5subset.xml to eliminate possible complicating factor in handling https://github.com/TEIC/TEI/issues/2231.
46+
47+
2022-01-28 Syd Bauman <s.bauman@northeastern.edu>
48+
49+
Allow the `<ref>` elements to get processed: Stylesheets group, with big thanks to @hcayless, realized a) these things (contents of `<hi>` in intermediate Lite stage that contain the `<ref>`s that were not working) were being processed with `<value-of>`, not `<apply-templates>`; and b) furthermore, the templates for `<ref>` would have been processed if these templates for `<hi>` did not exist, and since all they were doing in 2 of 3 cases was adding boldface we did not like (and failing to process the `<ref>`s), we just nuked 2 of them and fixed the 3rd (which also adds the pointy brackets for element names).
50+
51+
2022-01-24 Helena Bermúdez Sabel <helena.b.sabel@gmail.com>
52+
53+
Merge pull request #540 from TEIC/updateP5subset
54+
Update p5subset
55+
56+
2022-01-19 Janelle Jenstad <jenstad@uvic.ca>
57+
58+
updated tests
59+
60+
update P5 subset
61+
62+
2022-01-10 Martin Holmes <mholmes@uvic.ca>
63+
64+
Merge pull request #536 from TEIC/issue-526-mdh-pdf-links
65+
Issue 526 mdh pdf links
66+
67+
2022-01-06 Syd Bauman <s.bauman@northeastern.edu>
68+
69+
Separate out test of type="class" from that of "dataype" and "macro", and prepend the destination with “TEI.”, thus allowing the link to work.
70+
71+
Fix an error, but it does not fix the problem
72+
73+
2022-01-03 martindholmes <mholmes@uvic.ca>
74+
75+
Remove debug comment.
76+
77+
2021-12-28 martindholmes <mholmes@uvic.ca>
78+
79+
Initial work to find the locus of the problem.
80+
81+
2021-12-24 Syd Bauman <s.bauman@neu.edu>
82+
83+
Ignorable whitespace changes EXCEPT also added a little info an informational message from the ant task
84+
85+
2021-12-16 Syd Bauman <s.bauman@northeastern.edu>
86+
87+
Fix #526: Stylesheets group met today. We tackled and seem to have fixed #526 by changing a single conditional in html_oddprocessing so that <ident> elements are processed as internal links when type=macro or type=datatype, too.
88+
89+
2021-12-07 Syd Bauman <s.bauman@northeastern.edu>
90+
91+
Update p5subset
92+
93+
2021-12-02 Peter Stadler <stadlerpeter@yahoo.fr>
94+
95+
tweak for absolute path references (item 4 of #495)
96+
Stylesheets group looked at #495 and changed two little things
97+
* reorder attributes to make it more readable (source->target)
98+
* use `$F` instead of `@url`: this addresses the issue with the broken absolute path references for `@facs` attributes
99+
100+
Co-Authored-By: Syd Bauman <sydb@users.noreply.github.com>
101+
Co-Authored-By: Elisa Beshero-Bondar <ebeshero@users.noreply.github.com>
102+
Co-Authored-By: Martina Scholger <martina.scholger@uni-graz.at>
103+
Co-Authored-By: MegJBrown <8483387+MegJBrown@users.noreply.github.com>
104+
Co-Authored-By: Raffaele Viglianti <144770+raffazizzi@users.noreply.github.com>
105+
Co-Authored-By: Hugh A. Cayless <philomousos@gmail.com>
106+
107+
2021-11-25 Helena Bermúdez Sabel <helena.b.sabel@gmail.com>
108+
109+
Merge pull request #531 from TEIC/issue-515-caption
110+
Issue #515: “Attribute” repeated in tagdoc
111+
112+
2021-11-25 helenasabel <helena.b.sabel@gmail.com>
113+
114+
updated of test15 - word “atributos” no longer appears, as expected
115+
116+
2021-11-25 martindholmes <mholmes@uvic.ca>
117+
118+
Working with @helenasabel, @sydb, @martinascholger and @nccole on issue #515: rewrote attribute listings output to suppress unwanted word.
119+
120+
2021-11-19 Hugh Cayless <philomousos@gmail.com>
121+
122+
Fixed bug in hyperlink rendering.
123+
124+
2021-11-15 Peter Stadler <stadlerpeter@yahoo.fr>
125+
126+
add slack notifications for Stylesheet tests
127+
128+
2021-11-05 Peter Stadler <stadlerpeter@yahoo.fr>
129+
130+
Merge pull request #466 from rvdb/docx-list-rend
131+
align list processing in docx2tei with GL prose: differentiate between list/@type and list/@rend
132+
133+
update badges
134+
135+
add GitHub action for testing
136+
137+
2021-11-04 Peter Stadler <stadlerpeter@yahoo.fr>
138+
139+
add downloaded FOP files to gitignore
140+
quoting from https://github.com/TEIC/Stylesheets/blob/2456660de90509af62603436b587b3d99d3c8c47/Test2/build.xml#L490: "We want to test FOP, but probably avoid exploding our repo …"
141+
142+
fix docx test in Test2
143+
144+
fix test-from-docx
145+
146+
fix test19
147+
148+
2021-11-02 Syd Bauman <s.bauman@northeastern.edu>
149+
150+
Fix #527.
151+
152+
2021-11-01 Syd Bauman <sydb@users.noreply.github.com>
153+
154+
Merge pull request #528 from TEIC/issue_511_markdown_images
155+
First pass at issue #511: graphics to markdown images.
156+
157+
2021-11-01 martindholmes <mholmes@uvic.ca>
158+
159+
Merge branch 'issue_511_markdown_images' of github.com:TEIC/Stylesheets into issue_511_markdown_images
160+
161+
Update tests for Markdown changes.
162+
163+
2021-11-01 Syd Bauman <s.bauman@northeastern.edu>
164+
165+
Catch-up the test files to the modified captions in the input file
166+
167+
More useful captions
168+
169+
2021-10-26 martindholmes <mholmes@uvic.ca>
170+
171+
More elegant code courtesy of @sydb.
172+
173+
Tested conversion; added colon for Kramdown syntax.
174+
175+
Reformulated XPath per @sydb. Still needs testing.
176+
177+
2021-10-21 martindholmes <mholmes@uvic.ca>
178+
179+
First pass at issue #511: graphics to markdown images.
180+
181+
2021-10-01 Peter Stadler <stadlerpeter@yahoo.fr>
182+
183+
Merge pull request #510 from TEIC/sydb_509_FPI_in_idno
184+
Look in <idno> as well as <altIdent> for module FPI
185+
186+
2021-09-09 Syd Bauman <s.bauman@northeastern.edu>
187+
188+
Add Test2/ to Makefile: Two new tarets, 'test2' and 'test2P'. The latter runs the tests in Test2/ in parallel, the former in series.
189+
190+
2021-09-05 Syd Bauman <sydb@users.noreply.github.com>
191+
192+
Merge pull request #499 from TEIC/iss487
193+
update html output declarations to modern XHTML5 #487
194+
195+
2021-09-05 helenasabel <helena.b.sabel@gmail.com>
196+
197+
updated Test2 expected-results (with minor change in build_utilities.xml
198+
199+
kept the same behaviour concerning CSS as in previous teitohtml5
200+
201+
added/modified comments following @sydb suggestions
202+
203+
update of expected results (fixed issues after merge)
204+
205+
fetching dev: merge conflicts in expected-results
206+
207+
2021-08-31 helenasabel <helena.b.sabel@gmail.com>
208+
209+
increase of release number
210+
211+
updated Test2 expected results
212+
213+
merged of released branch
214+
215+
update of expected results and P5subset
216+
217+
merge of release 7.52.0
218+
219+
update version number and changelog
1220
2021-08-29 Elisa Beshero-Bondar <ebeshero@users.noreply.github.com>
2221

3222
Merge pull request #522 from TEIC/P5subset

Documentation/xsltdoc.xsl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
<xd:cvsId>$Id$</xd:cvsId>
2727
<xd:copyright>2004, P&amp;P Software GmbH</xd:copyright>
2828
</xd:doc>
29-
<xsl:output name="xhtml" omit-xml-declaration="yes" method="xml" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" indent="no" encoding="iso-8859-1"/>
29+
<xsl:output name="xhtml" omit-xml-declaration="yes" method="xhtml" indent="no" encoding="UTF-8"
30+
html-version="5.0" normalization-form="NFC"/>
3031
<xsl:template match="/">
3132
<xsl:apply-templates>
3233
<xsl:with-param name="config" tunnel="yes" as="element()">

Makefile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,15 @@ teioo.jar:
103103

104104
test: clean build common names debversion
105105
@echo "BUILD Run tests. (Note: Test/Makefile sets its own DEFAULTSOURCE.)"
106-
(cd Test; make)
106+
(cd Test && make)
107+
108+
test2: clean build common names debversion
109+
@echo "BUILD Run new tests (“Test2”), in series"
110+
(cd Test2 && ant testSeries)
111+
112+
test2P: clean build common names debversion
113+
@echo "BUILD Run new tests (“Test2”), in parallel"
114+
(cd Test2 && ant test)
107115

108116
dist: clean release
109117
-rm -f tei-xsl-`cat VERSION`.zip

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Stylesheets
22

3-
[![Build Status](https://travis-ci.com/TEIC/Stylesheets.svg?branch=dev)](https://travis-ci.com/TEIC/Stylesheets)
3+
[![GitHub release](https://img.shields.io/github/release/TEIC/Stylesheets.svg)](https://github.com/TEIC/Stylesheets/releases)
4+
[![Stylesheets Tests](https://github.com/TEIC/Stylesheets/actions/workflows/test.yml/badge.svg)](https://github.com/TEIC/Stylesheets/actions/workflows/test.yml)
45

56
TEI XSL Stylesheets
67

0 commit comments

Comments
 (0)