jrun-rstack 0.5.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.
Files changed (47) hide show
  1. data/CHANGELOG.txt +0 -0
  2. data/LICENSE.txt +20 -0
  3. data/README.textile +57 -0
  4. data/Rakefile +13 -0
  5. data/bin/rstack +18 -0
  6. data/lib/rstack/configuration.rb +67 -0
  7. data/lib/rstack/generator.rb +58 -0
  8. data/lib/rstack/tasks/doc.rb +15 -0
  9. data/lib/rstack/tasks/gem.rb +52 -0
  10. data/lib/rstack/tasks/rspec.rb +24 -0
  11. data/lib/rstack/version.rb +9 -0
  12. data/lib/rstack.rb +25 -0
  13. data/spec/configuration_spec.rb +49 -0
  14. data/spec/generator_spec.rb +76 -0
  15. data/spec/spec_helper.rb +20 -0
  16. data/spec/tasks/doc_spec.rb +13 -0
  17. data/templates/README.txt +1 -0
  18. data/templates/Rakefile +11 -0
  19. data/templates/cruise_config.rb +10 -0
  20. data/templates/main.rb +1 -0
  21. data/templates/spec_helper.rb +14 -0
  22. data/templates/version.rb +8 -0
  23. data/vendor/allison-2.0.2/CHANGELOG +16 -0
  24. data/vendor/allison-2.0.2/LICENSE +184 -0
  25. data/vendor/allison-2.0.2/Manifest +23 -0
  26. data/vendor/allison-2.0.2/README +66 -0
  27. data/vendor/allison-2.0.2/allison.gemspec +45 -0
  28. data/vendor/allison-2.0.2/bin/allison +9 -0
  29. data/vendor/allison-2.0.2/cache/BODY +571 -0
  30. data/vendor/allison-2.0.2/cache/CLASS_INDEX +4 -0
  31. data/vendor/allison-2.0.2/cache/CLASS_PAGE +1 -0
  32. data/vendor/allison-2.0.2/cache/FILE_INDEX +4 -0
  33. data/vendor/allison-2.0.2/cache/FILE_PAGE +1 -0
  34. data/vendor/allison-2.0.2/cache/FONTS +1 -0
  35. data/vendor/allison-2.0.2/cache/FR_INDEX_BODY +1 -0
  36. data/vendor/allison-2.0.2/cache/INDEX +1 -0
  37. data/vendor/allison-2.0.2/cache/JAVASCRIPT +317 -0
  38. data/vendor/allison-2.0.2/cache/METHOD_INDEX +4 -0
  39. data/vendor/allison-2.0.2/cache/METHOD_LIST +1 -0
  40. data/vendor/allison-2.0.2/cache/PROJECT +1 -0
  41. data/vendor/allison-2.0.2/cache/SRC_PAGE +1 -0
  42. data/vendor/allison-2.0.2/cache/STYLE +321 -0
  43. data/vendor/allison-2.0.2/contrib/Rakefile +147 -0
  44. data/vendor/allison-2.0.2/lib/allison.css +315 -0
  45. data/vendor/allison-2.0.2/lib/allison.js +317 -0
  46. data/vendor/allison-2.0.2/lib/allison.rb +276 -0
  47. metadata +157 -0
