forked from TEIC/Stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4931 lines (3337 loc) · 152 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-08-05 Sebastian Rahtz <sebastian.rahtz@gmail.com>
RELEASE 7.22
start mediawiki transform
trap w:instrText biblio-related things better. avoid singleton anchor if we can
2014-08-04 Sebastian Rahtz <sebastian.rahtz@gmail.com>
pre-declare individual attributes as well as their classes
2014-07-29 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
make sure "bulleted" is supported
2014-07-20 Sebastian Rahtz <sebastian.rahtz@gmail.com>
updated LaTeX output files
need to protect \\ from following []
Merge branch 'master' of https://github.com/TEIC/Stylesheets
Merge branch 'SemanticsOS-lambdafu/hypersetup'
Merge branch 'lambdafu/hypersetup' of https://github.com/SemanticsOS/Stylesheets into SemanticsOS-lambdafu/hypersetup
Conflicts:
latex/latex_param.xsl
Merge pull request #40 from SemanticsOS/lambdafu/uline
fix underline in latex output
Merge pull request #47 from SemanticsOS/lambdafu/lb-in-div
allow lb in div elements
Merge pull request #41 from SemanticsOS/lambdafu/marginleft
put left margin notes in the reverse margin in LaTeX output
Merge pull request #44 from SemanticsOS/lambdafu/marginfont
make margin font in LaTeX output configurable
Merge pull request #42 from SemanticsOS/lambdafu/pagebreakstyles
add pagebreakstyles plain and sidebyside to LaTeX output
Merge pull request #45 from SemanticsOS/lambdafu/pagestyle
make pagestyle in LaTeX output configurable
Merge pull request #46 from SemanticsOS/lambdafu/linebreaks
fix newline in center env in LaTeX output
2014-07-19 lb42 <lou.burnard@retired.ox.ac.uk>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
some more changes from Camille
2014-07-17 Marcus Brinkmann <m.brinkmann@semantics.de>
allow lb in div elements
fix newline in center env in LaTeX output
make pagestyle in LaTeX output configurable
make margin font in LaTeX output configurable
make hypersetup in LaTeX output configurable
add pagebreakstyles plain and sidebyside to LaTeX output
put left margin notes in the reverse margin in LaTeX output
2014-07-16 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Merge pull request #38 from SemanticsOS/lambdafu/hr
fix hr milestones in latex output
Merge pull request #39 from SemanticsOS/lambdafu/quotEnv
parametrize the quote environment to use in latex output
2014-07-15 Marcus Brinkmann <m.brinkmann@semantics.de>
fix underline in latex output
parametrize the quote environment to use in latex output
fix hr milestones in latex output
2014-07-15 Sebastian Rahtz <sebastian.rahtz@gmail.com>
directory name needs checking for stupid Windows c: too
2014-07-15 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
protect against windows filenames again
2014-07-13 Sebastian Rahtz <sebastian.rahtz@gmail.com>
bits and pieces making slides
2014-07-07 Sebastian Rahtz <sebastian.rahtz@gmail.com>
trying to make odd2odd decorate its results with more info about whether something is a change or not
typo
library of functions to generate JSON markup
rubbish
Merge pull request #37 from raffazizzi/master
adding attribute values, if they are specified
2014-07-07 raffazizzi <raffaeleviglianti@gmail.com>
adding attribute values, if they are specified
2014-07-04 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
zap backup files
2014-07-04 lb42 <lou.burnard@retired.ox.ac.uk>
restore oulipo profile
restore agora profile
2014-07-03 lb42 <lou.burnard@retired.ox.ac.uk>
trying to correct from.xsl again
2014-07-03 Lou Burnard <lou.burnard@retired.ox.ac.uk>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
Conflicts:
profiles/default/p4/from.xsl
handle nonstandard attributes on <hand> properly require content for sourceDesc
2014-07-03 Sebastian Rahtz <sebastian.rahtz@gmail.com>
add htmltotei script, and make html2tei code work with HTML not in XHTML namespace as well
2014-07-02 Sebastian Rahtz <sebastian.rahtz@gmail.com>
start new version
turn comments into proper doc elements
do a new release
update change log
2014-07-01 Sebastian Rahtz <sebastian.rahtz@gmail.com>
more locating of Saxon
where is saxon
getting saxon
latex files change
get Saxon jar file from same place as trang, i.e. ../lib
add chance of passing a title with an external link
Merge pull request #33 from SemanticsOS/lambdafu/marginparingeometry
move marginparwidth to parameter latexGeometryOptions
2014-07-01 Sebastian Rahtz <sebastian.rahtz@gmail.com>
more locating of Saxon
where is saxon
getting saxon
latex files change
get Saxon jar file from same place as trang, i.e. ../lib
add chance of passing a title with an external link
Merge pull request #33 from SemanticsOS/lambdafu/marginparingeometry
move marginparwidth to parameter latexGeometryOptions
Merge pull request #32 from SemanticsOS/lambdafu/rendcenter
add support for p with @rend='center'
Merge pull request #34 from SemanticsOS/lambdafu/bracketinheading
fix brackets in heading
Merge pull request #31 from SemanticsOS/lambdafu/escapepercent
fix percent character in URLs
2014-07-01 Marcus Brinkmann <m.brinkmann@semantics.de>
move marginparwidth to parameter latexGeometryOptions
add support for p with @rend='center'
fix brackets in heading
fix percent character in URLs
2014-07-01 Sebastian Rahtz <sebastian.rahtz@gmail.com>
revert behaviour which allows exclusion of classes/macros on moduleRef.
Follow wording of guidelines which say that @include and @except only
applies to elements.
2014-06-30 Sebastian Rahtz <sebastian.rahtz@gmail.com>
only check @except not @include when looking for classSpec in moduleRef
2014-06-29 Sebastian Rahtz <sebastian.rahtz@gmail.com>
extra param to preserve font-size changes in dock to TEI (false by default)
make doubly sure classSpec/@mode='delete' really does zap things, and that @exclude on moduleRef applies to classes too
odd2odd changes are too radical
2014-06-27 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
support millimetres
2014-06-26 Sebastian Rahtz <sebastian.rahtz@gmail.com>
need to copy attributes of <memberOf>
more shortened results
odd2odd now much more brutal in removing classes, and references to them, which are not used
json changed
dropping memberOf
block quotes can't contain list. HTML is so dumb.
allow for uppercase file extensions in graphics files
drop memberOf if referenced class does not exist
2014-06-25 Sebastian Rahtz <sebastian.rahtz@gmail.com>
nested <ab> in ODT should not produce nested <p>
need to make a new version, dock to TEI error too bad.
2014-06-25 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
allow for many heads
2014-06-25 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
allow for many heads
2014-06-22 Sebastian Rahtz <sebastian.rahtz@gmail.com>
dont preserve font size and dont ignore empty <hi>
2014-06-21 Sebastian Rahtz <sebastian.rahtz@gmail.com>
better message from missing object
stop unknown @place on <note> being a terminal error
2014-06-20 Sebastian Rahtz <sebastian.rahtz@gmail.com>
changed results
redo the way merging of <hi> works, by doing it on basis of concatenation of @rend and @style
put visible marker where content thrown away, as well as marginal note
2014-06-19 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
release of version 7.18
2014-06-18 Sebastian Rahtz <sebastian.rahtz@gmail.com>
start release of new version 7.18
allow extra element in pure odd test. s
Merge branch 'master' of https://github.com/tuurma/Stylesheets
Conflicts:
xlsx/xlsxtotei.xsl
2014-06-18 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
format dates in xlsx to tei
2014-06-18 Sebastian Rahtz <sebastian.rahtz@gmail.com>
VERSION 7.18 released
Merge branch 'master' of https://github.com/tuurma/Stylesheets
Conflicts:
xlsx/xlsxtotei.xsl
2014-06-18 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
format dates in xlsx to tei
2014-06-18 Sebastian Rahtz <sebastian.rahtz@gmail.com>
drop unwanted namespace decls
t push origin masterZZMerge branch 'tuurma-master'
Merge branch 'master' of https://github.com/tuurma/Stylesheets into tuurma-master
Conflicts:
xlsx/xlsxtotei.xsl
make odd2dtd work with Pure Odd a bit more properly
2014-06-18 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
conversion of dates from xls 1900 format
conversion of dates from xls 1900 format
2014-06-18 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
changed results from pure ODD schema
disable odd2dtd on Pure pro tem
put back pure test
Merge branch 'master' of https://github.com/TEIC/Stylesheets
Conflicts:
Test/test-pure.odd
more organized Pure ODD tests
2014-06-18 lb42 <lou.burnard@retired.ox.ac.uk>
Merge branch 'master' of https://github.com/TEIC/Stylesheets
2014-06-18 Sebastian Rahtz <sebastian.rahtz@gmail.com>
odd2dtd needs fixing around allowText
improve handling of @allowText in pure odd
2014-06-17 Sebastian Rahtz <sebastian.rahtz@gmail.com>
cover more areas of pure odd, relating to allowText
default for LineBreakAsPara
rethink wordpress to TEI for the n-th time. really, its hard getting out of that escaped content rubbish
a reminder note about dates in XSLX
dont wrap figures in latex unless they are singletons. that code is rubbish
allow for a case where <lb/> really means "make like a new paragraph"
2014-06-16 Sebastian Rahtz <sebastian.rahtz@gmail.com>
improve identification in wordpress
2014-06-15 Sebastian Rahtz <sebastian.rahtz@gmail.com>
blank line before begin{quote}
support figure wrap in latex
fix problem of attributes on p in wordpress to tei
change message a little in ant script
rethink the way to handle evil Word w:instrText and <ref> generation. look at <ref> in more detail in pass2
2014-06-11 Sebastian Rahtz <sebastian.rahtz@gmail.com>
consistent handling of block quote in tei to dock
handling quotes better
pure odd test file
Merge pull request #24 from tuurma/master
docxtotei preserving formatting from word styles in @style
2014-06-11 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
docxtotei preserving formatting from word styles in @style
2014-06-09 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Merge pull request #23 from ahankinson/fix-syntaxerror
Fixed: Missing quotation mark
2014-06-08 Sebastian Rahtz <sebastian.rahtz@gmail.com>
working on extra tests for pure ODD
2014-06-07 Sebastian Rahtz <sebastian.rahtz@gmail.com>
output from docxtotei changes, with added ID
deal with Word objects better, and give docxtotei a way of showing warnings (marginal note)
2014-06-06 Andrew Hankinson <andrew.hankinson@gmail.com>
Fixed: Missing quotation mark
A quotation mark was missing in transformtei which caused the help to format incorrectly.
2014-06-05 Sebastian Rahtz <sebastian.rahtz@gmail.com>
simplify list-identifying function
use Arial for Oxford slides
Merge pull request #22 from tuurma/master
docx to tei: decide if style is a list, translation list for non-Unicode...
2014-06-05 lb42 <lou.burnard@retired.ox.ac.uk>
more tweaks for paolo
Merge branch 'master' of https://github.com/TEIC/Stylesheets
2014-06-05 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
docx to tei: decide if style is a list, translation list for non-Unicode chars in Symbol font
2014-06-05 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
use local-name of align attribute, in case we have used tei prefix
2014-06-04 Sebastian Rahtz <sebastian.rahtz@gmail.com>
put back ADDIN PAPERS and remove debug
Merge pull request #20 from tuurma/master
sciencejournal cell alignment (docx2tei), Symbol font (special case solu...
2014-06-04 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
sciencejournal cell alignment (docx2tei), Symbol font (special case solution only)
2014-06-04 lb42 <lou.burnard@retired.ox.ac.uk>
fix attendance lists etc in oulipo profile
2014-06-03 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Merge pull request #19 from tuurma/master
sciencejournal fix
2014-06-02 Lou Burnard <lou.burnard@retired.ox.ac.uk>
stylesheet updates
2014-06-01 Sebastian Rahtz <sebastian.rahtz@gmail.com>
included oxford logo in slides
another bibliographic database; change of result, lost a <div>; lose useless empty <seg>
pinning down when something in Word is or isn't in bold. check set for super or subscript
refine rule about when space at start of piece of text is discarded. obscure.
2014-05-29 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
fixed empty titles in html/head
2014-05-28 Sebastian Rahtz <sebastian.rahtz@gmail.com>
layer of dross removed from footnote reference
the situation where there is space with a style of footnote reference in Word must be just wrong. suppress the style
2014-05-28 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
docx to tei empty w:hyperlinks shouldn't be converted to refs
sciencejournal tests deleted
2014-05-28 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
move aside sciencejournal tests
2014-05-28 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Merge pull request #18 from tuurma/master
Sciencejournal fix
2014-05-28 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
sciencejournal cleanup
sciencejournal cleanup
sciencejournal cleanup
sciencejournal cleanup
tei-to-html empty refs
teitohtml omit empty ref elements not containing @target
2014-05-27 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
sciencejournal
Merge remote-tracking branch 'upstream/master'
sciencejournal test
2014-05-26 Sebastian Rahtz <sebastian.rahtz@gmail.com>
rejig the way lists are detected, again. zap empty lists.
some reworking of the way lists in Word are detected
unpleasant special case <hi> starting with a space and preceding element being also a hi
allow for last column and last row rules as well in dock table style
better table styles in docx to tei
when reading dock, take account of table style table and look up
styles.xml to find overrides for first column and first row
2014-05-23 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
CSV writing needs directory separator
install markdown and wordpress
fixing apperance of sciencejournal. start on extrapolating table styles (unfinished)
2014-05-22 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
simplify sciencejournal profile and have it look for titles better
remove small file with just a few templates in
2014-05-21 Sebastian Rahtz <sebastian.rahtz@gmail.com>
test output had gone slightly awry
makeTEIStructure was out of sync
2014-05-21 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
target name in Makefile
markdown tests, and zap bad files
Merge branch 'master' of https://github.com/tuurma/Stylesheets
2014-05-21 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
markdown test files
2014-05-21 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
Merge branch 'tuurma-master'
Merge branch 'master' of https://github.com/tuurma/Stylesheets
Merge branch 'master' of https://github.com/tuurma/Stylesheets into tuurma-master
Conflicts:
Test/Makefile
common/common_makeTEIStructure.xsl
2014-05-21 Magdalena Turska <magdalena.turska@it.ox.ac.uk>
markdown mods
markdown mods
markdown mods
markdow mods
markdown mods
markdown mods
2014-05-21 Magdalena Turska <ouit0180@bogof.nsms.ox.ac.uk>
markdown mods
markdown test added
2014-05-20 Sebastian Rahtz <sebastian.rahtz@gmail.com>
typo and ambiguity
Zotero also adds private markup to Word
stripping _ off start of anchors and targets in Word
extra case of bold in Word
allow for superscript and subscript as just one token in @rend
allow for Endnote in Word, which embeds magic code using <instrText>. very very evil
style variants for sciencejournal
2014-05-19 Sebastian Rahtz <sebastian.rahtz@gmail.com>
new stylesheet release
2014-05-16 martindholmes <mholmes@uvic.ca>
Adding what I think is a working fix for the bug at https://github.com/TEIC/Stylesheets/issues/15 Only briefly tested for now.
2014-05-16 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
consistency in mode='add' or not(@mode)
make key MEMBEROFADD more precise, ie just mode=add. thanks to Richard Lewis
explicit route to attribute
fix eror in debug message, which shows wrong variable
2014-05-15 Lou Burnard <lou.burnard@retired.ox.ac.uk>
no accents in stylenames, apparently
title not titre
updates to oulipo profile
2014-05-15 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
name
type name
config for OxGarage for markdown and wordpress
page size changes in generated docx
Word page size defaults to A4; protect dirnames in transformtei
2014-05-13 Sebastian Rahtz <sebastian.rahtz@gmail.com>
quotes around variables which may contains spaces (i.e. directory names)
2014-05-12 Sebastian Rahtz <sebastian.rahtz@gmail.com>
discovered some missing changed results (alterations to test6)
2014-05-11 Sebastian Rahtz <sebastian.rahtz@gmail.com>
error in xref in Word generation; and in Ant script to make PDF
2014-05-10 Sebastian Rahtz <sebastian.rahtz@gmail.com>
generalise handling of generated relationships files for notes
2014-05-09 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
comment
relationships file needs to be separately constructed for elements in footnotes and endnotes. unfinished task!
2014-05-06 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
starting new version
2014-05-05 Sebastian Rahtz <sebastian.rahtz@gmail.com>
strip off any filename components from @xml:base before using
2014-05-04 Sebastian Rahtz <sebastian.rahtz@gmail.com>
add parameter "ignoreXmlBase" which will stop @xml:base being prepended to URLs
stop calling verbatim escape mechanisms twice on long verbatim attribute values
2014-05-03 Sebastian Rahtz <sebastian.rahtz@gmail.com>
name of parameter wrong
break in title before post date; stop ignoring CSS files
try to make nested lists work better in conversion to Open Office. add test of this
2014-05-01 Sebastian Rahtz <sebastian.rahtz@gmail.com>
latex ant task copies graphics files
deal with ampersands from Wordpress
handling of figures in tei to latex to pdf follows same pattern as elsewhere. forget FIGMAP thing.
list inside gloss list item in tei to oct a bit better
2014-05-01 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
the "realiFigure" parameter simply wasnt working.
some wicked old errors in Oxford profile
more niceties in wordpress to TEI
filter out draft posts
2014-04-30 Sebastian Rahtz <sebastian.rahtz@gmail.com>
handle content:encoded in Wordpress, translate from HTML. phew, thats hard.
2014-04-30 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
tweaking wordpress to tei
start on Wordpress to TEI
corrections from Torsten Schassan
2014-04-29 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
keep attributes of <content> as well as children when doing odd2odd
2014-04-28 Sebastian Rahtz <sebastian.rahtz@gmail.com>
yeah how about testing it next time eh
make tei to nlm free-standing
sorting of bibliography now correct
2014-04-28 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
take sortKey into account
fix sorting of listBibl
dont introduce spurious space unless justified
remove output of test38
allow for @src on video or on child source; if there are multiple source, use just the first
2014-04-27 Sebastian Rahtz <sebastian.rahtz@gmail.com>
need new version because of LaTeX linking changes
rethink the way hyperlinks are converted to LaTeX; go back to the native method of label and hyper ref. lots of fall out from that
converting media
add @type when converting to media, to show what source element was
notes on OOXML namespaces we'll need one day
2014-04-26 Sebastian Rahtz <sebastian.rahtz@gmail.com>
doc nodes can't have attributes.
use right name for function
making sure all Schematron constraints get a unique ID
improve HTML to TEI and make test for it
function to work out mime type from file name where needed
scripts for nlm and csv conversions; tweak docbook
2014-04-25 Sebastian Rahtz <sebastian.rahtz@gmail.com>
fix error in tei to NLM
2014-04-24 Sebastian Rahtz <sebastian.rahtz@gmail.com>
fix error in bin/ symlinks links and make new release
2014-04-23 Sebastian Rahtz <sebastian.rahtz@gmail.com>
wrong path in import
mixed a result, of course
add info to HTML output to better support round-tripping
2014-04-22 Sebastian Rahtz <sebastian.rahtz@gmail.com>
typo
2014-04-21 Sebastian Rahtz <sebastian.rahtz@gmail.com>
LaTeX conversion failing to make hyperlink targets in enough places
date stamp in test resul
one more attempt to avoid warning from extract-isoc.xsh
command-line scripts and ant tasks for markdown
2014-04-20 Sebastian Rahtz <sebastian.rahtz@gmail.com>
default templates for tei:* to ship up Saxon warnings
tweak markdown
Markdown to/from TEI, first go
starting work on TEI to Markdown
dont keep a style called 'Default Style' in Word to TEI
2014-04-17 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
updated Saxon
2014-04-16 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
updates for oulipo styles
put ... if @title on <a> exceeds cutoff length
improve sanitization of title attributes in HTML links
2014-04-16 Sebastian Rahtz <sebastian.rahtz@gmail.com>
making @title regexp should cover all scripts, of course, not just latin.
2014-04-15 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
restore generation of title attribute on internal hyperlinks in HTML
another use of findLanguage
import is allowed at top only
new function to identify appropriate language from xmL;lang (thanks to Syd)
2014-04-15 Sebastian Rahtz <sebastian.rahtz@gmail.com>
missed changed result files
2014-04-14 Sebastian Rahtz <sebastian.rahtz@gmail.com>
whoops. forgot that changed result file.
put all occasions when the ID of a Schematron constraint is worked out, and use a common function to generate it. this changes some results and adds a case to test21.odd
if @style and @rend are both used, combine them (in tei to html)
2014-04-14 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
change expected results of docx to tei
fix hyperlink in footnote in docx to TEI; also remember paragraph alignment
2014-04-14 jamescummings <James.Cummings@it.ox.ac.uk>
Adding normalize-space(.) to entity PI... just for safety.
2014-04-14 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
make entity PI work in all modes
fix ISO profile from docx. add test37 to test font effects
2014-04-12 Sebastian Rahtz <sebastian.rahtz@gmail.com>
remove debug message
.* is too vague; needs to be "anything except an ampersand"; add tests for this ampersand stuff. add PI for literal entities
allow for apes and quit after &
Merge branch 'master' of https://github.com/TEIC/Stylesheets
Conflicts:
common/verbatim.xsl
rename isoStyle parameter to preserveEffects
2014-04-11 jamescummings <James.Cummings@it.ox.ac.uk>
Actually that regex should probably be * instead of + shouldn't it...
Adding for case in egXML where you may wish to have &quot; in order to render as "
2014-04-09 jamescummings <James.Cummings@it.ox.ac.uk>
Fixing egXML bug where & wasn't escaped if there was no text node following.
2014-04-04 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
name of XSL wrong
2014-04-03 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
when looking for translations of texts, check for things with xml:lang='en' _or_ no @xml:lang. using just the latter fell over.
2014-04-03 Sebastian Rahtz <sebastian.rahtz@gmail.com>
use normal CSS for science journal
new profile, new release
2014-04-02 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
release 7.13.0
add some more headless directives and a last changed result
2014-04-01 Sebastian Rahtz <sebastian.rahtz@gmail.com>
and another unexpected changed result. hohoho
change results
getting right ID on summaryDoc in ODD to HTML
2014-03-31 Sebastian Rahtz <sebastian.rahtz@gmail.com>
get right link target in odd2lite when processing <gi>
2014-03-31 Sebastian Rahtz <sebastian.rahtz@gmail.com>
add pdf profile to oucs, rename to oxford. make processing of <eg> better
2014-03-28 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
valList is now shown in specDesc display
2014-03-27 Sebastian Rahtz <sebastian.rahtz@gmail.com>
release 7.12.0
even more changed results. sigh.
some output changed
kill *.css regardless
sort out where .css files are
2014-03-27 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
move CSS to own directory for clarity
2014-03-26 Sebastian Rahtz <sebastian.rahtz@gmail.com>
wrong path
move scripts into bin directory and adjust install accordingly
2014-03-23 Sebastian Rahtz <sebastian.rahtz@gmail.com>
load header in tcp to P5
rethink some odd2odd processing to allow for situation where an ODD overrides a spec which is already in change mode
2014-03-20 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
protest some close() with finally {}
2014-03-17 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
check file exists properly
check if file exists before reading
2014-03-13 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
move check of whether we are looking at a windows file to more generic place
2014-03-12 Sebastian Rahtz <sebastian.rahtz@gmail.com>
oucs html profile
2014-03-12 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
text size in table cells in docx again
2014-03-12 Sebastian Rahtz <sebastian.rahtz@gmail.com>
make small text in table cells in dock more specific to just list items
a) schema code in ODD document should have space preserved; b) do table headers right
indirect text in cells is 9pt; confusing, isn't it.
when generating <eg> in odd2lite, needs xml:space='preserve'
2014-03-11 Sebastian Rahtz <sebastian.rahtz@gmail.com>
row/role=label should trigger a thead in HTML.
2014-03-10 Sebastian Rahtz <Sebastian.Rahtz@it.ox.ac.uk>
dont use @xml:base if it starts file:, dont trust it
kill stupid character what crept into XSL
row back on using standard functions in HTML. cant get it to to fly nicely
small change in expected results
2014-03-09 Sebastian Rahtz <sebastian.rahtz@gmail.com>
clean up rendering in LaTeX and HTML to make more use of common functions