table_setter 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +20 -0
- data/LICENSE +20 -0
- data/README +10 -0
- data/Rakefile +66 -0
- data/TODO +3 -0
- data/VERSION.yml +5 -0
- data/bin/table-setter +5 -0
- data/doc/TableFu/Formatting.html +178 -0
- data/doc/TableSetter/App.html +176 -0
- data/doc/TableSetter/Command.html +376 -0
- data/doc/TableSetter/Table.html +1813 -0
- data/doc/TableSetter.html +292 -0
- data/doc/_index.html +146 -0
- data/doc/class_list.html +36 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +50 -0
- data/doc/css/style.css +268 -0
- data/doc/file.README.html +68 -0
- data/doc/file_list.html +38 -0
- data/doc/frames.html +13 -0
- data/doc/index.html +68 -0
- data/doc/js/app.js +99 -0
- data/doc/js/full_list.js +106 -0
- data/doc/js/jquery.js +19 -0
- data/doc/method_list.html +291 -0
- data/doc/top-level-namespace.html +85 -0
- data/documentation/css/dawn.css +121 -0
- data/documentation/css/styles.css +63 -0
- data/documentation/images/folder.png +0 -0
- data/documentation/images/key.png +0 -0
- data/documentation/images/proplogo.png +0 -0
- data/documentation/images/publish.png +0 -0
- data/documentation/images/text-x-generic.png +0 -0
- data/documentation/index.html.erb +221 -0
- data/documentation/tables/example/index.html +4074 -0
- data/documentation/tables/example_faceted/index.html +17239 -0
- data/documentation/tables/example_formatted/index.html +861 -0
- data/documentation/tables/example_local/1/index.html +6084 -0
- data/documentation/tables/example_local/10/index.html +6084 -0
- data/documentation/tables/example_local/11/index.html +6084 -0
- data/documentation/tables/example_local/12/index.html +6084 -0
- data/documentation/tables/example_local/13/index.html +6084 -0
- data/documentation/tables/example_local/14/index.html +6084 -0
- data/documentation/tables/example_local/15/index.html +6084 -0
- data/documentation/tables/example_local/16/index.html +6084 -0
- data/documentation/tables/example_local/17/index.html +6084 -0
- data/documentation/tables/example_local/18/index.html +6084 -0
- data/documentation/tables/example_local/19/index.html +6084 -0
- data/documentation/tables/example_local/2/index.html +6084 -0
- data/documentation/tables/example_local/20/index.html +6084 -0
- data/documentation/tables/example_local/21/index.html +6084 -0
- data/documentation/tables/example_local/22/index.html +6084 -0
- data/documentation/tables/example_local/23/index.html +6084 -0
- data/documentation/tables/example_local/24/index.html +1404 -0
- data/documentation/tables/example_local/3/index.html +6084 -0
- data/documentation/tables/example_local/4/index.html +6084 -0
- data/documentation/tables/example_local/5/index.html +6084 -0
- data/documentation/tables/example_local/6/index.html +6084 -0
- data/documentation/tables/example_local/7/index.html +6084 -0
- data/documentation/tables/example_local/8/index.html +6084 -0
- data/documentation/tables/example_local/9/index.html +6084 -0
- data/documentation/tables/example_local/index.html +6084 -0
- data/documentation/tables/favicon.ico +0 -0
- data/documentation/tables/images/th_arrow_asc.gif +0 -0
- data/documentation/tables/images/th_arrow_desc.gif +0 -0
- data/documentation/tables/index.html +48 -0
- data/documentation/tables/javascripts/application.js +32 -0
- data/documentation/tables/javascripts/jquery.tablesorter.js +852 -0
- data/documentation/tables/javascripts/jquery.tablesorter.multipagefilter.js +111 -0
- data/documentation/tables/javascripts/jquery.tablesorter.pager.js +183 -0
- data/documentation/tables/stylesheets/stylesheet.css +67 -0
- data/index.html +238 -0
- data/lib/table_setter/app.rb +54 -0
- data/lib/table_setter/command.rb +139 -0
- data/lib/table_setter/table.rb +226 -0
- data/lib/table_setter.rb +32 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +11 -0
- data/spec/table-setter-app_spec.rb +24 -0
- data/spec/table-setter_spec.rb +179 -0
- data/table_setter.gemspec +171 -0
- data/template/config.ru +33 -0
- data/template/public/favicon.ico +0 -0
- data/template/public/images/th_arrow_asc.gif +0 -0
- data/template/public/images/th_arrow_desc.gif +0 -0
- data/template/public/javascripts/application.js +32 -0
- data/template/public/javascripts/jquery.tablesorter.js +852 -0
- data/template/public/javascripts/jquery.tablesorter.multipagefilter.js +111 -0
- data/template/public/javascripts/jquery.tablesorter.pager.js +183 -0
- data/template/public/stylesheets/stylesheet.css +74 -0
- data/template/tables/example.yml +21 -0
- data/template/tables/example_faceted.yml +27 -0
- data/template/tables/example_formatted.csv +1 -0
- data/template/tables/example_formatted.yml +27 -0
- data/template/tables/example_local.csv +5806 -0
- data/template/tables/example_local.yml +27 -0
- data/template/views/404.erb +4 -0
- data/template/views/500.erb +4 -0
- data/template/views/index.erb +7 -0
- data/template/views/layout.erb +34 -0
- data/template/views/table.erb +78 -0
- metadata +240 -0
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta name="Content-Type" content="text/html; charset=UTF-8" />
|
|
6
|
+
<title>Module: TableSetter</title>
|
|
7
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
|
9
|
+
|
|
10
|
+
<script type="text/javascript" charset="utf-8">
|
|
11
|
+
relpath = '';
|
|
12
|
+
if (relpath != '') relpath += '/';
|
|
13
|
+
</script>
|
|
14
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
16
|
+
|
|
17
|
+
</head>
|
|
18
|
+
<body>
|
|
19
|
+
<script type="text/javascript" charset="utf-8">
|
|
20
|
+
if (window.top.frames.main) document.body.className = 'frames';
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<div id="header">
|
|
24
|
+
<div id="menu">
|
|
25
|
+
|
|
26
|
+
<a href="_index.html">Index (T)</a> »
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
<span class="title">TableSetter</span>
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
<div id="search">
|
|
36
|
+
<a id="class_list_link" href="#">Class List</a>
|
|
37
|
+
<a id="method_list_link" href="#">Method List</a>
|
|
38
|
+
<a id ="file_list_link" href="#">File List</a>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<div class="clear"></div>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
<iframe id="search_frame"></iframe>
|
|
45
|
+
|
|
46
|
+
<div id="content"><h1>Module: TableSetter
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
</h1>
|
|
50
|
+
|
|
51
|
+
<dl class="box">
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
<dt class="r1 last">Defined in:</dt>
|
|
60
|
+
<dd class="r1 last">lib/table_setter.rb<span class="defines">,<br />
|
|
61
|
+
lib/table_setter/app.rb,<br /> lib/table_setter/table.rb,<br /> lib/table_setter/command.rb</span>
|
|
62
|
+
</dd>
|
|
63
|
+
|
|
64
|
+
</dl>
|
|
65
|
+
<div class="clear"></div>
|
|
66
|
+
|
|
67
|
+
<h2>Defined Under Namespace</h2>
|
|
68
|
+
<p class="children">
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
<strong class="classes">Classes:</strong> <a href="TableSetter/App.html" title="TableSetter::App (class)">App</a>, <a href="TableSetter/Command.html" title="TableSetter::Command (class)">Command</a>, <a href="TableSetter/Table.html" title="TableSetter::Table (class)">Table</a>
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
</p>
|
|
77
|
+
|
|
78
|
+
<h2>Constant Summary</h2>
|
|
79
|
+
|
|
80
|
+
<dl class="constants">
|
|
81
|
+
|
|
82
|
+
<dt id="ROOT-constant" class="">ROOT =
|
|
83
|
+
<span class="summary_desc"></span>
|
|
84
|
+
</dt>
|
|
85
|
+
<dd><pre class="code"><span class='File constant id'>File</span><span class='dot token'>.</span><span class='expand_path identifier id'>expand_path</span><span class='lparen token'>(</span><span class='File constant id'>File</span><span class='dot token'>.</span><span class='dirname identifier id'>dirname</span><span class='lparen token'>(</span><span class='__FILE__ __file__ kw'>__FILE__</span><span class='rparen token'>)</span> <span class='plus op'>+</span> <span class='string val'>"/.."</span><span class='rparen token'>)</span> <span class='unless unless_mod kw'>unless</span> <span class='defined? defined kw'>defined?</span> <span class='ROOT constant id'>ROOT</span>
|
|
86
|
+
</pre></dd>
|
|
87
|
+
|
|
88
|
+
</dl>
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
<h2>Class Attribute Summary</h2>
|
|
93
|
+
<ul class="summary">
|
|
94
|
+
|
|
95
|
+
<li class="public ">
|
|
96
|
+
<span class="summary_signature">
|
|
97
|
+
|
|
98
|
+
<a href="#config_path-class_method" title="config_path (class method)">+ (Object) <strong>config_path</strong> </a>
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
</span>
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
<span class="note title readonly">readonly</span>
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
<span class="summary_desc">
|
|
114
|
+
Returns the value of attribute config_path.
|
|
115
|
+
|
|
116
|
+
</span>
|
|
117
|
+
|
|
118
|
+
</li>
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
</ul>
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
<h2>Class Method Summary</h2>
|
|
125
|
+
|
|
126
|
+
<ul class="summary">
|
|
127
|
+
|
|
128
|
+
<li class="public ">
|
|
129
|
+
<span class="summary_signature">
|
|
130
|
+
|
|
131
|
+
<a href="#configure-class_method" title="configure (class method)">+ (Object) <strong>configure</strong>(path) </a>
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
</span>
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
<span class="summary_desc"></span>
|
|
144
|
+
|
|
145
|
+
</li>
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
<li class="public ">
|
|
149
|
+
<span class="summary_signature">
|
|
150
|
+
|
|
151
|
+
<a href="#table_path-class_method" title="table_path (class method)">+ (Object) <strong>table_path</strong> </a>
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
</span>
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
<span class="summary_desc"></span>
|
|
164
|
+
|
|
165
|
+
</li>
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
</ul>
|
|
169
|
+
|
|
170
|
+
<div id="class_attr_details" class="attr_details">
|
|
171
|
+
<h2>Class Attribute Details</h2>
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
<span id=""></span>
|
|
175
|
+
<span id="config_path-class_method"></span>
|
|
176
|
+
<div class="method_details first">
|
|
177
|
+
<p class="signature first" id="config_path-class_method">
|
|
178
|
+
|
|
179
|
+
+ (<tt>Object</tt>) <strong>config_path</strong> <span class="extras">(readonly)</span>
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
</p><div class="docstring">
|
|
184
|
+
<div class="discussion">
|
|
185
|
+
<p>
|
|
186
|
+
Returns the value of attribute config_path
|
|
187
|
+
</p>
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
</div>
|
|
191
|
+
</div>
|
|
192
|
+
<div class="tags">
|
|
193
|
+
|
|
194
|
+
</div><table class="source_code">
|
|
195
|
+
<tr>
|
|
196
|
+
<td>
|
|
197
|
+
<pre class="lines">
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
21
|
|
201
|
+
22
|
|
202
|
+
23</pre>
|
|
203
|
+
</td>
|
|
204
|
+
<td>
|
|
205
|
+
<pre class="code"><span class="info file"># File 'lib/table_setter.rb', line 21</span>
|
|
206
|
+
|
|
207
|
+
<span class='def def kw'>def</span> <span class='config_path identifier id'>config_path</span>
|
|
208
|
+
<span class='@config_path ivar id'>@config_path</span>
|
|
209
|
+
<span class='end end kw'>end</span>
|
|
210
|
+
</pre>
|
|
211
|
+
</td>
|
|
212
|
+
</tr>
|
|
213
|
+
</table>
|
|
214
|
+
</div>
|
|
215
|
+
|
|
216
|
+
</div>
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
<div id="class_method_details" class="method_details_list">
|
|
220
|
+
<h2>Class Method Details</h2>
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
<div class="method_details first">
|
|
224
|
+
<p class="signature first" id="configure-class_method">
|
|
225
|
+
|
|
226
|
+
+ (<tt>Object</tt>) <strong>configure</strong>(path)
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
</p><table class="source_code">
|
|
231
|
+
<tr>
|
|
232
|
+
<td>
|
|
233
|
+
<pre class="lines">
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
23
|
|
237
|
+
24
|
|
238
|
+
25</pre>
|
|
239
|
+
</td>
|
|
240
|
+
<td>
|
|
241
|
+
<pre class="code"><span class="info file"># File 'lib/table_setter.rb', line 23</span>
|
|
242
|
+
|
|
243
|
+
<span class='def def kw'>def</span> <span class='configure identifier id'>configure</span><span class='lparen token'>(</span><span class='path identifier id'>path</span><span class='rparen token'>)</span>
|
|
244
|
+
<span class='@config_path ivar id'>@config_path</span> <span class='assign token'>=</span> <span class='File constant id'>File</span><span class='dot token'>.</span><span class='expand_path identifier id'>expand_path</span><span class='lparen token'>(</span><span class='path identifier id'>path</span><span class='rparen token'>)</span>
|
|
245
|
+
<span class='end end kw'>end</span>
|
|
246
|
+
</pre>
|
|
247
|
+
</td>
|
|
248
|
+
</tr>
|
|
249
|
+
</table>
|
|
250
|
+
</div>
|
|
251
|
+
|
|
252
|
+
<div class="method_details ">
|
|
253
|
+
<p class="signature " id="table_path-class_method">
|
|
254
|
+
|
|
255
|
+
+ (<tt>Object</tt>) <strong>table_path</strong>
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
</p><table class="source_code">
|
|
260
|
+
<tr>
|
|
261
|
+
<td>
|
|
262
|
+
<pre class="lines">
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
27
|
|
266
|
+
28
|
|
267
|
+
29</pre>
|
|
268
|
+
</td>
|
|
269
|
+
<td>
|
|
270
|
+
<pre class="code"><span class="info file"># File 'lib/table_setter.rb', line 27</span>
|
|
271
|
+
|
|
272
|
+
<span class='def def kw'>def</span> <span class='table_path identifier id'>table_path</span>
|
|
273
|
+
<span class='@config_path ivar id'>@config_path</span> <span class='plus op'>+</span> <span class='string val'>"/tables/"</span>
|
|
274
|
+
<span class='end end kw'>end</span>
|
|
275
|
+
</pre>
|
|
276
|
+
</td>
|
|
277
|
+
</tr>
|
|
278
|
+
</table>
|
|
279
|
+
</div>
|
|
280
|
+
|
|
281
|
+
</div>
|
|
282
|
+
|
|
283
|
+
</div>
|
|
284
|
+
|
|
285
|
+
<div id="footer">
|
|
286
|
+
Generated on Tue Mar 9 17:18:08 2010 by
|
|
287
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool">yard</a>
|
|
288
|
+
0.5.3 (ruby-1.8.7).
|
|
289
|
+
</div>
|
|
290
|
+
|
|
291
|
+
</body>
|
|
292
|
+
</html>
|
data/doc/_index.html
ADDED
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta name="Content-Type" content="text/html; charset=UTF-8" />
|
|
6
|
+
<title>Documentation by YARD 0.5.3</title>
|
|
7
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
|
9
|
+
|
|
10
|
+
<script type="text/javascript" charset="utf-8">
|
|
11
|
+
relpath = '';
|
|
12
|
+
if (relpath != '') relpath += '/';
|
|
13
|
+
</script>
|
|
14
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
16
|
+
|
|
17
|
+
</head>
|
|
18
|
+
<body>
|
|
19
|
+
<script type="text/javascript" charset="utf-8">
|
|
20
|
+
if (window.top.frames.main) document.body.className = 'frames';
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<div id="header">
|
|
24
|
+
<div id="menu">
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
<span class="title"></span>
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
|
31
|
+
</div>
|
|
32
|
+
|
|
33
|
+
<div id="search">
|
|
34
|
+
<a id="class_list_link" href="#">Class List</a>
|
|
35
|
+
<a id="method_list_link" href="#">Method List</a>
|
|
36
|
+
<a id ="file_list_link" href="#">File List</a>
|
|
37
|
+
</div>
|
|
38
|
+
|
|
39
|
+
<div class="clear"></div>
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
<iframe id="search_frame"></iframe>
|
|
43
|
+
|
|
44
|
+
<div id="content"><div id="listing">
|
|
45
|
+
<h1 class="noborder title">Documentation by YARD 0.5.3</h1>
|
|
46
|
+
<h1 class="alphaindex">Alphabetic Index</h1>
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
<h2>File Listing</h2>
|
|
50
|
+
<ul id="files">
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
<li class="r1"><a href="index.html" title="README">README</a></li>
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
</ul>
|
|
57
|
+
|
|
58
|
+
<div class="clear"></div>
|
|
59
|
+
|
|
60
|
+
<h2>Namespace Listing A-Z</h2>
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<table>
|
|
66
|
+
<tr>
|
|
67
|
+
<td valign='top' width="33%">
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
<ul id="alpha_A" class="alpha">
|
|
71
|
+
<li class="letter">A</li>
|
|
72
|
+
<ul>
|
|
73
|
+
|
|
74
|
+
<li>
|
|
75
|
+
<a href="TableSetter/App.html" title="TableSetter::App (class)">App</a>
|
|
76
|
+
|
|
77
|
+
<small>(TableSetter)</small>
|
|
78
|
+
|
|
79
|
+
</li>
|
|
80
|
+
|
|
81
|
+
</ul>
|
|
82
|
+
</ul>
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
<ul id="alpha_C" class="alpha">
|
|
86
|
+
<li class="letter">C</li>
|
|
87
|
+
<ul>
|
|
88
|
+
|
|
89
|
+
<li>
|
|
90
|
+
<a href="TableSetter/Command.html" title="TableSetter::Command (class)">Command</a>
|
|
91
|
+
|
|
92
|
+
<small>(TableSetter)</small>
|
|
93
|
+
|
|
94
|
+
</li>
|
|
95
|
+
|
|
96
|
+
</ul>
|
|
97
|
+
</ul>
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
<ul id="alpha_F" class="alpha">
|
|
101
|
+
<li class="letter">F</li>
|
|
102
|
+
<ul>
|
|
103
|
+
|
|
104
|
+
<li>
|
|
105
|
+
<a href="TableFu/Formatting.html" title="TableFu::Formatting (class)">Formatting</a>
|
|
106
|
+
|
|
107
|
+
<small>(TableFu)</small>
|
|
108
|
+
|
|
109
|
+
</li>
|
|
110
|
+
|
|
111
|
+
</ul>
|
|
112
|
+
</ul>
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
<ul id="alpha_T" class="alpha">
|
|
116
|
+
<li class="letter">T</li>
|
|
117
|
+
<ul>
|
|
118
|
+
|
|
119
|
+
<li>
|
|
120
|
+
<a href="TableSetter/Table.html" title="TableSetter::Table (class)">Table</a>
|
|
121
|
+
|
|
122
|
+
<small>(TableSetter)</small>
|
|
123
|
+
|
|
124
|
+
</li>
|
|
125
|
+
|
|
126
|
+
<li>
|
|
127
|
+
<a href="TableSetter.html" title="TableSetter (module)">TableSetter</a>
|
|
128
|
+
|
|
129
|
+
</li>
|
|
130
|
+
|
|
131
|
+
</ul>
|
|
132
|
+
</ul>
|
|
133
|
+
|
|
134
|
+
</td>
|
|
135
|
+
</tr>
|
|
136
|
+
</table>
|
|
137
|
+
</div></div>
|
|
138
|
+
|
|
139
|
+
<div id="footer">
|
|
140
|
+
Generated on Tue Mar 9 17:18:07 2010 by
|
|
141
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool">yard</a>
|
|
142
|
+
0.5.3 (ruby-1.8.7).
|
|
143
|
+
</div>
|
|
144
|
+
|
|
145
|
+
</body>
|
|
146
|
+
</html>
|
data/doc/class_list.html
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html>
|
|
4
|
+
<head>
|
|
5
|
+
<meta name="Content-Type" content="text/html; charset=UTF-8" />
|
|
6
|
+
<link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
|
|
7
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
|
8
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
9
|
+
<script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
|
|
10
|
+
<base id="base_target" target="_parent" />
|
|
11
|
+
</head>
|
|
12
|
+
<body>
|
|
13
|
+
<script type="text/javascript" charset="utf-8">
|
|
14
|
+
if (window.top.frames.main) {
|
|
15
|
+
document.getElementById('base_target').target = 'main';
|
|
16
|
+
document.body.className = 'frames';
|
|
17
|
+
}
|
|
18
|
+
</script>
|
|
19
|
+
<div id="content">
|
|
20
|
+
<h1 id="full_list_header">Class List</h1>
|
|
21
|
+
<div id="nav">
|
|
22
|
+
<a target="_self" href="class_list.html">Classes</a> |
|
|
23
|
+
<a target="_self" href="method_list.html">Methods</a> |
|
|
24
|
+
<a target="_self" href="file_list.html">Files</a>
|
|
25
|
+
</div>
|
|
26
|
+
<div id="search">Search: <input type="text" /></div>
|
|
27
|
+
|
|
28
|
+
<ul id="full_list" class="class">
|
|
29
|
+
<li><a href="top-level-namespace.html" title=" (root)">Top Level Namespace</a></li>
|
|
30
|
+
<li><a href="TableFu/Formatting.html" title="TableFu::Formatting (class)">TableFu::Formatting</a> < Object<small class='search_info'>TableFu</small></li><li><a class='toggle'></a> <a href="TableSetter.html" title="TableSetter (module)">TableSetter</a><small class='search_info'>Top Level Namespace</small></li><ul><li><a href="TableSetter/App.html" title="TableSetter::App (class)">App</a> < Base<small class='search_info'>TableSetter</small></li><li><a href="TableSetter/Command.html" title="TableSetter::Command (class)">Command</a> < Object<small class='search_info'>TableSetter</small></li><li><a href="TableSetter/Table.html" title="TableSetter::Table (class)">Table</a> < Object<small class='search_info'>TableSetter</small></li></ul>
|
|
31
|
+
|
|
32
|
+
</ul>
|
|
33
|
+
</div>
|
|
34
|
+
</body>
|
|
35
|
+
</html>
|
|
36
|
+
|
data/doc/css/common.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Override this file with custom rules */
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
body {
|
|
2
|
+
margin: 0;
|
|
3
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
|
4
|
+
font-size: 13px;
|
|
5
|
+
height: 101%;
|
|
6
|
+
overflow-x: hidden;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
h1 { padding: 12px 10px; padding-bottom: 0; margin: 0; font-size: 1.4em; }
|
|
10
|
+
.clear { clear: both; }
|
|
11
|
+
#search { position: absolute; right: 5px; top: 9px; }
|
|
12
|
+
#full_list { padding: 0; list-style: none; margin-left: 0; }
|
|
13
|
+
#full_list ul { padding: 0; }
|
|
14
|
+
#full_list li { padding: 5px; padding-left: 12px; margin: 0; font-size: 1.1em; list-style: none; }
|
|
15
|
+
#noresults { display: none; padding: 7px 12px; }
|
|
16
|
+
ul.collapsed ul, ul.collapsed li { display: none; }
|
|
17
|
+
li a.toggle { cursor: default; position: relative; left: -5px; top: 4px; text-indent: -999px; width: 10px; height: 9px; margin-left: -10px; display: block; float: left; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAK8AAACvABQqw0mAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTM5jWRgMAAAAVdEVYdENyZWF0aW9uIFRpbWUAMy8xNC8wOeNZPpQAAAE2SURBVDiNrZTBccIwEEXfelIAHUA6CZ24BGaWO+FuzZAK4k6gg5QAdGAq+Bxs2Yqx7BzyL7Llp/VfzZeQhCTc/ezuGzKKnKSzpCxXJM8fwNXda3df5RZETlIt6YUzSQDs93sl8w3wBZxCCE10GM1OcWbWjB2mWgEH4Mfdyxm3PSepBHibgQE2wLe7r4HjEidpnXMYdQPKEMJcsZ4zs2POYQOcaPfwMVOo58zsAdMt18BuoVDPxUJRacELbXv3hUIX2vYmOUvi8C8ydz/ThjXrqKqqLbDIAdsCKBd+Wo7GWa7o9qzOQHVVVXeAbs+yHHCH4aTsaCOQqunmUy1yBUAXkdMIfMlgF5EXLo2OpV/c/Up7jG4hhHcYLgWzAZXUc2b2ixsfvc/RmNNfOXD3Q/oeL9axJE1yT9IOoUu6MGUkAAAAAElFTkSuQmCC) no-repeat bottom left; }
|
|
18
|
+
li.collapsed a.toggle { opacity: 0.5; cursor: default; background-position: top left; }
|
|
19
|
+
li { color: #888; cursor: pointer; }
|
|
20
|
+
li.deprecated { text-decoration: line-through; font-style: italic; }
|
|
21
|
+
li.r1 { background: #f0f0f0; }
|
|
22
|
+
li.r2 { background: #fafafa; }
|
|
23
|
+
li:hover { background: #ddd; }
|
|
24
|
+
li small:before { content: "("; }
|
|
25
|
+
li small:after { content: ")"; }
|
|
26
|
+
li small.search_info { display: none; }
|
|
27
|
+
a:link, a:visited { text-decoration: none; color: #05a; }
|
|
28
|
+
li.clicked { background: #05a; color: #ccc; }
|
|
29
|
+
li.clicked a:link, li.clicked a:visited { color: #eee; }
|
|
30
|
+
li.clicked a.toggle { opacity: 0.5; background-position: bottom right; }
|
|
31
|
+
li.collapsed.clicked a.toggle { background-position: top right; }
|
|
32
|
+
#search input { border: 1px solid #bbb; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
|
|
33
|
+
#nav { margin-left: 10px; font-size: 0.9em; display: none; color: #aaa; }
|
|
34
|
+
#nav a:link, #nav a:visited { color: #358; }
|
|
35
|
+
#nav a:hover { background: transparent; color: #5af; }
|
|
36
|
+
|
|
37
|
+
.frames #content h1 { margin-top: 0; }
|
|
38
|
+
.frames li { white-space: nowrap; cursor: normal; }
|
|
39
|
+
.frames li small { display: block; font-size: 0.8em; }
|
|
40
|
+
.frames li small:before { content: ""; }
|
|
41
|
+
.frames li small:after { content: ""; }
|
|
42
|
+
.frames li small.search_info { display: none; }
|
|
43
|
+
.frames #search { position: static; margin: 3px; margin-left: 10px; font-size: 0.9em; color: #888; }
|
|
44
|
+
.frames #search input { width: 110px; }
|
|
45
|
+
.frames #nav { display: block; }
|
|
46
|
+
|
|
47
|
+
#full_list.insearch li { display: none; }
|
|
48
|
+
#full_list.insearch li.found { display: list-item; padding-left: 10px; }
|
|
49
|
+
#full_list.insearch li a.toggle { display: none; }
|
|
50
|
+
#full_list.insearch li small.search_info { display: block; }
|