forked from TEIC/Stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1600 lines (870 loc) · 53.7 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-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)
update travis URL
2019-09-14 martindholmes <[email protected]>
Tweak to expected-results.
2019-09-06 Martin Holmes <[email protected]>
Merge pull request #392 from rvdb/jTEI-svnkeywords
refined SVN keyword processing, so that unexpanded keywords (e.g. $Id…
2019-09-06 martindholmes <[email protected]>
Whitespace issues in expected results.
More fixes for expected results.
Updating expected-results for most recent changes to P5.
2019-09-05 rvdb <[email protected]>
in PDF output, moved SVN keywords to title page, before abstract (so it doesn't disturb searching in PDF)
refined SVN keyword processing, so that unexpanded keywords (e.g. $Id$) are copied as well (in order to copy the unexpanded keywords to the debug output)
2019-09-05 Martin Holmes <[email protected]>
Merge pull request #391 from rvdb/jTEI-svnkeywords
added processing of the SVN $Id$ keyword
2019-09-05 rvdb <[email protected]>
small adjustment to include SVN keywords literally (in order to be able to ignore them in jTEI debug output files)
added processing of the SVN $Id$ keyword
2019-08-27 Martin Holmes <[email protected]>
Merge pull request #388 from rvdb/jTEI-improve-tablecolumns
take into account <ptr> targets when calculating table column width ratio.
2019-08-27 rvdb <[email protected]>
take into account <ptr> targets when calculating table column width ratio
2019-07-16 Elisa Beshero-Bondar <[email protected]>
incrementing post-release version 7.48.0a
2019-07-16 Peter Stadler <[email protected]>
update expected results
built against current Guidelines release branch
2019-07-11 Martin Holmes <[email protected]>
Merge pull request #385 from TEIC/peterstadler-issue360
fixes internal PDF links #360
2019-07-11 Peter Stadler <[email protected]>
update expected results
2019-07-10 Peter Stadler <[email protected]>
remove surrounding square brackets from bibliographic references
2019-07-10 Stuart Yeates <[email protected]>
Add some text to make this findable using google (#374)
2019-07-05 Peter Stadler <[email protected]>
Merge branch 'dev' into peterstadler-issue360
2019-07-02 Peter Stadler <[email protected]>
fix creation of Debian packages
Debian uses fakeroot to build packages which resets all environment variables. In the Docker image the `jar` executable is outside of the default paths "/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11" so we need this extra treatment.
2019-06-24 raffazizzi <[email protected]>
Defaulting descs to en instead of all languages
2019-06-20 Martin Holmes <[email protected]>
Merge pull request #381 from rvdb/jTEI-improve-punctuation-handling
fixed the obligatory typo :-/
2019-06-20 rvdb <[email protected]>
fixed the obligatory typo :-/
2019-06-19 Martin Holmes <[email protected]>
Merge pull request #380 from rvdb/jTEI-improve-punctuation-handling
improved processing of "quotation elements" and footnotes w.r.t. subs…
2019-06-19 rvdb <[email protected]>
improved processing of "quotation elements" and footnotes w.r.t. subsequent punctuation, which should now be fully compliant with CMOS:
-only commas and periods should appear before closing quotation mark
-(only the) innermost "quotation element" should "pull in" subsequent comma or period
-all punctuation marks except dash should precede footnote markers
2019-05-20 Peter Stadler <[email protected]>
move relaxng related templates to their proper location #375
Those templates were introduced by PR #366 but led to some unintended side effects in the epub build. Stylesheets group decided to move them out of teiodds.xsl, thus tacitly accepting to revert the changes to the DTD output as a consequence.
Co-Authored-By: Martina Scholger <[email protected]>
Co-Authored-By: Martin Holmes <[email protected]>
Co-Authored-By: Syd Bauman <[email protected]>
2019-05-20 martindholmes <[email protected]>
Adding comment to new templates.
2019-05-17 Piotr Banski <[email protected]>
added checks for trang, ant and xetex to `make check` (#239)
* added checks for trang, ant and xetex to `make check`
* remove checks for jing and trang, and add warning for xetex
jing and trang do not need to be installed locally but are provided within the Stylesheets repo
2019-05-10 martindholmes <[email protected]>
Fix for expected-results in Test2 following revisions to specs.
2019-05-10 Peter Stadler <[email protected]>
update expected results for #360
set default citebordercolor #360
for new `\cite` command (was `\hyperref`)
fix citation references
by using `\cite` rather than `\hyperref`
some refactoring
in particular the `tei:makeHyperTarget` is unecessary because the `\bibitem` adds a label automatically
2019-05-08 Peter Stadler <[email protected]>
Merge branch 'dev' into peterstadler-issue360
2019-05-08 Syd Bauman <[email protected]>
Change expected results to match #336.
2019-05-08 Raffaele Viglianti <[email protected]>
Merge pull request #343 from TEIC/peterstadler-fix-multiple-schemaSpecs
fix processing of multiple schema specs (in one TEI document)
2019-05-08 Syd Bauman <[email protected]>
Merge pull request #336 from PietroLiuzzo/patch-1
adding rendering of ref, gi and att inside desc; still need to updated expected results (and then will close ticket)
2019-05-08 raffazizzi <[email protected]>
Improved handling of multiple schemaSpecs when merging multiple *Spec declarations. Refs #249
2019-05-08 Syd Bauman <[email protected]>
Per #240, drop the "four", as there are now six. :-)
2019-05-08 Syd Bauman <[email protected]>
Merge pull request #240 from bansp/patch-2
Only problem w/ this PR is that we left it for so long the number of uses of `@zip64Mode` has changed. Also, the link to get.xml is currently dead due to ADHO server crash problem, but that doesn't change this PR.
So Council accepts this PR, and I'm supposed to go fix the reference to `@zip64Mode` attrs now.
2019-04-29 Syd Bauman <[email protected]>
complete merge
Add comments to solve #355
2019-04-29 martindholmes <[email protected]>
@martindholmes and @sydb working on issue #355, adding comments to clarify the creation and use of a PI.
2019-03-30 Syd Bauman <[email protected]>
Merge pull request #367 from TEIC/issue366
make sure to only pass one prefix to `concat()`, fixes 366
2019-03-28 Syd Bauman <[email protected]>
Minor change: The ever vigilant @cmsmcq [noticed](https://github.com/TEIC/Stylesheets/pull/367#issuecomment-476296447) I missed changing a '=' to 'eq' on previous commit. As he points out, should make no difference whatsoever to actual processing (of valid documents).
2019-03-26 martindholmes <[email protected]>
Fix for expected results change arising from https://github.com/TEIC/Stylesheets/commit/c2d23d7125998bae7b8edc5a783789fcba02a608.
2019-03-25 raffazizzi <[email protected]>
updated tests
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
fixed wrong variable name
2019-03-25 Peter Stadler <[email protected]>
partially revert JSON tests
This undoes ff9837e7d4e22a3606f6db3a3ff14f12cf8609d4 to fix the current build problems. NB: Test/expected-results/test34.combined.json was only partially reverted, the "desc" arrays remain empty here.
2019-03-25 Syd Bauman <[email protected]>
Incorporate @cmsmcq's suggestions into another attempt at fixing this; only partially tested
2019-03-22 Peter Stadler <[email protected]>
make sure to only pass one prefix to `concat()`, fixes 366
2019-03-21 raffazizzi <[email protected]>
updated tests
set "en" as default value for doclang
switched to using default doclang parameter
2019-03-18 martindholmes <[email protected]>
Fix for expected-results.
2019-03-18 Syd Bauman <[email protected]>
Fix #361: Add namespace to <egXML> in <egXML> output. (we hope this works; let's see what Mr. Jenkins says)
2019-03-16 James Cummings <[email protected]>
Merge pull request #359 from TEIC/peterstadler-issue-358
add support for hard page breaks in odttotei
2019-03-15 Peter Stadler <[email protected]>
Merge branch 'dev' into peterstadler-fix-multiple-schemaSpecs
2019-03-11 Syd Bauman <[email protected]>
Merge pull request #364 from TEIC/peterstadler-dev
set localsource parameter once for build process
2019-03-07 Peter Stadler <[email protected]>
add TEISOURCE_DEFAULT
which will be used when no --localsource is provided; as requested in https://github.com/TEIC/Stylesheets/pull/364#issuecomment-470603525
improve code for setting localsource
and add comments
replace hard coded source in testfile
with variable DEFAULTSOURCE. This will prevent builds from failing when DEFAULTSOURCE is set to something different than the default.
2019-03-06 Peter Stadler <[email protected]>
point at the vault, not the release
support localsource pointing at some web resource
this is a temporary hack and needs to be fleshed out.
add proper support for setting localsource
this will allow you to invoke `make` with a local copy of the TEI sources, circumventing the current hickup with the servers …
e.g. `make test DEFAULTSOURCE=file:///my/local/path/to/p5subset.xml`
2019-03-05 Peter Stadler <[email protected]>
update scheme for source
NB: we need to modify the tests to capture this. Because whenever a different source is set this test will fail
update expected json results
update expected results #357
update expected results
remove trailing whitespace #357
update default p5subset scheme
2019-03-04 Joey Takeda <[email protected]>
#328: Suppress copying unprocessed attRefs in common_tagdocs.
2019-02-20 raffazizzi <[email protected]>
fix for valDesc when no lang is specified
fixed missing axis to get valList `@type`
2019-02-17 Peter Stadler <[email protected]>