RelaxNG/publidoc.rnc
author Patrick PIERRE <patrick.pierre@prismallia.fr>
dim., 12 juin 2011 14:17:23 +0200
changeset 18 e448c6a000e5
parent 17 ca367d4d080b
child 20 79713ffae179
permissions -rw-r--r--
metadata spécialisé
# $Id$

start = publidoc


publidoc = element publidoc {
   publidoc.attributes,
   publidoc.content
}

publidoc.attributes =
   version.attribute
version.attribute = attribute version { "1.0" }

publidoc.content =
   document
 | top.topic


# =============================================================================
#                                  Top level
# =============================================================================

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ document ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

document = element document { document.attributes, document.content }

document.attributes =
   document.id.attribute
document.id.attribute = attribute xml:id { xsd:ID }

document.content =
   top.metadata?,
   (division+ | topic+)

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ topic ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

top.topic = element topic { top.topic.attributes, top.topic.content }


# =============================================================================
#                               Metadata level
# =============================================================================

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ metadata ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

top.metadata = element metadata { top.metadata.content }
division.metadata = element metadata { division.metadata.content }
component.metadata = element metadata { component.metadata.content }
section.metadata = element metadata { section.metadata.content }

top.metadata.content =
   (title, subtitle?)?
 & language?
 & author*
 & publisher?
 & date?
 & place?
 & source*
 & subjectset?
 & abstract?
 & annotation*
division.metadata.content =
   (title, subtitle?)?
 & language?
 & annotation*
component.metadata.content =
   (title, subtitle?)?
 & language?
 & author*
 & annotation*
section.metadata.content =
   (title, subtitle?)?
 & language?
 & annotation*

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ title, subtitle ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

title = element title { title.content }
subtitle = element subtitle { title.content }

title.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ language ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

language = element language { language.attributes }

language.attributes = lang.attribute
lang.attribute = attribute xml:lang { xsd:language }

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ author, publisher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

# ~~~~~~ author
author = element author { author.content }

author.content =
   firstname?,
   lastname

# ~~~~~~ publisher
publisher = element publisher { publisher.content }

publisher.content = inlines

# ~~~~~~ firstname
firstname = element firstname { firstname.content }

firstname.content = inlines

# ~~~~~~ lastname
lastname = element lastname { lastname.content }

lastname.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ place ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

place = element place { place.content }

place.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ source ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

# ~~~~~~ source
source = element source {
   source.attributes,
   (  (attribute type { "book" }, source.content.book)
    | (attribute type { "file" })),
   source.content
}

source.attributes =
   source.id.attribute
source.id.attribute = attribute id { xsd:NMTOKEN }

source.content.book =
   title,
   pagenumber*
source.content =
   annotation*

# ~~~~~~ pagenumber
pagenumber = element pagenumber { pagenumber.attributes }

pagenumber.attributes =
   pagenumber.value.attribute
pagenumber.value.attribute = attribute value { pagenumber.value.enumeration }
pagenumber.value.enumeration = xsd:positiveInteger

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ subject ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

# ~~~~~~ subjectset
subjectset = element subjectset { subjectset.content }

subjectset.content = subject+

# ~~~~~~ subject
subject = element subject { subject.attributes }

subject.attributes =
   subject.id.attribute
subject.id.attribute = attribute id { xsd:NMTOKEN }

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ abstract ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

abstract = element abstract { abstract.content }

abstract.content =
   parag+

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ annotation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

annotation = element annotation { annotation.content }

annotation.content = inlines


# =============================================================================
#                                 Division level
# =============================================================================

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ division ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

division = element division { division.content }

division.content =
   division.metadata?,
   (division+ | topic+)


# =============================================================================
#                               Component level
# =============================================================================

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ topic ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

topic = element topic { topic.attributes, topic.content }

top.topic.attributes =
   topic.id.attribute
 & topic.type.attribute?
topic.attributes =
   topic.id.attribute?
 & topic.type.attribute?
topic.id.attribute = attribute xml:id { xsd:ID }
topic.type.attribute = attribute type { xsd:NCName }

top.topic.content =
   top.metadata?,
   section+
topic.content =
   component.metadata?,
   section+


# =============================================================================
#                                 Section level
# =============================================================================

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ section ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

section = element section { section.content, section.attributes }

section.content =
   section.metadata?,
   (section+ | block+)

section.attributes =
   status.attribute?
status.attribute = attribute status { xsd:NCName }


# =============================================================================
#                                 Block level
# =============================================================================

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ block ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

block = (parag | speech | \list | table | media)

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ parag ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

parag = element parag { parag.content }

parag.content =
   inlines
 & link*

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ speech ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

# ~~~~~~ speech
speech = element speech { speech.content }

