RelaxNG/publidoc.rnc
author Patrick PIERRE <patrick.pierre@prismallia.fr>
sam., 03 août 2013 12:04:12 +0200
changeset 244 9591f38effc4
parent 243 5763ffc01aeb
child 245 2d5de0246a8e
permissions -rw-r--r--
Hotspot vide
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@238
   275
 & highlight* & emphasis* & 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@243
   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@236
   396
 & hotspot.display.attribute?
Patrick@237
   397
 & hotspot.type.attribute?
Patrick@191
   398
 & xmlid.attribute?
Patrick@173
   399
x.attribute = attribute x { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
Patrick@173
   400
y.attribute = attribute y { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
patrick@182
   401
w.attribute = attribute w { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
patrick@182
   402
h.attribute = attribute h { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
Patrick@236
   403
hotspot.display.attribute = attribute display { "normal" | "visible" | "pulse" }
Patrick@237
   404
hotspot.type.attribute = attribute type { xsd:NCName }
Patrick@191
   405
   
Patrick@191
   406
hotspot.content =
Patrick@191
   407
   ((link | p+ | hotspot.image | audio | video), (spot, scenario?)?)
Patrick@191
   408
 | (spot, scenario?)
patrick@243
   409
 | empty 
Patrick@191
   410
   
Patrick@191
   411
# ~~~~~~ spot
Patrick@191
   412
spot = element spot { spot.attributes, spot.content }
Patrick@191
   413
Patrick@191
   414
spot.attributes =
Patrick@191
   415
   dx.attribute?
Patrick@191
   416
 & dy.attribute?
Patrick@191
   417
 & dw.attribute?
Patrick@191
   418
 & dh.attribute?
patrick@188
   419
dx.attribute = attribute dx { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
patrick@188
   420
dy.attribute = attribute dy { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
Patrick@191
   421
dw.attribute = attribute dw { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
Patrick@191
   422
dh.attribute = attribute dh { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
Patrick@191
   423
Patrick@191
   424
spot.content =
Patrick@191
   425
   ((p+ | image), audio?)
Patrick@191
   426
 | audio
Patrick@191
   427
 | video
Patrick@191
   428
patrick@109
   429
# ~~~~~~ media.caption
patrick@109
   430
media.caption = element caption { caption.attributes, caption.content }
patrick@109
   431
patrick@109
   432
caption.attributes =
patrick@109
   433
   x.attribute?
patrick@109
   434
 & y.attribute?
patrick@109
   435
Patrick@191
   436
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ scenario ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@191
   437
Patrick@191
   438
# ~~~~~~ scenario
Patrick@191
   439
scenario = element scenario { scenario.content }
Patrick@191
   440
Patrick@191
   441
scenario.content =
Patrick@191
   442
   init*,
Patrick@191
   443
   onclick*
Patrick@191
   444
Patrick@191
   445
# ~~~~~~ init
Patrick@191
   446
init = element init { init.attributes }
Patrick@191
   447
Patrick@191
   448
init.attributes =
Patrick@191
   449
   init.action.attribute
Patrick@191
   450
 & target.attribute?
Patrick@191
   451
init.action.attribute = attribute action { "hide" }
Patrick@191
   452
target.attribute = attribute target { "hotspot" | "spot" }
Patrick@191
   453
Patrick@191
   454
# ~~~~~~ onclick
Patrick@191
   455
onclick = element onclick { onclick.attributes }
Patrick@191
   456
Patrick@191
   457
onclick.attributes =
Patrick@191
   458
   onclick.action.attribute
Patrick@191
   459
 & target.attribute?
Patrick@191
   460
onclick.action.attribute = attribute action { "show" }
Patrick@191
   461
Patrick@189
   462
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ bibliograpgy.entry ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@189
   463
Patrick@189
   464
# ~~~~~~ bibliography.entry
Patrick@189
   465
bibliography.entry = element entry { bibliography.entry.content }
Patrick@189
   466
Patrick@189
   467
bibliography.entry.content =
Patrick@189
   468
   identifier.ean?
Patrick@189
   469
 & title
Patrick@189
   470
 & subtitle?
Patrick@189
   471
 & copyright?
Patrick@189
   472
 & collection?
Patrick@189
   473
 & contributors?
Patrick@189
   474
 & date?
Patrick@189
   475
 & place?
Patrick@189
   476
 & folio?
Patrick@189
   477
 & pages?
Patrick@189
   478
Patrick@189
   479
# ~~~~~~ folio
Patrick@189
   480
folio = element folio { folio.content }
Patrick@189
   481
Patrick@189
   482
folio.content = xsd:positiveInteger | xsd:token {pattern = "[DLXVI]+"}
Patrick@189
   483
Patrick@189
   484
# ~~~~~~ pages
Patrick@189
   485
pages = element pages { pages.content }
Patrick@189
   486
Patrick@189
   487
pages.content = xsd:positiveInteger
Patrick@189
   488
patrick@0
   489
patrick@0
   490
# =============================================================================
patrick@90
   491
#                                 HEAD LEVEL
patrick@90
   492
# =============================================================================
patrick@90
   493
patrick@127
   494
# ~~~~~~~~~~~~~~~~~~~~~~~ title, shorttitle, subtitle ~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   495
patrick@90
   496
title = element title { title.content }
patrick@127
   497
shorttitle = element shorttitle { title.content }
patrick@90
   498
subtitle = element subtitle { title.content }
patrick@90
   499
patrick@90
   500
title.content = inlines
patrick@90
   501
patrick@90
   502
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ identifier ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   503
patrick@156
   504
identifier = element identifier {
patrick@156
   505
   (attribute type { "ean" }, xsd:token {pattern = "\d{13}"})
patrick@156
   506
 | (attribute type { "uri" }, xsd:anyURI)
patrick@90
   507
}
patrick@90
   508
patrick@90
   509
identifier.ean = element identifier {
patrick@90
   510
   attribute type { "ean" }, xsd:token {pattern = "\d{13}"}
patrick@90
   511
}
patrick@90
   512
patrick@156
   513
identifier.uri = element identifier {
patrick@156
   514
   attribute type { "uri" }, xsd:anyURI
patrick@156
   515
}
patrick@90
   516
patrick@90
   517
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ copyright ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   518
patrick@90
   519
copyright = element copyright { copyright.content }
patrick@90
   520
patrick@90
   521
copyright.content = inlines
patrick@90
   522
Patrick@155
   523
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ collection ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@155
   524
Patrick@155
   525
collection = element collection { collection.content }
Patrick@155
   526
Patrick@155
   527
collection.content = inlines
Patrick@155
   528
patrick@90
   529
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ contributors ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   530
patrick@90
   531
# ~~~~~~ contributors
patrick@90
   532
contributors = element contributors { contributors.content }
patrick@90
   533
patrick@90
   534
contributors.content =
patrick@90
   535
   contributor+
patrick@90
   536
patrick@90
   537
# ~~~~~~ contributor
patrick@90
   538
contributor = element contributor { contributor.content }
patrick@90
   539
patrick@90
   540
contributor.content =
patrick@90
   541
   (((firstname, secondname?)?, lastname) | label),
patrick@90
   542
   address?,
patrick@90
   543
   link?,
patrick@101
   544
   role+
patrick@90
   545
patrick@90
   546
# ~~~~~~ firstname, secondname, lastname, label
patrick@90
   547
firstname = element firstname { firstname.content }
patrick@90
   548
secondname = element secondname { secondname.content }
patrick@90
   549
lastname = element lastname { lastname.content }
patrick@90
   550
label = element label { label.content }
patrick@90
   551
patrick@90
   552
firstname.content = inlines
patrick@90
   553
secondname.content = inlines
patrick@90
   554
lastname.content = inlines
patrick@90
   555
label.content = inlines
patrick@90
   556
patrick@90
   557
# ~~~~~~ address
patrick@90
   558
address = element address { address.content }
patrick@90
   559
patrick@90
   560
address.content = inlines
patrick@90
   561
patrick@90
   562
# ~~~~~~ role
patrick@90
   563
role = element role { role.content }
patrick@90
   564
patrick@90
   565
role.content = "author" | "illustrator" | "publisher" | "packager"
patrick@90
   566
patrick@90
   567
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ place ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   568
patrick@90
   569
place = element place { place.content }
patrick@90
   570
patrick@90
   571
place.content = inlines
patrick@90
   572
patrick@90
   573
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ source ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   574
patrick@90
   575
source = element source {
Patrick@189
   576
   (  (attribute type { "book" }, bibliography.entry.content)
patrick@90
   577
    | (attribute type { "file" }, source.content.file)),
patrick@90
   578
   source.content
patrick@90
   579
}
patrick@90
   580
patrick@90
   581
source.content.file =
patrick@90
   582
   identifier.uri
patrick@90
   583
source.content =
patrick@90
   584
   annotation*
patrick@90
   585
Patrick@189
   586
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ keyword & subject ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   587
patrick@90
   588
# ~~~~~~ keywordset
patrick@90
   589
keywordset = element keywordset { keywordset.content }
patrick@90
   590
patrick@90
   591
keywordset.content = keyword+
patrick@90
   592
patrick@90
   593
# ~~~~~~ keyword
patrick@90
   594
keyword = element keyword { keyword.content }
patrick@90
   595
patrick@90
   596
keyword.content = mixed { sup*, sub* }
patrick@90
   597
patrick@90
   598
# ~~~~~~ subjectset
patrick@90
   599
subjectset = element subjectset { subjectset.content }
patrick@90
   600
patrick@90
   601
subjectset.content = subject+
patrick@90
   602
patrick@90
   603
# ~~~~~~ subject
patrick@132
   604
subject = element subject { subject.content }
patrick@90
   605
Patrick@214
   606
subject.content = mixed { sup*, sub* }
patrick@90
   607
patrick@90
   608
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ abstract ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   609
patrick@90
   610
abstract = element abstract { abstract.content }
patrick@90
   611
patrick@90
   612
abstract.content =
patrick@90
   613
   p+
patrick@90
   614
patrick@90
   615
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cover ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   616
patrick@90
   617
cover = element cover { cover.content }
patrick@90
   618
patrick@90
   619
cover.content =
patrick@90
   620
   cover.image
patrick@90
   621
patrick@90
   622
cover.image = element image { cover.image.attributes }
patrick@90
   623
patrick@90
   624
cover.image.attributes =
patrick@90
   625
   cover.image.id.attribute
patrick@90
   626
cover.image.id.attribute = attribute id { xsd:NMTOKEN }
patrick@105
   627
   
patrick@90
   628
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ annotation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   629
patrick@90
   630
annotation = element annotation { annotation.content }
patrick@90
   631
patrick@90
   632
annotation.content = inlines
patrick@90
   633
patrick@90
   634
patrick@90
   635
# =============================================================================
patrick@20
   636
#                                 INLINE LEVEL
patrick@0
   637
# =============================================================================
patrick@0
   638
patrick@0
   639
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ inlines ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   640
patrick@0
   641
inlines = mixed {
patrick@0
   642
   sup*
patrick@0
   643
 & sub*
patrick@42
   644
 & var*
patrick@13
   645
 & number*
patrick@42
   646
 & math*
patrick@0
   647
 & date*
patrick@0
   648
 & name*
Patrick@212
   649
 & foreign*
Patrick@212
   650
 & acronym*
Patrick@212
   651
 & term*
Patrick@212
   652
 & literal*
Patrick@212
   653
 & stage*
Patrick@212
   654
 & highlight*
Patrick@238
   655
 & emphasis*
Patrick@212
   656
 & mentioned*
Patrick@212
   657
 & initial*
patrick@5
   658
 & note*
patrick@5
   659
 & quote*
patrick@25
   660
 & link*
patrick@42
   661
 & anchor*
patrick@93
   662
 & image*
Patrick@208
   663
 & audio*
patrick@105
   664
 & smil*
Patrick@205
   665
 & warning*
patrick@0
   666
}
patrick@0
   667
patrick@42
   668
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ sub, sup, var ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   669
Patrick@225
   670
sup = element sup { mixed { warning* } }
patrick@0
   671
Patrick@225
   672
sub = element sub { mixed { warning* } }
patrick@42
   673
Patrick@225
   674
var = element var { mixed { warning* } }
patrick@42
   675
patrick@90
   676
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ number ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@90
   677
patrick@90
   678
number = element number {
patrick@90
   679
   ( attribute type {"roman"}, number.attributes, number.roman.content )
patrick@90
   680
 | ( number.attributes, number.content)
patrick@90
   681
}
patrick@90
   682
patrick@90
   683
number.attributes =
patrick@90
   684
   number.value.attribute?
patrick@90
   685
number.value.attribute = attribute value { xsd:integer | xsd:decimal }
patrick@90
   686
Patrick@212
   687
number.content = mixed { sup* & warning* }
patrick@157
   688
number.roman.content = xsd:token {pattern = "[DLXVI]+"}
patrick@90
   689
patrick@42
   690
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ math ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@42
   691
patrick@42
   692
math = element math {
patrick@42
   693
   ( attribute notation {"tex"}, math.attributes, math.tex.content )
patrick@42
   694
 | ( math.attributes, math.content)
patrick@42
   695
}
patrick@42
   696
patrick@42
   697
math.attributes =
patrick@42
   698
   wide.attribute?
patrick@42
   699
wide.attribute = attribute wide { xsd:boolean }
patrick@42
   700
Patrick@225
   701
math.content = mixed { sup* & sub* & var* & warning* }
patrick@42
   702
math.tex.content = text
patrick@0
   703
patrick@36
   704
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ date ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   705
patrick@0
   706
date = element date { date.attributes, date.content }
patrick@0
   707
patrick@3
   708
date.attributes =
patrick@13
   709
   date.value.attribute
patrick@13
   710
 & date.of.attribute?
patrick@13
   711
date.value.attribute = attribute value { xsd:date | xsd:gYearMonth | xsd:gYear }
patrick@33
   712
date.of.attribute = attribute of { "birth" | "death" }
patrick@0
   713
Patrick@226
   714
date.content = mixed { sup* & number* & warning* }
patrick@0
   715
patrick@36
   716
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ name ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   717
patrick@0
   718
name = element name { name.attributes, name.content }
patrick@2
   719
patrick@2
   720
name.attributes =
patrick@2
   721
   name.of.attribute?
Patrick@226
   722
name.of.attribute = attribute of {
Patrick@226
   723
   "person" | "company" | "book" | "newspaper" | "party" | "movie"
Patrick@226
   724
 | "painting" }
patrick@0
   725
Patrick@212
   726
name.content = mixed { sup* & number* & acronym* & warning* }
Patrick@212
   727
Patrick@212
   728
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ foreign ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   729
Patrick@212
   730
foreign = element foreign { foreign.attributes, foreign.content }
Patrick@212
   731
Patrick@212
   732
foreign.attributes =
Patrick@212
   733
   lang.attribute?
Patrick@212
   734
claire@242
   735
foreign.content = inlines
Patrick@212
   736
Patrick@212
   737
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ acronym ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   738
Patrick@212
   739
acronym = element acronym { acronym.content }
Patrick@212
   740
Patrick@212
   741
acronym.content = mixed { sup* & warning* }
Patrick@212
   742
Patrick@212
   743
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ term ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   744
Patrick@212
   745
term = element term { term.content }
Patrick@212
   746
Patrick@212
   747
term.content = mixed { sup* & warning* }
Patrick@212
   748
Patrick@212
   749
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ literal ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   750
Patrick@212
   751
literal = element literal { literal.content }
Patrick@212
   752
Patrick@212
   753
literal.content = mixed { sup* & warning* }
Patrick@212
   754
Patrick@212
   755
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ stage ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   756
Patrick@212
   757
stage = element stage { stage.content }
Patrick@212
   758
Patrick@212
   759
stage.content = inlines
Patrick@212
   760
Patrick@212
   761
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ highlight ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   762
Patrick@212
   763
highlight = element highlight { highlight.content }
Patrick@212
   764
Patrick@212
   765
highlight.content = inlines
Patrick@212
   766
Patrick@238
   767
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ emphasis ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@238
   768
Patrick@238
   769
emphasis = element emphasis { emphasis.content }
Patrick@238
   770
Patrick@238
   771
emphasis.content = inlines
Patrick@238
   772
Patrick@212
   773
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ mentioned ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   774
Patrick@212
   775
mentioned = element mentioned { mentioned.content }
Patrick@212
   776
Patrick@212
   777
mentioned.content = inlines
Patrick@212
   778
Patrick@212
   779
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ initial ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@212
   780
Patrick@212
   781
initial = element initial { initial.content }
Patrick@212
   782
Patrick@212
   783
initial.content =
Patrick@212
   784
   c,
Patrick@212
   785
   w?
Patrick@212
   786
Patrick@212
   787
c = element c { text }
Patrick@212
   788
w = element w { inlines }
patrick@2
   789
patrick@36
   790
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ note ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   791
patrick@5
   792
note = element note { note.attributes, note.content }
patrick@0
   793
patrick@5
   794
note.attributes =
patrick@5
   795
   note.label.attribute?
patrick@5
   796
note.label.attribute = attribute label { text }
patrick@0
   797
patrick@5
   798
note.content =
claire@180
   799
   (w?, block+) | inlines
patrick@91
   800
patrick@36
   801
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ quote ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@5
   802
patrick@5
   803
quote = element quote { quote.content }
patrick@5
   804
patrick@131
   805
quote.content =
patrick@131
   806
   (phrase, attribution) | inlines
patrick@131
   807
patrick@131
   808
phrase = element phrase { phrase.content }
patrick@131
   809
patrick@131
   810
phrase.content = inlines
patrick@5
   811
patrick@36
   812
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ link ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@0
   813
patrick@0
   814
link = element link { link.attributes, link.content }
patrick@0
   815
patrick@9
   816
link.attributes =
patrick@42
   817
   (uri.attribute | idref.attribute)
patrick@9
   818
uri.attribute = attribute uri { xsd:anyURI }
patrick@9
   819
idref.attribute = attribute idref { xsd:IDREF }
patrick@0
   820
Patrick@225
   821
link.content = mixed {
Patrick@212
   822
   sup* & sub* & var* & number* & math* & date* & name* & foreign* & acronym*
Patrick@238
   823
 & term* & literal* & stage* & highlight* & emphasis* & mentioned* & warning* }
patrick@42
   824
patrick@42
   825
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ anchor ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@42
   826
Patrick@147
   827
anchor = element anchor { anchor.attributes, anchor.content }
patrick@42
   828
patrick@42
   829
anchor.attributes =
patrick@42
   830
   anchor.id.attribute
patrick@42
   831
anchor.id.attribute = attribute xml:id { xsd:ID }
patrick@91
   832
Patrick@147
   833
anchor.content = inlines
Patrick@147
   834
patrick@105
   835
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ smil ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
patrick@105
   836
patrick@105
   837
smil = element smil { smil.attributes, smil.content }
patrick@105
   838
patrick@105
   839
smil.attributes =
Patrick@207
   840
   audio.attribute?
Patrick@207
   841
 & begin.attribute?
patrick@105
   842
 & end.attribute?
Patrick@207
   843
audio.attribute = attribute audio { xsd:anyURI }
patrick@105
   844
begin.attribute = attribute begin { xsd:decimal }
patrick@105
   845
end.attribute = attribute end { xsd:decimal }
patrick@105
   846
patrick@105
   847
smil.content = inlines
Patrick@205
   848
Patrick@205
   849
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ warning ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick@205
   850
Patrick@205
   851
warning = element warning { warning.content }
Patrick@205
   852
Patrick@231
   853
warning.content = inlines