forked from TEIC/Stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1897 lines (1028 loc) · 62.8 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
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".
2020-12-01 Syd Bauman <[email protected]>
minor improvements: * remove extraneous space after the U+2693 symbol we just added * remove (apparently unused) copy of the template that matches teix:egXML
Work on #471: With Stylesheets group, add an anchor symbol (U+2693) link to each egXML that is a link-to-self (so user can easily copy and paste link to example). Note: have it working for examples in prose and tagdocs, but NOT working yet for examples on the "show all" examples pages, nor for <eg> elements.
2020-11-30 Hugh Cayless <[email protected]>
Fix RTL handling.
2020-10-30 Martin Holmes <[email protected]>
Merge pull request #474 from rvdb/note-type
Thanks @rvdb !
2020-10-30 rvdb <[email protected]>
replaced erroneous note/@resp attribute with note/@type (cf. https://tei-openedition.readthedocs.io/en/latest/tei.text.html#note-de-lauteur-note-de-la-redaction-erratum-remerciements)
2020-10-12 Syd Bauman <[email protected]>
loosen fix: Do not limit the rendition= attributes collected by the EXTRENDITION keys to those on elements in the TEI namespace, rather exclude those that are a descendant of the TEI Examples namespace.
2020-10-07 martindholmes <[email protected]>
Add namespace sensitivity to xsl:keys used to process @rendition per issue #463.
2020-09-18 Syd Bauman <[email protected]>
Update version number for bug fix
re-FIX previous commit
BUG FIX: With Martin Holmes, change the definition of TEISOURCE_DEFAULT so that it gets the source directory relative to the script that is running, rather than the directory that you happen to be running it from.
2020-09-11 Syd Bauman <[email protected]>
re-FIX previous commit
BUG FIX: With Martin Holmes, change the definition of TEISOURCE_DEFAULT so that it gets the source directory relative to the script that is running, rather than the directory that you happen to be running it from.
2020-09-09 Peter Stadler <[email protected]>
more cleanup
remove LaTeX artifacts produced by target "test-scripts"
2020-09-04 Syd Bauman <[email protected]>
merge
Minor fixes: * Fix the n= attribute on the TEI element of Test2/inputFiles/testSpecificationDescription1.odd; * Fix typo in comment of Test/Makefile
2020-09-04 martindholmes <[email protected]>
Updates to documentation with @sydb.
Add more info about readmes to build.xml.
2020-08-29 Syd Bauman <[email protected]>
Merge in sydb-makefile-in-Test-dir: Merged the sydb-makefile-in-Test-dir branch into this branch (dev), thus removing the need for #455.
Update to new release: * Get new p5subset (https://teijenkins.hcmc.uvic.ca/job/TEIP5-dev/lastSuccessfulBuild/artifact/P5/release/xml/tei/odd/p5subset.xml to be precise) * Run ( cd Test && make DIFFNOW=0 ) * Run a slightly modified version of Test2/cleanForDiff.xsl on both actual-results/ and expected-results/ (the modification is not to check URLs point somewhere to avoid a failure) * Compare the resulting output directories * Having found all differences make sense given the recent changes to TEI, * copy all of appropriate files from actual-results/ to expected-results/.
2020-08-22 Syd Bauman <[email protected]>
Improve wording of make help output
2020-08-21 martindholmes <[email protected]>
Update expected results in Test2.
Fix for over-broad idref check in clean process.
Add debug flag and enable retention of uncleaned generated files for debugging.
2020-08-20 martindholmes <[email protected]>
More fallout from issue #453: replace deprecated dh_clean -k with dh_prep.
Another lurking compat value changed to 10 for issue #453.
Fix for issue #453.
2020-08-19 Hugh Cayless <[email protected]>
Just prodding the CI.
Version number.
Release 7.50.0.
Fixing tests.
2020-08-19 Hugh Cayless <[email protected]>
Updating p5subset.xml
Setting VERSION.
2020-08-14 martindholmes <[email protected]>
Fix for issue #456.
2020-08-12 Peter Stadler <[email protected]>
minor update for pureODD
adjust function signature
@nikobeer reported the error message "An empty sequence is not allowed as the result of call to tei:i18n". In fact, the `xsl:for-each` (https://github.com/TEIC/Stylesheets/blob/fec23117724718edf72bbc48ad44cd9d1b161dec/common/functions.xsl#L616-L634) may result in zeroOrMore strings so I updated the function signature accordingly. Whether this makes sense probably needs deeper inspection …
fix typo in xpath predicate
2020-08-07 Hugh Cayless <[email protected]>
Fix for TEI#1985.
Enable styling of deprecation dates.
2020-08-06 Hugh Cayless <[email protected]>
Fixed accidental element renaming.
Fix for deprecations appendix style.
2020-08-05 Peter Stadler <[email protected]>
upgrade jquery library, fixes #433
2020-07-31 Peter Stadler <[email protected]>
add copyright statement, closes #413
copied copyright statement including year 2011 from https://tei-c.org/guidelines/licensing-and-citation/
2020-07-08 Martin Holmes <[email protected]>
Merge pull request #450 from rvdb/jTEI-urlchopping
added zero-width spaces after slashes and periods in URLs that are be…
2020-07-08 rvdb <[email protected]>
added backslash before periods regex
added zero-width spaces after slashes and periods in URLs that are being output in the text
2020-07-07 Hugh A. Cayless <[email protected]>
Merge pull request #448 from TEIC/subsetSetup
Subset setup
2020-07-03 Syd Bauman <[email protected]>
Get transformtei to use new source/p5subset
Get makefile to use local source
Add local p5subset: Add new directory, source/, which for now has only 1 file, the p5subset against which these Stylesheets should be tested.
2020-06-15 rvdb <[email protected]>
fix for handling @w:val[. = "0"] on //w:i and //w:b elements (#441)
* fix for handling @w:val[. = "0"] on //w:i and //w:b elements
* expanded fix to:
-other basic styles: w:i, w:b, w:strike, w:dstrike, w:smallCaps, w:caps
-allowed values for @w:val: ('0', 'false', 'off') vs ('1', 'true', 'on')
* add test for `@w:val attribute` as provided by @rvdb in #440
2020-06-10 Martin Holmes <[email protected]>
Merge pull request #443 from TEIC/issue-442
Thanks @peterstadler !
2020-06-10 Peter Stadler <[email protected]>
add more RTL languages
Co-Authored-By: Martin Holmes <[email protected]>
wrap arabic text in hbox{}, fixes #442
NB: only in verbatim (e.g. egXML) environments
2020-06-08 Peter Stadler <[email protected]>
force params to hold a node or the empty sequence
this fixes some errors "Required item type of first operand of '/' is node(); supplied value has item type xs:string".
When no value was passed, it defaulted to the empty string. With the "as" the empty sequence is enforced and subsequent node tests do not fail.
2020-06-04 Martin Holmes <[email protected]>
Merge pull request #439 from TEIC/issue-400
replace http requests/links with https in XSL scripts. I'm slightly ashamed I hadn't done this ages ago.
2020-06-04 Syd Bauman <[email protected]>
Update Test2/ to match: Updated a bunch of Test2/expected-results/*.html files to have “https:” instead of “http:”.
2020-06-04 Peter Stadler <[email protected]>
update expected results due to changed scheme
see 52fec65e
replace scheme http with https, closes #400
Did a `grep -ER "http://(www.)?tei-c.org/(Vault|release)" **/*.xsl` from the repo root and fixed those occurences.
2020-06-03 Peter Stadler <[email protected]>
switched the last occurence of 'http' for $defaultTEIServer to 'https', closes #378
update more latex tests
update expected results
for latest tei2latex changes
add new parameters $japaneseFont, $chineseFont, and $koreanFont
and set NOTO as default. Closes #132, closes #148
update expected results to fix the build
NB: this only tries to fix the default build stylesheets-dev against guidelines-master (aka current release version of p5subset.xml).
2020-06-01 Syd Bauman <[email protected]>
Try to fix build: I am not sure, but I think this commit simply reverses a recent one. We are caught in dev-vs-current cycle, here. With this commit, I believe that Stylesheets_dev against P5_dev should pass the tests; however, Stylesheets_dev aaginst P5_released (current) will not (with a diff error in test.rng due to changes to lexicographic attrs). I am not sure what, if anything, could be done to get both to pass simultaneously.
Fix Test/: Fixed Test/ portion of build process by copying 2 particular output files to expected results, pretty much exactly what @martindholmes and I did on Fri 29 May in Test2/, but apparently forgot to do in Test/.
2020-05-29 martindholmes <[email protected]>
With @sydb: Fixing Test2 to handle changes to att.lex in P5.
2020-05-29 Syd Bauman <[email protected]>
Partial build fix: Copy over some expected results so that Test should work now; @martindholmes and I are working on Test2/ now.
2020-05-29 Martin Holmes <[email protected]>
Merge pull request #437 from rvdb/jTEI-improveNestedBlocksHandling
refactored handling of nested blocks inside //p and //list/item, thus…
2020-05-29 rvdb <[email protected]>
added some comments for clarification
2020-05-28 rvdb <[email protected]>
refactored handling of nested blocks inside //p and //list/item, thus avoiding opaque pre-processing steps
2020-05-22 martindholmes <[email protected]>
Slightly cleaner way to avoid making names.xml multiple times. Issue #435 now done.
Initial implementation for issue #435. Should fix the problem, but I'd like to optimize a bit.
2020-05-22 Syd Bauman <[email protected]>
Improve diff msgs: With @martindholmes finally commit changes I made on 04-08 designed to make the messages about the diff (or filesmatch) process that is about to be executed a bit friendlier.
2020-05-15 martindholmes <[email protected]>
Tweaks to diff formatting in Test2.
2020-05-12 Martin Holmes <[email protected]>
Merge pull request #434 from rvdb/jTEI-openeditionfixes
skipped processing of unsupported TEI elements in OpenEdition schema (<title level="s">, <email>)
2020-05-12 rvdb <[email protected]>
skipped processing of unsupported TEI elements in OpenEdition schema (<title level="s">, <email>) fixes https://github.com/TEIC/Stylesheets/issues/430
updated OpenEdition output to version 1.6.2 (https://tei-openedition.readthedocs.io/en/latest/changelog.html#version-1-6-2)
2020-04-22 lou burnard <[email protected]>
fixed typo
2020-04-09 martindholmes <[email protected]>
Fixing expected-results fallout for HTML testing resulting from @sydb's work yesterday.
2020-04-08 Peter Stadler <[email protected]>
add switch case for Korean to `tei:bibl` #202
NB: At present there are no bibl entries with `@xml:lang='ko'` but I think it makes sense to align the processing of CJK languages
fix korean language code #202
add switch case for korean to `tei:seg[@xml:lang]` #202
that should fix character display issues in teix:egXML environments, see e.g. the last example of section 22.5.3.2 "Value Specification".
2020-04-07 Syd Bauman <[email protected]>
Re-generate tests: due to whitespace changes in html/html_textstructure.xsl, some of the whitespace in output changed.
2020-04-07 Elisa Beshero-Bondar <[email protected]>
nearly resolving #326 we hope
2020-03-26 martindholmes <[email protected]>
Follow-up on issue #349: updated Test2 expected results and removed note per @sydb's note on ticket.
2020-03-24 Hugh Cayless <[email protected]>
Fix for #349.
Updating http to https.
2020-03-20 martindholmes <[email protected]>
@sydb used XSLT 3 concatenation operator in XSLT 2 file. Switching to concat() until we switch all stylesheets to 3.0.
2020-03-18 martindholmes <[email protected]>
Trying to fix test incompatibility between dev p5subset and release p5subset.
Attempting fix for build discrepancy where test.rng diff fails when built against dev tree's p5subset. Should (I hope) now build against both dev and release p5subset.
2020-03-17 Syd Bauman <[email protected]>
Address #408: Stylesheets group meeting added code to handle <dataRef> elements with name attributes
2020-02-27 rvdb <[email protected]>
fixed some XSLT details to avoid stricter SXWN9000 warnings with Saxon-9.9.1.5 (#421)
2020-02-21 martindholmes <[email protected]>
Fixing expected-results in Test2 with @sydb.
2020-02-15 Syd Bauman <[email protected]>
Fix #422: When generating the context= of generated <sch:rule> elements, the processSchematron template was always using a namespace prefix (of "tei:") even when the generated context was an attribute (because the placement of the corrent <constraintSpec> was inside an <attDef> that is not itself inside an <elementSpec>). Fixed by adding another <xsl:when> clause.
2020-02-14 Martin Holmes <[email protected]>
Merge pull request #420 from rvdb/jTEI-openedition
updated OpenEdition output to version 1.6.2
2020-02-13 raffazizzi <[email protected]>
Increased version number
Revert "Increased version number"
This reverts commit e0c49a6ba54e8b7621fffbd4179ea07a3f4c5ed6.
Increased version number
added changelog
upped version for release
YOUR COMMIT MESSAGE
2020-02-13 raffazizzi <[email protected]>
upped version for release
YOUR COMMIT MESSAGE
2020-02-11 Syd Bauman <[email protected]>
Update an expected result
2020-02-11 Peter Stadler <[email protected]>
remove header style from paragraph
2020-02-10 Syd Bauman <[email protected]>
Update tests to match
Fix #418: Ignore 'desc' elements that have a type= of "deprecationInfo" when making tagdocs.
2020-02-09 Syd Bauman <[email protected]>
Fix TEI issue 1625: Kludge teiodds.xsl so that it processes all of the sch:rule children, or all of the sch:assert and sch:report children, of the tei:constraint at one time, thus plopping them all into a single sch:pattern in the RNG output. Seems to work in small tests, but more excersiging is in order.
2020-02-04 Syd Bauman <[email protected]>
Fix #403: With @peterstadler and @raffazizzi, change code so the SCH:LET element is specifically copied in right place. (Does not work if a context= attribute of "." is specified.
2020-01-30 Martin Holmes <[email protected]>
Merge pull request #416 from rvdb/jTEI-fixlist
removed a spurious whitespace before simple inline lists
2020-01-28 rvdb <[email protected]>
removed a spurious whitespace before simple inline lists
2020-01-28 Martin Holmes <[email protected]>
Merge pull request #414 from rvdb/jTEI-fixrelativelinks
fixed a mistake from https://github.com/TEIC/Stylesheets/pull/406: do…
2020-01-28 rvdb <[email protected]>
fixed a mistake from https://github.com/TEIC/Stylesheets/pull/406: don't copy any relative links ("crossref", "bibl")
2020-01-24 Syd Bauman <[email protected]>
Merge pull request #394 from TEIC/issue312
change to full URLs for CSS imports
2020-01-23 Peter Stadler <[email protected]>
adjusting feedback URLs
related to https://github.com/TEIC/TEI/issues/1936
2020-01-22 Martin Holmes <[email protected]>
Merge pull request #410 from rvdb/jTEI-centercolspan
added automatic centering of table cells spanning multiple columns
2020-01-22 rvdb <[email protected]>
added automatic centering of table cells spanning multiple columns
fixes https://github.com/TEIC/Stylesheets/issues/409
2020-01-21 Syd Bauman <[email protected]>
Fix #404, take 3: Copied over expected test results for 15. (Old version did not have 'abbr', 'desc', or several other elements it should have\!)
Fix #404 again: Oops. Forgot to remove an <xsl:message>.
merge in dev
Fix #404: With @martindholmes, @martinascholger, @peterstadler, @lujessica, add the '' parameter to the call to key() so that CLASSMEMBERS is instantiated on the input compiled ODD (we hope) rather than whatever the current messed-up set of constructs is.
2019-12-28 martindholmes <[email protected]>
Adding a mime type for SVG images.
2019-12-13 Martin Holmes <[email protected]>
Merge pull request #406 from rvdb/jTEI-fixes
jTEI fixes
2019-12-13 rvdb <[email protected]>
fixed processing of tei:ref
added DejaVu as substitution font for GentiumPlus
Merge branch 'dev' of https://github.com/rvdb/Stylesheets into dev
Merge branch 'dev' of https://github.com/rvdb/Stylesheets into dev
take into account <ptr> targets when calculating table column width ratio
2019-12-13 Elisa Beshero-Bondar <[email protected]>
incrementing post-release version 7.48.0a
2019-10-16 martindholmes <[email protected]>
Missed one change in expected results.
Fix for expected results following recent changes to P5 specs.
2019-10-15 martindholmes <[email protected]>
Change to expected results from TEI commit 4d3ae73982d8be280f3ecfc6c75372224e8a2b7f.
2019-10-02 Hugh Cayless <[email protected]>
Fix for #396.
2019-09-29 Peter Stadler <[email protected]>
remove replaced jquery library #395
upgrade jquery library #395
2019-09-20 Peter Stadler <[email protected]>
switch scheme to https
for `unparsed-text()` does not follow redirects and Saxon does not support catalog files for unparsed text files, see https://www.saxonica.com/html/documentation/sourcedocs/xml-catalogs.html
replace relative paths with full URLs #312
2019-09-16 raffazizzi <[email protected]>
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
Added a step to remove empty tei:hi before final clean up step.
2019-09-16 Peter Daengeli <[email protected]>
Improve error handling for faulty moduleRef uri (#369)
* Improve error handling for faulty moduleRef uri
This PR intends to communicate the cause of failure more clearly in cases where external modules are referenced and the resource is not available/parseable during conversion.
We found this with @textloop when trying to include
```xml
<moduleRef url="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/mathml2-main.rng"/>
```
which is now (after the February incident?) forwarded to https.
**Error message before this change:**
```
System ID: /Volumes/WORKBENCH/gitlab/testing/schema/tei_hal.odd
Scenario: TEI ODD to RELAX NG XML - Copy
Build file: /Applications/oXygen XML/oxygen 21.0/frameworks/tei/xml/tei/stylesheet/relaxng/build-to.xml
Engine name: ANT
Severity: fatal
Description: Transformation failed. /Applications/oXygen XML/oxygen 21.0/frameworks/tei/xml/tei/stylesheet/common/teianttasks.xml:356: ; SystemID: file:/Applications/oXygen%20XML/oxygen%2021.0/frameworks/tei/xml/tei/stylesheet/odds/teiodds.xsl; Line#: 1238; Column#: 20
```
```
[xslt] start importing moduleRef components
[xslt] .... import module [http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/mathml2-main.rng]
[xslt] http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/mathml2-main.rng:6:3: Fatal Error! Error reported by XML parser Cause: org.xml.sax.SAXParseException; systemId: http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/mathml2-main.rng; lineNumber: 6; columnNumber: 3; The element type "hr" must be terminated by the matching end-tag "</hr>".
[xslt] Failed to process /Volumes/WORKBENCH/gitlab/testing/schema/tei_hal.odd.processedodd
```
**Error message after this change:**
```
System ID: /Volumes/WORKBENCH/gitlab/testing/schema/tei_hal.odd
Scenario: TEI ODD to RELAX NG XML - Copy
Build file: /Applications/oXygen XML/oxygen 21.0/frameworks/tei/xml/tei/stylesheet/relaxng/build-to.xml
Engine name: ANT
Severity: fatal
Description: Transformation failed. Fatal error during transformation using /Applications/oXygen XML/oxygen 21.0/frameworks/tei/xml/tei/stylesheet/profiles/default/relaxng/to.xsl: Processing terminated by xsl:message at line 1255 in teiodds.xsl; SystemID: file:/Applications/oXygen%20XML/oxygen%2021.0/frameworks/tei/xml/tei/stylesheet/odds/teiodds.xsl; Line#: 1255; Column#: 4
```
```
[xslt] start importing moduleRef components
[xslt] .... import module [http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/mathml2-main.rng]
[xslt] Document not available: http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/mathml2-main.rng
[xslt] /Applications/oXygen XML/oxygen 21.0/frameworks/tei/xml/tei/stylesheet/odds/teiodds.xsl:1255:4: Fatal Error! Processing terminated by xsl:message at line 1255 in teiodds.xsl
[xslt] Failed to process /Volumes/WORKBENCH/gitlab/testing/schema/tei_hal.odd.processedodd
```
It would also be possible to call the (otherwise unused) `die` template, but getting the right line number immediately in the error message seems preferable.
* remove comment from pull request
2019-09-16 James Cummings <[email protected]>
Merge pull request #377 from bfirsh/patch-1
Add instructions on how to build documentation
Merge branch 'dev' into patch-1
2019-09-16 raffazizzi <[email protected]>
Merge branch 'dev' into pr109fix
2019-09-15 Peter Stadler <[email protected]>
colored symbols in docx2tei (#390)
* apply fix provided by @tomazerjavec #389
Co-Authored-By: Tomaž Erjavec <[email protected]>
* trying to fix indentation
* add test for issue #389
2019-09-14 martindholmes <[email protected]>
Fix for expected-results, now we're running explicitly against p5subset.xml from the Jenkins P5-dev build.
2019-09-14 Peter Stadler <[email protected]>
update travis URL (part 2)