rubycube 0.2.0
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 +7 -0
- data/CHANGES +30 -0
- data/MANIFEST +12 -0
- data/README.md +69 -0
- data/Rakefile +50 -0
- data/certs/djberg96_pub.pem +21 -0
- data/cube.gemspec +23 -0
- data/doc/Bar.html +102 -0
- data/doc/CHANGES.html +159 -0
- data/doc/Foo.html +184 -0
- data/doc/Interface.html +278 -0
- data/doc/Interface/MethodMissing.html +104 -0
- data/doc/Interface/PrivateVisibleMethodMissing.html +102 -0
- data/doc/Interface/PublicVisibleMethodMissing.html +102 -0
- data/doc/MANIFEST.html +114 -0
- data/doc/Module.html +153 -0
- data/doc/MyClass.html +234 -0
- data/doc/MyInterface.html +106 -0
- data/doc/MySubInterface.html +110 -0
- data/doc/Object.html +299 -0
- data/doc/README.html +222 -0
- data/doc/Rakefile.html +148 -0
- data/doc/TC_Interface.html +438 -0
- data/doc/certs/djberg96_pub_pem.html +110 -0
- data/doc/created.rid +13 -0
- data/doc/css/fonts.css +167 -0
- data/doc/css/rdoc.css +590 -0
- data/doc/fonts/Lato-Light.ttf +0 -0
- data/doc/fonts/Lato-LightItalic.ttf +0 -0
- data/doc/fonts/Lato-Regular.ttf +0 -0
- data/doc/fonts/Lato-RegularItalic.ttf +0 -0
- data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
- data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
- data/doc/images/add.png +0 -0
- data/doc/images/arrow_up.png +0 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/delete.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_blue.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/transparent.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +121 -0
- data/doc/interface_gemspec.html +121 -0
- data/doc/js/darkfish.js +161 -0
- data/doc/js/jquery.js +4 -0
- data/doc/js/navigation.js +142 -0
- data/doc/js/navigation.js.gz +0 -0
- data/doc/js/search.js +109 -0
- data/doc/js/search_index.js +1 -0
- data/doc/js/search_index.js.gz +0 -0
- data/doc/js/searcher.js +228 -0
- data/doc/js/searcher.js.gz +0 -0
- data/doc/table_of_contents.html +227 -0
- data/examples/demo.rb +96 -0
- data/lib/cube.rb +2 -0
- data/lib/cube/interfaces.rb +266 -0
- data/lib/cube/traits.rb +75 -0
- data/test/test_interface.rb +111 -0
- metadata +151 -0
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/doc/images/add.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/doc/images/bug.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/doc/images/date.png
ADDED
Binary file
|
Binary file
|
data/doc/images/find.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/doc/images/ruby.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/doc/images/zoom.png
ADDED
Binary file
|
data/doc/index.html
ADDED
@@ -0,0 +1,121 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>RDoc Documentation</title>
|
8
|
+
|
9
|
+
<script type="text/javascript">
|
10
|
+
var rdoc_rel_prefix = "./";
|
11
|
+
</script>
|
12
|
+
|
13
|
+
<script src="./js/jquery.js"></script>
|
14
|
+
<script src="./js/darkfish.js"></script>
|
15
|
+
|
16
|
+
<link href="./css/fonts.css" rel="stylesheet">
|
17
|
+
<link href="./css/rdoc.css" rel="stylesheet">
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
<body id="top" role="document" class="file">
|
22
|
+
<nav role="navigation">
|
23
|
+
<div id="project-navigation">
|
24
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
25
|
+
<h2>
|
26
|
+
<a href="./index.html" rel="home">Home</a>
|
27
|
+
</h2>
|
28
|
+
|
29
|
+
<div id="table-of-contents-navigation">
|
30
|
+
<a href="./table_of_contents.html#pages">Pages</a>
|
31
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
32
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
|
37
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
38
|
+
<form action="#" method="get" accept-charset="utf-8">
|
39
|
+
<div id="search-field-wrapper">
|
40
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
41
|
+
aria-autocomplete="list" aria-controls="search-results"
|
42
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
43
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
44
|
+
</div>
|
45
|
+
|
46
|
+
<ul id="search-results" aria-label="Search Results"
|
47
|
+
aria-busy="false" aria-expanded="false"
|
48
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
49
|
+
</form>
|
50
|
+
</div>
|
51
|
+
|
52
|
+
</div>
|
53
|
+
|
54
|
+
<div id="project-metadata">
|
55
|
+
<div id="fileindex-section" class="nav-section">
|
56
|
+
<h3>Pages</h3>
|
57
|
+
|
58
|
+
<ul class="link-list">
|
59
|
+
|
60
|
+
<li><a href="./CHANGES.html">CHANGES</a>
|
61
|
+
|
62
|
+
<li><a href="./MANIFEST.html">MANIFEST</a>
|
63
|
+
|
64
|
+
<li><a href="./README.html">README</a>
|
65
|
+
|
66
|
+
<li><a href="./Rakefile.html">Rakefile</a>
|
67
|
+
|
68
|
+
<li><a href="./certs/djberg96_pub_pem.html">djberg96_pub.pem</a>
|
69
|
+
|
70
|
+
<li><a href="./interface_gemspec.html">interface.gemspec</a>
|
71
|
+
|
72
|
+
</ul>
|
73
|
+
</div>
|
74
|
+
|
75
|
+
<div id="classindex-section" class="nav-section">
|
76
|
+
<h3>Class and Module Index</h3>
|
77
|
+
|
78
|
+
<ul class="link-list">
|
79
|
+
|
80
|
+
<li><a href="./Bar.html">Bar</a>
|
81
|
+
|
82
|
+
<li><a href="./Foo.html">Foo</a>
|
83
|
+
|
84
|
+
<li><a href="./Interface.html">Interface</a>
|
85
|
+
|
86
|
+
<li><a href="./Interface/MethodMissing.html">Interface::MethodMissing</a>
|
87
|
+
|
88
|
+
<li><a href="./Interface/PrivateVisibleMethodMissing.html">Interface::PrivateVisibleMethodMissing</a>
|
89
|
+
|
90
|
+
<li><a href="./Interface/PublicVisibleMethodMissing.html">Interface::PublicVisibleMethodMissing</a>
|
91
|
+
|
92
|
+
<li><a href="./Module.html">Module</a>
|
93
|
+
|
94
|
+
<li><a href="./MyClass.html">MyClass</a>
|
95
|
+
|
96
|
+
<li><a href="./MyInterface.html">MyInterface</a>
|
97
|
+
|
98
|
+
<li><a href="./MySubInterface.html">MySubInterface</a>
|
99
|
+
|
100
|
+
<li><a href="./Object.html">Object</a>
|
101
|
+
|
102
|
+
<li><a href="./TC_Interface.html">TC_Interface</a>
|
103
|
+
|
104
|
+
</ul>
|
105
|
+
</div>
|
106
|
+
|
107
|
+
</div>
|
108
|
+
</nav>
|
109
|
+
|
110
|
+
<main role="main">
|
111
|
+
<p>This is the API documentation for RDoc Documentation.
|
112
|
+
</main>
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
<footer id="validator-badges" role="contentinfo">
|
117
|
+
<p><a href="http://validator.w3.org/check/referer">Validate</a>
|
118
|
+
<p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
|
119
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
120
|
+
</footer>
|
121
|
+
|
@@ -0,0 +1,121 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>interface.gemspec - RDoc Documentation</title>
|
8
|
+
|
9
|
+
<script type="text/javascript">
|
10
|
+
var rdoc_rel_prefix = "./";
|
11
|
+
</script>
|
12
|
+
|
13
|
+
<script src="./js/jquery.js"></script>
|
14
|
+
<script src="./js/darkfish.js"></script>
|
15
|
+
|
16
|
+
<link href="./css/fonts.css" rel="stylesheet">
|
17
|
+
<link href="./css/rdoc.css" rel="stylesheet">
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
<body id="top" role="document" class="file">
|
22
|
+
<nav role="navigation">
|
23
|
+
<div id="project-navigation">
|
24
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
25
|
+
<h2>
|
26
|
+
<a href="./index.html" rel="home">Home</a>
|
27
|
+
</h2>
|
28
|
+
|
29
|
+
<div id="table-of-contents-navigation">
|
30
|
+
<a href="./table_of_contents.html#pages">Pages</a>
|
31
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
32
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
37
|
+
<form action="#" method="get" accept-charset="utf-8">
|
38
|
+
<div id="search-field-wrapper">
|
39
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
40
|
+
aria-autocomplete="list" aria-controls="search-results"
|
41
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
42
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
43
|
+
</div>
|
44
|
+
|
45
|
+
<ul id="search-results" aria-label="Search Results"
|
46
|
+
aria-busy="false" aria-expanded="false"
|
47
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
48
|
+
</form>
|
49
|
+
</div>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
<div id="project-metadata">
|
56
|
+
<div id="fileindex-section" class="nav-section">
|
57
|
+
<h3>Pages</h3>
|
58
|
+
|
59
|
+
<ul class="link-list">
|
60
|
+
|
61
|
+
<li><a href="./CHANGES.html">CHANGES</a>
|
62
|
+
|
63
|
+
<li><a href="./MANIFEST.html">MANIFEST</a>
|
64
|
+
|
65
|
+
<li><a href="./README.html">README</a>
|
66
|
+
|
67
|
+
<li><a href="./Rakefile.html">Rakefile</a>
|
68
|
+
|
69
|
+
<li><a href="./certs/djberg96_pub_pem.html">djberg96_pub.pem</a>
|
70
|
+
|
71
|
+
<li><a href="./interface_gemspec.html">interface.gemspec</a>
|
72
|
+
|
73
|
+
</ul>
|
74
|
+
</div>
|
75
|
+
|
76
|
+
</div>
|
77
|
+
</nav>
|
78
|
+
|
79
|
+
<main role="main" aria-label="Page interface.gemspec">
|
80
|
+
|
81
|
+
<p>require 'rubygems'</p>
|
82
|
+
|
83
|
+
<p>Gem::Specification.new do |spec|</p>
|
84
|
+
|
85
|
+
<pre class="ruby"><span class="ruby-identifier">spec</span>.<span class="ruby-identifier">name</span> = <span class="ruby-string">'interface'</span>
|
86
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">version</span> = <span class="ruby-string">'1.1.0'</span>
|
87
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">author</span> = <span class="ruby-string">'Aditya Godbole'</span>
|
88
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">license</span> = <span class="ruby-string">'Artistic 2.0'</span>
|
89
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">email</span> = <span class="ruby-string">'code.aa@gdbl.me'</span>
|
90
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">homepage</span> = <span class="ruby-string">'http://github.com/adityagodbole/interface'</span>
|
91
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">summary</span> = <span class="ruby-string">'Interfaces for Ruby'</span>
|
92
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">test_file</span> = <span class="ruby-string">'test/test_interface.rb'</span>
|
93
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">files</span> = <span class="ruby-constant">Dir</span>[<span class="ruby-string">'**/*'</span>].<span class="ruby-identifier">reject</span>{ <span class="ruby-operator">|</span><span class="ruby-identifier">f</span><span class="ruby-operator">|</span> <span class="ruby-identifier">f</span>.<span class="ruby-identifier">include?</span>(<span class="ruby-string">'git'</span>) }
|
94
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">cert_chain</span> = <span class="ruby-constant">Dir</span>[<span class="ruby-string">'certs/*'</span>]
|
95
|
+
|
96
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">extra_rdoc_files</span> = [<span class="ruby-string">'README'</span>, <span class="ruby-string">'CHANGES'</span>, <span class="ruby-string">'MANIFEST'</span>]
|
97
|
+
|
98
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">add_development_dependency</span>(<span class="ruby-string">'test-unit'</span>)
|
99
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">add_development_dependency</span>(<span class="ruby-string">'rake'</span>)
|
100
|
+
|
101
|
+
<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">description</span> = <span class="ruby-value"><<-EOF
|
102
|
+
The interface library implements Interfaces for Ruby.
|
103
|
+
It lets you define a set a methods that must be defined in the
|
104
|
+
including class or module, or an error is raised.
|
105
|
+
|
106
|
+
It also allows you to make runtime checks to check whether an
|
107
|
+
object implements an interface
|
108
|
+
EOF</span>
|
109
|
+
</pre>
|
110
|
+
|
111
|
+
<p>end</p>
|
112
|
+
</main>
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
<footer id="validator-badges" role="contentinfo">
|
117
|
+
<p><a href="http://validator.w3.org/check/referer">Validate</a>
|
118
|
+
<p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
|
119
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
120
|
+
</footer>
|
121
|
+
|
data/doc/js/darkfish.js
ADDED
@@ -0,0 +1,161 @@
|
|
1
|
+
/**
|
2
|
+
*
|
3
|
+
* Darkfish Page Functions
|
4
|
+
* $Id: darkfish.js 53 2009-01-07 02:52:03Z deveiant $
|
5
|
+
*
|
6
|
+
* Author: Michael Granger <mgranger@laika.com>
|
7
|
+
*
|
8
|
+
*/
|
9
|
+
|
10
|
+
/* Provide console simulation for firebug-less environments */
|
11
|
+
if (!("console" in window) || !("firebug" in console)) {
|
12
|
+
var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
|
13
|
+
"group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
|
14
|
+
|
15
|
+
window.console = {};
|
16
|
+
for (var i = 0; i < names.length; ++i)
|
17
|
+
window.console[names[i]] = function() {};
|
18
|
+
};
|
19
|
+
|
20
|
+
|
21
|
+
/**
|
22
|
+
* Unwrap the first element that matches the given @expr@ from the targets and return them.
|
23
|
+
*/
|
24
|
+
$.fn.unwrap = function( expr ) {
|
25
|
+
return this.each( function() {
|
26
|
+
$(this).parents( expr ).eq( 0 ).after( this ).remove();
|
27
|
+
});
|
28
|
+
};
|
29
|
+
|
30
|
+
|
31
|
+
function showSource( e ) {
|
32
|
+
var target = e.target;
|
33
|
+
var codeSections = $(target).
|
34
|
+
parents('.method-detail').
|
35
|
+
find('.method-source-code');
|
36
|
+
|
37
|
+
$(target).
|
38
|
+
parents('.method-detail').
|
39
|
+
find('.method-source-code').
|
40
|
+
slideToggle();
|
41
|
+
};
|
42
|
+
|
43
|
+
function hookSourceViews() {
|
44
|
+
$('.method-heading').click( showSource );
|
45
|
+
};
|
46
|
+
|
47
|
+
function hookSearch() {
|
48
|
+
var input = $('#search-field').eq(0);
|
49
|
+
var result = $('#search-results').eq(0);
|
50
|
+
$(result).show();
|
51
|
+
|
52
|
+
var search_section = $('#search-section').get(0);
|
53
|
+
$(search_section).show();
|
54
|
+
|
55
|
+
var search = new Search(search_data, input, result);
|
56
|
+
|
57
|
+
search.renderItem = function(result) {
|
58
|
+
var li = document.createElement('li');
|
59
|
+
var html = '';
|
60
|
+
|
61
|
+
// TODO add relative path to <script> per-page
|
62
|
+
html += '<p class="search-match"><a href="' + rdoc_rel_prefix + result.path + '">' + this.hlt(result.title);
|
63
|
+
if (result.params)
|
64
|
+
html += '<span class="params">' + result.params + '</span>';
|
65
|
+
html += '</a>';
|
66
|
+
|
67
|
+
|
68
|
+
if (result.namespace)
|
69
|
+
html += '<p class="search-namespace">' + this.hlt(result.namespace);
|
70
|
+
|
71
|
+
if (result.snippet)
|
72
|
+
html += '<div class="search-snippet">' + result.snippet + '</div>';
|
73
|
+
|
74
|
+
li.innerHTML = html;
|
75
|
+
|
76
|
+
return li;
|
77
|
+
}
|
78
|
+
|
79
|
+
search.select = function(result) {
|
80
|
+
var result_element = result.get(0);
|
81
|
+
window.location.href = result_element.firstChild.firstChild.href;
|
82
|
+
}
|
83
|
+
|
84
|
+
search.scrollIntoView = search.scrollInWindow;
|
85
|
+
};
|
86
|
+
|
87
|
+
function highlightTarget( anchor ) {
|
88
|
+
console.debug( "Highlighting target '%s'.", anchor );
|
89
|
+
|
90
|
+
$("a[name]").each( function() {
|
91
|
+
if ( $(this).attr("name") == anchor ) {
|
92
|
+
if ( !$(this).parent().parent().hasClass('target-section') ) {
|
93
|
+
console.debug( "Wrapping the target-section" );
|
94
|
+
$('div.method-detail').unwrap( 'div.target-section' );
|
95
|
+
$(this).parent().wrap( '<div class="target-section"></div>' );
|
96
|
+
} else {
|
97
|
+
console.debug( "Already wrapped." );
|
98
|
+
}
|
99
|
+
}
|
100
|
+
});
|
101
|
+
};
|
102
|
+
|
103
|
+
function highlightLocationTarget() {
|
104
|
+
console.debug( "Location hash: %s", window.location.hash );
|
105
|
+
if ( ! window.location.hash || window.location.hash.length == 0 ) return;
|
106
|
+
|
107
|
+
var anchor = window.location.hash.substring(1);
|
108
|
+
console.debug( "Found anchor: %s; matching %s", anchor, "a[name=" + anchor + "]" );
|
109
|
+
|
110
|
+
highlightTarget( anchor );
|
111
|
+
};
|
112
|
+
|
113
|
+
function highlightClickTarget( event ) {
|
114
|
+
console.debug( "Highlighting click target for event %o", event.target );
|
115
|
+
try {
|
116
|
+
var anchor = $(event.target).attr( 'href' ).substring(1);
|
117
|
+
console.debug( "Found target anchor: %s", anchor );
|
118
|
+
highlightTarget( anchor );
|
119
|
+
} catch ( err ) {
|
120
|
+
console.error( "Exception while highlighting: %o", err );
|
121
|
+
};
|
122
|
+
};
|
123
|
+
|
124
|
+
function loadAsync(path, success) {
|
125
|
+
$.ajax({
|
126
|
+
url: rdoc_rel_prefix + path,
|
127
|
+
dataType: 'script',
|
128
|
+
success: success,
|
129
|
+
cache: true
|
130
|
+
});
|
131
|
+
};
|
132
|
+
|
133
|
+
$(document).ready( function() {
|
134
|
+
hookSourceViews();
|
135
|
+
highlightLocationTarget();
|
136
|
+
$('ul.link-list a').bind( "click", highlightClickTarget );
|
137
|
+
|
138
|
+
var search_scripts_loaded = {
|
139
|
+
navigation_loaded: false,
|
140
|
+
search_loaded: false,
|
141
|
+
search_index_loaded: false,
|
142
|
+
searcher_loaded: false,
|
143
|
+
}
|
144
|
+
|
145
|
+
var search_success_function = function(variable) {
|
146
|
+
return (function (data, status, xhr) {
|
147
|
+
search_scripts_loaded[variable] = true;
|
148
|
+
|
149
|
+
if (search_scripts_loaded['navigation_loaded'] == true &&
|
150
|
+
search_scripts_loaded['search_loaded'] == true &&
|
151
|
+
search_scripts_loaded['search_index_loaded'] == true &&
|
152
|
+
search_scripts_loaded['searcher_loaded'] == true)
|
153
|
+
hookSearch();
|
154
|
+
});
|
155
|
+
}
|
156
|
+
|
157
|
+
loadAsync('js/navigation.js', search_success_function('navigation_loaded'));
|
158
|
+
loadAsync('js/search.js', search_success_function('search_loaded'));
|
159
|
+
loadAsync('js/search_index.js', search_success_function('search_index_loaded'));
|
160
|
+
loadAsync('js/searcher.js', search_success_function('searcher_loaded'));
|
161
|
+
});
|