yard 0.9.38 → 0.9.42
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 +44 -1
- data/README.md +18 -21
- data/docs/GettingStarted.md +41 -15
- data/docs/Parser.md +17 -42
- data/docs/Tags.md +5 -5
- data/docs/WhatsNew.md +59 -7
- data/docs/templates/default/yard_tags/html/setup.rb +1 -1
- data/lib/yard/autoload.rb +17 -0
- data/lib/yard/cli/diff.rb +7 -2
- data/lib/yard/code_objects/proxy.rb +1 -1
- data/lib/yard/handlers/processor.rb +1 -0
- data/lib/yard/handlers/rbs/attribute_handler.rb +43 -0
- data/lib/yard/handlers/rbs/base.rb +38 -0
- data/lib/yard/handlers/rbs/constant_handler.rb +18 -0
- data/lib/yard/handlers/rbs/method_handler.rb +327 -0
- data/lib/yard/handlers/rbs/mixin_handler.rb +20 -0
- data/lib/yard/handlers/rbs/namespace_handler.rb +26 -0
- data/lib/yard/handlers/ruby/attribute_handler.rb +7 -4
- data/lib/yard/handlers/ruby/constant_handler.rb +1 -0
- data/lib/yard/i18n/locale.rb +1 -1
- data/lib/yard/i18n/pot_generator.rb +1 -1
- data/lib/yard/parser/rbs/rbs_parser.rb +325 -0
- data/lib/yard/parser/rbs/statement.rb +75 -0
- data/lib/yard/parser/ruby/legacy/irb/slex.rb +19 -1
- data/lib/yard/parser/ruby/ruby_parser.rb +55 -3
- data/lib/yard/parser/source_parser.rb +3 -2
- data/lib/yard/registry_resolver.rb +7 -0
- data/lib/yard/rubygems/specification.rb +1 -1
- data/lib/yard/server/commands/base.rb +1 -1
- data/lib/yard/server/library_version.rb +1 -1
- data/lib/yard/server/templates/default/fulldoc/html/css/custom.css +168 -88
- data/lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js +203 -12
- data/lib/yard/server/templates/default/layout/html/breadcrumb.erb +1 -17
- data/lib/yard/server/templates/default/method_details/html/permalink.erb +4 -2
- data/lib/yard/server/templates/doc_server/library_list/html/headers.erb +3 -3
- data/lib/yard/server/templates/doc_server/library_list/html/library_list.erb +2 -3
- data/lib/yard/server/templates/doc_server/processing/html/processing.erb +22 -16
- data/lib/yard/tags/directives.rb +7 -0
- data/lib/yard/tags/library.rb +3 -3
- data/lib/yard/tags/types_explainer.rb +2 -1
- data/lib/yard/templates/helpers/base_helper.rb +1 -1
- data/lib/yard/templates/helpers/html_helper.rb +16 -5
- data/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +6 -1
- data/lib/yard/templates/helpers/markup/hybrid_markdown.rb +2147 -0
- data/lib/yard/templates/helpers/markup_helper.rb +4 -2
- data/lib/yard/version.rb +1 -1
- data/po/ja.po +82 -82
- data/templates/default/fulldoc/html/css/common.css +1 -1
- data/templates/default/fulldoc/html/css/full_list.css +201 -53
- data/templates/default/fulldoc/html/css/style.css +988 -389
- data/templates/default/fulldoc/html/full_list.erb +4 -4
- data/templates/default/fulldoc/html/js/app.js +801 -395
- data/templates/default/fulldoc/html/js/full_list.js +332 -242
- data/templates/default/layout/html/headers.erb +1 -1
- data/templates/default/layout/html/layout.erb +3 -1
- data/templates/default/method/html/header.erb +3 -3
- data/templates/default/module/html/defines.erb +3 -3
- data/templates/default/module/html/inherited_methods.erb +1 -0
- data/templates/default/module/html/method_summary.erb +8 -0
- data/templates/default/module/setup.rb +20 -0
- data/templates/default/onefile/html/layout.erb +3 -4
- data/templates/guide/fulldoc/html/css/style.css +347 -97
- data/templates/guide/fulldoc/html/js/app.js +61 -33
- data/templates/guide/layout/html/layout.erb +69 -72
- metadata +14 -4
|
@@ -1,96 +1,30 @@
|
|
|
1
|
-
#search_results h1 { margin-bottom: 0; }
|
|
2
|
-
#search_results p { margin-top: 0; margin-bottom: 25px; }
|
|
3
|
-
#search_results ul { list-style-position: inside; padding-left: 0; list-style: none; }
|
|
4
|
-
#search_results ul li { padding: 7px 15px; font-size: 1.1em; }
|
|
5
|
-
|
|
6
|
-
form.search {
|
|
7
|
-
z-index: 8000;
|
|
8
|
-
position: absolute;
|
|
9
|
-
color: #fff;
|
|
10
|
-
border: 1px solid #99f; width: 210px; background: #05a;
|
|
11
|
-
border-radius: 4px; border-top-left-radius: 0; border-top-right-radius: 0;
|
|
12
|
-
}
|
|
13
|
-
form.search input {
|
|
14
|
-
height: 25px;
|
|
15
|
-
padding: 0;
|
|
16
|
-
padding-left: 4px;
|
|
17
|
-
margin: 4px;
|
|
18
|
-
margin-right: 0;
|
|
19
|
-
width: 202px;
|
|
20
|
-
border: 1px solid #99f;
|
|
21
|
-
border-radius: 3px;
|
|
22
|
-
font-size: 1.1em;
|
|
23
|
-
box-sizing: border-box;
|
|
24
|
-
-webkit-appearance: none;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
@media (max-width: 920px) {
|
|
28
|
-
form.search {
|
|
29
|
-
position: absolute;
|
|
30
|
-
color: #fff;
|
|
31
|
-
width: 100%;
|
|
32
|
-
margin-top: 0;
|
|
33
|
-
background: #05a;
|
|
34
|
-
border-radius: 0;
|
|
35
|
-
border: 0;
|
|
36
|
-
margin-bottom: 10px;
|
|
37
|
-
left: 0;
|
|
38
|
-
top: 0;
|
|
39
|
-
}
|
|
40
|
-
form.search input {
|
|
41
|
-
margin-top: 9px;
|
|
42
|
-
margin-bottom: 11px;
|
|
43
|
-
margin-left: 12px;
|
|
44
|
-
padding-left: 6px;
|
|
45
|
-
border: 1px solid #eaf0ff;
|
|
46
|
-
}
|
|
47
|
-
#menu { margin-top: 41px; }
|
|
48
|
-
#search a {
|
|
49
|
-
border-top-left-radius: 3px; border-top-right-radius: 3px;
|
|
50
|
-
background: none;
|
|
51
|
-
border: 0;
|
|
52
|
-
box-shadow: none;
|
|
53
|
-
margin-top: 4px;
|
|
54
|
-
padding-bottom: 5px;
|
|
55
|
-
color: #eaf0ff; fill: #eaf0ff;
|
|
56
|
-
}
|
|
57
|
-
#search a.active {
|
|
58
|
-
background: #048; border: 0;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
@media (min-width: 920px) {
|
|
63
|
-
form.search { right: 12px; top: 0; }
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
#menu { padding-top: 5px; }
|
|
67
|
-
#content h1 { margin-top: 15px; border-top: 0; }
|
|
68
|
-
|
|
69
|
-
#content.error { font-size: 1.2em; }
|
|
70
|
-
#content.error p tt { font-size: 1.2em; }
|
|
71
|
-
#content.error .note { padding: 12px; }
|
|
72
|
-
|
|
73
|
-
.signature .permalink { float: right; font-size: 0.9em; }
|
|
74
|
-
|
|
75
1
|
/* autocomplete */
|
|
76
2
|
.ac_results {
|
|
77
3
|
padding: 0px;
|
|
78
|
-
|
|
79
|
-
|
|
4
|
+
position: absolute;
|
|
5
|
+
top: calc(100% - 1px);
|
|
6
|
+
left: 4px;
|
|
7
|
+
right: 4px;
|
|
8
|
+
border: 1px solid #0a4f8a;
|
|
9
|
+
width: auto;
|
|
80
10
|
overflow: hidden;
|
|
81
11
|
z-index: 99999;
|
|
12
|
+
background: #f7fbff;
|
|
13
|
+
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
|
|
14
|
+
border-radius: 0 0 4px 4px;
|
|
15
|
+
color: #123;
|
|
82
16
|
}
|
|
83
17
|
|
|
84
18
|
.ac_results ul {
|
|
85
19
|
width: 100%;
|
|
86
|
-
list-style-position: outside;
|
|
87
20
|
list-style: none;
|
|
21
|
+
list-style-position: outside;
|
|
88
22
|
padding: 0;
|
|
89
23
|
margin: 0;
|
|
90
24
|
}
|
|
91
25
|
|
|
92
26
|
.ac_results li {
|
|
93
|
-
|
|
27
|
+
cursor: pointer;
|
|
94
28
|
margin: 0px;
|
|
95
29
|
padding: 3px;
|
|
96
30
|
display: block;
|
|
@@ -98,30 +32,176 @@ form.search input {
|
|
|
98
32
|
font-size: 12px;
|
|
99
33
|
line-height: 16px;
|
|
100
34
|
overflow: hidden;
|
|
35
|
+
color: #123;
|
|
36
|
+
}
|
|
101
37
|
|
|
38
|
+
#search_results h1 {
|
|
39
|
+
margin-bottom: 0;
|
|
40
|
+
}
|
|
41
|
+
#search_results p {
|
|
42
|
+
margin-top: 0;
|
|
43
|
+
margin-bottom: 25px;
|
|
44
|
+
}
|
|
45
|
+
#search_results ul {
|
|
46
|
+
list-style: none;
|
|
47
|
+
list-style-position: inside;
|
|
48
|
+
padding-left: 0;
|
|
49
|
+
}
|
|
50
|
+
#search_results ul li {
|
|
51
|
+
padding: 7px 15px;
|
|
52
|
+
font-size: 1.1em;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
form.search {
|
|
56
|
+
z-index: 8000;
|
|
57
|
+
position: absolute;
|
|
58
|
+
color: #fff;
|
|
59
|
+
border: 1px solid #99f;
|
|
60
|
+
width: 210px;
|
|
61
|
+
background: #05a;
|
|
62
|
+
border-radius: 4px;
|
|
63
|
+
border-top-left-radius: 0;
|
|
64
|
+
border-top-right-radius: 0;
|
|
65
|
+
}
|
|
66
|
+
form.search input {
|
|
67
|
+
height: 25px;
|
|
68
|
+
padding: 0;
|
|
69
|
+
padding-left: 4px;
|
|
70
|
+
margin: 4px;
|
|
71
|
+
margin-right: 0;
|
|
72
|
+
width: 202px;
|
|
73
|
+
border: 1px solid #99f;
|
|
74
|
+
border-radius: 3px;
|
|
75
|
+
font-size: 1.1em;
|
|
76
|
+
box-sizing: border-box;
|
|
77
|
+
-webkit-appearance: none;
|
|
78
|
+
color: #123;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
@media (max-width: 920px) {
|
|
82
|
+
form.search {
|
|
83
|
+
position: absolute;
|
|
84
|
+
color: #fff;
|
|
85
|
+
width: 100%;
|
|
86
|
+
margin-top: 0;
|
|
87
|
+
background: #05a;
|
|
88
|
+
border-radius: 0;
|
|
89
|
+
border: 0;
|
|
90
|
+
margin-bottom: 10px;
|
|
91
|
+
left: 0;
|
|
92
|
+
top: 0;
|
|
93
|
+
}
|
|
94
|
+
form.search input {
|
|
95
|
+
margin-top: 9px;
|
|
96
|
+
margin-bottom: 11px;
|
|
97
|
+
margin-left: 12px;
|
|
98
|
+
padding-left: 6px;
|
|
99
|
+
border: 1px solid #eaf0ff;
|
|
100
|
+
background: #fff;
|
|
101
|
+
}
|
|
102
|
+
#menu {
|
|
103
|
+
margin-top: 41px;
|
|
104
|
+
}
|
|
105
|
+
#search a {
|
|
106
|
+
border-top-left-radius: 3px;
|
|
107
|
+
border-top-right-radius: 3px;
|
|
108
|
+
background: none;
|
|
109
|
+
border: 0;
|
|
110
|
+
box-shadow: none;
|
|
111
|
+
margin-top: 4px;
|
|
112
|
+
padding-bottom: 5px;
|
|
113
|
+
color: #eaf0ff;
|
|
114
|
+
fill: #eaf0ff;
|
|
115
|
+
}
|
|
116
|
+
#search a.active {
|
|
117
|
+
background: #048;
|
|
118
|
+
border: 0;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
@media (min-width: 920px) {
|
|
123
|
+
form.search {
|
|
124
|
+
right: 12px;
|
|
125
|
+
top: 0;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
#menu {
|
|
130
|
+
padding-top: 5px;
|
|
131
|
+
}
|
|
132
|
+
#content h1 {
|
|
133
|
+
margin-top: 15px;
|
|
134
|
+
border-top: 0;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
#content.error {
|
|
138
|
+
font-size: 1.2em;
|
|
139
|
+
}
|
|
140
|
+
#content.error p tt {
|
|
141
|
+
font-size: 1.2em;
|
|
142
|
+
}
|
|
143
|
+
#content.error .note {
|
|
144
|
+
padding: 12px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.signature .permalink {
|
|
148
|
+
float: right;
|
|
149
|
+
font-size: 0.9em;
|
|
102
150
|
}
|
|
103
151
|
|
|
104
152
|
.ac_loading {
|
|
105
|
-
background: white url(
|
|
153
|
+
background: white url("/images/processing.gif") right center no-repeat;
|
|
106
154
|
}
|
|
107
155
|
|
|
108
156
|
.ac_even {
|
|
109
|
-
|
|
157
|
+
background: #fafafa;
|
|
158
|
+
border: 1px dotted #fafafa;
|
|
159
|
+
border-left-width: 0;
|
|
160
|
+
border-right-width: 0;
|
|
110
161
|
}
|
|
111
162
|
|
|
112
163
|
.ac_odd {
|
|
113
|
-
background: #f0f0f0;
|
|
164
|
+
background: #f0f0f0;
|
|
165
|
+
border: 1px dotted #f0f0f0;
|
|
166
|
+
border-left-width: 0;
|
|
167
|
+
border-right-width: 0;
|
|
114
168
|
}
|
|
115
169
|
|
|
116
170
|
.ac_over {
|
|
117
|
-
|
|
171
|
+
background: #cfe5ff;
|
|
172
|
+
cursor: pointer;
|
|
173
|
+
border: 1px dotted #f7fbff;
|
|
174
|
+
border-left-width: 0;
|
|
175
|
+
border-right-width: 0;
|
|
118
176
|
}
|
|
119
177
|
|
|
120
|
-
#fade {
|
|
178
|
+
#fade {
|
|
179
|
+
display: none;
|
|
180
|
+
position: absolute;
|
|
181
|
+
top: 0px;
|
|
182
|
+
left: 0;
|
|
183
|
+
background: #eee;
|
|
184
|
+
z-index: -1;
|
|
185
|
+
width: 100%;
|
|
186
|
+
height: 100%;
|
|
187
|
+
border-top: 1px solid #e0e0e0;
|
|
188
|
+
}
|
|
121
189
|
#processing {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
190
|
+
position: absolute;
|
|
191
|
+
width: 400px;
|
|
192
|
+
height: 200px;
|
|
193
|
+
margin: auto;
|
|
194
|
+
background: #fff;
|
|
195
|
+
padding: 10px 30px;
|
|
196
|
+
z-index: 20;
|
|
197
|
+
-webkit-box-shadow: 0px 0px 20px #444;
|
|
198
|
+
-moz-box-shadow: 0px 0px 20px #444;
|
|
199
|
+
-webkit-border-radius: 4px;
|
|
200
|
+
display: none;
|
|
201
|
+
}
|
|
202
|
+
#processing img {
|
|
203
|
+
display: block;
|
|
204
|
+
position: absolute;
|
|
205
|
+
bottom: 30px;
|
|
206
|
+
left: 44%;
|
|
126
207
|
}
|
|
127
|
-
#processing img { display: block; position: absolute; bottom: 30px; left: 44%; }
|
|
@@ -1,12 +1,203 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
(() => {
|
|
2
|
+
function query(selector, root) {
|
|
3
|
+
return (root || document).querySelector(selector);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
function ready(callback) {
|
|
7
|
+
if (document.readyState === "loading") {
|
|
8
|
+
document.addEventListener("DOMContentLoaded", callback, { once: true });
|
|
9
|
+
} else {
|
|
10
|
+
callback();
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function createAutocomplete(input) {
|
|
15
|
+
const form = input.form;
|
|
16
|
+
const results = document.createElement("div");
|
|
17
|
+
const list = document.createElement("ul");
|
|
18
|
+
let requestTimer = null;
|
|
19
|
+
let controller = null;
|
|
20
|
+
let items = [];
|
|
21
|
+
let activeIndex = -1;
|
|
22
|
+
let blurTimer = null;
|
|
23
|
+
|
|
24
|
+
if (!form) return;
|
|
25
|
+
|
|
26
|
+
results.className = "ac_results";
|
|
27
|
+
results.hidden = true;
|
|
28
|
+
results.setAttribute("role", "listbox");
|
|
29
|
+
results.id = `${input.id}_results`;
|
|
30
|
+
list.setAttribute("role", "presentation");
|
|
31
|
+
results.appendChild(list);
|
|
32
|
+
input.setAttribute("autocomplete", "off");
|
|
33
|
+
input.setAttribute("aria-autocomplete", "list");
|
|
34
|
+
input.setAttribute("aria-controls", results.id);
|
|
35
|
+
input.setAttribute("aria-expanded", "false");
|
|
36
|
+
form.appendChild(results);
|
|
37
|
+
|
|
38
|
+
function syncResultsWidth() {
|
|
39
|
+
results.style.width = `${input.offsetWidth}px`;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
function hideResults() {
|
|
43
|
+
results.hidden = true;
|
|
44
|
+
input.setAttribute("aria-expanded", "false");
|
|
45
|
+
input.removeAttribute("aria-activedescendant");
|
|
46
|
+
activeIndex = -1;
|
|
47
|
+
items = [];
|
|
48
|
+
list.innerHTML = "";
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function setActive(index) {
|
|
52
|
+
if (!items.length) return;
|
|
53
|
+
activeIndex = (index + items.length) % items.length;
|
|
54
|
+
items.forEach((item, itemIndex) => {
|
|
55
|
+
item.element.classList.toggle("ac_over", itemIndex === activeIndex);
|
|
56
|
+
});
|
|
57
|
+
input.setAttribute(
|
|
58
|
+
"aria-activedescendant",
|
|
59
|
+
items[activeIndex].element.id,
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function selectItem(item) {
|
|
64
|
+
input.value = item.values[1];
|
|
65
|
+
window.location.href = item.values[3];
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function renderItems(lines) {
|
|
69
|
+
syncResultsWidth();
|
|
70
|
+
list.innerHTML = "";
|
|
71
|
+
items = lines.map((line, index) => {
|
|
72
|
+
const values = line.split(",");
|
|
73
|
+
const element = document.createElement("li");
|
|
74
|
+
const label = document.createElement("span");
|
|
75
|
+
const namespace = document.createElement("small");
|
|
76
|
+
|
|
77
|
+
element.id = `${results.id}_item_${index}`;
|
|
78
|
+
element.setAttribute("role", "option");
|
|
79
|
+
element.className = index % 2 === 0 ? "ac_even" : "ac_odd";
|
|
80
|
+
label.textContent = values[0];
|
|
81
|
+
element.appendChild(label);
|
|
82
|
+
|
|
83
|
+
if (values[1] !== "") {
|
|
84
|
+
namespace.textContent = `(${values[1]})`;
|
|
85
|
+
element.appendChild(document.createTextNode(" "));
|
|
86
|
+
element.appendChild(namespace);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
element.addEventListener("mouseenter", () => {
|
|
90
|
+
setActive(index);
|
|
91
|
+
});
|
|
92
|
+
element.addEventListener("mousedown", (event) => {
|
|
93
|
+
event.preventDefault();
|
|
94
|
+
selectItem(items[index]);
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
list.appendChild(element);
|
|
98
|
+
|
|
99
|
+
return { element: element, values: values };
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
if (items.length) {
|
|
103
|
+
results.hidden = false;
|
|
104
|
+
input.setAttribute("aria-expanded", "true");
|
|
105
|
+
setActive(0);
|
|
106
|
+
} else {
|
|
107
|
+
hideResults();
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function fetchResults(term) {
|
|
112
|
+
if (controller) controller.abort();
|
|
113
|
+
controller = new AbortController();
|
|
114
|
+
input.classList.add("ac_loading");
|
|
115
|
+
|
|
116
|
+
fetch(`${form.action}?q=${encodeURIComponent(term)}&_=${Date.now()}`, {
|
|
117
|
+
headers: {
|
|
118
|
+
"X-Requested-With": "XMLHttpRequest",
|
|
119
|
+
},
|
|
120
|
+
signal: controller.signal,
|
|
121
|
+
})
|
|
122
|
+
.then((response) => response.text())
|
|
123
|
+
.then((text) => {
|
|
124
|
+
const lines = text
|
|
125
|
+
.split("\n")
|
|
126
|
+
.map((line) => line.trim())
|
|
127
|
+
.filter(Boolean);
|
|
128
|
+
|
|
129
|
+
renderItems(lines);
|
|
130
|
+
})
|
|
131
|
+
.catch((error) => {
|
|
132
|
+
if (error.name !== "AbortError") hideResults();
|
|
133
|
+
})
|
|
134
|
+
.finally(() => {
|
|
135
|
+
input.classList.remove("ac_loading");
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
input.addEventListener("input", () => {
|
|
140
|
+
clearTimeout(requestTimer);
|
|
141
|
+
if (blurTimer) clearTimeout(blurTimer);
|
|
142
|
+
|
|
143
|
+
if (!input.value.trim()) {
|
|
144
|
+
hideResults();
|
|
145
|
+
return;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
requestTimer = setTimeout(() => {
|
|
149
|
+
fetchResults(input.value.trim());
|
|
150
|
+
}, 200);
|
|
151
|
+
});
|
|
152
|
+
|
|
153
|
+
input.addEventListener("keydown", (event) => {
|
|
154
|
+
if (
|
|
155
|
+
results.hidden &&
|
|
156
|
+
(event.key === "ArrowDown" || event.key === "ArrowUp")
|
|
157
|
+
) {
|
|
158
|
+
if (!input.value.trim()) return;
|
|
159
|
+
fetchResults(input.value.trim());
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
if (event.key === "ArrowDown") {
|
|
164
|
+
event.preventDefault();
|
|
165
|
+
setActive(activeIndex + 1);
|
|
166
|
+
} else if (event.key === "ArrowUp") {
|
|
167
|
+
event.preventDefault();
|
|
168
|
+
setActive(activeIndex - 1);
|
|
169
|
+
} else if (event.key === "Enter") {
|
|
170
|
+
if (activeIndex >= 0 && items[activeIndex]) {
|
|
171
|
+
event.preventDefault();
|
|
172
|
+
selectItem(items[activeIndex]);
|
|
173
|
+
}
|
|
174
|
+
} else if (event.key === "Escape") {
|
|
175
|
+
hideResults();
|
|
176
|
+
}
|
|
177
|
+
});
|
|
178
|
+
|
|
179
|
+
input.addEventListener("blur", () => {
|
|
180
|
+
blurTimer = setTimeout(hideResults, 150);
|
|
181
|
+
});
|
|
182
|
+
|
|
183
|
+
input.addEventListener("focus", () => {
|
|
184
|
+
syncResultsWidth();
|
|
185
|
+
if (items.length) {
|
|
186
|
+
results.hidden = false;
|
|
187
|
+
input.setAttribute("aria-expanded", "true");
|
|
188
|
+
}
|
|
189
|
+
});
|
|
190
|
+
|
|
191
|
+
document.addEventListener("click", (event) => {
|
|
192
|
+
if (!form.contains(event.target)) hideResults();
|
|
193
|
+
});
|
|
194
|
+
|
|
195
|
+
window.addEventListener("resize", syncResultsWidth);
|
|
196
|
+
syncResultsWidth();
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
ready(() => {
|
|
200
|
+
const input = query("#search_box");
|
|
201
|
+
if (input) createAutocomplete(input);
|
|
202
|
+
});
|
|
203
|
+
})();
|
|
@@ -1,22 +1,6 @@
|
|
|
1
1
|
<form class="search" method="get" action="<%= abs_url base_path(router.search_prefix) %>">
|
|
2
|
-
<input name="q" type="search" placeholder="Search" id="search_box" size="30" value="<%= h @query %>"
|
|
2
|
+
<input name="q" type="search" placeholder="Search" id="search_box" size="30" value="<%= h @query %>">
|
|
3
3
|
</form>
|
|
4
|
-
<script type="text/javascript" charset="utf-8">
|
|
5
|
-
$(function() {
|
|
6
|
-
$('#search_box').autocomplete($('#search_box').parent().attr('action'), {
|
|
7
|
-
width: 200,
|
|
8
|
-
formatItem: function(item) {
|
|
9
|
-
var values = item[0].split(",");
|
|
10
|
-
return values[0] + (values[1] == '' ? "" : " <small>(" + values[1] + ")</small>");
|
|
11
|
-
}
|
|
12
|
-
}).result(function(event, item) {
|
|
13
|
-
var values = item[0].split(",")
|
|
14
|
-
$('#search_box').val(values[1]);
|
|
15
|
-
location.href = values[3];
|
|
16
|
-
return false;
|
|
17
|
-
});
|
|
18
|
-
});
|
|
19
|
-
</script>
|
|
20
4
|
|
|
21
5
|
<div id="menu">
|
|
22
6
|
<% unless @single_library %>
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
document.getElementById("<%= anchor_for(object) %>").insertAdjacentHTML(
|
|
3
|
+
"afterbegin",
|
|
4
|
+
'<a class="permalink" href="<%= abs_url base_path(router.docs_prefix) %>/<%= urlencode serializer.serialized_path(object) %>">permalink</a>'
|
|
5
|
+
);
|
|
4
6
|
</script>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
<meta
|
|
1
|
+
<meta charset="UTF-8">
|
|
2
2
|
<title>YARD Documentation Server <%= YARD::VERSION %> - Library Listing</title>
|
|
3
|
-
<link rel="stylesheet" href="<%= abs_url('css', 'style.css') %>?<%= mtime('css/style.css') %>" type="text/css" media="screen" charset="utf-8"
|
|
4
|
-
<link rel="stylesheet" href="<%= abs_url('css', 'custom.css') %>?<%= mtime('css/custom.css') %>" type="text/css" media="screen" charset="utf-8"
|
|
3
|
+
<link rel="stylesheet" href="<%= abs_url('css', 'style.css') %>?<%= mtime('css/style.css') %>" type="text/css" media="screen" charset="utf-8">
|
|
4
|
+
<link rel="stylesheet" href="<%= abs_url('css', 'custom.css') %>?<%= mtime('css/custom.css') %>" type="text/css" media="screen" charset="utf-8">
|
|
5
5
|
<style type="text/css" media="screen">
|
|
6
6
|
ul { list-style: circle inside none; padding: 0; }
|
|
7
7
|
li { font-size: 1.2em; line-height: 1.4em; padding: 3px 5px; }
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
<!DOCTYPE html
|
|
2
|
-
|
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
4
3
|
<head>
|
|
5
4
|
<%= erb(:headers) %>
|
|
6
5
|
</head>
|
|
@@ -2,29 +2,35 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
|
-
<link rel="stylesheet" href="<%= abs_url('css', 'style.css') %>?<%= mtime('css/style.css') %>" type="text/css" media="screen" charset="utf-8"
|
|
6
|
-
<link rel="stylesheet" href="<%= abs_url('css', 'custom.css') %>?<%= mtime('css/custom.css') %>" type="text/css" media="screen" charset="utf-8"
|
|
7
|
-
<script type="text/javascript" charset="utf-8" src="<%= abs_url('js', 'jquery.js') %>?<%= mtime('js/jquery.js') %>"></script>
|
|
5
|
+
<link rel="stylesheet" href="<%= abs_url('css', 'style.css') %>?<%= mtime('css/style.css') %>" type="text/css" media="screen" charset="utf-8">
|
|
6
|
+
<link rel="stylesheet" href="<%= abs_url('css', 'custom.css') %>?<%= mtime('css/custom.css') %>" type="text/css" media="screen" charset="utf-8">
|
|
8
7
|
<script type="text/javascript" charset="utf-8">
|
|
9
8
|
function checkPage(process) {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
fetch("<%= router.request.path %>" + (process ? "?process=true" : ""), { cache: "no-store" })
|
|
10
|
+
.then(function(response) {
|
|
11
|
+
if (response.status === 200) window.location.reload();
|
|
12
|
+
});
|
|
13
|
+
setTimeout(checkPage, 2000);
|
|
13
14
|
}
|
|
14
15
|
function setFade() {
|
|
15
16
|
centerMessage();
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
window.addEventListener("resize", centerMessage);
|
|
18
|
+
document.getElementById('fade').style.display = 'block';
|
|
19
|
+
document.getElementById('processing').style.display = 'block';
|
|
19
20
|
}
|
|
20
21
|
function centerMessage() {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
var fade = document.getElementById('fade');
|
|
23
|
+
var processing = document.getElementById('processing');
|
|
24
|
+
var fadeTop = parseInt(window.getComputedStyle(fade).top, 10) || 0;
|
|
25
|
+
fade.style.width = window.innerWidth + 'px';
|
|
26
|
+
fade.style.height = (window.innerHeight - fadeTop) + 'px';
|
|
27
|
+
processing.style.left = (window.innerWidth / 2 - processing.offsetWidth / 2) + 'px';
|
|
28
|
+
processing.style.top = (window.innerHeight / 2 - processing.offsetHeight / 2) + 'px';
|
|
25
29
|
}
|
|
26
|
-
|
|
27
|
-
|
|
30
|
+
document.addEventListener("DOMContentLoaded", function() {
|
|
31
|
+
checkPage(true);
|
|
32
|
+
setFade();
|
|
33
|
+
});
|
|
28
34
|
</script>
|
|
29
35
|
<style type="text/css" media="screen">
|
|
30
36
|
body { overflow: hidden; margin: 12px; display: block; }
|
|
@@ -46,7 +52,7 @@
|
|
|
46
52
|
<strong><%= @library.name %></strong> <% if @library.version %>(<%= @library.version %>)<% end %> is being processed.
|
|
47
53
|
You'll be redirected when the pages are built, it shouldn't take much longer.
|
|
48
54
|
</p>
|
|
49
|
-
<img src="<%= abs_url('images', 'processing.gif') %>?<%= mtime('images/processing.gif') %>" align="center"
|
|
55
|
+
<img src="<%= abs_url('images', 'processing.gif') %>?<%= mtime('images/processing.gif') %>" align="center">
|
|
50
56
|
</div>
|
|
51
57
|
</body>
|
|
52
58
|
</html>
|
data/lib/yard/tags/directives.rb
CHANGED
|
@@ -543,6 +543,7 @@ module YARD
|
|
|
543
543
|
# @since 0.8.0
|
|
544
544
|
class ParseDirective < Directive
|
|
545
545
|
def call
|
|
546
|
+
existing = YARD::Registry.all.lazy.map(&:path).to_set if handler
|
|
546
547
|
lang = tag.types ? tag.types.first.to_sym :
|
|
547
548
|
(handler ? handler.parser.parser_type : :ruby)
|
|
548
549
|
if handler && lang == handler.parser.parser_type
|
|
@@ -555,6 +556,12 @@ module YARD
|
|
|
555
556
|
src_parser.file = handler.parser.file if handler
|
|
556
557
|
src_parser.parse(StringIO.new(tag.text))
|
|
557
558
|
end
|
|
559
|
+
return unless handler
|
|
560
|
+
YARD::Registry.all.each do |obj|
|
|
561
|
+
next if existing.include? obj.path
|
|
562
|
+
obj.files.each { |entry| entry[1] = handler.statement.line if entry[0] == handler.parser.file.to_s }
|
|
563
|
+
obj.source = handler.statement.source
|
|
564
|
+
end
|
|
558
565
|
end
|
|
559
566
|
end
|
|
560
567
|
|