sdoc 2.0.3 → 2.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 234ba541d36b61d2b4bb680ab8df4e2463d4cc63f0517f160270a3e7a48f0f81
4
- data.tar.gz: afae81f60c7f9218da174c06cb4d5799f7c0db8e5188c6dc49c54ea3bacb5dc3
3
+ metadata.gz: b8d4b29d6331f29ea069228638d3acdf6f0cda3894526984025b3ae62eea2523
4
+ data.tar.gz: 7d5d3d5048e21d0cfa869d28a3963289efa457b6d52ca38c852f486ba33a382a
5
5
  SHA512:
6
- metadata.gz: 3b24a3309f283113f8b0f0cd1e2e0d7711a40a293612599499f09b6d6793f25669e9aa0f9925ef9d844a31a89be30f296fdd8f47d3161a8f24629d5d2f41b99c
7
- data.tar.gz: f5355d4fd9d7aa0478db5c6aa398502c1480ece246f811b795721471e15eddc74dafe7640cca5de2e32751a65d5fcea0d156933aa2eabc691d1daba222428fdd
6
+ metadata.gz: fe1810f968c179d72c4d22bdcb79097217566c52f4cc50ac2904e443a0dddc205065e06f9bcaea18be36e485a95a565bea96103e45503fffbbfaec8c4482db21
7
+ data.tar.gz: 24fa176a0ed31025b545f80652b936fa224be2bfa013b6ff5969eb3ee33d6221f2066ec48901cafc5cc8effbbe4281b17f120c5833574eac915693ff3bf0dd89
data/CHANGELOG.md CHANGED
@@ -1,7 +1,13 @@
1
+ 2.0.4
2
+ =====
3
+
4
+ * #149 Using HTML5 doctype accross all HTML files. [@MikeRogers0](https://github.com/MikeRogers0)
5
+ * #148 Fix overflow CSS property of panel elements. [@cveneziani](https://github.com/cveneziani)
6
+
1
7
  2.0.3
2
8
  =====
3
9
 
4
- * Use @options.title for the index
10
+ * #147 Use @options.title for the index [@p8](https://github.com/p8)
5
11
 
6
12
  2.0.2
7
13
  =====
@@ -11,14 +17,14 @@
11
17
  2.0.1
12
18
  =====
13
19
 
14
- * #142 Fix arrow icons for selected panel items
15
- * #141 Always use only one metatag for keywords
16
- * #140 Use h2 instead of h1 for banner header
20
+ * #142 Fix arrow icons for selected panel items [@p8](https://github.com/p8)
21
+ * #141 Always use only one metatag for keywords [@p8](https://github.com/p8)
22
+ * #140 Use h2 instead of h1 for banner header [@p8](https://github.com/p8)
17
23
 
18
24
  2.0.0
19
25
  =====
20
26
 
21
- * #137 Replace frames based implementation with a css
27
+ * #137 Replace frames based implementation with a css [@p8](https://github.com/p8)
22
28
  * #132 Deprecate safe_level of ERB.new in Ruby 2.6
23
29
 
24
30
  1.1.0
@@ -1,7 +1,5 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1
+ <!DOCTYPE html>
2
+ <html lang="en">
5
3
  <head>
6
4
  <title><%= @options.title %></title>
7
5
  <meta http-equiv="Content-Type" content="text/html; charset=<%= @options.charset %>" />
@@ -57,7 +57,7 @@
57
57
  top: 40px;
58
58
  left: 0;
59
59
  width: 100%;
60
- overflow-y: scroll;
60
+ overflow-y: auto;
61
61
  overflow-x: hidden;
62
62
  z-index: 2;
63
63
  }
@@ -224,7 +224,7 @@
224
224
  bottom: 0;
225
225
  left: 0;
226
226
  width: 100%;
227
- overflow-y: scroll;
227
+ overflow-y: auto;
228
228
  overflow-x: hidden;
229
229
  z-index: 30;
230
230
  }
@@ -1,5 +1,8 @@
1
- <html>
2
- <head>File index</head>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <title>File Index</title>
5
+ </head>
3
6
  <body>
4
7
  <% @files.each do |file| %>
5
8
  <a href="../<%= file.path %>"><%= file.relative_name %></a>
@@ -1,7 +1,5 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1
+ <!DOCTYPE html>
2
+ <html lang="en">
5
3
  <head>
6
4
  <title><%= h klass.full_name %></title>
7
5
  <meta http-equiv="Content-Type" content="text/html; charset=<%= @options.charset %>" />
@@ -1,7 +1,5 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1
+ <!DOCTYPE html>
2
+ <html lang="en">
5
3
  <head>
6
4
  <title><%= h file.name %></title>
7
5
  <meta http-equiv="Content-Type" content="text/html; charset=<%= @options.charset %>" />
@@ -1,7 +1,5 @@
1
- <!DOCTYPE html
2
- PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1
+ <!DOCTYPE html>
2
+ <html lang="en">
5
3
  <head>
6
4
  <meta http-equiv="Content-Type" content="text/html; charset=<%= @options.charset %>" />
7
5
  <title><%= @options.title %></title>
@@ -1,7 +1,7 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
3
  <head>
4
- <title>search index</title>
4
+ <title>Search Index</title>
5
5
  <link rel="stylesheet" href="../css/reset.css" type="text/css" media="screen" charset="utf-8" />
6
6
  <link rel="stylesheet" href="../css/panel.css" type="text/css" media="screen" charset="utf-8" />
7
7
  <script src="../js/search_index.js" type="text/javascript" charset="utf-8"></script>
@@ -1,5 +1,8 @@
1
- <html>
2
- <head>File index</head>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <title>File Index</title>
5
+ </head>
3
6
  <body>
4
7
  <% @files.each do |file| %>
5
8
  <a href="../<%= file.path %>"><%= file.relative_name %></a>
data/lib/sdoc/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module SDoc
2
- VERSION = '2.0.3'
2
+ VERSION = '2.0.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sdoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladimir Kolesnikov
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2020-12-11 00:00:00.000000000 Z
14
+ date: 2021-02-25 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rdoc