-
Notifications
You must be signed in to change notification settings - Fork 126
/
ChangeLog
3103 lines (1681 loc) · 102 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
2024-07-08 helenasabel <[email protected]>
bump version
update of the p5 subset
2024-07-07 Helena Bermúdez Sabel <[email protected]>
Merge pull request #690 from TEIC/issue_687_duplicate_deleted_attr
fix complex merging of attrs, #687
2024-07-07 ebeshero <[email protected]>
updating branch from dev
2024-07-05 Helena Bermúdez Sabel <[email protected]>
P5subset update (#689)
* update p5subset and expected results
2024-06-24 Syd Bauman <[email protected]>
With @joeytakeda and @ebeshero, fix odd2odds so that it does not "justcopy" attDef elements that are not defined in the source class. This is a bit complicated, see @joeytakeda’s explanation in #687 itself.
2024-06-24 trishaoconnor <[email protected]>
Merge pull request #681 from TEIC/iss678_duplicateIdents
Fix regression: duplicate idents in `*Spec`s
2024-05-21 Peter Stadler <[email protected]>
Merge pull request #685 from gyulakalcso/patch-1
Update mediawiki-to-tei.xsl
2024-05-16 Gyula Kalcsó <[email protected]>
Update mediawiki-to-tei.xsl
correcting typo (appy -> apply) in row 36
2024-05-14 Peter Stadler <[email protected]>
Merge pull request #684 from jbampton/fix-spelling
Fix typo in `tei-to-text.xsl`
2024-05-11 John Bampton <[email protected]>
Fix typo in `tei-to-text.xsl`
2024-05-06 Joey Takeda <[email protected]>
Relaxing cardinality restraint
Attempt to fix #678
Refining how the zero-th pass for ODD processing handles gathering up duplicate named specs
2024-05-01 Syd Bauman <[email protected]>
Updated P5 subset: Initially with @trishaoconnor, updated p5subset to current version from TEI dev branch. This required reverting commit 61247e54d5412e5f1a2e46adb76ef92879c66b3a from TEI issue 2498, PR 2520, and lots of work, including discussion at SVF2F.
2024-04-13 Joey Takeda <[email protected]>
Merge pull request #675 from TEIC/issue_319
Reverse order of `<constraintSpec>` and `<datatype>` in output of odd2odd when merging attributes
2024-04-13 Elisa Beshero-Bondar <[email protected]>
Merge pull request #676 from bansp/patch-3
link fix
Merge pull request #674 from jbampton/fix-spelling
Fix spelling
2024-03-28 Piotr Banski <[email protected]>
link fix
2024-03-27 Syd Bauman <[email protected]>
Work on #319 point 2: @trishaoconnor and I found (what we think is) the spot in odd2odd.xsl that caused the output constraintSpec element to appear before the output datatype element, and swapped it with the immediately following constructor in the "odd2odd-mergeAttribute" template. This fixed the error in the output of running odd2odd.xsl on tei_simplePrint.odd, and all tests in both Test/ and Test2/ pass (except I do not have xelatex on my system).
2024-03-23 John Bampton <[email protected]>
Fix spelling
2024-03-16 trishaoconnor <[email protected]>
Corrected typo for issue ´#584´ (#670)
* Corrected typo from sup to sub
2024-03-16 Elisa Beshero-Bondar <[email protected]>
Merge pull request #633 from TEIC/sydb_627
make att.repeatable work for `<sequence>`, `<alternate>`, and `<anyElement>`
2024-03-15 Syd Bauman <[email protected]>
Merge pull request #651 from TEIC/sydb_598
tidy up FPI generation
2024-03-15 Syd Bauman <[email protected]>
suck in latest from dev
2024-03-15 Syd Bauman <[email protected]>
Merge pull request #672 from jbampton/fix-spelling
Fix spelling
Merge pull request #660 from TEIC/sydb_659_tei2schematron_attrs
Do not copy attrs from TEI constraint element to Schematron rule element
2024-03-12 Syd Bauman <[email protected]>
grab latest from dev
2024-03-08 Syd Bauman <[email protected]>
Manual merge of dev to this branch PLUS various changes required to make it work after said merge.
2024-03-08 John Bampton <[email protected]>
Fix spelling
2024-03-08 John Bampton <[email protected]>
Fix spelling (#671)
2024-03-07 Syd Bauman <[email protected]>
Comment changes, including spelling corrections
2024-02-26 John Bampton <[email protected]>
Change XSLT 2.0 to 3.0 in the README (#667)
Fix spelling (#666)
2024-02-23 John Bampton <[email protected]>
Fix spelling (#664)
Change the embedded XSLT version from `2.0` to `3.0` (#663)
Fix spelling (#662)
2024-01-26 Raffaele Viglianti <[email protected]>
Merge pull request #650 from TEIC/sydb_646
ignore `@version` of `<application>` when comparing in tests
2024-01-26 Helena Bermúdez Sabel <[email protected]>
Merge pull request #653 from TEIC/sydb_652_help_msg_omission
test $to, not $format; include HTML in kinds of outputs that might need ODD processing
2024-01-26 Syd Bauman <[email protected]>
Updated P5 subset: Updated source/p5subset.xml from current dev version of TEI repo, and updated tests to match.
2024-01-25 Syd Bauman <[email protected]>
Per suggestion @raffazizzi re-word comment
update w/ latest from dev after manual merge of debian-tei-xsl/debian/changelog
grab latest from dev
merged in latest from dev with manual merge of debian-tei-xsl/debian/changelog
2024-01-25 Joey Takeda <[email protected]>
Syd Bauman <[email protected]>
Clean up CI files per #620 (#655)
* Removes .travis.yml
* Removes Slack notification from GH Actions jobs
2024-01-14 Syd Bauman <[email protected]>
Do not copy attrs from TEI constraint element to Schematron rule element
2024-01-05 Helena Bermúdez Sabel <[email protected]>
Merge pull request #654 from TEIC/sydb_645_checking_desc_and_gloss_out-of-date_based_on_lang_and_type
test multiple `<desc>` (or `<gloss>`) elements’ `@versionDate` at once
2024-01-05 Syd Bauman <[email protected]>
Per Stylesheets group, revert to value operator, adding a comment to point out this fact. (And also fix some typos in comments).
2024-01-04 Syd Bauman <[email protected]>
Oops — fix code to match comment: Test only those <gloss>s and <desc>s that actually do not have a type= attribute.
2023-12-15 Syd Bauman <[email protected]>
Alter tei:descOrGlossOutOfDate() so that it will compare multiple elements; also test the desc or gloss elements based on type attribute
2023-12-12 Syd Bauman <[email protected]>
test 'to', not 'format', and include HTML in kinds of outputs that might require ODD processing
2023-11-29 Syd Bauman <[email protected]>
Address #598: Only check for FPIs in ident elements, not altIdent elements
2023-11-29 sabine seifert <[email protected]>
Merge pull request #649 from TEIC/sydb_639
All XSLT 2.0 ⇒ 3.0
2023-11-20 Syd Bauman <[email protected]>
Set application/@version to a placeholder value before comparing
All XSLT 2.0 ⇒ 3.0
2023-11-20 trishaoconnor <[email protected]>
Merge pull request #644 from jbampton/fix-spelling
misc: fix spelling
2023-11-16 raffazizzi <[email protected]>
updated expected results
upped version
2023-11-16 Hugh A. Cayless <[email protected]>
Fix weird merge issue.
Merge branch 'release-7.56.0' into dev
Revert test file.
More version changes.
More version number fixes.
Fix version number
Fix version number.
Fix another test.
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
2023-11-16 raffazizzi <[email protected]>
Merge branch 'release-7.56.0' of github.com:TEIC/Stylesheets into release-7.56.0
2023-11-16 Hugh A. Cayless <[email protected]>
Fix tests.
2023-11-16 raffazizzi <[email protected]>
confirmed version number
2023-11-16 Hugh A. Cayless <[email protected]>
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
2023-11-16 raffazizzi <[email protected]>
updated p5subset
2023-11-16 Hugh A. Cayless <[email protected]>
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
2023-11-13 John Bampton <[email protected]>
misc: fix spelling
2023-11-13 martindholmes <[email protected]>
Fixes for fallout from my previous fix for issue #534.
2023-11-12 martindholmes <[email protected]>
Fix for issue #534.
2023-11-11 Peter Stadler <[email protected]>
adjust folder name
2023-11-10 Elisa Beshero-Bondar <[email protected]>
Merge pull request #618 from TEIC/issue_567_val
Adding templates for val and tag to fix #567
Merge pull request #615 from TEIC/sydb_586
Make sure VERSION file is present before reading it.
Merge pull request #525 from TEIC/sydb_TEI-2070
Attempt to fix TEIC/TEI#2070:
2023-11-09 Syd Bauman <[email protected]>
1) re-insert missing “append .0” business (not sure what happened that it was not in what was already merged); 2) use unparsed-text-available() instead of doc-available() (duh\!)
concluding merge of dev
Ooops; missed a folder rename in #628
RIP, SPQR
... and a pointless manual merge
2023-11-09 Raffaele Viglianti <[email protected]>
Merge pull request #628 from TEIC/sydb_543_file_exts
delete file extension doubling
Merge pull request #638 from TEIC/sydb_TEI_2070
README creation improvements ala TEI ticket 2070
Merge pull request #632 from TEIC/sydb_631
Separate pattern for every instance of <anyElement> — fixes #631 (I hope)
2023-11-09 Syd Bauman <[email protected]>
manual merge of 1 file
As we have 3 approvals and all tests pass, merging
This is just a 'pull [email protected]:bwbohl/Stylesheets.git patch-1', really
not yet merged, so get latest from dev again
2023-11-09 Raffaele Viglianti <[email protected]>
Merge pull request #563 from TEIC/issue_424_experiment
fix processing of namespaces
2023-11-09 Syd Bauman <[email protected]>
latest from dev
not sure what happened ...
manual merge of latest from dev
2023-11-08 Martin Holmes <[email protected]>
Merge pull request #641 from TEIC/sydb_640
wrap new att lists in `<ul>` (where they were not so wrapped)
2023-11-08 Syd Bauman <[email protected]>
Any latest from dev is mine!
2023-11-08 martindholmes <[email protected]>
With @sydb fix for issue #640.
2023-11-05 Syd Bauman <[email protected]>
This commit _seems_ to be working correctly: passes Test/, Test2/, the Guidelines test process, and the Guidelines build OK.
This state of repo is (I believe) not working as per my comment of 2023-10-15 on PR #633.
2023-11-04 Syd Bauman <[email protected]>
merge in lastest from dev
Remove import of classatts.xsl, as no longer needed after 7ed5111f.
Direct test instead of key fix as discussed on PR
2023-10-29 Syd Bauman <[email protected]>
Simplify patching version number.
Update an expected results file in Test/.
An attempt at #640 fixing: * template showAttClasses is called from 6 different places (all in common_tagdocs); * generated debugging code for each of those places; * found which 2 were causing problem (li element as child of td instead of child of ul); * wrapped them in ul element. * Note: deliberately left debugging PIs in place, but they should maybe be removed before merging into dev.
2023-10-28 helenasabel <[email protected]>
updates id that causes tests to fail
merge 'dev'
2023-10-27 martindholmes <[email protected]>
Removing anonymously-named test file and integrating that test (for index elements to be ignored in TOC building) into testStructure1.
2023-10-27 Syd Bauman <[email protected]>
tweak a comment
2023-10-27 Joey Takeda <[email protected]>
Merge branch 'dev' into issue_567_val
2023-10-26 Helena Bermúdez Sabel <[email protected]>
Merge pull request #634 from TEIC/sydb_610
fix errors in docxtotei noticed by Stylesheets group
2023-10-26 Syd Bauman <[email protected]>
grab latest from dev
2023-10-26 Helena Bermúdez Sabel <[email protected]>
Merge pull request #619 from TEIC/stylesheets_group_on_592
Presentation of list of attributes in the Guidelines
2023-10-26 Syd Bauman <[email protected]>
Reproduce same fix @bwbohl made for elements to classes
Merge in latest from TEIC’s dev branch
Finally add comment to help future maintainers with debugging 3-pass RELAX NG pattern reduction code (which I wrote > 2 weeks ago).
2023-10-23 Syd Bauman <[email protected]>
Tweak README builder for TEI ticket 2070
2023-10-18 Joey Takeda <[email protected]>
For #592, update CSS
But note that this also will require a change in the GL's CSS in the TEI repo, I think
Update expected results
Merge branch 'dev' into stylesheets_group_on_592
Reverted Test/expected-results/test15.odd.html since there were many conflicts, and will address those next.
2023-10-17 Patricia O CONNOR <[email protected]>
Update P5subset and tests
2023-10-16 Syd Bauman <[email protected]>
Fix #635: (#636)
Added clause testing for type=deprecationInfo so we don't get 2+ nodes being tested on one side of 'gt'.
2023-10-12 Syd Bauman <[email protected]>
2 minor updates: 1) Apparently there are times when the 'c' variable in the template for elementRef|classRef|macroRef boils down to an empty sequence. 2) Handle the case when there is no <datatype> child of the <attDef> being processed.
2023-10-10 Syd Bauman <[email protected]>
Minor fixes, and changes to tests to match: 2) Fix typo — function had "#teitodocx" where it meant "#docxtotei"
Convert commented-out debugging code to useful comment.
2023-10-09 Syd Bauman <[email protected]>
Various minor things: * Removed some debugging code * Added tests (in Test2/testPure1) for sequence/@m[ia][nx]Occurs and alternate/@m[ia][nx]Occurs, including valid instance, but not invalid * Updated tests (in Test/)
2023-10-08 Syd Bauman <[email protected]>
Now have @minOccurs and @maxOccurs working on <sequence> (and thus <interleave>), too. Passes tests, so *may* be eligible to merge into dev, but not really ready, yet, as need to work on repeatability of <alternate>.
Still NOT ready to be merged into dev: In this commit I intended to comment out some debugging code (which renders output kinda useless, is it sticks the results of each pass into the output as RELAXNG <div> elements, rather than as comments) and update some tests. But I found to my horror that (despite message of previous 3 commits) tests were not passing. So lots of test updates, too. NB: One of the things that makes this ineligible for merging into dev is that the constraint for the <choice> element has changed from the incorrect, but workable '( model.choicePart | choice )+' to the incorrect and *not* workable '( model.choicePart | choice )+'. At the moment I have no idea why, but it does not really matter, as attacking minOccurs= and maxOccurs= on <alternate> and <sequence> is next.
Add a test with 2 <anyElement> elements.
2023-10-07 Syd Bauman <[email protected]>
Code for supporting minOccurs= and maxOccurs= on <anyElement>, mostly untested because of #631. This comit is *not* ready for prime time.
remove some debugging code
Fix #631 (I hope): Generate a different RELAX NG pattern (and reference to it) for every occurence of an anyElement element, and update tests to match. (Previously we were trying to generate one for every content model in which an anyElement occurred, but were generation one for every content model in which an anyElement element occurred only once.)
2023-10-04 Benjamin W. Bohl <[email protected]>
Update odd2odd.xsl
2023-10-01 Syd Bauman <[email protected]>
Oops, spoke too soon: was not passing Test/, just Test2/. Now passing both sets of tests.
Replace tei:minOmaxO() and both tei:generateIndicators() functions (one for RELAXNG, one for DTD) with a new function, tei:norMinMax(); should be no change to output; passes both Test/ and Test2/.
2023-09-30 Syd Bauman <[email protected]>
Stop deleting 'test*.docx' files in the clean: target. I am not at all sure a) why they were being deleted, b) why their deletion did not cause problems before the change made in this branch.
Restoring files I inadvertently removed (I have no idea how)
2023-09-30 trishaoconnor <[email protected]>
Merge pull request #608 from TEIC/sydb_607
Fix #607, I hope: remove erroneous bits of text from version URL
2023-09-30 Syd Bauman <[email protected]>
Ooops; forgot to add newly named TEI to RELAX NG symlink
Update tests to match changes to transformtei and symlinks
Re-work how filenames are handled for #543: I _think_ I have this working right, but more testing is in order.
2023-09-29 Syd Bauman <[email protected]>
Grab whatever has happened on dev in past ~1.05 years
2023-09-28 Joey Takeda <[email protected]>
Returning to this per Stylesheets meeting
Merging (manually) the helpful test file from PR #508. This branch now supercedes #508 and thus will also close #503
2023-09-28 raffazizzi <[email protected]>
Merge branch 'dev' into sydb_607
2023-09-28 trishaoconnor <[email protected]>
Merge pull request #614 from jbampton/fix-spelling
Fix spelling
2023-09-28 Helena Bermúdez Sabel <[email protected]>
Merge pull request #617 from TEIC/sydb_616
process `@xml:id` wherever the output of a <list> is generated
2023-09-22 Helena Bermúdez Sabel <[email protected]>
Merge pull request #524 from fryske-akademy/dev
overridability for docxtotei
2023-08-24 Joey Takeda <[email protected]>
Adding templates for val and tag to fix #567
* Template added to html/html_core.xsl for tag and val to transform them into spans
* Named template added to html/html_core.xsl to create a delimiter span to allow
easier customization (i.e. to allow for a CSS only approach to start and end text)
* Reflect value of `@scheme` in tag's class
2023-08-24 Syd Bauman <[email protected]>
With Stylesheets Group alter test15 until the BLEEPing thing finally worked.
Pull in whatever has happened in dev
2023-08-24 Hugh A. Cayless <[email protected]>
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
2023-07-30 Syd Bauman <[email protected]>
Process xml:id= wherever the output of a <list> is generated in an attempt to fix #616.
2023-07-29 Syd Bauman <[email protected]>
Copy over latest p5subset, and fix tests accordingly.
2023-07-28 Hugh A. Cayless <[email protected]>
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
2023-07-27 helenasabel <[email protected]>
Stylesheets group adds missing title attribute to close TEI ticket 2137
2023-06-23 Joey Takeda <[email protected]>
Small adjustments for consistency
2023-06-22 Syd Bauman <[email protected]>
Update an expected result for new HTML output
Stylesheets group (HBS, SB,& JT) fix the remaining bug from last month — we think this is structurally ready, still needs CSS
2023-05-28 Syd Bauman <[email protected]>
Huh? Missed tests: I do not understand how these files were missed when I tested prior to previous commit, but fixing anyway ...
2023-05-27 Syd Bauman <[email protected]>
Address #586: * Update tei:stylesheetVersion() with a fix based on @eduarddrenth’s suggestion. * Remove parameter from that function defintion, it was not being used. * Remove parameter from the 1 call to tath function. * Some whitespace, too. * Fixed my e-mail addr in AUTHORS. * Updated expected-results/ to match mildly different comment at the end.
2023-05-26 John Bampton <[email protected]>
Fix spelling
2023-05-25 Syd Bauman <[email protected]>
Stylesheets group works on #592: * Use ATTCLASSES key instead of CLASSES, as we are not playing with model classes * Use generic output elements instead of output-specific output elements
2023-05-20 Elisa Beshero-Bondar <[email protected]>
Merge pull request #611 from rvdb/dev
2023-05-19 rvdb <[email protected]>
improvements for multilingual articles
2023-05-02 Syd Bauman <[email protected]>
Oops, forgot one
2023-05-01 Syd Bauman <[email protected]>
More work on #607: Get output to pass tests: * Update routine so that it deals with both “P5 Version …” and “Version …” * Update Makefile so that test35.rnc has these comments stripped out correctly * Update some expected results because of *slight* comment differences that should be ignored
Fix #607, I hope: With @trishaoconnor, change the "makeTEIVersion" template in odds/teiodds.xsl so that a) it does not output the string "P5 Version
" as part of the version URL; and b) it outputs the version information on 1 line instead of two.
2023-04-27 Syd Bauman <[email protected]>
Grab what has occurred in dev over past 6+ months
2023-04-24 sabine seifert <[email protected]>
Merge pull request #605 from TEIC/P5Update_seifert
P5 subset update
2023-04-24 helenasabel <[email protected]>
updated expected results (only white space issues)
2023-04-24 sabine seifert <[email protected]>
Update p5subset.xml
2023-04-04 Syd Bauman <[email protected]>
Increment version to our best guess of next release number (alpha)
Release 7.55.0
Update version # (and subset for its new version #) and change log for upcoming release
update p5subset before release (and update tests to match, after checking 'em)
2023-04-04 Hugh A. Cayless <[email protected]>
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
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]>