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