RelaxNG/publidoc.rnc
author Patrick PIERRE
ven., 21 juin 2013 19:28:26 +0200
changeset 225 4bb2b00913ad
parent 217 787f74e3166d
child 226 e48bb0f52815
permissions -rw-r--r--
restriction de l'étendue de certaines balises
patrick@0
     1
# $Id$
patrick@0
     2
patrick@0
     3
start = publidoc
patrick@0
     4
patrick@0
     5
patrick@0
     6
publidoc = element publidoc {
patrick@0
     7
   publidoc.attributes,
patrick@0
     8
   publidoc.content
patrick@0
     9
}
patrick@0
    10
patrick@0
    11
publidoc.attributes =
patrick@0
    12
   version.attribute
patrick@0
    13
version.attribute = attribute version { "1.0" }
patrick@0
    14
patrick@0
    15
publidoc.content =
patrick@0
    16
   document
patrick@0
    17
 | top.topic
patrick@0
    18
patrick@0
    19
patrick@0
    20
# =============================================================================
patrick@20
    21
#                                  TOP LEVEL
patrick@0
    22
# =============================================================================
patrick@0
    23
patrick@98
    24
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ top.head ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
    25
patrick@90
    26
top.head = element head { top.head.content }
patrick@90
    27
patrick@90
    28
top.head.content =
Patrick@217
    29
   (title, shorttitle?, subtitle*)?
patrick@156
    30
 & (identifier, identifier?)?
patrick@181
    31
 & copyright*
Patrick@155
    32
 & collection?
patrick@90
    33
 & contributors?
patrick@90
    34
 & date?
patrick@90
    35
 & place?
patrick@156
    36
 & (source, source?)?
patrick@90
    37
 & keywordset?
patrick@90
    38
 & subjectset?
patrick@90
    39
 & abstract?
patrick@90
    40
 & cover?
patrick@90
    41
 & annotation*
patrick@90
    42
patrick@0
    43
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ document ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
    44
patrick@90
    45
# ~~~~~~ document
patrick@0
    46
document = element document { document.attributes, document.content }
patrick@0
    47
patrick@0
    48
document.attributes =
patrick@0
    49
   document.id.attribute
patrick@142
    50
 & document.type.attribute?
patrick@66
    51
 & lang.attribute?
patrick@117
    52
document.id.attribute = attribute id { xsd:NMTOKEN }
patrick@142
    53
document.type.attribute = attribute type { xsd:NCName }
patrick@66
    54
lang.attribute = attribute xml:lang { xsd:language }
patrick@0
    55
patrick@0
    56
document.content =
patrick@20
    57
   top.head?,
patrick@56
    58
   (division | topic)+
patrick@0
    59
patrick@0
    60
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ topic ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
    61
patrick@18
    62
top.topic = element topic { top.topic.attributes, top.topic.content }
patrick@0
    63
patrick@20
    64
top.topic.attributes =
patrick@20
    65
   topic.id.attribute
patrick@20
    66
 & topic.type.attribute?
patrick@66
    67
 & lang.attribute?
patrick@117
    68
topic.id.attribute = attribute id { xsd:NMTOKEN }
patrick@20
    69
topic.type.attribute = attribute type { xsd:NCName }
patrick@20
    70
patrick@20
    71
top.topic.content =
patrick@20
    72
   top.head?,
Patrick@137
    73
   header?,
Patrick@190
    74
   ((section+, bibliography?) | bibliography),
Patrick@137
    75
   footer?
patrick@0
    76
patrick@40
    77
patrick@0
    78
# =============================================================================
patrick@20
    79
#                                 DIVISION LEVEL
patrick@0
    80
# =============================================================================
patrick@0
    81
patrick@70
    82
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ division ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
    83
patrick@90
    84
# ~~~~~~ division
patrick@0
    85
division = element division { division.content }
patrick@0
    86
patrick@0
    87
division.content =
patrick@20
    88
   division.head?,
Patrick@217
    89
   front?,
patrick@56
    90
   (division | topic)+
patrick@0
    91
patrick@90
    92
# ~~~~~~ division.head
patrick@90
    93
division.head = element head { division.head.content }
patrick@90
    94
patrick@90
    95
division.head.content =
Patrick@217
    96
   (title, shorttitle?, subtitle*)?
patrick@90
    97
 & abstract?
patrick@90
    98
 & annotation*
patrick@90
    99
Patrick@217
   100
# ~~~~~~ front
Patrick@217
   101
front = element front { front.content }
Patrick@217
   102
