sdoc 2.0.3 → 2.0.4
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/CHANGELOG.md +11 -5
- data/lib/rdoc/generator/template/rails/index.rhtml +2 -4
- data/lib/rdoc/generator/template/rails/resources/css/panel.css +2 -2
- data/lib/rdoc/generator/template/rails/search_index.rhtml +5 -2
- data/lib/rdoc/generator/template/sdoc/class.rhtml +2 -4
- data/lib/rdoc/generator/template/sdoc/file.rhtml +2 -4
- data/lib/rdoc/generator/template/sdoc/index.rhtml +2 -4
- data/lib/rdoc/generator/template/sdoc/resources/panel/index.html +1 -1
- data/lib/rdoc/generator/template/sdoc/search_index.rhtml +5 -2
- data/lib/sdoc/version.rb +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: b8d4b29d6331f29ea069228638d3acdf6f0cda3894526984025b3ae62eea2523
|
|
4
|
+
data.tar.gz: 7d5d3d5048e21d0cfa869d28a3963289efa457b6d52ca38c852f486ba33a382a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
2
|
-
|
|
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:
|
|
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:
|
|
227
|
+
overflow-y: auto;
|
|
228
228
|
overflow-x: hidden;
|
|
229
229
|
z-index: 30;
|
|
230
230
|
}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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
|
-
|
|
2
|
-
|
|
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
|
-
|
|
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>
|
|
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>
|
data/lib/sdoc/version.rb
CHANGED
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.
|
|
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:
|
|
14
|
+
date: 2021-02-25 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: rdoc
|