metanorma-csd 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +1 -0
- data/.rubocop.tb.yml +650 -0
- data/.travis.yml +17 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE +25 -0
- data/README.adoc +176 -0
- data/Rakefile +6 -0
- data/asciidoctor-csd.gemspec.old +43 -0
- data/bin/console +14 -0
- data/bin/rspec +18 -0
- data/bin/setup +8 -0
- data/lib/asciidoctor/csd.rb +7 -0
- data/lib/asciidoctor/csd/biblio.rng +836 -0
- data/lib/asciidoctor/csd/converter.rb +177 -0
- data/lib/asciidoctor/csd/csd.rng +135 -0
- data/lib/asciidoctor/csd/isodoc.rng +1059 -0
- data/lib/asciidoctor/csd/isostandard.rng +1001 -0
- data/lib/asciidoctor/csd/pdf.js +31 -0
- data/lib/asciidoctor/csd/version.rb +5 -0
- data/lib/isodoc/csd/csdconvert.rb +123 -0
- data/lib/isodoc/csd/html/csd.scss +548 -0
- data/lib/isodoc/csd/html/dots-w@2x.png +0 -0
- data/lib/isodoc/csd/html/dots@2x.png +0 -0
- data/lib/isodoc/csd/html/header.html +184 -0
- data/lib/isodoc/csd/html/html_csd_intro.html +8 -0
- data/lib/isodoc/csd/html/html_csd_titlepage.html +95 -0
- data/lib/isodoc/csd/html/htmlstyle.scss +973 -0
- data/lib/isodoc/csd/html/scripts.html +82 -0
- data/lib/isodoc/csd/metadata.rb +56 -0
- data/lib/metanorma-csd.rb +9 -0
- data/lib/metanorma/csd.rb +7 -0
- data/lib/metanorma/csd/processor.rb +46 -0
- data/metanorma-csd.gemspec +44 -0
- metadata +265 -0
data/.travis.yml
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
dist: trusty
|
2
|
+
sudo: false
|
3
|
+
language: ruby
|
4
|
+
rvm:
|
5
|
+
- 2.5
|
6
|
+
- 2.4
|
7
|
+
- 2.3
|
8
|
+
- ruby-head
|
9
|
+
before_install:
|
10
|
+
- gem install bundler -v 1.16.1
|
11
|
+
- npm install -g puppeteer
|
12
|
+
- npm install
|
13
|
+
- unset _JAVA_OPTIONS
|
14
|
+
matrix:
|
15
|
+
allow_failures:
|
16
|
+
- rvm: ruby-head
|
17
|
+
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at ronald.tse@ribose.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
BSD 2-Clause License
|
2
|
+
|
3
|
+
Copyright (c) 2018, Ribose
|
4
|
+
All rights reserved.
|
5
|
+
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
8
|
+
|
9
|
+
* Redistributions of source code must retain the above copyright notice, this
|
10
|
+
list of conditions and the following disclaimer.
|
11
|
+
|
12
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
14
|
+
and/or other materials provided with the distribution.
|
15
|
+
|
16
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
17
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
18
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
19
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
20
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
21
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
22
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
23
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
24
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
25
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.adoc
ADDED
@@ -0,0 +1,176 @@
|
|
1
|
+
= AsciiCSD: Metanorma processor for CSD standards
|
2
|
+
|
3
|
+
image:https://img.shields.io/gem/v/metanorma-csd.svg["Gem Version", link="https://rubygems.org/gems/metanorma-csd"]
|
4
|
+
image:https://img.shields.io/travis/riboseinc/metanorma-csd/master.svg["Build Status", link="https://travis-ci.org/riboseinc/metanorma-csd"]
|
5
|
+
image:https://codeclimate.com/github/riboseinc/metanorma-csd/badges/gpa.svg["Code Climate", link="https://codeclimate.com/github/riboseinc/metanorma-csd"]
|
6
|
+
|
7
|
+
_Formerly known as_ `asciidoctor-csd`.
|
8
|
+
|
9
|
+
WARNING: This gem is still under development.
|
10
|
+
|
11
|
+
== Functionality
|
12
|
+
|
13
|
+
This gem processes http://asciidoctor.org/[Asciidoctor] documents following
|
14
|
+
a template for generating CSD International Standards.
|
15
|
+
|
16
|
+
The gem currently inherits from the https://github.com/riboseinc/metanorma-standoc
|
17
|
+
gem, and aligns closely to it. Refer to the ISO gem documentation
|
18
|
+
for guidance, including https://github.com/riboseinc/metanorma-iso/wiki/Guidance-for-authoring
|
19
|
+
|
20
|
+
The following outputs are generated.
|
21
|
+
|
22
|
+
* (Optional) An HTML preview generated directly from the Asciidoctor document,
|
23
|
+
using native Asciidoc formatting.
|
24
|
+
** http://asciimath.org[AsciiMathML] is to be used for mathematical formatting.
|
25
|
+
The gem uses the https://github.com/asciidoctor/asciimath[Ruby AsciiMath parser],
|
26
|
+
which is syntactically stricter than the common MathJax processor;
|
27
|
+
if you do not get expected results, try bracketting terms your in AsciiMathML
|
28
|
+
expressions.
|
29
|
+
* an XML representation of the document, intended as a document model for CSD
|
30
|
+
International Standards.
|
31
|
+
* The XML representation is processed in turn to generate the following outputs
|
32
|
+
as end deliverable CSD standard drafts.
|
33
|
+
** HTML
|
34
|
+
** PDF
|
35
|
+
|
36
|
+
This AsciiDoc syntax for writing CSD standards is hereby named "AsciiCSD".
|
37
|
+
|
38
|
+
== Usage
|
39
|
+
|
40
|
+
The preferred way to invoke this gem is via the `metanorma` script:
|
41
|
+
|
42
|
+
[source,console]
|
43
|
+
----
|
44
|
+
$ metanorma --type csd a.adoc # output HTML and PDF
|
45
|
+
$ metanorma --type csd --extensions html a.adoc # output just HTML
|
46
|
+
$ metanorma --type csd --extensions pdf a.adoc # output just PDF
|
47
|
+
$ metanorma --type csd --extensions xml a.adoc # output CSD XML
|
48
|
+
----
|
49
|
+
|
50
|
+
The gem translates the document into CSD XML format, and then
|
51
|
+
validates its output against the CSD XML document model; errors are
|
52
|
+
reported to console against the XML, and are intended for users to
|
53
|
+
check that they have provided all necessary components of the
|
54
|
+
document.
|
55
|
+
|
56
|
+
The gem then converts the XML into HTML and PDF.
|
57
|
+
|
58
|
+
The gem can also be invoked directly within asciidoctor, though this is deprecated:
|
59
|
+
|
60
|
+
[source,console]
|
61
|
+
----
|
62
|
+
$ asciidoctor -b csd -r 'metanorma-csd' a.adoc
|
63
|
+
----
|
64
|
+
|
65
|
+
=== Installation
|
66
|
+
|
67
|
+
If you are using a Mac, the https://github.com/riboseinc/metanorma-macos-setup
|
68
|
+
repository has instructions on setting up your machine to run Metanorma
|
69
|
+
scripts such as this one. You need only run the following in a Terminal console:
|
70
|
+
|
71
|
+
[source,console]
|
72
|
+
----
|
73
|
+
$ bash <(curl -s https://raw.githubusercontent.com/riboseinc/metanorma-macos-setup/master/metanorma-setup)
|
74
|
+
$ gem install metanorma-csd
|
75
|
+
----
|
76
|
+
|
77
|
+
=== PDF output
|
78
|
+
|
79
|
+
PDF output is generated by printing the HTML output as PDF. This is done
|
80
|
+
within the gem, using
|
81
|
+
https://developers.google.com/web/updates/2017/04/headless-chrome[Headless Chrome],
|
82
|
+
via the https://github.com/GoogleChrome/puppeteer[Puppeteer] Node library.
|
83
|
+
|
84
|
+
To get the PDF output working, do the following:
|
85
|
+
|
86
|
+
* Install Node, with at least version 7.6.0: https://nodejs.org/en/download/,
|
87
|
+
https://nodejs.org/en/download/package-manager/ . (For Mac, `brew install node`)
|
88
|
+
* Install npm: https://docs.npmjs.com/getting-started/installing-node
|
89
|
+
* Install puppeteer: `npm install -g --save --save-exact puppeteer`
|
90
|
+
|
91
|
+
The https://github.com/riboseinc/metanorma-macos-setup script includes Puppeteer
|
92
|
+
installation.
|
93
|
+
|
94
|
+
== Approach
|
95
|
+
|
96
|
+
=== Document model
|
97
|
+
|
98
|
+
The CSD Standard Document model is an instance of the
|
99
|
+
https://github.com/riboseinc/isodoc-models[StandardDocument model].
|
100
|
+
|
101
|
+
The CSD format ("CSD XML") intends to introduce rigour into the CSD
|
102
|
+
standards authoring process, and is prescribed in a separate document.
|
103
|
+
|
104
|
+
=== Asciidoctor
|
105
|
+
|
106
|
+
Asciidoctor has been selected as the authoring tool to generate the document
|
107
|
+
model representation of CSD standards. It is a document formatting tool like
|
108
|
+
Markdown and DocBook, which combines the relative ease of use of the former
|
109
|
+
(using relatively lightweight markup), and the rigour and expressively of the
|
110
|
+
latter (it has a well-defined syntax, and was in fact initially developed as a
|
111
|
+
DocBook document authoring tool). Asciidoctor has built-in capability to output
|
112
|
+
Text, DocBook and HTML; so it can be used to preview the file as it is being
|
113
|
+
authored.
|
114
|
+
|
115
|
+
Generating documents via a document model substantially automated formatting
|
116
|
+
associated with the document, including automating numbering of headings, figures,
|
117
|
+
tables etc, and automatically generating references and citations.
|
118
|
+
|
119
|
+
== Document Attributes
|
120
|
+
|
121
|
+
The gem relies on Asciidoctor document attributes to provide necessary
|
122
|
+
metadata about the document. These include:
|
123
|
+
|
124
|
+
`:edition:`:: The document edition
|
125
|
+
|
126
|
+
`:revdate:`:: The date the document was last updated
|
127
|
+
|
128
|
+
`:copyright-year:`:: The year which will be claimed as when the copyright for
|
129
|
+
the document was issued
|
130
|
+
|
131
|
+
`:title:`:: The main component of the English title of the document
|
132
|
+
(mandatory). (The first line of the AsciiDoc document, which contains the title
|
133
|
+
introduced with `=`, is ignored)
|
134
|
+
|
135
|
+
`:doctype:`:: The document type (see CSD deliverables: The different types of
|
136
|
+
CSD publications) (mandatory). The permitted types are:
|
137
|
+
+
|
138
|
+
--
|
139
|
+
code:: Code Artifact
|
140
|
+
presentation:: Presentation
|
141
|
+
proposal:: Proposal; includes IETF DRAFT
|
142
|
+
standard:: Recommendation; includes IETF RFC
|
143
|
+
report:: report
|
144
|
+
--
|
145
|
+
|
146
|
+
`:status:``:: The document status. The permitted types are: `proposal`,
|
147
|
+
`working-draft`, `committee-draft`, `draft-standard`, `final-draft`,
|
148
|
+
`published`, `withdrawn`.
|
149
|
+
|
150
|
+
`:technical-committee:`:: The name of the relevant CSD technical committee
|
151
|
+
(mandatory)
|
152
|
+
|
153
|
+
`:language:` :: The language of the document (only `en` for now) (mandatory)
|
154
|
+
|
155
|
+
|
156
|
+
The attribute `:draft:`, if present, includes review notes in the XML output;
|
157
|
+
these are otherwise suppressed.
|
158
|
+
|
159
|
+
== AsciiCSD features not also present in AsciiISO
|
160
|
+
|
161
|
+
* `+[keyword]#...#+`: encodes keywords, such as "MUST", "MUST NOT". (Encoded as
|
162
|
+
`<span class="keyword">...</span>`.
|
163
|
+
|
164
|
+
== Data Models
|
165
|
+
|
166
|
+
The CSD Standard Document format is an instance of the
|
167
|
+
https://github.com/riboseinc/isodoc-models[StandardDocument model]. Details of
|
168
|
+
this general model can be found on its page. Details of the CSD modifications
|
169
|
+
to this general model can be found on the https://github.com/riboseinc/csd[CSD model]
|
170
|
+
repository.
|
171
|
+
|
172
|
+
== Examples
|
173
|
+
|
174
|
+
* link:spec/examples/rfc6350.adoc[] is an AsciiCSD version of https://tools.ietf.org/html/rfc6350[RFC 6350].
|
175
|
+
* link:spec/examples/rfc6350.html[] is an HTML file generated from the AsciiCSD.
|
176
|
+
* link:spec/examples/rfc6350.doc[] is a Word document generated from the AsciiCSD.
|
data/Rakefile
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require "asciidoctor/csd/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "asciidoctor-csd"
|
7
|
+
spec.version = Asciidoctor::Csd::VERSION
|
8
|
+
spec.authors = ["Ribose Inc."]
|
9
|
+
spec.email = ["open.source@ribose.com"]
|
10
|
+
|
11
|
+
spec.summary = "asciidoctor-csd lets you write CSD in AsciiDoc."
|
12
|
+
spec.description = <<~DESCRIPTION
|
13
|
+
asciidoctor-csd lets you write CSD in AsciiDoc syntax.
|
14
|
+
|
15
|
+
This gem is in active development.
|
16
|
+
DESCRIPTION
|
17
|
+
|
18
|
+
spec.homepage = "https://github.com/riboseinc/metanorma-csd"
|
19
|
+
spec.license = "BSD-2-Clause"
|
20
|
+
spec.post_install_message = "The asciidoctor-csd gem has been deprecated and has been replaced by metanorma-csd"
|
21
|
+
|
22
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
23
|
+
f.match(%r{^(test|spec|features)/})
|
24
|
+
end
|
25
|
+
spec.bindir = "exe"
|
26
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
27
|
+
spec.require_paths = ["lib"]
|
28
|
+
|
29
|
+
spec.add_dependency "asciidoctor-iso", "~> 0.10.2"
|
30
|
+
spec.add_dependency "isodoc", "~> 0.8.8"
|
31
|
+
|
32
|
+
spec.add_development_dependency "bundler", "~> 1.15"
|
33
|
+
spec.add_development_dependency "byebug", "~> 9.1"
|
34
|
+
spec.add_development_dependency "equivalent-xml", "~> 0.6"
|
35
|
+
spec.add_development_dependency "guard", "~> 2.14"
|
36
|
+
spec.add_development_dependency "guard-rspec", "~> 4.7"
|
37
|
+
spec.add_development_dependency "rake", "~> 12.0"
|
38
|
+
spec.add_development_dependency "rspec", "~> 3.6"
|
39
|
+
spec.add_development_dependency "rubocop", "~> 0.50"
|
40
|
+
spec.add_development_dependency "simplecov", "~> 0.15"
|
41
|
+
spec.add_development_dependency "timecop", "~> 0.9"
|
42
|
+
spec.add_development_dependency "metanorma", "~> 0.2.5"
|
43
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "asciidoctor/csd"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/rspec
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'rspec' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require "pathname"
|
10
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path(
|
11
|
+
"../../Gemfile", Pathname.new(__FILE__).realpath
|
12
|
+
)
|
13
|
+
|
14
|
+
require "rubygems"
|
15
|
+
require "bundler/setup"
|
16
|
+
|
17
|
+
load Gem.bin_path("rspec-core", "rspec")
|
18
|
+
|
data/bin/setup
ADDED
@@ -0,0 +1,836 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
instantiations of this grammar may replace leaf strings
|
4
|
+
with more elaborated types; e.g. title (text) replaced with
|
5
|
+
title-main, title-intro, title-part; type replaced with
|
6
|
+
enum.
|
7
|
+
|
8
|
+
some renaming at leaf nodes is permissible
|
9
|
+
|
10
|
+
obligations can change both from optional to mandatory,
|
11
|
+
and from mandatory to optional; optional elements may
|
12
|
+
be omitted; freely positioned alternatives may be replaced
|
13
|
+
with strict ordering
|
14
|
+
|
15
|
+
DO NOT introduce a namespace here. We do not want a distinct namespace
|
16
|
+
for these elements, and a distinct namespace for any grammar inheriting
|
17
|
+
these elements; we just want one namespace for any child grammars
|
18
|
+
of this.
|
19
|
+
-->
|
20
|
+
<grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
21
|
+
<define name="status">
|
22
|
+
<element name="status">
|
23
|
+
<ref name="LocalizedString"/>
|
24
|
+
</element>
|
25
|
+
</define>
|
26
|
+
<define name="language">
|
27
|
+
<element name="language">
|
28
|
+
<text/>
|
29
|
+
</element>
|
30
|
+
</define>
|
31
|
+
<define name="script">
|
32
|
+
<a:documentation>ISO-639</a:documentation>
|
33
|
+
<element name="script">
|
34
|
+
<text/>
|
35
|
+
</element>
|
36
|
+
</define>
|
37
|
+
<define name="edition">
|
38
|
+
<a:documentation>ISO-15924: Latn</a:documentation>
|
39
|
+
<element name="edition">
|
40
|
+
<text/>
|
41
|
+
</element>
|
42
|
+
</define>
|
43
|
+
<define name="LocalizedString">
|
44
|
+
<optional>
|
45
|
+
<!-- multiple languages and scripts possible: comma delimit them if so -->
|
46
|
+
<attribute name="language"/>
|
47
|
+
</optional>
|
48
|
+
<optional>
|
49
|
+
<attribute name="script"/>
|
50
|
+
</optional>
|
51
|
+
<text/>
|
52
|
+
</define>
|
53
|
+
<!--
|
54
|
+
Unlike UML, change type to format: type is overloaded
|
55
|
+
Would be need if plain were default value and could omit the attribute
|
56
|
+
Added LocalizedStringOrXsAny
|
57
|
+
-->
|
58
|
+
<define name="FormattedString">
|
59
|
+
<optional>
|
60
|
+
<!-- attribute format { ( "plain" | "html" | "docbook" | "tei" | "asciidoc" | "markdown" ) }?, -->
|
61
|
+
<attribute name="format">
|
62
|
+
<choice>
|
63
|
+
<value>text/plain</value>
|
64
|
+
<value>text/html</value>
|
65
|
+
<value>application/docbook+xml</value>
|
66
|
+
<value>application/tei+xml</value>
|
67
|
+
<value>text/x-asciidoc</value>
|
68
|
+
<value>text/markdown</value>
|
69
|
+
<value>application/x-isodoc+xml</value>
|
70
|
+
<text/>
|
71
|
+
</choice>
|
72
|
+
</attribute>
|
73
|
+
</optional>
|
74
|
+
<ref name="LocalizedStringOrXsAny"/>
|
75
|
+
</define>
|
76
|
+
<define name="LocalizedStringOrXsAny">
|
77
|
+
<optional>
|
78
|
+
<!-- multiple languages and scripts possible: comma delimit them if so -->
|
79
|
+
<attribute name="language"/>
|
80
|
+
</optional>
|
81
|
+
<optional>
|
82
|
+
<attribute name="script"/>
|
83
|
+
</optional>
|
84
|
+
<oneOrMore>
|
85
|
+
<choice>
|
86
|
+
<text/>
|
87
|
+
<ref name="AnyElement"/>
|
88
|
+
</choice>
|
89
|
+
</oneOrMore>
|
90
|
+
</define>
|
91
|
+
<define name="contributor">
|
92
|
+
<element name="contributor">
|
93
|
+
<zeroOrMore>
|
94
|
+
<ref name="role"/>
|
95
|
+
</zeroOrMore>
|
96
|
+
<ref name="ContributorInfo"/>
|
97
|
+
</element>
|
98
|
+
</define>
|
99
|
+
<define name="role">
|
100
|
+
<element name="role">
|
101
|
+
<optional>
|
102
|
+
<attribute name="type">
|
103
|
+
<choice>
|
104
|
+
<value>author</value>
|
105
|
+
<value>performer</value>
|
106
|
+
<value>publisher</value>
|
107
|
+
<value>editor</value>
|
108
|
+
<value>adapter</value>
|
109
|
+
<value>translator</value>
|
110
|
+
<value>distributor</value>
|
111
|
+
</choice>
|
112
|
+
</attribute>
|
113
|
+
</optional>
|
114
|
+
<zeroOrMore>
|
115
|
+
<ref name="roledescription"/>
|
116
|
+
</zeroOrMore>
|
117
|
+
</element>
|
118
|
+
</define>
|
119
|
+
<define name="ContributorInfo">
|
120
|
+
<choice>
|
121
|
+
<ref name="person"/>
|
122
|
+
<ref name="organization"/>
|
123
|
+
</choice>
|
124
|
+
</define>
|
125
|
+
<define name="roledescription">
|
126
|
+
<element name="description">
|
127
|
+
<ref name="FormattedString"/>
|
128
|
+
</element>
|
129
|
+
</define>
|
130
|
+
<define name="person">
|
131
|
+
<element name="person">
|
132
|
+
<optional>
|
133
|
+
<ref name="fullname"/>
|
134
|
+
</optional>
|
135
|
+
<zeroOrMore>
|
136
|
+
<ref name="affiliation"/>
|
137
|
+
</zeroOrMore>
|
138
|
+
<zeroOrMore>
|
139
|
+
<ref name="person-identifier"/>
|
140
|
+
</zeroOrMore>
|
141
|
+
<zeroOrMore>
|
142
|
+
<ref name="contact"/>
|
143
|
+
</zeroOrMore>
|
144
|
+
<optional>
|
145
|
+
<ref name="uri"/>
|
146
|
+
</optional>
|
147
|
+
</element>
|
148
|
+
</define>
|
149
|
+
<define name="fullname">
|
150
|
+
<element name="name">
|
151
|
+
<choice>
|
152
|
+
<group>
|
153
|
+
<zeroOrMore>
|
154
|
+
<ref name="prefix"/>
|
155
|
+
</zeroOrMore>
|
156
|
+
<zeroOrMore>
|
157
|
+
<ref name="forename"/>
|
158
|
+
</zeroOrMore>
|
159
|
+
<zeroOrMore>
|
160
|
+
<ref name="initial"/>
|
161
|
+
</zeroOrMore>
|
162
|
+
<ref name="surname"/>
|
163
|
+
<zeroOrMore>
|
164
|
+
<ref name="addition"/>
|
165
|
+
</zeroOrMore>
|
166
|
+
</group>
|
167
|
+
<ref name="completeName"/>
|
168
|
+
</choice>
|
169
|
+
<zeroOrMore>
|
170
|
+
<ref name="biblionote"/>
|
171
|
+
</zeroOrMore>
|
172
|
+
</element>
|
173
|
+
</define>
|
174
|
+
<define name="prefix">
|
175
|
+
<element name="prefix">
|
176
|
+
<ref name="LocalizedString"/>
|
177
|
+
</element>
|
178
|
+
</define>
|
179
|
+
<define name="initial">
|
180
|
+
<element name="initial">
|
181
|
+
<ref name="LocalizedString"/>
|
182
|
+
</element>
|
183
|
+
</define>
|
184
|
+
<define name="addition">
|
185
|
+
<element name="addition">
|
186
|
+
<ref name="LocalizedString"/>
|
187
|
+
</element>
|
188
|
+
</define>
|
189
|
+
<define name="surname">
|
190
|
+
<element name="surname">
|
191
|
+
<ref name="LocalizedString"/>
|
192
|
+
</element>
|
193
|
+
</define>
|
194
|
+
<define name="forename">
|
195
|
+
<element name="forename">
|
196
|
+
<ref name="LocalizedString"/>
|
197
|
+
</element>
|
198
|
+
</define>
|
199
|
+
<define name="completeName">
|
200
|
+
<element name="completename">
|
201
|
+
<ref name="LocalizedString"/>
|
202
|
+
</element>
|
203
|
+
</define>
|
204
|
+
<define name="affiliation">
|
205
|
+
<element name="affiliation">
|
206
|
+
<optional>
|
207
|
+
<ref name="affiliationname"/>
|
208
|
+
</optional>
|
209
|
+
<zeroOrMore>
|
210
|
+
<ref name="affiliationdescription"/>
|
211
|
+
</zeroOrMore>
|
212
|
+
<ref name="organization"/>
|
213
|
+
</element>
|
214
|
+
</define>
|
215
|
+
<define name="affiliationname">
|
216
|
+
<element name="name">
|
217
|
+
<ref name="LocalizedString"/>
|
218
|
+
</element>
|
219
|
+
</define>
|
220
|
+
<define name="affiliationdescription">
|
221
|
+
<element name="description">
|
222
|
+
<ref name="FormattedString"/>
|
223
|
+
</element>
|
224
|
+
</define>
|
225
|
+
<define name="organization">
|
226
|
+
<element name="organization">
|
227
|
+
<ref name="orgname"/>
|
228
|
+
<optional>
|
229
|
+
<ref name="subdivision"/>
|
230
|
+
</optional>
|
231
|
+
<optional>
|
232
|
+
<ref name="abbreviation"/>
|
233
|
+
</optional>
|
234
|
+
<optional>
|
235
|
+
<ref name="uri"/>
|
236
|
+
</optional>
|
237
|
+
<zeroOrMore>
|
238
|
+
<ref name="org-identifier"/>
|
239
|
+
</zeroOrMore>
|
240
|
+
<zeroOrMore>
|
241
|
+
<ref name="contact"/>
|
242
|
+
</zeroOrMore>
|
243
|
+
</element>
|
244
|
+
</define>
|
245
|
+
<define name="orgname">
|
246
|
+
<element name="name">
|
247
|
+
<ref name="LocalizedString"/>
|
248
|
+
</element>
|
249
|
+
</define>
|
250
|
+
<define name="subdivision">
|
251
|
+
<element name="subdivision">
|
252
|
+
<ref name="LocalizedString"/>
|
253
|
+
</element>
|
254
|
+
</define>
|
255
|
+
<define name="abbreviation">
|
256
|
+
<element name="abbreviation">
|
257
|
+
<ref name="LocalizedString"/>
|
258
|
+
</element>
|
259
|
+
</define>
|
260
|
+
<define name="uri">
|
261
|
+
<element name="uri">
|
262
|
+
<data type="anyURI"/>
|
263
|
+
</element>
|
264
|
+
</define>
|
265
|
+
<!-- TODO may change -->
|
266
|
+
<define name="contact">
|
267
|
+
<choice>
|
268
|
+
<ref name="address"/>
|
269
|
+
<ref name="phone"/>
|
270
|
+
<ref name="email"/>
|
271
|
+
<ref name="uri"/>
|
272
|
+
</choice>
|
273
|
+
</define>
|
274
|
+
<define name="phone">
|
275
|
+
<element name="phone">
|
276
|
+
<text/>
|
277
|
+
</element>
|
278
|
+
</define>
|
279
|
+
<define name="email">
|
280
|
+
<element name="email">
|
281
|
+
<text/>
|
282
|
+
</element>
|
283
|
+
</define>
|
284
|
+
<define name="address">
|
285
|
+
<element name="address">
|
286
|
+
<oneOrMore>
|
287
|
+
<!-- iso191606 TODO -->
|
288
|
+
<ref name="street"/>
|
289
|
+
</oneOrMore>
|
290
|
+
<ref name="city"/>
|
291
|
+
<optional>
|
292
|
+
<ref name="state"/>
|
293
|
+
</optional>
|
294
|
+
<ref name="country"/>
|
295
|
+
<optional>
|
296
|
+
<ref name="postcode"/>
|
297
|
+
</optional>
|
298
|
+
</element>
|
299
|
+
</define>
|
300
|
+
<define name="street">
|
301
|
+
<element name="street">
|
302
|
+
<text/>
|
303
|
+
</element>
|
304
|
+
</define>
|
305
|
+
<define name="city">
|
306
|
+
<element name="city">
|
307
|
+
<text/>
|
308
|
+
</element>
|
309
|
+
</define>
|
310
|
+
<define name="state">
|
311
|
+
<element name="state">
|
312
|
+
<text/>
|
313
|
+
</element>
|
314
|
+
</define>
|
315
|
+
<define name="country">
|
316
|
+
<element name="country">
|
317
|
+
<text/>
|
318
|
+
</element>
|
319
|
+
</define>
|
320
|
+
<define name="postcode">
|
321
|
+
<element name="postcode">
|
322
|
+
<text/>
|
323
|
+
</element>
|
324
|
+
</define>
|
325
|
+
<define name="person-identifier">
|
326
|
+
<element name="identifier">
|
327
|
+
<attribute name="type">
|
328
|
+
<choice>
|
329
|
+
<value>isni</value>
|
330
|
+
<value>uri</value>
|
331
|
+
</choice>
|
332
|
+
</attribute>
|
333
|
+
<text/>
|
334
|
+
</element>
|
335
|
+
</define>
|
336
|
+
<define name="org-identifier">
|
337
|
+
<element name="identifier">
|
338
|
+
<attribute name="type">
|
339
|
+
<choice>
|
340
|
+
<value>orcid</value>
|
341
|
+
<value>uri</value>
|
342
|
+
</choice>
|
343
|
+
</attribute>
|
344
|
+
<text/>
|
345
|
+
</element>
|
346
|
+
</define>
|
347
|
+
<define name="citation">
|
348
|
+
<element name="citation">
|
349
|
+
<ref name="CitationType"/>
|
350
|
+
</element>
|
351
|
+
</define>
|
352
|
+
<define name="CitationType">
|
353
|
+
<attribute name="bibitemid">
|
354
|
+
<data type="IDREF"/>
|
355
|
+
</attribute>
|
356
|
+
<zeroOrMore>
|
357
|
+
<ref name="locality"/>
|
358
|
+
</zeroOrMore>
|
359
|
+
<optional>
|
360
|
+
<ref name="date"/>
|
361
|
+
</optional>
|
362
|
+
</define>
|
363
|
+
<define name="date">
|
364
|
+
<element name="date">
|
365
|
+
<choice>
|
366
|
+
<data type="gYear"/>
|
367
|
+
<data type="date"/>
|
368
|
+
</choice>
|
369
|
+
</element>
|
370
|
+
</define>
|
371
|
+
<define name="locality">
|
372
|
+
<element name="locality">
|
373
|
+
<ref name="BibItemLocality"/>
|
374
|
+
</element>
|
375
|
+
</define>
|
376
|
+
<define name="BibItemLocality">
|
377
|
+
<attribute name="type">
|
378
|
+
<ref name="LocalityType"/>
|
379
|
+
</attribute>
|
380
|
+
<ref name="referenceFrom"/>
|
381
|
+
<optional>
|
382
|
+
<ref name="referenceTo"/>
|
383
|
+
</optional>
|
384
|
+
</define>
|
385
|
+
<define name="LocalityType">
|
386
|
+
<data type="string">
|
387
|
+
<param name="pattern">section|clause|part|paragraph|chapter|page|whole|table|annex|figure|note|example|volume|issue|locality:[a-zA-Z0-9_]+</param>
|
388
|
+
</data>
|
389
|
+
</define>
|
390
|
+
<define name="referenceFrom">
|
391
|
+
<element name="referenceFrom">
|
392
|
+
<text/>
|
393
|
+
</element>
|
394
|
+
</define>
|
395
|
+
<define name="referenceTo">
|
396
|
+
<element name="referenceTo">
|
397
|
+
<text/>
|
398
|
+
</element>
|
399
|
+
</define>
|
400
|
+
<!-- unlike UML, has id attribute; that results from including bibitem in a docmodel -->
|
401
|
+
<define name="bibitem">
|
402
|
+
<element name="bibitem">
|
403
|
+
<attribute name="id">
|
404
|
+
<data type="ID"/>
|
405
|
+
</attribute>
|
406
|
+
<ref name="BibliographicItem"/>
|
407
|
+
</element>
|
408
|
+
</define>
|
409
|
+
<define name="bibitem_no_id">
|
410
|
+
<element name="bibitem">
|
411
|
+
<ref name="BibliographicItem"/>
|
412
|
+
</element>
|
413
|
+
</define>
|
414
|
+
<define name="BibItemType" combine="choice">
|
415
|
+
<choice>
|
416
|
+
<value>article</value>
|
417
|
+
<value>book</value>
|
418
|
+
<value>booklet</value>
|
419
|
+
<value>conference</value>
|
420
|
+
<value>manual</value>
|
421
|
+
<value>proceedings</value>
|
422
|
+
<value>presentation</value>
|
423
|
+
<value>thesis</value>
|
424
|
+
<value>techreport</value>
|
425
|
+
<value>standard</value>
|
426
|
+
<value>unpublished</value>
|
427
|
+
<value>map</value>
|
428
|
+
<value>electronic resource</value>
|
429
|
+
<value>audiovisual</value>
|
430
|
+
<value>film</value>
|
431
|
+
<value>video</value>
|
432
|
+
<value>broadcast</value>
|
433
|
+
<value>graphic work</value>
|
434
|
+
<value>music</value>
|
435
|
+
<value>patent</value>
|
436
|
+
<value>inbook</value>
|
437
|
+
<value>incollection</value>
|
438
|
+
<value>inproceedings</value>
|
439
|
+
</choice>
|
440
|
+
</define>
|
441
|
+
<define name="BibliographicItem">
|
442
|
+
<optional>
|
443
|
+
<attribute name="type">
|
444
|
+
<ref name="BibItemType"/>
|
445
|
+
</attribute>
|
446
|
+
</optional>
|
447
|
+
<choice>
|
448
|
+
<oneOrMore>
|
449
|
+
<ref name="btitle"/>
|
450
|
+
</oneOrMore>
|
451
|
+
<ref name="formattedref"/>
|
452
|
+
</choice>
|
453
|
+
<zeroOrMore>
|
454
|
+
<ref name="bsource"/>
|
455
|
+
</zeroOrMore>
|
456
|
+
<zeroOrMore>
|
457
|
+
<ref name="docidentifier"/>
|
458
|
+
</zeroOrMore>
|
459
|
+
<zeroOrMore>
|
460
|
+
<ref name="bdate"/>
|
461
|
+
</zeroOrMore>
|
462
|
+
<zeroOrMore>
|
463
|
+
<ref name="contributor"/>
|
464
|
+
</zeroOrMore>
|
465
|
+
<optional>
|
466
|
+
<ref name="edition"/>
|
467
|
+
</optional>
|
468
|
+
<zeroOrMore>
|
469
|
+
<ref name="biblionote"/>
|
470
|
+
</zeroOrMore>
|
471
|
+
<zeroOrMore>
|
472
|
+
<ref name="language"/>
|
473
|
+
</zeroOrMore>
|
474
|
+
<zeroOrMore>
|
475
|
+
<ref name="script"/>
|
476
|
+
</zeroOrMore>
|
477
|
+
<optional>
|
478
|
+
<ref name="abstract"/>
|
479
|
+
</optional>
|
480
|
+
<optional>
|
481
|
+
<ref name="status"/>
|
482
|
+
</optional>
|
483
|
+
<optional>
|
484
|
+
<ref name="copyright"/>
|
485
|
+
</optional>
|
486
|
+
<zeroOrMore>
|
487
|
+
<ref name="docrelation"/>
|
488
|
+
</zeroOrMore>
|
489
|
+
<zeroOrMore>
|
490
|
+
<ref name="series"/>
|
491
|
+
</zeroOrMore>
|
492
|
+
<optional>
|
493
|
+
<ref name="medium"/>
|
494
|
+
</optional>
|
495
|
+
<zeroOrMore>
|
496
|
+
<ref name="bplace"/>
|
497
|
+
</zeroOrMore>
|
498
|
+
<zeroOrMore>
|
499
|
+
<ref name="extent"/>
|
500
|
+
</zeroOrMore>
|
501
|
+
<zeroOrMore>
|
502
|
+
<ref name="accesslocation"/>
|
503
|
+
</zeroOrMore>
|
504
|
+
<optional>
|
505
|
+
<ref name="bclassification"/>
|
506
|
+
</optional>
|
507
|
+
<optional>
|
508
|
+
<ref name="validity"/>
|
509
|
+
</optional>
|
510
|
+
</define>
|
511
|
+
<define name="btitle">
|
512
|
+
<element name="title">
|
513
|
+
<ref name="TypedTitleString"/>
|
514
|
+
</element>
|
515
|
+
</define>
|
516
|
+
<define name="bsource">
|
517
|
+
<element name="uri">
|
518
|
+
<ref name="TypedUri"/>
|
519
|
+
</element>
|
520
|
+
</define>
|
521
|
+
<define name="formattedref">
|
522
|
+
<element name="formattedref">
|
523
|
+
<ref name="FormattedString"/>
|
524
|
+
</element>
|
525
|
+
</define>
|
526
|
+
<define name="validity">
|
527
|
+
<element name="validity">
|
528
|
+
<optional>
|
529
|
+
<ref name="validityBegins"/>
|
530
|
+
</optional>
|
531
|
+
<optional>
|
532
|
+
<ref name="validityEnds"/>
|
533
|
+
</optional>
|
534
|
+
<optional>
|
535
|
+
<ref name="validityRevision"/>
|
536
|
+
</optional>
|
537
|
+
</element>
|
538
|
+
</define>
|
539
|
+
<define name="validityBegins">
|
540
|
+
<element name="validityBegins">
|
541
|
+
<data type="dateTime"/>
|
542
|
+
</element>
|
543
|
+
</define>
|
544
|
+
<define name="validityEnds">
|
545
|
+
<element name="validityEnds">
|
546
|
+
<data type="dateTime"/>
|
547
|
+
</element>
|
548
|
+
</define>
|
549
|
+
<define name="validityRevision">
|
550
|
+
<element name="revision">
|
551
|
+
<data type="dateTime"/>
|
552
|
+
</element>
|
553
|
+
</define>
|
554
|
+
<define name="TypedTitleString">
|
555
|
+
<optional>
|
556
|
+
<attribute name="type">
|
557
|
+
<ref name="TitleType"/>
|
558
|
+
</attribute>
|
559
|
+
</optional>
|
560
|
+
<ref name="FormattedString"/>
|
561
|
+
</define>
|
562
|
+
<define name="TitleType">
|
563
|
+
<choice>
|
564
|
+
<value>alternative</value>
|
565
|
+
<value>original</value>
|
566
|
+
<value>unofficial</value>
|
567
|
+
<value>subtitle</value>
|
568
|
+
<value>main</value>
|
569
|
+
</choice>
|
570
|
+
</define>
|
571
|
+
<define name="TypedUri">
|
572
|
+
<optional>
|
573
|
+
<attribute name="type"/>
|
574
|
+
</optional>
|
575
|
+
<data type="anyURI"/>
|
576
|
+
</define>
|
577
|
+
<define name="DateType">
|
578
|
+
<optional>
|
579
|
+
<attribute name="text"/>
|
580
|
+
</optional>
|
581
|
+
<optional>
|
582
|
+
<choice>
|
583
|
+
<data type="gYear"/>
|
584
|
+
<data type="date"/>
|
585
|
+
</choice>
|
586
|
+
</optional>
|
587
|
+
</define>
|
588
|
+
<define name="bdate">
|
589
|
+
<element name="date">
|
590
|
+
<attribute name="type">
|
591
|
+
<choice>
|
592
|
+
<value>published</value>
|
593
|
+
<value>accessed</value>
|
594
|
+
<value>created</value>
|
595
|
+
<value>implemented</value>
|
596
|
+
<value>obsoleted</value>
|
597
|
+
<value>confirmed</value>
|
598
|
+
<value>updated</value>
|
599
|
+
<value>issued</value>
|
600
|
+
<value>transmitted</value>
|
601
|
+
<value>copied</value>
|
602
|
+
</choice>
|
603
|
+
</attribute>
|
604
|
+
<choice>
|
605
|
+
<group>
|
606
|
+
<element name="from">
|
607
|
+
<choice>
|
608
|
+
<data type="gYear"/>
|
609
|
+
<data type="date"/>
|
610
|
+
</choice>
|
611
|
+
</element>
|
612
|
+
<optional>
|
613
|
+
<element name="to">
|
614
|
+
<choice>
|
615
|
+
<data type="gYear"/>
|
616
|
+
<data type="date"/>
|
617
|
+
</choice>
|
618
|
+
</element>
|
619
|
+
</optional>
|
620
|
+
</group>
|
621
|
+
<element name="on">
|
622
|
+
<choice>
|
623
|
+
<data type="gYear"/>
|
624
|
+
<data type="date"/>
|
625
|
+
</choice>
|
626
|
+
</element>
|
627
|
+
</choice>
|
628
|
+
</element>
|
629
|
+
</define>
|
630
|
+
<define name="docidentifier">
|
631
|
+
<element name="docidentifier">
|
632
|
+
<optional>
|
633
|
+
<attribute name="type"/>
|
634
|
+
</optional>
|
635
|
+
<text/>
|
636
|
+
</element>
|
637
|
+
</define>
|
638
|
+
<define name="bclassification">
|
639
|
+
<element name="classification">
|
640
|
+
<optional>
|
641
|
+
<attribute name="type"/>
|
642
|
+
</optional>
|
643
|
+
<text/>
|
644
|
+
</element>
|
645
|
+
</define>
|
646
|
+
<define name="bplace">
|
647
|
+
<element name="place">
|
648
|
+
<text/>
|
649
|
+
</element>
|
650
|
+
</define>
|
651
|
+
<define name="medium">
|
652
|
+
<element name="medium">
|
653
|
+
<optional>
|
654
|
+
<ref name="form"/>
|
655
|
+
</optional>
|
656
|
+
<optional>
|
657
|
+
<ref name="size"/>
|
658
|
+
</optional>
|
659
|
+
<optional>
|
660
|
+
<ref name="scale"/>
|
661
|
+
</optional>
|
662
|
+
</element>
|
663
|
+
</define>
|
664
|
+
<define name="form">
|
665
|
+
<element name="form">
|
666
|
+
<text/>
|
667
|
+
</element>
|
668
|
+
</define>
|
669
|
+
<define name="size">
|
670
|
+
<element name="size">
|
671
|
+
<text/>
|
672
|
+
</element>
|
673
|
+
</define>
|
674
|
+
<define name="scale">
|
675
|
+
<element name="scale">
|
676
|
+
<text/>
|
677
|
+
</element>
|
678
|
+
</define>
|
679
|
+
<define name="accesslocation">
|
680
|
+
<element name="accesslocation">
|
681
|
+
<text/>
|
682
|
+
</element>
|
683
|
+
</define>
|
684
|
+
<define name="extent">
|
685
|
+
<element name="extent">
|
686
|
+
<ref name="BibItemLocality"/>
|
687
|
+
</element>
|
688
|
+
</define>
|
689
|
+
<define name="series">
|
690
|
+
<element name="series">
|
691
|
+
<optional>
|
692
|
+
<attribute name="type">
|
693
|
+
<choice>
|
694
|
+
<value>main</value>
|
695
|
+
<value>alt</value>
|
696
|
+
</choice>
|
697
|
+
</attribute>
|
698
|
+
</optional>
|
699
|
+
<choice>
|
700
|
+
<ref name="btitle"/>
|
701
|
+
<ref name="formattedref"/>
|
702
|
+
</choice>
|
703
|
+
<ref name="bplace"/>
|
704
|
+
<ref name="seriesorganization"/>
|
705
|
+
<optional>
|
706
|
+
<ref name="abbreviation"/>
|
707
|
+
</optional>
|
708
|
+
<optional>
|
709
|
+
<ref name="seriesfrom"/>
|
710
|
+
</optional>
|
711
|
+
<optional>
|
712
|
+
<ref name="seriesto"/>
|
713
|
+
</optional>
|
714
|
+
<optional>
|
715
|
+
<ref name="seriesnumber"/>
|
716
|
+
</optional>
|
717
|
+
<optional>
|
718
|
+
<ref name="seriespartnumber"/>
|
719
|
+
</optional>
|
720
|
+
</element>
|
721
|
+
</define>
|
722
|
+
<define name="seriesorganization">
|
723
|
+
<element name="organization">
|
724
|
+
<text/>
|
725
|
+
</element>
|
726
|
+
</define>
|
727
|
+
<define name="seriesfrom">
|
728
|
+
<element name="from">
|
729
|
+
<choice>
|
730
|
+
<data type="dateTime"/>
|
731
|
+
<data type="gYear"/>
|
732
|
+
</choice>
|
733
|
+
</element>
|
734
|
+
</define>
|
735
|
+
<define name="seriesto">
|
736
|
+
<element name="to">
|
737
|
+
<choice>
|
738
|
+
<data type="dateTime"/>
|
739
|
+
<data type="gYear"/>
|
740
|
+
</choice>
|
741
|
+
</element>
|
742
|
+
</define>
|
743
|
+
<define name="seriesnumber">
|
744
|
+
<element name="number">
|
745
|
+
<text/>
|
746
|
+
</element>
|
747
|
+
</define>
|
748
|
+
<define name="seriespartnumber">
|
749
|
+
<element name="partnumber">
|
750
|
+
<text/>
|
751
|
+
</element>
|
752
|
+
</define>
|
753
|
+
<define name="biblionote">
|
754
|
+
<element name="note">
|
755
|
+
<ref name="FormattedString"/>
|
756
|
+
</element>
|
757
|
+
</define>
|
758
|
+
<define name="abstract">
|
759
|
+
<element name="abstract">
|
760
|
+
<ref name="FormattedString"/>
|
761
|
+
</element>
|
762
|
+
</define>
|
763
|
+
<define name="copyright">
|
764
|
+
<element name="copyright">
|
765
|
+
<ref name="from"/>
|
766
|
+
<optional>
|
767
|
+
<ref name="to"/>
|
768
|
+
</optional>
|
769
|
+
<ref name="owner"/>
|
770
|
+
</element>
|
771
|
+
</define>
|
772
|
+
<define name="from">
|
773
|
+
<element name="from">
|
774
|
+
<data type="gYear"/>
|
775
|
+
</element>
|
776
|
+
</define>
|
777
|
+
<define name="to">
|
778
|
+
<element name="to">
|
779
|
+
<data type="gYear"/>
|
780
|
+
</element>
|
781
|
+
</define>
|
782
|
+
<define name="owner">
|
783
|
+
<element name="owner">
|
784
|
+
<ref name="ContributorInfo"/>
|
785
|
+
</element>
|
786
|
+
</define>
|
787
|
+
<define name="docrelation">
|
788
|
+
<element name="relation">
|
789
|
+
<attribute name="type">
|
790
|
+
<choice>
|
791
|
+
<value>obsoletes</value>
|
792
|
+
<value>updates</value>
|
793
|
+
<value>updatedBy</value>
|
794
|
+
<value>complements</value>
|
795
|
+
<value>derivedFrom</value>
|
796
|
+
<value>translatedFrom</value>
|
797
|
+
<value>adoptedFrom</value>
|
798
|
+
<value>equivalent</value>
|
799
|
+
<value>identical</value>
|
800
|
+
<value>nonequivalent</value>
|
801
|
+
<value>includedIn</value>
|
802
|
+
<value>includes</value>
|
803
|
+
<value>instance</value>
|
804
|
+
<value>partOf</value>
|
805
|
+
</choice>
|
806
|
+
</attribute>
|
807
|
+
<element name="bibitem">
|
808
|
+
<ref name="BibliographicItem"/>
|
809
|
+
</element>
|
810
|
+
<zeroOrMore>
|
811
|
+
<ref name="locality"/>
|
812
|
+
</zeroOrMore>
|
813
|
+
</element>
|
814
|
+
</define>
|
815
|
+
<!--
|
816
|
+
Anycontents = mixed {
|
817
|
+
https://github.com/relaxng/jing-trang/issues/211
|
818
|
+
https://lists.oasis-open.org/archives/office/200808/msg00024.html
|
819
|
+
https://lists.oasis-open.org/archives/office/200808/msg00099.html
|
820
|
+
For this to work, we will actually strip any attributes in the Anycontents before
|
821
|
+
passing it for validation. Horrible I know, but there are no good alternatives
|
822
|
+
that also allow us to do grammar inheritance
|
823
|
+
(attribute * { text } | Any)*
|
824
|
+
Any*
|
825
|
+
}
|
826
|
+
-->
|
827
|
+
<define name="AnyElement">
|
828
|
+
<element>
|
829
|
+
<anyName/>
|
830
|
+
<choice>
|
831
|
+
<text/>
|
832
|
+
<ref name="AnyElement"/>
|
833
|
+
</choice>
|
834
|
+
</element>
|
835
|
+
</define>
|
836
|
+
</grammar>
|