-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathdbpoolx.mod
8250 lines (6907 loc) · 220 KB
/
dbpoolx.mod
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
<!-- ...................................................................... -->
<!-- DocBook XML information pool module V4.3CR3 ............................. -->
<!-- File dbpoolx.mod ..................................................... -->
<!-- Copyright 1992-2002 HaL Computer Systems, Inc.,
O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
Corporation, Norman Walsh, Sun Microsystems, Inc., and the
Organization for the Advancement of Structured Information
Standards (OASIS).
$Id$
Permission to use, copy, modify and distribute the DocBook XML DTD
and its accompanying documentation for any purpose and without fee
is hereby granted in perpetuity, provided that the above copyright
notice and this paragraph appear in all copies. The copyright
holders make no representation about the suitability of the DTD for
any purpose. It is provided "as is" without expressed or implied
warranty.
If you modify the DocBook XML DTD in any way, except for declaring and
referencing additional sets of general entities and declaring
additional notations, label your DTD as a variant of DocBook. See
the maintenance documentation for more information.
Please direct all questions, bug reports, or suggestions for
changes to the docbook@lists.oasis-open.org mailing list. For more
information, see http://www.oasis-open.org/docbook/.
-->
<!-- ...................................................................... -->
<!-- This module contains the definitions for the objects, inline
elements, and so on that are available to be used as the main
content of DocBook documents. Some elements are useful for general
publishing, and others are useful specifically for computer
documentation.
This module has the following dependencies on other modules:
o It assumes that a %notation.class; entity is defined by the
driver file or other high-level module. This entity is
referenced in the NOTATION attributes for the graphic-related and
ModeSpec elements.
o It assumes that an appropriately parameterized table module is
available for use with the table-related elements.
In DTD driver files referring to this module, please use an entity
declaration that uses the public identifier shown below:
<!ENTITY % dbpool PUBLIC
"-//OASIS//ELEMENTS DocBook XML Information Pool V4.3CR3//EN"
"dbpoolx.mod">
%dbpool;
See the documentation for detailed information on the parameter
entity and module scheme used in DocBook, customizing DocBook and
planning for interchange, and changes made since the last release
of DocBook.
-->
<!-- ...................................................................... -->
<!-- General-purpose semantics entities ................................... -->
<!ENTITY % yesorno.attvals "CDATA">
<!-- ...................................................................... -->
<!-- Entities for module inclusions ....................................... -->
<!ENTITY % dbpool.redecl.module "IGNORE">
<!-- ...................................................................... -->
<!-- Entities for element classes and mixtures ............................ -->
<!-- "Ubiquitous" classes: ndxterm.class and beginpage -->
<!ENTITY % local.ndxterm.class "">
<!ENTITY % ndxterm.class
"indexterm %local.ndxterm.class;">
<!-- Object-level classes ................................................. -->
<!ENTITY % local.list.class "">
<!ENTITY % list.class
"calloutlist|glosslist|itemizedlist|orderedlist|segmentedlist
|simplelist|variablelist %local.list.class;">
<!ENTITY % local.admon.class "">
<!ENTITY % admon.class
"caution|important|note|tip|warning %local.admon.class;">
<!ENTITY % local.linespecific.class "">
<!ENTITY % linespecific.class
"literallayout|programlisting|programlistingco|screen
|screenco|screenshot %local.linespecific.class;">
<!ENTITY % local.method.synop.class "">
<!ENTITY % method.synop.class
"constructorsynopsis
|destructorsynopsis
|methodsynopsis %local.method.synop.class;">
<!ENTITY % local.synop.class "">
<!ENTITY % synop.class
"synopsis|cmdsynopsis|funcsynopsis
|classsynopsis|fieldsynopsis
|%method.synop.class; %local.synop.class;">
<!ENTITY % local.para.class "">
<!ENTITY % para.class
"formalpara|para|simpara %local.para.class;">
<!ENTITY % local.informal.class "">
<!ENTITY % informal.class
"address|blockquote
|graphic|graphicco|mediaobject|mediaobjectco
|informalequation
|informalexample
|informalfigure
|informaltable %local.informal.class;">
<!ENTITY % local.formal.class "">
<!ENTITY % formal.class
"equation|example|figure|table %local.formal.class;">
<!-- The DocBook TC may produce an official EBNF module for DocBook. -->
<!-- This PE provides the hook by which it can be inserted into the DTD. -->
<!ENTITY % ebnf.block.hook "">
<!ENTITY % local.compound.class "">
<!ENTITY % compound.class
"msgset|procedure|sidebar|qandaset|task
%ebnf.block.hook;
%local.compound.class;">
<!ENTITY % local.genobj.class "">
<!ENTITY % genobj.class
"anchor|bridgehead|remark|highlights
%local.genobj.class;">
<!ENTITY % local.descobj.class "">
<!ENTITY % descobj.class
"abstract|authorblurb|epigraph
%local.descobj.class;">
<!-- Character-level classes .............................................. -->
<!ENTITY % local.xref.char.class "">
<!ENTITY % xref.char.class
"footnoteref|xref %local.xref.char.class;">
<!ENTITY % local.gen.char.class "">
<!ENTITY % gen.char.class
"abbrev|acronym|citation|citerefentry|citetitle|emphasis
|firstterm|foreignphrase|glossterm|footnote|phrase|orgname
|quote|trademark|wordasword|personname %local.gen.char.class;">
<!ENTITY % local.link.char.class "">
<!ENTITY % link.char.class
"link|olink|ulink %local.link.char.class;">
<!-- The DocBook TC may produce an official EBNF module for DocBook. -->
<!-- This PE provides the hook by which it can be inserted into the DTD. -->
<!ENTITY % ebnf.inline.hook "">
<!ENTITY % local.tech.char.class "">
<!ENTITY % tech.char.class
"action|application
|classname|methodname|interfacename|exceptionname
|ooclass|oointerface|ooexception
|command|computeroutput
|database|email|envar|errorcode|errorname|errortype|errortext|filename
|function|guibutton|guiicon|guilabel|guimenu|guimenuitem
|guisubmenu|hardware|interface|keycap
|keycode|keycombo|keysym|literal|code|constant|markup|medialabel
|menuchoice|mousebutton|option|optional|parameter
|prompt|property|replaceable|returnvalue|sgmltag|structfield
|structname|symbol|systemitem|uri|token|type|userinput|varname
%ebnf.inline.hook;
%local.tech.char.class;">
<!ENTITY % local.base.char.class "">
<!ENTITY % base.char.class
"anchor %local.base.char.class;">
<!ENTITY % local.docinfo.char.class "">
<!ENTITY % docinfo.char.class
"author|authorinitials|corpauthor|corpcredit|modespec|othercredit
|productname|productnumber|revhistory
%local.docinfo.char.class;">
<!ENTITY % local.other.char.class "">
<!ENTITY % other.char.class
"remark|subscript|superscript %local.other.char.class;">
<!ENTITY % local.inlineobj.char.class "">
<!ENTITY % inlineobj.char.class
"inlinegraphic|inlinemediaobject|inlineequation %local.inlineobj.char.class;">
<!-- ...................................................................... -->
<!-- Entities for content models .......................................... -->
<!ENTITY % formalobject.title.content "title, titleabbrev?">
<!-- Redeclaration placeholder ............................................ -->
<!-- For redeclaring entities that are declared after this point while
retaining their references to the entities that are declared before
this point -->
<![%dbpool.redecl.module;[
<!-- Defining rdbpool here makes some buggy XML parsers happy. -->
<!ENTITY % rdbpool "">
%rdbpool;
<!--end of dbpool.redecl.module-->]]>
<!-- Object-level mixtures ................................................ -->
<!--
list admn line synp para infm form cmpd gen desc
Component mixture X X X X X X X X X X
Sidebar mixture X X X X X X X a X
Footnote mixture X X X X X
Example mixture X X X X X
Highlights mixture X X X
Paragraph mixture X X X X
Admonition mixture X X X X X X b c
Figure mixture X X X
Table entry mixture X X X X d
Glossary def mixture X X X X X e
Legal notice mixture X X X X f
a. Just Procedure; not Sidebar itself or MsgSet.
b. No MsgSet.
c. No Highlights.
d. Just Graphic; no other informal objects.
e. No Anchor, BridgeHead, or Highlights.
f. Just BlockQuote; no other informal objects.
-->
<!ENTITY % local.component.mix "">
<!ENTITY % component.mix
"%list.class; |%admon.class;
|%linespecific.class; |%synop.class;
|%para.class; |%informal.class;
|%formal.class; |%compound.class;
|%genobj.class; |%descobj.class;
|%ndxterm.class; |beginpage
%local.component.mix;">
<!ENTITY % local.sidebar.mix "">
<!ENTITY % sidebar.mix
"%list.class; |%admon.class;
|%linespecific.class; |%synop.class;
|%para.class; |%informal.class;
|%formal.class; |procedure
|%genobj.class;
|%ndxterm.class; |beginpage
%local.sidebar.mix;">
<!ENTITY % local.qandaset.mix "">
<!ENTITY % qandaset.mix
"%list.class; |%admon.class;
|%linespecific.class; |%synop.class;
|%para.class; |%informal.class;
|%formal.class; |procedure
|%genobj.class;
|%ndxterm.class;
%local.qandaset.mix;">
<!ENTITY % local.revdescription.mix "">
<!ENTITY % revdescription.mix
"%list.class; |%admon.class;
|%linespecific.class; |%synop.class;
|%para.class; |%informal.class;
|%formal.class; |procedure
|%genobj.class;
|%ndxterm.class;
%local.revdescription.mix;">
<!ENTITY % local.footnote.mix "">
<!ENTITY % footnote.mix
"%list.class;
|%linespecific.class; |%synop.class;
|%para.class; |%informal.class;
%local.footnote.mix;">
<!ENTITY % local.example.mix "">
<!ENTITY % example.mix
"%list.class;
|%linespecific.class; |%synop.class;
|%para.class; |%informal.class;
|%ndxterm.class; |beginpage
%local.example.mix;">
<!ENTITY % local.highlights.mix "">
<!ENTITY % highlights.mix
"%list.class; |%admon.class;
|%para.class;
|%ndxterm.class;
%local.highlights.mix;">
<!-- %formal.class; is explicitly excluded from many contexts in which
paragraphs are used -->
<!ENTITY % local.para.mix "">
<!ENTITY % para.mix
"%list.class; |%admon.class;
|%linespecific.class;
|%informal.class;
|%formal.class;
%local.para.mix;">
<!ENTITY % local.admon.mix "">
<!ENTITY % admon.mix
"%list.class;
|%linespecific.class; |%synop.class;
|%para.class; |%informal.class;
|%formal.class; |procedure|sidebar
|anchor|bridgehead|remark
|%ndxterm.class; |beginpage
%local.admon.mix;">
<!ENTITY % local.figure.mix "">
<!ENTITY % figure.mix
"%linespecific.class; |%synop.class;
|%informal.class;
|%ndxterm.class; |beginpage
%local.figure.mix;">
<!ENTITY % local.tabentry.mix "">
<!ENTITY % tabentry.mix
"%list.class; |%admon.class;
|%linespecific.class;
|%para.class; |graphic|mediaobject
%local.tabentry.mix;">
<!ENTITY % local.glossdef.mix "">
<!ENTITY % glossdef.mix
"%list.class;
|%linespecific.class; |%synop.class;
|%para.class; |%informal.class;
|%formal.class;
|remark
|%ndxterm.class; |beginpage
%local.glossdef.mix;">
<!ENTITY % local.legalnotice.mix "">
<!ENTITY % legalnotice.mix
"%list.class; |%admon.class;
|%linespecific.class;
|%para.class; |blockquote
|%ndxterm.class; |beginpage
%local.legalnotice.mix;">
<!ENTITY % local.textobject.mix "">
<!ENTITY % textobject.mix
"%list.class; |%admon.class;
|%linespecific.class;
|%para.class; |blockquote
%local.textobject.mix;">
<!ENTITY % local.mediaobject.mix "">
<!ENTITY % mediaobject.mix
"videoobject|audioobject|imageobject|textobject %local.mediaobject.mix;">
<!ENTITY % local.listpreamble.mix "">
<!ENTITY % listpreamble.mix
" %admon.class;
|%linespecific.class; |%synop.class;
|%para.class; |%informal.class;
|%genobj.class; |%descobj.class;
|%ndxterm.class; |beginpage
%local.listpreamble.mix;">
<!-- Character-level mixtures ............................................. -->
<![%sgml.features;[
<!ENTITY % local.ubiq.mix "">
<!ENTITY % ubiq.mix "%ndxterm.class;|beginpage %local.ubiq.mix;">
<!ENTITY % ubiq.exclusion "-(%ubiq.mix)">
<!ENTITY % ubiq.inclusion "+(%ubiq.mix)">
<!ENTITY % footnote.exclusion "-(footnote|%formal.class;)">
<!ENTITY % highlights.exclusion "-(%ubiq.mix;|%formal.class;)">
<!ENTITY % admon.exclusion "-(%admon.class;)">
<!ENTITY % formal.exclusion "-(%formal.class;)">
<!ENTITY % acronym.exclusion "-(acronym)">
<!ENTITY % beginpage.exclusion "-(beginpage)">
<!ENTITY % ndxterm.exclusion "-(%ndxterm.class;)">
<!ENTITY % blockquote.exclusion "-(epigraph)">
<!ENTITY % remark.exclusion "-(remark|%ubiq.mix;)">
<!ENTITY % glossterm.exclusion "-(glossterm)">
<!ENTITY % links.exclusion "-(link|olink|ulink|xref)">
]]><!-- sgml.features -->
<!-- not [sgml.features[ -->
<!ENTITY % local.ubiq.mix "">
<!ENTITY % ubiq.mix "">
<!ENTITY % ubiq.exclusion "">
<!ENTITY % ubiq.inclusion "">
<!ENTITY % footnote.exclusion "">
<!ENTITY % highlights.exclusion "">
<!ENTITY % admon.exclusion "">
<!ENTITY % formal.exclusion "">
<!ENTITY % acronym.exclusion "">
<!ENTITY % beginpage.exclusion "">
<!ENTITY % ndxterm.exclusion "">
<!ENTITY % blockquote.exclusion "">
<!ENTITY % remark.exclusion "">
<!ENTITY % glossterm.exclusion "">
<!ENTITY % links.exclusion "">
<!-- ]] not sgml.features -->
<!--
#PCD xref word link cptr base dnfo othr inob (synop)
para.char.mix X X X X X X X X X
title.char.mix X X X X X X X X X
ndxterm.char.mix X X X X X X X X a
cptr.char.mix X X X X X a
smallcptr.char.mix X b a
word.char.mix X c X X X a
docinfo.char.mix X d X b X a
a. Just InlineGraphic; no InlineEquation.
b. Just Replaceable; no other computer terms.
c. Just Emphasis and Trademark; no other word elements.
d. Just Acronym, Emphasis, and Trademark; no other word elements.
-->
<!-- The DocBook TC may produce an official forms module for DocBook. -->
<!-- This PE provides the hook by which it can be inserted into the DTD. -->
<!ENTITY % forminlines.hook "">
<!ENTITY % local.para.char.mix "">
<!ENTITY % para.char.mix
"#PCDATA
|%xref.char.class; |%gen.char.class;
|%link.char.class; |%tech.char.class;
|%base.char.class; |%docinfo.char.class;
|%other.char.class; |%inlineobj.char.class;
|%synop.class;
|%ndxterm.class; |beginpage
%forminlines.hook;
%local.para.char.mix;">
<!ENTITY % local.title.char.mix "">
<!ENTITY % title.char.mix
"#PCDATA
|%xref.char.class; |%gen.char.class;
|%link.char.class; |%tech.char.class;
|%base.char.class; |%docinfo.char.class;
|%other.char.class; |%inlineobj.char.class;
|%ndxterm.class;
%local.title.char.mix;">
<!ENTITY % local.ndxterm.char.mix "">
<!ENTITY % ndxterm.char.mix
"#PCDATA
|%xref.char.class; |%gen.char.class;
|%link.char.class; |%tech.char.class;
|%base.char.class; |%docinfo.char.class;
|%other.char.class; |inlinegraphic|inlinemediaobject
%local.ndxterm.char.mix;">
<!ENTITY % local.cptr.char.mix "">
<!ENTITY % cptr.char.mix
"#PCDATA
|%link.char.class; |%tech.char.class;
|%base.char.class;
|%other.char.class; |inlinegraphic|inlinemediaobject
|%ndxterm.class; |beginpage
%local.cptr.char.mix;">
<!ENTITY % local.smallcptr.char.mix "">
<!ENTITY % smallcptr.char.mix
"#PCDATA
|replaceable
|inlinegraphic|inlinemediaobject
|%ndxterm.class; |beginpage
%local.smallcptr.char.mix;">
<!ENTITY % local.word.char.mix "">
<!ENTITY % word.char.mix
"#PCDATA
|acronym|emphasis|trademark
|%link.char.class;
|%base.char.class;
|%other.char.class; |inlinegraphic|inlinemediaobject
|%ndxterm.class; |beginpage
%local.word.char.mix;">
<!ENTITY % local.docinfo.char.mix "">
<!ENTITY % docinfo.char.mix
"#PCDATA
|%link.char.class;
|emphasis|trademark
|replaceable
|%other.char.class; |inlinegraphic|inlinemediaobject
|%ndxterm.class;
%local.docinfo.char.mix;">
<!--ENTITY % bibliocomponent.mix (see Bibliographic section, below)-->
<!--ENTITY % person.ident.mix (see Bibliographic section, below)-->
<!-- ...................................................................... -->
<!-- Entities for attributes and attribute components ..................... -->
<!-- Effectivity attributes ............................................... -->
<!-- Arch: Computer or chip architecture to which element applies; no
default -->
<!ENTITY % arch.attrib
"arch CDATA #IMPLIED">
<!-- Condition: General-purpose effectivity attribute -->
<!ENTITY % condition.attrib
"condition CDATA #IMPLIED">
<!-- Conformance: Standards conformance characteristics -->
<!ENTITY % conformance.attrib
"conformance NMTOKENS #IMPLIED">
<!-- OS: Operating system to which element applies; no default -->
<!ENTITY % os.attrib
"os CDATA #IMPLIED">
<!-- Revision: Editorial revision to which element belongs; no default -->
<!ENTITY % revision.attrib
"revision CDATA #IMPLIED">
<!-- Security: Security classification; no default -->
<!ENTITY % security.attrib
"security CDATA #IMPLIED">
<!-- UserLevel: Level of user experience to which element applies; no
default -->
<!ENTITY % userlevel.attrib
"userlevel CDATA #IMPLIED">
<!-- Vendor: Computer vendor to which element applies; no default -->
<!ENTITY % vendor.attrib
"vendor CDATA #IMPLIED">
<!ENTITY % local.effectivity.attrib "">
<!ENTITY % effectivity.attrib
"%arch.attrib;
%condition.attrib;
%conformance.attrib;
%os.attrib;
%revision.attrib;
%security.attrib;
%userlevel.attrib;
%vendor.attrib;
%local.effectivity.attrib;"
>
<!-- Common attributes .................................................... -->
<!-- Id: Unique identifier of element; no default -->
<!ENTITY % id.attrib
"id ID #IMPLIED">
<!-- Id: Unique identifier of element; a value must be supplied; no
default -->
<!ENTITY % idreq.attrib
"id ID #REQUIRED">
<!-- Lang: Indicator of language in which element is written, for
translation, character set management, etc.; no default -->
<!ENTITY % lang.attrib
"lang CDATA #IMPLIED">
<!-- Remap: Previous role of element before conversion; no default -->
<!ENTITY % remap.attrib
"remap CDATA #IMPLIED">
<!-- Role: New role of element in local environment; no default -->
<!ENTITY % role.attrib
"role CDATA #IMPLIED">
<!-- XRefLabel: Alternate labeling string for XRef text generation;
default is usually title or other appropriate label text already
contained in element -->
<!ENTITY % xreflabel.attrib
"xreflabel CDATA #IMPLIED">
<!-- RevisionFlag: Revision status of element; default is that element
wasn't revised -->
<!ENTITY % revisionflag.attrib
"revisionflag (changed
|added
|deleted
|off) #IMPLIED">
<!ENTITY % local.common.attrib "">
<!-- dir: Bidirectional override -->
<!ENTITY % dir.attrib
"dir (ltr
|rtl
|lro
|rlo) #IMPLIED">
<!-- xml:base: base URI -->
<!ENTITY % xml-base.attrib
"xml:base CDATA #IMPLIED">
<!-- Role is included explicitly on each element -->
<!ENTITY % common.attrib
"%id.attrib;
%lang.attrib;
%remap.attrib;
%xreflabel.attrib;
%revisionflag.attrib;
%effectivity.attrib;
%dir.attrib;
%xml-base.attrib;
%local.common.attrib;"
>
<!-- Role is included explicitly on each element -->
<!ENTITY % idreq.common.attrib
"%idreq.attrib;
%lang.attrib;
%remap.attrib;
%xreflabel.attrib;
%revisionflag.attrib;
%effectivity.attrib;
%dir.attrib;
%xml-base.attrib;
%local.common.attrib;"
>
<!-- Semi-common attributes and other attribute entities .................. -->
<!ENTITY % local.graphics.attrib "">
<!-- EntityRef: Name of an external entity containing the content
of the graphic -->
<!-- FileRef: Filename, qualified by a pathname if desired,
designating the file containing the content of the graphic -->
<!-- Format: Notation of the element content, if any -->
<!-- SrcCredit: Information about the source of the Graphic -->
<!-- Width: Same as CALS reprowid (desired width) -->
<!-- Depth: Same as CALS reprodep (desired depth) -->
<!-- Align: Same as CALS hplace with 'none' removed; #IMPLIED means
application-specific -->
<!-- Scale: Conflation of CALS hscale and vscale -->
<!-- Scalefit: Same as CALS scalefit -->
<!ENTITY % graphics.attrib
"
entityref ENTITY #IMPLIED
fileref CDATA #IMPLIED
format (%notation.class;) #IMPLIED
srccredit CDATA #IMPLIED
width CDATA #IMPLIED
contentwidth CDATA #IMPLIED
depth CDATA #IMPLIED
contentdepth CDATA #IMPLIED
align (left
|right
|center) #IMPLIED
valign (top
|middle
|bottom) #IMPLIED
scale CDATA #IMPLIED
scalefit %yesorno.attvals;
#IMPLIED
%local.graphics.attrib;"
>
<!ENTITY % local.keyaction.attrib "">
<!-- Action: Key combination type; default is unspecified if one
child element, Simul if there is more than one; if value is
Other, the OtherAction attribute must have a nonempty value -->
<!-- OtherAction: User-defined key combination type -->
<!ENTITY % keyaction.attrib
"
action (click
|double-click
|press
|seq
|simul
|other) #IMPLIED
otheraction CDATA #IMPLIED
%local.keyaction.attrib;"
>
<!-- Label: Identifying number or string; default is usually the
appropriate number or string autogenerated by a formatter -->
<!ENTITY % label.attrib
"label CDATA #IMPLIED">
<!-- Format: whether element is assumed to contain significant white
space -->
<!ENTITY % linespecific.attrib
"format NOTATION
(linespecific) 'linespecific'
linenumbering (numbered|unnumbered) #IMPLIED
continuation (continues|restarts) #IMPLIED
startinglinenumber CDATA #IMPLIED
language CDATA #IMPLIED">
<!-- Linkend: link to related information; no default -->
<!ENTITY % linkend.attrib
"linkend IDREF #IMPLIED">
<!-- Linkend: required link to related information -->
<!ENTITY % linkendreq.attrib
"linkend IDREF #REQUIRED">
<!-- Linkends: link to one or more sets of related information; no
default -->
<!ENTITY % linkends.attrib
"linkends IDREFS #IMPLIED">
<!ENTITY % local.mark.attrib "">
<!ENTITY % mark.attrib
"mark CDATA #IMPLIED
%local.mark.attrib;"
>
<!-- MoreInfo: whether element's content has an associated RefEntry -->
<!ENTITY % moreinfo.attrib
"moreinfo (refentry|none) 'none'">
<!-- Pagenum: number of page on which element appears; no default -->
<!ENTITY % pagenum.attrib
"pagenum CDATA #IMPLIED">
<!ENTITY % local.status.attrib "">
<!-- Status: Editorial or publication status of the element
it applies to, such as "in review" or "approved for distribution" -->
<!ENTITY % status.attrib
"status CDATA #IMPLIED
%local.status.attrib;"
>
<!-- Width: width of the longest line in the element to which it
pertains, in number of characters -->
<!ENTITY % width.attrib
"width CDATA #IMPLIED">
<!-- ...................................................................... -->
<!-- Title elements ....................................................... -->
<!ENTITY % title.module "INCLUDE">
<![%title.module;[
<!ENTITY % local.title.attrib "">
<!ENTITY % title.role.attrib "%role.attrib;">
<!ENTITY % title.element "INCLUDE">
<![%title.element;[
<!ELEMENT title %ho; (%title.char.mix;)*>
<!--end of title.element-->]]>
<!ENTITY % title.attlist "INCLUDE">
<![%title.attlist;[
<!ATTLIST title
%pagenum.attrib;
%common.attrib;
%title.role.attrib;
%local.title.attrib;
>
<!--end of title.attlist-->]]>
<!--end of title.module-->]]>
<!ENTITY % titleabbrev.module "INCLUDE">
<![%titleabbrev.module;[
<!ENTITY % local.titleabbrev.attrib "">
<!ENTITY % titleabbrev.role.attrib "%role.attrib;">
<!ENTITY % titleabbrev.element "INCLUDE">
<![%titleabbrev.element;[
<!ELEMENT titleabbrev %ho; (%title.char.mix;)*>
<!--end of titleabbrev.element-->]]>
<!ENTITY % titleabbrev.attlist "INCLUDE">
<![%titleabbrev.attlist;[
<!ATTLIST titleabbrev
%common.attrib;
%titleabbrev.role.attrib;
%local.titleabbrev.attrib;
>
<!--end of titleabbrev.attlist-->]]>
<!--end of titleabbrev.module-->]]>
<!ENTITY % subtitle.module "INCLUDE">
<![%subtitle.module;[
<!ENTITY % local.subtitle.attrib "">
<!ENTITY % subtitle.role.attrib "%role.attrib;">
<!ENTITY % subtitle.element "INCLUDE">
<![%subtitle.element;[
<!ELEMENT subtitle %ho; (%title.char.mix;)*>
<!--end of subtitle.element-->]]>
<!ENTITY % subtitle.attlist "INCLUDE">
<![%subtitle.attlist;[
<!ATTLIST subtitle
%common.attrib;
%subtitle.role.attrib;
%local.subtitle.attrib;
>
<!--end of subtitle.attlist-->]]>
<!--end of subtitle.module-->]]>
<!-- ...................................................................... -->
<!-- Bibliographic entities and elements .................................. -->
<!-- The bibliographic elements are typically used in the document
hierarchy. They do not appear in content models of information
pool elements. See also the document information elements,
below. -->
<!ENTITY % local.person.ident.mix "">
<!ENTITY % person.ident.mix
"honorific|firstname|surname|lineage|othername|affiliation
|authorblurb|contrib %local.person.ident.mix;">
<!ENTITY % local.bibliocomponent.mix "">
<!ENTITY % bibliocomponent.mix
"abbrev|abstract|address|artpagenums|author
|authorgroup|authorinitials|bibliomisc|biblioset
|collab|confgroup|contractnum|contractsponsor
|copyright|corpauthor|corpname|corpcredit|date|edition
|editor|invpartnumber|isbn|issn|issuenum|orgname
|biblioid|citebiblioid|bibliosource|bibliorelation|bibliocoverage
|othercredit|pagenums|printhistory|productname
|productnumber|pubdate|publisher|publishername
|pubsnumber|releaseinfo|revhistory|seriesvolnums
|subtitle|title|titleabbrev|volumenum|citetitle
|personname|%person.ident.mix;
|%ndxterm.class;
%local.bibliocomponent.mix;">
<!-- I don't think this is well placed, but it needs to be here because of -->
<!-- the reference to bibliocomponent.mix -->
<!ENTITY % local.info.class "">
<!ENTITY % info.class
"graphic | mediaobject | legalnotice | modespec
| subjectset | keywordset | itermset | %bibliocomponent.mix;
%local.info.class;">
<!ENTITY % biblioentry.module "INCLUDE">
<![%biblioentry.module;[
<!ENTITY % local.biblioentry.attrib "">
<!ENTITY % biblioentry.role.attrib "%role.attrib;">
<!ENTITY % biblioentry.element "INCLUDE">
<![%biblioentry.element;[
<!ELEMENT biblioentry %ho; ((articleinfo | (%bibliocomponent.mix;))+)
%ubiq.exclusion;>
<!--end of biblioentry.element-->]]>
<!ENTITY % biblioentry.attlist "INCLUDE">
<![%biblioentry.attlist;[
<!ATTLIST biblioentry
%common.attrib;
%biblioentry.role.attrib;
%local.biblioentry.attrib;
>
<!--end of biblioentry.attlist-->]]>
<!--end of biblioentry.module-->]]>
<!ENTITY % bibliomixed.module "INCLUDE">
<![%bibliomixed.module;[
<!ENTITY % local.bibliomixed.attrib "">
<!ENTITY % bibliomixed.role.attrib "%role.attrib;">
<!ENTITY % bibliomixed.element "INCLUDE">
<![%bibliomixed.element;[
<!ELEMENT bibliomixed %ho; (#PCDATA | %bibliocomponent.mix; | bibliomset)*
%ubiq.exclusion;>
<!--end of bibliomixed.element-->]]>
<!ENTITY % bibliomixed.attlist "INCLUDE">
<![%bibliomixed.attlist;[
<!ATTLIST bibliomixed
%common.attrib;
%bibliomixed.role.attrib;
%local.bibliomixed.attrib;
>
<!--end of bibliomixed.attlist-->]]>
<!--end of bibliomixed.module-->]]>
<!ENTITY % articleinfo.module "INCLUDE">
<![%articleinfo.module;[
<!ENTITY % local.articleinfo.attrib "">
<!ENTITY % articleinfo.role.attrib "%role.attrib;">
<!ENTITY % articleinfo.element "INCLUDE">
<![%articleinfo.element;[
<!ELEMENT articleinfo %ho; ((%info.class;)+)
%beginpage.exclusion;>
<!--end of articleinfo.element-->]]>
<!ENTITY % articleinfo.attlist "INCLUDE">
<![%articleinfo.attlist;[
<!ATTLIST articleinfo
%common.attrib;
%articleinfo.role.attrib;
%local.articleinfo.attrib;
>
<!--end of articleinfo.attlist-->]]>
<!--end of articleinfo.module-->]]>
<!ENTITY % biblioset.module "INCLUDE">
<![%biblioset.module;[
<!ENTITY % local.biblioset.attrib "">
<!ENTITY % biblioset.role.attrib "%role.attrib;">
<!ENTITY % biblioset.element "INCLUDE">
<![%biblioset.element;[
<!ELEMENT biblioset %ho; ((%bibliocomponent.mix;)+)
%ubiq.exclusion;>
<!--end of biblioset.element-->]]>
<!-- Relation: Relationship of elements contained within BiblioSet -->
<!ENTITY % biblioset.attlist "INCLUDE">
<![%biblioset.attlist;[
<!ATTLIST biblioset
relation CDATA #IMPLIED
%common.attrib;
%biblioset.role.attrib;
%local.biblioset.attrib;
>
<!--end of biblioset.attlist-->]]>
<!--end of biblioset.module-->]]>
<!ENTITY % bibliomset.module "INCLUDE">
<![%bibliomset.module;[
<!ENTITY % bibliomset.role.attrib "%role.attrib;">
<!ENTITY % local.bibliomset.attrib "">
<!ENTITY % bibliomset.element "INCLUDE">
<![%bibliomset.element;[
<!ELEMENT bibliomset %ho; (#PCDATA | %bibliocomponent.mix; | bibliomset)*
%ubiq.exclusion;>
<!--end of bibliomset.element-->]]>
<!-- Relation: Relationship of elements contained within BiblioMSet -->