forked from TEIC/Stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2466 lines (1339 loc) · 80.6 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
2023-04-04 Syd Bauman <[email protected]>
update p5subset before release (and update tests to match, after checking 'em)
2023-04-01 Joey Takeda <[email protected]>
Merge pull request #591 from TEIC/sydb_test_for_attr_val_quantification
test minOccurs= and maxOccurs= on datatype element
2023-03-30 Syd Bauman <[email protected]>
Change instances to match changes just made to ODD
2023-03-30 Helena Bermúdez Sabel <[email protected]>
Merge pull request #588 from rvdb/jtei-fixODTidenticalAuthors
aligned processing of bibl items with identical author(s) with common…
2023-03-30 Syd Bauman <[email protected]>
Per request @peterstadler (at Stylesheets meeting) add additional tests
2023-03-30 Elisa Beshero-Bondar <[email protected]>
Merge pull request #599 from TEIC/issue-553
update HTML output declaration to indent="no"
2023-03-30 Syd Bauman <[email protected]>
Grab latest from dev
2023-03-30 Helena Bermúdez Sabel <[email protected]>
Merge pull request #601 from TEIC/issue-561
explicitly process nested attList
2023-03-30 Peter Stadler <[email protected]>
explicitly process nested attList
2023-03-23 Peter Stadler <[email protected]>
whitespace fixes due to indentation changes
whitespace fixes due to indentation changes
update HTML output declaration to prevent indenting
2023-03-21 martindholmes <[email protected]>
Fix typo: angle bracket should be close parenthesis.
2023-02-03 Syd Bauman <[email protected]>
With @trishaoconnor update p5subset.xml to current, and a few expected results to match.
2023-01-26 Syd Bauman <[email protected]>
Helena Bermúdez Sabel <[email protected]>
XLSX→TEI drops empty cells, the PR (#587)
* Impliment (my interpretation of) @GVogeler’s suggestion on ticket #323
* Change the changelog? Not I.
2023-01-11 rvdb <[email protected]>
removed commented out stubs for FODT processing
2023-01-09 rvdb <[email protected]>
commented out unused extension function
2023-01-06 helenasabel <[email protected]>
update of p5subset
2023-01-05 Syd Bauman <[email protected]>
Add a new Test2/ ODD input file, valid instance, and invalid instance to stress-test validation of the number of occurences of a datatype in an attr value (fallout from #557 and #589).
2023-01-05 Joey Takeda <[email protected]>
Merge pull request #585 from TEIC/fix-419
Processing attRefs for attribute list on element spec pages. Fixes #419
2023-01-05 Helena Bermúdez Sabel <[email protected]>
Merge pull request #589 from TEIC/fix-557
Fix for attdef to relaxng (issue #557)
2022-12-14 raffazizzi <[email protected]>
fixed missing space
Merge branch 'dev' into fix-419
Added case for processing attributes with mixoccur 0 and maxoccur 1 and optional in rng. Fixes #557
2022-12-12 rvdb <[email protected]>
aligned processing of bibl items with identical author(s) with common code in jtei.common.xsl
This fixes erroneous "----,." output in ODT, for subsequent bibliographic entries with multiple identical authors. After this fix, the output is "----." (without the comma).
2022-12-06 Peter Stadler <[email protected]>
update GitHub actions
Node.js 12 actions are deprecated and update to Node.js 16 recommended.
2022-12-01 Syd Bauman <[email protected]>
Address #329
2022-10-27 Syd Bauman <[email protected]>
description of cssInlineFiles: With Stylesheets group, expand description of cssInlineFiles to advise from where a relative path is considered, per #538.
2022-10-27 raffazizzi <[email protected]>
Processing attRefs for attribute list on element spec pages. Fixes #419
2022-10-25 Peter Stadler <[email protected]>
bump version number after release
merging back current released into dev
Merge branch 'release-7.54.0' into released
Merge branch 'dev' into release-7.54.0
update expected results
after pulling in "Dead iso cat" https://github.com/TEIC/TEI/pull/2359
adjust version number for upcoming release 7.54.0
2022-10-24 Peter Stadler <[email protected]>
Merge pull request #583 from TEIC/update-p5subset
Update p5subset
incorporate recent changes from https://github.com/TEIC/TEI/pull/2342
2022-10-21 Peter Stadler <[email protected]>
update expected results from Test2
update p5subset and expected results
Merge pull request #577 from dmj/t/fix-382-testcase
Add testcase for #382 and PR #475
add testfile to tests
fix expected results
Merge branch 'dev' into pr/577
Merge pull request #475 from dmj/dev
Don't use content of tei:index in tei:head
Merge pull request #549 from TEIC/issue-140-except
Test @include and @except
2022-10-14 Syd Bauman <[email protected]>
Per #529, change prefix: (#532)
Change generated prefix for ISO Schematron namespace from 's:' to 'sch:'; correspondingly,
change generated prefix for Schematron 1.x namespace from 'sch:' to 'sch_1.x:'.
2022-09-30 Syd Bauman <[email protected]>
Add comment; whitespace changes.
Tweak for readability: With Stylesheets group yesterday (2022-09-29), use the already defined variable 'pagetitle' rather than repeating the 5 lines of code used to define that variable in 2 places where that information is used. This change passes all tests in Test/ and Test2/, and a complete Guidelines build (targets: clean, validate, html-web, test, exemplars, teiwebsiteguidelines, pdf, and epub).
2022-09-29 helenasabel <[email protected]>
update of expected results after last changes
addressed @sydb comments
2022-09-29 Syd Bauman <[email protected]>
Fix #479: We (Stylesheets group) inserted the U+FE0E character immediately after the anchor so it won’t show up as an emoji. We also made it a variable so it only has to be changed once, if it ever gets changed again. :-)
2022-09-27 David Maus <[email protected]>
Add testcase for #382 and PR #475
2022-09-23 Peter Stadler <[email protected]>
Merge pull request #575 from rvdb/jTEI-fixObjectEgxml
added workaround for a Lodel bug that distorts the string "</?obje…
2022-09-21 rvdb <[email protected]>
added workaround for a Lodel bug that distorts the string "</?object" in HTML rendering of jTEI articles
2022-09-15 Peter Stadler <[email protected]>
Merge pull request #559 from rvdb/jTEI-fix-citRef
fix processing of cit/ref for citations with paragraph-splitting content
2022-09-15 rvdb <[email protected]>
fix processing of cit/ref for citations with paragraph-splitting content
2022-09-15 Peter Stadler <[email protected]>
Merge pull request #573 from rettinghaus/patch-1
Beautify message by remove whitespace
2022-09-15 Klaus Rettinghaus <[email protected]>
remove whitespace in message
2022-09-15 Peter Stadler <[email protected]>
Merge pull request #558 from rvdb/jTEI-fix-nestedListNumbering
only increment multi-level numbering for directly nesting ordered lists
2022-08-29 martindholmes <[email protected]>
Fix expected results.
2022-08-29 Elli Bleeker <[email protected]>
updated elided text and elided XML in several Stylesheet files
2022-08-12 Peter Stadler <[email protected]>
add mode "xref" to text-template (#566)
this fixes #565 by applying the text template and its `tei:escapeChars` function to the computed link text of pointers which are processed in the "xref" mode
2022-07-30 Syd Bauman <[email protected]>
Update p5subset to latest from https://jenkins.tei-c.org/job/TEIP5-dev/lastSuccessfulBuild/artifact/P5/release/xml/tei/odd/p5subset.xml
2022-07-22 Martina Scholger <[email protected]>
Merge pull request #545 from TEIC/issue-541
Issue 541: fix bug when processing <constraintSpec>
2022-07-22 Peter Stadler <[email protected]>
Merge pull request #477 from dmj/t/fix-476-c
Gracefully fail if target if @facs does not exist
Merge pull request #432 from sanskrit-coders/dev
TEI to markdown improvements.
2022-07-22 helenasabel <[email protected]>
update of expected results
2022-07-19 Helena Bermúdez Sabel <[email protected]>
Merge branch 'dev' into issue-140-except
2022-07-16 Joey Takeda <[email protected]>
Addressing `@preserveOrder` for #241 (#507)
* Work on #241
* Copy over the context attributes (except (min|max)Occurs) in odd2odd-simplifyODD in order to retain attributes (like preserveOrder) declared on the source element
* Adding tests for preserveOrder (#241)
* In inputFiles/testPure1.odd: Constrain choice such that it must contain one of:
** abbr and expan
** expan and abbr
** corr and sic
** orig and reg
* Adding tests to both validInstance and invalidInstances for testPure1
* Updating the RNG and the RNG output files
* Fixes as requested by @sydb in PR #507
* Fixing prose (https://github.com/TEIC/Stylesheets/pull/507#discussion_r883669059)
* Test nodes, not names (https://github.com/TEIC/Stylesheets/pull/507#discussion_r883808314)
2022-07-01 Syd Bauman <[email protected]>
Merge in latest change to TEI-C/Stylesheets:dev: Namely, tweak to Makefile so that whitespace changes are ignored when comparing RNC files
Fix #560 by adding -bBw to RNC diff lines.
2022-07-01 Syd Bauman <[email protected]>
Merge pull request #550 from TEIC/issue-544-classpathref
Adding @classpathref to all XSLT calls
2022-07-01 Syd Bauman <[email protected]>
Update Test2/ expected result to reflect new, improved actual output.
Update expected result to reflect new, improved actual result.
2022-06-30 Vishvas Vasuki विश्वासः <[email protected]>
Merge branch 'TEIC:dev' into dev
2022-06-29 rvdb <[email protected]>
only increment multi-level numbering for directly nesting ordered lists
2022-06-17 Elli Bleeker <[email protected]>
Update P5subset w/ @sydb following the instructions in the Google doc.
2022-06-01 Syd Bauman <[email protected]>
What gives? Fix expected results test failure that I do not grok. When diffed from the Makefile running locally, no differences were found.
With @ebeshero update p5subset, which was a bear
2022-05-28 Syd Bauman <[email protected]>
Fix #551
2022-04-30 helenasabel <[email protected]>
merge dev into this branch
added @include and @except test to test suite
changed message of default behaviour and of P7 (which is indeed creating the expected results)
changed value of @expand
2022-04-23 martindholmes <[email protected]>
Bump version number following release.
2022-04-19 Hugh Cayless <[email protected]>
Merge release 7.53.0
Updating tests.
2022-04-19 Raff Viglianti <[email protected]>
v.7.53.0
regenerated log
set to v.7.53.0
updated p5 subset
2022-04-19 Raff Viglianti <[email protected]>
set to v.7.53.0
updated p5 subset
2022-04-18 Syd Bauman <[email protected]>
Merge pull request #542 from TEIC/sydb_issue_537
Allow the `<ref>` elements to get processed:
2022-04-17 Hugh A. Cayless <[email protected]>
Flag out-of-date Translations (#547)
2022-04-16 Peter Stadler <[email protected]>
add dedicated processing of links in specLists
2022-04-15 Peter Stadler <[email protected]>
Revert "Allow the `<ref>` elements to get processed:"
This reverts commit 91ae8d75c10092ec206bb516eb27725e0c4b0ddb.
2022-04-05 Syd Bauman <[email protected]>
only whitespace fixes, no real changes
Fix namespace; see #546.
2022-03-25 Syd Bauman <[email protected]>
work on Stylesheets ticket #479
2022-03-23 Syd Bauman <[email protected]>
With @martinascholger update p5subset.
2022-02-18 martindholmes <[email protected]>
Updating Test results for new p5subset.xml.
Fix Test2 discrepancies due to updated p5subset.xml.
Updated p5subset.xml to eliminate possible complicating factor in handling https://github.com/TEIC/TEI/issues/2231.
2022-01-28 Syd Bauman <[email protected]>
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).
2022-01-24 Helena Bermúdez Sabel <[email protected]>
Merge pull request #540 from TEIC/updateP5subset
Update p5subset
2022-01-19 Janelle Jenstad <[email protected]>
updated tests
update P5 subset
2022-01-10 Martin Holmes <[email protected]>
Merge pull request #536 from TEIC/issue-526-mdh-pdf-links
Issue 526 mdh pdf links
2022-01-06 Syd Bauman <[email protected]>
Separate out test of type="class" from that of "dataype" and "macro", and prepend the destination with “TEI.”, thus allowing the link to work.
Fix an error, but it does not fix the problem
2022-01-03 martindholmes <[email protected]>
Remove debug comment.
2021-12-28 martindholmes <[email protected]>
Initial work to find the locus of the problem.
2021-12-24 Syd Bauman <[email protected]>
Ignorable whitespace changes EXCEPT also added a little info an informational message from the ant task
2021-12-16 Syd Bauman <[email protected]>
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.
2021-12-07 Syd Bauman <[email protected]>
Update p5subset
2021-12-02 Peter Stadler <[email protected]>
tweak for absolute path references (item 4 of #495)
Stylesheets group looked at #495 and changed two little things
* reorder attributes to make it more readable (source->target)
* use `$F` instead of `@url`: this addresses the issue with the broken absolute path references for `@facs` attributes
Co-Authored-By: Syd Bauman <[email protected]>
Co-Authored-By: Elisa Beshero-Bondar <[email protected]>
Co-Authored-By: Martina Scholger <[email protected]>
Co-Authored-By: MegJBrown <[email protected]>
Co-Authored-By: Raffaele Viglianti <[email protected]>
Co-Authored-By: Hugh A. Cayless <[email protected]>
2021-11-25 Helena Bermúdez Sabel <[email protected]>
Merge pull request #531 from TEIC/issue-515-caption
Issue #515: “Attribute” repeated in tagdoc
2021-11-25 helenasabel <[email protected]>
updated of test15 - word “atributos” no longer appears, as expected
2021-11-25 martindholmes <[email protected]>
Working with @helenasabel, @sydb, @martinascholger and @nccole on issue #515: rewrote attribute listings output to suppress unwanted word.
2021-11-19 Hugh Cayless <[email protected]>
Fixed bug in hyperlink rendering.
2021-11-15 Peter Stadler <[email protected]>
add slack notifications for Stylesheet tests
2021-11-05 Peter Stadler <[email protected]>
Merge pull request #466 from rvdb/docx-list-rend
align list processing in docx2tei with GL prose: differentiate between list/@type and list/@rend
update badges
add GitHub action for testing
2021-11-04 Peter Stadler <[email protected]>
add downloaded FOP files to gitignore
quoting from https://github.com/TEIC/Stylesheets/blob/2456660de90509af62603436b587b3d99d3c8c47/Test2/build.xml#L490: "We want to test FOP, but probably avoid exploding our repo …"
fix docx test in Test2
fix test-from-docx
fix test19
2021-11-02 Syd Bauman <[email protected]>
Fix #527.
2021-11-01 Syd Bauman <[email protected]>
Merge pull request #528 from TEIC/issue_511_markdown_images
First pass at issue #511: graphics to markdown images.
2021-11-01 martindholmes <[email protected]>
Merge branch 'issue_511_markdown_images' of github.com:TEIC/Stylesheets into issue_511_markdown_images
Update tests for Markdown changes.
2021-11-01 Syd Bauman <[email protected]>
Catch-up the test files to the modified captions in the input file
More useful captions
2021-10-26 martindholmes <[email protected]>
More elegant code courtesy of @sydb.
Tested conversion; added colon for Kramdown syntax.
Reformulated XPath per @sydb. Still needs testing.
2021-10-21 martindholmes <[email protected]>
First pass at issue #511: graphics to markdown images.
2021-10-01 Peter Stadler <[email protected]>
Merge pull request #510 from TEIC/sydb_509_FPI_in_idno
Look in <idno> as well as <altIdent> for module FPI
2021-09-09 Syd Bauman <[email protected]>
Add Test2/ to Makefile: Two new tarets, 'test2' and 'test2P'. The latter runs the tests in Test2/ in parallel, the former in series.
2021-09-05 Syd Bauman <[email protected]>
Merge pull request #499 from TEIC/iss487
update html output declarations to modern XHTML5 #487
2021-09-05 helenasabel <[email protected]>
updated Test2 expected-results (with minor change in build_utilities.xml
kept the same behaviour concerning CSS as in previous teitohtml5
added/modified comments following @sydb suggestions
update of expected results (fixed issues after merge)
fetching dev: merge conflicts in expected-results
2021-08-31 helenasabel <[email protected]>
increase of release number
updated Test2 expected results
merged of released branch
update of expected results and P5subset
merge of release 7.52.0
update version number and changelog
2021-08-29 Elisa Beshero-Bondar <[email protected]>
Merge pull request #522 from TEIC/P5subset
Update of the p5subset
2021-08-27 helenasabel <[email protected]>
update of expected results in Test2
update of expected results
P5 subset update
2021-08-26 Peter Stadler <[email protected]>
Merge pull request #521 from TEIC/iss516
Fix for #520
2021-08-21 Syd Bauman <[email protected]>
Address #520: Just add processing of xml:id= to the application of templates from <biblStruct> or <bibl> child of <listBibl>.
2021-08-21 Syd Bauman <[email protected]>
Merge pull request #517 from TEIC/iss516
Fix #516: duplication of ids in HTML transformation
2021-08-21 Syd Bauman <[email protected]>
inconsequential changes: Whitespace and other inconsequential changes that reviewers can summarily ignore.
2021-08-20 Syd Bauman <[email protected]>
Merge pull request #494 from rvdb/jTEI-fix-language
jTEI set default language
Hopefully no problems. :-)
2021-08-20 Martin Holmes <[email protected]>
Issue 399 rng annotations (#514)
* First fix for issue #399: output code element contents with backticks.
* Fix expected results for issue #399 fix.
* Fixing tests for issue #399 fix.
2021-08-20 Syd Bauman <[email protected]>
improve description: Tweak the in-file documentation (which user sees when she does 'ant -projecthelp'.
2021-08-20 martindholmes <[email protected]>
With @sydb, update documentation to include information about running tests in series with antSeries.
Move the initial clean target out of the parallel sequence.
With @sydb, added non-parallel target for running tests not in parallel for easier debugging of test failures.
2021-08-06 helenasabel <[email protected]>
update of expected results
adds condition to avoid the creation of duplicated ids
2021-07-30 ebeshero <[email protected]>
updating P5 subset and expected results
2021-07-29 Syd Bauman <[email protected]>
Address #326: Add id= attribute to the output <div> (with class "tei_front", "tei_body", or "tei_back") that is generated from the input <front>, <body>, or <back> when it has an xml:id=
2021-07-27 Syd Bauman <[email protected]>
Address #379: Change error message so humans might be able to make sense of it.
2021-06-24 Helena <[email protected]>
Merge pull request #512 from TEIC/sydb_444_desc_in_graphic
do not process generic <desc> as if it were specification element’s <desc>
2021-06-24 Syd Bauman <[email protected]>
Per PS, add better documentation and comments to our lovely change.
Stylesheets group work on #444.
2021-06-24 martindholmes <[email protected]>
Update p5subset.xml and fix tests.
2021-05-10 Syd Bauman <[email protected]>
Oops; updated Test2 to match new subset, too
2021-05-09 Syd Bauman <[email protected]>
Update source (p5subset): Update P5 source file to latest (TEI/TEIC/#4a9867b87), and modify expected results to match.
2021-05-07 Hugh A. Cayless <[email protected]>
Merge pull request #505 from TEIC/sydb-504_space_after_DOI
Address issue #504 by adding a space after idno elements inside biblStruct
2021-04-30 martindholmes <[email protected]>
Update TEX Test for issue #504.
Update TEX Test for issue #504.
Update Test2 for issue #504 fix.
Merge branch 'sydb-504_space_after_DOI' of github.com:TEIC/Stylesheets into sydb-504_space_after_DOI
Update Test2 for issue #504 fix.
2021-04-30 Syd Bauman <[email protected]>
Fix another missing space in biblStruct problem, and start fixing the test suite
In first crack at fix Martin and I found that DOI processing does not occur in common_core as most other biblio processing, but only in common_header, and it does not have the call to the (somewhat bizzarre) 'makeText' template there. So we added it. Crossing fingers...
2021-04-23 Elisa Beshero-Bondar <[email protected]>
Merge pull request #502 from TEIC/issue-178-remove-old-sch
Issue 178 remove old sch
2021-04-22 Syd Bauman <[email protected]>
Remove some more refs to no longer existant NS
2021-04-22 ebeshero <[email protected]>
removing s from result prefixes
Merge branch 'issue-178-remove-old-sch' of https://github.com/TEIC/Stylesheets into issue-178-remove-old-sch
updating odd2html to remove s from result prefixes
2021-04-22 Syd Bauman <[email protected]>
Merge in others'
Remove excess prefix
2021-04-22 Peter Stadler <[email protected]>
remove superfluous script #178
2021-04-22 martinascholger <[email protected]>
delete old iso ref
2021-04-22 ebeshero <[email protected]>
Merge branch 'issue-178-remove-old-sch' of https://github.com/TEIC/Stylesheets into issue-178-remove-old-sch
removing old sch from stylesheets
2021-04-22 helenasabel <[email protected]>
small fix
2021-04-22 Syd Bauman <[email protected]>
merge others work
merge others work
2021-04-22 martindholmes <[email protected]>
Merge branch 'issue-178-remove-old-sch' of github.com:TEIC/Stylesheets into issue-178-remove-old-sch
Nuke old Schematron stuff with Stylesheets Group.
2021-04-22 Peter Stadler <[email protected]>
remove outdated schematron declarations
2021-04-22 Syd Bauman <[email protected]>
Remove some old Schematron namespace decls, etc., per ticket 178
2021-04-22 Hugh Cayless <[email protected]>
Merge branch 'issue-178-remove-old-sch' of github.com:TEIC/Stylesheets into issue-178-remove-old-sch
Removed old schematron.
2021-04-22 Nicholas Cole <[email protected]>
NC removing old sch from 7 files
2021-04-20 martindholmes <[email protected]>
For issue #497, make FOP version easily configurable, set it to latest 2.6, and suppress MathML test because JEuclid version has not been updated.
2021-04-09 Syd Bauman <[email protected]>
merge testPure1.rng
Update source & tests
2021-04-08 martindholmes <[email protected]>
More fixes to Test2.
Update test odd for change to usage of key attribute.
Account for new location of LICENCE file.
2021-03-29 Martin Holmes <[email protected]>
Syd Bauman <[email protected]>
Update Stylesheets to Saxon 10 (#498)
* SaxonHE 9 → 10
* Expected results update for Saxon 10 in Test2.
* First diff fix for Saxon 10: order of atts and namespace declarations in test/rng.
* Saxon 10 whitespace-only differences.
* Saxon 10 generated-id differences.
* Saxon 10 generated-id differences.
* Update last 2 results for Saxon 10 (we hope)
2021-03-26 martindholmes <[email protected]>
Updating path to FOP binary.
2021-03-25 Syd Bauman <[email protected]>
splitLevel for HTML: From working on #102, Council Stylesheets group discovers that (as I suspected) the --splitLevel switch was not being processed by the teitohtml5 command. Turns out it was not documented to be passed to ant by that command, but was being passed; however, the ant buildhtml target was ignoring it. This is a fix for both of those problems (transformtei not correctly documenting switch, teianttasks.xml not passing switch to stylesheets).
2021-03-17 Martin Holmes <[email protected]>
Merge pull request #493 from rvdb/jTEI-fix-ODT-text
added a default text() processing template that just copies text() no…
2021-03-17 rvdb <[email protected]>
added English as default (fallback) language
added a default text() processing template that just copies text() nodes through, and avoids interference with upstream text() processing in the standard TEI stylesheets.
2021-03-15 Martin Holmes <[email protected]>
Merge pull request #492 from rvdb/jTEI-glosslabelfix
fixed a case where the rendition definition for "glosslabel" wasn't i…
2021-03-15 rvdb <[email protected]>
fixed a case where the rendition definition for "glosslabel" wasn't included in the OpenEdition output
2021-03-13 Martin Holmes <[email protected]>
Merge pull request #491 from rvdb/jTEI-pdf-fonts
added DejaVu as fallback font for Roboto
2021-03-13 rvdb <[email protected]>
added DejaVu as fallback font for Roboto
2021-03-12 Syd Bauman <[email protected]>
Oops; forgot a pair of subdirs
Update p5subset to 4.3.0a (for the first time)
2021-03-06 Syd Bauman <[email protected]>
Merge pull request #462 from craigberry/dev
Make `teitoepub3` (actually, `teitoepub*`, but we only have symlinks for `teitoepub` and `teitoepub3`) self-recognize just like all the other commandline symlinks to `transformtei`.
2021-02-26 Syd Bauman <[email protected]>
Syd Bauman <[email protected]>
martindholmes <[email protected]>
Fix for #488: (#489)
* Fix for #488:
Remove constraintSpec elements from attLists prior to tangling for use in generating documentation
* Working on PR #489 with @sydb, @npcole, and @martinascholger, solving the problem (we hope) with a tunneled parameter.
2021-02-25 Nicholas Cole <[email protected]>
New version number for the next release.
Add the autogenerated change-log
TEI Stylesheets release 7.51.0
Change version number for release
2021-02-25 Nicholas Cole <[email protected]>
TEI Stylesheets release 7.51.0
Change version number for release
2021-02-19 martindholmes <[email protected]>
Fix tests following merge of docx-to-tei changes.
2021-02-19 Hugh Cayless <[email protected]>
Disambiguating figure and table headers.
Merge branch 'dev' into hcayless_P3
Fix for #484.
2021-02-16 Hugh Cayless <[email protected]>
Somehow messed with changelog.
2021-02-16 Martin Holmes <[email protected]>
Merge pull request #486 from rvdb/note-fix
only count footnotes inside tei:text (thanks @martindholmes !)
2021-02-16 rvdb <[email protected]>
only count footnotes inside tei:text (thanks @martindholmes !)
2021-02-15 Martin Holmes <[email protected]>
Merge pull request #485 from rvdb/note-fix
only try to number notes inside tei:text for OpenEdition output
2021-02-15 rvdb <[email protected]>
only try to number notes inside tei:text for OpenEdition output
2021-02-12 Syd Bauman <[email protected]>
Revert previous commit, as it broke the build; see ticket #444
Address #444: Found a template for the 'desc' element that copied only the contents, did not preserve the element itself; changed it to copy the entire element. Seems to work.
2021-02-11 Syd Bauman <[email protected]>
Merge pull request #464 from TEIC/issue_463_mdh_rendition_ns
Add namespace sensitivity to xsl:keys used to process @rendition per …
2021-02-08 Hugh Cayless <[email protected]>
Fixing tests.
Fixing issues with CJK and PDF.
2021-01-30 Hugh Cayless <[email protected]>
Merge branch 'dev' into hcayless_P3
Fixing tests.
Added space in style for consistency.
2021-01-30 Hugh A. Cayless <[email protected]>
Merge pull request #481 from TEIC/issue_471_eg_anchors
With @martindholmes do <eg> part of #471
2021-01-30 Hugh Cayless <[email protected]>
Making text-align for table cells work.
2021-01-29 Syd Bauman <[email protected]>
Update expected results to match the change
2021-01-22 Hugh Cayless <[email protected]>
Footnote ids are not necessarily their position.
2021-01-20 Hugh Cayless <[email protected]>
Fix value handling for w:u.
2021-01-15 Hugh Cayless <[email protected]>
Updating tests.
Changed tei:onOff parameter.
Improved figure handling.
Changed tei:onOff parameter.
Update onOff function.
Attributes such as bolding, italics, etc., may be switched on by
the simple act of including, e.g., a w:i in the style. without
a value. So if the element exists, but does not have a @w:val,
the function should return true.
2021-01-13 Hugh Cayless <[email protected]>
Don't kill hi with element content.
Better handling of boolean properties.
Better handling for table and figure captions.
2020-12-18 Syd Bauman <[email protected]>
Use class: @martindholmes discovered that using the style= attribute for in-line CSS (rather than a class= attribute to refer to CSS elsewhere) causes problems on some servers due to CORS security restrictions (cross-origin resource sharing), so switch our recent change that used style= to a class.
2020-12-12 Syd Bauman <[email protected]>
Update expected results to match change
2020-12-11 Syd Bauman <[email protected]>
With @martindholmes do <eg> part of #471
2020-12-04 Syd Bauman <[email protected]>
Revert re-naming of examples files: I had temporarily renamed the examples files for debugging purposes. Lo and behold it helped us find another bug (see TEI #2070), but is no longer needed.
Address #478
Fix: Move template for <teix:egXML> from html_oddprocessing to html_tagdocs. This fixes the problem found in Test2/ in which <teix:egXML> elements were being completely dropped, and does not seem to change the results of the Guidelines build at all (i.e., that still works and gives proper anchors in all <teix:egXML>s).
2020-12-02 Syd Bauman <[email protected]>
Debugging for #471: * Change name of files that have all examples from "examples-GI" to "all_examples_of_GI".