niso-jats 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/rake.yml +18 -0
- data/.github/workflows/release.yml +25 -0
- data/.gitignore +13 -0
- data/.gitmodules +3 -0
- data/.rspec +3 -0
- data/.rubocop.yml +21 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +14 -0
- data/README.adoc +73 -0
- data/Rakefile +12 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/lib/niso/jats/abbrev.rb +29 -0
- data/lib/niso/jats/abbrev_journal_title.rb +23 -0
- data/lib/niso/jats/abstract.rb +31 -0
- data/lib/niso/jats/access_date.rb +25 -0
- data/lib/niso/jats/ack.rb +39 -0
- data/lib/niso/jats/addr_line.rb +91 -0
- data/lib/niso/jats/address.rb +45 -0
- data/lib/niso/jats/aff.rb +93 -0
- data/lib/niso/jats/aff_alternatives.rb +17 -0
- data/lib/niso/jats/alt_text.rb +23 -0
- data/lib/niso/jats/alt_title.rb +65 -0
- data/lib/niso/jats/alternatives.rb +49 -0
- data/lib/niso/jats/annotation.rb +23 -0
- data/lib/niso/jats/anonymous.rb +19 -0
- data/lib/niso/jats/answer.rb +109 -0
- data/lib/niso/jats/answer_set.rb +37 -0
- data/lib/niso/jats/app.rb +105 -0
- data/lib/niso/jats/app_group.rb +105 -0
- data/lib/niso/jats/array.rb +45 -0
- data/lib/niso/jats/article.rb +37 -0
- data/lib/niso/jats/article_categories.rb +21 -0
- data/lib/niso/jats/article_id.rb +25 -0
- data/lib/niso/jats/article_meta.rb +108 -0
- data/lib/niso/jats/article_title.rb +61 -0
- data/lib/niso/jats/article_version.rb +39 -0
- data/lib/niso/jats/article_version_alternatives.rb +17 -0
- data/lib/niso/jats/attrib.rb +61 -0
- data/lib/niso/jats/author_comment.rb +25 -0
- data/lib/niso/jats/author_notes.rb +29 -0
- data/lib/niso/jats/award_desc.rb +21 -0
- data/lib/niso/jats/award_group.rb +40 -0
- data/lib/niso/jats/award_id.rb +83 -0
- data/lib/niso/jats/award_name.rb +21 -0
- data/lib/niso/jats/back.rb +35 -0
- data/lib/niso/jats/basic_text.rb +48 -0
- data/lib/niso/jats/bio.rb +107 -0
- data/lib/niso/jats/block_alternatives.rb +27 -0
- data/lib/niso/jats/body.rb +89 -0
- data/lib/niso/jats/bold.rb +61 -0
- data/lib/niso/jats/boxed_text.rb +113 -0
- data/lib/niso/jats/break.rb +15 -0
- data/lib/niso/jats/caption.rb +27 -0
- data/lib/niso/jats/chapter_title.rb +81 -0
- data/lib/niso/jats/chem_struct.rb +95 -0
- data/lib/niso/jats/chem_struct_wrap.rb +65 -0
- data/lib/niso/jats/citation_alternatives.rb +23 -0
- data/lib/niso/jats/city.rb +23 -0
- data/lib/niso/jats/code.rb +95 -0
- data/lib/niso/jats/col.rb +31 -0
- data/lib/niso/jats/colgroup.rb +33 -0
- data/lib/niso/jats/collab.rb +123 -0
- data/lib/niso/jats/collab_alternatives.rb +17 -0
- data/lib/niso/jats/comment.rb +63 -0
- data/lib/niso/jats/compound_kwd.rb +29 -0
- data/lib/niso/jats/compound_kwd_part.rb +67 -0
- data/lib/niso/jats/compound_subject.rb +29 -0
- data/lib/niso/jats/compound_subject_part.rb +61 -0
- data/lib/niso/jats/conf_acronym.rb +23 -0
- data/lib/niso/jats/conf_date.rb +27 -0
- data/lib/niso/jats/conf_loc.rb +41 -0
- data/lib/niso/jats/conf_name.rb +23 -0
- data/lib/niso/jats/conf_num.rb +23 -0
- data/lib/niso/jats/conf_sponsor.rb +27 -0
- data/lib/niso/jats/conf_theme.rb +75 -0
- data/lib/niso/jats/conference.rb +37 -0
- data/lib/niso/jats/contrib.rb +67 -0
- data/lib/niso/jats/contrib_group.rb +43 -0
- data/lib/niso/jats/contrib_id.rb +29 -0
- data/lib/niso/jats/contributed_resource_group.rb +27 -0
- data/lib/niso/jats/copyright_holder.rb +31 -0
- data/lib/niso/jats/copyright_statement.rb +59 -0
- data/lib/niso/jats/copyright_year.rb +21 -0
- data/lib/niso/jats/corresp.rb +79 -0
- data/lib/niso/jats/count.rb +19 -0
- data/lib/niso/jats/country.rb +25 -0
- data/lib/niso/jats/counts.rb +29 -0
- data/lib/niso/jats/custom_meta.rb +35 -0
- data/lib/niso/jats/custom_meta_group.rb +23 -0
- data/lib/niso/jats/data_title.rb +65 -0
- data/lib/niso/jats/date.rb +35 -0
- data/lib/niso/jats/date_in_citation.rb +37 -0
- data/lib/niso/jats/day.rb +23 -0
- data/lib/niso/jats/def.rb +23 -0
- data/lib/niso/jats/def_head.rb +57 -0
- data/lib/niso/jats/def_item.rb +23 -0
- data/lib/niso/jats/def_list.rb +39 -0
- data/lib/niso/jats/degrees.rb +23 -0
- data/lib/niso/jats/disp_formula.rb +103 -0
- data/lib/niso/jats/disp_formula_group.rb +47 -0
- data/lib/niso/jats/disp_quote.rb +97 -0
- data/lib/niso/jats/edition.rb +29 -0
- data/lib/niso/jats/element_citation.rb +203 -0
- data/lib/niso/jats/elocation_id.rb +23 -0
- data/lib/niso/jats/email.rb +25 -0
- data/lib/niso/jats/equation_count.rb +17 -0
- data/lib/niso/jats/era.rb +23 -0
- data/lib/niso/jats/etal.rb +21 -0
- data/lib/niso/jats/event.rb +48 -0
- data/lib/niso/jats/event_desc.rb +49 -0
- data/lib/niso/jats/explanation.rb +107 -0
- data/lib/niso/jats/ext_link.rb +59 -0
- data/lib/niso/jats/extended_by.rb +31 -0
- data/lib/niso/jats/fax.rb +21 -0
- data/lib/niso/jats/fig.rb +87 -0
- data/lib/niso/jats/fig_count.rb +17 -0
- data/lib/niso/jats/fig_group.rb +59 -0
- data/lib/niso/jats/fixed_case.rb +61 -0
- data/lib/niso/jats/floats_group.rb +41 -0
- data/lib/niso/jats/fn.rb +32 -0
- data/lib/niso/jats/fn_group.rb +27 -0
- data/lib/niso/jats/fpage.rb +25 -0
- data/lib/niso/jats/front.rb +21 -0
- data/lib/niso/jats/front_stub.rb +108 -0
- data/lib/niso/jats/funding_group.rb +25 -0
- data/lib/niso/jats/funding_source.rb +85 -0
- data/lib/niso/jats/funding_statement.rb +59 -0
- data/lib/niso/jats/given_names.rb +19 -0
- data/lib/niso/jats/glossary.rb +97 -0
- data/lib/niso/jats/glyph_data.rb +29 -0
- data/lib/niso/jats/glyph_ref.rb +17 -0
- data/lib/niso/jats/gov.rb +53 -0
- data/lib/niso/jats/graphic.rb +61 -0
- data/lib/niso/jats/history.rb +17 -0
- data/lib/niso/jats/hr.rb +15 -0
- data/lib/niso/jats/index_term.rb +39 -0
- data/lib/niso/jats/index_term_range_end.rb +17 -0
- data/lib/niso/jats/inline_formula.rb +73 -0
- data/lib/niso/jats/inline_graphic.rb +33 -0
- data/lib/niso/jats/inline_media.rb +77 -0
- data/lib/niso/jats/inline_supplementary_material.rb +69 -0
- data/lib/niso/jats/institution.rb +31 -0
- data/lib/niso/jats/institution_id.rb +31 -0
- data/lib/niso/jats/institution_wrap.rb +19 -0
- data/lib/niso/jats/isbn.rb +25 -0
- data/lib/niso/jats/issn.rb +27 -0
- data/lib/niso/jats/issn_l.rb +21 -0
- data/lib/niso/jats/issue.rb +25 -0
- data/lib/niso/jats/issue_id.rb +29 -0
- data/lib/niso/jats/issue_part.rb +23 -0
- data/lib/niso/jats/issue_sponsor.rb +23 -0
- data/lib/niso/jats/issue_subtitle.rb +23 -0
- data/lib/niso/jats/issue_title.rb +23 -0
- data/lib/niso/jats/issue_title_group.rb +27 -0
- data/lib/niso/jats/italic.rb +61 -0
- data/lib/niso/jats/journal_id.rb +25 -0
- data/lib/niso/jats/journal_meta.rb +37 -0
- data/lib/niso/jats/journal_subtitle.rb +23 -0
- data/lib/niso/jats/journal_title.rb +23 -0
- data/lib/niso/jats/journal_title_group.rb +25 -0
- data/lib/niso/jats/kwd.rb +59 -0
- data/lib/niso/jats/kwd_group.rb +37 -0
- data/lib/niso/jats/label.rb +59 -0
- data/lib/niso/jats/license.rb +25 -0
- data/lib/niso/jats/license_p.rb +169 -0
- data/lib/niso/jats/license_paragraph.rb +17 -0
- data/lib/niso/jats/list.rb +35 -0
- data/lib/niso/jats/list_item.rb +29 -0
- data/lib/niso/jats/long_desc.rb +25 -0
- data/lib/niso/jats/lpage.rb +23 -0
- data/lib/niso/jats/media.rb +59 -0
- data/lib/niso/jats/meta_name.rb +17 -0
- data/lib/niso/jats/meta_value.rb +57 -0
- data/lib/niso/jats/milestone_end.rb +25 -0
- data/lib/niso/jats/milestone_start.rb +25 -0
- data/lib/niso/jats/mixed_citation.rb +205 -0
- data/lib/niso/jats/module_includer.rb +47 -0
- data/lib/niso/jats/monospace.rb +61 -0
- data/lib/niso/jats/month.rb +23 -0
- data/lib/niso/jats/name.rb +31 -0
- data/lib/niso/jats/name_alternatives.rb +19 -0
- data/lib/niso/jats/named_content.rb +169 -0
- data/lib/niso/jats/nested_kwd.rb +33 -0
- data/lib/niso/jats/nlm_citation.rb +85 -0
- data/lib/niso/jats/note.rb +27 -0
- data/lib/niso/jats/notes.rb +103 -0
- data/lib/niso/jats/object_id.rb +25 -0
- data/lib/niso/jats/on_behalf_of.rb +61 -0
- data/lib/niso/jats/open_access.rb +21 -0
- data/lib/niso/jats/option.rb +109 -0
- data/lib/niso/jats/overline.rb +61 -0
- data/lib/niso/jats/overline_end.rb +19 -0
- data/lib/niso/jats/overline_start.rb +17 -0
- data/lib/niso/jats/page_count.rb +17 -0
- data/lib/niso/jats/page_range.rb +23 -0
- data/lib/niso/jats/paragraph.rb +169 -0
- data/lib/niso/jats/part_title.rb +81 -0
- data/lib/niso/jats/patent.rb +25 -0
- data/lib/niso/jats/permissions.rb +23 -0
- data/lib/niso/jats/person_group.rb +45 -0
- data/lib/niso/jats/phone.rb +21 -0
- data/lib/niso/jats/postal_code.rb +23 -0
- data/lib/niso/jats/prefix.rb +23 -0
- data/lib/niso/jats/preformat.rb +81 -0
- data/lib/niso/jats/price.rb +47 -0
- data/lib/niso/jats/principal_award_recipient.rb +33 -0
- data/lib/niso/jats/principal_investigator.rb +29 -0
- data/lib/niso/jats/private_char.rb +27 -0
- data/lib/niso/jats/processing_meta.rb +31 -0
- data/lib/niso/jats/product.rb +215 -0
- data/lib/niso/jats/pub_date.rb +39 -0
- data/lib/niso/jats/pub_date_not_available.rb +17 -0
- data/lib/niso/jats/pub_history.rb +17 -0
- data/lib/niso/jats/pub_id.rb +27 -0
- data/lib/niso/jats/publisher.rb +21 -0
- data/lib/niso/jats/publisher_loc.rb +45 -0
- data/lib/niso/jats/publisher_name.rb +25 -0
- data/lib/niso/jats/question.rb +113 -0
- data/lib/niso/jats/question_preamble.rb +101 -0
- data/lib/niso/jats/question_wrap.rb +33 -0
- data/lib/niso/jats/question_wrap_group.rb +37 -0
- data/lib/niso/jats/rb.rb +43 -0
- data/lib/niso/jats/ref.rb +33 -0
- data/lib/niso/jats/ref_count.rb +17 -0
- data/lib/niso/jats/ref_list.rb +99 -0
- data/lib/niso/jats/related_article.rb +185 -0
- data/lib/niso/jats/related_object.rb +195 -0
- data/lib/niso/jats/resource_group.rb +23 -0
- data/lib/niso/jats/resource_id.rb +31 -0
- data/lib/niso/jats/resource_name.rb +49 -0
- data/lib/niso/jats/resource_wrap.rb +19 -0
- data/lib/niso/jats/response.rb +33 -0
- data/lib/niso/jats/restricted_by.rb +31 -0
- data/lib/niso/jats/role.rb +65 -0
- data/lib/niso/jats/roman.rb +61 -0
- data/lib/niso/jats/rp.rb +17 -0
- data/lib/niso/jats/rt.rb +23 -0
- data/lib/niso/jats/ruby.rb +23 -0
- data/lib/niso/jats/sans_serif.rb +97 -0
- data/lib/niso/jats/sc.rb +61 -0
- data/lib/niso/jats/season.rb +23 -0
- data/lib/niso/jats/sec.rb +103 -0
- data/lib/niso/jats/sec_meta.rb +27 -0
- data/lib/niso/jats/see.rb +79 -0
- data/lib/niso/jats/see_also.rb +87 -0
- data/lib/niso/jats/self_uri.rb +27 -0
- data/lib/niso/jats/series.rb +53 -0
- data/lib/niso/jats/series_text.rb +53 -0
- data/lib/niso/jats/series_title.rb +53 -0
- data/lib/niso/jats/sig.rb +67 -0
- data/lib/niso/jats/sig_block.rb +69 -0
- data/lib/niso/jats/size.rb +23 -0
- data/lib/niso/jats/source.rb +83 -0
- data/lib/niso/jats/speaker.rb +39 -0
- data/lib/niso/jats/speech.rb +27 -0
- data/lib/niso/jats/state.rb +23 -0
- data/lib/niso/jats/statement.rb +39 -0
- data/lib/niso/jats/std.rb +71 -0
- data/lib/niso/jats/std_organization.rb +31 -0
- data/lib/niso/jats/strike.rb +61 -0
- data/lib/niso/jats/string_conf.rb +91 -0
- data/lib/niso/jats/string_date.rb +37 -0
- data/lib/niso/jats/string_name.rb +35 -0
- data/lib/niso/jats/styled_content.rb +163 -0
- data/lib/niso/jats/sub.rb +61 -0
- data/lib/niso/jats/sub_article.rb +37 -0
- data/lib/niso/jats/subj_group.rb +33 -0
- data/lib/niso/jats/subject.rb +71 -0
- data/lib/niso/jats/subtitle.rb +65 -0
- data/lib/niso/jats/suffix.rb +23 -0
- data/lib/niso/jats/sup.rb +61 -0
- data/lib/niso/jats/supplement.rb +79 -0
- data/lib/niso/jats/supplementary_material.rb +93 -0
- data/lib/niso/jats/support_description.rb +23 -0
- data/lib/niso/jats/support_group.rb +25 -0
- data/lib/niso/jats/support_source.rb +85 -0
- data/lib/niso/jats/surname.rb +19 -0
- data/lib/niso/jats/table.rb +47 -0
- data/lib/niso/jats/table_count.rb +17 -0
- data/lib/niso/jats/table_wrap.rb +83 -0
- data/lib/niso/jats/table_wrap_foot.rb +27 -0
- data/lib/niso/jats/table_wrap_group.rb +51 -0
- data/lib/niso/jats/target.rb +53 -0
- data/lib/niso/jats/tbody.rb +29 -0
- data/lib/niso/jats/td.rb +169 -0
- data/lib/niso/jats/term.rb +89 -0
- data/lib/niso/jats/term_head.rb +57 -0
- data/lib/niso/jats/tex_math.rb +25 -0
- data/lib/niso/jats/textual_form.rb +61 -0
- data/lib/niso/jats/tfoot.rb +29 -0
- data/lib/niso/jats/th.rb +169 -0
- data/lib/niso/jats/thead.rb +29 -0
- data/lib/niso/jats/time_stamp.rb +21 -0
- data/lib/niso/jats/title.rb +71 -0
- data/lib/niso/jats/title_group.rb +25 -0
- data/lib/niso/jats/tr.rb +31 -0
- data/lib/niso/jats/trans_abstract.rb +31 -0
- data/lib/niso/jats/trans_source.rb +83 -0
- data/lib/niso/jats/trans_subtitle.rb +63 -0
- data/lib/niso/jats/trans_title.rb +65 -0
- data/lib/niso/jats/trans_title_group.rb +25 -0
- data/lib/niso/jats/underline.rb +63 -0
- data/lib/niso/jats/underline_end.rb +19 -0
- data/lib/niso/jats/underline_start.rb +17 -0
- data/lib/niso/jats/unstructured_kwd_group.rb +29 -0
- data/lib/niso/jats/uri.rb +31 -0
- data/lib/niso/jats/verse_group.rb +41 -0
- data/lib/niso/jats/verse_line.rb +89 -0
- data/lib/niso/jats/version.rb +5 -0
- data/lib/niso/jats/version_element.rb +29 -0
- data/lib/niso/jats/volume.rb +25 -0
- data/lib/niso/jats/volume_id.rb +29 -0
- data/lib/niso/jats/volume_issue_group.rb +39 -0
- data/lib/niso/jats/volume_series.rb +23 -0
- data/lib/niso/jats/word_count.rb +17 -0
- data/lib/niso/jats/x.rb +23 -0
- data/lib/niso/jats/xref.rb +59 -0
- data/lib/niso/jats/year.rb +27 -0
- data/lib/niso/jats.rb +14 -0
- data/lib/niso-jats.rb +1 -0
- data/lib/niso_jats.rb +5 -0
- data/niso-jats.gemspec +39 -0
- data/reference-docs/JATS-journalpublishing1-3-elements-modified-for-shale.xsd +9604 -0
- data/reference-docs/JATS-journalpublishing1-3-elements.xsd +9604 -0
- data/reference-docs/JATS-journalpublishing1-3.xsd.xml +45 -0
- data/reference-docs/mathml2.xsd +59 -0
- data/reference-docs/module-ali.xsd +46 -0
- data/reference-docs/xlink.xsd +100 -0
- data/reference-docs/xml.xsd +287 -0
- data/sig/niso/jats.rbs +6 -0
- metadata +434 -0
@@ -0,0 +1,93 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class SupplementaryMaterial < Lutaml::Model::Serializable
|
6
|
+
attribute :content_type, :string
|
7
|
+
attribute :hreflang, :string
|
8
|
+
attribute :id, :string
|
9
|
+
attribute :mime_subtype, :string
|
10
|
+
attribute :mimetype, :string
|
11
|
+
attribute :orientation, :string, default: -> { "portrait" }
|
12
|
+
attribute :position, :string, default: -> { "float" }
|
13
|
+
attribute :specific_use, :string
|
14
|
+
attribute :lang, :string
|
15
|
+
attribute :object_id, ObjectId, collection: true
|
16
|
+
attribute :label, Label, collection: true
|
17
|
+
attribute :caption, Caption, collection: true
|
18
|
+
attribute :abstract, Abstract, collection: true
|
19
|
+
attribute :kwd_group, KwdGroup, collection: true
|
20
|
+
attribute :subj_group, SubjGroup, collection: true
|
21
|
+
attribute :alt_text, AltText, collection: true
|
22
|
+
attribute :long_desc, LongDesc, collection: true
|
23
|
+
attribute :email, Email, collection: true
|
24
|
+
attribute :ext_link, ExtLink, collection: true
|
25
|
+
attribute :uri, Uri, collection: true
|
26
|
+
attribute :disp_formula, DispFormula, collection: true
|
27
|
+
attribute :disp_formula_group, DispFormulaGroup, collection: true
|
28
|
+
attribute :chem_struct_wrap, ChemStructWrap, collection: true
|
29
|
+
attribute :disp_quote, DispQuote, collection: true
|
30
|
+
attribute :speech, Speech, collection: true
|
31
|
+
attribute :statement, Statement, collection: true
|
32
|
+
attribute :verse_group, VerseGroup, collection: true
|
33
|
+
attribute :table_wrap, TableWrap, collection: true
|
34
|
+
attribute :p, Paragraph, collection: true
|
35
|
+
attribute :def_list, DefList, collection: true
|
36
|
+
attribute :list, List, collection: true
|
37
|
+
attribute :alternatives, Alternatives, collection: true
|
38
|
+
attribute :array, Array, collection: true
|
39
|
+
attribute :code, Code, collection: true
|
40
|
+
attribute :graphic, Graphic, collection: true
|
41
|
+
attribute :media, Media, collection: true
|
42
|
+
attribute :preformat, Preformat, collection: true
|
43
|
+
attribute :xref, Xref, collection: true
|
44
|
+
attribute :attrib, Attrib, collection: true
|
45
|
+
attribute :permissions, Permissions, collection: true
|
46
|
+
|
47
|
+
xml do
|
48
|
+
root "supplementary-material"
|
49
|
+
|
50
|
+
map_attribute "content-type", to: :content_type
|
51
|
+
map_attribute "hreflang", to: :hreflang
|
52
|
+
map_attribute "id", to: :id
|
53
|
+
map_attribute "mime-subtype", to: :mime_subtype
|
54
|
+
map_attribute "mimetype", to: :mimetype
|
55
|
+
map_attribute "orientation", to: :orientation
|
56
|
+
map_attribute "position", to: :position
|
57
|
+
map_attribute "specific-use", to: :specific_use
|
58
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
59
|
+
map_element "object-id", to: :object_id
|
60
|
+
map_element "label", to: :label
|
61
|
+
map_element "caption", to: :caption
|
62
|
+
map_element "abstract", to: :abstract
|
63
|
+
map_element "kwd-group", to: :kwd_group
|
64
|
+
map_element "subj-group", to: :subj_group
|
65
|
+
map_element "alt-text", to: :alt_text
|
66
|
+
map_element "long-desc", to: :long_desc
|
67
|
+
map_element "email", to: :email
|
68
|
+
map_element "ext-link", to: :ext_link
|
69
|
+
map_element "uri", to: :uri
|
70
|
+
map_element "disp-formula", to: :disp_formula
|
71
|
+
map_element "disp-formula-group", to: :disp_formula_group
|
72
|
+
map_element "chem-struct-wrap", to: :chem_struct_wrap
|
73
|
+
map_element "disp-quote", to: :disp_quote
|
74
|
+
map_element "speech", to: :speech
|
75
|
+
map_element "statement", to: :statement
|
76
|
+
map_element "verse-group", to: :verse_group
|
77
|
+
map_element "table-wrap", to: :table_wrap
|
78
|
+
map_element "p", to: :p
|
79
|
+
map_element "def-list", to: :def_list
|
80
|
+
map_element "list", to: :list
|
81
|
+
map_element "alternatives", to: :alternatives
|
82
|
+
map_element "array", to: :array
|
83
|
+
map_element "code", to: :code
|
84
|
+
map_element "graphic", to: :graphic
|
85
|
+
map_element "media", to: :media
|
86
|
+
map_element "preformat", to: :preformat
|
87
|
+
map_element "xref", to: :xref
|
88
|
+
map_element "attrib", to: :attrib
|
89
|
+
map_element "permissions", to: :permissions
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class SupportDescription < Lutaml::Model::Serializable
|
6
|
+
attribute :id, :string
|
7
|
+
attribute :rid, :string
|
8
|
+
attribute :specific_use, :string
|
9
|
+
attribute :lang, :string
|
10
|
+
attribute :p, Paragraph, collection: true
|
11
|
+
|
12
|
+
xml do
|
13
|
+
root "support-description"
|
14
|
+
|
15
|
+
map_attribute "id", to: :id
|
16
|
+
map_attribute "rid", to: :rid
|
17
|
+
map_attribute "specific-use", to: :specific_use
|
18
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
19
|
+
map_element "p", to: :p
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class SupportGroup < Lutaml::Model::Serializable
|
6
|
+
attribute :id, :string
|
7
|
+
attribute :specific_use, :string
|
8
|
+
attribute :lang, :string
|
9
|
+
attribute :funding_group, FundingGroup, collection: true
|
10
|
+
attribute :contributed_resource_group, ContributedResourceGroup,
|
11
|
+
collection: true
|
12
|
+
|
13
|
+
xml do
|
14
|
+
root "support-group"
|
15
|
+
|
16
|
+
map_attribute "id", to: :id
|
17
|
+
map_attribute "specific-use", to: :specific_use
|
18
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
19
|
+
map_element "funding-group", to: :funding_group
|
20
|
+
map_element "contributed-resource-group",
|
21
|
+
to: :contributed_resource_group
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class SupportSource < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :country, :string
|
8
|
+
attribute :hreflang, :string
|
9
|
+
attribute :id, :string
|
10
|
+
attribute :rid, :string
|
11
|
+
attribute :specific_use, :string
|
12
|
+
attribute :support_type, :string
|
13
|
+
attribute :lang, :string
|
14
|
+
attribute :bold, Bold, collection: true
|
15
|
+
attribute :fixed_case, FixedCase, collection: true
|
16
|
+
attribute :italic, Italic, collection: true
|
17
|
+
attribute :monospace, Monospace, collection: true
|
18
|
+
attribute :overline, Overline, collection: true
|
19
|
+
attribute :roman, Roman, collection: true
|
20
|
+
attribute :sans_serif, SansSerif, collection: true
|
21
|
+
attribute :sc, Sc, collection: true
|
22
|
+
attribute :strike, Strike, collection: true
|
23
|
+
attribute :underline, Underline, collection: true
|
24
|
+
attribute :ruby, Ruby, collection: true
|
25
|
+
attribute :alternatives, Alternatives, collection: true
|
26
|
+
attribute :inline_graphic, InlineGraphic, collection: true
|
27
|
+
attribute :inline_media, InlineMedia, collection: true
|
28
|
+
attribute :private_char, PrivateChar, collection: true
|
29
|
+
attribute :chem_struct, ChemStruct, collection: true
|
30
|
+
attribute :inline_formula, InlineFormula, collection: true
|
31
|
+
attribute :abbrev, Abbrev, collection: true
|
32
|
+
attribute :index_term, IndexTerm, collection: true
|
33
|
+
attribute :index_term_range_end, IndexTermRangeEnd, collection: true
|
34
|
+
attribute :milestone_end, MilestoneEnd, collection: true
|
35
|
+
attribute :milestone_start, MilestoneStart, collection: true
|
36
|
+
attribute :named_content, NamedContent, collection: true
|
37
|
+
attribute :styled_content, StyledContent, collection: true
|
38
|
+
attribute :sub, Sub, collection: true
|
39
|
+
attribute :sup, Sup, collection: true
|
40
|
+
attribute :institution, Institution, collection: true
|
41
|
+
attribute :institution_wrap, InstitutionWrap, collection: true
|
42
|
+
|
43
|
+
xml do
|
44
|
+
root "support-source"
|
45
|
+
|
46
|
+
map_content to: :content
|
47
|
+
map_attribute "country", to: :country
|
48
|
+
map_attribute "hreflang", to: :hreflang
|
49
|
+
map_attribute "id", to: :id
|
50
|
+
map_attribute "rid", to: :rid
|
51
|
+
map_attribute "specific-use", to: :specific_use
|
52
|
+
map_attribute "support-type", to: :support_type
|
53
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
54
|
+
map_element "bold", to: :bold
|
55
|
+
map_element "fixed-case", to: :fixed_case
|
56
|
+
map_element "italic", to: :italic
|
57
|
+
map_element "monospace", to: :monospace
|
58
|
+
map_element "overline", to: :overline
|
59
|
+
map_element "roman", to: :roman
|
60
|
+
map_element "sans-serif", to: :sans_serif
|
61
|
+
map_element "sc", to: :sc
|
62
|
+
map_element "strike", to: :strike
|
63
|
+
map_element "underline", to: :underline
|
64
|
+
map_element "ruby", to: :ruby
|
65
|
+
map_element "alternatives", to: :alternatives
|
66
|
+
map_element "inline-graphic", to: :inline_graphic
|
67
|
+
map_element "inline-media", to: :inline_media
|
68
|
+
map_element "private-char", to: :private_char
|
69
|
+
map_element "chem-struct", to: :chem_struct
|
70
|
+
map_element "inline-formula", to: :inline_formula
|
71
|
+
map_element "abbrev", to: :abbrev
|
72
|
+
map_element "index-term", to: :index_term
|
73
|
+
map_element "index-term-range-end", to: :index_term_range_end
|
74
|
+
map_element "milestone-end", to: :milestone_end
|
75
|
+
map_element "milestone-start", to: :milestone_start
|
76
|
+
map_element "named-content", to: :named_content
|
77
|
+
map_element "styled-content", to: :styled_content
|
78
|
+
map_element "sub", to: :sub
|
79
|
+
map_element "sup", to: :sup
|
80
|
+
map_element "institution", to: :institution
|
81
|
+
map_element "institution-wrap", to: :institution_wrap
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class Surname < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :id, :string
|
8
|
+
attribute :initials, :string
|
9
|
+
|
10
|
+
xml do
|
11
|
+
root "surname"
|
12
|
+
|
13
|
+
map_content to: :content
|
14
|
+
map_attribute "id", to: :id
|
15
|
+
map_attribute "initials", to: :initials
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class Table < Lutaml::Model::Serializable
|
6
|
+
attribute :border, :string
|
7
|
+
attribute :cellpadding, :string
|
8
|
+
attribute :cellspacing, :string
|
9
|
+
attribute :content_type, :string
|
10
|
+
attribute :frame, :string
|
11
|
+
attribute :id, :string
|
12
|
+
attribute :rules, :string
|
13
|
+
attribute :specific_use, :string
|
14
|
+
attribute :style, :string
|
15
|
+
attribute :summary, :string
|
16
|
+
attribute :width, :string
|
17
|
+
attribute :col, Col, collection: true
|
18
|
+
attribute :colgroup, Colgroup, collection: true
|
19
|
+
attribute :thead, Thead
|
20
|
+
attribute :tfoot, Tfoot
|
21
|
+
attribute :tbody, Tbody, collection: true
|
22
|
+
attribute :tr, Tr, collection: true
|
23
|
+
|
24
|
+
xml do
|
25
|
+
root "table"
|
26
|
+
|
27
|
+
map_attribute "border", to: :border
|
28
|
+
map_attribute "cellpadding", to: :cellpadding
|
29
|
+
map_attribute "cellspacing", to: :cellspacing
|
30
|
+
map_attribute "content-type", to: :content_type
|
31
|
+
map_attribute "frame", to: :frame
|
32
|
+
map_attribute "id", to: :id
|
33
|
+
map_attribute "rules", to: :rules
|
34
|
+
map_attribute "specific-use", to: :specific_use
|
35
|
+
map_attribute "style", to: :style
|
36
|
+
map_attribute "summary", to: :summary
|
37
|
+
map_attribute "width", to: :width
|
38
|
+
map_element "col", to: :col
|
39
|
+
map_element "colgroup", to: :colgroup
|
40
|
+
map_element "thead", to: :thead
|
41
|
+
map_element "tfoot", to: :tfoot
|
42
|
+
map_element "tbody", to: :tbody
|
43
|
+
map_element "tr", to: :tr
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class TableCount < Lutaml::Model::Serializable
|
6
|
+
attribute :count, :string
|
7
|
+
attribute :id, :string
|
8
|
+
|
9
|
+
xml do
|
10
|
+
root "table-count"
|
11
|
+
|
12
|
+
map_attribute "count", to: :count
|
13
|
+
map_attribute "id", to: :id
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class TableWrap < Lutaml::Model::Serializable
|
6
|
+
attribute :content_type, :string
|
7
|
+
attribute :id, :string
|
8
|
+
attribute :orientation, :string, default: -> { "portrait" }
|
9
|
+
attribute :position, :string, default: -> { "float" }
|
10
|
+
attribute :specific_use, :string
|
11
|
+
attribute :lang, :string
|
12
|
+
attribute :object_id, ObjectId, collection: true
|
13
|
+
attribute :label, Label, collection: true
|
14
|
+
attribute :caption, Caption, collection: true
|
15
|
+
attribute :abstract, Abstract, collection: true
|
16
|
+
attribute :kwd_group, KwdGroup, collection: true
|
17
|
+
attribute :subj_group, SubjGroup, collection: true
|
18
|
+
attribute :alt_text, AltText, collection: true
|
19
|
+
attribute :long_desc, LongDesc, collection: true
|
20
|
+
attribute :email, Email, collection: true
|
21
|
+
attribute :ext_link, ExtLink, collection: true
|
22
|
+
attribute :uri, Uri, collection: true
|
23
|
+
attribute :disp_quote, DispQuote, collection: true
|
24
|
+
attribute :speech, Speech, collection: true
|
25
|
+
attribute :statement, Statement, collection: true
|
26
|
+
attribute :verse_group, VerseGroup, collection: true
|
27
|
+
attribute :def_list, DefList, collection: true
|
28
|
+
attribute :list, List, collection: true
|
29
|
+
attribute :alternatives, Alternatives, collection: true
|
30
|
+
attribute :chem_struct_wrap, ChemStructWrap, collection: true
|
31
|
+
attribute :code, Code, collection: true
|
32
|
+
attribute :disp_formula, DispFormula, collection: true
|
33
|
+
attribute :graphic, Graphic, collection: true
|
34
|
+
attribute :media, Media, collection: true
|
35
|
+
attribute :preformat, Preformat, collection: true
|
36
|
+
attribute :table, Table, collection: true
|
37
|
+
attribute :xref, Xref, collection: true
|
38
|
+
attribute :table_wrap_foot, TableWrapFoot, collection: true
|
39
|
+
attribute :attrib, Attrib, collection: true
|
40
|
+
attribute :permissions, Permissions, collection: true
|
41
|
+
|
42
|
+
xml do
|
43
|
+
root "table-wrap"
|
44
|
+
|
45
|
+
map_attribute "content-type", to: :content_type
|
46
|
+
map_attribute "id", to: :id
|
47
|
+
map_attribute "orientation", to: :orientation
|
48
|
+
map_attribute "position", to: :position
|
49
|
+
map_attribute "specific-use", to: :specific_use
|
50
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
51
|
+
map_element "object-id", to: :object_id
|
52
|
+
map_element "label", to: :label
|
53
|
+
map_element "caption", to: :caption
|
54
|
+
map_element "abstract", to: :abstract
|
55
|
+
map_element "kwd-group", to: :kwd_group
|
56
|
+
map_element "subj-group", to: :subj_group
|
57
|
+
map_element "alt-text", to: :alt_text
|
58
|
+
map_element "long-desc", to: :long_desc
|
59
|
+
map_element "email", to: :email
|
60
|
+
map_element "ext-link", to: :ext_link
|
61
|
+
map_element "uri", to: :uri
|
62
|
+
map_element "disp-quote", to: :disp_quote
|
63
|
+
map_element "speech", to: :speech
|
64
|
+
map_element "statement", to: :statement
|
65
|
+
map_element "verse-group", to: :verse_group
|
66
|
+
map_element "def-list", to: :def_list
|
67
|
+
map_element "list", to: :list
|
68
|
+
map_element "alternatives", to: :alternatives
|
69
|
+
map_element "chem-struct-wrap", to: :chem_struct_wrap
|
70
|
+
map_element "code", to: :code
|
71
|
+
map_element "disp-formula", to: :disp_formula
|
72
|
+
map_element "graphic", to: :graphic
|
73
|
+
map_element "media", to: :media
|
74
|
+
map_element "preformat", to: :preformat
|
75
|
+
map_element "table", to: :table
|
76
|
+
map_element "xref", to: :xref
|
77
|
+
map_element "table-wrap-foot", to: :table_wrap_foot
|
78
|
+
map_element "attrib", to: :attrib
|
79
|
+
map_element "permissions", to: :permissions
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class TableWrapFoot < Lutaml::Model::Serializable
|
6
|
+
attribute :id, :string
|
7
|
+
attribute :title, Title
|
8
|
+
attribute :p, Paragraph, collection: true
|
9
|
+
attribute :fn_group, FnGroup, collection: true
|
10
|
+
attribute :fn, Fn, collection: true
|
11
|
+
attribute :attrib, Attrib, collection: true
|
12
|
+
attribute :permissions, Permissions, collection: true
|
13
|
+
|
14
|
+
xml do
|
15
|
+
root "table-wrap-foot"
|
16
|
+
|
17
|
+
map_attribute "id", to: :id
|
18
|
+
map_element "title", to: :title
|
19
|
+
map_element "p", to: :p
|
20
|
+
map_element "fn-group", to: :fn_group
|
21
|
+
map_element "fn", to: :fn
|
22
|
+
map_element "attrib", to: :attrib
|
23
|
+
map_element "permissions", to: :permissions
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class TableWrapGroup < Lutaml::Model::Serializable
|
6
|
+
attribute :content_type, :string
|
7
|
+
attribute :id, :string
|
8
|
+
attribute :orientation, :string, default: -> { "portrait" }
|
9
|
+
attribute :position, :string, default: -> { "float" }
|
10
|
+
attribute :specific_use, :string
|
11
|
+
attribute :lang, :string
|
12
|
+
attribute :object_id, ObjectId, collection: true
|
13
|
+
attribute :label, Label, collection: true
|
14
|
+
attribute :caption, Caption, collection: true
|
15
|
+
attribute :abstract, Abstract, collection: true
|
16
|
+
attribute :kwd_group, KwdGroup, collection: true
|
17
|
+
attribute :subj_group, SubjGroup, collection: true
|
18
|
+
attribute :alt_text, AltText, collection: true
|
19
|
+
attribute :long_desc, LongDesc, collection: true
|
20
|
+
attribute :email, Email, collection: true
|
21
|
+
attribute :ext_link, ExtLink, collection: true
|
22
|
+
attribute :uri, Uri, collection: true
|
23
|
+
attribute :table_wrap, TableWrap, collection: true
|
24
|
+
attribute :xref, Xref, collection: true
|
25
|
+
|
26
|
+
xml do
|
27
|
+
root "table-wrap-group"
|
28
|
+
|
29
|
+
map_attribute "content-type", to: :content_type
|
30
|
+
map_attribute "id", to: :id
|
31
|
+
map_attribute "orientation", to: :orientation
|
32
|
+
map_attribute "position", to: :position
|
33
|
+
map_attribute "specific-use", to: :specific_use
|
34
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
35
|
+
map_element "object-id", to: :object_id
|
36
|
+
map_element "label", to: :label
|
37
|
+
map_element "caption", to: :caption
|
38
|
+
map_element "abstract", to: :abstract
|
39
|
+
map_element "kwd-group", to: :kwd_group
|
40
|
+
map_element "subj-group", to: :subj_group
|
41
|
+
map_element "alt-text", to: :alt_text
|
42
|
+
map_element "long-desc", to: :long_desc
|
43
|
+
map_element "email", to: :email
|
44
|
+
map_element "ext-link", to: :ext_link
|
45
|
+
map_element "uri", to: :uri
|
46
|
+
map_element "table-wrap", to: :table_wrap
|
47
|
+
map_element "xref", to: :xref
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class Target < Lutaml::Model::Serializable
|
6
|
+
attribute :content, :string
|
7
|
+
attribute :id, :string
|
8
|
+
attribute :specific_use, :string
|
9
|
+
attribute :target_type, :string
|
10
|
+
attribute :lang, :string
|
11
|
+
attribute :bold, Bold, collection: true
|
12
|
+
attribute :fixed_case, FixedCase, collection: true
|
13
|
+
attribute :italic, Italic, collection: true
|
14
|
+
attribute :monospace, Monospace, collection: true
|
15
|
+
attribute :overline, Overline, collection: true
|
16
|
+
attribute :roman, Roman, collection: true
|
17
|
+
attribute :sans_serif, SansSerif, collection: true
|
18
|
+
attribute :sc, Sc, collection: true
|
19
|
+
attribute :strike, Strike, collection: true
|
20
|
+
attribute :underline, Underline, collection: true
|
21
|
+
attribute :ruby, Ruby, collection: true
|
22
|
+
attribute :named_content, NamedContent, collection: true
|
23
|
+
attribute :styled_content, StyledContent, collection: true
|
24
|
+
attribute :sub, Sub, collection: true
|
25
|
+
attribute :sup, Sup, collection: true
|
26
|
+
|
27
|
+
xml do
|
28
|
+
root "target"
|
29
|
+
|
30
|
+
map_content to: :content
|
31
|
+
map_attribute "id", to: :id
|
32
|
+
map_attribute "specific-use", to: :specific_use
|
33
|
+
map_attribute "target-type", to: :target_type
|
34
|
+
map_attribute "lang", to: :lang, namespace: "http://www.w3.org/XML/1998/namespace", prefix: "xml"
|
35
|
+
map_element "bold", to: :bold
|
36
|
+
map_element "fixed-case", to: :fixed_case
|
37
|
+
map_element "italic", to: :italic
|
38
|
+
map_element "monospace", to: :monospace
|
39
|
+
map_element "overline", to: :overline
|
40
|
+
map_element "roman", to: :roman
|
41
|
+
map_element "sans-serif", to: :sans_serif
|
42
|
+
map_element "sc", to: :sc
|
43
|
+
map_element "strike", to: :strike
|
44
|
+
map_element "underline", to: :underline
|
45
|
+
map_element "ruby", to: :ruby
|
46
|
+
map_element "named-content", to: :named_content
|
47
|
+
map_element "styled-content", to: :styled_content
|
48
|
+
map_element "sub", to: :sub
|
49
|
+
map_element "sup", to: :sup
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niso
|
4
|
+
module Jats
|
5
|
+
class Tbody < Lutaml::Model::Serializable
|
6
|
+
attribute :align, :string
|
7
|
+
attribute :char, :string
|
8
|
+
attribute :charoff, :string
|
9
|
+
attribute :content_type, :string
|
10
|
+
attribute :id, :string
|
11
|
+
attribute :style, :string
|
12
|
+
attribute :valign, :string
|
13
|
+
attribute :tr, Tr, collection: true
|
14
|
+
|
15
|
+
xml do
|
16
|
+
root "tbody"
|
17
|
+
|
18
|
+
map_attribute "align", to: :align
|
19
|
+
map_attribute "char", to: :char
|
20
|
+
map_attribute "charoff", to: :charoff
|
21
|
+
map_attribute "content-type", to: :content_type
|
22
|
+
map_attribute "id", to: :id
|
23
|
+
map_attribute "style", to: :style
|
24
|
+
map_attribute "valign", to: :valign
|
25
|
+
map_element "tr", to: :tr
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|