speech.content =
   speaker?,
   stage?,
   parag+

# ~~~~~~ speaker
speaker = element speaker { speaker.content }

speaker.content = inlines

# ~~~~~~ stage
stage = element stage { stage.content }

stage.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ list ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

# ~~~~~~ list
\list = element list { \list.content }

\list.content =
   title?,
   (  (attribute type {"ordered"} ?, item, item+)
    | (attribute type {"glossary"}, glossary.item+) )

# ~~~~~~ item
item = element item { item.content }

item.content = block+

# ~~~~~~ glossary.item
glossary.item = element item { glossary.item.content }

glossary.item.content =
   label,
   block+

# ~~~~~~ label
label = element label { label.content }

label.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ table ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

table = element table { table.content }

table.content =
   title?,
   tgroup+,
   caption?

# ~~~~~~ tgroup
tgroup = element tgroup { tgroup.attributes, tgroup.content }

tgroup.content =
   thead?,
   tfoot?,
   tbody

tgroup.attributes =
   cols.attribute
 & align.attribute?
 & colsep.attribute?
 & rowsep.attribute?
cols.attribute = attribute cols { xsd:positiveInteger }
align.attribute = attribute align { "left"  |  "right"  | "center" | "justify" }
colsep.attribute = attribute colsep { "0" | "1" }
rowsep.attribute = attribute rowsep { "0" | "1" }

# ~~~~~~ thead, tfoot, tbody
thead = element thead { thead.content }
tfoot = element tfoot { tfoot.content }
tbody = element tbody { tbody.content }

thead.content =
   row+
tfoot.content =
   row+
tbody.content =
   row+

# ~~~~~~ row
row = element row { row.attribute, row.content }

row.attribute =
   valign.attribute?
valign.attribute = attribute valign { "top" | "middle" | "bottom" }

row.content =
  entry+

# ~~~~~~ entry
entry = element entry { entry.content }

entry.content =
   inlines
 | parag+

# ~~~~~~ caption
caption = element caption { caption.content }

caption.content =
   parag+

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ media ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

# ~~~~~~ media
media = element media { media.content }

media.content =
   image+,
   caption?

# ~~~~~~ image
image = element image { image.attributes, image.content }

image.attributes =
   media.id.attribute
media.id.attribute = attribute id { xsd:NMTOKEN }

image.content =
   copyright?

# ~~~~~~ copyright
copyright = element copyright { copyright.content }

copyright.content = inlines


# =============================================================================
#                                 Inline level
# =============================================================================

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ inlines ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

inlines = mixed {
   sup*
 & sub*
 & number*
 & date*
 & name*
 & note*
 & foreign*
 & highlight*
 & mentioned*
 & quote*
 & acronym*
 & term*
}

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ sub, sup ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

sup = element sup { inlines }

sub = element sub { inlines }

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ number ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

number = element number {
   ( attribute type {"roman"}, number.attributes, number.roman.content )
 | ( number.attributes, number.content)
}

number.attributes =
   number.value.attribute?
number.value.attribute = attribute value { xsd:integer | xsd:decimal }

number.content = mixed { sup* }
number.roman.content = xsd:token {pattern = "[dlxvi]+"}

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ date ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

date = element date { date.attributes, date.content }

date.attributes =
   date.value.attribute
 & date.of.attribute?
date.value.attribute = attribute value { xsd:date | xsd:gYearMonth | xsd:gYear }
date.of.attribute = attribute of { date.of.enumeration }
date.of.enumeration = "birth" | "death"

date.content = mixed { sup* }

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ name ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

name = element name { name.attributes, name.content }

name.attributes =
   name.of.attribute?
name.of.attribute = attribute of { name.of.enumeration }
name.of.enumeration = "person" | "company" | "book" | "newspaper" | "party"

name.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ note ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

note = element note { note.attributes, note.content }

note.attributes =
   note.label.attribute?
note.label.attribute = attribute label { text }

note.content =
   inlines
 | parag+

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ foreign ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

foreign = element foreign { foreign.attributes, foreign.content }

foreign.attributes =
   lang.attribute?

foreign.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ highlight ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

highlight = element highlight { highlight.content }

highlight.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ mentioned ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

mentioned = element mentioned { mentioned.content }

mentioned.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ quote ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

quote = element quote { quote.content }

quote.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ acronym ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

acronym = element acronym { acronym.content }

acronym.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ term ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

term = element term { term.content }

term.content = inlines

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ link ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

link = element link { link.attributes, link.content }

link.attributes =
   (uri.attribute | idref.attribute)?
uri.attribute = attribute uri { xsd:anyURI }
idref.attribute = attribute idref { xsd:IDREF }

link.content = inlines