kramdown-rfc2629 1.6.15 → 1.6.16
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 +4 -4
- data/data/kramdown-rfc2629.erb +15 -8
- data/kramdown-rfc2629.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c27f3051dfa496902009b54c1999bcc3c54e28aec350bc04d1d69cfed6dd47f8
|
|
4
|
+
data.tar.gz: bf804a07bf573d56a6c4aaa561613b97efcd2803bb7ba4f98f38c7b196a409f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31250b75f0f17bc4afe558110461ffb5821cebdbffe2114d69bd6985dd0bd6152bcdcee02994726f08232495781da16453e9f7484f00cd94813d4f2568d6b934
|
|
7
|
+
data.tar.gz: 17a58bc7ac58cc18e7472802f9a0dc91b6a309adb4f3632ad563b54485b2bd913bb4abce8e8aac682633d81fee860bc5b9d81b8c6e168a41e1c5b36a910e8cf1
|
data/data/kramdown-rfc2629.erb
CHANGED
|
@@ -99,16 +99,23 @@
|
|
|
99
99
|
mail_local, mail_host = mail.split("@", 2)
|
|
100
100
|
end
|
|
101
101
|
if mail_host -%>
|
|
102
|
-
<%
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
102
|
+
<% default_links = {
|
|
103
|
+
"iab.org" => true,
|
|
104
|
+
"ietf.org" => true,
|
|
105
|
+
"irtf.org" => true,
|
|
106
|
+
}[mail_host]
|
|
107
|
+
mail_subdomain, mail_domain = mail_host.split(".", 2)
|
|
108
|
+
group = venue[:group] || mail_local # XXX
|
|
109
|
+
arch = venue[:arch] || default_links && "https://mailarchive.ietf.org/arch/browse/#{mail_local}/"
|
|
110
|
+
subscribe = venue[:subscribe] || default_links && "https://www.ietf.org/mailman/listinfo/#{mail_local}/"
|
|
111
|
+
GROUPS = {"ietf" => "Working ", "irtf" => "Research "}
|
|
112
|
+
gtype ||= "#{GROUPS[mail_subdomain]}Group" -%>
|
|
108
113
|
Discussion of this document takes place on the
|
|
109
|
-
<%=group%> <%=gtype%> mailing list (<eref target="mailto:<%=mail%>"/>)
|
|
110
|
-
which is archived at <eref target="<%=arch%>"
|
|
114
|
+
<%=group%> <%=gtype%> mailing list (<eref target="mailto:<%=mail%>"/>)<% if arch -%>,
|
|
115
|
+
which is archived at <eref target="<%=arch%>"/><% end -%>.
|
|
116
|
+
<% if subscribe -%>
|
|
111
117
|
Subscribe at <eref target="<%=subscribe%>"/>.
|
|
118
|
+
<% end -%>
|
|
112
119
|
<% end -%>
|
|
113
120
|
<% if homepage -%>
|
|
114
121
|
<%=gtype%> information can be found at <eref target="<%=homepage%>"/>.
|
data/kramdown-rfc2629.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
spec = Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'kramdown-rfc2629'
|
|
3
|
-
s.version = '1.6.
|
|
3
|
+
s.version = '1.6.16'
|
|
4
4
|
s.summary = "Kramdown extension for generating RFCXML (RFC 799x)."
|
|
5
5
|
s.description = %{An RFCXML (RFC 799x) generating backend for Thomas Leitner's
|
|
6
6
|
"kramdown" markdown parser. Mostly useful for RFC writers.}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kramdown-rfc2629
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Carsten Bormann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-08-
|
|
11
|
+
date: 2022-08-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: kramdown
|