appscale-tools 1.6.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.
- data/LICENSE +37 -0
- data/README +17 -0
- data/bin/appscale-add-keypair +15 -0
- data/bin/appscale-describe-instances +16 -0
- data/bin/appscale-remove-app +13 -0
- data/bin/appscale-reset-pwd +13 -0
- data/bin/appscale-run-instances +15 -0
- data/bin/appscale-terminate-instances +14 -0
- data/bin/appscale-upload-app +13 -0
- data/doc/AdvancedNode.html +163 -0
- data/doc/AppControllerClient.html +831 -0
- data/doc/AppEngineConfigException.html +165 -0
- data/doc/AppScaleException.html +165 -0
- data/doc/AppScaleTools.html +768 -0
- data/doc/BadCommandLineArgException.html +166 -0
- data/doc/BadConfigurationException.html +166 -0
- data/doc/CommonFunctions.html +2559 -0
- data/doc/EncryptionHelper.html +332 -0
- data/doc/GodInterface.html +443 -0
- data/doc/InfrastructureException.html +166 -0
- data/doc/Node.html +470 -0
- data/doc/NodeLayout.html +1297 -0
- data/doc/Object.html +539 -0
- data/doc/ParseArgs.html +268 -0
- data/doc/RemoteLogging.html +268 -0
- data/doc/SimpleNode.html +163 -0
- data/doc/UsageText.html +1204 -0
- data/doc/UserAppClient.html +993 -0
- data/doc/VMTools.html +1365 -0
- data/doc/bin/appscale-add-keypair.html +56 -0
- data/doc/bin/appscale-describe-instances.html +56 -0
- data/doc/bin/appscale-remove-app.html +56 -0
- data/doc/bin/appscale-reset-pwd.html +56 -0
- data/doc/bin/appscale-run-instances.html +56 -0
- data/doc/bin/appscale-terminate-instances.html +56 -0
- data/doc/bin/appscale-upload-app.html +56 -0
- data/doc/created.rid +21 -0
- data/doc/images/add.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 +116 -0
- data/doc/js/darkfish.js +153 -0
- data/doc/js/jquery.js +18 -0
- data/doc/js/navigation.js +142 -0
- data/doc/js/quicksearch.js +114 -0
- data/doc/js/search.js +94 -0
- data/doc/js/search_index.js +1 -0
- data/doc/js/searcher.js +228 -0
- data/doc/js/thickbox-compressed.js +10 -0
- data/doc/lib/app_controller_client_rb.html +60 -0
- data/doc/lib/appscale_tools_rb.html +88 -0
- data/doc/lib/common_functions_rb.html +78 -0
- data/doc/lib/custom_exceptions_rb.html +54 -0
- data/doc/lib/encryption_helper_rb.html +60 -0
- data/doc/lib/godinterface_rb.html +52 -0
- data/doc/lib/node_layout_rb.html +55 -0
- data/doc/lib/parse_args_rb.html +58 -0
- data/doc/lib/remote_log_rb.html +58 -0
- data/doc/lib/sshcopyid.html +174 -0
- data/doc/lib/usage_text_rb.html +58 -0
- data/doc/lib/user_app_client_rb.html +62 -0
- data/doc/lib/vm_tools_rb.html +62 -0
- data/doc/table_of_contents.html +496 -0
- data/lib/app_controller_client.rb +181 -0
- data/lib/appscale_tools.rb +403 -0
- data/lib/common_functions.rb +1467 -0
- data/lib/custom_exceptions.rb +25 -0
- data/lib/encryption_helper.rb +86 -0
- data/lib/godinterface.rb +152 -0
- data/lib/node_layout.rb +665 -0
- data/lib/parse_args.rb +415 -0
- data/lib/remote_log.rb +46 -0
- data/lib/sshcopyid +65 -0
- data/lib/usage_text.rb +144 -0
- data/lib/user_app_client.rb +245 -0
- data/lib/vm_tools.rb +549 -0
- data/test/tc_app_controller_client.rb +10 -0
- data/test/tc_appscale_add_keypair.rb +44 -0
- data/test/tc_appscale_describe_instances.rb +69 -0
- data/test/tc_appscale_remove_app.rb +128 -0
- data/test/tc_appscale_reset_pwd.rb +156 -0
- data/test/tc_appscale_run_instances.rb +48 -0
- data/test/tc_appscale_terminate_instances.rb +104 -0
- data/test/tc_appscale_upload_app.rb +166 -0
- data/test/tc_common_functions.rb +56 -0
- data/test/tc_encryption_helper.rb +10 -0
- data/test/tc_god_interface.rb +10 -0
- data/test/tc_node_layout.rb +93 -0
- data/test/tc_parse_args.rb +160 -0
- data/test/tc_user_app_client.rb +10 -0
- data/test/tc_vm_tools.rb +10 -0
- data/test/ts_all.rb +20 -0
- metadata +211 -0
data/doc/SimpleNode.html
ADDED
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
|
|
3
|
+
<html>
|
|
4
|
+
<head>
|
|
5
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
|
6
|
+
|
|
7
|
+
<title>class SimpleNode - RDoc Documentation</title>
|
|
8
|
+
|
|
9
|
+
<link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
|
|
10
|
+
|
|
11
|
+
<script type="text/javascript">
|
|
12
|
+
var rdoc_rel_prefix = "./";
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
|
|
16
|
+
<script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
|
|
17
|
+
<script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
|
|
18
|
+
<script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
|
|
19
|
+
<script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
|
|
20
|
+
<script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
<body id="top" class="class">
|
|
24
|
+
<nav id="metadata">
|
|
25
|
+
<nav id="home-section" class="section">
|
|
26
|
+
<h3 class="section-header">
|
|
27
|
+
<a href="./index.html">Home</a>
|
|
28
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
|
29
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
|
30
|
+
</h3>
|
|
31
|
+
</nav>
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
<nav id="search-section" class="section project-section" class="initially-hidden">
|
|
35
|
+
<form action="#" method="get" accept-charset="utf-8">
|
|
36
|
+
<h3 class="section-header">
|
|
37
|
+
<input type="text" name="search" placeholder="Search" id="search-field"
|
|
38
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
|
39
|
+
</h3>
|
|
40
|
+
</form>
|
|
41
|
+
|
|
42
|
+
<ul id="search-results" class="initially-hidden"></ul>
|
|
43
|
+
</nav>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<div id="file-metadata">
|
|
47
|
+
<nav id="file-list-section" class="section">
|
|
48
|
+
<h3 class="section-header">Defined In</h3>
|
|
49
|
+
<ul>
|
|
50
|
+
<li>lib/node_layout.rb
|
|
51
|
+
</ul>
|
|
52
|
+
</nav>
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
</div>
|
|
56
|
+
|
|
57
|
+
<div id="class-metadata">
|
|
58
|
+
|
|
59
|
+
<nav id="parent-class-section" class="section">
|
|
60
|
+
<h3 class="section-header">Parent</h3>
|
|
61
|
+
|
|
62
|
+
<p class="link"><a href="Node.html">Node</a>
|
|
63
|
+
|
|
64
|
+
</nav>
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
</div>
|
|
69
|
+
|
|
70
|
+
<div id="project-metadata">
|
|
71
|
+
<nav id="fileindex-section" class="section project-section">
|
|
72
|
+
<h3 class="section-header">Pages</h3>
|
|
73
|
+
|
|
74
|
+
<ul>
|
|
75
|
+
|
|
76
|
+
<li class="file"><a href="./lib/sshcopyid.html">sshcopyid</a>
|
|
77
|
+
|
|
78
|
+
</ul>
|
|
79
|
+
</nav>
|
|
80
|
+
|
|
81
|
+
<nav id="classindex-section" class="section project-section">
|
|
82
|
+
<h3 class="section-header">Class and Module Index</h3>
|
|
83
|
+
|
|
84
|
+
<ul class="link-list">
|
|
85
|
+
|
|
86
|
+
<li><a href="./AdvancedNode.html">AdvancedNode</a>
|
|
87
|
+
|
|
88
|
+
<li><a href="./AppControllerClient.html">AppControllerClient</a>
|
|
89
|
+
|
|
90
|
+
<li><a href="./AppEngineConfigException.html">AppEngineConfigException</a>
|
|
91
|
+
|
|
92
|
+
<li><a href="./AppScaleException.html">AppScaleException</a>
|
|
93
|
+
|
|
94
|
+
<li><a href="./AppScaleTools.html">AppScaleTools</a>
|
|
95
|
+
|
|
96
|
+
<li><a href="./BadCommandLineArgException.html">BadCommandLineArgException</a>
|
|
97
|
+
|
|
98
|
+
<li><a href="./BadConfigurationException.html">BadConfigurationException</a>
|
|
99
|
+
|
|
100
|
+
<li><a href="./CommonFunctions.html">CommonFunctions</a>
|
|
101
|
+
|
|
102
|
+
<li><a href="./EncryptionHelper.html">EncryptionHelper</a>
|
|
103
|
+
|
|
104
|
+
<li><a href="./GodInterface.html">GodInterface</a>
|
|
105
|
+
|
|
106
|
+
<li><a href="./InfrastructureException.html">InfrastructureException</a>
|
|
107
|
+
|
|
108
|
+
<li><a href="./Node.html">Node</a>
|
|
109
|
+
|
|
110
|
+
<li><a href="./NodeLayout.html">NodeLayout</a>
|
|
111
|
+
|
|
112
|
+
<li><a href="./Object.html">Object</a>
|
|
113
|
+
|
|
114
|
+
<li><a href="./ParseArgs.html">ParseArgs</a>
|
|
115
|
+
|
|
116
|
+
<li><a href="./RemoteLogging.html">RemoteLogging</a>
|
|
117
|
+
|
|
118
|
+
<li><a href="./SimpleNode.html">SimpleNode</a>
|
|
119
|
+
|
|
120
|
+
<li><a href="./UsageText.html">UsageText</a>
|
|
121
|
+
|
|
122
|
+
<li><a href="./UserAppClient.html">UserAppClient</a>
|
|
123
|
+
|
|
124
|
+
<li><a href="./VMTools.html">VMTools</a>
|
|
125
|
+
|
|
126
|
+
</ul>
|
|
127
|
+
</nav>
|
|
128
|
+
|
|
129
|
+
</div>
|
|
130
|
+
</nav>
|
|
131
|
+
|
|
132
|
+
<div id="documentation">
|
|
133
|
+
<h1 class="class">class SimpleNode</h1>
|
|
134
|
+
|
|
135
|
+
<div id="description" class="description">
|
|
136
|
+
|
|
137
|
+
</div><!-- description -->
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
<!-- Methods -->
|
|
152
|
+
|
|
153
|
+
</section><!-- 5Buntitled-5D -->
|
|
154
|
+
|
|
155
|
+
</div><!-- documentation -->
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
<footer id="validator-badges">
|
|
159
|
+
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
|
160
|
+
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
|
|
161
|
+
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
|
162
|
+
</footer>
|
|
163
|
+
|
data/doc/UsageText.html
ADDED
|
@@ -0,0 +1,1204 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
|
|
3
|
+
<html>
|
|
4
|
+
<head>
|
|
5
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
|
6
|
+
|
|
7
|
+
<title>module UsageText - RDoc Documentation</title>
|
|
8
|
+
|
|
9
|
+
<link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
|
|
10
|
+
|
|
11
|
+
<script type="text/javascript">
|
|
12
|
+
var rdoc_rel_prefix = "./";
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
|
|
16
|
+
<script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
|
|
17
|
+
<script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
|
|
18
|
+
<script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
|
|
19
|
+
<script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
|
|
20
|
+
<script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
<body id="top" class="module">
|
|
24
|
+
<nav id="metadata">
|
|
25
|
+
<nav id="home-section" class="section">
|
|
26
|
+
<h3 class="section-header">
|
|
27
|
+
<a href="./index.html">Home</a>
|
|
28
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
|
29
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
|
30
|
+
</h3>
|
|
31
|
+
</nav>
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
<nav id="search-section" class="section project-section" class="initially-hidden">
|
|
35
|
+
<form action="#" method="get" accept-charset="utf-8">
|
|
36
|
+
<h3 class="section-header">
|
|
37
|
+
<input type="text" name="search" placeholder="Search" id="search-field"
|
|
38
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
|
39
|
+
</h3>
|
|
40
|
+
</form>
|
|
41
|
+
|
|
42
|
+
<ul id="search-results" class="initially-hidden"></ul>
|
|
43
|
+
</nav>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<div id="file-metadata">
|
|
47
|
+
<nav id="file-list-section" class="section">
|
|
48
|
+
<h3 class="section-header">Defined In</h3>
|
|
49
|
+
<ul>
|
|
50
|
+
<li>lib/usage_text.rb
|
|
51
|
+
</ul>
|
|
52
|
+
</nav>
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
</div>
|
|
56
|
+
|
|
57
|
+
<div id="class-metadata">
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
<!-- Method Quickref -->
|
|
62
|
+
<nav id="method-list-section" class="section">
|
|
63
|
+
<h3 class="section-header">Methods</h3>
|
|
64
|
+
|
|
65
|
+
<ul class="link-list">
|
|
66
|
+
|
|
67
|
+
<li><a href="#method-c-appengine">::appengine</a>
|
|
68
|
+
|
|
69
|
+
<li><a href="#method-c-appname">::appname</a>
|
|
70
|
+
|
|
71
|
+
<li><a href="#method-c-auto">::auto</a>
|
|
72
|
+
|
|
73
|
+
<li><a href="#method-c-backup_neptune_info">::backup_neptune_info</a>
|
|
74
|
+
|
|
75
|
+
<li><a href="#method-c-confirm">::confirm</a>
|
|
76
|
+
|
|
77
|
+
<li><a href="#method-c-email">::email</a>
|
|
78
|
+
|
|
79
|
+
<li><a href="#method-c-file">::file</a>
|
|
80
|
+
|
|
81
|
+
<li><a href="#method-c-force">::force</a>
|
|
82
|
+
|
|
83
|
+
<li><a href="#method-c-get_usage">::get_usage</a>
|
|
84
|
+
|
|
85
|
+
<li><a href="#method-c-group">::group</a>
|
|
86
|
+
|
|
87
|
+
<li><a href="#method-c-h">::h</a>
|
|
88
|
+
|
|
89
|
+
<li><a href="#method-c-help">::help</a>
|
|
90
|
+
|
|
91
|
+
<li><a href="#method-c-iaas">::iaas</a>
|
|
92
|
+
|
|
93
|
+
<li><a href="#method-c-infrastructure">::infrastructure</a>
|
|
94
|
+
|
|
95
|
+
<li><a href="#method-c-instance_type">::instance_type</a>
|
|
96
|
+
|
|
97
|
+
<li><a href="#method-c-ips">::ips</a>
|
|
98
|
+
|
|
99
|
+
<li><a href="#method-c-keyname">::keyname</a>
|
|
100
|
+
|
|
101
|
+
<li><a href="#method-c-machine">::machine</a>
|
|
102
|
+
|
|
103
|
+
<li><a href="#method-c-max">::max</a>
|
|
104
|
+
|
|
105
|
+
<li><a href="#method-c-min">::min</a>
|
|
106
|
+
|
|
107
|
+
<li><a href="#method-c-n">::n</a>
|
|
108
|
+
|
|
109
|
+
<li><a href="#method-c-r">::r</a>
|
|
110
|
+
|
|
111
|
+
<li><a href="#method-c-restore_from_tar">::restore_from_tar</a>
|
|
112
|
+
|
|
113
|
+
<li><a href="#method-c-restore_neptune_info">::restore_neptune_info</a>
|
|
114
|
+
|
|
115
|
+
<li><a href="#method-c-scp">::scp</a>
|
|
116
|
+
|
|
117
|
+
<li><a href="#method-c-table">::table</a>
|
|
118
|
+
|
|
119
|
+
<li><a href="#method-c-test">::test</a>
|
|
120
|
+
|
|
121
|
+
<li><a href="#method-c-usage">::usage</a>
|
|
122
|
+
|
|
123
|
+
<li><a href="#method-c-v">::v</a>
|
|
124
|
+
|
|
125
|
+
<li><a href="#method-c-verbose">::verbose</a>
|
|
126
|
+
|
|
127
|
+
<li><a href="#method-c-version">::version</a>
|
|
128
|
+
|
|
129
|
+
<li><a href="#method-c-w">::w</a>
|
|
130
|
+
|
|
131
|
+
</ul>
|
|
132
|
+
</nav>
|
|
133
|
+
|
|
134
|
+
</div>
|
|
135
|
+
|
|
136
|
+
<div id="project-metadata">
|
|
137
|
+
<nav id="fileindex-section" class="section project-section">
|
|
138
|
+
<h3 class="section-header">Pages</h3>
|
|
139
|
+
|
|
140
|
+
<ul>
|
|
141
|
+
|
|
142
|
+
<li class="file"><a href="./lib/sshcopyid.html">sshcopyid</a>
|
|
143
|
+
|
|
144
|
+
</ul>
|
|
145
|
+
</nav>
|
|
146
|
+
|
|
147
|
+
<nav id="classindex-section" class="section project-section">
|
|
148
|
+
<h3 class="section-header">Class and Module Index</h3>
|
|
149
|
+
|
|
150
|
+
<ul class="link-list">
|
|
151
|
+
|
|
152
|
+
<li><a href="./AdvancedNode.html">AdvancedNode</a>
|
|
153
|
+
|
|
154
|
+
<li><a href="./AppControllerClient.html">AppControllerClient</a>
|
|
155
|
+
|
|
156
|
+
<li><a href="./AppEngineConfigException.html">AppEngineConfigException</a>
|
|
157
|
+
|
|
158
|
+
<li><a href="./AppScaleException.html">AppScaleException</a>
|
|
159
|
+
|
|
160
|
+
<li><a href="./AppScaleTools.html">AppScaleTools</a>
|
|
161
|
+
|
|
162
|
+
<li><a href="./BadCommandLineArgException.html">BadCommandLineArgException</a>
|
|
163
|
+
|
|
164
|
+
<li><a href="./BadConfigurationException.html">BadConfigurationException</a>
|
|
165
|
+
|
|
166
|
+
<li><a href="./CommonFunctions.html">CommonFunctions</a>
|
|
167
|
+
|
|
168
|
+
<li><a href="./EncryptionHelper.html">EncryptionHelper</a>
|
|
169
|
+
|
|
170
|
+
<li><a href="./GodInterface.html">GodInterface</a>
|
|
171
|
+
|
|
172
|
+
<li><a href="./InfrastructureException.html">InfrastructureException</a>
|
|
173
|
+
|
|
174
|
+
<li><a href="./Node.html">Node</a>
|
|
175
|
+
|
|
176
|
+
<li><a href="./NodeLayout.html">NodeLayout</a>
|
|
177
|
+
|
|
178
|
+
<li><a href="./Object.html">Object</a>
|
|
179
|
+
|
|
180
|
+
<li><a href="./ParseArgs.html">ParseArgs</a>
|
|
181
|
+
|
|
182
|
+
<li><a href="./RemoteLogging.html">RemoteLogging</a>
|
|
183
|
+
|
|
184
|
+
<li><a href="./SimpleNode.html">SimpleNode</a>
|
|
185
|
+
|
|
186
|
+
<li><a href="./UsageText.html">UsageText</a>
|
|
187
|
+
|
|
188
|
+
<li><a href="./UserAppClient.html">UserAppClient</a>
|
|
189
|
+
|
|
190
|
+
<li><a href="./VMTools.html">VMTools</a>
|
|
191
|
+
|
|
192
|
+
</ul>
|
|
193
|
+
</nav>
|
|
194
|
+
|
|
195
|
+
</div>
|
|
196
|
+
</nav>
|
|
197
|
+
|
|
198
|
+
<div id="documentation">
|
|
199
|
+
<h1 class="module">module UsageText</h1>
|
|
200
|
+
|
|
201
|
+
<div id="description" class="description">
|
|
202
|
+
|
|
203
|
+
</div><!-- description -->
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
<!-- Methods -->
|
|
218
|
+
|
|
219
|
+
<section id="public-class-5Buntitled-5D-method-details" class="method-section section">
|
|
220
|
+
<h3 class="section-header">Public Class Methods</h3>
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
<div id="method-c-appengine" class="method-detail ">
|
|
224
|
+
|
|
225
|
+
<div class="method-heading">
|
|
226
|
+
<span class="method-name">appengine</span><span
|
|
227
|
+
class="method-args">()</span>
|
|
228
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
229
|
+
</div>
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
<div class="method-description">
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
<div class="method-source-code" id="appengine-source">
|
|
239
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 20</span>
|
|
240
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">appengine</span>
|
|
241
|
+
<span class="ruby-string">"--appengine NUM: The number of application servers that should be spawned up for each Google App Engine app."</span>
|
|
242
|
+
<span class="ruby-keyword">end</span></pre>
|
|
243
|
+
</div><!-- appengine-source -->
|
|
244
|
+
|
|
245
|
+
</div>
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
</div><!-- appengine-method -->
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
<div id="method-c-appname" class="method-detail ">
|
|
254
|
+
|
|
255
|
+
<div class="method-heading">
|
|
256
|
+
<span class="method-name">appname</span><span
|
|
257
|
+
class="method-args">()</span>
|
|
258
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
259
|
+
</div>
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
<div class="method-description">
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
<div class="method-source-code" id="appname-source">
|
|
269
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 24</span>
|
|
270
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">appname</span>
|
|
271
|
+
<span class="ruby-string">"--appname APPNAME: The name of the application to remove."</span>
|
|
272
|
+
<span class="ruby-keyword">end</span></pre>
|
|
273
|
+
</div><!-- appname-source -->
|
|
274
|
+
|
|
275
|
+
</div>
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
</div><!-- appname-method -->
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
<div id="method-c-auto" class="method-detail ">
|
|
284
|
+
|
|
285
|
+
<div class="method-heading">
|
|
286
|
+
<span class="method-name">auto</span><span
|
|
287
|
+
class="method-args">()</span>
|
|
288
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
289
|
+
</div>
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
<div class="method-description">
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
<div class="method-source-code" id="auto-source">
|
|
299
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 28</span>
|
|
300
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">auto</span>
|
|
301
|
+
<span class="ruby-string">"--auto: Requests the SSH login password from the user once, and then automatically reuses the password on each machine."</span>
|
|
302
|
+
<span class="ruby-keyword">end</span></pre>
|
|
303
|
+
</div><!-- auto-source -->
|
|
304
|
+
|
|
305
|
+
</div>
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
</div><!-- auto-method -->
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
<div id="method-c-backup_neptune_info" class="method-detail ">
|
|
314
|
+
|
|
315
|
+
<div class="method-heading">
|
|
316
|
+
<span class="method-name">backup_neptune_info</span><span
|
|
317
|
+
class="method-args">()</span>
|
|
318
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
319
|
+
</div>
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
<div class="method-description">
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
<div class="method-source-code" id="backup_neptune_info-source">
|
|
329
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 32</span>
|
|
330
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">backup_neptune_info</span>
|
|
331
|
+
<span class="ruby-string">"--backup_neptune_info FILE: Backs up Neptune job metadata to FILE."</span>
|
|
332
|
+
<span class="ruby-keyword">end</span></pre>
|
|
333
|
+
</div><!-- backup_neptune_info-source -->
|
|
334
|
+
|
|
335
|
+
</div>
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
</div><!-- backup_neptune_info-method -->
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
<div id="method-c-confirm" class="method-detail ">
|
|
344
|
+
|
|
345
|
+
<div class="method-heading">
|
|
346
|
+
<span class="method-name">confirm</span><span
|
|
347
|
+
class="method-args">()</span>
|
|
348
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
349
|
+
</div>
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
<div class="method-description">
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
<div class="method-source-code" id="confirm-source">
|
|
359
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 36</span>
|
|
360
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">confirm</span>
|
|
361
|
+
<span class="ruby-string">"--confirm: Skips the confirmation step when removing an application."</span>
|
|
362
|
+
<span class="ruby-keyword">end</span></pre>
|
|
363
|
+
</div><!-- confirm-source -->
|
|
364
|
+
|
|
365
|
+
</div>
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
</div><!-- confirm-method -->
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
<div id="method-c-email" class="method-detail ">
|
|
374
|
+
|
|
375
|
+
<div class="method-heading">
|
|
376
|
+
<span class="method-name">email</span><span
|
|
377
|
+
class="method-args">()</span>
|
|
378
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
379
|
+
</div>
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
<div class="method-description">
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
<div class="method-source-code" id="email-source">
|
|
389
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 40</span>
|
|
390
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">email</span>
|
|
391
|
+
<span class="ruby-string">"--email EMAIL: Uses EMAIL as the app administrator for the given application instead of prompting for it."</span>
|
|
392
|
+
<span class="ruby-keyword">end</span></pre>
|
|
393
|
+
</div><!-- email-source -->
|
|
394
|
+
|
|
395
|
+
</div>
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
</div><!-- email-method -->
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
<div id="method-c-file" class="method-detail ">
|
|
404
|
+
|
|
405
|
+
<div class="method-heading">
|
|
406
|
+
<span class="method-name">file</span><span
|
|
407
|
+
class="method-args">()</span>
|
|
408
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
409
|
+
</div>
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
<div class="method-description">
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
<div class="method-source-code" id="file-source">
|
|
419
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 44</span>
|
|
420
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">file</span>
|
|
421
|
+
<span class="ruby-string">"--file FILE: The app to upload. Must be a directory or file tar'ed up via 'tar -czf app.tar.gz .' in the application's top level directory."</span>
|
|
422
|
+
<span class="ruby-keyword">end</span></pre>
|
|
423
|
+
</div><!-- file-source -->
|
|
424
|
+
|
|
425
|
+
</div>
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
</div><!-- file-method -->
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
<div id="method-c-force" class="method-detail ">
|
|
434
|
+
|
|
435
|
+
<div class="method-heading">
|
|
436
|
+
<span class="method-name">force</span><span
|
|
437
|
+
class="method-args">()</span>
|
|
438
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
439
|
+
</div>
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
<div class="method-description">
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
<div class="method-source-code" id="force-source">
|
|
449
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 48</span>
|
|
450
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">force</span>
|
|
451
|
+
<span class="ruby-string">"--force: If the given keyname is already in use, remove it from the system and add a new key with the same name."</span>
|
|
452
|
+
<span class="ruby-keyword">end</span></pre>
|
|
453
|
+
</div><!-- force-source -->
|
|
454
|
+
|
|
455
|
+
</div>
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
</div><!-- force-method -->
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
<div id="method-c-get_usage" class="method-detail ">
|
|
464
|
+
|
|
465
|
+
<div class="method-heading">
|
|
466
|
+
<span class="method-name">get_usage</span><span
|
|
467
|
+
class="method-args">(file_name, flags)</span>
|
|
468
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
469
|
+
</div>
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
<div class="method-description">
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
<div class="method-source-code" id="get_usage-source">
|
|
479
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 7</span>
|
|
480
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">get_usage</span>(<span class="ruby-identifier">file_name</span>, <span class="ruby-identifier">flags</span>)
|
|
481
|
+
<span class="ruby-identifier">preamble</span> = <span class="ruby-node">"#{AS_VERSION}\n\nUsage: #{file_name} OPTIONS\n\nFlags:"</span>
|
|
482
|
+
<span class="ruby-identifier">flag_text</span> = <span class="ruby-string">""</span>
|
|
483
|
+
<span class="ruby-identifier">flags</span>.<span class="ruby-identifier">each</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">flag</span><span class="ruby-operator">|</span>
|
|
484
|
+
<span class="ruby-keyword">if</span> <span class="ruby-operator">!</span><span class="ruby-keyword">self</span>.<span class="ruby-identifier">respond_to?</span>(<span class="ruby-identifier">flag</span>.<span class="ruby-identifier">to_sym</span>)
|
|
485
|
+
<span class="ruby-identifier">raise</span> <span class="ruby-constant">BadCommandLineArgException</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">flag</span>)
|
|
486
|
+
<span class="ruby-keyword">end</span>
|
|
487
|
+
|
|
488
|
+
<span class="ruby-identifier">flag_text</span> <span class="ruby-operator">+=</span> <span class="ruby-string">"\n\t"</span> <span class="ruby-operator">+</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">send</span>(<span class="ruby-identifier">flag</span>.<span class="ruby-identifier">to_sym</span>)
|
|
489
|
+
}
|
|
490
|
+
<span class="ruby-keyword">return</span> <span class="ruby-identifier">preamble</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">flag_text</span> <span class="ruby-operator">+</span> <span class="ruby-string">"\n\n"</span>
|
|
491
|
+
<span class="ruby-keyword">end</span></pre>
|
|
492
|
+
</div><!-- get_usage-source -->
|
|
493
|
+
|
|
494
|
+
</div>
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
</div><!-- get_usage-method -->
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
<div id="method-c-group" class="method-detail ">
|
|
503
|
+
|
|
504
|
+
<div class="method-heading">
|
|
505
|
+
<span class="method-name">group</span><span
|
|
506
|
+
class="method-args">()</span>
|
|
507
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
508
|
+
</div>
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
<div class="method-description">
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
<div class="method-source-code" id="group-source">
|
|
518
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 52</span>
|
|
519
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">group</span>
|
|
520
|
+
<span class="ruby-string">"--group: The name of the security group to create when running over a cloud infrastructure."</span>
|
|
521
|
+
<span class="ruby-keyword">end</span></pre>
|
|
522
|
+
</div><!-- group-source -->
|
|
523
|
+
|
|
524
|
+
</div>
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
</div><!-- group-method -->
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
<div id="method-c-h" class="method-detail ">
|
|
533
|
+
|
|
534
|
+
<div class="method-heading">
|
|
535
|
+
<span class="method-name">h</span><span
|
|
536
|
+
class="method-args">()</span>
|
|
537
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
538
|
+
</div>
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
<div class="method-description">
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
<div class="method-source-code" id="h-source">
|
|
548
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 56</span>
|
|
549
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">h</span>
|
|
550
|
+
<span class="ruby-string">"-h: Displays this usage message."</span>
|
|
551
|
+
<span class="ruby-keyword">end</span></pre>
|
|
552
|
+
</div><!-- h-source -->
|
|
553
|
+
|
|
554
|
+
</div>
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
</div><!-- h-method -->
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
<div id="method-c-help" class="method-detail ">
|
|
563
|
+
|
|
564
|
+
<div class="method-heading">
|
|
565
|
+
<span class="method-name">help</span><span
|
|
566
|
+
class="method-args">()</span>
|
|
567
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
568
|
+
</div>
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
<div class="method-description">
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
<div class="method-source-code" id="help-source">
|
|
578
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 60</span>
|
|
579
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">help</span>
|
|
580
|
+
<span class="ruby-string">"--help: Displays this usage message."</span>
|
|
581
|
+
<span class="ruby-keyword">end</span></pre>
|
|
582
|
+
</div><!-- help-source -->
|
|
583
|
+
|
|
584
|
+
</div>
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
</div><!-- help-method -->
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
<div id="method-c-iaas" class="method-detail ">
|
|
593
|
+
|
|
594
|
+
<div class="method-heading">
|
|
595
|
+
<span class="method-name">iaas</span><span
|
|
596
|
+
class="method-args">()</span>
|
|
597
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
598
|
+
</div>
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
<div class="method-description">
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
<div class="method-source-code" id="iaas-source">
|
|
608
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 68</span>
|
|
609
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">iaas</span>
|
|
610
|
+
<span class="ruby-string">"--iaas INFRASTRUCTURE: Same as --infrastructure, but if no value is provided, defaults to euca."</span>
|
|
611
|
+
<span class="ruby-keyword">end</span></pre>
|
|
612
|
+
</div><!-- iaas-source -->
|
|
613
|
+
|
|
614
|
+
</div>
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
</div><!-- iaas-method -->
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
<div id="method-c-infrastructure" class="method-detail ">
|
|
623
|
+
|
|
624
|
+
<div class="method-heading">
|
|
625
|
+
<span class="method-name">infrastructure</span><span
|
|
626
|
+
class="method-args">()</span>
|
|
627
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
628
|
+
</div>
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
<div class="method-description">
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
<div class="method-source-code" id="infrastructure-source">
|
|
638
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 72</span>
|
|
639
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">infrastructure</span>
|
|
640
|
+
<span class="ruby-node">"--infrastructure INFRASTRUCTURE: The cloud infrastructure that AppScale should utilize. Acceptable values are: #{VALID_CLOUD_TYPES.join(', ')}."</span>
|
|
641
|
+
<span class="ruby-keyword">end</span></pre>
|
|
642
|
+
</div><!-- infrastructure-source -->
|
|
643
|
+
|
|
644
|
+
</div>
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
</div><!-- infrastructure-method -->
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
<div id="method-c-instance_type" class="method-detail ">
|
|
653
|
+
|
|
654
|
+
<div class="method-heading">
|
|
655
|
+
<span class="method-name">instance_type</span><span
|
|
656
|
+
class="method-args">()</span>
|
|
657
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
658
|
+
</div>
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
<div class="method-description">
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
<div class="method-source-code" id="instance_type-source">
|
|
668
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 64</span>
|
|
669
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">instance_type</span>
|
|
670
|
+
<span class="ruby-string">"--instance_type: The instance type to use if using Eucalyptus. Defaults to m1.large if not provided. Supported values are m1.large, m1.xlarge, and c1.xlarge."</span>
|
|
671
|
+
<span class="ruby-keyword">end</span></pre>
|
|
672
|
+
</div><!-- instance_type-source -->
|
|
673
|
+
|
|
674
|
+
</div>
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
</div><!-- instance_type-method -->
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
<div id="method-c-ips" class="method-detail ">
|
|
683
|
+
|
|
684
|
+
<div class="method-heading">
|
|
685
|
+
<span class="method-name">ips</span><span
|
|
686
|
+
class="method-args">()</span>
|
|
687
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
688
|
+
</div>
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
<div class="method-description">
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
<div class="method-source-code" id="ips-source">
|
|
698
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 76</span>
|
|
699
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">ips</span>
|
|
700
|
+
<span class="ruby-string">"--ips: The YAML file containing the IPs (and optionally, the service placement) of the machines to use."</span>
|
|
701
|
+
<span class="ruby-keyword">end</span></pre>
|
|
702
|
+
</div><!-- ips-source -->
|
|
703
|
+
|
|
704
|
+
</div>
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
</div><!-- ips-method -->
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
<div id="method-c-keyname" class="method-detail ">
|
|
713
|
+
|
|
714
|
+
<div class="method-heading">
|
|
715
|
+
<span class="method-name">keyname</span><span
|
|
716
|
+
class="method-args">()</span>
|
|
717
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
718
|
+
</div>
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
<div class="method-description">
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
<div class="method-source-code" id="keyname-source">
|
|
728
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 80</span>
|
|
729
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">keyname</span>
|
|
730
|
+
<span class="ruby-string">"--keyname KEYNAME: The name of the SSH key to use for Eucalyptus. Two AppScale instances can be run concurrently in one cloud if they have unique names, and they can conflict if they have the same name."</span>
|
|
731
|
+
<span class="ruby-keyword">end</span></pre>
|
|
732
|
+
</div><!-- keyname-source -->
|
|
733
|
+
|
|
734
|
+
</div>
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
</div><!-- keyname-method -->
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
<div id="method-c-machine" class="method-detail ">
|
|
743
|
+
|
|
744
|
+
<div class="method-heading">
|
|
745
|
+
<span class="method-name">machine</span><span
|
|
746
|
+
class="method-args">()</span>
|
|
747
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
748
|
+
</div>
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
<div class="method-description">
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
<div class="method-source-code" id="machine-source">
|
|
758
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 84</span>
|
|
759
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">machine</span>
|
|
760
|
+
<span class="ruby-string">"--machine IMAGE_ID: The machine image to use in Amazon EC2 or Eucalyptus. Supercedes the contents of the environment variable APPSCALE_MACHINE, which is otherwise used if this flag is not present."</span>
|
|
761
|
+
<span class="ruby-keyword">end</span></pre>
|
|
762
|
+
</div><!-- machine-source -->
|
|
763
|
+
|
|
764
|
+
</div>
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
</div><!-- machine-method -->
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
<div id="method-c-max" class="method-detail ">
|
|
773
|
+
|
|
774
|
+
<div class="method-heading">
|
|
775
|
+
<span class="method-name">max</span><span
|
|
776
|
+
class="method-args">()</span>
|
|
777
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
778
|
+
</div>
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
<div class="method-description">
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
<div class="method-source-code" id="max-source">
|
|
788
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 92</span>
|
|
789
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">max</span>
|
|
790
|
+
<span class="ruby-string">"--max NUM: The maximum number of VMs to spawn for AppScale in cloud deployments."</span>
|
|
791
|
+
<span class="ruby-keyword">end</span></pre>
|
|
792
|
+
</div><!-- max-source -->
|
|
793
|
+
|
|
794
|
+
</div>
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
</div><!-- max-method -->
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
<div id="method-c-min" class="method-detail ">
|
|
803
|
+
|
|
804
|
+
<div class="method-heading">
|
|
805
|
+
<span class="method-name">min</span><span
|
|
806
|
+
class="method-args">()</span>
|
|
807
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
808
|
+
</div>
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
<div class="method-description">
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
<div class="method-source-code" id="min-source">
|
|
818
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 88</span>
|
|
819
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">min</span>
|
|
820
|
+
<span class="ruby-string">"--min NUM: The minimum number of VMs to spawn for AppScale in cloud deployments."</span>
|
|
821
|
+
<span class="ruby-keyword">end</span></pre>
|
|
822
|
+
</div><!-- min-source -->
|
|
823
|
+
|
|
824
|
+
</div>
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
</div><!-- min-method -->
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
<div id="method-c-n" class="method-detail ">
|
|
833
|
+
|
|
834
|
+
<div class="method-heading">
|
|
835
|
+
<span class="method-name">n</span><span
|
|
836
|
+
class="method-args">()</span>
|
|
837
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
838
|
+
</div>
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
<div class="method-description">
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
<div class="method-source-code" id="n-source">
|
|
848
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 96</span>
|
|
849
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">n</span>
|
|
850
|
+
<span class="ruby-string">"-n NUM: The replication factor that should be used with the underlying database."</span>
|
|
851
|
+
<span class="ruby-keyword">end</span></pre>
|
|
852
|
+
</div><!-- n-source -->
|
|
853
|
+
|
|
854
|
+
</div>
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
</div><!-- n-method -->
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
<div id="method-c-r" class="method-detail ">
|
|
863
|
+
|
|
864
|
+
<div class="method-heading">
|
|
865
|
+
<span class="method-name">r</span><span
|
|
866
|
+
class="method-args">()</span>
|
|
867
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
868
|
+
</div>
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
<div class="method-description">
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
<div class="method-source-code" id="r-source">
|
|
878
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 100</span>
|
|
879
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">r</span>
|
|
880
|
+
<span class="ruby-string">"-r NUM: The number of database nodes needed for a read to succeed. Not supported by all databases."</span>
|
|
881
|
+
<span class="ruby-keyword">end</span></pre>
|
|
882
|
+
</div><!-- r-source -->
|
|
883
|
+
|
|
884
|
+
</div>
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
</div><!-- r-method -->
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
<div id="method-c-restore_from_tar" class="method-detail ">
|
|
893
|
+
|
|
894
|
+
<div class="method-heading">
|
|
895
|
+
<span class="method-name">restore_from_tar</span><span
|
|
896
|
+
class="method-args">()</span>
|
|
897
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
898
|
+
</div>
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
<div class="method-description">
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
<div class="method-source-code" id="restore_from_tar-source">
|
|
908
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 104</span>
|
|
909
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">restore_from_tar</span>
|
|
910
|
+
<span class="ruby-string">"--restore_from_tar LOCATION: The location of the tar file that can be used to back up the state of a previously running AppScale deployment."</span>
|
|
911
|
+
<span class="ruby-keyword">end</span></pre>
|
|
912
|
+
</div><!-- restore_from_tar-source -->
|
|
913
|
+
|
|
914
|
+
</div>
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
</div><!-- restore_from_tar-method -->
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
<div id="method-c-restore_neptune_info" class="method-detail ">
|
|
923
|
+
|
|
924
|
+
<div class="method-heading">
|
|
925
|
+
<span class="method-name">restore_neptune_info</span><span
|
|
926
|
+
class="method-args">()</span>
|
|
927
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
928
|
+
</div>
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
<div class="method-description">
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
<div class="method-source-code" id="restore_neptune_info-source">
|
|
938
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 108</span>
|
|
939
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">restore_neptune_info</span>
|
|
940
|
+
<span class="ruby-string">"--restore_neptune_info LOCATION: The location of a previously saved Neptune job metadata file, to be used when starting a new Appscale deployment."</span>
|
|
941
|
+
<span class="ruby-keyword">end</span></pre>
|
|
942
|
+
</div><!-- restore_neptune_info-source -->
|
|
943
|
+
|
|
944
|
+
</div>
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
|
|
948
|
+
|
|
949
|
+
</div><!-- restore_neptune_info-method -->
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
<div id="method-c-scp" class="method-detail ">
|
|
953
|
+
|
|
954
|
+
<div class="method-heading">
|
|
955
|
+
<span class="method-name">scp</span><span
|
|
956
|
+
class="method-args">()</span>
|
|
957
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
958
|
+
</div>
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
<div class="method-description">
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
<div class="method-source-code" id="scp-source">
|
|
968
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 112</span>
|
|
969
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">scp</span>
|
|
970
|
+
<span class="ruby-string">"--scp LOCATION: A location on the local file system where a copy of the AppScale main branch is located. This flag instructs the tools to rsync this branch over to all nodes used. Useful for testing and debugging. If no value is provided, ~/appscale is used."</span>
|
|
971
|
+
<span class="ruby-keyword">end</span></pre>
|
|
972
|
+
</div><!-- scp-source -->
|
|
973
|
+
|
|
974
|
+
</div>
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
|
|
978
|
+
|
|
979
|
+
</div><!-- scp-method -->
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
<div id="method-c-table" class="method-detail ">
|
|
983
|
+
|
|
984
|
+
<div class="method-heading">
|
|
985
|
+
<span class="method-name">table</span><span
|
|
986
|
+
class="method-args">()</span>
|
|
987
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
988
|
+
</div>
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
<div class="method-description">
|
|
992
|
+
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
|
|
996
|
+
|
|
997
|
+
<div class="method-source-code" id="table-source">
|
|
998
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 116</span>
|
|
999
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">table</span>
|
|
1000
|
+
<span class="ruby-node">"--table DATABASE: The database to use with AppScale. Acceptable values are: #{VALID_TABLE_TYPES.join(', ')} (default is #{DEFAULT_DATASTORE})."</span>
|
|
1001
|
+
<span class="ruby-keyword">end</span></pre>
|
|
1002
|
+
</div><!-- table-source -->
|
|
1003
|
+
|
|
1004
|
+
</div>
|
|
1005
|
+
|
|
1006
|
+
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
</div><!-- table-method -->
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
<div id="method-c-test" class="method-detail ">
|
|
1013
|
+
|
|
1014
|
+
<div class="method-heading">
|
|
1015
|
+
<span class="method-name">test</span><span
|
|
1016
|
+
class="method-args">()</span>
|
|
1017
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
1018
|
+
</div>
|
|
1019
|
+
|
|
1020
|
+
|
|
1021
|
+
<div class="method-description">
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
<div class="method-source-code" id="test-source">
|
|
1028
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 120</span>
|
|
1029
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">test</span>
|
|
1030
|
+
<span class="ruby-string">"--test: Uses a default username and password when uploading an application. Intended for testing only."</span>
|
|
1031
|
+
<span class="ruby-keyword">end</span></pre>
|
|
1032
|
+
</div><!-- test-source -->
|
|
1033
|
+
|
|
1034
|
+
</div>
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
</div><!-- test-method -->
|
|
1040
|
+
|
|
1041
|
+
|
|
1042
|
+
<div id="method-c-usage" class="method-detail ">
|
|
1043
|
+
|
|
1044
|
+
<div class="method-heading">
|
|
1045
|
+
<span class="method-name">usage</span><span
|
|
1046
|
+
class="method-args">()</span>
|
|
1047
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
1048
|
+
</div>
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
<div class="method-description">
|
|
1052
|
+
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
|
|
1057
|
+
<div class="method-source-code" id="usage-source">
|
|
1058
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 124</span>
|
|
1059
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">usage</span>
|
|
1060
|
+
<span class="ruby-string">"--usage: Displays this usage message."</span>
|
|
1061
|
+
<span class="ruby-keyword">end</span></pre>
|
|
1062
|
+
</div><!-- usage-source -->
|
|
1063
|
+
|
|
1064
|
+
</div>
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
</div><!-- usage-method -->
|
|
1070
|
+
|
|
1071
|
+
|
|
1072
|
+
<div id="method-c-v" class="method-detail ">
|
|
1073
|
+
|
|
1074
|
+
<div class="method-heading">
|
|
1075
|
+
<span class="method-name">v</span><span
|
|
1076
|
+
class="method-args">()</span>
|
|
1077
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
1078
|
+
</div>
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
<div class="method-description">
|
|
1082
|
+
|
|
1083
|
+
|
|
1084
|
+
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
<div class="method-source-code" id="v-source">
|
|
1088
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 128</span>
|
|
1089
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">v</span>
|
|
1090
|
+
<span class="ruby-string">"-v: Displays extra output. Useful for debugging."</span>
|
|
1091
|
+
<span class="ruby-keyword">end</span></pre>
|
|
1092
|
+
</div><!-- v-source -->
|
|
1093
|
+
|
|
1094
|
+
</div>
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
</div><!-- v-method -->
|
|
1100
|
+
|
|
1101
|
+
|
|
1102
|
+
<div id="method-c-verbose" class="method-detail ">
|
|
1103
|
+
|
|
1104
|
+
<div class="method-heading">
|
|
1105
|
+
<span class="method-name">verbose</span><span
|
|
1106
|
+
class="method-args">()</span>
|
|
1107
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
1108
|
+
</div>
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
<div class="method-description">
|
|
1112
|
+
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
<div class="method-source-code" id="verbose-source">
|
|
1118
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 132</span>
|
|
1119
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">verbose</span>
|
|
1120
|
+
<span class="ruby-string">"--verbose: Displays extra output. Useful for debugging."</span>
|
|
1121
|
+
<span class="ruby-keyword">end</span></pre>
|
|
1122
|
+
</div><!-- verbose-source -->
|
|
1123
|
+
|
|
1124
|
+
</div>
|
|
1125
|
+
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
|
|
1129
|
+
</div><!-- verbose-method -->
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
<div id="method-c-version" class="method-detail ">
|
|
1133
|
+
|
|
1134
|
+
<div class="method-heading">
|
|
1135
|
+
<span class="method-name">version</span><span
|
|
1136
|
+
class="method-args">()</span>
|
|
1137
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
1138
|
+
</div>
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
<div class="method-description">
|
|
1142
|
+
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
<div class="method-source-code" id="version-source">
|
|
1148
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 136</span>
|
|
1149
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">version</span>
|
|
1150
|
+
<span class="ruby-string">"--version: Displays the version of the AppScale tools used."</span>
|
|
1151
|
+
<span class="ruby-keyword">end</span></pre>
|
|
1152
|
+
</div><!-- version-source -->
|
|
1153
|
+
|
|
1154
|
+
</div>
|
|
1155
|
+
|
|
1156
|
+
|
|
1157
|
+
|
|
1158
|
+
|
|
1159
|
+
</div><!-- version-method -->
|
|
1160
|
+
|
|
1161
|
+
|
|
1162
|
+
<div id="method-c-w" class="method-detail ">
|
|
1163
|
+
|
|
1164
|
+
<div class="method-heading">
|
|
1165
|
+
<span class="method-name">w</span><span
|
|
1166
|
+
class="method-args">()</span>
|
|
1167
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
1168
|
+
</div>
|
|
1169
|
+
|
|
1170
|
+
|
|
1171
|
+
<div class="method-description">
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
|
|
1176
|
+
|
|
1177
|
+
<div class="method-source-code" id="w-source">
|
|
1178
|
+
<pre><span class="ruby-comment"># File lib/usage_text.rb, line 140</span>
|
|
1179
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">w</span>
|
|
1180
|
+
<span class="ruby-string">"-w NUM: The number of database nodes needed for a write to succeed. Not supported by all databases."</span>
|
|
1181
|
+
<span class="ruby-keyword">end</span></pre>
|
|
1182
|
+
</div><!-- w-source -->
|
|
1183
|
+
|
|
1184
|
+
</div>
|
|
1185
|
+
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
|
|
1189
|
+
</div><!-- w-method -->
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
</section><!-- public-class-method-details -->
|
|
1193
|
+
|
|
1194
|
+
</section><!-- 5Buntitled-5D -->
|
|
1195
|
+
|
|
1196
|
+
</div><!-- documentation -->
|
|
1197
|
+
|
|
1198
|
+
|
|
1199
|
+
<footer id="validator-badges">
|
|
1200
|
+
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
|
1201
|
+
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
|
|
1202
|
+
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
|
1203
|
+
</footer>
|
|
1204
|
+
|