forked from TEIC/Stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3868 lines (2775 loc) · 124 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
2014-02-20 Sebastian Rahtz <[email protected]>
update oddbyexample with better XSL syntax
changed results
2014-02-20 Sebastian Rahtz <[email protected]>
experimenting with rules we can't implement
2014-02-19 Sebastian Rahtz <[email protected]>
make "used by" for class work with classRef
dealing with @expand on classRef in DTD generation
fix DTD from Pure ODD where content is character only
hatefful variuations in Saxon
use same code for making refdoc as for schema
suppress memberOf row in ODD refdoc if its empty
stop test of pure odd depending on previous test
2014-02-18 Sebastian Rahtz <[email protected]>
make sure the Pure ODD elements are acted upon by teiodds code (never knew you could have two modes before....)
fix some problems in Pure ODD processing (to DTD)
2014-02-18 Sebastian Rahtz <[email protected]>
test pure odd dtd as well
tests for processing Pure ODD
2014-02-18 Sebastian Rahtz <[email protected]>
make sure the Pure ODD elements are acted upon by teiodds code (never knew you could have two modes before....)
fix some problems in Pure ODD processing (to DTD)
2014-02-18 Sebastian Rahtz <[email protected]>
test pure odd dtd as well
tests for processing Pure ODD
2014-02-16 Sebastian Rahtz <[email protected]>
fix definition of XSL keys to use same algorithm as elsewhere
change procession for new elements in a schema spec
2014-02-15 Sebastian Rahtz <[email protected]>
rewrite odd2odd to be more robust, by working in specific phase for resolving *Ref
2014-02-14 Sebastian Rahtz <[email protected]>
implement @except and @include on top-level <classRef> where it is an attribute class
2014-02-13 Sebastian Rahtz <[email protected]>
implementation of @except and @include on <classRef>
add oulipo odt to tei, code shared with dock
make odttotei work again with styles; undo mistaken discard if p contains a note
2014-02-12 Sebastian Rahtz <[email protected]>
more oulipo
improve oulipo
2014-02-10 Sebastian Rahtz <[email protected]>
make release 7.10
2014-02-09 Sebastian Rahtz <[email protected]>
in HTML, allow new value of pagebreakStyle, of "display", which will put a page image if one is available. activate for OuLiPo
new results in conversions after change to dock conversion
put listChange around change in revisionDesc, in docx to TEI. and stop putting in SVN markup
2014-02-08 Sebastian Rahtz <[email protected]>
extra TeX macro needed
handle opener and closer differently
2014-02-07 Sebastian Rahtz <[email protected]>
more on OuLiPo conversion to/from docx
2014-02-06 Sebastian Rahtz <[email protected]>
results changed
make sure tables dont sit inside paragraphs in docx
more structure in Oulipo and improve CSS/HTML
move templates into main file
a bit more fall out in results
2014-02-06 Sebastian Rahtz <[email protected]>
fallout
falllout from supporting name decoration
set up Oulipo template, and conversions to/from Word
allow for Word styles starting "TEI " or "tei_" equally
make persName, orgName, placeName styled
update JSI profile
merge multiple declarations in ODD file
2014-02-03 Sebastian Rahtz <[email protected]>
fixes to jsi profile from [email protected]
2014-01-31 Sebastian Rahtz <[email protected]>
fix support for @allowText
odd2odd does not need to assume base element is <TEI>
2014-01-30 Sebastian Rahtz <[email protected]>
profile infrastrcuture for Oulipo
2014-01-29 Sebastian Rahtz <[email protected]>
patches to Slovenian, from Matija Ogrin and Tomaž Erjavec
2014-01-27 Sebastian Rahtz <[email protected]>
JSI profile
2014-01-23 Sebastian Rahtz <[email protected]>
fix bad link in customisation form, starting new version
2014-01-20 Sebastian Rahtz <[email protected]>
hateful artefact
and another one
and more
2.6.0 changed again...
need to make new release 7.9.0 after fixes because of TEI 2.6.0
how stupid is sebastian
missing "ref-" before names of files
2014-01-20 Sebastian Rahtz <[email protected]>
ah the glories of names.xml eh
2014-01-20 martindholmes <[email protected]>
Trying to fix borked expected-results file for test 29.
2014-01-20 Sebastian Rahtz <[email protected]>
more expected results
expected results for release 2.6.0
more expected results for 2.6.0
adding more expected results for TEI release 2.6.0
modifying expected results
modifying expected results to match TEI P5 2.6.0
use simple @ident when linking to other language versions of an ODD ref doc
2014-01-20 Sebastian Rahtz <[email protected]>
how stupid is sebastian
missing "ref-" before names of files
2014-01-20 Sebastian Rahtz <[email protected]>
ah the glories of names.xml eh
2014-01-20 martindholmes <[email protected]>
Trying to fix borked expected-results file for test 29.
2014-01-20 Sebastian Rahtz <[email protected]>
more expected results
expected results for release 2.6.0
more expected results for 2.6.0
adding more expected results for TEI release 2.6.0
modifying expected results
modifying expected results to match TEI P5 2.6.0
use simple @ident when linking to other language versions of an ODD ref doc
2014-01-16 Sebastian Rahtz <[email protected]>
make sure docs are actually installed
same trick with oxygen script for second set of doc targets; add some more remarks to Test makefile, and make consistent in naming
tweak oxygen stylesheet documentation script on the fly so that it does not have problems accessing /root
2014-01-14 Sebastian Rahtz <[email protected]>
fix location of Saxon jar
use local copies of jing and saxon
2014-01-14 Sebastian Rahtz <[email protected]>
results without duplicate IDs
fix disastrous bug which could end up with duplicate IDs on schematron rules
2014-01-13 Sebastian Rahtz <[email protected]>
we don't use Subversion any more
more explicit test for directory ready to write in
2014-01-12 Sebastian Rahtz <[email protected]>
start new version, 7.9.0
2014-01-11 Sebastian Rahtz <[email protected]>
avoid verbose messages from tei to docbook
2014-01-10 Sebastian Rahtz <[email protected]>
version 7.8.0
2014-01-10 Syd Bauman <[email protected]>
almost complete re-write of extract-isosch.xsl
start work on namespace support for tests for deprecated constructs generated from validUntil=
2014-01-09 Sebastian Rahtz <[email protected]>
result changed a bit
parameterise separator used to separate items in footer
more @rend values mapped to CSS, from [email protected]
2014-01-08 Sebastian Rahtz <[email protected]>
clean up "clean" stanza of Makefile
missing end of comment
comments
add test for a more complex namespace situation; need to work harder on deciding whether to put a prefix in front of namespaces
kill unused XSL key
test complex namespace mixture in ODD
order of front matter in OUCS docx output
2014-01-05 Sebastian Rahtz <[email protected]>
remove redundant single-call template
starting a new version
restore behaviour of links from index, allowing for indexing of elements without a head which are not divs
2014-01-04 Sebastian Rahtz <[email protected]>
making release of 7.7.0
class names in DTDs need prefix adding; make sure an ODD with prefix is tested
2014-01-04 Sebastian Rahtz <[email protected]>
class names in DTDs need prefix adding; make sure an ODD with prefix is tested
loss of empty <head>s changes results
throw away empy <head> in docx to TEI
2014-01-03 Sebastian Rahtz <[email protected]>
mistaken additions
more results changed after fixes to ODD to HTML
line breaks in result file
line breaks between sibling heads now, instead of space, when displayed in context
smallest of starts on TEI to InDesign, start with code from John Maxwell
take account of @prefix when making links to elements in ODD documentation processing
2014-01-02 Sebastian Rahtz <[email protected]>
more insertion of spaces between consecutive <head>
make handling of empty heads and singleton divs more sophisticated.
A head with any children, and an empty div with div children, both
deserve to live
<graphic> in <surface> should be treated like any other
2013-12-20 Sebastian Rahtz <[email protected]>
visible page breaks in verse create div not span
i18n for Slovene, from Tomaž Erjavec <[email protected]>
2013-12-15 Sebastian Rahtz <[email protected]>
more things to remove
2013-12-13 Sebastian Rahtz <[email protected]>
make generateAuthor a bit safer
change p to div to make legal HTML in titlepage for epub
2013-12-13 Syd Bauman <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
partial implimentation of SF FR 459, to wit generating Schematron warnings for occurrences in TEI instances of constructs that have @validUntil in TEI source
2013-12-12 Sebastian Rahtz <[email protected]>
more tweaks to generating authors and titles
rethink function for generating author name (thanks to
2013-12-11 Sebastian Rahtz <[email protected]>
tweak order of doc
silly typo in odd2dtd
html changed
2013-12-11 Sebastian Rahtz <[email protected]>
change of result after delcaring namespace
more places where the name for an object (as ID or file name) is calculated using a posible prefix
add new test of odd2html
2013-12-10 Sebastian Rahtz <[email protected]>
missing file
expected results off odd2html
links to elements which have translated names
oh gash I hate this business of functions return non values
clean up process of naming and identifying things, using common code for getting at @ident and altIdent. take this chance to clean up HTML build for ODD slighlt, and show namespace where needed
dont support @entity or @url on <figure> any more
2013-12-08 Sebastian Rahtz <[email protected]>
start new version
update changelog for release
2013-12-07 Sebastian Rahtz <[email protected]>
allow old-style use of <attRef> with just @name
2013-12-05 Sebastian Rahtz <[email protected]>
spell name of style right
ptr/@to does not equate to ptr/@target
margin notes
2013-12-04 jamescummings <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
Adding more to P4 conversion.
2013-12-03 Sebastian Rahtz <[email protected]>
VERSION 7.6.0 released
2013-12-04 jamescummings <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
Adding more to P4 conversion.
2013-12-03 Sebastian Rahtz <[email protected]>
test xlsx to TEI XML
restore behaviour of handling front matter
results files for space after footnoteref in word
dont insert space after footnote marked in Word output
fix HTML <app> processing in light of new samples
2013-12-01 Sebastian Rahtz <[email protected]>
change rendering and CSS for app crit in HTML
Makefile had wrong file comparison in test "namespaces"
cleaning up expected results, and changes because of CSS for <app> support
include trang jar file on distro, and change scripts accordingly
more on app-handling in HTML
Merge pull request #5 from lddubeau/feature/namespaces-for-odd2json
Support for namespaces in the output of odd2json.
working on better support for <app> in HTML
dont have make targets called "foo", thats silly. github.com/TEIC/Stylesheets/issues/3
2013-11-30 Louis-Dominique Dubeau <[email protected]>
Added support for producing namespaces in the output of odd2json. The namespaces are added as "ns" fields to elementSpec objects and the objects in the "attributes" array.
2013-11-30 Sebastian Rahtz <[email protected]>
RELEASE 7.5.0, because of error over reading VERSION file
process <milestone> more consistently
2013-11-29 Sebastian Rahtz <[email protected]>
fix results right this time; and add REPLACES to Debian control
results change, of course
on a new version now
when odd2html is in splitting mode, make TOC of elements, classs etc
use simple relative path to get VERSION file
wrapper for TEI to Lite
2013-11-26 Sebastian Rahtz <[email protected]>
results changed
RELEASE 7.4.0, because of mess with 7.3.0
2013-11-25 Sebastian Rahtz <[email protected]>
show stylesheets versiion number in HTML output (as comment). changes lots of results
2013-11-24 Sebastian Rahtz <[email protected]>
change location of oxygen download in docs; and add some IDs
2013-11-22 Sebastian Rahtz <[email protected]>
allow for englist at least
handle @type better in p4 to p5
typo
handle @targType in P4
2013-11-21 Sebastian Rahtz <[email protected]>
change @mixed to @allowsText in PiureOdd
2013-11-19 Sebastian Rahtz <[email protected]>
start new version
update change for Release
2013-11-17 Sebastian Rahtz <[email protected]>
change doc date
extend work on attRef to cover arbitrary case
2013-11-17 Sebastian Rahtz <[email protected]>
change doc date
extend work on attRef to cover arbitrary case
fix for tei epub applies to kindle
move function to better context
fix problem in function return values
2013-11-16 Sebastian Rahtz <[email protected]>
adjust test ODD to new format of attRef
re-work the way <attRef> works, using @name and @class attributes in place of old composite @name
special case of link to readme outside current directory when making TEI epub
2013-11-14 Sebastian Rahtz <[email protected]>
update version, prepare for release
processing editionStmt in guidelines
2013-11-14 Sebastian Rahtz <[email protected]>
processing editionStmt in guidelines
2013-11-13 Sebastian Rahtz <[email protected]>
a bit more documentation for TCP to TEI
better handling of images in surface, extra test files
start support for sourceDoc and othe transcriptional elements in HTML
2013-11-11 Sebastian Rahtz <[email protected]>
changed results
change to results
make sure <gi> follows rename in altIdent
2013-11-10 Sebastian Rahtz <[email protected]>
adjust element renaming in egXML to only apply to TEI elements and attributes in no namespace
ignore namespace when looking for alternate names for attributes
convert names inside <egXML> to match <altIdent>, if present
fix path to names file in odttotei
set CSS for TEI readme output
fix to avoid spurious singleton divs means some results change
2013-11-09 Sebastian Rahtz <[email protected]>
apparently we dont want institution showing
make sure we dont end up with an empty <hi/>
in pass2, ignore a singleton <div> with empty <head>, just show contents
check whether file of allowed TEI names exists
deal with a difficult situation of a space marked as italic followed by real text as italic. we were losing the second bit
2013-11-08 Sebastian Rahtz <[email protected]>
clean up handling of styles in odt to tei
2013-11-07 Sebastian Rahtz <[email protected]>
changed result
and for docx
extend ODT to TEI by turning something with a style name into a TEI element of the same name (if it exists in the TEI)
2013-11-05 Sebastian Rahtz <[email protected]>
change the way notes in <head> and in biblio entries are handled
2013-11-04 Sebastian Rahtz <[email protected]>
improvement in test results
allow for surname in biblStruct being inside a persName
remove debug messages
resolve issues with multiple values for @target in docx
2013-11-03 Sebastian Rahtz <[email protected]>
fix multi-target links in docx
extra biblStruct in results
a vareiant example of biblStruct
making multiple values for @target work in tei to docx
an attDef with a constraintSpec generates a better context for rule
add test case of two values for @target
test case for attDef containing a constraintSpec
fix code for sorting listBib/biblStruct
2013-11-01 Sebastian Rahtz <[email protected]>
remove file:/// from directory name in a different place to avoid conflict with other uses of outputDir
2013-10-30 Sebastian Rahtz <[email protected]>
confusion over file:/// in directory names
stupid typo in Ant
undo 64bit change, so that jenkinses can work
2013-10-29 Sebastian Rahtz <[email protected]>
missing file:/// before directory name. TEI Bug #615
2013-10-27 Sebastian Rahtz <[email protected]>
drat, need to explicit set zip64bit mode off
2013-10-15 Sebastian Rahtz <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
Conflicts:
Test/test-tree.html
make d3 work with links between nodes
2013-10-15 Sebastian Rahtz <[email protected]>
Scott made the d3.js work
2013-10-14 Sebastian Rahtz <[email protected]>
make the word "deprecated" into a hyperllink
2013-10-14 Sebastian Rahtz <[email protected]>
results change
lightgray background for examples, not gray
2013-10-09 Sebastian Rahtz <[email protected]>
make changelog format from git
2013-10-08 Sebastian Rahtz <[email protected]>
working on nets
2013-10-08 lb42 <[email protected]>
fix empty cell problem
2013-10-07 Sebastian Rahtz <[email protected]>
need xs namespace declared in schematron
2013-10-06 Sebastian Rahtz <[email protected]>
think about to/from Markdown
2013-10-04 Sebastian Rahtz <[email protected]>
VERSION 7.2.0
change to way TCP metadata is shown
change result from change in thinking about $pPr
use header file not text for TCP metadata
make sure that footnotes keep footnoteRef, even when a style is present. involves making sure all uses of $pPr are as nodes, not string. also cope with <w:sdt> properly
2013-10-03 Sebastian Rahtz <[email protected]>
add support for teiCorpus to RDF conversion
2013-10-02 Sebastian Rahtz <[email protected]>
change in generateAuthor to remove trailing space, and work with corpus
update version for new release
write auxiliary files (eg footnotes) _after_ completing pass0
dont show classDecl in epub metadata; get author from header of corpus where appropriate
2013-09-29 Sebastian Rahtz <[email protected]>
allow for extra graphics files in epub
allow for corpus ancestor in generatePublisher
dont use @rules on table, use CSS instead
dont special case @url of film: here
2013-09-28 Sebastian Rahtz <[email protected]>
need to add properties to manifest entries for epub3
avoid old @align on HTML cells
remove debug
create Ant job to copy graphics files from within main epub transformation
correct mistake when getting title from teiCorpus
2013-09-25 martindholmes <[email protected]>
Fixing broken URL in oddbyexample.xsl; location of file has changed in deb package.
2013-09-24 Sebastian Rahtz <[email protected]>
index term does not always have double quote at the end (undo last, wrong, fix)
processing of index entries in docx, need to strip off XE first
2013-09-22 Sebastian Rahtz <[email protected]>
allow for writeDiv at level of <TEI>
2013-09-20 Sebastian Rahtz <[email protected]>
TCP results changed
protect against trailing space in PB/@REF
extend regexp for eebopage URL scheme for include roman numerals, and junk left-trailing . in page numbers
make sure all comons in preflight are processed in the right mode
2013-09-19 Sebastian Rahtz <[email protected]>
fix epub preflight so that elements within <hi> are processed in proper mode
allow for block-level objects inside <add>
2013-09-18 Sebastian Rahtz <[email protected]>
remove typo
footnotes in <floatingText> were not working
remove redundant lineBreak functions
change to notes means some changed test results
2013-09-18 Sebastian Rahtz <[email protected]>
donr put in TEIC-specific udm code
dont process eebopage: @facs values
normslize handling of <lb> into core
2013-09-17 Sebastian Rahtz <[email protected]>
change to Word output test file
new parameter in TEI to Word, footnoteNumbering, to set the numbering style for footnotes
clean up tree processing code
2013-09-17 Sebastian Rahtz <[email protected]>
drop <pb> when processing EEBO data
more tree test data
2013-09-16 Sebastian Rahtz <[email protected]>
change in result file in test
2013-09-16 Sebastian Rahtz <[email protected]>
refinements to handling of trees; don't show links which are inside a <forest>
escape single quote when making JSON for trees; update tree test file to have all examples from Guidelines
2013-09-11 Sebastian Rahtz <[email protected]>
more cleaning
stanza to test www.tei-c garage too
<msWriting> does not exist, so do not support it
how to test oxgarage
2013-09-10 Sebastian Rahtz <[email protected]>
tweak test result
support @cRef on <ptr> minimally in Word generation; add marginRight and Left to default Word templates
allow for CSS names for values of @place
take account of @facs pointing at a <graphic> element directly or at an element which contains a <graphic>
found by Torsten Schassan
d3-generated tree diagrams now more robust and responsive to content variation
2013-09-10 Sebastian Rahtz <[email protected]>
more work on d3-generated trees
2013-09-09 Sebastian Rahtz <[email protected]>
tweak D3 trees, and start looking at width and depth of nodes
2013-09-08 Sebastian Rahtz <[email protected]>
look for <div> at any level when making styleabear and styledoc
documentation cleaning
2013-09-07 Sebastian Rahtz <[email protected]>
missing Debian file giving compat level
version updated
time for a new release
better implementation of handling <ref> with no target
a <ref> without @target should not throw away the contents
2013-09-06 lb42 <[email protected]>
trying to merge Merge branch 'master' of https://github.com/TEIC/Stylesheets
Conflicts:
profiles/agora/docx/to.xsl
2013-09-06 Lou Burnard <lou@psammead.(none)>
remove old version ; add 4-pass version of from.xsl
there should be no to.xsl and the from is out of date
2013-09-06 Sebastian Rahtz <[email protected]>
changes to test files as a result of normalizing <head> in HTML
2013-09-06 Sebastian Rahtz <[email protected]>
improved d3-based tree rendering
normalise the creation of HTML <head> element to single function
2013-09-02 Sebastian Rahtz <[email protected]>
result file changed with date, needs stripping
typos in doc
2013-09-02 Sebastian Rahtz <[email protected]>
results changed by adding new HTML module to XSL
2013-09-01 Sebastian Rahtz <[email protected]>
preliminary support for <eTree>/<eLeaf> in HTML and LaTeX
force encoding in output
add section to test.xml for div with no heading
also simplify working of autoHead, change symbol for what autoMakeHead
does by default, and make OTA HTML more like OTA epub
2013-08-31 Sebastian Rahtz <[email protected]>
if autoHeadr is set to false. really don't make any heading at all.
https://sourceforge.net/p/tei/bugs/595/
do special processing for <biblStruct> only if no <bibl> present in <listBibl>
process `<head>` inside `<listBibl>` properly in HTML and LaTeX
see https://sourceforge.net/p/tei/bugs/593/
process `<salute>` in standard way, so that @rend is noticed
2013-08-09 Sebastian Rahtz <[email protected]>
change results
allow for <head> as child of front/body/back
better distinguish notes in floating texts from normal notes
2013-08-09 Sebastian Rahtz <[email protected]>
coding mistake
allow for notes within <floatingText>, just number them
calculation of note number should not be confused by <floatingText>
2013-08-09 Sebastian Rahtz <[email protected]>
eejit
ignore LOG file
do test20 in latex as well, working on rendering
2013-08-08 Sebastian Rahtz <[email protected]>
make sure <edition> goes through space normalization
more test cases
using more common code to process inline elements means a lot of changes to test results
borders around revisionDesc table
2013-08-08 Sebastian Rahtz <[email protected]>
refactoring some more inline elements to put a single match in common area, using makeInline template
2013-08-07 Sebastian Rahtz <[email protected]>
missing test result
redo standard header and footer for simple HTML
omit institution, feedback, search etc if URLs not explicitly provided
2013-08-06 martindholmes <[email protected]>
Removing my popup js from the odds guidelines.xsl file. I've moved it into the svn repo guidelines.xsl.model file instead, keeping it local to our build of the guidelines.
2013-08-06 Sebastian Rahtz <[email protected]>
missing file
2013-08-06 Sebastian Rahtz <[email protected]>
clean up LaTeX <app> processing
switch to using eledmac instead of ledmac;add test file for use of
<app>; suppress <app> with @from
correct way to declare italic in LaTeX is \itshape, not \textit. Durr.
2013-08-05 Sebastian Rahtz <[email protected]>
change the way conversion to LaTeX does arbitrary commands. use a brace group instead of a command with param
guard effect of LaTeX commands inside braces to be careful
can't assume people have Helvetica and Times Roman fonts
2013-08-05 Sebastian Rahtz <[email protected]>
change the way font is set in egXML examples in LaTeX
the previous vversion caused P5 Guidelines to fall over in
incomprehensible ways. just make it \ttfamily\small and have done with
it
2013-08-05 martindholmes <[email protected]>
Attempting to add a change to guidelines.xsl which should add the popup footnotes functionality,
2013-08-04 Sebastian Rahtz <[email protected]>
fix error in teitoodt where calculating height of picture
<label> test provokes fixes for of and docx too
new test file for working on @rend
take account of @rend on <title> and <label>; while there, handle forename and surname inside author/editor better
resposnse to https://sourceforge.net/p/tei/bugs/591/
2013-08-03 Sebastian Rahtz <[email protected]>
fixes to documentation