This repository has been archived by the owner on Nov 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
formex-05.55-20141201.xd
6361 lines (6361 loc) · 228 KB
/
formex-05.55-20141201.xd
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
<?xml version="1.0" encoding="utf-8"?>
<xd:schema xmlns:xd="http://www.w3.org/2001/XMLSchema" xmlns:fmx="http://opoce">
<xd:annotation>
<xd:documentation>
<fmx:version>Current version 5.55</fmx:version>
<fmx:history>
<fmx:ti.history>History</fmx:ti.history>
<fmx:line.history>
<fmx:line.date>20020117</fmx:line.date>
transform from DTD (HB)
</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-ACT.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-ANNEX.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-CONSACT.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-AGR-act.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-AGR-letter.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-CONSOTH-1.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-CONSOTH-2.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-GENERAL.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-PROPOSAL.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-PROPOSAL-Amend.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-PROPOSAL-Amend-gen.xml (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020121</fmx:line.date>
test (XSV) with instance test-CJT.xml (HB)
</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-COMPETIT.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-COMPETIT-Gen.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-ECU-1.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-ECU-2.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-ECU-3.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-LIST-COM.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-OP-COM.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-OP-COM-Amend.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-STATEAID.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-STATEAID-Box.xml (HB)</fmx:line.history>
<fmx:line.history>test (XSV) with instance test-SUMMARY-L.xml (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020122</fmx:line.date>
LG, LG.OJ -t_language (HB)
</fmx:line.history>
<fmx:line.history>SADDR -ADDR.S, SFORMULA -FORMULA.S, SQUOT -QUOT.S (HB)</fmx:line.history>
<fmx:line.history>extenstion of t_btx.seq (ADDR.S, FORMULAR.S, QUOT.S) (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020123</fmx:line.date>
extension of language codes according to ISO 639 (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020124</fmx:line.date>
alternative table model (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020128</fmx:line.date>
NO.SEQ -IDENTIFFIER (ARTICLE, PARAG) (HB/EH)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020129</fmx:line.date>
alternative for publication structure (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020130</fmx:line.date>
EEA added to DOC.MAIN.PUB (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020204</fmx:line.date>
Modification of STI.DOC, NO.DOC in GENERAL (HB)
</fmx:line.history>
<fmx:line.history>BIB.REF added (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020206</fmx:line.date>
integration of TI.CJT, modification of GENERAL (HB)
</fmx:line.history>
<fmx:line.history>integration of NO.DOC.C (HB)</fmx:line.history>
<fmx:line.history>redefinition of INDEX, integration of KEYWORD, LG.PROC, TRANS.REF (HB)</fmx:line.history>
<fmx:line.history>integration of ADDR.S into GR.SEQ (HB)</fmx:line.history>
<fmx:line.history>integration of optional attribute LEVEL for GR.SEQ (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020207</fmx:line.date>
integration of proposal for frequent text elements
</fmx:line.history>
<fmx:line.history>(FTE, DICTIONARY, VOCABULARY, FTE.ENTRY, t_fte.id) (HB)</fmx:line.history>
<fmx:line.history>OPINION added as value for DOC.TYPE (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020211</fmx:line.date>
FT TYPE="NUMBER" added (HB)
</fmx:line.history>
<fmx:line.history>attribute value TOTAL for ROW.ALT and CELL.ALT (HB)</fmx:line.history>
<fmx:line.history>attribute value STATE.AID-AUTORISATION for DOC.TYPE (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020212</fmx:line.date>
attribute value UNDERLINE for HT (HB)
</fmx:line.history>
<fmx:line.history>value ANTI-DUMPING added to DOC.TYPE (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020213</fmx:line.date>
value NOTICE added to DOC.TYPE (HB)
</fmx:line.history>
<fmx:line.history>value RECRUITMENT added to DOC.TYPE (HB)</fmx:line.history>
<fmx:line.history>frequence of PREAMBLE in AGR (HB)</fmx:line.history>
<fmx:line.history>frequence of PL.DATE in SIGNATURE (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020214</fmx:line.date>
value CONCENTRATION added to DOC.TYPE (HB)
</fmx:line.history>
<fmx:line.history>element LIST added to CONTENTS (HB)</fmx:line.history>
<fmx:line.history>element ADDR.S added to CONTENTS (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020218</fmx:line.date>
value LICENCE added to DOC.TYPE (HB)
</fmx:line.history>
<fmx:line.history>value RECOMMENDATION added to DOC.TYPE (HB)</fmx:line.history>
<fmx:line.history>value TENDER added to DOC.TYPE (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020225</fmx:line.date>
element MARGIN integrated (HB)
</fmx:line.history>
<fmx:line.history>element CORR integrated for handling of corrigenda (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020227</fmx:line.date>
value INFORMATION added to DOC.TYPE (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020304</fmx:line.date>
correction of model DIV.CONSID: SIT.DIV.CONSID optional (HB)
</fmx:line.history>
<fmx:line.history>correction of model CONTENTS.CORR: minOccursw moved to element (HB)</fmx:line.history>
<fmx:line.history>correction of model CORRECTION: sequence of OLD.CORR/NEW.CORR optional (HB)</fmx:line.history>
<fmx:line.history>correction of model GR.TBL.ALT: TI.TBL.ALT optional, STI.TBL.ALT unbounded (HB)</fmx:line.history>
<fmx:line.history>redefinition of model EXPL.REF: contents allowed (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020305</fmx:line.date>
attribute NUMBERING added to EXPL.REF (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020306</fmx:line.date>
type of STI.* changed from t_btx.seq to t_btx (HB)
</fmx:line.history>
<fmx:line.history>attribute value DECIMAL added to element FT (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020311</fmx:line.date>
correction of attribute value for DATE: ENTER.INTO.FORCE to ENTRY.INTO.FORCE (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020312</fmx:line.date>
value APPOINTMENT added to DOC.TYPE (HB)
</fmx:line.history>
<fmx:line.history>value CALL.PROPOSAL added to DOC.TYPE (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020313</fmx:line.date>
value COMMON.POSITION added to DOC.TYPE (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020327</fmx:line.date>
optionally empty contents of GR.SEQ (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020403</fmx:line.date>
value TARIC for CELL.ALT (HB)
</fmx:line.history>
<fmx:line.history>occurences for PL.DATE in LETTER (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020404</fmx:line.date>
frequence of FINAL in AGR (HB)
</fmx:line.history>
<fmx:line.history>TXT added to t_btx.seq (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020408</fmx:line.date>
review of definitions/models, version 0.6 (HB)
<fmx:ul type="dash">
<fmx:li>t_btx.struct: GR.ANNOTATION, GR.SEQ, GR.TBL, GR.TBL.ALT, LIST.AMEND added</fmx:li>
<fmx:li>t_no.oj: optional suffixes A or E</fmx:li>
<fmx:li>t_page: prefixes c and e added to pattern</fmx:li>
<fmx:li>ARTICLE/@IDENTIFIER: always three digits</fmx:li>
<fmx:li>CELL.ALT/@CONT.TYPE: repl of NUMERIC by NUMBER (cf. FT)</fmx:li>
<fmx:li>CONTENTS: content type modified to t_btx.struct</fmx:li>
<fmx:li>HT/@TYPE: STROKE added (cf. e-mail J. Schillings 20020405)</fmx:li>
<fmx:li>INCL.ELEMENT: direct child of GR.SEQ</fmx:li>
</fmx:ul>
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020418</fmx:line.date>
value TYPE of element COLL completed by CA, CE and LA (HB)
</fmx:line.history>
<fmx:line.history>distinction between SECTION and SUBSECTION, required attribute with predefined values for SECTION (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020419</fmx:line.date>
dictionaries organized in simpleType definitions (HB)
</fmx:line.history>
<fmx:line.history>value CATALOG.PLANTS added to DOCTYPE (HB)</fmx:line.history>
<fmx:line.history>TOC added to t_btx.struct (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020422</fmx:line.date>
element PRINTER optional in model BIB.SUM (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020423</fmx:line.date>
element VL added to t_btx, t_btx.seq, t_btx.struct (HB)
</fmx:line.history>
<fmx:line.history>definition of element CAT.PLANT, integration into CONTENTS (HB)</fmx:line.history>
<fmx:line.history>definition of element GR.PLANT (HB)</fmx:line.history>
<fmx:line.history>definition of element TI.GR.PLANT (HB)</fmx:line.history>
<fmx:line.history>definition of element SPECIE (HB)</fmx:line.history>
<fmx:line.history>definition of element TI.SPECIE (HB)</fmx:line.history>
<fmx:line.history>definition of element NO.SPECIE (HB)</fmx:line.history>
<fmx:line.history>definition of element NAME.COMMON (HB)</fmx:line.history>
<fmx:line.history>definition of element NAME.SCIENT (HB)</fmx:line.history>
<fmx:line.history>definition of element VAR.INFO (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.HEAD.VI (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.VARIETY (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.ADM.COUNTRY (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.ADM.COUNTRY.HD (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.EFTA.COUNTRY (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.EFTA.COUNTRY.HD (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.OBS.VAR (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.OBS.VARX (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.OBS.VARX.HD (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.COUNTRY (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.INDEX (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.FORMA.H (HB)</fmx:line.history>
<fmx:line.history>definition of element DEF.GEN.OBS (HB)</fmx:line.history>
<fmx:line.history>definition of element GR.UNIT.VI (HB)</fmx:line.history>
<fmx:line.history>definition of element TI.GR.UNIT.VI (HB)</fmx:line.history>
<fmx:line.history>definition of element UNIT.VI (HB)</fmx:line.history>
<fmx:line.history>definition of element NAME.VAR (HB)</fmx:line.history>
<fmx:line.history>definition of element ADM.CRIT (HB)</fmx:line.history>
<fmx:line.history>definition of element EFTA.CRIT (HB)</fmx:line.history>
<fmx:line.history>definition of element QUALIF (HB)</fmx:line.history>
<fmx:line.history>definition of element ID.RESP (HB)</fmx:line.history>
<fmx:line.history>definition of element OBS.VAR (HB)</fmx:line.history>
<fmx:line.history>definition of element OBS.VARX (HB)</fmx:line.history>
<fmx:line.history>definition of element INDEX.MAT (HB)</fmx:line.history>
<fmx:line.history>definition of element FORMA.H (HB)</fmx:line.history>
<fmx:line.history>definition of element GEN.OBS (HB)</fmx:line.history>
<fmx:line.history>all document titles of GENERAL made optional (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020429</fmx:line.date>
TXT added to t_btx (LM/HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020430</fmx:line.date>
CAT.VEGETABLES added to t_doctype (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020502</fmx:line.date>
revision of CAT.PLANTS (HB/LM/EH)
</fmx:line.history>
<fmx:line.history>DEF.ADM.COUNTRY and DEF.EFTA.COUNTRY deleted, DEF.AREA instead (HB/LM/EH)</fmx:line.history>
<fmx:line.history>DEF.ADM.COUNTRY.HD and DEF.EFTA.COUNTRY.HD deleted, DEF.AREA.HD instead (HB/LM/EH)</fmx:line.history>
<fmx:line.history>redefinition of UNIT.VI (HB/LM/EH)</fmx:line.history>
<fmx:line.history>ADM.CRIT and EFTA.CRIT deleted, CRIT instead (HB/LM/EH)</fmx:line.history>
<fmx:line.history>definition of type t_area (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020506</fmx:line.date>
definition of CAT.VEGET, added to t_btx.struct (HB)
</fmx:line.history>
<fmx:line.history>NP as alternative element in TI.GR.SEQ (HB)</fmx:line.history>
<fmx:line.history>TI.TBL defined as t_btx.struct (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020508</fmx:line.date>
correction of attribute value ATUOR to AUTO for EXPL.REF/NUMBERING (HB; message from Maria Burrel)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020513</fmx:line.date>
DEFINITION redefined as optional (HB; message from Maria Burrel)
</fmx:line.history>
<fmx:line.history>redefinition of NOTE (HB/LM/EH)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020514</fmx:line.date>
redefinition of GR.NOTES (HB)
</fmx:line.history>
<fmx:line.history>attribute NUMBER.ORG added to element NOTE (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020515</fmx:line.date>
attribute value alpha added to numbering of NOTE (HB)
</fmx:line.history>
<fmx:line.history>suppression of element NO.NOTE (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020516</fmx:line.date>
element NOTE.REF added (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020611</fmx:line.date>
frequence of SIGNATURE modified to unbounded optional in CONS.FINAL, FINAL, and GENERAL (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020612</fmx:line.date>
integration of STYLE.xxx attributes (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020702</fmx:line.date>
optional attribute IDENTIFIER for element GR.SEQ (email TAXUD 20020628) (HB)
</fmx:line.history>
<fmx:line.history>TI.GR.SEQ/NP occurrence set to 1 (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020703</fmx:line.date>
elements for publication of CN (HB)
</fmx:line.history>
<fmx:line.history>redefinition of PARAG, suppression of ALINEA.NUM (HB/LM)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020704</fmx:line.date>
optional attribute TYPE for GR.ANNOTATION (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020708</fmx:line.date>
simplification of model ITEM (HB/LM)
</fmx:line.history>
<fmx:line.history>suppression of NOTCOL, corresponding attribute value for ROW.ALT, CELL.ALT (HB/LM)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020709</fmx:line.date>
correction of CN.* models, GR.NOTES added to GR.SEQ and CONTENTS; element TOC added to ANNEX (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020729</fmx:line.date>
model TBL and specific children suppressed (HB)
</fmx:line.history>
<fmx:line.history>model TBL.ALT and specific children renamed to TBL etc. (HB)</fmx:line.history>
<fmx:line.history>element YEAR added to OJ, YEAR.OJ deleted from OJ (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020730</fmx:line.date>
redefinition of QUOT.S because XMLSpy does not treat anyType correctly (HB/LM)
</fmx:line.history>
<fmx:line.history>element EXPL.TXT added to GR.NOTES (HB)</fmx:line.history>
<fmx:line.history>pattern corrected for IDENTIFIER of elements ARTICLE and PARAG (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020731</fmx:line.date>
pattern of t_page corrected (HB)
</fmx:line.history>
<fmx:line.history>GR.SEQ added to ACT for new kind of structure of proposal (HB)</fmx:line.history>
<fmx:line.history>correction of REF.OJ: YEAR.OJ replaced by YEAR (HB)</fmx:line.history>
<fmx:line.history>DOC.REF in LINK.OJ optional (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020801</fmx:line.date>
revision of t_btx.struct; creation of t_btx.struct.any (HB)
</fmx:line.history>
<fmx:line.history>revision of COLL, DURAB, EEA, FTE, INCL.ELEMENT, INFO.CONSLEG, INFO.PROD, NEW, NEW.CORR, OLD, OLD.CORR, QUOT.S, TYPE.OJ (HB)</fmx:line.history>
<fmx:line.history>VL deleted, substituted by LV (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020805</fmx:line.date>
integration of QUOT.START/QUOT.END with crossing references (HB)
</fmx:line.history>
<fmx:line.history>NO.ITEM added (HB)</fmx:line.history>
<fmx:line.history>CAPTION added to INCL.ELEMENT (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020806</fmx:line.date>
TOC added to ACT.GEN (HB)
</fmx:line.history>
<fmx:line.history>attribute TYPE added to NOTE and EXPL.REF (HB)</fmx:line.history>
<fmx:line.history>NOTE.REF deleted maintaining 2 techniques for footnote handling (NOTE and EXPL.TXT/EXPL.REF) (HB)</fmx:line.history>
<fmx:line.history>TXT deleted from FINAL (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020807</fmx:line.date>
element APPLIC deleted, replaced by P (HB/STT/EH/LM)
</fmx:line.history>
<fmx:line.history>model SUMMARY deleted, replaced by PUBLICATION (deleted: BIB.SUM, DOC.ASSOC, DOC.MAIN, DOC.SUMMARY, ITEM.SUMMARY, NO.INFO, SECTION.SUMMARY, STI.SECTION.SUMMARY, SUMMARY, TI.SECTION.SUMMARY) (HB|STT|EH|LM)</fmx:line.history>
<fmx:line.history>attribute CONT.TYPE deleted from CELL, replaced by use of FT (value CODE added) (LM|HB|STT|EH)</fmx:line.history>
<fmx:line.history>attribute CONTEXT deleted from DATE (LM|HB|STT|EH)</fmx:line.history>
<fmx:line.history>attribute value REFOJ deleted from FT/@TYPE, replaced by new element OJ.REF (STT|HB|LM|EH)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020808</fmx:line.date>
pattern for attribute DATE.PUB in element OJ.REF completed (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20020813</fmx:line.date>
QUOT.S integrated into ARTICLE, PARAG, LIST (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021017</fmx:line.date>
ADDR.S needs 2 P elements at least; LV suppressed (STT|HB|LM|EH)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021018</fmx:line.date>
element SUBDIV added to ARTICLE (HB|EH)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021023</fmx:line.date>
element IMG.CNT and attribute CONTENT added to INCL.ELEMENT (HB|LM|STT)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021024</fmx:line.date>
element GR.SEQ added to t_btx (HB)
</fmx:line.history>
<fmx:line.history>QUOT.S completed by QUOT.START/QUOT.END in t_btx.struct (HB)</fmx:line.history>
<fmx:line.history>attribute CONTENT for element INCL.ELEMENT made optional(HB)</fmx:line.history>
<fmx:line.history>attribute PAGE.FIRST for element OJ.REF made optional(HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021028</fmx:line.date>
value STATEMENT added to t_doctype (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021030</fmx:line.date>
ACT.GEN supressed from the list of possible root elements (EH/HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021031</fmx:line.date>
GR.SEQ added to PREAMBLE (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021104</fmx:line.date>
suppression of QUOT (use of QUOT.START/QUOT.END instead) (HB/LM)
</fmx:line.history>
<fmx:line.history>new value CHAPTER for attribute TYPE of element NOTE (HB/EH)</fmx:line.history>
<fmx:line.history>QUOT.S added to t_btx.struct (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021105</fmx:line.date>
revision of model PREAMBLE (HB/LM/EH)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021107</fmx:line.date>
type of TI.DIV.CONSID and TI.DIVISION changed to t_btx.struct (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021111</fmx:line.date>
models CORPUS and BLK changed (seuqence choice) (HB/EH)
</fmx:line.history>
<fmx:line.history>type t_fte.id and elements DICTIONARY, FTE, FTE.ENTRY, and VOCABULARY deleted (HB/STT/EH/LM)</fmx:line.history>
<fmx:line.history>value MANUAL added to attribute CLASS of element NOTE (HB/STT/EH/LM)</fmx:line.history>
<fmx:line.history>optional closing element LOC.NOTE (REF.NOTE) added to element GR.SEQ (HB/STT/EH/LM)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021118</fmx:line.date>
revision of models TI.GR.SEQ and STI.GR.SEQ (HB/EH)
</fmx:line.history>
<fmx:line.history>revision of attributes ACCH and ACCV (HB/EH)</fmx:line.history>
<!-- version 0.91 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20021120</fmx:line.date>
attributes concerning style information grouped by means of xd:attributGroup (HB)
</fmx:line.history>
<fmx:line.history>type of element NO.CURRENT changed to xd:string because of documents from CJ; elements YEAR and COM optional in NO.DOC (HB)</fmx:line.history>
<fmx:line.history>revision of schema (HB)</fmx:line.history>
<fmx:line.history>ACT: more flexibility for TOC</fmx:line.history>
<fmx:line.history>CRIT: codes added for new member states</fmx:line.history>
<fmx:line.history>HT: contents based on t_btx because of value BOX</fmx:line.history>
<fmx:line.history>NO.DOC: no defaults for attributes</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021121</fmx:line.date>
correction of errors and incoherences (HB/EH):
</fmx:line.history>
<fmx:line.history>attribute CLASS of element NO.OJ deleted, because information exists in COLL</fmx:line.history>
<fmx:line.history>elements QUOT.END and QUOT.START deleted from t_btx.struct</fmx:line.history>
<fmx:line.history>element TBL.INIT deleted</fmx:line.history>
<fmx:line.history>revision of element ANNOTATION</fmx:line.history>
<fmx:line.history>element LG in BIB.OJ replaced by LG.OJ</fmx:line.history>
<fmx:line.history>no repetitions of PAGE.SUMMARY in BIB.OJ</fmx:line.history>
<fmx:line.history>element EEA moved 1 level higher</fmx:line.history>
<fmx:line.history>LINK.OJ suppressed from DOC.MAIN.PUB and DOC.SUB.PUB</fmx:line.history>
<fmx:line.history>elements COLL, NO.OJ, YEAR, LG.OJ integrated into DOC.MAIN.PUB and DOC.SUB.PUB</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021127</fmx:line.date>
EEA raised to BIB.DOC, re-integration of LINK.OJ into DOC.MAIN.PUB and DOC.SUB.PUB (HB/EH)
</fmx:line.history>
<fmx:line.history>revision of elements EEA and GR.SEQ (HB/EH/LM)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021128</fmx:line.date>
revision of model of NO.ISSN (HB/EH/STT)
</fmx:line.history>
<fmx:line.history>suppression of NO.VOLUME from BIB.OJ, integration of VOLUME.REF into DOC.MAIN.PUB and DOC.SUB.PUB, suppression of NO.VOLUME (HB/EH)</fmx:line.history>
<fmx:line.history>extension of element CELL by elements TXT.COL and TXT.ROW (HB/EH)</fmx:line.history>
<!-- version 0.92 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20021204</fmx:line.date>
BIB.REF deleted from model GENERAL (HB/EH)
</fmx:line.history>
<fmx:line.history>SIGNATURE deleted from model GENERAL (use of FINAL) (HB/EH)</fmx:line.history>
<fmx:line.history>revision of TI.*, maintained only for semanticall or structurall special types, otherwise replaced by generic element TITLE (HB/STT/LM/EH)</fmx:line.history>
<fmx:line.history>value TITLE added to attribute LOC of element NOTE (HB/STT/LM/EH)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021209</fmx:line.date>
QUOT.S added to GR.SEQ model (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021212</fmx:line.date>
YEAR.OJ renamed to AGE.OJ (HB/EH/LM)
</fmx:line.history>
<fmx:line.history>attribute group gr.styles added to CELL (HB/LM/EH)</fmx:line.history>
<fmx:line.history>element INT.INST replaced by COM (HB/LM/EH)</fmx:line.history>
<fmx:line.history>elements BIB.REF, REF.DOC and TI.LETTER deleted (HB/EH)</fmx:line.history>
<fmx:line.history>elements EXPL.REF and EXPL.TXT replaced by NOTE, NOTE.ID no longer mandatory, t_btx.struct with minOccurs="0" declaration (HB/LM/EH)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20021216</fmx:line.date>
element MARGIN deleted from t_btx.struct, t_btx.struct.any, t_btx.title, ADDR.S, AMEND, ANNOTATION, ARTICLE, BLK, GR.SEQ, LETTER, PL.DATE, SUBDIV (HB/EH/LM)
</fmx:line.history>
<!-- version 0.93 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20030128</fmx:line.date>
correction of non-deterministic models for ARTICLE and SUBDIV, correction of double declaration of attributes for TI and STI (HB/EH)
</fmx:line.history>
<!-- version 0.94 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20030228</fmx:line.date>
revision of attribute group gr.attributes (HB/EH)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030304</fmx:line.date>
review of definitions/models, new types (HB/STT)
<fmx:ul type="dash">
<fmx:li>TYPE.OJ renamed into LAST.OJ</fmx:li>
<fmx:li>new type t_boolean with values NO/YES</fmx:li>
<fmx:li>new type t_collection</fmx:li>
<fmx:li>type t_no.oj reviewed</fmx:li>
<fmx:li>element DATE.PUB modified</fmx:li>
<fmx:li>new type t_date.publication</fmx:li>
<fmx:li>type t_page extended (roman numbers)</fmx:li>
<fmx:li>element OJ.REF renamed into REF.DOC.OJ, model extended</fmx:li>
<fmx:li>new type t_page.sequence</fmx:li>
<fmx:li>elements PAGE.FIRST, PAGE.LAST, PAGE.SEQ reviewed</fmx:li>
<fmx:li>OJ renamed into BIB.INSTANCE, completed by LG.OJ</fmx:li>
<fmx:li>element BIB.DATA reviewed</fmx:li>
<fmx:li>type t_btx.title reviewed</fmx:li>
<fmx:li>element NO.DOC reviewed</fmx:li>
<fmx:li>new type t_format.no.doc</fmx:li>
<fmx:li>element REF.DOC.CORR deleted</fmx:li>
</fmx:ul>
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030310</fmx:line.date>
attribute group gr.attributes deleted from CELL (HB/STT)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030312</fmx:line.date>
element COMPETITION deleted from t_btx.struct; TOC added to ANNEX; document type PROPMODIF replaced by GENERAL; document type CJT added; revision of GENERAL, TOC added; ACT/GR.SEQ replaced by ACT/PROLOG (HB/STT)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030313</fmx:line.date>
review of element GENERAL (HB/STT/LM)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030314</fmx:line.date>
type t_btx.struct.any deleted; element FRAGMENT created; type t_btx.struct completed; type t_btx revised; element BIB.INSTANCE mandatory everywhere; type changed to t_btx.seq for elements: CN.CODE, CN.DESC, CN.RATE, CN.SUP.UNIT, DEF.VARIETY, ITEM.REF, PERIOD; review of element GENERAL (HB/STT)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030317</fmx:line.date>
correction of element ITEM (HB/STT)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030318</fmx:line.date>
correction of element PREAMBLE (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030319</fmx:line.date>
correction of mixed content for btx, btx.form and btx.seq elements (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030527</fmx:line.date>
TOC added to ENACTING.TERMS (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030630</fmx:line.date>
reference to gr.styles added to element NO.DOC.C (HB)
</fmx:line.history>
<!-- version 0.95 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20030709</fmx:line.date>
review of CONSLEG needs: (HB/LM)
</fmx:line.history>
<fmx:line.history>CONS.FINAL replaced by FINAL</fmx:line.history>
<fmx:line.history>suppression of CONS.FINAL</fmx:line.history>
<fmx:line.history>LEG.VAL added to INFO.CONSLEG</fmx:line.history>
<fmx:line.history>SPEC.ED: redefined, elements CHAP.SE and TOME.SE created</fmx:line.history>
<fmx:line.history>attribute CELEX.BASIC deleted from INFO.CONSLEG</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030728</fmx:line.date>
review of bibliographical approach: (HB/STT/LM)
</fmx:line.history>
<fmx:line.history>publication level</fmx:line.history>
<fmx:line.history>-new elements: OJ, BIB.VOLUME, GEN.PUB, BIB.GEN.PUB, PUBLISHER, DIMENSION, NO.ISBN, INFO.PUBLISHER, COPYRIGHT, HINT</fmx:line.history>
<fmx:line.history>-modified elements: PUBLICATION, BIB.OJ, VOLUME, SECTION, SUBSECTION</fmx:line.history>
<fmx:line.history>document level</fmx:line.history>
<fmx:line.history>-new elements: PUBLICATION.REF</fmx:line.history>
<fmx:line.history>-modified elements: DOC, DOC.MAIN.PUB, DOC.SUB.PUB, REF.PHYS</fmx:line.history>
<fmx:line.history>instance level</fmx:line.history>
<fmx:line.history>-new elements: DOCUMENT.REF</fmx:line.history>
<fmx:line.history>-modified elements: BIB.INSTANCE</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030729</fmx:line.date>
integration of TOC on bibliographical level: DOC, SECTION, SUBSECTION, VOLUME (HB)
</fmx:line.history>
<fmx:line.history>file reference attributes added to elements ITEM.REF and TOC.HD.REF (HB)</fmx:line.history>
<fmx:line.history>TARIC added to values for DOCTYPE (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030806</fmx:line.date>
attribute value for TYPE in element INCL.ELEMENT renamed to FORMEX.DOC, value FORMEX.FRAGMENT added (HB/LM)
</fmx:line.history>
<fmx:line.history>integration of TARIC publication (HB)</fmx:line.history>
<fmx:line.history>-elements added: TARIC, DEF.HEAD.TA, UNIT.TA, DEF.CN.CODE, DEF.SH.TARIC, DEF.DESC, DEF.SUP.UNIT, DEF.REM, DEF.TA.CODE, DEF.THIRD.RATE, DEF.PART.RATE, DEF.IMPORT, DEF.EXPORT, DEF.SPG, DEF.OPREF, SH.TARIC, POS.TARIC, DESC, SUP.UIT, IMPORT, EXPORT, TA.CODE, THIRD.RATE, SPG, OPREF</fmx:line.history>
<fmx:line.history>-modified elements: NOTE (OTHER added as attribute value of NUMBERING), TOC, TOC.BLK</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030807</fmx:line.date>
modification of element ITEM: contents only NP or P+ (HB/LM)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20030813</fmx:line.date>
correction of some mixed content models based on t_btx, t_btx.seq and t_btx.form (HB)
</fmx:line.history>
<!-- version 0.96 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20030930</fmx:line.date>
revision of TOC model (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20031001</fmx:line.date>
revision of GR.SEQ model (same as t_btx.struct, but with title) (HB)
</fmx:line.history>
<fmx:line.history>optional identifier part added to identifier of articles and paragraphs (esp. for constitution) (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20031002</fmx:line.date>
improvement of pattern for ARTICLE and PARAG (HB)
</fmx:line.history>
<fmx:line.history>new values for document type: CONSTITUTION, PROTOCOL (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20031124</fmx:line.date>
change of type for element TI.BLK into t_btx (HB)
</fmx:line.history>
<fmx:line.history>FT and HT added to t_btx.form (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20031125</fmx:line.date>
TITLE added to TOC, TOC.BLK (HB)
</fmx:line.history>
<fmx:line.history>attribute REF.XML added to ITEM.REF (HB)</fmx:line.history>
<fmx:line.history>correction of non-deterministic model of element GR.SEQ (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20031201</fmx:line.date>
creation of type t_date (HB)
</fmx:line.history>
<fmx:line.history>integration of CONS.LIST (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20031203</fmx:line.date>
reintegration of MARGIN to ARTICLE model; harmonisation of IDENTIFIER attributes (ARTICLE, PARAG) (XC/HB)
</fmx:line.history>
<fmx:history.symbol.list>
<!-- version 0.97 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20031209</fmx:line.date>
TEMPLATE deleted from gr.styles (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20031211</fmx:line.date>
LEG.VAL attribute deleted from FAM.COMP.CL, as it is the same as on the higher level CONS.LIST (HB)
</fmx:line.history>
<!-- version 0.98 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20031217</fmx:line.date>
attribute SYNOPTISM added to DOC.MAIN.PUB and DOC.SUB.PUB (HB)
</fmx:line.history>
<fmx:line.history>implementation of element ENV.BIBLIO (HB)</fmx:line.history>
<fmx:line.history>template integrated into root elements (HB)</fmx:line.history>
<!-- version 0.99 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20040203</fmx:line.date>
attribute REF.DOC.SEQ added to ITEM.VOLUME (HB)
</fmx:line.history>
<fmx:line.history>type of element DESC changed to t_btx (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040204</fmx:line.date>
attribute IDENTIFIER deleted from GR.SEQ (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040206</fmx:line.date>
correction of ambiguous model SUBDIV (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040219</fmx:line.date>
correction of patterns (HB|XC)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040223</fmx:line.date>
GR.ANNOTATION added to AGR, ANNEX and CJT (HB|XC)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040224</fmx:line.date>
correction of pattern definition for t_no.oj, t_page, t_page.sequence, AGE.OJ, CELL (@ACCH, @ACCV), ARTICLE (@IDENTIFIER), PARAG (@IDENTIFER) (HB|XC)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040225</fmx:line.date>
type of element PRINTER changed to xd:string (HB|XC)
</fmx:line.history>
<!-- version 1.00 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20040302</fmx:line.date>
correction of model VOLUME (HB|XC)
</fmx:line.history>
<fmx:line.history>ANNOTATION replaced by GR.ANNOTATION in model BIB.VOLUME (HB/XC)</fmx:line.history>
<fmx:line.history>ITEM.PUB/@DOC.INSTANCE, ITEM.REF/@REF.PDF, ITEM.REF/@REF.XML, INCL.ELEMENT/@FILEREF, DOCUMENT.REF/@FILE, PUBLICATION.REF/@FILE, REF.PHYS/@FILE: attribute type replaced byt xd:anyURI (HB/XC)</fmx:line.history>
<fmx:line.history>
<fmx:line.history>CONS.LIST/@LEG.VAL: alphabetical order of values (HB/XC)</fmx:line.history>
<fmx:line.date>20040302</fmx:line.date>
correction of model VOLUME (HB|XC)
</fmx:line.history>
<fmx:line.history>attributs NUMBERING, START, STEP deleted from element LIST (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040304</fmx:line.date>
type of attribute TEMPLATE modified to xd:anyURI (HB|XC)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040311</fmx:line.date>
type of element AUTHOR changed to xd:string (HB|XC)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040319</fmx:line.date>
t_doctype and DOCTYPE as well as all references deleted (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040322</fmx:line.date>
TBL added to model GR.NOTES (HB)
</fmx:line.history>
<fmx:line.history>COLL added to DOC.CORR (HB)</fmx:line.history>
<fmx:line.history>review of model FMX (HB)</fmx:line.history>
<fmx:line.history>review of model GT.NOTES (HB)</fmx:line.history>
<fmx:line.history>INC.ELEMENT added to model LETTER (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040325</fmx:line.date>
CONTENTS.CORR added to t_btx.struct, new element LV added to t_btx* (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040407</fmx:line.date>
element KEYWORD accepts HT (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040413</fmx:line.date>
correction of ambiguous model SUBDIV (HB)
</fmx:line.history>
<fmx:line.history>GR.TBL added to t_btx.seq (HB)</fmx:line.history>
<!-- version 1.01 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20040421</fmx:line.date>
TITLE deleted from VOLUME.PAPER (HB)
</fmx:line.history>
<fmx:line.history>type of AGE.OJ.SUMMARY modified to t_btx (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040422</fmx:line.date>
gr.styles, attribute STYLE, attribute TEMPLATE deleted (HB / decision from OJLC)
</fmx:line.history>
<fmx:line.history>NO.DOC in BIB.DOC repeatable (HB/STT)</fmx:line.history>
<!-- version 1.02 = 2.00 .-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20040513</fmx:line.date>
revision of elements INCL.ELEMENT and IMG.CNT (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040526</fmx:line.date>
revision of element QUOT.S, QUOT.START and QUOT.END allowed (HB/XC)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040608</fmx:line.date>
attribute IDENTIFIER mandatory for ARTICLE and PARAG (HB/XC)
</fmx:line.history>
<fmx:line.history>TBL allowed in IMG.CONT (HB/XC)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040720</fmx:line.date>
LV with mixed content model (HB)
</fmx:line.history>
<fmx:line.history>attribute value EXPANDED for element HT (expanded character spacing) (HB)</fmx:line.history>
<fmx:line.history>new element SPECIAL (in BIB.OJ and PUBLICATION.REF) for referring to special editions in MT or GA (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040823</fmx:line.date>
CONS.ANNEX added to t_btx.struct (HB)
</fmx:line.history>
<fmx:line.history>type of element NO.OJ.SUMMARY changed to t_btx.seq (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040824</fmx:line.date>
value M added to t_no.oj (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040825</fmx:line.date>
new element BIB.INSTANCE.CONS in the context of codification (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040826</fmx:line.date>
attribute IN.SUMMARY added to DOC.MAIN.PUB (HB)
</fmx:line.history>
<fmx:line.history>optional element NO.L2 added to VOLUME.ITEM (HB)</fmx:line.history>
<fmx:line.history>DOCUMENT.REF.CONS added to BIB.INSTANCE.CONS (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040831</fmx:line.date>
generation of alternative structions within the element SPEC.ED (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040903</fmx:line.date>
elements DATE and YEAR alternatives in SPEC.ED (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040906</fmx:line.date>
type of element CONSID changed to t_btx.struct (HB/XC)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040914</fmx:line.date>
element BIB.INSTANCE added to CONS.DOC and CONS.OTH.DOC to mark up consolidated document (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20040929</fmx:line.date>
modification of rules of usage of attribute NO.SEQ for DOC.MAIN.PUB (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20041021</fmx:line.date>
values CH and IS added to element CRIT (HB)
</fmx:line.history>
<!-- version 3.00 .-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20050103</fmx:line.date>
modification of IDENTIFIER attribute of ARTICLE and PARAG (HB/XC)
</fmx:line.history>
<fmx:line.history>elements NOTE, QUOT.END, QUOT.START added to type t_btx.form (HB/XC)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20050321</fmx:line.date>
attribute values ROMAN/roman added to NOTE numbering scheme (HB/XC)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20050412</fmx:line.date>
suppression of INCLUSIONS from BIB.INSTANCE.CONS (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20050414</fmx:line.date>
TOC, ANNOTATION and GR.ANNOTATION added to CONS.DOC (HB/XC)
</fmx:line.history>
<fmx:line.history>optional attribute ITEM.ID added to ITEM (HB)</fmx:line.history>
<fmx:line.history>values BG/RO added to element CRIT (HB)</fmx:line.history>
<fmx:line.history>specific elements for secondary legislation added (SE) (HB/XC)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20050427</fmx:line.date>
attribute IN.SUMMARY added to ITEM.REF (HB/XC)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20050525</fmx:line.date>
attribute NNC added to root elements and CONS.DOC, CONS.OTH.DOC, CONS.ANNEX (HB/XC)
</fmx:line.history>
<fmx:line.history>attribute NCFOD added to element NOTE (HB/XC)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20050627</fmx:line.date>
language attributes added for Basque (EU), Catalan (CA), and Galician (GL) (HB)
</fmx:line.history>
<fmx:line.history>attribute NUMBERING.CONTINUED added to element NOTE (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20051010</fmx:line.date>
correction of element SE (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20051024</fmx:line.date>
correction of model SUBDIV (HB)
</fmx:line.history>
<!-- Corrigendum .-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20060420</fmx:line.date>
attribute value for NO.SEQ and SYNOPTISM of DOC.MAIN.PUB and DOC.SUB.PUB modified to D\d{3,4} (HB/XC)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20060626</fmx:line.date>
empty element models revised (EEA, IE, OVER) (HB/AR/XC)
</fmx:line.history>
<!-- Version 4.00 .-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20060929</fmx:line.date>
addition of elements for CJ (Recueil): CASE, CONCLUSION, COSTS, COURT, DOC.CJT, DOC.VERSION, FINAL.CJT, FOOTING, HEADING, ID.DOC, INTRODUCTION, ITEM.LEFT, ITEM.RIGHT, METADATA, MOTIVES, PARTIES, PARTY PE, PROPERTIES, PROPERTY, RELATION, REPORT, ROLL, SUMMARY (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20061002</fmx:line.date>
revision of t_sectiontype (HB)
</fmx:line.history>
<fmx:line.history>revision of SECTION.SUMMARY: TITLE optional (HB)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20061005</fmx:line.date>
NO.L2 renamed to NO.DOC.TXT (HB/XC/AR/NR)
</fmx:line.history>
<fmx:line.history>suppression of type t_format.no.doc (HB/XC/AR/NR)</fmx:line.history>
<fmx:line.history>SIGNATORY, SIGNATURE, SUBDIV added to QUOT.S (HB/XC/AR/NR)</fmx:line.history>
<fmx:line.history>attributes SYNOPTISM, NO.SEQ, REF.NO.SEQ on 4 positions if not defined else (HB/XC/AR/NR)</fmx:line.history>
<fmx:line.history>optional elements LIST and TBL added to DIV.CONSID and GR.CONSID (HB/XC/AR/NR)</fmx:line.history>
<fmx:line.history>NO.DOC in DOC.CORR multiple (HB/XC/AR/NR)</fmx:line.history>
<fmx:line.history>ITEM.PUB no longer allowed outside SECTION (HB/XC/AR/NR)</fmx:line.history>
<fmx:line.history>new optional element NOTICE added to VOLUME and SUMMARY.PDF (HB/XC/AR/NR)</fmx:line.history>
<fmx:line.history>optional GR.ANNOTATION added to SUMMARY.PDF (HB/XC/AR/NR)</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20061010</fmx:line.date>
elements for CJ (Recueil) removed (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20070808</fmx:line.date>
elements for CJ (Recueil) (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:line.date>20071109</fmx:line.date>
revision of model for NO.ISBN (HB)
</fmx:line.history>
<!-- Version 4.cj .-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:line.date>20080211</fmx:line.date>
elements for CJ (European Court Reports) added (only to be used in the context of instances related to European Court Reports): t_ecr.case, t_ecr.doc, t_ecr.pub, ABSTRACT, AGAINST, APPLICANT, ARGUMENTS, BIB.CASE, BIB.CONCLUSION, BIB.ECR, BIB.ECR.GENERAL, BIB.JDUGMENT, BIB.OPINION, BIB.ORDER, BIB.REPORT.HEARING, BIB.RULING, BIB.SUMMARY, CASE, CONCLUSION, CONTENTS.CONCLUSION, CONTENTS.JUDGMENT, CONTENTS.OPINION, CONTENTS.ORDER, CONTENTS.RULING, CONTENTS.SUMMARY.JUDGMENT, DEFENDANTS, ECR, ECR.GENERAL, INTERNAL.ANNEX, INTERVENERS, INTRO, INTRO.OPINION, ITEM.PART, JOINED.CASES, JUDGMENT, JUDGMENT.INIT, JURISDICTION, LG.CASE, NO.CASE, OPINION, OPINION.INIT, ORDER, ORDER.INIT, PART, PART.ECR, PARTIES, PLAINTIFS, PRELIM.RULING, PRESENCE, PRESENCE.INIT, REF.CASE, REF.CONCLUSION, REF.ECR, REF.ECR.DOC, REF.JUDGMENT, REF.NOTICE, REF.OPINION, REF.ORDER, REF.REPORT.HEARING, REF.REPORT.HEARING, REF.RULING, REF.SUMMARY.JUDGMENT, REPORT.HEARING, RULING, SIGNATURE.CASE, SUBJECT, SUBJECTS, SUMMARY, SUMMARY.JUDGMENT, TYPE.CASE, VOLUME.ECR (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:date>20080221</fmx:date>
ecr types modified (HB)
</fmx:line.history>
<fmx:line.history>modification of elements ECR, CASE (HB)</fmx:line.history>
<fmx:line.history>new elements: PDF.ECR, REF.PDF.ECR (HB)</fmx:line.history>
<fmx:line.history>
<fmx:date>20081110</fmx:date>
new ECR root elements JUDGMENT.NP, ORDER.NP (HB)
</fmx:line.history>
<fmx:line.history>modifications: t_ecr.case, t_ecr.doc, t_page, CASE (HB)</fmx:line.history>
<fmx:line.history>new elements: REF.JUDGMENT.NP, REF.ORDER.NP, RELATED.MATERIAL, SUMMARY.NP (HB)</fmx:line.history>
<!-- Version 5.00 .-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:date>20080630</fmx:date>
integration of DOI (types, ITEM.REF, BIB.VOLUME) (HB/AR/XC/VB)
</fmx:line.history>
<fmx:line.history>implementation of t_prod.id, t_fin.id, PROD.ID, FIN.ID (HB/AR/XC/VB)</fmx:line.history>
<fmx:line.history>IE added to t_btx.form (HB/AR/XC/VB)</fmx:line.history>
<fmx:line.history>
<fmx:date>20080701</fmx:date>
attribute YEAR added to REF.DOC.ECR (HB/AR/XC/VB)
</fmx:line.history>
<fmx:line.history>optional element GR.ANNOTATION added root element (ACT, AGR, ANNEX, CJT, COMPETITION, CORR, GENERAL, LETTER) (HB/AR/XC/VB)</fmx:line.history>
<fmx:line.history>element NOTICE added to t_btx (HB/AR/XC/VB)</fmx:line.history>
<fmx:line.history>repeatable DATE in BIB.INSTANCE (HB/AR/XC/VB)</fmx:line.history>
<fmx:line.history>mandatory repeatable DATE ind DOC. MAIN.PUB (HB/AR/XC/VB)</fmx:line.history>
<fmx:line.history>attribute BOX added to GR.SEQ (HB/AR/XC/VB)</fmx:line.history>
<fmx:line.history>
<fmx:date>20080707</fmx:date>
revision of t_page.ecr, attributes EDITION and PAGE.SUM added to REF.DOC.ECR (HB/XC/VB)
</fmx:line.history>
<fmx:line.history>
<fmx:date>20081110</fmx:date>
new ECR root elements JUDGMENT.NP, ORDER.NP (HB)
</fmx:line.history>
<fmx:line.history>modifications: t_ecr.case, t_ecr.doc, t_page, CASE (HB)</fmx:line.history>
<fmx:line.history>new elements: REF.JUDGMENT.NP, REF.ORDER.NP, RELATED.MATERIAL, SUMMARY.NP (HB)</fmx:line.history>
<fmx:line.history>
<fmx:date>20081204</fmx:date>
modificiation of ECR, CONTENTS.CORR, QUOT.S (HB/XC)
</fmx:line.history>
<fmx:line.history>new element GR.CORRECTION (HB/XC)</fmx:line.history>
<fmx:line.history>
<fmx:date>20090108</fmx:date>
addition of elements to ECR context: APPEAL.TABLE, CHRON.TABLE, CHRON.TABLE.NP, REF.APPEAL.TABLE, REF.CHRON.TABLE, REF.CHRON.TABLE.NP, BIB.APPEAL.TABLE, BIB.CHRON.TABLE, BIB.CHRON.TABLE.NP, NO.CAT.GLOBAL (HB/XC/KL)
</fmx:line.history>
<fmx:line.history>review of t_page, t_ecr.doc (HB/XC/KL (HB/XC)</fmx:line.history>
<fmx:line.history>redefinition of the element INTERVENERS (HB/XC/KL (HB/XC)</fmx:line.history>
<fmx:line.history>
<fmx:date>20090130</fmx:date>
attribute value T1 suppressed from EDITION, GR.SEQ allowed after SIGNATURE.CASE in JUDGMENT (HB/XC)
</fmx:line.history>
<!-- version 5.01 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:date>20091103</fmx:date>
element DOI for general publication (to be used for General Report (HB/XC)
</fmx:line.history>
<fmx:line.history>
<fmx:date>20091201</fmx:date>
revision of t_sectiontype (HB/AR/XC/KL)
</fmx:line.history>
<!-- version 5.10 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:date>20091215</fmx:date>
Revised pattern for t_date; simple type t_date.publication suppressed; revised pattern for t_page.ecr; new elements for t_sectiontype; new element NO.COM; revision of the elements CASE, ECR, GENERAL, KEYWORD, REF.DOC.ECR, REF.ECR.DOC, TBL, VOLUME, DECISION, OBJECT (HB/AR/XC/KL)
</fmx:line.history>
<!-- version 5.11 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:date>20100107</fmx:date>
ISBN and ISSN in BIB.GEN.PUB both possible (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:date>20100119</fmx:date>
redefinition of TYPE.CASE (HB/XC)
</fmx:line.history>
<fmx:line.history>
<fmx:date>20100128</fmx:date>
redefinition of t_date; redefinition of HEADER.SUMARY.SE; definition of SERIES.SE and SUBSERIES.SE (HB/XC)
</fmx:line.history>
<fmx:line.history>
<fmx:date>20100129</fmx:date>
redefinition of t_ecr...; new element REF.CASE.F1 (HB/XC/AR/ON/KL)
</fmx:line.history>
<!-- version 5.20 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:date>20100526</fmx:date>
integration of Croatian and Icelandic, ISSN and DOI in HEADER.SUMMARY.SE optional; DOI in SUMMARY.PDF; filenaming with U (urgent) OJ publications (HB/XC/AR)
</fmx:line.history>
<fmx:line.history>
<fmx:date>20100826</fmx:date>
integration of new elements for the handlng of Court decisions (DECISION.ECR) (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:date>20101027</fmx:date>
integration of NO.DOI in BIB.SE for secondary legislation (HB)
</fmx:line.history>
<fmx:line.history>
<fmx:date>20110125</fmx:date>
suppression of U in filenames (HB)
</fmx:line.history>
<!-- version 5.21 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:date>20110407</fmx:date>
harmonisation of ISSN type (t_ISSN); integration of NO.ISSN.ELECTRONIC and NO.ISSN.PRINT; updated elements: BIB.SE, BIB.VOLUME, HEADER.SUMMARY, HEADER.SUMMARY.SE (HB; note A/PRODCOR op.a.2(2011)412721)
</fmx:line.history>
<fmx:line.history>
<fmx:date>20110519</fmx:date>
element COMMENT added to ARTICLE, PARAG, SUBDIV, t_btx, t_btx.struct (HB)
</fmx:line.history>
<!-- version 5.22 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. -->
<fmx:line.history>
<fmx:date>20110810</fmx:date>
new attribute values for MOD.ACT/@TYPE, MOD.ACT.CL/@TYPE and INFO.MOD/@ACTION (HB; email from Z. Bubnys (20110805)