yard-slipstream 0.1.1 → 0.1.2
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.
- data/VERSION +1 -1
- data/templates/default/fulldoc/html/frames.erb +27 -0
- data/templates/default/fulldoc/html/js/app.js +1 -1
- data/yard-slipstream.gemspec +2 -1
- metadata +3 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
|
3
|
+
|
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
5
|
+
<head>
|
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=<%= charset %>"/>
|
|
7
|
+
<title><%= options[:title] %></title>
|
|
8
|
+
<script language="JavaScript">
|
|
9
|
+
function frame_saver()
|
|
10
|
+
{
|
|
11
|
+
if (self.location.search)
|
|
12
|
+
{
|
|
13
|
+
parent.main.location = location.search.substring(1,location.search.length);
|
|
14
|
+
}
|
|
15
|
+
else
|
|
16
|
+
{
|
|
17
|
+
parent.main.location = "index.html";
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
window.onload = frame_saver;
|
|
21
|
+
</script>
|
|
22
|
+
</head>
|
|
23
|
+
<frameset cols="20%,*">
|
|
24
|
+
<frame name="list" src="class_list.html" />
|
|
25
|
+
<frame name="main" />
|
|
26
|
+
</frameset>
|
|
27
|
+
</html>
|
|
@@ -90,7 +90,7 @@ function framesInit() {
|
|
|
90
90
|
$('#noframes_link').removeClass('link_disabled');
|
|
91
91
|
}
|
|
92
92
|
else {
|
|
93
|
-
$('#frames_link').attr('href', relpath+"frames.html");
|
|
93
|
+
$('#frames_link').attr('href', relpath+"frames.html?" + document.location);
|
|
94
94
|
$('#frames_link').removeClass('link_disabled');
|
|
95
95
|
}
|
|
96
96
|
}
|
data/yard-slipstream.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{yard-slipstream}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Dreamcat4"]
|
|
@@ -35,6 +35,7 @@ Gem::Specification.new do |s|
|
|
|
35
35
|
"templates/default/class/html/subclasses.erb",
|
|
36
36
|
"templates/default/fulldoc/html/css/custom.css",
|
|
37
37
|
"templates/default/fulldoc/html/css/style.css",
|
|
38
|
+
"templates/default/fulldoc/html/frames.erb",
|
|
38
39
|
"templates/default/fulldoc/html/js/app.js",
|
|
39
40
|
"templates/default/fulldoc/html/js/autocomplete.js",
|
|
40
41
|
"templates/default/fulldoc/html/js/live.js",
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 2
|
|
9
|
+
version: 0.1.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Dreamcat4
|
|
@@ -107,6 +107,7 @@ files:
|
|
|
107
107
|
- templates/default/class/html/subclasses.erb
|
|
108
108
|
- templates/default/fulldoc/html/css/custom.css
|
|
109
109
|
- templates/default/fulldoc/html/css/style.css
|
|
110
|
+
- templates/default/fulldoc/html/frames.erb
|
|
110
111
|
- templates/default/fulldoc/html/js/app.js
|
|
111
112
|
- templates/default/fulldoc/html/js/autocomplete.js
|
|
112
113
|
- templates/default/fulldoc/html/js/live.js
|