Patrick@217
   103
front.content =
Patrick@217
   104
   section+
Patrick@217
   105
patrick@0
   106
patrick@0
   107
# =============================================================================
patrick@90
   108
#                                COMPONENT LEVEL
patrick@0
   109
# =============================================================================
patrick@0
   110
patrick@90
   111
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ component.head ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   112
patrick@90
   113
component.head = element head { component.head.content }
patrick@90
   114
patrick@90
   115
component.head.content =
Patrick@217
   116
   (title, shorttitle?, subtitle*)?
patrick@90
   117
 & contributors?
patrick@143
   118
 & date?
patrick@143
   119
 & place?
patrick@143
   120
 & keywordset?
patrick@143
   121
 & subjectset?
patrick@90
   122
 & abstract?
patrick@90
   123
 & annotation*
patrick@90
   124
patrick@0
   125
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ topic ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   126
patrick@0
   127
topic = element topic { topic.attributes, topic.content }
patrick@0
   128
patrick@0
   129
topic.attributes =
Patrick@191
   130
   (topic.id.attribute | xmlid.attribute)?
patrick@0
   131
 & topic.type.attribute?
patrick@69
   132
 & lang.attribute?
Patrick@191
   133
xmlid.attribute = attribute xml:id { xsd:ID }
patrick@0
   134
patrick@0
   135
topic.content =
patrick@20
   136
   component.head?,
Patrick@137
   137
   header?,
Patrick@190
   138
   ((section+, bibliography?) | bibliography),
Patrick@137
   139
   footer?
patrick@0
   140
patrick@0
   141
patrick@0
   142
# =============================================================================
patrick@20
   143
#                                 SECTION LEVEL
patrick@0
   144
# =============================================================================
patrick@0
   145
Patrick@137
   146
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@137
   147
Patrick@137
   148
header = element header { header.content }
Patrick@137
   149
Patrick@137
   150
header.content =
Patrick@137
   151
   block+
Patrick@137
   152
patrick@20
   153
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ section ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   154
patrick@90
   155
# ~~~~~~ section
patrick@58
   156
section = element section { section.attributes, section.content }
patrick@58
   157
patrick@58
   158
section.attributes =
patrick@58
   159
   section.type.attribute?
patrick@64
   160
 & lang.attribute?
patrick@166
   161
 & for.attribute?
patrick@58
   162
section.type.attribute = attribute type { xsd:NCName }
patrick@166
   163
for.attribute = attribute for { xsd:NCName }
patrick@0
   164
patrick@0
   165
section.content =
patrick@20
   166
   section.head?,
patrick@9
   167
   (section+ | block+)
patrick@0
   168
patrick@90
   169
# ~~~~~~ section.head
patrick@90
   170
section.head = element head { section.head.content }
patrick@90
   171
patrick@90
   172
section.head.content =
Patrick@217
   173
   (title, shorttitle?, subtitle*)?
Marc@177
   174
 & keywordset?
Marc@177
   175
 & subjectset?
patrick@90
   176
 & abstract?
patrick@105
   177
 & audio*
patrick@90
   178
 & annotation*
patrick@90
   179
Patrick@189
   180
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ bibliography ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@189
   181
Patrick@189
   182
# ~~~~~~ bibliography
Patrick@189
   183
bibliography = element bibliography { bibliography.content }
Patrick@189
   184
Patrick@189
   185
bibliography.content =
Patrick@189
   186
   bibliography.entry+
Patrick@189
   187
Patrick@137
   188
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ footer ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@137
   189
Patrick@137
   190
footer = element footer { footer.content }
Patrick@137
   191
Patrick@137
   192
footer.content =
Patrick@137
   193
   block+
Patrick@137
   194
patrick@0
   195
patrick@0
   196
# =============================================================================
patrick@20
   197
#                                 BLOCK LEVEL
patrick@0
   198
# =============================================================================
patrick@0
   199
patrick@20
   200
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ block ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@9
   201
patrick@90
   202
# ~~~~~~ block
patrick@44
   203
block = (p | speech | \list | blockquote | table | media)
patrick@9
   204
patrick@90
   205
# ~~~~~~ block.head
patrick@90
   206
block.head = element head { block.head.content }
patrick@90
   207
patrick@90
   208
block.head.content =
Patrick@217
   209
   (title, shorttitle?, subtitle*)?
patrick@90
   210
patrick@42
   211
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ p ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   212
patrick@20
   213
p = element p { p.content }
patrick@0
   214
patrick@20
   215
