org-ruby 0.5.3 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. data/History.txt +12 -0
  2. data/Rakefile +3 -5
  3. data/announcement.txt +24 -0
  4. data/doc/History_txt.html +272 -0
  5. data/doc/OrgRuby.html +149 -0
  6. data/doc/Orgmode.html +960 -0
  7. data/doc/Orgmode/Headline.html +522 -0
  8. data/doc/Orgmode/HtmlOutputBuffer.html +480 -0
  9. data/doc/Orgmode/Line.html +1251 -0
  10. data/doc/Orgmode/OutputBuffer.html +810 -0
  11. data/doc/Orgmode/Parser.html +852 -0
  12. data/doc/Orgmode/RegexpHelper.html +639 -0
  13. data/doc/Orgmode/TextileOutputBuffer.html +456 -0
  14. data/doc/README_rdoc.html +178 -0
  15. data/doc/announcement_txt.html +142 -0
  16. data/doc/bin/org-ruby.html +54 -0
  17. data/doc/created.rid +15 -0
  18. data/doc/images/brick.png +0 -0
  19. data/doc/images/brick_link.png +0 -0
  20. data/doc/images/bug.png +0 -0
  21. data/doc/images/bullet_black.png +0 -0
  22. data/doc/images/bullet_toggle_minus.png +0 -0
  23. data/doc/images/bullet_toggle_plus.png +0 -0
  24. data/doc/images/date.png +0 -0
  25. data/doc/images/find.png +0 -0
  26. data/doc/images/loadingAnimation.gif +0 -0
  27. data/doc/images/macFFBgHack.png +0 -0
  28. data/doc/images/package.png +0 -0
  29. data/doc/images/page_green.png +0 -0
  30. data/doc/images/page_white_text.png +0 -0
  31. data/doc/images/page_white_width.png +0 -0
  32. data/doc/images/plugin.png +0 -0
  33. data/doc/images/ruby.png +0 -0
  34. data/doc/images/tag_green.png +0 -0
  35. data/doc/images/wrench.png +0 -0
  36. data/doc/images/wrench_orange.png +0 -0
  37. data/doc/images/zoom.png +0 -0
  38. data/doc/index.html +306 -0
  39. data/doc/js/darkfish.js +116 -0
  40. data/doc/js/jquery.js +32 -0
  41. data/doc/js/quicksearch.js +114 -0
  42. data/doc/js/thickbox-compressed.js +10 -0
  43. data/doc/lib/org-ruby/headline_rb.html +52 -0
  44. data/doc/lib/org-ruby/html_output_buffer_rb.html +52 -0
  45. data/doc/lib/org-ruby/html_symbol_replace_rb.html +54 -0
  46. data/doc/lib/org-ruby/line_rb.html +52 -0
  47. data/doc/lib/org-ruby/output_buffer_rb.html +54 -0
  48. data/doc/lib/org-ruby/parser_rb.html +56 -0
  49. data/doc/lib/org-ruby/regexp_helper_rb.html +54 -0
  50. data/doc/lib/org-ruby/textile_output_buffer_rb.html +54 -0
  51. data/doc/lib/org-ruby/textile_symbol_replace_rb.html +54 -0
  52. data/doc/lib/org-ruby_rb.html +52 -0
  53. data/doc/rdoc.css +763 -0
  54. data/lib/org-ruby.rb +1 -1
  55. data/lib/org-ruby/headline.rb +2 -2
  56. data/lib/org-ruby/html_output_buffer.rb +62 -5
  57. data/lib/org-ruby/html_symbol_replace.rb +345 -0
  58. data/lib/org-ruby/line.rb +20 -9
  59. data/lib/org-ruby/output_buffer.rb +8 -1
  60. data/lib/org-ruby/parser.rb +47 -19
  61. data/lib/org-ruby/regexp_helper.rb +16 -0
  62. data/lib/org-ruby/textile_output_buffer.rb +37 -2
  63. data/lib/org-ruby/textile_symbol_replace.rb +345 -0
  64. data/org-ruby.gemspec +41 -0
  65. data/spec/headline_spec.rb +5 -0
  66. data/spec/html_examples/advanced-code.html +10 -0
  67. data/spec/html_examples/advanced-code.org +13 -0
  68. data/spec/html_examples/blockcomment.html +3 -0
  69. data/spec/html_examples/blockcomment.org +15 -0
  70. data/spec/html_examples/center.html +6 -0
  71. data/spec/html_examples/center.org +7 -0
  72. data/spec/html_examples/deflist.html +6 -0
  73. data/spec/html_examples/deflist.org +6 -0
  74. data/spec/html_examples/footnotes.html +10 -0
  75. data/spec/html_examples/footnotes.org +7 -0
  76. data/spec/html_examples/inline-formatting.html +8 -0
  77. data/spec/html_examples/inline-formatting.org +10 -0
  78. data/spec/html_examples/inline-images.html +1 -1
  79. data/spec/html_examples/lists.html +4 -0
  80. data/spec/html_examples/lists.org +11 -0
  81. data/spec/html_examples/subsupscript-nil.html +3 -0
  82. data/spec/html_examples/subsupscript-nil.org +6 -0
  83. data/spec/html_examples/subsupscript.html +3 -0
  84. data/spec/html_examples/subsupscript.org +5 -0
  85. data/spec/html_examples/tables.html +15 -0
  86. data/spec/html_examples/tables.org +24 -0
  87. data/spec/line_spec.rb +17 -13
  88. data/spec/spec_helper.rb +1 -2
  89. data/spec/textile_examples/center.org +7 -0
  90. data/spec/textile_examples/center.textile +6 -0
  91. data/spec/textile_examples/footnotes.org +7 -0
  92. data/spec/textile_examples/footnotes.textile +8 -0
  93. data/spec/textile_examples/tables.org +24 -0
  94. data/spec/textile_examples/tables.textile +17 -0
  95. data/util/gen-special-replace.el +37 -0
  96. metadata +111 -19
  97. data/.gitignore +0 -1
