forked from TEIC/Stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
5909 lines (3851 loc) · 176 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
2015-01-12 Sebastian Rahtz <[email protected]>
dont need odt-dir, just dir already present
Merge pull request #71 from mpetris/master
profile for DHConvalidator
2015-01-12 mpetris <[email protected]>
Merge pull request #1 from TEIC/master
reintegrate latest changes from base
2015-01-12 Marco Petris <[email protected]>
clean up
2015-01-09 Sebastian Rahtz <[email protected]>
changed test results
2015-01-08 Sebastian Rahtz <[email protected]>
updated FO results
Merge pull request #69 from bwbohl/feature_FO__footNoteSeperator
add xsl-footnote-seperator as static content
Merge pull request #68 from bwbohl/fix_FO_footNoteSizes
add 'pt' to footNoteSize and footNoteNumSize
Merge pull request #70 from bwbohl/feature_FO_tocConfig
added XSL-FO TOC config options
number chapters in front matter using roman
2015-01-08 Benjamin W. Bohl <[email protected]>
added XSL-FO TOC config options
this includes parameters in the fo_params for:
- tocJustify
- tocLeaderPattern
- tocLeaderPAtternContent (for own pattern)
- tocRuleStyle
- tocRuleThickness
Revert "Merge branch 'fix_FO_footNoteSizes' into feature_FO__footNoteSeperator"
This reverts commit eea0243ae3360ab318f34a32d56c717351ac065d, reversing
changes made to 197fedbcd79fde60b8758118da975d66706cced9.
Merge branch 'fix_FO_footNoteSizes' into feature_FO__footNoteSeperator
Merge remote-tracking branch 'upstream/master' into feature_FO__footNoteSeperator
add xsl-footnote-seperator as static content
identical in front, body, and back
add 'pt' to footNoteSite and footNoteNumSize
$footNoteSize and $footNoteNumSize were being calculated without
appending dimension. Added 'pt' after value.
2015-01-07 Sebastian Rahtz <[email protected]>
display processing model better
2015-01-07 sebastianrahtz <[email protected]>
documenting plain ODD
Merge branch 'master' of https://github.com/TEIC/Stylesheets
2015-01-07 Sebastian Rahtz <[email protected]>
typo, missing space
Merge pull request #66 from bwbohl/fix_isInline
Fix tei:isInline() return 'false' on (parent:: | self::)(tei:front | tei:body | tei:back)
show date consistently
2015-01-07 Benjamin W. Bohl <[email protected]>
tei:isInline false on self::(front|tei:body|back)
if tei:pb is direct child of tei:front, tei:body or tei:back it should
be rendered as block (e.g. in FO transformations)
tei:isInine() should return false on tei:back
tei:isInine() should return false on tei:front
2015-01-05 sebastianrahtz <[email protected]>
restore CSS
2015-01-05 Marco Petris <[email protected]>
profile for DHConvalidator
2015-01-04 Syd Bauman <[email protected]>
Found that some cells in an Excel spreadsheet were losing some or all of their content. Upon investigating found that problem only occured when the <si> referred to in the xl/sharedStrings.xml file had <r> children, not just a single <t> child. Found the template that handles those <si> elements, and found that if there were any <r> children, it was only processing <r> those that themselves had <rPr> children. I.e., si/r[rPr] were being processed, but si/r[not(rPr)] were not. Now, I don't know what <si>, <t>, <r>, or <rPr> mean, but processing all the <r> children rather than just those that themselves have <rPr> children solved my problem.
2015-01-03 Sebastian Rahtz <[email protected]>
pass through unrecognized schematron elements
add test of constraint as child of schemaSpec
2015-01-02 Sebastian Rahtz <[email protected]>
deal with URL schema unknown:
invent new url schema of unknown:
typo
dont make tcp: refs for page images unless a VID was found
2014-12-31 Sebastian Rahtz <[email protected]>
rendering of uncooked tagdoc elements to HTML, with some CSS additions
2014-12-29 Sebastian Rahtz <[email protected]>
reverse default translation of long s
2014-12-29 Sebastian Rahtz <[email protected]>
reverse default translation of long s
2014-12-27 sebastianrahtz <[email protected]>
spelling
2014-12-27 Sebastian Rahtz <[email protected]>
add availability to HTML TCP output
2014-12-27 sebastianrahtz <[email protected]>
spelling
2014-12-27 Sebastian Rahtz <[email protected]>
add availability to HTML TCP output
2014-12-24 sebastianrahtz <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
tcp css
2014-12-23 Sebastian Rahtz <[email protected]>
more css from for TCP
2014-12-22 Sebastian Rahtz <[email protected]>
minimum height for TCP header, not fixed
change the delicate balance of verbatim handling in latex, to avoid double escaping
2014-12-21 Sebastian Rahtz <[email protected]>
dont double escape verbatim in latex. dont test teitoslides
can't resolve did problem
changes to CSS for TCP
update changelog and fix typo in Makefile
change names of a few things for consistency, and do better with <text> in <group>
2014-12-21 Sebastian Rahtz <[email protected]>
change names of a few things for consistency, and do better with <text> in <group>
reverse logo for tcp
2014-12-20 Sebastian Rahtz <[email protected]>
rename an id. better CSS for TCP
2014-12-19 Sebastian Rahtz <[email protected]>
still fixing milestones in TCP
2014-12-18 Sebastian Rahtz <[email protected]>
tweak milestones in TCP to TEI
2014-12-17 Sebastian Rahtz <[email protected]>
more changed results
2014-12-17 Sebastian Rahtz <[email protected]>
slew of changed results resulting changes to text in plain mode
more conditions under which milestone stays as milestone in TCP conversion
CSS for TCP
take explicit label handling out of html
move label and milestone handling to common area
text(0 manipulation applies in plain mode too
milestones as child of body stay as is, in TCP conversion
fix typo, better resyyls
use char:EOLhyphen in rendering; handle FLOATEXT|LICENSE|LETTER in TCP conversion more regularly
2014-12-16 Sebastian Rahtz <[email protected]>
allowing for label/@type=milestone
simple handling of milestone in TCP
2014-12-16 Sebastian Rahtz <[email protected]>
remove duplicate template and adjust expected results
replace editorialDecl and availability in TCP; make sure comments are preserved
2014-12-15 Sebastian Rahtz <[email protected]>
tweak TCP display
2014-12-12 lb42 <[email protected]>
tweak slide production for oulipo
2014-12-09 Sebastian Rahtz <[email protected]>
tel to nlm cant access functions
2014-12-08 Sebastian Rahtz <[email protected]>
adding comments
2014-12-07 Sebastian Rahtz <[email protected]>
misunderstood change
allow for change in Tite from <cols> to <colShift>
2014-12-05 Sebastian Rahtz <[email protected]>
correct a universal typo
2014-12-03 Sebastian Rahtz <[email protected]>
results cghanged
tcp css
tcp CSS location
improve word tokenzing
rename ecco profile to tcp, adjust slightly and add HTML
2014-12-01 Sebastian Rahtz <[email protected]>
make sure @role values are lower case
2014-12-01 Sebastian Rahtz <[email protected]>
extra changed results
2014-11-30 Sebastian Rahtz <[email protected]>
remove debug
redo metadata generated in schema, to show the docDate from the ODD if present
2014-11-27 Sebastian Rahtz <[email protected]>
use empty <g> for EOLhyphen
2014-11-26 Sebastian Rahtz <[email protected]>
get the EOLhyphen right
change the way EOLhyphen handled (use a <g> to be safe)
2014-11-25 Sebastian Rahtz <[email protected]>
remove dross
2014-11-23 Sebastian Rahtz <[email protected]>
tweaking inline/block generation in HTML
2014-11-20 Martin <[email protected]>
Adding one more period to the footer as part of http://sourceforge.net/p/tei/bugs/690/.
2014-11-19 Martin <[email protected]>
Adding a period to the footer.
2014-11-19 Sebastian Rahtz <[email protected]>
typo in Makefile
2014-11-19 Sebastian Rahtz <[email protected]>
fix incorrect doc summary
apply NFC normalize-unicode to text
change to results cos of TCP2TEI
prefixDef for char: scheme
2014-11-18 Sebastian Rahtz <[email protected]>
lets use Unicode 00AD instead of complex <lb/> markup
2014-11-16 Sebastian Rahtz <[email protected]>
dont try and reload header (TCP)
2014-11-13 Sebastian Rahtz <[email protected]>
make sure encoding right
2014-11-12 Sebastian Rahtz <[email protected]>
update tags
rename and improve documentation, clean up and minimally document profiles
2014-11-12 martindholmes <[email protected]>
Fixing typo.
Expanding explanation of profiles and fixing a broken attribute name in teixsl.xml.
2014-11-11 Sebastian Rahtz <[email protected]>
very shakespeare specific
2014-11-10 Sebastian Rahtz <[email protected]>
typo, missing @mode
lb/pb make spaces in plain text
adjust tcp2tei again
whoops lost @resp on GAP
2014-11-09 Sebastian Rahtz <[email protected]>
tcp sample changed
2014-11-09 lb42 <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
update word style names
2014-11-09 Sebastian Rahtz <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
only omit Q if it has no text
2014-11-09 Sebastian Rahtz <[email protected]>
make sure @place attributes are lower-case
2014-11-07 Sebastian Rahtz <[email protected]>
make new release 7.26
fall out from long s
we can safely drop a wrapper q around a floatingText
turn long s into short s
results files changed because of adding gaiji module, IDs vary
update oddbyexample output
2014-11-06 Sebastian Rahtz <[email protected]>
explicit sypport for <g>, improve <expan>
changed test results
2014-11-06 lb42 <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
revert to using @include rather than elementRefs (since the latter loses declaration order)
2014-11-04 Sebastian Rahtz <[email protected]>
more special cases for marginal notes; process p in sp more like other p
drop double-nested Q
changed results (order of attributes)
gloss lists
2014-11-03 Sebastian Rahtz <[email protected]>
changed results
more special cases of notes in block objects
2014-11-02 Sebastian Rahtz <[email protected]>
and another
more situations where a marg note is a div
plain <q> is much more often a span. changed tests to show this
change in TCP processing
2014-11-02 Sebastian Rahtz <[email protected]>
tcp dates
tcp dates
2014-11-02 Sebastian Rahtz <[email protected]>
allow for month names in dates
limit date hacking
no, dont force @n
keep @n on <pb> in TCP
a set of tweaks to make valid and nicer epub from TCP
2014-11-01 Sebastian Rahtz <[email protected]>
changed results
use aside for all marginal notes inside <p> or <head>, adjust into <span> in pass 2
update TCP sample text
create @when on publication date
dont special-case generateDate in OTA profile
when producing dates, check for existence of @when
add @when to <date> if it contains parenthetical info
adjust splitHTMLBlocks code to render marginal notes using only span
2014-10-31 Sebastian Rahtz <[email protected]>
typo
restore @module to classSpec and only remove it at the last minute
@style is global too
trust version control, Luke
2014-10-31 lb42 <[email protected]>
update test resuylts
remoue redundant module= which was upsetting schematron
2014-10-31 Sebastian Rahtz <[email protected]>
dont sort things
2014-10-30 Sebastian Rahtz <[email protected]>
changed results
rules about when a p is div
2014-10-30 Sebastian Rahtz <[email protected]>
avoid dependency on local file names
move <aside> to end of current paragraph
change expected results from extra note tests
2014-10-30 lb42 <[email protected]>
make output p5 conformant
2014-10-30 Sebastian Rahtz <[email protected]>
restore oddbyexample
2014-10-30 Lou Burnard <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
Conflicts:
tools/oddbyexample.xsl
2014-10-29 Sebastian Rahtz <[email protected]>
starting to look at using <aside> for marginal notes
make <aside> like marginal note
singleton figure in singleton p in note can skip its p
2014-10-29 Sebastian Rahtz <[email protected]>
make footnote lists used consistent criteria
add @type onto all milestone->note transforms
2014-10-28 Sebastian Rahtz <[email protected]>
make sure oddbyexample copies over macros and model classes which are not in tei module
2014-10-28 Sebastian Rahtz <[email protected]>
rewrite oddbyexample a lot. dont use moduleRef any more
2014-10-27 Sebastian Rahtz <[email protected]>
deleted attributes have no effect when making schenas
allow for subsets by module
rethinking bits of oddbyexample, to do with inherited class attributes
2014-10-27 Lou Burnard <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
2014-10-27 Sebastian Rahtz <[email protected]>
typo
keep better track of deleted attributes
milestone inside speech should be marginal note too
2014-10-24 Sebastian Rahtz <[email protected]>
improve ODD to CSV
2014-10-23 Sebastian Rahtz <[email protected]>
can't use profiles for simple transforms
add test for "oucs" course docs
typo
declare tei: prefix
2014-10-22 Sebastian Rahtz <[email protected]>
typo
supporting output format of verbatimxml
2014-10-21 Sebastian Rahtz <[email protected]>
useful script for analyzing odd
preparing for new version
2014-10-20 Sebastian Rahtz <[email protected]>
RELEASE 7.25
changed test files
2014-10-19 Sebastian Rahtz <[email protected]>
test results
odd2json changes to get title right
default to JSON not js
show source being read
2014-10-17 Sebastian Rahtz <[email protected]>
force line break in gloss list where item content is a list
2014-10-15 Sebastian Rahtz <[email protected]>
put more options into odd to tree; add d3 drag n drop tree to options for tree rendering
move utilities into right place
make cleaner JSON
updated test results after CSS change
2014-10-14 Sebastian Rahtz <[email protected]>
avoid too brutal a test
not understanding how to compare multiple values of @place
rename functions consistently
<p> within margin note changed to span, which needs extra CSS
2014-10-13 Sebastian Rahtz <[email protected]>
add teitoschematron script
2014-10-13 Sebastian Rahtz <[email protected]>
rename bitOut to schemaOut, and clear up constraintSpec processinh in weave mode
undo overenthusiastic filtering of classRefs
making sure pure odd comes out right in documentation
2014-10-11 Sebastian Rahtz <[email protected]>
handle minOccurs default
handle *Ref properly in <content> in odd2odd
rethink handling of maxOccurs and minOccurs
remove phrase "all rights reserved" as its meaningless
2014-10-10 Sebastian Rahtz <[email protected]>
remove all reference to @allowText
2014-10-10 Sebastian Rahtz <[email protected]>
fix typo which was zapping datatypes from DTDs
switch to using textNode in test files
correct error in odd2dtd over handling classes; fixed tests
correcting DTD generation from Pure ODD
2014-10-09 Sebastian Rahtz <[email protected]>
textNode in DTD
starting trying to do textNode in DTD
start implementing <textNode>
2014-10-08 Sebastian Rahtz <[email protected]>
clean up mess around CSS
keep odd CSS separate
more working on checking @rend against possibility of multiple values
2014-10-07 Sebastian Rahtz <[email protected]>
recast expression
if a label has an xml:id, means @id in HTML
tweaking TCP conversion for more edge cases
2014-10-06 Sebastian Rahtz <[email protected]>
bibl as parent of label means make a marginal note
@role on row
leave @role alone on cell and row
need access to functions in doc/param.xsl
redo the way we look at @rend, allowing always for multiple values
change values for some of the rend attributes
2014-10-02 Sebastian Rahtz <[email protected]>
change to rule over whether pb makes a span or div
from ancestor::lg to parent::lg
make sure dc:date in epub only has numbers in
add code to TCP to conversion to unravel nested <p>
changed results
2014-10-02 Sebastian Rahtz <[email protected]>
tortuous TCP processing rules
2014-10-02 Sebastian Rahtz <[email protected]>
ota profile does not need to do anything special with pb
@facs targets starting with tcp: dont get processed
being more explicit about images on <pb>
2014-10-01 Sebastian Rahtz <[email protected]>
a publicationStmt with no publisher generates a wrapper <p>
in TCP to TEI conversion. child pubPlace turns to a <name>
2014-09-30 Sebastian Rahtz <[email protected]>
simplify previous change to allow for more circumstances
catch one more situation of ambiguous content
when a zeroOrMore is following by an optional with an identical
zeroOrMore
2014-09-30 Sebastian Rahtz <[email protected]>
chanegd test file
use protocol tcp: instead of eebopage:
2014-09-29 Sebastian Rahtz <[email protected]>
allow stage/stage in TCP; find funny dates in TCP for epub
fixes to epub and TCP conversion
make sure publicationStmt obeys new rules about order of elements
2014-09-28 Sebastian Rahtz <[email protected]>
changed slides to default to Helvetica
extra parameter to permit oddbyexample ignore the header when calculating results for attribute lists
2014-09-24 Sebastian Rahtz <[email protected]>
allow for filename prefix when running oddbyexample
2014-09-23 Sebastian Rahtz <[email protected]>
treat @rendition like @rend in oddbyexample
2014-09-23 Sebastian Rahtz <[email protected]>
fix error making table row about deprecation in tagdoc output
mistakenly made 2-column span if on atttribute
2014-09-21 Sebastian Rahtz <[email protected]>
start new version
2014-09-20 Sebastian Rahtz <[email protected]>
RELEASE 7.24
amusing ourselves fixing Cocoa converter a bit
Merge branch 'master' of https://github.com/TEIC/Stylesheets
Conflicts:
profiles/default/csv/from.xsl
clean up, embed and test Cocoa conversion
discard $Id$ in comments; Git doesn't expand them
2014-09-19 Sebastian Rahtz <[email protected]>
more fallout from <title> processing
correct typos
changed result after fixing series title
put space after series title
2014-09-18 Sebastian Rahtz <[email protected]>
start support for cocoa to tei
some changes arising from textcrit changes
2014-09-18 Sebastian Rahtz <[email protected]>
clean up handling of <app>
make it consistent across output formats
2014-09-17 Sebastian Rahtz <[email protected]>
more results changed cos of P5 release
2014-09-16 Sebastian Rahtz <[email protected]>
fall out from marginal note changes
fallout of marginal note handling
changed results from P5 2.7.0 release
better handling of @place on <note>. avoid throwing away marginal notes!
allow for multi-value @rend, and test better against possibilities
2014-09-16 Sebastian Rahtz <[email protected]>
allow for multi-value @rend, and test better against possibilities
2014-09-14 Sebastian Rahtz <[email protected]>
revised test output from html2tei
catch some attributes on tables when converting from html, use html namespace
annoyingly, duplicate function
scripts doing schematron extraction should avoid using include, upsets oxgarage
2014-09-13 Sebastian Rahtz <[email protected]>
do NOT treat gloss and desc the same
protect gloss labels in LaTeX; testing issue with gloss labels means changes to result docs.
improving the way trees are processed
2014-09-12 jamescummings <[email protected]>
changing monospaced font
2014-09-12 jamescummings <[email protected]>
changing logo size
setting verboseSpecDesc to 'false' by default
changing to orchid colour theme, I mean.
changing to rose colour theme
Just changing fonts, feel free to change but only to something everyone has.
2014-09-11 Sebastian Rahtz <[email protected]>
cleaning up and extending tree processing
2014-09-09 Sebastian Rahtz <[email protected]>
tweak sizes in trees
2014-09-09 Syd Bauman <[email protected]>
merge, I guess
Hack to handle multiple <sch:ns> w/ same URI
2014-09-09 Sebastian Rahtz <[email protected]>
make trees be have rectangles not circles, and put label inside box
fun with decorating trees
2014-09-09 Sebastian Rahtz <[email protected]>
playing with dynamic d3 trees
playing with trees
2014-09-08 Sebastian Rahtz <[email protected]>
restore simple templates for mode="inLanguage"
Revert a362f5d..591ae12
This rolls back to commit a362f5dd12394575269d73ef0101d27240a8eca2.
Revert baadfb4..a362f5d
This rolls back to commit baadfb480aa2e21064c46d844c0e16a6dcd0fa43.
small problems in eTree to d3.js; start thinking about better TEI structure to tree
2014-09-07 Syd Bauman <[email protected]>
finally committing my chnages of a month or two ago that generate a pop-up of a brief description for links to constructs from the tagdoc (by putting the <gloss> and <desc> into the title= of the <html:a>)
Merge branch 'master' of https://github.com/TEIC/Stylesheets
2014-09-06 Sebastian Rahtz <[email protected]>
switch to assuming ant 1.9.* for zipping
2014-09-05 Syd Bauman <[email protected]>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
Actual change (comment added) apparently made 2014-01-13
2014-09-04 Sebastian Rahtz <[email protected]>
changed results
2014-09-03 Sebastian Rahtz <[email protected]>
supply explicit prefix in ODD to avoid conflict with builtin
2014-09-03 Sebastian Rahtz <[email protected]>
suppress duplicate redefined <define>s when making RNG from ODD
2014-09-03 Sebastian Rahtz <[email protected]>
Merge pull request #55 from music-encoding/fix-path-spaces
Fixed: Spaces in paths
2014-09-02 Andrew Hankinson <[email protected]>
Fixed: Spaces in paths
Previously, using single-quotes would result in a nearly-empty output schema.
This commit fixes this issue by using escaped double-quotes. This fix has been tested on paths with and without spaces.
Fixes #53.
2014-08-31 Sebastian Rahtz <[email protected]>
<include> in relaxing code can have content, not just an href
2014-08-27 Sebastian Rahtz <[email protected]>
make script p4totei work
2014-08-26 Sebastian Rahtz <[email protected]>
avoid empty font-family property
redo verbatim attribute formatting again
2014-08-26 Sebastian Rahtz <[email protected]>
rethink the way formatting of verbatim attributes is done, to take account of available space
implement test for "attsOnSameLine" in verbatim properly
2014-08-24 Sebastian Rahtz <[email protected]>
more protection against spaces in directory names
2014-08-19 tuurma <[email protected]>
Merge pull request #52 from tuurma/master
adding new test file test39.docx
2014-08-19 Magdalena Turska <[email protected]>
adding new test file test39.docx
2014-08-19 tuurma <[email protected]>
Merge pull request #51 from tuurma/master
front and titlePage in docxtotei
2014-08-19 Magdalena Turska <[email protected]>
front and titlePage in docxtotei
front and titlePage in docxtotei
2014-08-18 Magdalena Turska <[email protected]>
front matter in docx 2 tei
2014-08-05 Sebastian Rahtz <[email protected]>
releasing 7.22
start mediawiki transform
trap w:instrText biblio-related things better. avoid singleton anchor if we can
2014-08-05 Sebastian Rahtz <[email protected]>
RELEASE 7.22
start mediawiki transform
trap w:instrText biblio-related things better. avoid singleton anchor if we can
2014-08-04 Sebastian Rahtz <[email protected]>
pre-declare individual attributes as well as their classes
2014-07-29 Sebastian Rahtz <[email protected]>
make sure "bulleted" is supported
2014-07-20 Sebastian Rahtz <[email protected]>
updated LaTeX output files
need to protect \\ from following []
Merge branch 'master' of https://github.com/TEIC/Stylesheets