p.content =
patrick@0
   216
   inlines
patrick@0
   217
patrick@18
   218
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ speech ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@18
   219
patrick@18
   220
# ~~~~~~ speech
patrick@18
   221
speech = element speech { speech.content }
patrick@18
   222
patrick@18
   223
speech.content =
patrick@18
   224
   speaker?,
patrick@18
   225
   stage?,
Patrick@199
   226
   (p | blockquote)+
patrick@18
   227
patrick@18
   228
# ~~~~~~ speaker
patrick@18
   229
speaker = element speaker { speaker.content }
patrick@18
   230
patrick@18
   231
speaker.content = inlines
patrick@18
   232
patrick@17
   233
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ list ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@9
   234
patrick@9
   235
# ~~~~~~ list
patrick@75
   236
\list = element list {
patrick@20
   237
   block.head?,
patrick@71
   238
   (  (attribute type {"ordered"}?, item, item+)
patrick@9
   239
    | (attribute type {"glossary"}, glossary.item+) )
patrick@75
   240
}
patrick@9
   241
patrick@9
   242
# ~~~~~~ item
patrick@9
   243
item = element item { item.content }
patrick@9
   244
patrick@30
   245
item.content =
patrick@73
   246
   inlines
patrick@73
   247
 | block+
patrick@9
   248
patrick@9
   249
# ~~~~~~ glossary.item
patrick@9
   250
glossary.item = element item { glossary.item.content }
patrick@9
   251
patrick@9
   252
glossary.item.content =
patrick@9
   253
   label,
patrick@9
   254
   block+
patrick@9
   255
patrick@44
   256
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ blockquote ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@44
   257
patrick@44
   258
# ~~~~~~ blockquote
patrick@44
   259
blockquote = element blockquote { blockquote.content }
patrick@44
   260
patrick@44
   261
blockquote.content =
patrick@44
   262
   block.head?,
patrick@44
   263
   (p | speech | \list)+,
patrick@44
   264
   attribution?
patrick@44
   265
patrick@44
   266
# ~~~~~~ attribution
patrick@72
   267
attribution = element attribution { attribution.content }
patrick@44
   268
Patrick@225
   269
attribution.content = mixed {
Patrick@225
   270
   sup* & number* & date* & name* & foreign* & acronym* & term* & literal*
Patrick@225
   271
 & highlight* & mentioned* & warning* }
patrick@44
   272
patrick@17
   273
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ table ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@17
   274
patrick@73
   275
# ~~~~~~ table
patrick@17
   276
table = element table { table.content }
patrick@17
   277
patrick@17
   278
table.content =
patrick@20
   279
   block.head?,
patrick@17
   280
   tgroup+,
patrick@109
   281
   table.caption?
patrick@17
   282
patrick@17
   283
# ~~~~~~ tgroup
patrick@17
   284
tgroup = element tgroup { tgroup.attributes, tgroup.content }
patrick@17
   285
patrick@17
   286
tgroup.content =
patrick@17
   287
   thead?,
patrick@17
   288
   tbody
patrick@17
   289
patrick@17
   290
tgroup.attributes =
patrick@17
   291
   cols.attribute
patrick@17
   292
 & align.attribute?
patrick@17
   293
 & colsep.attribute?
patrick@17
   294
 & rowsep.attribute?
patrick@17
   295
cols.attribute = attribute cols { xsd:positiveInteger }
patrick@17
   296
align.attribute = attribute align { "left"  |  "right"  | "center" | "justify" }
patrick@17
   297
colsep.attribute = attribute colsep { "0" | "1" }
patrick@17
   298
rowsep.attribute = attribute rowsep { "0" | "1" }
patrick@17
   299
patrick@146
   300
# ~~~~~~ thead, tbody
patrick@22
   301
thead = element thead { thead.attributes, thead.content }
patrick@22
   302
tbody = element tbody { tbody.attributes, tbody.content }
patrick@17
   303
patrick@22
   304
thead.attributes =
patrick@22
   305
   valign.attribute?
patrick@22
   306
tbody.attributes =
patrick@22
   307
   valign.attribute?
patrick@22
   308
valign.attribute = attribute valign { "top" | "middle" | "bottom" }
patrick@75
   309
patrick@17
   310
thead.content =
patrick@17
   311
   row+
patrick@17
   312
tbody.content =
patrick@17
   313
   row+
patrick@17
   314
patrick@17
   315
# ~~~~~~ row
patrick@146
   316
row = element row { row.attributes, row.content }
patrick@17
   317
