This repository has been archived by the owner on Nov 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
ChangeLog
4156 lines (3053 loc) · 113 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
2019-08-25 Peter Stadler <pstadler@mail.uni-paderborn.de>
only minor changes:
* removed some hard coded links and values
* update base image to Debian Buster (for the Docker image)
* fix problem parsing xml comment in a closed list #29
2018-07-18 Peter Stadler <pstadler@mail.uni-paderborn.de>
major overhaul:
* update to PHP7
* add Dockerfile for containerisation
2013-01-11 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
M /trunk/Roma/roma/roma.php
M /trunk/Roma/startroma.php
make template work:
2013-01-11 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
template not working
2012-11-16 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/VERSION
M /trunk/Roma/roma/stylesheets/listAddedAttributes.xsl
dont show attributes twice; partial fix to larger problem
2012-11-02 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma2.sh
revert to xmllint to do xinclude
2012-10-31 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/ChangeLog
D /trunk/Roma/roma/config.php
config.php is created,so shoould not be in VCS
2012-10-26 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma/romadom.php
more fixes for multibyte encoding from
Toma Tasovac
2012-10-26 Sebastian Rahtz <sebastian.rahtz@gmail.com>
VERSION 6.10
Changed paths:
M /trunk/Roma/roma/romadom.php
more fixes for multibyte encoding from
Toma Tasovac
2012-10-24 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/VERSION
start thinking of a new release
2012-10-24 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma/romadom.php
fixes from Toma Tasovac to use mb_ereg_,match instead of preg_match, to allow Cyrillic in forms
2012-10-23 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma/xml/roma.xml
M /trunk/Roma/startroma.php
more utf-8-isms
2012-10-22 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
M /trunk/Roma/roma/stylesheets/addAttribute.xsl
M /trunk/Roma/roma/stylesheets/addElements.xsl
M /trunk/Roma/roma/stylesheets/changeClasses.xsl
M /trunk/Roma/roma/stylesheets/changeModules.xsl
M /trunk/Roma/roma/stylesheets/listAddedAttributes.xsl
M /trunk/Roma/roma/stylesheets/listAddedElements.xsl
M /trunk/Roma/roma/templates/createDocumentation.tem
M /trunk/Roma/roma/templates/createSchema.tem
M /trunk/Roma/roma/templates/customizeCustomization.tem
M /trunk/Roma/roma/templates/customizeLanguage.tem
add accept-charset to forms
2012-10-10 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Documents/oddmanual/teidoc.css
M /trunk/P5/debian-tei-p5-database/debian/control
M /trunk/P5/debian-tei-p5-doc/debian/control
M /trunk/P5/debian-tei-p5-exemplars/debian/control
M /trunk/P5/debian-tei-p5-schema/debian/control
M /trunk/P5/debian-tei-p5-source/debian/control
M /trunk/P5/debian-tei-p5-test/debian/control
M /trunk/Roma/debian-tei-roma/debian/control
M /trunk/Stylesheets/common2/header.xsl
M /trunk/Stylesheets/debian-tei-p5-xsl2/debian/control
M /trunk/Stylesheets/debian-tei-p5-xslprofiles/debian/control
M /trunk/Stylesheets/debian-tei-xsl-common/debian/control
M /trunk/Stylesheets/xhtml2/header.xsl
M /trunk/Stylesheets-xslt1/debian-tei-p5-xsl/debian/control
email in Debian control files
2012-10-02 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/Makefile
M /trunk/Roma/index.html
M /trunk/Roma/roma2.sh
dont depend on local install
2012-09-27 Kevin Hawkins <kevin.s.hawkins@ultraslavonic.info>
Changed paths:
M /trunk/Roma/index.html
now link only to list of community customizations on www.tei-c.org
2012-09-21 Lou Burnard <lou.burnard@retired.ox.ac.uk>
Changed paths:
M /trunk/Roma/index.html
more tweaks
2012-09-21 Lou Burnard <lou.burnard@retired.ox.ac.uk>
Changed paths:
M /trunk/Roma/index.html
more rewording
2012-09-20 Lou Burnard <lou.burnard@retired.ox.ac.uk>
Changed paths:
M /trunk/Roma/index.html
revisions to Roma front end which seb couldnt face typing in
2012-09-20 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
BB's wording
2012-09-20 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
fix link
2012-09-20 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
line break
2012-09-20 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
missing /select
2012-09-20 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
M /trunk/Roma/startroma.php
reword as suggested by Council meeting
2012-09-04 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
no experimental
2012-07-08 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma2.sh
dont prefix with a call to xmllint --xinclude, let Saxon do it
2012-06-25 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma.1
add extra options to man page
2012-06-20 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
consistent spelling
2012-06-16 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
D /trunk/Roma/debian-tei-roma/debian/changelog
try with none
2012-06-16 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/debian-tei-roma/debian/changelog
deb
2012-06-16 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/Makefile
A /trunk/Roma/mydch
debian making
2012-06-16 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/ChangeLog
M /trunk/Roma/VERSION
new version
2012-06-16 Sebastian Rahtz <sebastian.rahtz@gmail.com>
VERSION 4.9
2012-06-08 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma/stylesheets/listAddedAttributes.xsl
sort attributes by name
2012-06-07 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma/res/createSchema.res
spelling of relax
2012-06-07 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/index.html
use word customization more carefully, and avoid schema word
2012-03-28 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma/config-dist.php
M /trunk/Roma/roma/config.php
M /trunk/Roma/roma/res/addAttributes.res
M /trunk/Roma/roma/res/addElements.res
M /trunk/Roma/roma/res/changeAttributes.res
M /trunk/Roma/roma/res/changeClasses.res
M /trunk/Roma/roma/res/changeElement.res
M /trunk/Roma/roma/res/changeModule.res
M /trunk/Roma/roma/res/createDocumentation.res
M /trunk/Roma/roma/res/createSchema.res
M /trunk/Roma/roma/res/customizeCustomization.res
M /trunk/Roma/roma/res/customizeLanguage.res
M /trunk/Roma/roma/res/listAttributes.res
M /trunk/Roma/roma/res/listElements.res
M /trunk/Roma/roma/res/main.res
M /trunk/Roma/roma/res/modules.res
M /trunk/Roma/roma/romadom.php
M /trunk/Roma/roma/templates/customizeCustomization.tem
M /trunk/Roma/roma/templates/customizeLanguage.tem
change chinese to zh-TW passim
2012-03-27 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/VERSION
M /trunk/Roma/roma/romadom.php
editing vallist
2012-03-27 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma/romadom.php
valList processing
2011-11-17 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma2.sh
make --localsource work properly with relative paths
2011-11-17 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/ChangeLog
changeloh
2011-11-17 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/debian-tei-roma/debian/changelog
M /trunk/Roma/roma/config-dist.php
M /trunk/Roma/roma/config.php
update deb version
2011-11-17 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/VERSION
M /trunk/Roma/roma2.sh
fix dumb typo
2011-11-17 Sebastian Rahtz <sebastian.rahtz@gmail.com>
Changed paths:
M /trunk/Roma/roma2.sh
name of latex directory
2011-11-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
VERSION 4.7
Changed paths:
M /trunk/Roma/debian-tei-roma/debian/changelog
M /trunk/Roma/roma/config-dist.php
M /trunk/Roma/roma/config.php
update deb version
2011-11-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/VERSION
M /trunk/Roma/roma2.sh
fix dumb typo
2011-11-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
name of latex directory
2011-11-14 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
back to odds2
2011-11-14 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
back to odds2
2011-11-08 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
M /trunk/Roma/roma/config-dist.php
M /trunk/Roma/roma/config.php
kill old zip files
2011-11-08 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/debian-tei-roma/debian/changelog
update debian version))
2011-11-07 jcummings
Changed paths:
M /trunk/Roma/roma/res/createSchema.res
M /trunk/Roma/roma/templates/createSchema.tem
adding English placeholders for schemaHelp text in createSchema.tem
2011-11-07 jcummings
Changed paths:
M /trunk/Roma/roma/templates/createSchema.tem
adding paragraph on schema languages
2011-11-05 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/roma.php
change licence
2011-11-05 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
adapt to new XSL layout
2011-11-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/ChangeLog
make release
2011-11-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/debian-tei-roma/debian/changelog
update debian packages
2011-11-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/ChangeLog
update log
2011-10-31 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/ChangeLog
M /trunk/Roma/VERSION
M /trunk/Roma/roma2.sh
use xinclude from xmllint; rebuild changelog
2011-10-31 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
saxon xinclude support is not complete
2011-10-31 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
RELEASE 4.6
Changed paths:
M /trunk/Roma/ChangeLog
M /trunk/Roma/VERSION
M /trunk/Roma/roma2.sh
use xinclude from xmllint; rebuild changelog
2011-10-31 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
saxon xinclude support is not complete
2011-10-31 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
saxon xinclude support is not complete
2011-10-18 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
get html via lite
2011-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/debian-tei-roma/debian/changelog
updated number in deb
2011-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
update deb version
2011-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/ChangeLog
M /trunk/Roma/VERSION
M /trunk/Roma/roma/romadom.php
tell oxgarage to use tei profile
2011-10-16 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/P5/Source/guidelines-en.xml
M /trunk/Roma/VERSION
M /trunk/Roma/roma2.sh
M /trunk/maketag
stop compile option in ROma from stripping out documentation
2011-10-16 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
release 4.5
Changed paths:
M /trunk/P5/Source/guidelines-en.xml
M /trunk/Roma/VERSION
M /trunk/Roma/roma2.sh
M /trunk/maketag
stop compile option in ROma from stripping out documentation
2011-10-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
dont ask xmllint to do xinclude, Saxon can do it on its own
2011-09-27 Syd Bauman <sbauman@brown.edu>
Changed paths:
M /trunk/Roma/roma2.sh
Oops -- apparently explicit switches are now required, at least for Jenkins
2011-09-27 Syd Bauman <sbauman@brown.edu>
Changed paths:
M /trunk/Roma/roma2.sh
Checking in a change I made for myself months ago, and works for me: perform XInclude processing on customization ODD before trying to find the first <schemaSpec> in it. This is (or at least was) needed for the TEI-in-Librararies ODD, IIRC.
2011-09-24 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
fix syntax errs
2011-09-24 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
redo calls to Saxon to use -s and -xsl options
2011-05-21 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
parameterize location of /etc
2011-05-20 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
use {} not () in variables in Makefile
2011-04-30 Syd Bauman <sbauman@brown.edu>
Changed paths:
M /trunk/Roma/Makefile
Use current LOCATION instead of just /usr, in case user is not using /usr; add --xsl switch to roma commandline, so that non-standard locations might work
2011-03-05 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
correct pattern of deb package names
2011-03-05 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
run debclean before debuild
2011-02-27 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
M /trunk/Roma/roma/roma.php
D /trunk/Roma/roma.sh
M /trunk/Roma/roma2.sh
drop old roma1, and show version on demand
2011-02-23 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
change to single quotes inside string
2011-02-22 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/debian-tei-roma/debian/changelog
bump version
2011-02-22 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
dont try to make schema if p5 not installed
2011-02-22 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
always tell OxGarage to run in textonly mode
2011-02-21 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/ChangeLog
release 4.3
2011-02-21 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/ChangeLog
M /trunk/Roma/VERSION
M /trunk/Roma/roma/config-dist.php
M /trunk/Roma/roma/config.php
fix default config for TEI web site
2011-02-21 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/stylesheets/addElements.xsl
dont specialcase att.global
2011-02-21 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/roma.php
validation off by default
2011-02-21 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
RELEASE 4.3
Changed paths:
M /trunk/Roma/ChangeLog
M /trunk/Roma/VERSION
M /trunk/Roma/roma/config-dist.php
M /trunk/Roma/roma/config.php
fix default config for TEI web site
2011-02-21 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/stylesheets/addElements.xsl
dont specialcase att.global
2011-02-21 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/roma.php
validation off by default
2011-02-20 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
remove large zip at end
2011-02-20 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
M /trunk/Roma/roma/config-dist.php
change where zip file is built
2011-02-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/startroma.php
better place to get version from
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
D /trunk/Roma/roma/oddschema.rng
schema is an artefact
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
M /trunk/Roma/debian-tei-roma/debian/rules
D /trunk/Roma/debian-tei-roma/debian/tei-roma.menu
M /trunk/Roma/roma/oddschema.rng
dont worry about debclean
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
fixing debian packages
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/debian-tei-roma/debian/control
M /trunk/Roma/roma.1
format of man page
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/debian-tei-roma/debian/source/format
source format
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
A /trunk/Roma/debian-tei-roma/debian/source
A /trunk/Roma/debian-tei-roma/debian/source/format
M /trunk/Roma/roma.1
add source format details
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
D /trunk/Roma/tei-roma-debian
rename
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
A /trunk/Roma/debian-tei-roma (from /trunk/Roma/tei-roma-debian:8558)
R /trunk/Roma/debian-tei-roma/debian/rules (from /trunk/Roma/tei-roma-debian/debian/rules:8562)
D /trunk/Roma/tei-roma-debian/debian
rename debian dir
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/tei-roma-debian/debian/rules
path to make file
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/tei-roma-debian/debian/rules
typo
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
D /trunk/Roma/debian
zap old
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
D /trunk/Roma/debian/changelog
D /trunk/Roma/debian/control
D /trunk/Roma/debian/copyright
D /trunk/Roma/debian/rules
D /trunk/Roma/debian/tei-roma.menu
A /trunk/Roma/tei-roma-debian/debian (from /trunk/Roma/debian:8552)
R /trunk/Roma/tei-roma-debian/debian/changelog (from /trunk/Roma/debian/changelog:8554)
R /trunk/Roma/tei-roma-debian/debian/control (from /trunk/Roma/debian/control:8553)
M /trunk/Roma/tei-roma-debian/debian/copyright
R /trunk/Roma/tei-roma-debian/debian/rules (from /trunk/Roma/debian/rules:8553)
move debian
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
A /trunk/Roma/tei-roma-debian
container for Debian
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
dont sign packages during build
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/debian/changelog
debian version
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
M /trunk/Roma/debian/control
M /trunk/Roma/debian/rules
M /trunk/Roma/roma/oddschema.rng
improve
2011-02-12 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
A /trunk/Roma/debian
A /trunk/Roma/debian/changelog
A /trunk/Roma/debian/control
A /trunk/Roma/debian/copyright
A /trunk/Roma/debian/rules
A /trunk/Roma/debian/tei-roma.menu
M /trunk/Roma/roma/config-dist.php
M /trunk/Roma/roma/config.php
M /trunk/Roma/roma/oddschema.rng
add debian package
2011-02-08 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
be a bit more careful
2011-02-08 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
more debugging
2011-02-08 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/config.php
M /trunk/Roma/roma2.sh
default to oxgarage.oucs
2011-02-08 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
fixing pdf gen
2011-02-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
fix typo
2011-02-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
change messages
2011-02-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
less verbose messages, please
2011-02-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/ChangeLog
M /trunk/Roma/VERSION
start new version, update changelog
2011-02-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/oddschema.rng
M /trunk/Roma/roma2.sh
false not true
2011-02-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
new --autoglobal option
2011-02-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/oddschema.rng
M /trunk/Roma/roma2.sh
false not true
2011-02-02 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
new --autoglobal option
2011-02-01 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
default TEIC param to false
2011-01-09 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/config-dist.php
M /trunk/Roma/roma/config.php
M /trunk/Roma/roma/oddschema.rng
M /trunk/Roma/roma2.sh
typo
2011-01-08 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
batch mode for xelatex
2011-01-08 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/Makefile
remove dependencies on any local setup
2011-01-07 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/ChangeLog
M /trunk/Roma/VERSION
release 4.1, correcting saxon calls in script
2011-01-03 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
use -o: syntax for Saxon cmdline
2011-01-03 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma2.sh
use -o: syntax for Saxon cmdline
2010-11-10 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/I18N/examples-fr/exemples-fr.xml
M /trunk/Roma/roma/oddschema.rng
M /trunk/Roma/roma2.sh
mysterious cganges
2010-11-06 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
rethink <classes> again
2010-11-06 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
change the way <classes> is written out
2010-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/ChangeLog
M /trunk/Roma/roma/config-dist.php
M /trunk/Roma/roma/config.php
M /trunk/Roma/roma/oddschema.rng
update changelog
2010-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/roma.php
M /trunk/Roma/roma/romadom.php
get progress bar back, name of xsd
2010-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
bbar
2010-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/roma.php
change message
2010-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
change name of lang property to oxgarage
2010-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
M /trunk/Roma/roma/templates/customizeLanguage.tem
pass language to OxGarage, and forget about language of element names
2010-10-16 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/config-dist.php
M /trunk/Roma/roma/config.php
M /trunk/Roma/roma/romadom.php
M /trunk/Roma/roma/sanitychecker.php
make sanity check work with new setup
2010-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/roma.php
M /trunk/Roma/roma/romadom.php
get progress bar back, name of xsd
2010-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php
bbar
2010-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/roma.php
change message
2010-10-17 Sebastian Rahtz <sebastian.rahtz@oucs.ox.ac.uk>
Changed paths:
M /trunk/Roma/roma/romadom.php