Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed May 10, 2021
1 parent 682ca5f commit b935f97
Show file tree
Hide file tree
Showing 3 changed files with 175 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,3 @@ AllCops:
DisplayCopNames: false
StyleGuideCopsOnly: false
TargetRubyVersion: 2.4
Rails:
Enabled: true
174 changes: 174 additions & 0 deletions lib/asciidoctor/m3aawg/isodoc.rng
Original file line number Diff line number Diff line change
Expand Up @@ -876,6 +876,18 @@
</zeroOrMore>
</element>
</define>
<define name="pagebreak">
<element name="pagebreak">
<optional>
<attribute name="orientation">
<choice>
<value>landscape</value>
<value>portrait</value>
</choice>
</attribute>
</optional>
</element>
</define>
</include>
<!-- end overrides -->
<define name="colgroup">
Expand Down Expand Up @@ -943,8 +955,170 @@
<ref name="permission"/>
<ref name="imagemap"/>
<ref name="svgmap"/>
<ref name="inputform"/>
</choice>
</define>
<define name="inputform">
<element name="form">
<attribute name="id">
<data type="ID"/>
</attribute>
<attribute name="name"/>
<attribute name="action"/>
<zeroOrMore>
<choice>
<ref name="TextElement"/>
<ref name="FormInput"/>
</choice>
</zeroOrMore>
</element>
</define>
<define name="FormInput">
<choice>
<ref name="input"/>
<ref name="formlabel"/>
<ref name="select"/>
<ref name="textarea"/>
</choice>
</define>
<define name="InputType">
<choice>
<value>button</value>
<value>checkbox</value>
<value>date</value>
<value>file</value>
<value>password</value>
<value>radio</value>
<value>submit</value>
<value>text</value>
</choice>
</define>
<define name="input">
<element name="input">
<attribute name="type">
<ref name="InputType"/>
</attribute>
<optional>
<attribute name="checked">
<data type="boolean"/>
</attribute>
</optional>
<optional>
<attribute name="disabled">
<data type="boolean"/>
</attribute>
</optional>
<optional>
<attribute name="readonly">
<data type="boolean"/>
</attribute>
</optional>
<optional>
<attribute name="maxlength">
<data type="int"/>
</attribute>
</optional>
<optional>
<attribute name="minlength">
<data type="int"/>
</attribute>
</optional>
<optional>
<attribute name="name"/>
</optional>
<optional>
<attribute name="value"/>
</optional>
<optional>
<attribute name="id">
<data type="ID"/>
</attribute>
</optional>
</element>
</define>
<define name="formlabel">
<element name="label">
<attribute name="for">
<data type="IDREF"/>
</attribute>
<zeroOrMore>
<ref name="PureTextElement"/>
</zeroOrMore>
</element>
</define>
<define name="select">
<element name="select">
<optional>
<attribute name="name"/>
</optional>
<optional>
<attribute name="value"/>
</optional>
<optional>
<attribute name="id">
<data type="ID"/>
</attribute>
</optional>
<optional>
<attribute name="disabled">
<data type="boolean"/>
</attribute>
</optional>
<optional>
<attribute name="multiple">
<data type="boolean"/>
</attribute>
</optional>
<optional>
<attribute name="size">
<data type="int"/>
</attribute>
</optional>
<oneOrMore>
<ref name="option"/>
</oneOrMore>
</element>
</define>
<define name="option">
<element name="option">
<optional>
<attribute name="disabled">
<data type="boolean"/>
</attribute>
</optional>
<optional>
<attribute name="value"/>
</optional>
<zeroOrMore>
<ref name="PureTextElement"/>
</zeroOrMore>
</element>
</define>
<define name="textarea">
<element name="textarea">
<optional>
<attribute name="name"/>
</optional>
<optional>
<attribute name="value"/>
</optional>
<optional>
<attribute name="id">
<data type="ID"/>
</attribute>
</optional>
<optional>
<attribute name="rows">
<data type="int"/>
</attribute>
</optional>
<optional>
<attribute name="cols">
<data type="int"/>
</attribute>
</optional>
</element>
</define>
<define name="bibliography">
<element name="bibliography">
<oneOrMore>
Expand Down
2 changes: 1 addition & 1 deletion lib/metanorma/m3aawg/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Metanorma
module M3AAWG
VERSION = "1.7.1".freeze
VERSION = "1.7.2".freeze
end
end

0 comments on commit b935f97

Please sign in to comment.