patrick@146
   318
row.attributes =
patrick@17
   319
   valign.attribute?
patrick@146
   320
 & rowsep.attribute?
patrick@17
   321
patrick@17
   322
row.content =
Patrick@189
   323
  table.entry+
patrick@17
   324
Patrick@189
   325
# ~~~~~~ table.entry
Patrick@189
   326
table.entry = element entry { table.entry.attributes, table.entry.content }
patrick@146
   327
Patrick@189
   328
table.entry.attributes =
patrick@146
   329
   align.attribute?
patrick@146
   330
 & valign.attribute?
patrick@146
   331
 & colsep.attribute?
patrick@146
   332
 & rowsep.attribute?
patrick@17
   333
Patrick@189
   334
table.entry.content =
patrick@17
   335
   inlines
patrick@37
   336
 | (p | media)+
patrick@17
   337
patrick@109
   338
# ~~~~~~ table.caption
patrick@109
   339
table.caption = element caption { caption.content }
patrick@17
   340
patrick@17
   341
caption.content =
patrick@20
   342
   inlines
Patrick@138
   343
 | (p | speech | \list | blockquote)+
patrick@17
   344
patrick@35
   345
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ media ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   346
patrick@2
   347
# ~~~~~~ media
patrick@0
   348
media = element media { media.content }
patrick@0
   349
patrick@0
   350
media.content =
patrick@24
   351
   block.head?,
patrick@119
   352
   (image | audio | video)+,
patrick@109
   353
   media.caption?,
patrick@36
   354
   link?
patrick@0
   355
patrick@2
   356
# ~~~~~~ image
patrick@0
   357
image = element image { image.attributes, image.content }
Patrick@191
   358
hotspot.image = element image {image.attributes }
patrick@0
   359
patrick@0
   360
image.attributes =
patrick@104
   361
   media.id.attribute
patrick@104
   362
 & image.type?
patrick@17
   363
media.id.attribute = attribute id { xsd:NMTOKEN }
Patrick@184
   364
image.type = attribute type { "cover" | "thumbnail" | "icon" | "animation" }
patrick@0
   365
patrick@0
   366
image.content =
patrick@111
   367
   copyright?,
Patrick@176
   368
   hotspot*
patrick@0
   369
patrick@45
   370
# ~~~~~~ audio
patrick@45
   371
audio = element audio { audio.attributes }
patrick@43
   372
patrick@45
   373
audio.attributes =
patrick@43
   374
   media.id.attribute
patrick@104
   375
 & audio.type?
patrick@113
   376
audio.type = attribute type { "music" | "voice" | "background" | "smil" }
patrick@43
   377
patrick@119
   378
# ~~~~~~ video
patrick@119
   379
video = element video { video.attributes }
patrick@119
   380
patrick@119
   381
video.attributes =
patrick@119
   382
   media.id.attribute
patrick@119
   383
patrick@122
   384
# ~~~~~~ hotspot
patrick@122
   385
hotspot = element hotspot { hotspot.attributes, hotspot.content }
patrick@122
   386
patrick@122
   387
hotspot.attributes =
patrick@122
   388
   x.attribute
patrick@122
   389
 & y.attribute
patrick@182
   390
 & w.attribute
Patrick@183
   391
 & h.attribute?
Patrick@191
   392
 & hotspot.type.attribute?
Patrick@191
   393
 & xmlid.attribute?
Patrick@173
   394