data/History.txt CHANGED
@@ -1,3 +1,15 @@
1
+ == 0.6.0 / 2011-09-03
2
+
3
+ * Added support for a "header offset" -- turns one star into an H2, etc. (thanks, niku)
4
+ * The anchor text for a link can now be an image, and will get an img tag (thanks, punchagan)
5
+ * Fixed bug in tables; only the first row is a header even if others have divider lines (thanks, leathekd)
6
+ * Fixed bug in the list regular expression; lists require a space after the item delimiter (thanks, punchagan)
7
+ * Lots from ruediger:
8
+ * subscript / superscript
9
+ * definition lists
10
+ * centered text
11
+ * symbol replacement
12
+
1
13
  == 0.5.3 / 2010-02-15
2
14
 
3
15
  * Minor enhancement: Displays inline images
data/Rakefile CHANGED
@@ -8,8 +8,8 @@ end
8
8
  ensure_in_path 'lib'
9
9
  require 'org-ruby'
10
10
 
11
- task :default => 'test:run'
12
- task 'gem:release' => 'test:run'
11
+ task :default => 'spec:run'
12
+ task 'gem:release' => 'spec:run'
13
13
 
14
14
  Bones {
15
15
  readme_file 'README.rdoc'
@@ -18,10 +18,8 @@ Bones {
18
18
  email 'bdewey@gmail.com'
19
19
  url 'http://github.com/bdewey/org-ruby'
20
20
  version OrgRuby::VERSION
21
- colorize false # Windows consoles won't colorize
22
- gem.need_tar false # Can't TAR from Windows
23
21
  depend_on 'rubypants'
24
- spec.opts ['-D', '--color']
22
+ spec.opts ['--color']
25
23
  }
26
24
 
27
25
 
data/announcement.txt ADDED
@@ -0,0 +1,24 @@
1
+ org-ruby version 0.6.0
2
+ by Brian Dewey
3
+ http://github.com/bdewey/org-ruby
4
+
5
+ == DESCRIPTION
6
+
7
+ This gem contains Ruby routines for parsing org-mode files.The most
8
+ significant thing this library does today is convert org-mode files to
9
+ HTML or textile. Currently, you cannot do much to customize the
10
+ conversion. The supplied textile conversion is optimized for
11
+ extracting "content" from the orgfile as opposed to "metadata."
12
+
13
+ == CHANGES
14
+ * The anchor text for a link can now be an image, and will get an img tag (thanks, punchagan)
15
+ * Fixed bug in tables; only the first row is a header even if others have divider lines (thanks, leathekd)
16
+ * Fixed bug in the list regular expression; lists require a space after the item delimiter (thanks, punchagan)
17
+ * Lots from ruediger:
18
+ * subscript / superscript
19
+ * definition lists
20
+ * centered text
21
+ * symbol replacement
22
+
23
+ * Minor enhancement: Displays inline images
24
+
@@ -0,0 +1,272 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+
5
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
+ <head>
7
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
+
9
+ <title>File: History.txt [org-ruby-0.6.0 Documentation]</title>
10
+
11
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet" />
12
+
13
+ <script src="./js/jquery.js" type="text/javascript"
14
+ charset="utf-8"></script>
15
+ <script src="./js/thickbox-compressed.js" type="text/javascript"
16
+ charset="utf-8"></script>
17
+ <script src="./js/quicksearch.js" type="text/javascript"
18
+ charset="utf-8"></script>
19
+ <script src="./js/darkfish.js" type="text/javascript"
20
+ charset="utf-8"></script>
21
+ </head>
22
+
23
+ <body class="file">
24
+ <div id="metadata">
25
+ <div id="home-metadata">
26
+ <div id="home-section" class="section">
27
+ <h3 class="section-header">
28
+ <a href="./index.html">Home</a>
29
+ <a href="./index.html#classes">Classes</a>
30
+ <a href="./index.html#methods">Methods</a>
31
+ </h3>
32
+ </div>
33
+ </div>
34
+
35
+ <div id="project-metadata">
36
+
37
+
38
+ <div id="fileindex-section" class="section project-section">
39
+ <h3 class="section-header">Files</h3>
40
+ <ul>
41
+
42
+ <li class="file"><a href="./History_txt.html">History.txt</a></li>
43
+
44
+ <li class="file"><a href="./README_rdoc.html">README.rdoc</a></li>
45
+
46
+ <li class="file"><a href="./announcement_txt.html">announcement.txt</a></li>
47
+
48
+ </ul>
49
+ </div>
50
+
51
+
52
+ <div id="classindex-section" class="section project-section">
53
+ <h3 class="section-header">Class Index
54
+ <span class="search-toggle"><img src="./images/find.png"
55
+ height="16" width="16" alt="[+]"
56
+ title="show/hide quicksearch" /></span></h3>
57
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
58
+ <fieldset>
59
+ <legend>Quicksearch</legend>
60
+ <input type="text" name="quicksearch" value=""
61
+ class="quicksearch-field" />
62
+ </fieldset>
63
+ </form>
64
+
65
+ <ul class="link-list">
66
+
67
+ <li><a href="./Orgmode.html">Orgmode</a></li>
68
+
69
+ <li><a href="./Orgmode/Headline.html">Orgmode::Headline</a></li>
70
+
71
+ <li><a href="./Orgmode/HtmlOutputBuffer.html">Orgmode::HtmlOutputBuffer</a></li>
72
+
73
+ <li><a href="./Orgmode/Line.html">Orgmode::Line</a></li>
74
+
75
+ <li><a href="./Orgmode/OutputBuffer.html">Orgmode::OutputBuffer</a></li>
76
+
77
+ <li><a href="./Orgmode/Parser.html">Orgmode::Parser</a></li>
78
+
79
+ <li><a href="./Orgmode/RegexpHelper.html">Orgmode::RegexpHelper</a></li>
80
+
81
+ <li><a href="./Orgmode/TextileOutputBuffer.html">Orgmode::TextileOutputBuffer</a></li>
82
+
83
+ <li><a href="./OrgRuby.html">OrgRuby</a></li>
84
+
85
+ </ul>
86
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
87
+ </div>
88
+
89
+
90
+ </div>
91
+ </div>
92
+
93
+ <div id="documentation">
94
+
95
+ <h2>0.6.0 / 2011-09-03</h2>
96
+ <ul><li>
97
+ <p>Added support for a “header offset” – turns one star into an H2, etc.
98
+ (thanks, niku)</p>
99
+ </li><li>
100
+ <p>The anchor text for a link can now be an image, and will get an img tag
101
+ (thanks, punchagan)</p>
102
+ </li><li>
103
+ <p>Fixed bug in tables; only the first row is a header even if others have
104
+ divider lines (thanks, leathekd)</p>
105
+ </li><li>
106
+ <p>Fixed bug in the list regular expression; lists require a space after the
107
+ item delimiter (thanks, punchagan)</p>
108
+ </li><li>
109
+ <p>Lots from ruediger:</p>
110
+ <ul><li>
111
+ <p>subscript / superscript</p>
112
+ </li><li>
113
+ <p>definition lists</p>
114
+ </li><li>
115
+ <p>centered text</p>
116
+ </li><li>
117
+ <p>symbol replacement</p>
118
+ </li></ul>
119
+ </li></ul>
120
+
121
+ <h2>0.5.3 / 2010-02-15</h2>
122
+ <ul><li>
123
+ <p>Minor enhancement: Displays inline images</p>
124
+ </li></ul>
125
+
126
+ <h2>0.5.2 / 2010-01-05</h2>
127
+ <ul><li>
128
+ <p>Refactored to improve layering.</p>
129
+ </li></ul>
130
+
131
+ <h2>0.5.1 / 2009-12-30</h2>
132
+ <ul><li>
133
+ <p>Minor enhancement: Recognize lines starting with “:” as examples.</p>
134
+ </li><li>
135
+ <p>Minor enhancement: Recognize #+BEGIN_SRC as source blocks</p>
136
+ </li><li>
137
+ <p>Minor enhancement: Add “src” and “example” classes to &lt;pre&gt;
138
+ blocks.</p>
139
+ </li></ul>
140
+
141
+ <h2>0.5.0 / 2009-12-30</h2>
142
+ <ul><li>
143
+ <p>Parse (but not necessarily <b>use</b>) in-buffer settings. The following
144
+ in-buffer settings <b>are</b> used:</p>
145
+ <ul><li>
146
+ <p>Understand the #+TITLE: directive.</p>
147
+ </li><li>
148
+ <p>Exporting todo keywords (option todo:t)</p>
149
+ </li><li>
150
+ <p>Numbering headlines (option num:t)</p>
151
+ </li><li>
152
+ <p>Skipping text before the first headline (option skip:t)</p>
153
+ </li><li>
154
+ <p>Skipping tables (option |:nil)</p>
155
+ </li><li>
156
+ <p>Custom todo keywords</p>
157
+ </li><li>
158
+ <p>EXPORT_SELECT_TAGS and EXPORT_EXLUDE_TAGS for controlling parts of the tree
159
+ to export</p>
160
+ </li></ul>
161
+ </li><li>
162
+ <p>Rewrite “file:(blah).org” links to “<a
163
+ href="http:(blah).html">(blah).html</a>” links. This makes the
164
+ inter-links to other org-mode files work.</p>
165
+ </li><li>
166
+ <p>Uses &lt;th&gt; tags inside table rows that precede table separators.</p>
167
+ </li><li>
168
+ <p>Bugfixes:</p>
169
+ <ul><li>
170
+ <p>Headings now have HTML escaped.</p>
171
+ </li></ul>
172
+ </li></ul>
173
+
174
+ <h2>0.4.2 / 2009-12-29</h2>
175
+ <ul><li>
176
+ <p>Got rid of the extraneous newline at the start of code blocks.</p>
177
+ </li><li>
178
+ <p>Everything now shows up in code blocks, even org-mode metadata.</p>
179
+ </li><li>
180
+ <p>Fixed bugs:</p>
181
+ <ul><li>
182
+ <p>Regressed smart double quotes with HTML escaping. Added a test case and
183
+ fixed the regression.</p>
184
+ </li></ul>
185
+ </li></ul>
186
+
187
+ <h2>0.4.1 / 2009-12-29</h2>
188
+ <ul><li>
189
+ <p>HTML is now escaped by default</p>
190
+ </li><li>
191
+ <p>org-mode comments will show up in a code block.</p>
192
+ </li></ul>
193
+
194
+ <h2>0.4.0 / 2009-12-28</h2>
195
+ <ul><li>
196
+ <p>The first thing output in HTML gets the class “title”</p>
197
+ </li><li>
198
+ <p>HTML output is now indented</p>
199
+ </li><li>
200
+ <p>Proper support for multi-paragraph list items.</p>
201
+ </li><li>
202
+ <p>Fixed bugs:</p>
203
+ <ul><li>
204
+ <p>“rake spec” wouldn’t work on Linux. Needed “require
205
+ ‘rubygems’”.</p>
206
+ </li></ul>
207
+ </li></ul>
208
+
209
+ <h2>0.3.0 / 2009-12-27</h2>
210
+ <ul><li>
211
+ <p>Uses rubypants to get better typography (smart quotes, elipses, etc.).</p>
212
+ </li><li>
213
+ <p>Fixed bugs:</p>
214
+ <ul><li>
215
+ <p>Tables and lists did not get properly closed at the end of file</p>
216
+ </li><li>
217
+ <p>You couldn’t do inline formatting inside table cells</p>
218
+ </li><li>
219
+ <p>Characters in PRE blocks were not HTML escaped.</p>
220
+ </li></ul>
221
+ </li></ul>
222
+
223
+ <h2>0.2.0 / 2009-12-26</h2>
224
+ <ul><li>
225
+ <p>Renamed the gem to org-ruby</p>
226
+ </li><li>
227
+ <p>Added <tt>to_html</tt> for HTML output</p>
228
+ </li><li>
229
+ <p>Now supports the following inline markup:</p>
230
+ <ul><li>
231
+ <p>bold</p>
232
+ </li><li>
233
+ <p>italic</p>
234
+ </li><li>
235
+ <p>code</p>
236
+ </li><li>
237
+ <p>verbatim</p>
238
+ </li><li>
239
+ <p>underline</p>
240
+ </li><li>
241
+ <p>strikethrough</p>
242
+ </li></ul>
243
+ </li><li>
244
+ <p>Continued code cleanup and refactoring</p>
245
+ </li></ul>
246
+
247
+ <h2>0.1.0 / 2009-12-23</h2>
248
+ <ul><li>
249
+ <p>Added support for block code</p>
250
+ </li><li>
251
+ <p>Added support for list items that wrap in the org source</p>
252
+ </li><li>
253
+ <p>Major code cleanup: Added <tt>OutputBuffer</tt> class that should make the
254
+ code more maintainable.</p>
255
+ </li></ul>
256
+
257
+ <h2>0.0.2 / 2009-12-21</h2>
258
+ <ul><li>
259
+ <p>Initial version. Handles tables (but not headers), headlines, paragraphs,
260
+ block quotes, strong &amp; emphasis formatting.</p>
261
+ </li></ul>
262
+
263
+ </div>
264
+
265
+ <div id="validator-badges">
266
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
267
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
268
+ Rdoc Generator</a> 2</small>.</p>
269
+ </div>
270
+ </body>
271
+ </html>
272
+
data/doc/OrgRuby.html ADDED
@@ -0,0 +1,149 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
7
+
8
+ <title>Module: OrgRuby</title>
9
+
10
+ <link rel="stylesheet" href="./rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="./js/jquery.js" type="text/javascript" charset="utf-8"></script>
13
+ <script src="./js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
14
+ <script src="./js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
15
+ <script src="./js/darkfish.js" type="text/javascript" charset="utf-8"></script>
16
+
17
+ </head>
18
+ <body id="top" class="module">
19
+
20
+ <div id="metadata">
21
+ <div id="home-metadata">
22
+ <div id="home-section" class="section">
23
+ <h3 class="section-header">
24
+ <a href="./index.html">Home</a>
25
+ <a href="./index.html#classes">Classes</a>
26
+ <a href="./index.html#methods">Methods</a>
27
+ </h3>
28
+ </div>
29
+ </div>
30
+
31
+ <div id="file-metadata">
32
+ <div id="file-list-section" class="section">
33
+ <h3 class="section-header">In Files</h3>
34
+ <div class="section-body">
35
+ <ul>
36
+
37
+ <li><a href="./lib/org-ruby_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
+ class="thickbox" title="lib/org-ruby.rb">lib/org-ruby.rb</a></li>
39
+
40
+ </ul>
41
+ </div>
42
+ </div>
43
+
44
+
45
+ </div>
46
+
47
+ <div id="class-metadata">
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+ </div>
58
+
59
+ <div id="project-metadata">
60
+
61
+
62
+ <div id="fileindex-section" class="section project-section">
63
+ <h3 class="section-header">Files</h3>
64
+ <ul>
65
+
66
+ <li class="file"><a href="./History_txt.html">History.txt</a></li>
67
+
68
+ <li class="file"><a href="./README_rdoc.html">README.rdoc</a></li>
69
+
70
+ <li class="file"><a href="./announcement_txt.html">announcement.txt</a></li>
71
+
72
+ </ul>
73
+ </div>
74
+
75
+
76
+ <div id="classindex-section" class="section project-section">
77
+ <h3 class="section-header">Class/Module Index
78
+ <span class="search-toggle"><img src="./images/find.png"
79
+ height="16" width="16" alt="[+]"
80
+ title="show/hide quicksearch" /></span></h3>
81
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
82
+ <fieldset>
83
+ <legend>Quicksearch</legend>
84
+ <input type="text" name="quicksearch" value=""
85
+ class="quicksearch-field" />
86
+ </fieldset>
87
+ </form>
88
+
89
+ <ul class="link-list">
90
+
91
+ <li><a href="./Orgmode.html">Orgmode</a></li>
92
+
93
+ <li><a href="./Orgmode/Headline.html">Orgmode::Headline</a></li>
94
+
95
+ <li><a href="./Orgmode/HtmlOutputBuffer.html">Orgmode::HtmlOutputBuffer</a></li>
96
+
97
+ <li><a href="./Orgmode/Line.html">Orgmode::Line</a></li>
98
+
99
+ <li><a href="./Orgmode/OutputBuffer.html">Orgmode::OutputBuffer</a></li>
100
+
101
+ <li><a href="./Orgmode/Parser.html">Orgmode::Parser</a></li>
102
+
103
+ <li><a href="./Orgmode/RegexpHelper.html">Orgmode::RegexpHelper</a></li>
104
+
105
+ <li><a href="./Orgmode/TextileOutputBuffer.html">Orgmode::TextileOutputBuffer</a></li>
106
+
107
+ <li><a href="./OrgRuby.html">OrgRuby</a></li>
108
+
109
+ </ul>
110
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
111
+ </div>
112
+
113
+
114
+ </div>
115
+ </div>
116
+
117
+ <div id="documentation">
118
+ <h1 class="module">OrgRuby</h1>
119
+
120
+ <div id="description" class="description">
121
+
122
+ </div><!-- description -->
123
+
124
+
125
+ <div id="5Buntitled-5D" class="documentation-section">
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+ <!-- Methods -->
135
+
136
+ </div><!-- 5Buntitled-5D -->
137
+
138
+
139
+ </div><!-- documentation -->
140
+
141
+ <div id="validator-badges">
142
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
143
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
144
+ Rdoc Generator</a> 2</small>.</p>
145
+ </div>
146
+
147
+ </body>
148
+ </html>
149
+