@@ -0,0 +1,571 @@
1
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta content="text/html; charset=utf-8" http-equiv="Content-Type"/><title>%title%</title><link type="text/css" href="%style_url%" media="screen" rel="stylesheet"/><script type="text/javascript">
2
+ // Allison template
3
+ // Copyright 2007 Cloudburst LLC, all rights reserved
4
+ // Redistribution or modification prohibited
5
+
6
+ var href_base = '%style_url%'.replace(/(.*\/).*/, '$1'); // inline js is good for something
7
+
8
+ function $(id) {
9
+ if (document.getElementById)
10
+ elem = document.getElementById(id);
11
+ else if ( document.all )
12
+ elem = eval("document.all." + id);
13
+ else
14
+ return false;
15
+ return elem;
16
+ }
17
+
18
+ function toggle(id) {
19
+ elem = $(id);
20
+ elemStyle = elem.style;
21
+ if (elemStyle.display == "block") {
22
+ elemStyle.display = "none"
23
+ } else {
24
+ elemStyle.display = "block"
25
+ }
26
+ return true;
27
+ }
28
+
29
+ function toggleText(id) {
30
+ elem = $(id)
31
+ if (m = elem.innerHTML.match(/(Hide)(.*)/)) {
32
+ elem.innerHTML = "Show" + m[2];
33
+ } else if (m = elem.innerHTML.match(/(Show)(.*)/)) {
34
+ elem.innerHTML = "Hide" + m[2];
35
+ }
36
+ return true;
37
+ }
38
+
39
+ function span(s, klass) {
40
+ return '<span class="' + klass + '">' + s + '</span>';
41
+ }
42
+
43
+ function highlightSymbols() {
44
+ pres = document.getElementsByTagName('pre');
45
+ for(var i = 0; i < pres.length; i++) {
46
+ pre = pres[i];
47
+ spans = pre.getElementsByTagName('span');
48
+ for(var k = 0; k < spans.length; k++) {
49
+ span = spans[k];
50
+ if (span.className.match(/ruby-identifier/)) {
51
+ if (span.innerHTML.match(/^:/)) {
52
+ span.className += " ruby-symbol";
53
+ }
54
+ }
55
+ }
56
+ }
57
+ }
58
+
59
+ function hasClass(obj) {
60
+ var result = false;
61
+ if (obj.getAttributeNode("class") != null) {
62
+ result = obj.getAttributeNode("class").value;
63
+ }
64
+ return result;
65
+ }
66
+
67
+ function stripe() {
68
+ var even = true;
69
+ var color = "#e4ebed";
70
+ var tables = document.getElementsByTagName('table');
71
+ if (tables.length == 0) { return; }
72
+ for (var h = 0; h < tables.length; h++) {
73
+ var trs = tables[h].getElementsByTagName("tr");
74
+ for (var i = 0; i < trs.length; i++) {
75
+ var tds = trs[i].getElementsByTagName("td");
76
+ for (var j = 0; j < tds.length; j++) {
77
+ if (hasClass(tds[j]) != "first") {
78
+ var mytd = tds[j];
79
+ if (even) {
80
+ mytd.style.backgroundColor = color;
81
+ }
82
+ }
83
+ }
84
+ even = ! even;
85
+ }
86
+ }
87
+ }
88
+
89
+ function ajaxGet(url) {
90
+ url = (href_base + url).replace('/./', '/')
91
+ var req = false;
92
+
93
+ if (window.ActiveXObject) {
94
+ try {
95
+ // stupid hack because IE7 disables local Ajax with the native xmlhttprequest object
96
+ // for security purposes. Yet ActiveX still works. Thanks, Microsoft. I hate you. Die.
97
+ req = new ActiveXObject("MSXML2.XMLHTTP.3.0");
98
+ } catch (e) {
99
+ try {
100
+ /* IE 6 and maybe 5, don't know, don't care */
101
+ req = new ActiveXObject("Msxml2.XMLHTTP");
102
+ } catch (e) {
103
+ try {
104
+ req = new ActiveXObject("Microsoft.XMLHTTP");
105
+ } catch (e) {
106
+ req = false;
107
+ }
108
+ }
109
+ }
110
+ }
111
+
112
+ /* real browsers */
113
+ if (!req && window.XMLHttpRequest) {
114
+ try {
115
+ req = new XMLHttpRequest();
116
+ } catch (e) {
117
+ req = false;
118
+ }
119
+ }
120
+
121
+ if (req) {
122
+ req.open('GET', url, false);
123
+ req.send(null);
124
+ return req.responseText;
125
+ } else {
126
+ return "Ajax error";
127
+ }
128
+ }
129
+
130
+
131
+ function addEvent(elm, evType, fn, useCapture) {
132
+ if (elm.addEventListener) {
133
+ elm.addEventListener(evType, fn, useCapture);
134
+ return true;
135
+ } else if (elm.attachEvent) {
136
+ var r = elm.attachEvent('on' + evType, fn);
137
+ return r;
138
+ } else {
139
+ elm['on' + evType] = fn;
140
+ }
141
+ }
142
+
143
+ function insertIndices() {
144
+ pages = ["class", "file", "method"]
145
+ for (x in pages) {
146
+ $(pages[x]).innerHTML += ajaxGet('fr_' + pages[x] + '_index.html').replace(/(href=")/g, '$1' + href_base);
147
+ }
148
+ /* mouseoverify method links */
149
+ links = $('method').getElementsByTagName('a');
150
+ for (var x = 0; x < links.length; x++) {
151
+ if (m = links[x].innerHTML.match(/(.*)\s\((.*)\)/)) {
152
+ links[x].innerHTML = m[1] + '<br>';
153
+ links[x].title = m[2];
154
+ }
155
+ }
156
+ /* this is stupid */
157
+ $('class').style.display = "block";
158
+ $('file').style.display = "block";
159
+
160
+ /* has to be here because IE7 does not guarantee the onLoad callback order */
161
+ abbreviateIndicesInner(["class", "file"], 25, "a");
162
+ /* same, linkTitle() depends on the class link list */
163
+ linkTitle();
164
+ }
165
+
166
+ function abbreviateIndices() {
167
+ var ids = ["defined_in", "child_of", "includes", "requires", "method", "methods"];
168
+ abbreviateIndicesInner(ids, 25, 'a');
169
+ abbreviateIndicesInner(ids, 25, 'span');
170
+ }
171
+
172
+ function abbreviateIndicesInner(indices, amount, tag) {
173
+ for (var x = 0; x < indices.length; x++) {
174
+ var the_index = $(indices[x]);
175
+ if (the_index) {
176
+ links = the_index.getElementsByTagName(tag);
177
+ for (var y = 0; y < links.length; y++) {
178
+ var link = links[y];
179
+ if (link.getElementsByTagName('span').length == 0 && link.getElementsByTagName('a').length == 0) {
180
+ // avoid nesting
181
+ link.innerHTML = link.innerHTML.replace(/<br>|\n/gi, '');
182
+ link.title = link.innerHTML;
183
+ link.innerHTML = abbreviate(link.innerHTML, amount) + '<br>';
184
+ }
185
+ }
186
+ }
187
+ }
188
+ }
189
+
190
+ function linkTitle() {
191
+
192
+ /* grab the correct title element from the index */
193
+ var index_page = ajaxGet('index.html');
194
+ title_text = index_page.match(/<title>(.*)<\/title>/m)[1];
195
+ document.title = title_text + " - " + document.title;
196
+ var p = $('header').getElementsByTagName('p')[0]
197
+ if (p.innerHTML.match(/^\s*$/)) {
198
+ p.innerHTML = title_text;
199
+ } else {
200
+ p.innerHTML = title_text + ": " + p.innerHTML;
201
+ }
202
+
203
+ /* set the link properly */
204
+ title_link = index_page.match(/<a\s+href="(.*?)"/)[1];
205
+ var element = $('title');
206
+ var item_type = "";
207
+ var item_name = "";
208
+ if (m = element.innerHTML.match(/(Class:|Module:|File:)\s*(.*)/)) {
209
+ item_type = m[1];
210
+ item_name = m[2];
211
+ } else {
212
+ item_name = element.innerHTML;
213
+ }
214
+ element.innerHTML = '<a href="' + href_base + title_link + '">' + item_type + " " + abbreviate(item_name, 45) + '</a>';
215
+ element.getElementsByTagName('a')[0].title = item_name
216
+
217
+ /* breadcrumb navigation */
218
+ items = item_name.split("::");
219
+ items_new = item_name.split("::");
220
+ file_links = $('class').getElementsByTagName('a');
221
+ for (var x = 0; x < items.length - 1; x++ ){
222
+ var item = items[x];
223
+ link = ("/classes/" + items.slice(0,x).join("/") + "/" + item + ".html").replace('//', '/');
224
+ regex = new RegExp(RegExp.escape(link) + '$');
225
+ for (var y = 0; y < file_links.length; y++) {
226
+ if (file_links[y].href.match(regex)) {
227
+ items_new[x] = '<a href="' + href_base + link + '">' + item + '</a>';
228
+ break;
229
+ }
230
+ }
231
+ }
232
+ $('item_name').innerHTML = item_type + ' ' + items_new.join(" :: ");
233
+ }
234
+
235
+ function abbreviate(s, size) {
236
+ while (s.length > size) {
237
+ var old_s = s;
238
+ s = s.replace(/\s|\n/mg, '');
239
+ s = s.replace(/([A-Z])[a-z]+/m, '$1');
240
+ if (!s || old_s == s) {
241
+ return "..." + s.substring(s.length - size, s.length);
242
+ }
243
+ }
244
+ return s;
245
+ }
246
+
247
+ function disableSubmit(event) {
248
+ var keyCode = event.keyCode ? event.keyCode : event.which ? event.which : event.charCode;
249
+ if (keyCode == 13) {
250
+ return false;
251
+ } else {
252
+ return true;
253
+ }
254
+ }
255
+
256
+ function filterList(id, s, event) {
257
+
258
+ /* some weak escaping */
259
+ s = s.replace(/[^\w\d\.\_\-\/\:\=\[\]\?\!]/g, '');
260
+ s = RegExp.escape(s);
261
+
262
+ var show_all = false;
263
+ if (s.match(/^\s*$/)) {
264
+ show_all = true;
265
+ }
266
+
267
+ links = $(id).getElementsByTagName('a')
268
+ regex = new RegExp(s, 'i');
269
+
270
+ for (var x = 0; x < links.length; x++) {
271
+ var link = links[x];
272
+ if (show_all) {
273
+ link.style.display = 'inline';
274
+ } else {
275
+ if (link.innerHTML.match(regex)) {
276
+ link.style.display = 'inline';
277
+ } else {
278
+ link.style.display = 'none';
279
+ }
280
+ }
281
+ }
282
+ return true;
283
+ }
284
+
285
+ RegExp.escape = function(text) {
286
+ if (!arguments.callee.sRE) {
287
+ var specials = ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\\\'];
288
+ arguments.callee.sRE = new RegExp(
289
+ '(\\\\' + specials.join('|\\\\') + ')', 'g'
290
+ );
291
+ }
292
+ return text.replace(arguments.callee.sRE, '\\\\$1');
293
+ }
294
+
295
+ function hacks() {
296
+ // show the spacer if necessary,
297
+ divs = document.getElementsByTagName('div');
298
+ for(var x = 0; x < divs.length; x++) {
299
+ if (divs[x].className && divs[x].className.match(/top/)) {
300
+ document.getElementById('spacer').style.display = 'block';
301
+ }
302
+ }
303
+ // remove extra colons from tables
304
+ tds = document.getElementsByTagName('td');
305
+ for(var x = 0; x < tds.length; x++) {
306
+ str = tds[x].innerHTML
307
+ if (str.charAt(str.length - 1) == ":") {
308
+ tds[x].innerHTML = str.slice(0, str.length - 1)
309
+ }
310
+ }
311
+ }
312
+
313
+ addEvent(window, 'load', insertIndices, false);
314
+ addEvent(window, 'load', abbreviateIndices, false);
315
+ addEvent(window, 'load', stripe, false);
316
+ addEvent(window, 'load', highlightSymbols, false);
317
+ addEvent(window, 'load', hacks, false);
318
+ </script></head><body><div id="container"><div class="curve" id="preheader_curve_0"></div><div class="curve" id="preheader_curve_1"></div><div class="curve" id="preheader_curve_2"></div><div class="curve" id="preheader_curve_3"></div><div class="curve" id="preheader_curve_4"></div><div class="curve" id="preheader_curve_5"></div><div id="header"><p>
319
+ IF:full_path
320
+ %full_path%
321
+ ENDIF:full_path
322
+ </p><span><h1 id="title">
323
+ IF:title
324
+ %title%
325
+ ENDIF:title
326
+ </h1></span>!INCLUDE!</div><div class="clear"></div><div id="left">
327
+ IF:parent
328
+ <div class="navigation darker top" id="child_of"><h3>Child of</h3><span>
329
+
330
+ IF:par_url
331
+ <a href='%par_url%'>
332
+ ENDIF:par_url
333
+ %parent%
334
+ IF:par_url
335
+ </a>
336
+ ENDIF:par_url
337
+ </span></div>
338
+ ENDIF:parent
339
+
340
+ IF:infiles
341
+ <div class="navigation darker top" id="defined_in"><h3>Defined in</h3>
342
+ START:infiles
343
+
344
+ IF:full_path_url
345
+ <a href="%full_path_url%">%full_path%</a>
346
+ ENDIF:full_path_url
347
+
348
+ END:infiles
349
+ </div>
350
+ ENDIF:infiles
351
+
352
+ IF:includes
353
+ <div class="navigation top" id="includes"><h3>Includes</h3>
354
+ START:includes
355
+
356
+ IF:name
357
+
358
+ IF:aref
359
+ <a href='%aref%'>
360
+ ENDIF:aref
361
+ %name%<br/>
362
+ IF:aref
363
+ </a>
364
+ ENDIF:aref
365
+
366
+ ENDIF:name
367
+
368
+ END:includes
369
+ </div>
370
+ ENDIF:includes
371
+
372
+ IF:requires
373
+ <div class="navigation top" id="requires"><h3>Requires</h3>
374
+ START:requires
375
+
376
+ IF:name
377
+
378
+ IF:aref
379
+ <a href='%aref%'>
380
+ ENDIF:aref
381
+ %name%<br/>
382
+ IF:aref
383
+ </a>
384
+ ENDIF:aref
385
+
386
+ ENDIF:name
387
+
388
+ END:requires
389
+ </div>
390
+ ENDIF:requires
391
+
392
+ IF:methods
393
+ <div class="navigation top" id="methods"><h3>Methods</h3>
394
+ START:methods
395
+
396
+ IF:name
397
+
398
+ IF:aref
399
+ <a href='%aref%'>
400
+ ENDIF:aref
401
+ %name%<br/>
402
+ IF:aref
403
+ </a>
404
+ ENDIF:aref
405
+
406
+ ENDIF:name
407
+
408
+ END:methods
409
+ </div>
410
+ ENDIF:methods
411
+ <div id="spacer"></div><div class="navigation darker index" id="class_wrapper"><div class="list_header"><h3>All classes</h3></div><div class="list_header_link"><a onclick="toggle('class'); toggleText('class_link'); return false;" href="#" id="class_link">Hide...</a></div><div class="clear"></div><div id="class"><form><label for="filter_class">Filter:&nbsp;&nbsp;</label><input type="text" onKeyUp="return filterList('class', this.value, event);" onKeyPress="return disableSubmit(event);" id="filter_class"></input></form></div></div><div class="navigation darker index" id="file_wrapper"><div class="list_header"><h3>All files</h3></div><div class="list_header_link"><a onclick="toggle('file'); toggleText('file_link'); return false;" href="#" id="file_link">Hide...</a></div><div class="clear"></div><div id="file"><form><label for="filter_file">Filter:&nbsp;&nbsp;</label><input type="text" onKeyUp="return filterList('file', this.value, event);" onKeyPress="return disableSubmit(event);" id="filter_file"></input></form></div></div><div class="navigation darker index" id="method_wrapper"><div class="list_header"><h3>All methods</h3></div><div class="list_header_link"><a onclick="toggle('method'); toggleText('method_link'); return false;" href="#" id="method_link">Show...</a></div><div class="clear"></div><div id="method"><form><label for="filter_method">Filter:&nbsp;&nbsp;</label><input type="text" onKeyUp="return filterList('method', this.value, event);" onKeyPress="return disableSubmit(event);" id="filter_method"></input></form></div></div></div><div id="content">
412
+ IF:title
413
+ <h1 id="item_name">%title%</h1>
414
+ ENDIF:title
415
+
416
+ IF:description
417
+ <div id="description">%description%</div>
418
+ ENDIF:description
419
+
420
+ IF:sections
421
+
422
+ START:sections
423
+
424
+ IF:sectitle
425
+ <h1><a name="%secsequence%">%sectitle%</a></h1>
426
+ ENDIF:sectitle
427
+
428
+ IF:seccomment
429
+ <p>%seccomment%</p>
430
+ ENDIF:seccomment
431
+
432
+ IF:classlist
433
+ <h1>Child modules and classes</h1><p>%classlist%</p>
434
+ ENDIF:classlist
435
+
436
+ IF:constants
437
+ <h1>Constants</h1><p><table><tr><th>Name</th><th>Value</th></tr>
438
+ START:constants
439
+ <tr>
440
+ IF:name
441
+ <td class="highlight">%name%</td>
442
+ ENDIF:name
443
+
444
+ IF:value
445
+ <td class="normal">%value%</td>
446
+ ENDIF:value
447
+
448
+ IF:old_name
449
+ <td class="highlight">%old_name%</td>
450
+ ENDIF:old_name
451
+
452
+ IF:new_name
453
+ <td class="normal">%new_name%</td>
454
+ ENDIF:new_name
455
+
456
+ IF:rw
457
+ <td class="normal">%rw%</td>
458
+ ENDIF:rw
459
+ </tr>
460
+ END:constants
461
+ </table></p>
462
+ ENDIF:constants
463
+
464
+ IF:aliases
465
+ <h1>Aliases</h1><p><table><tr><th>Old name</th><th>New name</th></tr>
466
+ START:aliases
467
+ <tr>
468
+ IF:name
469
+ <td class="highlight">%name%</td>
470
+ ENDIF:name
471
+
472
+ IF:value
473
+ <td class="normal">%value%</td>
474
+ ENDIF:value
475
+
476
+ IF:old_name
477
+ <td class="highlight">%old_name%</td>
478
+ ENDIF:old_name
479
+
480
+ IF:new_name
481
+ <td class="normal">%new_name%</td>
482
+ ENDIF:new_name
483
+
484
+ IF:rw
485
+ <td class="normal">%rw%</td>
486
+ ENDIF:rw
487
+ </tr>
488
+ END:aliases
489
+ </table></p>
490
+ ENDIF:aliases
491
+
492
+ IF:attributes
493
+ <h1>Attributes</h1><p><table><tr><th>Name</th><th>Read/write?</th></tr>
494
+ START:attributes
495
+ <tr>
496
+ IF:name
497
+ <td class="highlight">%name%</td>
498
+ ENDIF:name
499
+
500
+ IF:value
501
+ <td class="normal">%value%</td>
502
+ ENDIF:value
503
+
504
+ IF:old_name
505
+ <td class="highlight">%old_name%</td>
506
+ ENDIF:old_name
507
+
508
+ IF:new_name
509
+ <td class="normal">%new_name%</td>
510
+ ENDIF:new_name
511
+
512
+ IF:rw
513
+ <td class="normal">%rw%</td>
514
+ ENDIF:rw
515
+ </tr>
516
+ END:attributes
517
+ </table></p>
518
+ ENDIF:attributes
519
+
520
+ IF:method_list
521
+
522
+ START:method_list
523
+ <h1>%type% %category% Methods</h1>
524
+ IF:methods
525
+
526
+ START:methods
527
+
528
+ IF:aref
529
+ <a class="small" name="%aref%"><br/></a>
530
+ ENDIF:aref
531
+ <div class="method_block"><h3>
532
+ IF:aref
533
+ <a href='#%aref%'>
534
+ ENDIF:aref
535
+
536
+ IF:callseq
537
+ %callseq%
538
+ ENDIF:callseq
539
+
540
+ IF:name
541
+ %name%
542
+ ENDIF:name
543
+
544
+ IF:params
545
+ %params%
546
+ ENDIF:params
547
+
548
+ IF:aref
549
+ </a>
550
+ ENDIF:aref
551
+ </h3>
552
+ IF:m_desc
553
+ %m_desc%
554
+ ENDIF:m_desc
555
+
556
+ IF:sourcecode
557
+ <p class="source_link" id="%aref%-show-link"><a onclick="toggle('%aref%-source'); toggleText('%aref%-link'); return false;" href="#" id="%aref%-link">Show source...</a></p><div class="source" id="%aref%-source"><pre>%sourcecode%</pre></div>
558
+ ENDIF:sourcecode
559
+ </div>
560
+ END:methods
561
+
562
+ ENDIF:methods
563
+
564
+ END:method_list
565
+
566
+ ENDIF:method_list
567
+
568
+ END:sections
569
+
570
+ ENDIF:sections
571
+ </div><div class="clear" id="footer">Generated on Dec 16, 2007 / Allison 2 &copy; 2007 <a href="http://cloudbur.st">Cloudburst, LLC</a></div></div></body></html>
@@ -0,0 +1,4 @@
1
+
2
+ START:entries
3
+ <a href="%href%">%name%<br/></a>
4
+ END:entries
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,4 @@
1
+
2
+ START:entries
3
+ <a href="%href%">%name%<br/></a>
4
+ END:entries
@@ -0,0 +1 @@
1
+
@@ -0,0 +1 @@
1
+
@@ -0,0 +1 @@
1
+ !INCLUDE!
@@ -0,0 +1 @@
1
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta content="text/html; charset=utf-8" http-equiv="Content-Type"/><title>%title%</title><link type="text/css" href="rdoc-style.css" media="screen" rel="stylesheet"/><meta content="0;url=%initial_page%" http-equiv="refresh"/></head><body><div id="container"><div class="curve" id="preheader_curve_0"></div><div class="curve" id="preheader_curve_1"></div><div class="curve" id="preheader_curve_2"></div><div class="curve" id="preheader_curve_3"></div><div class="curve" id="preheader_curve_4"></div><div class="curve" id="preheader_curve_5"></div><div id="header"><span id="title"><p>&nbsp;</p><h1>Ruby Documentation</h1></span></div><div class="clear"></div><div id="redirect"><a href="%initial_page%"><h1>Redirect</h1></a></div></div></body></html>