x.attribute = attribute x { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
Patrick@173
   395
y.attribute = attribute y { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
patrick@182
   396
w.attribute = attribute w { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
patrick@182
   397
h.attribute = attribute h { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
Patrick@183
   398
hotspot.type.attribute = attribute type { "normal" | "visible" | "pulse" }
Patrick@191
   399
   
Patrick@191
   400
hotspot.content =
Patrick@191
   401
   ((link | p+ | hotspot.image | audio | video), (spot, scenario?)?)
Patrick@191
   402
 | (spot, scenario?)
Patrick@191
   403
   
Patrick@191
   404
# ~~~~~~ spot
Patrick@191
   405
spot = element spot { spot.attributes, spot.content }
Patrick@191
   406
Patrick@191
   407
spot.attributes =
Patrick@191
   408
   dx.attribute?
Patrick@191
   409
 & dy.attribute?
Patrick@191
   410
 & dw.attribute?
Patrick@191
   411
 & dh.attribute?
patrick@188
   412
dx.attribute = attribute dx { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
patrick@188
   413
dy.attribute = attribute dy { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
Patrick@191
   414
dw.attribute = attribute dw { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
Patrick@191
   415
dh.attribute = attribute dh { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
Patrick@191
   416
Patrick@191
   417
spot.content =
Patrick@191
   418
   ((p+ | image), audio?)
Patrick@191
   419
 | audio
Patrick@191
   420
 | video
Patrick@191
   421
patrick@109
   422
# ~~~~~~ media.caption
patrick@109
   423
media.caption = element caption { caption.attributes, caption.content }
patrick@109
   424
patrick@109
   425
caption.attributes =
patrick@109
   426
   x.attribute?
patrick@109
   427
 & y.attribute?
patrick@109
   428
Patrick@191
   429
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ scenario ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@191
   430
Patrick@191
   431
# ~~~~~~ scenario
Patrick@191
   432
scenario = element scenario { scenario.content }
Patrick@191
   433
Patrick@191
   434
scenario.content =
Patrick@191
   435
   init*,
Patrick@191
   436
   onclick*
Patrick@191
   437
Patrick@191
   438
# ~~~~~~ init
Patrick@191
   439
init = element init { init.attributes }
Patrick@191
   440
Patrick@191
   441
init.attributes =
Patrick@191
   442
   init.action.attribute
Patrick@191
   443
 & target.attribute?
Patrick@191
   444
init.action.attribute = attribute action { "hide" }
Patrick@191
   445
target.attribute = attribute target { "hotspot" | "spot" }
Patrick@191
   446
Patrick@191
   447
# ~~~~~~ onclick
Patrick@191
   448
onclick = element onclick { onclick.attributes }
Patrick@191
   449
Patrick@191
   450
onclick.attributes =
Patrick@191
   451
   onclick.action.attribute
Patrick@191
   452
 & target.attribute?
Patrick@191
   453
onclick.action.attribute = attribute action { "show" }
Patrick@191
   454
Patrick@189
   455
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ bibliograpgy.entry ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@189
   456
Patrick@189
   457
# ~~~~~~ bibliography.entry
Patrick@189
   458
bibliography.entry = element entry { bibliography.entry.content }
Patrick@189
   459
Patrick@189
   460
bibliography.entry.content =
Patrick@189
   461
   identifier.ean?
Patrick@189
   462
 & title
Patrick@189
   463
 & subtitle?
Patrick@189
   464
 & copyright?
Patrick@189
   465
 & collection?
Patrick@189
   466
 & contributors?
Patrick@189
   467
 & date?
Patrick@189
   468
 & place?
Patrick@189
   469
 & folio?
Patrick@189
   470
 & pages?
Patrick@189
   471
Patrick@189
   472
# ~~~~~~ folio
Patrick@189
   473
folio = element folio { folio.content }
Patrick@189
   474
Patrick@189
   475
folio.content = xsd:positiveInteger | xsd:token {pattern = "[DLXVI]+"}
Patrick@189
   476
Patrick@189
   477
# ~~~~~~ pages
Patrick@189
   478
pages = element pages { pages.content }
Patrick@189
   479
Patrick@189
   480
pages.content = xsd:positiveInteger
Patrick@189
   481
patrick@0
   482
patrick@0
   483
# =============================================================================
patrick@90
   484
#                                 HEAD LEVEL
patrick@90
   485
# =============================================================================
patrick@90
   486
patrick@127
   487
# ~~~~~~~~~~~~~~~~~~~~~~~ title, shorttitle, subtitle ~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   488
patrick@90
   489
title = element title { title.content }
patrick@127
   490
shorttitle = element shorttitle { title.content }
patrick@90
   491
subtitle = element subtitle { title.content }
patrick@90
   492
patrick@90
   493
title.content = inlines
patrick@90
   494
patrick@90
   495
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ identifier ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   496
patrick@156
   497
identifier = element identifier {
patrick@156
   498
   (attribute type { "ean" }, xsd:token {pattern = "\d{13}"})
patrick@156
   499
 | (attribute type { "uri" }, xsd:anyURI)
patrick@90
   500
}
patrick@90
   501
patrick@90
   502
identifier.ean = element identifier {
patrick@90
   503
   attribute type { "ean" }, xsd:token {pattern = "\d{13}"}
patrick@90
   504
}
patrick@90
   505
patrick@156
   506
identifier.uri = element identifier {
patrick@156
   507
   attribute type { "uri" }, xsd:anyURI
patrick@156
   508
}
patrick@90
   509
patrick@90
   510
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ copyright ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   511
patrick@90
   512
copyright = element copyright { copyright.content }
patrick@90
   513
patrick@90
   514
copyright.content = inlines
patrick@90
   515
Patrick@155
   516
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ collection ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@155
   517
Patrick@155
   518
collection = element collection { collection.content }
Patrick@155
   519
Patrick@155
   520
collection.content = inlines
Patrick@155
   521
patrick@90
   522
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ contributors ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   523
patrick@90
   524
# ~~~~~~ contributors
patrick@90
   525
contributors = element contributors { contributors.content }
patrick@90
   526
patrick@90
   527
contributors.content =
patrick@90
   528
   contributor+
patrick@90
   529
patrick@90
   530
# ~~~~~~ contributor
patrick@90
   531
contributor = element contributor { contributor.content }
patrick@90
   532
patrick@90
   533
contributor.content =
patrick@90
   534
   (((firstname, secondname?)?, lastname) | label),
patrick@90
   535
   address?,
patrick@90
   536
   link?,
patrick@101
   537
   role+
patrick@90
   538
patrick@90
   539
# ~~~~~~ firstname, secondname, lastname, label
patrick@90
   540
firstname = element firstname { firstname.content }
patrick@90
   541
secondname = element secondname { secondname.content }
patrick@90
   542
lastname = element lastname { lastname.content }
patrick@90
   543
label = element label { label.content }
patrick@90
   544
patrick@90
   545
firstname.content = inlines
patrick@90
   546
secondname.content = inlines
patrick@90
   547
lastname.content = inlines
patrick@90
   548
label.content = inlines
patrick@90
   549
patrick@90
   550
# ~~~~~~ address
patrick@90
   551
address = element address { address.content }
patrick@90
   552
patrick@90
   553
address.content = inlines
patrick@90
   554
patrick@90
   555
# ~~~~~~ role
patrick@90
   556
role = element role { role.content }
patrick@90
   557
patrick@90
   558
role.content = "author" | "illustrator" | "publisher" | "packager"
patrick@90
   559
patrick@90
   560
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ place ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   561
patrick@90
   562
place = element place { place.content }
patrick@90
   563
patrick@90
   564
place.content = inlines
patrick@90
   565
patrick@90
   566
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ source ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   567
patrick@90
   568
source = element source {
Patrick@189
   569
   (  (attribute type { "book" }, bibliography.entry.content)
patrick@90
   570
    | (attribute type { "file" }, source.content.file)),
patrick@90
   571
   source.content
patrick@90
   572
}
patrick@90
   573
patrick@90
   574
source.content.file =
patrick@90
   575
   identifier.uri
patrick@90
   576
source.content =
patrick@90
   577
   annotation*
patrick@90
   578
Patrick@189
   579
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ keyword & subject ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   580
patrick@90
   581
# ~~~~~~ keywordset
patrick@90
   582
keywordset = element keywordset { keywordset.content }
patrick@90
   583
patrick@90
   584
keywordset.content = keyword+
patrick@90
   585
patrick@90
   586
# ~~~~~~ keyword
patrick@90
   587
keyword = element keyword { keyword.content }
patrick@90
   588
patrick@90
   589
keyword.content = mixed { sup*, sub* }
patrick@90
   590
patrick@90
   591
# ~~~~~~ subjectset
patrick@90
   592
subjectset = element subjectset { subjectset.content }
patrick@90
   593
patrick@90
   594
subjectset.content = subject+
patrick@90
   595
patrick@90
   596
# ~~~~~~ subject
patrick@132
   597
subject = element subject { subject.content }
patrick@90
   598
Patrick@214
   599
subject.content = mixed { sup*, sub* }
patrick@90
   600
patrick@90
   601
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ abstract ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   602
patrick@90
   603
abstract = element abstract { abstract.content }
patrick@90
   604
patrick@90
   605
abstract.content =
patrick@90
   606
   p+
patrick@90
   607
patrick@90
   608
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cover ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   609
patrick@90
   610
cover = element cover { cover.content }
patrick@90
   611
patrick@90
   612
cover.content =
patrick@90
   613
   cover.image
patrick@90
   614
patrick@90
   615
cover.image = element image { cover.image.attributes }
patrick@90
   616
patrick@90
   617
cover.image.attributes =
patrick@90
   618
   cover.image.id.attribute
patrick@90
   619
cover.image.id.attribute = attribute id { xsd:NMTOKEN }
patrick@105
   620
   
patrick@90
   621
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ annotation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   622
patrick@90
   623
annotation = element annotation { annotation.content }
patrick@90
   624
patrick@90
   625
annotation.content = inlines
patrick@90
   626
patrick@90
   627
patrick@90
   628
# =============================================================================
patrick@20
   629
#                                 INLINE LEVEL
patrick@0
   630
# =============================================================================
patrick@0
   631
patrick@0
   632
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ inlines ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   633
patrick@0
   634
inlines = mixed {
patrick@0
   635
   sup*
patrick@0
   636
 & sub*
patrick@42
   637
 & var*
patrick@13
   638
 & number*
patrick@42
   639
 & math*
patrick@0
   640
 & date*
patrick@0
   641
 & name*
Patrick@212
   642
 & foreign*
Patrick@212
   643
 & acronym*
Patrick@212
   644
 & term*
Patrick@212
   645
 & literal*
Patrick@212
   646
 & stage*
Patrick@212
   647
 & highlight*
Patrick@212
   648
 & mentioned*
Patrick@212
   649
 & initial*
patrick@5
   650
 & note*
patrick@5
   651
 & quote*
patrick@25
   652
 & link*
patrick@42
   653
 & anchor*
patrick@93
   654
 & image*
Patrick@208
   655
 & audio*
patrick@105
   656
 & smil*
Patrick@205
   657
 & warning*
patrick@0
   658
}
patrick@0
   659
patrick@42
   660
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ sub, sup, var ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   661
Patrick@225
   662
sup = element sup { mixed { warning* } }
patrick@0
   663
Patrick@225
   664
sub = element sub { mixed { warning* } }
patrick@42
   665
Patrick@225
   666
var = element var { mixed { warning* } }
patrick@42
   667
patrick@90
   668
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ number ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   669
patrick@90
   670
number = element number {
patrick@90
   671
   ( attribute type {"roman"}, number.attributes, number.roman.content )
patrick@90
   672
 | ( number.attributes, number.content)
patrick@90
   673
}
patrick@90
   674
patrick@90
   675
number.attributes =
patrick@90
   676
   number.value.attribute?
patrick@90
   677
number.value.attribute = attribute value { xsd:integer | xsd:decimal }
patrick@90
   678
Patrick@212
   679
number.content = mixed { sup* & warning* }
patrick@157
   680
number.roman.content = xsd:token {pattern = "[DLXVI]+"}
patrick@90
   681
patrick@42
   682
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ math ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@42
   683
patrick@42
   684
math = element math {
patrick@42
   685
   ( attribute notation {"tex"}, math.attributes, math.tex.content )
patrick@42
   686
 | ( math.attributes, math.content)
patrick@42
   687
}
patrick@42
   688
patrick@42
   689
math.attributes =
patrick@42
   690
   wide.attribute?
patrick@42
   691
wide.attribute = attribute wide { xsd:boolean }
patrick@42
   692
Patrick@225
   693
math.content = mixed { sup* & sub* & var* & warning* }
patrick@42
   694
math.tex.content = text
patrick@0
   695
patrick@36
   696
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ date ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   697
patrick@0
   698
date = element date { date.attributes, date.content }
patrick@0
   699
patrick@3
   700
date.attributes =
patrick@13
   701
   date.value.attribute
patrick@13
   702
 & date.of.attribute?
patrick@13
   703
date.value.attribute = attribute value { xsd:date | xsd:gYearMonth | xsd:gYear }
patrick@33
   704
date.of.attribute = attribute of { "birth" | "death" }
patrick@0
   705
Patrick@212
   706
date.content = mixed { sup* & warning* }
patrick@0
   707
patrick@36
   708
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ name ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   709
patrick@0
   710
name = element name { name.attributes, name.content }
patrick@2
   711
patrick@2
   712
name.attributes =
patrick@2
   713
   name.of.attribute?
patrick@33
   714
name.of.attribute = attribute of
Patrick@135
   715
   { "person" | "company" | "book" | "newspaper" | "party" | "painting" }
patrick@0
   716
Patrick@212
   717
name.content = mixed { sup* & number* & acronym* & warning* }
Patrick@212
   718
Patrick@212
   719
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ foreign ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   720
Patrick@212
   721
foreign = element foreign { foreign.attributes, foreign.content }
Patrick@212
   722
Patrick@212
   723
foreign.attributes =
Patrick@212
   724
   lang.attribute?
Patrick@212
   725
Patrick@212
   726
foreign.content = mixed { sup* & sub* & number* & warning* }
Patrick@212
   727
Patrick@212
   728
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ acronym ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   729
Patrick@212
   730
acronym = element acronym { acronym.content }
Patrick@212
   731
Patrick@212
   732
acronym.content = mixed { sup* & warning* }
Patrick@212
   733
Patrick@212
   734
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ term ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   735
Patrick@212
   736
term = element term { term.content }
Patrick@212
   737
Patrick@212
   738
term.content = mixed { sup* & warning* }
Patrick@212
   739
Patrick@212
   740
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ literal ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   741
Patrick@212
   742
literal = element literal { literal.content }
Patrick@212
   743
Patrick@212
   744
literal.content = mixed { sup* & warning* }
Patrick@212
   745
Patrick@212
   746
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ stage ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   747
Patrick@212
   748
stage = element stage { stage.content }
Patrick@212
   749
Patrick@212
   750
stage.content = inlines
Patrick@212
   751
Patrick@212
   752
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ highlight ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   753
Patrick@212
   754
highlight = element highlight { highlight.content }
Patrick@212
   755
Patrick@212
   756
highlight.content = inlines
Patrick@212
   757
Patrick@212
   758
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ mentioned ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   759
Patrick@212
   760
mentioned = element mentioned { mentioned.content }
Patrick@212
   761
Patrick@212
   762
mentioned.content = inlines
Patrick@212
   763
Patrick@212
   764
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ initial ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   765
Patrick@212
   766
initial = element initial { initial.content }
Patrick@212
   767
Patrick@212
   768
initial.content =
Patrick@212
   769
   c,
Patrick@212
   770
   w?
Patrick@212
   771
Patrick@212
   772
c = element c { text }
Patrick@212
   773
w = element w { inlines }
patrick@2
   774
patrick@36
   775
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ note ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   776
patrick@5
   777
note = element note { note.attributes, note.content }
patrick@0
   778
patrick@5
   779
note.attributes =
patrick@5
   780
   note.label.attribute?
patrick@5
   781
note.label.attribute = attribute label { text }
patrick@0
   782
patrick@5
   783
note.content =
claire@180
   784
   (w?, block+) | inlines
patrick@91
   785
patrick@36
   786
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ quote ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@5
   787
patrick@5
   788
quote = element quote { quote.content }
patrick@5
   789
patrick@131
   790
quote.content =
patrick@131
   791
   (phrase, attribution) | inlines
patrick@131
   792
patrick@131
   793
phrase = element phrase { phrase.content }
patrick@131
   794
patrick@131
   795
phrase.content = inlines
patrick@5
   796
patrick@36
   797
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ link ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   798
patrick@0
   799
link = element link { link.attributes, link.content }
patrick@0
   800
patrick@9
   801
link.attributes =
patrick@42
   802
   (uri.attribute | idref.attribute)
patrick@9
   803
uri.attribute = attribute uri { xsd:anyURI }
patrick@9
   804
idref.attribute = attribute idref { xsd:IDREF }
patrick@0
   805
Patrick@225
   806
link.content = mixed {
Patrick@212
   807
   sup* & sub* & var* & number* & math* & date* & name* & foreign* & acronym*
Patrick@212
   808
 & term* & literal* & stage* & highlight* & mentioned* & warning* }
patrick@42
   809
patrick@42
   810
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ anchor ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@42
   811
Patrick@147
   812
anchor = element anchor { anchor.attributes, anchor.content }
patrick@42
   813
patrick@42
   814
anchor.attributes =
patrick@42
   815
   anchor.id.attribute
patrick@42
   816
anchor.id.attribute = attribute xml:id { xsd:ID }
patrick@91
   817
Patrick@147
   818
anchor.content = inlines
Patrick@147
   819
patrick@105
   820
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ smil ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@105
   821
patrick@105
   822
smil = element smil { smil.attributes, smil.content }
patrick@105
   823
patrick@105
   824
smil.attributes =
Patrick@207
   825
   audio.attribute?
Patrick@207
   826
 & begin.attribute?
patrick@105
   827
 & end.attribute?
Patrick@207
   828
audio.attribute = attribute audio { xsd:anyURI }
patrick@105
   829
begin.attribute = attribute begin { xsd:decimal }
patrick@105
   830
end.attribute = attribute end { xsd:decimal }
patrick@105
   831
patrick@105
   832
smil.content = inlines
Patrick@205
   833
Patrick@205
   834
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ warning ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@205
   835
Patrick@205
   836
warning = element warning { warning.content }
Patrick@205
   837
Patrick@225
   838
warning.content = text