forked from TEIC/Stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1114 lines (609 loc) · 36.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
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]>
add phantomsection to spec labels, fixes 360
2019-02-15 Syd Bauman <[email protected]>
Merge in the latest changes from dev
Fix #357.
2019-02-15 raffazizzi <[email protected]>
Adjusted odd2json tests
Changes for datatype processing
2019-01-31 martindholmes <[email protected]>
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
Updates to Test2 due to changes in ODD processing and schema.
2019-01-30 Hugh Cayless <[email protected]>
Merge branch 'master' into dev post 7.47.0 release.
2019-01-29 Hugh Cayless <[email protected]>
Merge branch 'release-7.47.0'
Fixing issues with the tests, which surfaced with TEI 3.5.0.
Fixing expected results.
Merging release branch.
Updated changelog.
Set VERSION 7.47.0
2019-01-29 Hugh Cayless <[email protected]>
Set VERSION 7.47.0
2019-01-28 Syd Bauman <[email protected]>
Release note processing: Process <gi> and <ident type="class"> in readme-X.Y.Z.xml files such that they point to the X.Y.Z version of the Guidelines
2019-01-24 Syd Bauman <[email protected]>
Merge pull request #356 from TEIC/peterstadler-issue351
pull request to address #351
2019-01-24 Peter Stadler <[email protected]>
Merge branch 'dev' into peterstadler-issue351
2019-01-20 raffazizzi <[email protected]>
Adjusted odd2json to look for class types from a source file when not found in the local ODD. This will help supporting non-compiled ODDs. Updated tests.
2019-01-12 Peter Stadler <[email protected]>
create output directories if needed #351
this should be safe since `-p` does not throw an error for existing directories and creates parent directories if needed
set `-e` option #351
… to exit immediately if some command returns a non-zero status.
2019-01-06 Syd Bauman <[email protected]>
add test: Added better testing of minOccurs= and maxOccurs= (in part to set up testing for when we try to fix #354).
2019-01-04 Syd Bauman <[email protected]>
Fix #352: Changed “odd2odd.xsl” to “teiodds.xsl” in unused error message.
2019-01-04 raffazizzi <[email protected]>
only class name for memberOf
back to simple classes
returned to non-agnostic model with apologies for the revert attempts nonsense
Revert "Added more detail for memberOf"
This reverts commit 64dbff8bae86e3e65bbb838345e3342505986b6e.
Revert "fix expected results"
This reverts commit e422d4bfff5ccb372acf49efbf299eecf8b7c5dc.
New tests for odd2json
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
Made representation of memberOf more agnostic. The XSLT does not attempt to sort class references by class type as that information may not always be available in customization ODDs.
2019-01-04 Peter Stadler <[email protected]>
fix expected results
aftermath of 64dbff8bae86e3e65bbb838345e3342505986b6e
2019-01-03 raffazizzi <[email protected]>
Added more detail for memberOf
2018-12-30 Syd Bauman <[email protected]>
Update testPure1, step 8: Add a Schematron constraint. (Also some tweaks to comments and added a <remarks>.)
2018-12-21 Syd Bauman <[email protected]>
Update README_build_odd.md
Typo fix.
2018-12-21 martindholmes <[email protected]>
Tweaks to test ODD readme.
Tweaks to test ODD readme.
More added to the ODD test readme file.
2018-12-14 martindholmes <[email protected]>
Markdown fix in readme.
Markdown fix in readme.
Adding a readme to document the ODD file processing.
2018-12-08 Syd Bauman <[email protected]>
Update testPure1, step 7: Add tests for <dataRef> with key= or name=, and restriction=. Note that one of these tests worked, in that it found a Stylesheets problem. See #349.
Update testPure1, step 6: 1) Delete att.lexicographic instead of att.deprecated, just to be clear that we are testing the deletion of something that is not included. (Since previous versions of this schema have included 'tagdocs', and even this version sucks in some elements therefrom.) 2) Change the alteration of synch= to be a deletion thereof to match the comment. I.e., synch= should not be included in output schemas, and thus invalid.
2018-12-07 Syd Bauman <[email protected]>
Update testPure1, step 5: Delete the <join> and <joinGrp> elements from testPure1 schema using <elementSpec>.
Update testPure1, step 4: Replace reference to module 'tagdocs' and replace with references to elements <gi>, <att>, and <val>. Add a test to ensure that <tag> is invalid.
Update testPure1, step 3: Move reference to module 'linking' from middle-of-pack to up where all the other simple <moduleRef>s are. This has profound effects on what the output RNG looks like, but should have no effect on what it validates. I have checked against all the XML files in the inputFiles/ directory, and the same number of error messages are issued for each.
Update testPure1, step 2: Change order of <moduleRef> declarations so that those that are simple (i.e., have no attrs) come first. This has profound effects on what the output RNG looks like, but should have no effect on what it validates. I have checked against all the XML files in the imnputFiles/ directory, and the same number of error messages are issued for each. Also use phrase-level encoding in the <desc>.
Update testPure1, step 1: Just a change to the order of and whitespace between the attributes and namespace declarations on the outermost <TEI> element. Nothing else. Should cause no appreciable change at all. But requires different expected results, as the order is propegated through to the output.
Revert testPure1: Revert the testPure1.odd file in preparation for re-introducing each change I made one at a time.
2018-11-23 martindholmes <[email protected]>
Removing -Dregenerate support, since it's risky and not the ideal approach.
2018-11-23 Syd Bauman <[email protected]>
Add more tests of ODD constructs
2018-11-20 Syd Bauman <[email protected]>
Updated AUTHORS: Added those who are listed in ChangeLog or have > 25 commits to the AUTHORS list.
2018-11-19 Syd Bauman <[email protected]>
Fix #334: During today's Stylesheets group conference call we fixed ticket #334 by adding a template that simply ingores <cb>, <gb>, and <milestone> elements. It is possible, if not outright likely, that in the future we will have to do better than just ignoring them, but at least now FO can be produced w/o this error forcing the build to fail.
2018-11-19 James Cummings <[email protected]>
Merge pull request #339 from cyocum/html-tei-ex
Make editorial expansions appear as italic in HTML
2018-11-17 martindholmes <[email protected]>
Adding test for valList in content models.
2018-11-12 martindholmes <[email protected]>
A bit more progress with Pure ODD testing.
2018-11-11 martindholmes <[email protected]>
Tweak to wording.
More work on Pure ODD test.
A bit more work on Pure ODD test.
2018-11-02 martindholmes <[email protected]>
Adding valid instance file for testPure1.
Adding beginnings of an invalid instance file for testPure1.
2018-10-29 Peter Stadler <[email protected]>
update expected results
2018-10-27 Chris Yocum <[email protected]>
Fixed expected html in test
Upated html expected results to match html ex output
Changed to use CSS rather than HTML element
2018-10-26 Syd Bauman <[email protected]>
Merge in @martindholmes changes, I think
With @martindholmes change name of validation output file so that Jenkins console doesn't parse it as an error
2018-10-26 martindholmes <[email protected]>
Changing nomenclature to avoid using the word 'error', which may trigger Jenkins log parser build failures.
@sydb and @martindholmes working on setting up for more ODD processing.
2018-10-26 Syd Bauman <[email protected]>
Merge branch 'dev' of https://github.com/TEIC/Stylesheets into dev
Change informational message for readability.
2018-10-26 martindholmes <[email protected]>
Fixes to expected results due to nomenclature and naming convention changes.
2018-10-26 Syd Bauman <[email protected]>
Merge branch 'dev' of https://github.com/TEIC/Stylesheets into dev
2018-10-26 martindholmes <[email protected]>
@sydb and @martindholmes changing nomenclature for clarity.
2018-10-26 Syd Bauman <[email protected]>
@martindholmes and I changing nomenclature for clarity
2018-10-26 martindholmes <[email protected]>
Tweak to readme.
2018-10-23 Chris Yocum <[email protected]>
Fixed last missing i tag
2018-10-22 Chris Yocum <[email protected]>
Updated html tests to use the new italics for editorial expansions
2018-10-21 Chris Yocum <[email protected]>
Make editorial expansions appear as italic in HTML
Make editorial expansions appear as italic in HTML. This allows
editorial interventions to be visible when a transcription is
translated into HTML. This is common formating for printed critical
editions.
2018-09-28 Syd Bauman <[email protected]>
Update version to 7.47.0 as we just released 7.46.0
auto-updated changelog
Prepare for release
2018-09-26 Syd Bauman <[email protected]>
More work on #250
2018-09-26 Syd Bauman <[email protected]>
More work on #250
Work on #250
2018-09-25 Syd Bauman <[email protected]>
Address #330: Ensure that no colons are in the generated ID used for <sch:pattern>s.
2018-09-21 martindholmes <[email protected]>
Fix to prevent deprecations in egXML from being harvested for the appendix.
2018-09-13 martindholmes <[email protected]>
Don't nest tds in tds.
Work on TEI ticket #1657: translatable headings for deprecation appendix table.
2018-09-12 martindholmes <[email protected]>
Merge branch 'dev' of github.com:TEIC/Stylesheets into dev
Stylesheet support for another column in the deprecation table with descriptive information.
2018-09-11 Peter Stadler <[email protected]>
add Travis build icon to Readme
and added more targets to the `make` command (to align it with the current Jenkins job)
2018-09-11 martindholmes <[email protected]>
Sort deprecations by expiry date.
Add namespace prefix, doh.
Attempting to make constraintSpec deprecations link to their ancestor spec file in the Deprecations appendix.
2018-09-11 Peter Stadler <[email protected]>
this should work now …
proper docker command for running the Stylesheets tests on Travis
add travis integration
2018-09-11 martindholmes <[email protected]>
Fix for ill-formed file committed in haste. Sorry folks.
Attempt to make deprecation idents into links.
Tweaks to prepare for easier linking.
2018-09-10 martindholmes <[email protected]>
Table structure should be fixed now (TEI ticket 1657 work).
Still hacking on TEI ticket #1657.
More work on TEI ticket #1657.
Fix for expected results.
Work on TEIC/TEI ticket #1657: need to add processing for deprecationcat value of divGen/@type.
2018-09-08 martindholmes <[email protected]>
Work on ticket #216: removing apparently orphaned file.
Try actually saving the file before committing.
Adding a README as requested by Council in Tokyo.
Two files removed per issue #216. If nothing breaks, I'll continue.
Commenting out bad CSS in epub output for issue #115, this time in epub rather than epub3.
Commenting out bad CSS in epub output for issue #115.
Space missing in listed authors.
2018-09-07 Raffaele Viglianti <[email protected]>
Merge pull request #292 from ebeshero/dev
possible solution for processing listRef/ref in odd2odd.xsl
2018-09-07 ebeshero <[email protected]>
merging with dev instead of master Merge remote-tracking branch 'upstream/dev' into dev
updating from main Stylesheets Merge remote-tracking branch 'upstream/master' into dev
2018-09-07 Magdalena Turska <[email protected]>
Merge branch 'dev' of https://github.com/TEIC/Stylesheets into dev
fix #308 cleaning up remaining hardcoded and superfluous references to Saxon EE
2018-09-07 martindholmes <[email protected]>
For issue #316, added tite to the list. If nothing breaks, ticket can be closed.
2018-08-31 martindholmes <[email protected]>
Fix for local paths in outputs and expected-results.
2018-08-31 Hugh A. Cayless <[email protected]>
Merge pull request #332 from TEIC/sortedDiffTests
Implementation of sorted diffing to make Test more robust against software version changes.
2018-08-31 martindholmes <[email protected]>
Updating FOP to 2.2, which involves changing filepaths.
Use https for all downloads from now on.
2018-08-31 Hugh Cayless <[email protected]>
Sorting archive manifest before diff.
2018-08-29 martindholmes <[email protected]>
Test of sorted diffing to make Test more robust against software version changes.
2018-08-28 raffazizzi <[email protected]>
attempting to fix more test errors
Fixing tests for new odd2json
2018-08-27 raffazizzi <[email protected]>
Merge branch 'dev' into raffazizzi-json
2018-08-22 raffazizzi <[email protected]>
A few adjustments and representing datatypes for attributes
2018-08-11 martindholmes <[email protected]>
Slight file re-organization per suggestion from SB; parameterizing file list so a single file can be tested more easily.
2018-08-08 martindholmes <[email protected]>
Schematron now being extracted from ODDs.
2018-08-07 martindholmes <[email protected]>
Added one more test to the invalid file.
Invalid file testing: first example working.
2018-08-06 martindholmes <[email protected]>
Comments in ODD build file as to how to proceed with testing validation using generated schemas.
Build of ODD for non-TEI schema working.
RelaxNG being created; adding valid exemplar for testing.
Adding a simple test file for building an ODD for a non-TEI schema.
2018-07-27 martindholmes <[email protected]>
Merge branch 'dev' of https://github.com/TEIC/Stylesheets into dev
Update build file to match new file name for old test.odd.
2018-07-27 Syd Bauman <[email protected]>
Rename output file accordingly
Tweak and rename specDesc test file
2018-07-25 martindholmes <[email protected]>
Updated pureOdd expected-results.
Whitespace in expected-results.
Updates for changes to expected-results.
Fixing duplicated project name.
2018-07-25 raffazizzi <[email protected]>
changes related to attributes processing
Merge branch 'dev' into raffazizzi-json
2018-07-23 Syd Bauman <[email protected]>
Update for 3.4.0: Re-create a bunch of the expected results based on what is generated from test files using the soon-to-be-published 3.4.0.
2018-07-23 raffazizzi <[email protected]>
Updated version after release
2018-07-23 Peter Stadler <[email protected]>
trimming whitespace from VERSION file
… to fix current issue with extra new line
bump version number to 7.45.0 (sine alpha)
2018-05-11 Syd Bauman <[email protected]>
First crack at new test of Pure ODD in Test2, brought to you by Martin & Syd
2018-05-06 Syd Bauman <[email protected]>
Bug fix: Generated pattern ID should not contain colons.
2018-05-04 martindholmes <[email protected]>
Tweaks to new Pure ODD test file.