# $Id$
start = publiset
publiset = element publiset {
publiset.attributes,
publiset.content
}
publiset.attributes =
version.attribute
version.attribute = attribute version { "1.0" }
publiset.content =
(composition | selection)+
# =============================================================================
# TOP LEVEL
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ composition ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
composition = element composition {
composition.attributes,
composition.content
}
composition.attributes =
composition.id.attribute
& path.attribute?
& xpath.attribute?
& xslt.attribute?
& remap.attributes
composition.id.attribute = attribute xml:id { xsd:ID }
path.attribute = attribute path { xsd:anyURI }
xslt.attribute = attribute xslt { xsd:anyURI }
xpath.attribute = attribute xpath { text }
composition.content =
composition.head?,
(composition.division | composition.file)+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ selection ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
selection = element selection {
selection.attributes,
selection.content
}
selection.attributes =
selection.id.attribute
& path.attribute?
selection.id.attribute = attribute xml:id { xsd:ID }
selection.content =
selection.head?,
(selection.division | selection.file | link)+
# =============================================================================
# HEAD LEVEL
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ head ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
composition.head = element head { head.attributes, top.head.content }
selection.head = element head { top.head.content }
division.head = element head { division.head.content }
head.attributes =
remap.attributes
top.head.content =
(title, subtitle?)?
& identifier*
& language?
& copyright?
& author*
& publisher?
& source?
& cover?
division.head.content =
(title, subtitle?)?
& language?
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ title, subtitle ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
title = element title { title.content }
subtitle = element subtitle { title.content }
title.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ identifier ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
identifier.uri = element identifier {
attribute type { "uri" }, xsd:anyURI
}
identifier.ean = element identifier {
attribute type { "ean" }, xsd:token {pattern = "\d{13}"}
}
identifier = identifier.uri | identifier.ean
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ language ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
language = element language { language.attributes }
language.attributes = lang.attribute
lang.attribute = attribute xml:lang { xsd:language }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ copyright ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
copyright = element copyright { copyright.content }
copyright.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ author, publisher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ author
author = element author { author.content }
author.attributes =
role.attribute?
role.attribute = attribute role { "author" | "illustrator" }
author.content =
firstname?,
lastname,
role*
# ~~~~~~ publisher
publisher = element publisher { publisher.content }
publisher.content =
label,
link?
# ~~~~~~ firstname
firstname = element firstname { firstname.content }
firstname.content = inlines
# ~~~~~~ lastname
lastname = element lastname { lastname.content }
lastname.content = inlines
# ~~~~~~ role
role = element role { role.attributes }
role.attributes =
role.of.attribute
role.of.attribute = attribute of { "author" | "illustrator" }
# ~~~~~~ label
label = element label { label.content }
label.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ source ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ source
source = element source {
( (attribute type { "book" }, source.content.book)
| (attribute type { "file" }, source.content.file))
}
source.content.book =
identifier.ean,
title?,
pagenumber*
source.content.file =
identifier.uri
# ~~~~~~ pagenumber
pagenumber = element pagenumber { pagenumber.attributes }
pagenumber.attributes =
pagenumber.value.attribute
pagenumber.value.attribute = attribute value { pagenumber.value.enumeration }
pagenumber.value.enumeration = xsd:positiveInteger
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cover ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cover = element cover { cover.content }
cover.content =
cover.image
cover.image = element image { cover.image.attributes }
cover.image.attributes =
cover.image.id.attribute
cover.image.id.attribute = attribute id { xsd:NMTOKEN }
# =============================================================================
# DIVISION LEVEL
# =============================================================================
composition.division = element division {
composition.division.attributes,
composition.division.content
}
selection.division = element division {
selection.division.attributes,
selection.division.content
}
composition.division.attributes =
path.attribute?
& xpath.attribute?
& xslt.attribute?
& remap.attributes
selection.division.attributes =
path.attribute?
composition.division.content =
composition.head?,
(composition.division | composition.file)+
selection.division.content =
selection.head?,
(selection.division | selection.file | link)+
# =============================================================================
# FILE LEVEL
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ file ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
composition.file = element file { composition.file.attributes }
selection.file = element file { selection.file.attributes, file.content }
composition.file.attributes =
name.attribute
& xpath.attribute?
& xslt.attribute?
& remap.attributes
selection.file.attributes =
name.attribute
& uri.attribute?
name.attribute = attribute name { xsd:anyURI }
file.content = inlines
# =============================================================================
# INLINE LEVEL
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ inlines ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
inlines = mixed {
sup*
& sub*
}
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ sub, sup ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sup = element sup { inlines }
sub = element sub { inlines }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ link ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
link = element link { link.attributes, link.content }
link.attributes =
uri.attribute
uri.attribute = attribute uri { xsd:anyURI }
link.content = inlines
# =============================================================================
# REMAP ATTRIBUTES
# =============================================================================
remap.attributes =
as.attribute?
& attributes.attribute?
as.attribute = attribute as { xsd:QName }
attributes.attribute =
attribute attributes {list { (xsd:token {pattern = "\c+=\S+"})+ }}