doing 2.1.1pre → 2.1.5pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardoc/checksums +19 -15
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/CHANGELOG.md +58 -8
- data/Gemfile.lock +25 -1
- data/README.md +1 -1
- data/Rakefile +2 -0
- data/bin/doing +447 -149
- data/doc/Array.html +63 -1
- data/doc/BooleanTermParser/Clause.html +293 -0
- data/doc/BooleanTermParser/Operator.html +172 -0
- data/doc/BooleanTermParser/Query.html +417 -0
- data/doc/BooleanTermParser/QueryParser.html +135 -0
- data/doc/BooleanTermParser/QueryTransformer.html +124 -0
- data/doc/BooleanTermParser.html +115 -0
- data/doc/Doing/CLIFormat.html +131 -0
- data/doc/Doing/Color.html +2 -2
- data/doc/Doing/Completion.html +1 -1
- data/doc/Doing/Configuration.html +168 -73
- data/doc/Doing/Errors/DoingNoTraceError.html +1 -1
- data/doc/Doing/Errors/DoingRuntimeError.html +1 -1
- data/doc/Doing/Errors/DoingStandardError.html +1 -1
- data/doc/Doing/Errors/EmptyInput.html +1 -1
- data/doc/Doing/Errors/NoResults.html +1 -1
- data/doc/Doing/Errors/PluginException.html +1 -1
- data/doc/Doing/Errors/UserCancelled.html +1 -1
- data/doc/Doing/Errors/WrongCommand.html +1 -1
- data/doc/Doing/Errors.html +1 -1
- data/doc/Doing/Hooks.html +1 -1
- data/doc/Doing/Item.html +177 -86
- data/doc/Doing/Items.html +36 -2
- data/doc/Doing/LogAdapter.html +70 -1
- data/doc/Doing/Note.html +5 -134
- data/doc/Doing/Pager.html +1 -1
- data/doc/Doing/Plugins.html +380 -40
- data/doc/Doing/Prompt.html +70 -18
- data/doc/Doing/Section.html +1 -1
- data/doc/Doing/TemplateString.html +713 -0
- data/doc/Doing/Util/Backup.html +686 -0
- data/doc/Doing/Util.html +16 -4
- data/doc/Doing/WWID.html +133 -73
- data/doc/Doing.html +4 -4
- data/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
- data/doc/GLI/Commands.html +1 -1
- data/doc/GLI.html +1 -1
- data/doc/Hash.html +1 -1
- data/doc/PhraseParser/Operator.html +172 -0
- data/doc/PhraseParser/PhraseClause.html +303 -0
- data/doc/PhraseParser/Query.html +495 -0
- data/doc/PhraseParser/QueryParser.html +136 -0
- data/doc/PhraseParser/QueryTransformer.html +124 -0
- data/doc/PhraseParser/TermClause.html +293 -0
- data/doc/PhraseParser.html +115 -0
- data/doc/Status.html +1 -1
- data/doc/String.html +319 -13
- data/doc/Symbol.html +35 -1
- data/doc/Time.html +70 -2
- data/doc/_index.html +132 -4
- data/doc/class_list.html +1 -1
- data/doc/file.README.html +2 -2
- data/doc/index.html +2 -2
- data/doc/method_list.html +648 -160
- data/doc/top-level-namespace.html +2 -2
- data/doing.gemspec +3 -0
- data/doing.rdoc +263 -82
- data/lib/completion/doing.bash +18 -18
- data/lib/doing/array.rb +9 -0
- data/lib/doing/boolean_term_parser.rb +86 -0
- data/lib/doing/configuration.rb +63 -24
- data/lib/doing/item.rb +112 -10
- data/lib/doing/items.rb +6 -0
- data/lib/doing/log_adapter.rb +28 -0
- data/lib/doing/note.rb +31 -30
- data/lib/doing/phrase_parser.rb +124 -0
- data/lib/doing/plugin_manager.rb +57 -13
- data/lib/doing/plugins/export/dayone_export.rb +209 -0
- data/lib/doing/plugins/export/template_export.rb +113 -81
- data/lib/doing/prompt.rb +26 -13
- data/lib/doing/string.rb +114 -29
- data/lib/doing/string_chronify.rb +5 -1
- data/lib/doing/symbol.rb +4 -0
- data/lib/doing/template_string.rb +197 -0
- data/lib/doing/time.rb +32 -0
- data/lib/doing/util.rb +6 -7
- data/lib/doing/util_backup.rb +287 -0
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +152 -55
- data/lib/doing.rb +9 -0
- data/lib/templates/doing-dayone-entry.erb +6 -0
- data/lib/templates/doing-dayone.erb +5 -0
- metadata +85 -2
data/doc/method_list.html
CHANGED
|
@@ -70,31 +70,31 @@
|
|
|
70
70
|
|
|
71
71
|
<li class="even ">
|
|
72
72
|
<div class="item">
|
|
73
|
-
<span class='object_link'><a href="
|
|
74
|
-
<small>
|
|
73
|
+
<span class='object_link'><a href="String.html#add_at-instance_method" title="String#add_at (method)">#add_at</a></span>
|
|
74
|
+
<small>String</small>
|
|
75
75
|
</div>
|
|
76
76
|
</li>
|
|
77
77
|
|
|
78
78
|
|
|
79
79
|
<li class="odd ">
|
|
80
80
|
<div class="item">
|
|
81
|
-
<span class='object_link'><a href="Doing/
|
|
82
|
-
<small>Doing::
|
|
81
|
+
<span class='object_link'><a href="Doing/WWID.html#add_item-instance_method" title="Doing::WWID#add_item (method)">#add_item</a></span>
|
|
82
|
+
<small>Doing::WWID</small>
|
|
83
83
|
</div>
|
|
84
84
|
</li>
|
|
85
85
|
|
|
86
86
|
|
|
87
87
|
<li class="even ">
|
|
88
88
|
<div class="item">
|
|
89
|
-
<span class='object_link'><a href="
|
|
90
|
-
<small>
|
|
89
|
+
<span class='object_link'><a href="Doing/Items.html#add_section-instance_method" title="Doing::Items#add_section (method)">#add_section</a></span>
|
|
90
|
+
<small>Doing::Items</small>
|
|
91
91
|
</div>
|
|
92
92
|
</li>
|
|
93
93
|
|
|
94
94
|
|
|
95
95
|
<li class="odd ">
|
|
96
96
|
<div class="item">
|
|
97
|
-
<span class='object_link'><a href="String.html#add_tags
|
|
97
|
+
<span class='object_link'><a href="String.html#add_tags-instance_method" title="String#add_tags (method)">#add_tags</a></span>
|
|
98
98
|
<small>String</small>
|
|
99
99
|
</div>
|
|
100
100
|
</li>
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
|
|
103
103
|
<li class="even ">
|
|
104
104
|
<div class="item">
|
|
105
|
-
<span class='object_link'><a href="
|
|
106
|
-
<small>
|
|
105
|
+
<span class='object_link'><a href="String.html#add_tags!-instance_method" title="String#add_tags! (method)">#add_tags!</a></span>
|
|
106
|
+
<small>String</small>
|
|
107
107
|
</div>
|
|
108
108
|
</li>
|
|
109
109
|
|
|
@@ -118,37 +118,45 @@
|
|
|
118
118
|
|
|
119
119
|
<li class="even ">
|
|
120
120
|
<div class="item">
|
|
121
|
-
<span class='object_link'><a href="Doing/
|
|
122
|
-
<small>Doing::
|
|
121
|
+
<span class='object_link'><a href="Doing/WWID.html#additional_configs-instance_method" title="Doing::WWID#additional_configs (method)">#additional_configs</a></span>
|
|
122
|
+
<small>Doing::WWID</small>
|
|
123
123
|
</div>
|
|
124
124
|
</li>
|
|
125
125
|
|
|
126
126
|
|
|
127
127
|
<li class="odd ">
|
|
128
128
|
<div class="item">
|
|
129
|
-
<span class='object_link'><a href="Doing/
|
|
130
|
-
<small>Doing::
|
|
129
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#adjust_verbosity-instance_method" title="Doing::LogAdapter#adjust_verbosity (method)">#adjust_verbosity</a></span>
|
|
130
|
+
<small>Doing::LogAdapter</small>
|
|
131
131
|
</div>
|
|
132
132
|
</li>
|
|
133
133
|
|
|
134
134
|
|
|
135
135
|
<li class="even ">
|
|
136
136
|
<div class="item">
|
|
137
|
-
<span class='object_link'><a href="Doing/
|
|
138
|
-
<small>Doing::
|
|
137
|
+
<span class='object_link'><a href="Doing/Items.html#all_tags-instance_method" title="Doing::Items#all_tags (method)">#all_tags</a></span>
|
|
138
|
+
<small>Doing::Items</small>
|
|
139
139
|
</div>
|
|
140
140
|
</li>
|
|
141
141
|
|
|
142
142
|
|
|
143
143
|
<li class="odd ">
|
|
144
144
|
<div class="item">
|
|
145
|
-
<span class='object_link'><a href="Doing/
|
|
146
|
-
<small>Doing::
|
|
145
|
+
<span class='object_link'><a href="Doing/WWID.html#all_tags-instance_method" title="Doing::WWID#all_tags (method)">#all_tags</a></span>
|
|
146
|
+
<small>Doing::WWID</small>
|
|
147
147
|
</div>
|
|
148
148
|
</li>
|
|
149
149
|
|
|
150
150
|
|
|
151
151
|
<li class="even ">
|
|
152
|
+
<div class="item">
|
|
153
|
+
<span class='object_link'><a href="Doing/TemplateString.html#apply_colors-instance_method" title="Doing::TemplateString#apply_colors (method)">#apply_colors</a></span>
|
|
154
|
+
<small>Doing::TemplateString</small>
|
|
155
|
+
</div>
|
|
156
|
+
</li>
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
<li class="odd ">
|
|
152
160
|
<div class="item">
|
|
153
161
|
<span class='object_link'><a href="Doing/WWID.html#archive-instance_method" title="Doing::WWID#archive (method)">#archive</a></span>
|
|
154
162
|
<small>Doing::WWID</small>
|
|
@@ -156,7 +164,7 @@
|
|
|
156
164
|
</li>
|
|
157
165
|
|
|
158
166
|
|
|
159
|
-
<li class="
|
|
167
|
+
<li class="even ">
|
|
160
168
|
<div class="item">
|
|
161
169
|
<span class='object_link'><a href="Doing/Util.html#args_for_editor-instance_method" title="Doing::Util#args_for_editor (method)">#args_for_editor</a></span>
|
|
162
170
|
<small>Doing::Util</small>
|
|
@@ -164,7 +172,7 @@
|
|
|
164
172
|
</li>
|
|
165
173
|
|
|
166
174
|
|
|
167
|
-
<li class="
|
|
175
|
+
<li class="odd ">
|
|
168
176
|
<div class="item">
|
|
169
177
|
<span class='object_link'><a href="Doing/Color.html#attributes-class_method" title="Doing::Color.attributes (method)">attributes</a></span>
|
|
170
178
|
<small>Doing::Color</small>
|
|
@@ -172,7 +180,7 @@
|
|
|
172
180
|
</li>
|
|
173
181
|
|
|
174
182
|
|
|
175
|
-
<li class="
|
|
183
|
+
<li class="even ">
|
|
176
184
|
<div class="item">
|
|
177
185
|
<span class='object_link'><a href="Doing/WWID.html#auto_tag-instance_method" title="Doing::WWID#auto_tag (method)">#auto_tag</a></span>
|
|
178
186
|
<small>Doing::WWID</small>
|
|
@@ -180,7 +188,7 @@
|
|
|
180
188
|
</li>
|
|
181
189
|
|
|
182
190
|
|
|
183
|
-
<li class="
|
|
191
|
+
<li class="odd ">
|
|
184
192
|
<div class="item">
|
|
185
193
|
<span class='object_link'><a href="Doing/WWID.html#autotag-instance_method" title="Doing::WWID#autotag (method)">#autotag</a></span>
|
|
186
194
|
<small>Doing::WWID</small>
|
|
@@ -188,7 +196,7 @@
|
|
|
188
196
|
</li>
|
|
189
197
|
|
|
190
198
|
|
|
191
|
-
<li class="
|
|
199
|
+
<li class="even ">
|
|
192
200
|
<div class="item">
|
|
193
201
|
<span class='object_link'><a href="Doing/Plugins.html#available_plugins-class_method" title="Doing::Plugins.available_plugins (method)">available_plugins</a></span>
|
|
194
202
|
<small>Doing::Plugins</small>
|
|
@@ -196,7 +204,7 @@
|
|
|
196
204
|
</li>
|
|
197
205
|
|
|
198
206
|
|
|
199
|
-
<li class="
|
|
207
|
+
<li class="odd ">
|
|
200
208
|
<div class="item">
|
|
201
209
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#beginning-instance_method" title="GLI::Commands::MarkdownDocumentListener#beginning (method)">#beginning</a></span>
|
|
202
210
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -204,6 +212,14 @@
|
|
|
204
212
|
</li>
|
|
205
213
|
|
|
206
214
|
|
|
215
|
+
<li class="even ">
|
|
216
|
+
<div class="item">
|
|
217
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#benchmark-instance_method" title="Doing::LogAdapter#benchmark (method)">#benchmark</a></span>
|
|
218
|
+
<small>Doing::LogAdapter</small>
|
|
219
|
+
</div>
|
|
220
|
+
</li>
|
|
221
|
+
|
|
222
|
+
|
|
207
223
|
<li class="odd ">
|
|
208
224
|
<div class="item">
|
|
209
225
|
<span class='object_link'><a href="String.html#cap_first-instance_method" title="String#cap_first (method)">#cap_first</a></span>
|
|
@@ -244,6 +260,22 @@
|
|
|
244
260
|
</li>
|
|
245
261
|
|
|
246
262
|
|
|
263
|
+
<li class="even ">
|
|
264
|
+
<div class="item">
|
|
265
|
+
<span class='object_link'><a href="Doing/WWID.html#choose_section_tag-instance_method" title="Doing::WWID#choose_section_tag (method)">#choose_section_tag</a></span>
|
|
266
|
+
<small>Doing::WWID</small>
|
|
267
|
+
</div>
|
|
268
|
+
</li>
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
<li class="odd ">
|
|
272
|
+
<div class="item">
|
|
273
|
+
<span class='object_link'><a href="Doing/WWID.html#choose_tag-instance_method" title="Doing::WWID#choose_tag (method)">#choose_tag</a></span>
|
|
274
|
+
<small>Doing::WWID</small>
|
|
275
|
+
</div>
|
|
276
|
+
</li>
|
|
277
|
+
|
|
278
|
+
|
|
247
279
|
<li class="even ">
|
|
248
280
|
<div class="item">
|
|
249
281
|
<span class='object_link'><a href="Doing/WWID.html#choose_view-instance_method" title="Doing::WWID#choose_view (method)">#choose_view</a></span>
|
|
@@ -269,6 +301,14 @@
|
|
|
269
301
|
|
|
270
302
|
|
|
271
303
|
<li class="odd ">
|
|
304
|
+
<div class="item">
|
|
305
|
+
<span class='object_link'><a href="PhraseParser/Query.html#clause_to_query-instance_method" title="PhraseParser::Query#clause_to_query (method)">#clause_to_query</a></span>
|
|
306
|
+
<small>PhraseParser::Query</small>
|
|
307
|
+
</div>
|
|
308
|
+
</li>
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
<li class="even ">
|
|
272
312
|
<div class="item">
|
|
273
313
|
<span class='object_link'><a href="String.html#clean_unlinked_urls-instance_method" title="String#clean_unlinked_urls (method)">#clean_unlinked_urls</a></span>
|
|
274
314
|
<small>String</small>
|
|
@@ -276,7 +316,7 @@
|
|
|
276
316
|
</li>
|
|
277
317
|
|
|
278
318
|
|
|
279
|
-
<li class="
|
|
319
|
+
<li class="odd ">
|
|
280
320
|
<div class="item">
|
|
281
321
|
<span class='object_link'><a href="Status.html#clear-instance_method" title="Status#clear (method)">#clear</a></span>
|
|
282
322
|
<small>Status</small>
|
|
@@ -284,7 +324,23 @@
|
|
|
284
324
|
</li>
|
|
285
325
|
|
|
286
326
|
|
|
327
|
+
<li class="even ">
|
|
328
|
+
<div class="item">
|
|
329
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#clear_undone-instance_method" title="Doing::Util::Backup#clear_undone (method)">#clear_undone</a></span>
|
|
330
|
+
<small>Doing::Util::Backup</small>
|
|
331
|
+
</div>
|
|
332
|
+
</li>
|
|
333
|
+
|
|
334
|
+
|
|
287
335
|
<li class="odd ">
|
|
336
|
+
<div class="item">
|
|
337
|
+
<span class='object_link'><a href="Doing/TemplateString.html#colored-instance_method" title="Doing::TemplateString#colored (method)">#colored</a></span>
|
|
338
|
+
<small>Doing::TemplateString</small>
|
|
339
|
+
</div>
|
|
340
|
+
</li>
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
<li class="even ">
|
|
288
344
|
<div class="item">
|
|
289
345
|
<span class='object_link'><a href="Doing/Color.html#coloring-class_method" title="Doing::Color.coloring (method)">coloring</a></span>
|
|
290
346
|
<small>Doing::Color</small>
|
|
@@ -292,7 +348,7 @@
|
|
|
292
348
|
</li>
|
|
293
349
|
|
|
294
350
|
|
|
295
|
-
<li class="
|
|
351
|
+
<li class="odd ">
|
|
296
352
|
<div class="item">
|
|
297
353
|
<span class='object_link'><a href="Doing/Color.html#coloring%3F-class_method" title="Doing::Color.coloring? (method)">coloring?</a></span>
|
|
298
354
|
<small>Doing::Color</small>
|
|
@@ -300,6 +356,14 @@
|
|
|
300
356
|
</li>
|
|
301
357
|
|
|
302
358
|
|
|
359
|
+
<li class="even ">
|
|
360
|
+
<div class="item">
|
|
361
|
+
<span class='object_link'><a href="Doing/TemplateString.html#colors%3F-instance_method" title="Doing::TemplateString#colors? (method)">#colors?</a></span>
|
|
362
|
+
<small>Doing::TemplateString</small>
|
|
363
|
+
</div>
|
|
364
|
+
</li>
|
|
365
|
+
|
|
366
|
+
|
|
303
367
|
<li class="odd ">
|
|
304
368
|
<div class="item">
|
|
305
369
|
<span class='object_link'><a href="Status.html#cols-instance_method" title="Status#cols (method)">#cols</a></span>
|
|
@@ -326,16 +390,16 @@
|
|
|
326
390
|
|
|
327
391
|
<li class="even ">
|
|
328
392
|
<div class="item">
|
|
329
|
-
<span class='object_link'><a href="
|
|
330
|
-
<small>
|
|
393
|
+
<span class='object_link'><a href="String.html#compress-instance_method" title="String#compress (method)">#compress</a></span>
|
|
394
|
+
<small>String</small>
|
|
331
395
|
</div>
|
|
332
396
|
</li>
|
|
333
397
|
|
|
334
398
|
|
|
335
399
|
<li class="odd ">
|
|
336
400
|
<div class="item">
|
|
337
|
-
<span class='object_link'><a href="
|
|
338
|
-
<small>
|
|
401
|
+
<span class='object_link'><a href="Doing/Note.html#compress-instance_method" title="Doing::Note#compress (method)">#compress</a></span>
|
|
402
|
+
<small>Doing::Note</small>
|
|
339
403
|
</div>
|
|
340
404
|
</li>
|
|
341
405
|
|
|
@@ -389,14 +453,6 @@
|
|
|
389
453
|
|
|
390
454
|
|
|
391
455
|
<li class="even ">
|
|
392
|
-
<div class="item">
|
|
393
|
-
<span class='object_link'><a href="Doing/Configuration.html#config_file=-instance_method" title="Doing::Configuration#config_file= (method)">#config_file=</a></span>
|
|
394
|
-
<small>Doing::Configuration</small>
|
|
395
|
-
</div>
|
|
396
|
-
</li>
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
<li class="odd ">
|
|
400
456
|
<div class="item">
|
|
401
457
|
<span class='object_link'><a href="Doing/Configuration.html#configure-instance_method" title="Doing::Configuration#configure (method)">#configure</a></span>
|
|
402
458
|
<small>Doing::Configuration</small>
|
|
@@ -404,7 +460,7 @@
|
|
|
404
460
|
</li>
|
|
405
461
|
|
|
406
462
|
|
|
407
|
-
<li class="
|
|
463
|
+
<li class="odd ">
|
|
408
464
|
<div class="item">
|
|
409
465
|
<span class='object_link'><a href="Doing/WWID.html#content-instance_method" title="Doing::WWID#content (method)">#content</a></span>
|
|
410
466
|
<small>Doing::WWID</small>
|
|
@@ -412,7 +468,7 @@
|
|
|
412
468
|
</li>
|
|
413
469
|
|
|
414
470
|
|
|
415
|
-
<li class="
|
|
471
|
+
<li class="even ">
|
|
416
472
|
<div class="item">
|
|
417
473
|
<span class='object_link'><a href="Doing/LogAdapter.html#count-instance_method" title="Doing::LogAdapter#count (method)">#count</a></span>
|
|
418
474
|
<small>Doing::LogAdapter</small>
|
|
@@ -420,7 +476,7 @@
|
|
|
420
476
|
</li>
|
|
421
477
|
|
|
422
478
|
|
|
423
|
-
<li class="
|
|
479
|
+
<li class="odd ">
|
|
424
480
|
<div class="item">
|
|
425
481
|
<span class='object_link'><a href="Doing/WWID.html#create-instance_method" title="Doing::WWID#create (method)">#create</a></span>
|
|
426
482
|
<small>Doing::WWID</small>
|
|
@@ -428,7 +484,7 @@
|
|
|
428
484
|
</li>
|
|
429
485
|
|
|
430
486
|
|
|
431
|
-
<li class="
|
|
487
|
+
<li class="even ">
|
|
432
488
|
<div class="item">
|
|
433
489
|
<span class='object_link'><a href="Doing/WWID.html#current_section-instance_method" title="Doing::WWID#current_section (method)">#current_section</a></span>
|
|
434
490
|
<small>Doing::WWID</small>
|
|
@@ -436,7 +492,7 @@
|
|
|
436
492
|
</li>
|
|
437
493
|
|
|
438
494
|
|
|
439
|
-
<li class="
|
|
495
|
+
<li class="odd ">
|
|
440
496
|
<div class="item">
|
|
441
497
|
<span class='object_link'><a href="Doing/Item.html#date-instance_method" title="Doing::Item#date (method)">#date</a></span>
|
|
442
498
|
<small>Doing::Item</small>
|
|
@@ -444,7 +500,7 @@
|
|
|
444
500
|
</li>
|
|
445
501
|
|
|
446
502
|
|
|
447
|
-
<li class="
|
|
503
|
+
<li class="even ">
|
|
448
504
|
<div class="item">
|
|
449
505
|
<span class='object_link'><a href="Doing/LogAdapter.html#debug-instance_method" title="Doing::LogAdapter#debug (method)">#debug</a></span>
|
|
450
506
|
<small>Doing::LogAdapter</small>
|
|
@@ -452,7 +508,7 @@
|
|
|
452
508
|
</li>
|
|
453
509
|
|
|
454
510
|
|
|
455
|
-
<li class="
|
|
511
|
+
<li class="odd ">
|
|
456
512
|
<div class="item">
|
|
457
513
|
<span class='object_link'><a href="Doing/WWID.html#dedup-instance_method" title="Doing::WWID#dedup (method)">#dedup</a></span>
|
|
458
514
|
<small>Doing::WWID</small>
|
|
@@ -460,7 +516,7 @@
|
|
|
460
516
|
</li>
|
|
461
517
|
|
|
462
518
|
|
|
463
|
-
<li class="
|
|
519
|
+
<li class="even ">
|
|
464
520
|
<div class="item">
|
|
465
521
|
<span class='object_link'><a href="String.html#dedup_tags-instance_method" title="String#dedup_tags (method)">#dedup_tags</a></span>
|
|
466
522
|
<small>String</small>
|
|
@@ -468,7 +524,7 @@
|
|
|
468
524
|
</li>
|
|
469
525
|
|
|
470
526
|
|
|
471
|
-
<li class="
|
|
527
|
+
<li class="odd ">
|
|
472
528
|
<div class="item">
|
|
473
529
|
<span class='object_link'><a href="String.html#dedup_tags!-instance_method" title="String#dedup_tags! (method)">#dedup_tags!</a></span>
|
|
474
530
|
<small>String</small>
|
|
@@ -476,7 +532,7 @@
|
|
|
476
532
|
</li>
|
|
477
533
|
|
|
478
534
|
|
|
479
|
-
<li class="
|
|
535
|
+
<li class="even ">
|
|
480
536
|
<div class="item">
|
|
481
537
|
<span class='object_link'><a href="Hash.html#deep_freeze-instance_method" title="Hash#deep_freeze (method)">#deep_freeze</a></span>
|
|
482
538
|
<small>Hash</small>
|
|
@@ -484,7 +540,7 @@
|
|
|
484
540
|
</li>
|
|
485
541
|
|
|
486
542
|
|
|
487
|
-
<li class="
|
|
543
|
+
<li class="odd ">
|
|
488
544
|
<div class="item">
|
|
489
545
|
<span class='object_link'><a href="Hash.html#deep_freeze!-instance_method" title="Hash#deep_freeze! (method)">#deep_freeze!</a></span>
|
|
490
546
|
<small>Hash</small>
|
|
@@ -492,7 +548,7 @@
|
|
|
492
548
|
</li>
|
|
493
549
|
|
|
494
550
|
|
|
495
|
-
<li class="
|
|
551
|
+
<li class="even ">
|
|
496
552
|
<div class="item">
|
|
497
553
|
<span class='object_link'><a href="Doing/Util.html#deep_merge_hashes-instance_method" title="Doing::Util#deep_merge_hashes (method)">#deep_merge_hashes</a></span>
|
|
498
554
|
<small>Doing::Util</small>
|
|
@@ -500,7 +556,7 @@
|
|
|
500
556
|
</li>
|
|
501
557
|
|
|
502
558
|
|
|
503
|
-
<li class="
|
|
559
|
+
<li class="odd ">
|
|
504
560
|
<div class="item">
|
|
505
561
|
<span class='object_link'><a href="Doing/Util.html#deep_merge_hashes!-instance_method" title="Doing::Util#deep_merge_hashes! (method)">#deep_merge_hashes!</a></span>
|
|
506
562
|
<small>Doing::Util</small>
|
|
@@ -508,7 +564,7 @@
|
|
|
508
564
|
</li>
|
|
509
565
|
|
|
510
566
|
|
|
511
|
-
<li class="
|
|
567
|
+
<li class="even ">
|
|
512
568
|
<div class="item">
|
|
513
569
|
<span class='object_link'><a href="Hash.html#deep_set-instance_method" title="Hash#deep_set (method)">#deep_set</a></span>
|
|
514
570
|
<small>Hash</small>
|
|
@@ -516,7 +572,7 @@
|
|
|
516
572
|
</li>
|
|
517
573
|
|
|
518
574
|
|
|
519
|
-
<li class="
|
|
575
|
+
<li class="odd ">
|
|
520
576
|
<div class="item">
|
|
521
577
|
<span class='object_link'><a href="Doing/Prompt.html#default_answer-class_method" title="Doing::Prompt.default_answer (method)">default_answer</a></span>
|
|
522
578
|
<small>Doing::Prompt</small>
|
|
@@ -524,7 +580,7 @@
|
|
|
524
580
|
</li>
|
|
525
581
|
|
|
526
582
|
|
|
527
|
-
<li class="
|
|
583
|
+
<li class="even ">
|
|
528
584
|
<div class="item">
|
|
529
585
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#default_command-instance_method" title="GLI::Commands::MarkdownDocumentListener#default_command (method)">#default_command</a></span>
|
|
530
586
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -532,7 +588,7 @@
|
|
|
532
588
|
</li>
|
|
533
589
|
|
|
534
590
|
|
|
535
|
-
<li class="
|
|
591
|
+
<li class="odd ">
|
|
536
592
|
<div class="item">
|
|
537
593
|
<span class='object_link'><a href="Doing/Configuration.html#default_config_file-instance_method" title="Doing::Configuration#default_config_file (method)">#default_config_file</a></span>
|
|
538
594
|
<small>Doing::Configuration</small>
|
|
@@ -540,7 +596,7 @@
|
|
|
540
596
|
</li>
|
|
541
597
|
|
|
542
598
|
|
|
543
|
-
<li class="
|
|
599
|
+
<li class="even ">
|
|
544
600
|
<div class="item">
|
|
545
601
|
<span class='object_link'><a href="Doing/Util.html#default_editor-instance_method" title="Doing::Util#default_editor (method)">#default_editor</a></span>
|
|
546
602
|
<small>Doing::Util</small>
|
|
@@ -548,7 +604,7 @@
|
|
|
548
604
|
</li>
|
|
549
605
|
|
|
550
606
|
|
|
551
|
-
<li class="
|
|
607
|
+
<li class="odd ">
|
|
552
608
|
<div class="item">
|
|
553
609
|
<span class='object_link'><a href="Doing/WWID.html#default_option-instance_method" title="Doing::WWID#default_option (method)">#default_option</a></span>
|
|
554
610
|
<small>Doing::WWID</small>
|
|
@@ -556,7 +612,7 @@
|
|
|
556
612
|
</li>
|
|
557
613
|
|
|
558
614
|
|
|
559
|
-
<li class="
|
|
615
|
+
<li class="even ">
|
|
560
616
|
<div class="item">
|
|
561
617
|
<span class='object_link'><a href="Doing/Items.html#delete_item-instance_method" title="Doing::Items#delete_item (method)">#delete_item</a></span>
|
|
562
618
|
<small>Doing::Items</small>
|
|
@@ -564,7 +620,7 @@
|
|
|
564
620
|
</li>
|
|
565
621
|
|
|
566
622
|
|
|
567
|
-
<li class="
|
|
623
|
+
<li class="odd ">
|
|
568
624
|
<div class="item">
|
|
569
625
|
<span class='object_link'><a href="Doing/WWID.html#doing_file-instance_method" title="Doing::WWID#doing_file (method)">#doing_file</a></span>
|
|
570
626
|
<small>Doing::WWID</small>
|
|
@@ -572,7 +628,7 @@
|
|
|
572
628
|
</li>
|
|
573
629
|
|
|
574
630
|
|
|
575
|
-
<li class="
|
|
631
|
+
<li class="even ">
|
|
576
632
|
<div class="item">
|
|
577
633
|
<span class='object_link'><a href="Doing/Util.html#duplicable%3F-instance_method" title="Doing::Util#duplicable? (method)">#duplicable?</a></span>
|
|
578
634
|
<small>Doing::Util</small>
|
|
@@ -580,7 +636,7 @@
|
|
|
580
636
|
</li>
|
|
581
637
|
|
|
582
638
|
|
|
583
|
-
<li class="
|
|
639
|
+
<li class="odd ">
|
|
584
640
|
<div class="item">
|
|
585
641
|
<span class='object_link'><a href="Doing/Util.html#duplicate_frozen_values-instance_method" title="Doing::Util#duplicate_frozen_values (method)">#duplicate_frozen_values</a></span>
|
|
586
642
|
<small>Doing::Util</small>
|
|
@@ -588,6 +644,14 @@
|
|
|
588
644
|
</li>
|
|
589
645
|
|
|
590
646
|
|
|
647
|
+
<li class="even ">
|
|
648
|
+
<div class="item">
|
|
649
|
+
<span class='object_link'><a href="Doing/Item.html#duration-instance_method" title="Doing::Item#duration (method)">#duration</a></span>
|
|
650
|
+
<small>Doing::Item</small>
|
|
651
|
+
</div>
|
|
652
|
+
</li>
|
|
653
|
+
|
|
654
|
+
|
|
591
655
|
<li class="odd ">
|
|
592
656
|
<div class="item">
|
|
593
657
|
<span class='object_link'><a href="Doing/WWID.html#edit_last-instance_method" title="Doing::WWID#edit_last (method)">#edit_last</a></span>
|
|
@@ -646,8 +710,8 @@
|
|
|
646
710
|
|
|
647
711
|
<li class="even ">
|
|
648
712
|
<div class="item">
|
|
649
|
-
<span class='object_link'><a href="Doing/
|
|
650
|
-
<small>Doing::
|
|
713
|
+
<span class='object_link'><a href="Doing/Prompt.html#enter_text-class_method" title="Doing::Prompt.enter_text (method)">enter_text</a></span>
|
|
714
|
+
<small>Doing::Prompt</small>
|
|
651
715
|
</div>
|
|
652
716
|
</li>
|
|
653
717
|
|
|
@@ -661,6 +725,14 @@
|
|
|
661
725
|
|
|
662
726
|
|
|
663
727
|
<li class="even ">
|
|
728
|
+
<div class="item">
|
|
729
|
+
<span class='object_link'><a href="Doing/Note.html#equal%3F-instance_method" title="Doing::Note#equal? (method)">#equal?</a></span>
|
|
730
|
+
<small>Doing::Note</small>
|
|
731
|
+
</div>
|
|
732
|
+
</li>
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
<li class="odd ">
|
|
664
736
|
<div class="item">
|
|
665
737
|
<span class='object_link'><a href="Doing/LogAdapter.html#error-instance_method" title="Doing::LogAdapter#error (method)">#error</a></span>
|
|
666
738
|
<small>Doing::LogAdapter</small>
|
|
@@ -668,7 +740,7 @@
|
|
|
668
740
|
</li>
|
|
669
741
|
|
|
670
742
|
|
|
671
|
-
<li class="
|
|
743
|
+
<li class="even ">
|
|
672
744
|
<div class="item">
|
|
673
745
|
<span class='object_link'><a href="Status.html#esc-instance_method" title="Status#esc (method)">#esc</a></span>
|
|
674
746
|
<small>Status</small>
|
|
@@ -676,6 +748,14 @@
|
|
|
676
748
|
</li>
|
|
677
749
|
|
|
678
750
|
|
|
751
|
+
<li class="odd ">
|
|
752
|
+
<div class="item">
|
|
753
|
+
<span class='object_link'><a href="Doing/Configuration.html#exact_match%3F-instance_method" title="Doing::Configuration#exact_match? (method)">#exact_match?</a></span>
|
|
754
|
+
<small>Doing::Configuration</small>
|
|
755
|
+
</div>
|
|
756
|
+
</li>
|
|
757
|
+
|
|
758
|
+
|
|
679
759
|
<li class="even ">
|
|
680
760
|
<div class="item">
|
|
681
761
|
<span class='object_link'><a href="Doing/Util.html#exec_available-instance_method" title="Doing::Util#exec_available (method)">#exec_available</a></span>
|
|
@@ -685,6 +765,14 @@
|
|
|
685
765
|
|
|
686
766
|
|
|
687
767
|
<li class="odd ">
|
|
768
|
+
<div class="item">
|
|
769
|
+
<span class='object_link'><a href="Doing/TemplateString.html#fill-instance_method" title="Doing::TemplateString#fill (method)">#fill</a></span>
|
|
770
|
+
<small>Doing::TemplateString</small>
|
|
771
|
+
</div>
|
|
772
|
+
</li>
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
<li class="even ">
|
|
688
776
|
<div class="item">
|
|
689
777
|
<span class='object_link'><a href="Doing/WWID.html#filter_items-instance_method" title="Doing::WWID#filter_items (method)">#filter_items</a></span>
|
|
690
778
|
<small>Doing::WWID</small>
|
|
@@ -692,7 +780,7 @@
|
|
|
692
780
|
</li>
|
|
693
781
|
|
|
694
782
|
|
|
695
|
-
<li class="
|
|
783
|
+
<li class="odd ">
|
|
696
784
|
<div class="item">
|
|
697
785
|
<span class='object_link'><a href="Doing/Util.html#find_default_editor-instance_method" title="Doing::Util#find_default_editor (method)">#find_default_editor</a></span>
|
|
698
786
|
<small>Doing::Util</small>
|
|
@@ -700,7 +788,7 @@
|
|
|
700
788
|
</li>
|
|
701
789
|
|
|
702
790
|
|
|
703
|
-
<li class="
|
|
791
|
+
<li class="even ">
|
|
704
792
|
<div class="item">
|
|
705
793
|
<span class='object_link'><a href="Doing/Util.html#first_available_exec-instance_method" title="Doing::Util#first_available_exec (method)">#first_available_exec</a></span>
|
|
706
794
|
<small>Doing::Util</small>
|
|
@@ -708,7 +796,7 @@
|
|
|
708
796
|
</li>
|
|
709
797
|
|
|
710
798
|
|
|
711
|
-
<li class="
|
|
799
|
+
<li class="odd ">
|
|
712
800
|
<div class="item">
|
|
713
801
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#flag-instance_method" title="GLI::Commands::MarkdownDocumentListener#flag (method)">#flag</a></span>
|
|
714
802
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -716,6 +804,14 @@
|
|
|
716
804
|
</li>
|
|
717
805
|
|
|
718
806
|
|
|
807
|
+
<li class="even ">
|
|
808
|
+
<div class="item">
|
|
809
|
+
<span class='object_link'><a href="Doing/Configuration.html#force_answer-instance_method" title="Doing::Configuration#force_answer (method)">#force_answer</a></span>
|
|
810
|
+
<small>Doing::Configuration</small>
|
|
811
|
+
</div>
|
|
812
|
+
</li>
|
|
813
|
+
|
|
814
|
+
|
|
719
815
|
<li class="odd ">
|
|
720
816
|
<div class="item">
|
|
721
817
|
<span class='object_link'><a href="Doing/Prompt.html#force_answer-class_method" title="Doing::Prompt.force_answer (method)">force_answer</a></span>
|
|
@@ -845,6 +941,14 @@
|
|
|
845
941
|
|
|
846
942
|
|
|
847
943
|
<li class="odd ">
|
|
944
|
+
<div class="item">
|
|
945
|
+
<span class='object_link'><a href="Time.html#humanize-instance_method" title="Time#humanize (method)">#humanize</a></span>
|
|
946
|
+
<small>Time</small>
|
|
947
|
+
</div>
|
|
948
|
+
</li>
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
<li class="even ">
|
|
848
952
|
<div class="item">
|
|
849
953
|
<span class='object_link'><a href="Doing/Item.html#id-instance_method" title="Doing::Item#id (method)">#id</a></span>
|
|
850
954
|
<small>Doing::Item</small>
|
|
@@ -852,7 +956,7 @@
|
|
|
852
956
|
</li>
|
|
853
957
|
|
|
854
958
|
|
|
855
|
-
<li class="
|
|
959
|
+
<li class="odd ">
|
|
856
960
|
<div class="item">
|
|
857
961
|
<span class='object_link'><a href="String.html#ignore%3F-instance_method" title="String#ignore? (method)">#ignore?</a></span>
|
|
858
962
|
<small>String</small>
|
|
@@ -860,6 +964,14 @@
|
|
|
860
964
|
</li>
|
|
861
965
|
|
|
862
966
|
|
|
967
|
+
<li class="even ">
|
|
968
|
+
<div class="item">
|
|
969
|
+
<span class='object_link'><a href="Doing/Item.html#ignore_case-instance_method" title="Doing::Item#ignore_case (method)">#ignore_case</a></span>
|
|
970
|
+
<small>Doing::Item</small>
|
|
971
|
+
</div>
|
|
972
|
+
</li>
|
|
973
|
+
|
|
974
|
+
|
|
863
975
|
<li class="odd ">
|
|
864
976
|
<div class="item">
|
|
865
977
|
<span class='object_link'><a href="Doing/WWID.html#import-instance_method" title="Doing::WWID#import (method)">#import</a></span>
|
|
@@ -894,53 +1006,45 @@
|
|
|
894
1006
|
|
|
895
1007
|
<li class="odd ">
|
|
896
1008
|
<div class="item">
|
|
897
|
-
<span class='object_link'><a href="
|
|
898
|
-
<small>
|
|
1009
|
+
<span class='object_link'><a href="Doing/Configuration.html#initialize-instance_method" title="Doing::Configuration#initialize (method)">#initialize</a></span>
|
|
1010
|
+
<small>Doing::Configuration</small>
|
|
899
1011
|
</div>
|
|
900
1012
|
</li>
|
|
901
1013
|
|
|
902
1014
|
|
|
903
1015
|
<li class="even ">
|
|
904
1016
|
<div class="item">
|
|
905
|
-
<span class='object_link'><a href="Doing/
|
|
906
|
-
<small>Doing::
|
|
1017
|
+
<span class='object_link'><a href="Doing/Items.html#initialize-instance_method" title="Doing::Items#initialize (method)">#initialize</a></span>
|
|
1018
|
+
<small>Doing::Items</small>
|
|
907
1019
|
</div>
|
|
908
1020
|
</li>
|
|
909
1021
|
|
|
910
1022
|
|
|
911
1023
|
<li class="odd ">
|
|
912
1024
|
<div class="item">
|
|
913
|
-
<span class='object_link'><a href="
|
|
914
|
-
<small>
|
|
1025
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#initialize-instance_method" title="PhraseParser::TermClause#initialize (method)">#initialize</a></span>
|
|
1026
|
+
<small>PhraseParser::TermClause</small>
|
|
915
1027
|
</div>
|
|
916
1028
|
</li>
|
|
917
1029
|
|
|
918
1030
|
|
|
919
1031
|
<li class="even ">
|
|
920
1032
|
<div class="item">
|
|
921
|
-
<span class='object_link'><a href="
|
|
922
|
-
<small>
|
|
1033
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#initialize-instance_method" title="PhraseParser::PhraseClause#initialize (method)">#initialize</a></span>
|
|
1034
|
+
<small>PhraseParser::PhraseClause</small>
|
|
923
1035
|
</div>
|
|
924
1036
|
</li>
|
|
925
1037
|
|
|
926
1038
|
|
|
927
1039
|
<li class="odd ">
|
|
928
1040
|
<div class="item">
|
|
929
|
-
<span class='object_link'><a href="
|
|
930
|
-
<small>
|
|
1041
|
+
<span class='object_link'><a href="PhraseParser/Query.html#initialize-instance_method" title="PhraseParser::Query#initialize (method)">#initialize</a></span>
|
|
1042
|
+
<small>PhraseParser::Query</small>
|
|
931
1043
|
</div>
|
|
932
1044
|
</li>
|
|
933
1045
|
|
|
934
1046
|
|
|
935
1047
|
<li class="even ">
|
|
936
|
-
<div class="item">
|
|
937
|
-
<span class='object_link'><a href="Doing/LogAdapter.html#initialize-instance_method" title="Doing::LogAdapter#initialize (method)">#initialize</a></span>
|
|
938
|
-
<small>Doing::LogAdapter</small>
|
|
939
|
-
</div>
|
|
940
|
-
</li>
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
<li class="odd ">
|
|
944
1048
|
<div class="item">
|
|
945
1049
|
<span class='object_link'><a href="Doing/Errors/UserCancelled.html#initialize-instance_method" title="Doing::Errors::UserCancelled#initialize (method)">#initialize</a></span>
|
|
946
1050
|
<small>Doing::Errors::UserCancelled</small>
|
|
@@ -948,7 +1052,7 @@
|
|
|
948
1052
|
</li>
|
|
949
1053
|
|
|
950
1054
|
|
|
951
|
-
<li class="
|
|
1055
|
+
<li class="odd ">
|
|
952
1056
|
<div class="item">
|
|
953
1057
|
<span class='object_link'><a href="Doing/Errors/EmptyInput.html#initialize-instance_method" title="Doing::Errors::EmptyInput#initialize (method)">#initialize</a></span>
|
|
954
1058
|
<small>Doing::Errors::EmptyInput</small>
|
|
@@ -956,7 +1060,7 @@
|
|
|
956
1060
|
</li>
|
|
957
1061
|
|
|
958
1062
|
|
|
959
|
-
<li class="
|
|
1063
|
+
<li class="even ">
|
|
960
1064
|
<div class="item">
|
|
961
1065
|
<span class='object_link'><a href="Doing/Errors/DoingStandardError.html#initialize-instance_method" title="Doing::Errors::DoingStandardError#initialize (method)">#initialize</a></span>
|
|
962
1066
|
<small>Doing::Errors::DoingStandardError</small>
|
|
@@ -964,7 +1068,7 @@
|
|
|
964
1068
|
</li>
|
|
965
1069
|
|
|
966
1070
|
|
|
967
|
-
<li class="
|
|
1071
|
+
<li class="odd ">
|
|
968
1072
|
<div class="item">
|
|
969
1073
|
<span class='object_link'><a href="Doing/Errors/WrongCommand.html#initialize-instance_method" title="Doing::Errors::WrongCommand#initialize (method)">#initialize</a></span>
|
|
970
1074
|
<small>Doing::Errors::WrongCommand</small>
|
|
@@ -972,7 +1076,7 @@
|
|
|
972
1076
|
</li>
|
|
973
1077
|
|
|
974
1078
|
|
|
975
|
-
<li class="
|
|
1079
|
+
<li class="even ">
|
|
976
1080
|
<div class="item">
|
|
977
1081
|
<span class='object_link'><a href="Doing/Errors/DoingRuntimeError.html#initialize-instance_method" title="Doing::Errors::DoingRuntimeError#initialize (method)">#initialize</a></span>
|
|
978
1082
|
<small>Doing::Errors::DoingRuntimeError</small>
|
|
@@ -980,7 +1084,7 @@
|
|
|
980
1084
|
</li>
|
|
981
1085
|
|
|
982
1086
|
|
|
983
|
-
<li class="
|
|
1087
|
+
<li class="odd ">
|
|
984
1088
|
<div class="item">
|
|
985
1089
|
<span class='object_link'><a href="Doing/Errors/NoResults.html#initialize-instance_method" title="Doing::Errors::NoResults#initialize (method)">#initialize</a></span>
|
|
986
1090
|
<small>Doing::Errors::NoResults</small>
|
|
@@ -988,7 +1092,7 @@
|
|
|
988
1092
|
</li>
|
|
989
1093
|
|
|
990
1094
|
|
|
991
|
-
<li class="
|
|
1095
|
+
<li class="even ">
|
|
992
1096
|
<div class="item">
|
|
993
1097
|
<span class='object_link'><a href="Doing/Errors/DoingNoTraceError.html#initialize-instance_method" title="Doing::Errors::DoingNoTraceError#initialize (method)">#initialize</a></span>
|
|
994
1098
|
<small>Doing::Errors::DoingNoTraceError</small>
|
|
@@ -996,7 +1100,7 @@
|
|
|
996
1100
|
</li>
|
|
997
1101
|
|
|
998
1102
|
|
|
999
|
-
<li class="
|
|
1103
|
+
<li class="odd ">
|
|
1000
1104
|
<div class="item">
|
|
1001
1105
|
<span class='object_link'><a href="Doing/Errors/PluginException.html#initialize-instance_method" title="Doing::Errors::PluginException#initialize (method)">#initialize</a></span>
|
|
1002
1106
|
<small>Doing::Errors::PluginException</small>
|
|
@@ -1004,6 +1108,46 @@
|
|
|
1004
1108
|
</li>
|
|
1005
1109
|
|
|
1006
1110
|
|
|
1111
|
+
<li class="even ">
|
|
1112
|
+
<div class="item">
|
|
1113
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#initialize-instance_method" title="Doing::LogAdapter#initialize (method)">#initialize</a></span>
|
|
1114
|
+
<small>Doing::LogAdapter</small>
|
|
1115
|
+
</div>
|
|
1116
|
+
</li>
|
|
1117
|
+
|
|
1118
|
+
|
|
1119
|
+
<li class="odd ">
|
|
1120
|
+
<div class="item">
|
|
1121
|
+
<span class='object_link'><a href="Doing/WWID.html#initialize-instance_method" title="Doing::WWID#initialize (method)">#initialize</a></span>
|
|
1122
|
+
<small>Doing::WWID</small>
|
|
1123
|
+
</div>
|
|
1124
|
+
</li>
|
|
1125
|
+
|
|
1126
|
+
|
|
1127
|
+
<li class="even ">
|
|
1128
|
+
<div class="item">
|
|
1129
|
+
<span class='object_link'><a href="Doing/TemplateString.html#initialize-instance_method" title="Doing::TemplateString#initialize (method)">#initialize</a></span>
|
|
1130
|
+
<small>Doing::TemplateString</small>
|
|
1131
|
+
</div>
|
|
1132
|
+
</li>
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
<li class="odd ">
|
|
1136
|
+
<div class="item">
|
|
1137
|
+
<span class='object_link'><a href="Doing/Note.html#initialize-instance_method" title="Doing::Note#initialize (method)">#initialize</a></span>
|
|
1138
|
+
<small>Doing::Note</small>
|
|
1139
|
+
</div>
|
|
1140
|
+
</li>
|
|
1141
|
+
|
|
1142
|
+
|
|
1143
|
+
<li class="even ">
|
|
1144
|
+
<div class="item">
|
|
1145
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#initialize-instance_method" title="BooleanTermParser::Clause#initialize (method)">#initialize</a></span>
|
|
1146
|
+
<small>BooleanTermParser::Clause</small>
|
|
1147
|
+
</div>
|
|
1148
|
+
</li>
|
|
1149
|
+
|
|
1150
|
+
|
|
1007
1151
|
<li class="odd ">
|
|
1008
1152
|
<div class="item">
|
|
1009
1153
|
<span class='object_link'><a href="Doing/Section.html#initialize-instance_method" title="Doing::Section#initialize (method)">#initialize</a></span>
|
|
@@ -1014,8 +1158,24 @@
|
|
|
1014
1158
|
|
|
1015
1159
|
<li class="even ">
|
|
1016
1160
|
<div class="item">
|
|
1017
|
-
<span class='object_link'><a href="
|
|
1018
|
-
<small>
|
|
1161
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#initialize-instance_method" title="BooleanTermParser::Query#initialize (method)">#initialize</a></span>
|
|
1162
|
+
<small>BooleanTermParser::Query</small>
|
|
1163
|
+
</div>
|
|
1164
|
+
</li>
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
<li class="odd ">
|
|
1168
|
+
<div class="item">
|
|
1169
|
+
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#initialize-instance_method" title="GLI::Commands::MarkdownDocumentListener#initialize (method)">#initialize</a></span>
|
|
1170
|
+
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
1171
|
+
</div>
|
|
1172
|
+
</li>
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
<li class="even ">
|
|
1176
|
+
<div class="item">
|
|
1177
|
+
<span class='object_link'><a href="Doing/Item.html#initialize-instance_method" title="Doing::Item#initialize (method)">#initialize</a></span>
|
|
1178
|
+
<small>Doing::Item</small>
|
|
1019
1179
|
</div>
|
|
1020
1180
|
</li>
|
|
1021
1181
|
|
|
@@ -1150,7 +1310,7 @@
|
|
|
1150
1310
|
|
|
1151
1311
|
<li class="odd ">
|
|
1152
1312
|
<div class="item">
|
|
1153
|
-
<span class='object_link'><a href="Doing/LogAdapter.html#
|
|
1313
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#log_benchmarks-instance_method" title="Doing::LogAdapter#log_benchmarks (method)">#log_benchmarks</a></span>
|
|
1154
1314
|
<small>Doing::LogAdapter</small>
|
|
1155
1315
|
</div>
|
|
1156
1316
|
</li>
|
|
@@ -1158,7 +1318,7 @@
|
|
|
1158
1318
|
|
|
1159
1319
|
<li class="even ">
|
|
1160
1320
|
<div class="item">
|
|
1161
|
-
<span class='object_link'><a href="Doing/LogAdapter.html#
|
|
1321
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#log_change-instance_method" title="Doing::LogAdapter#log_change (method)">#log_change</a></span>
|
|
1162
1322
|
<small>Doing::LogAdapter</small>
|
|
1163
1323
|
</div>
|
|
1164
1324
|
</li>
|
|
@@ -1166,13 +1326,21 @@
|
|
|
1166
1326
|
|
|
1167
1327
|
<li class="odd ">
|
|
1168
1328
|
<div class="item">
|
|
1169
|
-
<span class='object_link'><a href="Doing/LogAdapter.html#
|
|
1329
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#log_level=-instance_method" title="Doing::LogAdapter#log_level= (method)">#log_level=</a></span>
|
|
1170
1330
|
<small>Doing::LogAdapter</small>
|
|
1171
1331
|
</div>
|
|
1172
1332
|
</li>
|
|
1173
1333
|
|
|
1174
1334
|
|
|
1175
1335
|
<li class="even ">
|
|
1336
|
+
<div class="item">
|
|
1337
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#log_now-instance_method" title="Doing::LogAdapter#log_now (method)">#log_now</a></span>
|
|
1338
|
+
<small>Doing::LogAdapter</small>
|
|
1339
|
+
</div>
|
|
1340
|
+
</li>
|
|
1341
|
+
|
|
1342
|
+
|
|
1343
|
+
<li class="odd ">
|
|
1176
1344
|
<div class="item">
|
|
1177
1345
|
<span class='object_link'><a href="Array.html#log_tags-instance_method" title="Array#log_tags (method)">#log_tags</a></span>
|
|
1178
1346
|
<small>Array</small>
|
|
@@ -1180,7 +1348,7 @@
|
|
|
1180
1348
|
</li>
|
|
1181
1349
|
|
|
1182
1350
|
|
|
1183
|
-
<li class="
|
|
1351
|
+
<li class="even ">
|
|
1184
1352
|
<div class="item">
|
|
1185
1353
|
<span class='object_link'><a href="Doing/WWID.html#logger-instance_method" title="Doing::WWID#logger (method)">#logger</a></span>
|
|
1186
1354
|
<small>Doing::WWID</small>
|
|
@@ -1188,6 +1356,30 @@
|
|
|
1188
1356
|
</li>
|
|
1189
1357
|
|
|
1190
1358
|
|
|
1359
|
+
<li class="odd ">
|
|
1360
|
+
<div class="item">
|
|
1361
|
+
<span class='object_link'><a href="PhraseParser/Query.html#match-instance_method" title="PhraseParser::Query#match (method)">#match</a></span>
|
|
1362
|
+
<small>PhraseParser::Query</small>
|
|
1363
|
+
</div>
|
|
1364
|
+
</li>
|
|
1365
|
+
|
|
1366
|
+
|
|
1367
|
+
<li class="even ">
|
|
1368
|
+
<div class="item">
|
|
1369
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#match-instance_method" title="BooleanTermParser::Query#match (method)">#match</a></span>
|
|
1370
|
+
<small>BooleanTermParser::Query</small>
|
|
1371
|
+
</div>
|
|
1372
|
+
</li>
|
|
1373
|
+
|
|
1374
|
+
|
|
1375
|
+
<li class="odd ">
|
|
1376
|
+
<div class="item">
|
|
1377
|
+
<span class='object_link'><a href="PhraseParser/Query.html#match_phrase-instance_method" title="PhraseParser::Query#match_phrase (method)">#match_phrase</a></span>
|
|
1378
|
+
<small>PhraseParser::Query</small>
|
|
1379
|
+
</div>
|
|
1380
|
+
</li>
|
|
1381
|
+
|
|
1382
|
+
|
|
1191
1383
|
<li class="even ">
|
|
1192
1384
|
<div class="item">
|
|
1193
1385
|
<span class='object_link'><a href="Doing/Util.html#mergable%3F-instance_method" title="Doing::Util#mergable? (method)">#mergable?</a></span>
|
|
@@ -1236,6 +1428,38 @@
|
|
|
1236
1428
|
</li>
|
|
1237
1429
|
|
|
1238
1430
|
|
|
1431
|
+
<li class="even ">
|
|
1432
|
+
<div class="item">
|
|
1433
|
+
<span class='object_link'><a href="PhraseParser/Query.html#must_clauses-instance_method" title="PhraseParser::Query#must_clauses (method)">#must_clauses</a></span>
|
|
1434
|
+
<small>PhraseParser::Query</small>
|
|
1435
|
+
</div>
|
|
1436
|
+
</li>
|
|
1437
|
+
|
|
1438
|
+
|
|
1439
|
+
<li class="odd ">
|
|
1440
|
+
<div class="item">
|
|
1441
|
+
<span class='object_link'><a href="PhraseParser/Query.html#must_not_clauses-instance_method" title="PhraseParser::Query#must_not_clauses (method)">#must_not_clauses</a></span>
|
|
1442
|
+
<small>PhraseParser::Query</small>
|
|
1443
|
+
</div>
|
|
1444
|
+
</li>
|
|
1445
|
+
|
|
1446
|
+
|
|
1447
|
+
<li class="even ">
|
|
1448
|
+
<div class="item">
|
|
1449
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#must_not_terms-instance_method" title="BooleanTermParser::Query#must_not_terms (method)">#must_not_terms</a></span>
|
|
1450
|
+
<small>BooleanTermParser::Query</small>
|
|
1451
|
+
</div>
|
|
1452
|
+
</li>
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
|
+
<li class="odd ">
|
|
1456
|
+
<div class="item">
|
|
1457
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#must_terms-instance_method" title="BooleanTermParser::Query#must_terms (method)">#must_terms</a></span>
|
|
1458
|
+
<small>BooleanTermParser::Query</small>
|
|
1459
|
+
</div>
|
|
1460
|
+
</li>
|
|
1461
|
+
|
|
1462
|
+
|
|
1239
1463
|
<li class="even ">
|
|
1240
1464
|
<div class="item">
|
|
1241
1465
|
<span class='object_link'><a href="Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>
|
|
@@ -1302,7 +1526,23 @@
|
|
|
1302
1526
|
|
|
1303
1527
|
<li class="even ">
|
|
1304
1528
|
<div class="item">
|
|
1305
|
-
<span class='object_link'><a href="
|
|
1529
|
+
<span class='object_link'><a href="Symbol.html#normalize_matching-instance_method" title="Symbol#normalize_matching (method)">#normalize_matching</a></span>
|
|
1530
|
+
<small>Symbol</small>
|
|
1531
|
+
</div>
|
|
1532
|
+
</li>
|
|
1533
|
+
|
|
1534
|
+
|
|
1535
|
+
<li class="odd ">
|
|
1536
|
+
<div class="item">
|
|
1537
|
+
<span class='object_link'><a href="String.html#normalize_matching-instance_method" title="String#normalize_matching (method)">#normalize_matching</a></span>
|
|
1538
|
+
<small>String</small>
|
|
1539
|
+
</div>
|
|
1540
|
+
</li>
|
|
1541
|
+
|
|
1542
|
+
|
|
1543
|
+
<li class="even ">
|
|
1544
|
+
<div class="item">
|
|
1545
|
+
<span class='object_link'><a href="String.html#normalize_matching!-instance_method" title="String#normalize_matching! (method)">#normalize_matching!</a></span>
|
|
1306
1546
|
<small>String</small>
|
|
1307
1547
|
</div>
|
|
1308
1548
|
</li>
|
|
@@ -1318,7 +1558,7 @@
|
|
|
1318
1558
|
|
|
1319
1559
|
<li class="even ">
|
|
1320
1560
|
<div class="item">
|
|
1321
|
-
<span class='object_link'><a href="String.html#normalize_order
|
|
1561
|
+
<span class='object_link'><a href="String.html#normalize_order-instance_method" title="String#normalize_order (method)">#normalize_order</a></span>
|
|
1322
1562
|
<small>String</small>
|
|
1323
1563
|
</div>
|
|
1324
1564
|
</li>
|
|
@@ -1326,7 +1566,7 @@
|
|
|
1326
1566
|
|
|
1327
1567
|
<li class="odd ">
|
|
1328
1568
|
<div class="item">
|
|
1329
|
-
<span class='object_link'><a href="String.html#
|
|
1569
|
+
<span class='object_link'><a href="String.html#normalize_order!-instance_method" title="String#normalize_order! (method)">#normalize_order!</a></span>
|
|
1330
1570
|
<small>String</small>
|
|
1331
1571
|
</div>
|
|
1332
1572
|
</li>
|
|
@@ -1334,13 +1574,21 @@
|
|
|
1334
1574
|
|
|
1335
1575
|
<li class="even ">
|
|
1336
1576
|
<div class="item">
|
|
1337
|
-
<span class='object_link'><a href="String.html#normalize_trigger
|
|
1577
|
+
<span class='object_link'><a href="String.html#normalize_trigger-instance_method" title="String#normalize_trigger (method)">#normalize_trigger</a></span>
|
|
1338
1578
|
<small>String</small>
|
|
1339
1579
|
</div>
|
|
1340
1580
|
</li>
|
|
1341
1581
|
|
|
1342
1582
|
|
|
1343
1583
|
<li class="odd ">
|
|
1584
|
+
<div class="item">
|
|
1585
|
+
<span class='object_link'><a href="String.html#normalize_trigger!-instance_method" title="String#normalize_trigger! (method)">#normalize_trigger!</a></span>
|
|
1586
|
+
<small>String</small>
|
|
1587
|
+
</div>
|
|
1588
|
+
</li>
|
|
1589
|
+
|
|
1590
|
+
|
|
1591
|
+
<li class="even ">
|
|
1344
1592
|
<div class="item">
|
|
1345
1593
|
<span class='object_link'><a href="Doing/Item.html#note-instance_method" title="Doing::Item#note (method)">#note</a></span>
|
|
1346
1594
|
<small>Doing::Item</small>
|
|
@@ -1348,6 +1596,30 @@
|
|
|
1348
1596
|
</li>
|
|
1349
1597
|
|
|
1350
1598
|
|
|
1599
|
+
<li class="odd ">
|
|
1600
|
+
<div class="item">
|
|
1601
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#operator-instance_method" title="PhraseParser::TermClause#operator (method)">#operator</a></span>
|
|
1602
|
+
<small>PhraseParser::TermClause</small>
|
|
1603
|
+
</div>
|
|
1604
|
+
</li>
|
|
1605
|
+
|
|
1606
|
+
|
|
1607
|
+
<li class="even ">
|
|
1608
|
+
<div class="item">
|
|
1609
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#operator-instance_method" title="PhraseParser::PhraseClause#operator (method)">#operator</a></span>
|
|
1610
|
+
<small>PhraseParser::PhraseClause</small>
|
|
1611
|
+
</div>
|
|
1612
|
+
</li>
|
|
1613
|
+
|
|
1614
|
+
|
|
1615
|
+
<li class="odd ">
|
|
1616
|
+
<div class="item">
|
|
1617
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#operator-instance_method" title="BooleanTermParser::Clause#operator (method)">#operator</a></span>
|
|
1618
|
+
<small>BooleanTermParser::Clause</small>
|
|
1619
|
+
</div>
|
|
1620
|
+
</li>
|
|
1621
|
+
|
|
1622
|
+
|
|
1351
1623
|
<li class="even ">
|
|
1352
1624
|
<div class="item">
|
|
1353
1625
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#options-instance_method" title="GLI::Commands::MarkdownDocumentListener#options (method)">#options</a></span>
|
|
@@ -1357,6 +1629,14 @@
|
|
|
1357
1629
|
|
|
1358
1630
|
|
|
1359
1631
|
<li class="odd ">
|
|
1632
|
+
<div class="item">
|
|
1633
|
+
<span class='object_link'><a href="Doing/TemplateString.html#original-instance_method" title="Doing::TemplateString#original (method)">#original</a></span>
|
|
1634
|
+
<small>Doing::TemplateString</small>
|
|
1635
|
+
</div>
|
|
1636
|
+
</li>
|
|
1637
|
+
|
|
1638
|
+
|
|
1639
|
+
<li class="even ">
|
|
1360
1640
|
<div class="item">
|
|
1361
1641
|
<span class='object_link'><a href="Doing/Section.html#original-instance_method" title="Doing::Section#original (method)">#original</a></span>
|
|
1362
1642
|
<small>Doing::Section</small>
|
|
@@ -1364,7 +1644,7 @@
|
|
|
1364
1644
|
</li>
|
|
1365
1645
|
|
|
1366
1646
|
|
|
1367
|
-
<li class="
|
|
1647
|
+
<li class="odd ">
|
|
1368
1648
|
<div class="item">
|
|
1369
1649
|
<span class='object_link'><a href="Doing/LogAdapter.html#output_results-instance_method" title="Doing::LogAdapter#output_results (method)">#output_results</a></span>
|
|
1370
1650
|
<small>Doing::LogAdapter</small>
|
|
@@ -1372,7 +1652,7 @@
|
|
|
1372
1652
|
</li>
|
|
1373
1653
|
|
|
1374
1654
|
|
|
1375
|
-
<li class="
|
|
1655
|
+
<li class="even ">
|
|
1376
1656
|
<div class="item">
|
|
1377
1657
|
<span class='object_link'><a href="Doing/Item.html#overlapping_time%3F-instance_method" title="Doing::Item#overlapping_time? (method)">#overlapping_time?</a></span>
|
|
1378
1658
|
<small>Doing::Item</small>
|
|
@@ -1380,7 +1660,7 @@
|
|
|
1380
1660
|
</li>
|
|
1381
1661
|
|
|
1382
1662
|
|
|
1383
|
-
<li class="
|
|
1663
|
+
<li class="odd ">
|
|
1384
1664
|
<div class="item">
|
|
1385
1665
|
<span class='object_link'><a href="Doing/Pager.html#page-class_method" title="Doing::Pager.page (method)">page</a></span>
|
|
1386
1666
|
<small>Doing::Pager</small>
|
|
@@ -1388,7 +1668,7 @@
|
|
|
1388
1668
|
</li>
|
|
1389
1669
|
|
|
1390
1670
|
|
|
1391
|
-
<li class="
|
|
1671
|
+
<li class="even ">
|
|
1392
1672
|
<div class="item">
|
|
1393
1673
|
<span class='object_link'><a href="Doing/Pager.html#paginate-class_method" title="Doing::Pager.paginate (method)">paginate</a></span>
|
|
1394
1674
|
<small>Doing::Pager</small>
|
|
@@ -1396,7 +1676,7 @@
|
|
|
1396
1676
|
</li>
|
|
1397
1677
|
|
|
1398
1678
|
|
|
1399
|
-
<li class="
|
|
1679
|
+
<li class="odd ">
|
|
1400
1680
|
<div class="item">
|
|
1401
1681
|
<span class='object_link'><a href="Doing/Pager.html#paginate=-class_method" title="Doing::Pager.paginate= (method)">paginate=</a></span>
|
|
1402
1682
|
<small>Doing::Pager</small>
|
|
@@ -1404,6 +1684,30 @@
|
|
|
1404
1684
|
</li>
|
|
1405
1685
|
|
|
1406
1686
|
|
|
1687
|
+
<li class="even ">
|
|
1688
|
+
<div class="item">
|
|
1689
|
+
<span class='object_link'><a href="Doing/TemplateString.html#parse_colors-instance_method" title="Doing::TemplateString#parse_colors (method)">#parse_colors</a></span>
|
|
1690
|
+
<small>Doing::TemplateString</small>
|
|
1691
|
+
</div>
|
|
1692
|
+
</li>
|
|
1693
|
+
|
|
1694
|
+
|
|
1695
|
+
<li class="odd ">
|
|
1696
|
+
<div class="item">
|
|
1697
|
+
<span class='object_link'><a href="Doing/TemplateString.html#parsed_colors-instance_method" title="Doing::TemplateString#parsed_colors (method)">#parsed_colors</a></span>
|
|
1698
|
+
<small>Doing::TemplateString</small>
|
|
1699
|
+
</div>
|
|
1700
|
+
</li>
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
<li class="even ">
|
|
1704
|
+
<div class="item">
|
|
1705
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#phrase-instance_method" title="PhraseParser::PhraseClause#phrase (method)">#phrase</a></span>
|
|
1706
|
+
<small>PhraseParser::PhraseClause</small>
|
|
1707
|
+
</div>
|
|
1708
|
+
</li>
|
|
1709
|
+
|
|
1710
|
+
|
|
1407
1711
|
<li class="odd ">
|
|
1408
1712
|
<div class="item">
|
|
1409
1713
|
<span class='object_link'><a href="Doing/Errors/PluginException.html#plugin-instance_method" title="Doing::Errors::PluginException#plugin (method)">#plugin</a></span>
|
|
@@ -1453,6 +1757,14 @@
|
|
|
1453
1757
|
|
|
1454
1758
|
|
|
1455
1759
|
<li class="odd ">
|
|
1760
|
+
<div class="item">
|
|
1761
|
+
<span class='object_link'><a href="String.html#pluralize-instance_method" title="String#pluralize (method)">#pluralize</a></span>
|
|
1762
|
+
<small>String</small>
|
|
1763
|
+
</div>
|
|
1764
|
+
</li>
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
<li class="even ">
|
|
1456
1768
|
<div class="item">
|
|
1457
1769
|
<span class='object_link'><a href="Doing/Hooks.html#priority_value-class_method" title="Doing::Hooks.priority_value (method)">priority_value</a></span>
|
|
1458
1770
|
<small>Doing::Hooks</small>
|
|
@@ -1460,7 +1772,7 @@
|
|
|
1460
1772
|
</li>
|
|
1461
1773
|
|
|
1462
1774
|
|
|
1463
|
-
<li class="
|
|
1775
|
+
<li class="odd ">
|
|
1464
1776
|
<div class="item">
|
|
1465
1777
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#program_desc-instance_method" title="GLI::Commands::MarkdownDocumentListener#program_desc (method)">#program_desc</a></span>
|
|
1466
1778
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -1468,7 +1780,7 @@
|
|
|
1468
1780
|
</li>
|
|
1469
1781
|
|
|
1470
1782
|
|
|
1471
|
-
<li class="
|
|
1783
|
+
<li class="even ">
|
|
1472
1784
|
<div class="item">
|
|
1473
1785
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#program_long_desc-instance_method" title="GLI::Commands::MarkdownDocumentListener#program_long_desc (method)">#program_long_desc</a></span>
|
|
1474
1786
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -1476,7 +1788,7 @@
|
|
|
1476
1788
|
</li>
|
|
1477
1789
|
|
|
1478
1790
|
|
|
1479
|
-
<li class="
|
|
1791
|
+
<li class="odd ">
|
|
1480
1792
|
<div class="item">
|
|
1481
1793
|
<span class='object_link'><a href="Status.html#progress-instance_method" title="Status#progress (method)">#progress</a></span>
|
|
1482
1794
|
<small>Status</small>
|
|
@@ -1484,7 +1796,23 @@
|
|
|
1484
1796
|
</li>
|
|
1485
1797
|
|
|
1486
1798
|
|
|
1799
|
+
<li class="even ">
|
|
1800
|
+
<div class="item">
|
|
1801
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#prune_backups-instance_method" title="Doing::Util::Backup#prune_backups (method)">#prune_backups</a></span>
|
|
1802
|
+
<small>Doing::Util::Backup</small>
|
|
1803
|
+
</div>
|
|
1804
|
+
</li>
|
|
1805
|
+
|
|
1806
|
+
|
|
1487
1807
|
<li class="odd ">
|
|
1808
|
+
<div class="item">
|
|
1809
|
+
<span class='object_link'><a href="Doing/TemplateString.html#raw-instance_method" title="Doing::TemplateString#raw (method)">#raw</a></span>
|
|
1810
|
+
<small>Doing::TemplateString</small>
|
|
1811
|
+
</div>
|
|
1812
|
+
</li>
|
|
1813
|
+
|
|
1814
|
+
|
|
1815
|
+
<li class="even ">
|
|
1488
1816
|
<div class="item">
|
|
1489
1817
|
<span class='object_link'><a href="Doing/WWID.html#recent-instance_method" title="Doing::WWID#recent (method)">#recent</a></span>
|
|
1490
1818
|
<small>Doing::WWID</small>
|
|
@@ -1492,6 +1820,14 @@
|
|
|
1492
1820
|
</li>
|
|
1493
1821
|
|
|
1494
1822
|
|
|
1823
|
+
<li class="odd ">
|
|
1824
|
+
<div class="item">
|
|
1825
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#redo_backup-instance_method" title="Doing::Util::Backup#redo_backup (method)">#redo_backup</a></span>
|
|
1826
|
+
<small>Doing::Util::Backup</small>
|
|
1827
|
+
</div>
|
|
1828
|
+
</li>
|
|
1829
|
+
|
|
1830
|
+
|
|
1495
1831
|
<li class="even ">
|
|
1496
1832
|
<div class="item">
|
|
1497
1833
|
<span class='object_link'><a href="Doing/Plugins.html#register-class_method" title="Doing::Plugins.register (method)">register</a></span>
|
|
@@ -1533,6 +1869,14 @@
|
|
|
1533
1869
|
|
|
1534
1870
|
|
|
1535
1871
|
<li class="odd ">
|
|
1872
|
+
<div class="item">
|
|
1873
|
+
<span class='object_link'><a href="Doing/TemplateString.html#reparse-instance_method" title="Doing::TemplateString#reparse (method)">#reparse</a></span>
|
|
1874
|
+
<small>Doing::TemplateString</small>
|
|
1875
|
+
</div>
|
|
1876
|
+
</li>
|
|
1877
|
+
|
|
1878
|
+
|
|
1879
|
+
<li class="even ">
|
|
1536
1880
|
<div class="item">
|
|
1537
1881
|
<span class='object_link'><a href="Doing/WWID.html#repeat_item-instance_method" title="Doing::WWID#repeat_item (method)">#repeat_item</a></span>
|
|
1538
1882
|
<small>Doing::WWID</small>
|
|
@@ -1540,7 +1884,7 @@
|
|
|
1540
1884
|
</li>
|
|
1541
1885
|
|
|
1542
1886
|
|
|
1543
|
-
<li class="
|
|
1887
|
+
<li class="odd ">
|
|
1544
1888
|
<div class="item">
|
|
1545
1889
|
<span class='object_link'><a href="Doing/WWID.html#repeat_last-instance_method" title="Doing::WWID#repeat_last (method)">#repeat_last</a></span>
|
|
1546
1890
|
<small>Doing::WWID</small>
|
|
@@ -1548,7 +1892,7 @@
|
|
|
1548
1892
|
</li>
|
|
1549
1893
|
|
|
1550
1894
|
|
|
1551
|
-
<li class="
|
|
1895
|
+
<li class="even ">
|
|
1552
1896
|
<div class="item">
|
|
1553
1897
|
<span class='object_link'><a href="String.html#replace_qualified_urls-instance_method" title="String#replace_qualified_urls (method)">#replace_qualified_urls</a></span>
|
|
1554
1898
|
<small>String</small>
|
|
@@ -1556,7 +1900,7 @@
|
|
|
1556
1900
|
</li>
|
|
1557
1901
|
|
|
1558
1902
|
|
|
1559
|
-
<li class="
|
|
1903
|
+
<li class="odd ">
|
|
1560
1904
|
<div class="item">
|
|
1561
1905
|
<span class='object_link'><a href="Doing/WWID.html#reset_item-instance_method" title="Doing::WWID#reset_item (method)">#reset_item</a></span>
|
|
1562
1906
|
<small>Doing::WWID</small>
|
|
@@ -1564,7 +1908,7 @@
|
|
|
1564
1908
|
</li>
|
|
1565
1909
|
|
|
1566
1910
|
|
|
1567
|
-
<li class="
|
|
1911
|
+
<li class="even ">
|
|
1568
1912
|
<div class="item">
|
|
1569
1913
|
<span class='object_link'><a href="Doing/Configuration.html#resolve_key_path-instance_method" title="Doing::Configuration#resolve_key_path (method)">#resolve_key_path</a></span>
|
|
1570
1914
|
<small>Doing::Configuration</small>
|
|
@@ -1572,15 +1916,15 @@
|
|
|
1572
1916
|
</li>
|
|
1573
1917
|
|
|
1574
1918
|
|
|
1575
|
-
<li class="
|
|
1919
|
+
<li class="odd ">
|
|
1576
1920
|
<div class="item">
|
|
1577
|
-
<span class='object_link'><a href="Doing/
|
|
1578
|
-
<small>Doing::
|
|
1921
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#restore_last_backup-instance_method" title="Doing::Util::Backup#restore_last_backup (method)">#restore_last_backup</a></span>
|
|
1922
|
+
<small>Doing::Util::Backup</small>
|
|
1579
1923
|
</div>
|
|
1580
1924
|
</li>
|
|
1581
1925
|
|
|
1582
1926
|
|
|
1583
|
-
<li class="
|
|
1927
|
+
<li class="even ">
|
|
1584
1928
|
<div class="item">
|
|
1585
1929
|
<span class='object_link'><a href="Doing/LogAdapter.html#restore_level-instance_method" title="Doing::LogAdapter#restore_level (method)">#restore_level</a></span>
|
|
1586
1930
|
<small>Doing::LogAdapter</small>
|
|
@@ -1588,7 +1932,7 @@
|
|
|
1588
1932
|
</li>
|
|
1589
1933
|
|
|
1590
1934
|
|
|
1591
|
-
<li class="
|
|
1935
|
+
<li class="odd ">
|
|
1592
1936
|
<div class="item">
|
|
1593
1937
|
<span class='object_link'><a href="Doing/LogAdapter.html#results-instance_method" title="Doing::LogAdapter#results (method)">#results</a></span>
|
|
1594
1938
|
<small>Doing::LogAdapter</small>
|
|
@@ -1596,7 +1940,7 @@
|
|
|
1596
1940
|
</li>
|
|
1597
1941
|
|
|
1598
1942
|
|
|
1599
|
-
<li class="
|
|
1943
|
+
<li class="even ">
|
|
1600
1944
|
<div class="item">
|
|
1601
1945
|
<span class='object_link'><a href="Doing/WWID.html#rotate-instance_method" title="Doing::WWID#rotate (method)">#rotate</a></span>
|
|
1602
1946
|
<small>Doing::WWID</small>
|
|
@@ -1604,7 +1948,7 @@
|
|
|
1604
1948
|
</li>
|
|
1605
1949
|
|
|
1606
1950
|
|
|
1607
|
-
<li class="
|
|
1951
|
+
<li class="odd ">
|
|
1608
1952
|
<div class="item">
|
|
1609
1953
|
<span class='object_link'><a href="Doing/Util.html#safe_load_file-instance_method" title="Doing::Util#safe_load_file (method)">#safe_load_file</a></span>
|
|
1610
1954
|
<small>Doing::Util</small>
|
|
@@ -1612,7 +1956,7 @@
|
|
|
1612
1956
|
</li>
|
|
1613
1957
|
|
|
1614
1958
|
|
|
1615
|
-
<li class="
|
|
1959
|
+
<li class="even ">
|
|
1616
1960
|
<div class="item">
|
|
1617
1961
|
<span class='object_link'><a href="Doing/Item.html#same_time%3F-instance_method" title="Doing::Item#same_time? (method)">#same_time?</a></span>
|
|
1618
1962
|
<small>Doing::Item</small>
|
|
@@ -1620,7 +1964,7 @@
|
|
|
1620
1964
|
</li>
|
|
1621
1965
|
|
|
1622
1966
|
|
|
1623
|
-
<li class="
|
|
1967
|
+
<li class="odd ">
|
|
1624
1968
|
<div class="item">
|
|
1625
1969
|
<span class='object_link'><a href="Doing/Item.html#search-instance_method" title="Doing::Item#search (method)">#search</a></span>
|
|
1626
1970
|
<small>Doing::Item</small>
|
|
@@ -1628,7 +1972,7 @@
|
|
|
1628
1972
|
</li>
|
|
1629
1973
|
|
|
1630
1974
|
|
|
1631
|
-
<li class="
|
|
1975
|
+
<li class="even ">
|
|
1632
1976
|
<div class="item">
|
|
1633
1977
|
<span class='object_link'><a href="Doing/Item.html#section-instance_method" title="Doing::Item#section (method)">#section</a></span>
|
|
1634
1978
|
<small>Doing::Item</small>
|
|
@@ -1636,7 +1980,7 @@
|
|
|
1636
1980
|
</li>
|
|
1637
1981
|
|
|
1638
1982
|
|
|
1639
|
-
<li class="
|
|
1983
|
+
<li class="odd ">
|
|
1640
1984
|
<div class="item">
|
|
1641
1985
|
<span class='object_link'><a href="Doing/Items.html#section%3F-instance_method" title="Doing::Items#section? (method)">#section?</a></span>
|
|
1642
1986
|
<small>Doing::Items</small>
|
|
@@ -1644,7 +1988,7 @@
|
|
|
1644
1988
|
</li>
|
|
1645
1989
|
|
|
1646
1990
|
|
|
1647
|
-
<li class="
|
|
1991
|
+
<li class="even ">
|
|
1648
1992
|
<div class="item">
|
|
1649
1993
|
<span class='object_link'><a href="Doing/Items.html#section_titles-instance_method" title="Doing::Items#section_titles (method)">#section_titles</a></span>
|
|
1650
1994
|
<small>Doing::Items</small>
|
|
@@ -1652,7 +1996,7 @@
|
|
|
1652
1996
|
</li>
|
|
1653
1997
|
|
|
1654
1998
|
|
|
1655
|
-
<li class="
|
|
1999
|
+
<li class="odd ">
|
|
1656
2000
|
<div class="item">
|
|
1657
2001
|
<span class='object_link'><a href="Doing/Items.html#sections-instance_method" title="Doing::Items#sections (method)">#sections</a></span>
|
|
1658
2002
|
<small>Doing::Items</small>
|
|
@@ -1660,7 +2004,7 @@
|
|
|
1660
2004
|
</li>
|
|
1661
2005
|
|
|
1662
2006
|
|
|
1663
|
-
<li class="
|
|
2007
|
+
<li class="even ">
|
|
1664
2008
|
<div class="item">
|
|
1665
2009
|
<span class='object_link'><a href="Doing/WWID.html#sections-instance_method" title="Doing::WWID#sections (method)">#sections</a></span>
|
|
1666
2010
|
<small>Doing::WWID</small>
|
|
@@ -1668,7 +2012,23 @@
|
|
|
1668
2012
|
</li>
|
|
1669
2013
|
|
|
1670
2014
|
|
|
2015
|
+
<li class="odd ">
|
|
2016
|
+
<div class="item">
|
|
2017
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#select_backup-instance_method" title="Doing::Util::Backup#select_backup (method)">#select_backup</a></span>
|
|
2018
|
+
<small>Doing::Util::Backup</small>
|
|
2019
|
+
</div>
|
|
2020
|
+
</li>
|
|
2021
|
+
|
|
2022
|
+
|
|
1671
2023
|
<li class="even ">
|
|
2024
|
+
<div class="item">
|
|
2025
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#select_redo-instance_method" title="Doing::Util::Backup#select_redo (method)">#select_redo</a></span>
|
|
2026
|
+
<small>Doing::Util::Backup</small>
|
|
2027
|
+
</div>
|
|
2028
|
+
</li>
|
|
2029
|
+
|
|
2030
|
+
|
|
2031
|
+
<li class="odd ">
|
|
1672
2032
|
<div class="item">
|
|
1673
2033
|
<span class='object_link'><a href="String.html#set_type-instance_method" title="String#set_type (method)">#set_type</a></span>
|
|
1674
2034
|
<small>String</small>
|
|
@@ -1676,7 +2036,7 @@
|
|
|
1676
2036
|
</li>
|
|
1677
2037
|
|
|
1678
2038
|
|
|
1679
|
-
<li class="
|
|
2039
|
+
<li class="even ">
|
|
1680
2040
|
<div class="item">
|
|
1681
2041
|
<span class='object_link'><a href="Doing/Configuration.html#settings-instance_method" title="Doing::Configuration#settings (method)">#settings</a></span>
|
|
1682
2042
|
<small>Doing::Configuration</small>
|
|
@@ -1684,6 +2044,14 @@
|
|
|
1684
2044
|
</li>
|
|
1685
2045
|
|
|
1686
2046
|
|
|
2047
|
+
<li class="odd ">
|
|
2048
|
+
<div class="item">
|
|
2049
|
+
<span class='object_link'><a href="PhraseParser/Query.html#should_clauses-instance_method" title="PhraseParser::Query#should_clauses (method)">#should_clauses</a></span>
|
|
2050
|
+
<small>PhraseParser::Query</small>
|
|
2051
|
+
</div>
|
|
2052
|
+
</li>
|
|
2053
|
+
|
|
2054
|
+
|
|
1687
2055
|
<li class="even ">
|
|
1688
2056
|
<div class="item">
|
|
1689
2057
|
<span class='object_link'><a href="Doing/Item.html#should_finish%3F-instance_method" title="Doing::Item#should_finish? (method)">#should_finish?</a></span>
|
|
@@ -1693,6 +2061,14 @@
|
|
|
1693
2061
|
|
|
1694
2062
|
|
|
1695
2063
|
<li class="odd ">
|
|
2064
|
+
<div class="item">
|
|
2065
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#should_terms-instance_method" title="BooleanTermParser::Query#should_terms (method)">#should_terms</a></span>
|
|
2066
|
+
<small>BooleanTermParser::Query</small>
|
|
2067
|
+
</div>
|
|
2068
|
+
</li>
|
|
2069
|
+
|
|
2070
|
+
|
|
2071
|
+
<li class="even ">
|
|
1696
2072
|
<div class="item">
|
|
1697
2073
|
<span class='object_link'><a href="Doing/Item.html#should_time%3F-instance_method" title="Doing::Item#should_time? (method)">#should_time?</a></span>
|
|
1698
2074
|
<small>Doing::Item</small>
|
|
@@ -1700,7 +2076,23 @@
|
|
|
1700
2076
|
</li>
|
|
1701
2077
|
|
|
1702
2078
|
|
|
2079
|
+
<li class="odd ">
|
|
2080
|
+
<div class="item">
|
|
2081
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#show_menu-instance_method" title="Doing::Util::Backup#show_menu (method)">#show_menu</a></span>
|
|
2082
|
+
<small>Doing::Util::Backup</small>
|
|
2083
|
+
</div>
|
|
2084
|
+
</li>
|
|
2085
|
+
|
|
2086
|
+
|
|
1703
2087
|
<li class="even ">
|
|
2088
|
+
<div class="item">
|
|
2089
|
+
<span class='object_link'><a href="String.html#simple_wrap-instance_method" title="String#simple_wrap (method)">#simple_wrap</a></span>
|
|
2090
|
+
<small>String</small>
|
|
2091
|
+
</div>
|
|
2092
|
+
</li>
|
|
2093
|
+
|
|
2094
|
+
|
|
2095
|
+
<li class="odd ">
|
|
1704
2096
|
<div class="item">
|
|
1705
2097
|
<span class='object_link'><a href="Status.html#status-instance_method" title="Status#status (method)">#status</a></span>
|
|
1706
2098
|
<small>Status</small>
|
|
@@ -1708,7 +2100,7 @@
|
|
|
1708
2100
|
</li>
|
|
1709
2101
|
|
|
1710
2102
|
|
|
1711
|
-
<li class="
|
|
2103
|
+
<li class="even ">
|
|
1712
2104
|
<div class="item">
|
|
1713
2105
|
<span class='object_link'><a href="Doing/WWID.html#stop_start-instance_method" title="Doing::WWID#stop_start (method)">#stop_start</a></span>
|
|
1714
2106
|
<small>Doing::WWID</small>
|
|
@@ -1716,7 +2108,7 @@
|
|
|
1716
2108
|
</li>
|
|
1717
2109
|
|
|
1718
2110
|
|
|
1719
|
-
<li class="
|
|
2111
|
+
<li class="odd ">
|
|
1720
2112
|
<div class="item">
|
|
1721
2113
|
<span class='object_link'><a href="Hash.html#stringify_keys-instance_method" title="Hash#stringify_keys (method)">#stringify_keys</a></span>
|
|
1722
2114
|
<small>Hash</small>
|
|
@@ -1724,7 +2116,7 @@
|
|
|
1724
2116
|
</li>
|
|
1725
2117
|
|
|
1726
2118
|
|
|
1727
|
-
<li class="
|
|
2119
|
+
<li class="even ">
|
|
1728
2120
|
<div class="item">
|
|
1729
2121
|
<span class='object_link'><a href="Doing/Note.html#strip_lines-instance_method" title="Doing::Note#strip_lines (method)">#strip_lines</a></span>
|
|
1730
2122
|
<small>Doing::Note</small>
|
|
@@ -1732,7 +2124,7 @@
|
|
|
1732
2124
|
</li>
|
|
1733
2125
|
|
|
1734
2126
|
|
|
1735
|
-
<li class="
|
|
2127
|
+
<li class="odd ">
|
|
1736
2128
|
<div class="item">
|
|
1737
2129
|
<span class='object_link'><a href="Doing/Note.html#strip_lines!-instance_method" title="Doing::Note#strip_lines! (method)">#strip_lines!</a></span>
|
|
1738
2130
|
<small>Doing::Note</small>
|
|
@@ -1740,7 +2132,7 @@
|
|
|
1740
2132
|
</li>
|
|
1741
2133
|
|
|
1742
2134
|
|
|
1743
|
-
<li class="
|
|
2135
|
+
<li class="even ">
|
|
1744
2136
|
<div class="item">
|
|
1745
2137
|
<span class='object_link'><a href="Doing/Color.html#support%3F-instance_method" title="Doing::Color#support? (method)">#support?</a></span>
|
|
1746
2138
|
<small>Doing::Color</small>
|
|
@@ -1748,7 +2140,7 @@
|
|
|
1748
2140
|
</li>
|
|
1749
2141
|
|
|
1750
2142
|
|
|
1751
|
-
<li class="
|
|
2143
|
+
<li class="odd ">
|
|
1752
2144
|
<div class="item">
|
|
1753
2145
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#switch-instance_method" title="GLI::Commands::MarkdownDocumentListener#switch (method)">#switch</a></span>
|
|
1754
2146
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -1756,7 +2148,23 @@
|
|
|
1756
2148
|
</li>
|
|
1757
2149
|
|
|
1758
2150
|
|
|
2151
|
+
<li class="even ">
|
|
2152
|
+
<div class="item">
|
|
2153
|
+
<span class='object_link'><a href="PhraseParser/Operator.html#symbol-class_method" title="PhraseParser::Operator.symbol (method)">symbol</a></span>
|
|
2154
|
+
<small>PhraseParser::Operator</small>
|
|
2155
|
+
</div>
|
|
2156
|
+
</li>
|
|
2157
|
+
|
|
2158
|
+
|
|
1759
2159
|
<li class="odd ">
|
|
2160
|
+
<div class="item">
|
|
2161
|
+
<span class='object_link'><a href="BooleanTermParser/Operator.html#symbol-class_method" title="BooleanTermParser::Operator.symbol (method)">symbol</a></span>
|
|
2162
|
+
<small>BooleanTermParser::Operator</small>
|
|
2163
|
+
</div>
|
|
2164
|
+
</li>
|
|
2165
|
+
|
|
2166
|
+
|
|
2167
|
+
<li class="even ">
|
|
1760
2168
|
<div class="item">
|
|
1761
2169
|
<span class='object_link'><a href="Hash.html#symbolize_keys-instance_method" title="Hash#symbolize_keys (method)">#symbolize_keys</a></span>
|
|
1762
2170
|
<small>Hash</small>
|
|
@@ -1764,7 +2172,7 @@
|
|
|
1764
2172
|
</li>
|
|
1765
2173
|
|
|
1766
2174
|
|
|
1767
|
-
<li class="
|
|
2175
|
+
<li class="odd ">
|
|
1768
2176
|
<div class="item">
|
|
1769
2177
|
<span class='object_link'><a href="Doing/Item.html#tag-instance_method" title="Doing::Item#tag (method)">#tag</a></span>
|
|
1770
2178
|
<small>Doing::Item</small>
|
|
@@ -1772,7 +2180,7 @@
|
|
|
1772
2180
|
</li>
|
|
1773
2181
|
|
|
1774
2182
|
|
|
1775
|
-
<li class="
|
|
2183
|
+
<li class="even ">
|
|
1776
2184
|
<div class="item">
|
|
1777
2185
|
<span class='object_link'><a href="String.html#tag-instance_method" title="String#tag (method)">#tag</a></span>
|
|
1778
2186
|
<small>String</small>
|
|
@@ -1780,7 +2188,7 @@
|
|
|
1780
2188
|
</li>
|
|
1781
2189
|
|
|
1782
2190
|
|
|
1783
|
-
<li class="
|
|
2191
|
+
<li class="odd ">
|
|
1784
2192
|
<div class="item">
|
|
1785
2193
|
<span class='object_link'><a href="String.html#tag!-instance_method" title="String#tag! (method)">#tag!</a></span>
|
|
1786
2194
|
<small>String</small>
|
|
@@ -1788,6 +2196,14 @@
|
|
|
1788
2196
|
</li>
|
|
1789
2197
|
|
|
1790
2198
|
|
|
2199
|
+
<li class="even ">
|
|
2200
|
+
<div class="item">
|
|
2201
|
+
<span class='object_link'><a href="Doing/Item.html#tag_array-instance_method" title="Doing::Item#tag_array (method)">#tag_array</a></span>
|
|
2202
|
+
<small>Doing::Item</small>
|
|
2203
|
+
</div>
|
|
2204
|
+
</li>
|
|
2205
|
+
|
|
2206
|
+
|
|
1791
2207
|
<li class="odd ">
|
|
1792
2208
|
<div class="item">
|
|
1793
2209
|
<span class='object_link'><a href="Doing/WWID.html#tag_groups-instance_method" title="Doing::WWID#tag_groups (method)">#tag_groups</a></span>
|
|
@@ -1829,6 +2245,14 @@
|
|
|
1829
2245
|
|
|
1830
2246
|
|
|
1831
2247
|
<li class="even ">
|
|
2248
|
+
<div class="item">
|
|
2249
|
+
<span class='object_link'><a href="Array.html#tags_to_array-instance_method" title="Array#tags_to_array (method)">#tags_to_array</a></span>
|
|
2250
|
+
<small>Array</small>
|
|
2251
|
+
</div>
|
|
2252
|
+
</li>
|
|
2253
|
+
|
|
2254
|
+
|
|
2255
|
+
<li class="odd ">
|
|
1832
2256
|
<div class="item">
|
|
1833
2257
|
<span class='object_link'><a href="Doing/LogAdapter.html#temp_level-instance_method" title="Doing::LogAdapter#temp_level (method)">#temp_level</a></span>
|
|
1834
2258
|
<small>Doing::LogAdapter</small>
|
|
@@ -1836,7 +2260,7 @@
|
|
|
1836
2260
|
</li>
|
|
1837
2261
|
|
|
1838
2262
|
|
|
1839
|
-
<li class="
|
|
2263
|
+
<li class="even ">
|
|
1840
2264
|
<div class="item">
|
|
1841
2265
|
<span class='object_link'><a href="Doing/Plugins.html#template_for_trigger-class_method" title="Doing::Plugins.template_for_trigger (method)">template_for_trigger</a></span>
|
|
1842
2266
|
<small>Doing::Plugins</small>
|
|
@@ -1844,7 +2268,7 @@
|
|
|
1844
2268
|
</li>
|
|
1845
2269
|
|
|
1846
2270
|
|
|
1847
|
-
<li class="
|
|
2271
|
+
<li class="odd ">
|
|
1848
2272
|
<div class="item">
|
|
1849
2273
|
<span class='object_link'><a href="Doing/Plugins.html#template_regex-class_method" title="Doing::Plugins.template_regex (method)">template_regex</a></span>
|
|
1850
2274
|
<small>Doing::Plugins</small>
|
|
@@ -1852,6 +2276,30 @@
|
|
|
1852
2276
|
</li>
|
|
1853
2277
|
|
|
1854
2278
|
|
|
2279
|
+
<li class="even ">
|
|
2280
|
+
<div class="item">
|
|
2281
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#term-instance_method" title="BooleanTermParser::Clause#term (method)">#term</a></span>
|
|
2282
|
+
<small>BooleanTermParser::Clause</small>
|
|
2283
|
+
</div>
|
|
2284
|
+
</li>
|
|
2285
|
+
|
|
2286
|
+
|
|
2287
|
+
<li class="odd ">
|
|
2288
|
+
<div class="item">
|
|
2289
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#term-instance_method" title="PhraseParser::TermClause#term (method)">#term</a></span>
|
|
2290
|
+
<small>PhraseParser::TermClause</small>
|
|
2291
|
+
</div>
|
|
2292
|
+
</li>
|
|
2293
|
+
|
|
2294
|
+
|
|
2295
|
+
<li class="even ">
|
|
2296
|
+
<div class="item">
|
|
2297
|
+
<span class='object_link'><a href="Time.html#time_ago-instance_method" title="Time#time_ago (method)">#time_ago</a></span>
|
|
2298
|
+
<small>Time</small>
|
|
2299
|
+
</div>
|
|
2300
|
+
</li>
|
|
2301
|
+
|
|
2302
|
+
|
|
1855
2303
|
<li class="odd ">
|
|
1856
2304
|
<div class="item">
|
|
1857
2305
|
<span class='object_link'><a href="Doing/Section.html#title-instance_method" title="Doing::Section#title (method)">#title</a></span>
|
|
@@ -1870,21 +2318,29 @@
|
|
|
1870
2318
|
|
|
1871
2319
|
<li class="odd ">
|
|
1872
2320
|
<div class="item">
|
|
1873
|
-
<span class='object_link'><a href="
|
|
1874
|
-
<small>
|
|
2321
|
+
<span class='object_link'><a href="PhraseParser/Query.html#to_elasticsearch-instance_method" title="PhraseParser::Query#to_elasticsearch (method)">#to_elasticsearch</a></span>
|
|
2322
|
+
<small>PhraseParser::Query</small>
|
|
1875
2323
|
</div>
|
|
1876
2324
|
</li>
|
|
1877
2325
|
|
|
1878
2326
|
|
|
1879
2327
|
<li class="even ">
|
|
1880
2328
|
<div class="item">
|
|
1881
|
-
<span class='object_link'><a href="
|
|
1882
|
-
<small>
|
|
2329
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#to_elasticsearch-instance_method" title="BooleanTermParser::Query#to_elasticsearch (method)">#to_elasticsearch</a></span>
|
|
2330
|
+
<small>BooleanTermParser::Query</small>
|
|
1883
2331
|
</div>
|
|
1884
2332
|
</li>
|
|
1885
2333
|
|
|
1886
2334
|
|
|
1887
2335
|
<li class="odd ">
|
|
2336
|
+
<div class="item">
|
|
2337
|
+
<span class='object_link'><a href="String.html#to_rx-instance_method" title="String#to_rx (method)">#to_rx</a></span>
|
|
2338
|
+
<small>String</small>
|
|
2339
|
+
</div>
|
|
2340
|
+
</li>
|
|
2341
|
+
|
|
2342
|
+
|
|
2343
|
+
<li class="even ">
|
|
1888
2344
|
<div class="item">
|
|
1889
2345
|
<span class='object_link'><a href="Doing/Note.html#to_s-instance_method" title="Doing::Note#to_s (method)">#to_s</a></span>
|
|
1890
2346
|
<small>Doing::Note</small>
|
|
@@ -1892,6 +2348,14 @@
|
|
|
1892
2348
|
</li>
|
|
1893
2349
|
|
|
1894
2350
|
|
|
2351
|
+
<li class="odd ">
|
|
2352
|
+
<div class="item">
|
|
2353
|
+
<span class='object_link'><a href="Doing/Items.html#to_s-instance_method" title="Doing::Items#to_s (method)">#to_s</a></span>
|
|
2354
|
+
<small>Doing::Items</small>
|
|
2355
|
+
</div>
|
|
2356
|
+
</li>
|
|
2357
|
+
|
|
2358
|
+
|
|
1895
2359
|
<li class="even ">
|
|
1896
2360
|
<div class="item">
|
|
1897
2361
|
<span class='object_link'><a href="Doing/Item.html#to_s-instance_method" title="Doing::Item#to_s (method)">#to_s</a></span>
|
|
@@ -1902,8 +2366,8 @@
|
|
|
1902
2366
|
|
|
1903
2367
|
<li class="odd ">
|
|
1904
2368
|
<div class="item">
|
|
1905
|
-
<span class='object_link'><a href="Doing/
|
|
1906
|
-
<small>Doing::
|
|
2369
|
+
<span class='object_link'><a href="Doing/Section.html#to_s-instance_method" title="Doing::Section#to_s (method)">#to_s</a></span>
|
|
2370
|
+
<small>Doing::Section</small>
|
|
1907
2371
|
</div>
|
|
1908
2372
|
</li>
|
|
1909
2373
|
|
|
@@ -2030,16 +2494,16 @@
|
|
|
2030
2494
|
|
|
2031
2495
|
<li class="odd ">
|
|
2032
2496
|
<div class="item">
|
|
2033
|
-
<span class='object_link'><a href="Doing/
|
|
2034
|
-
<small>Doing::
|
|
2497
|
+
<span class='object_link'><a href="Doing/Util.html#user_home-instance_method" title="Doing::Util#user_home (method)">#user_home</a></span>
|
|
2498
|
+
<small>Doing::Util</small>
|
|
2035
2499
|
</div>
|
|
2036
2500
|
</li>
|
|
2037
2501
|
|
|
2038
2502
|
|
|
2039
2503
|
<li class="even ">
|
|
2040
2504
|
<div class="item">
|
|
2041
|
-
<span class='object_link'><a href="Doing/
|
|
2042
|
-
<small>Doing::
|
|
2505
|
+
<span class='object_link'><a href="Doing/Plugins.html#user_home-class_method" title="Doing::Plugins.user_home (method)">user_home</a></span>
|
|
2506
|
+
<small>Doing::Plugins</small>
|
|
2043
2507
|
</div>
|
|
2044
2508
|
</li>
|
|
2045
2509
|
|
|
@@ -2053,6 +2517,14 @@
|
|
|
2053
2517
|
|
|
2054
2518
|
|
|
2055
2519
|
<li class="even ">
|
|
2520
|
+
<div class="item">
|
|
2521
|
+
<span class='object_link'><a href="String.html#validate_color-instance_method" title="String#validate_color (method)">#validate_color</a></span>
|
|
2522
|
+
<small>String</small>
|
|
2523
|
+
</div>
|
|
2524
|
+
</li>
|
|
2525
|
+
|
|
2526
|
+
|
|
2527
|
+
<li class="odd ">
|
|
2056
2528
|
<div class="item">
|
|
2057
2529
|
<span class='object_link'><a href="Doing/Plugins.html#validate_plugin-class_method" title="Doing::Plugins.validate_plugin (method)">validate_plugin</a></span>
|
|
2058
2530
|
<small>Doing::Plugins</small>
|
|
@@ -2060,7 +2532,7 @@
|
|
|
2060
2532
|
</li>
|
|
2061
2533
|
|
|
2062
2534
|
|
|
2063
|
-
<li class="
|
|
2535
|
+
<li class="even ">
|
|
2064
2536
|
<div class="item">
|
|
2065
2537
|
<span class='object_link'><a href="Doing/Configuration.html#value_for_key-instance_method" title="Doing::Configuration#value_for_key (method)">#value_for_key</a></span>
|
|
2066
2538
|
<small>Doing::Configuration</small>
|
|
@@ -2068,7 +2540,7 @@
|
|
|
2068
2540
|
</li>
|
|
2069
2541
|
|
|
2070
2542
|
|
|
2071
|
-
<li class="
|
|
2543
|
+
<li class="odd ">
|
|
2072
2544
|
<div class="item">
|
|
2073
2545
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#version-instance_method" title="GLI::Commands::MarkdownDocumentListener#version (method)">#version</a></span>
|
|
2074
2546
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -2076,7 +2548,7 @@
|
|
|
2076
2548
|
</li>
|
|
2077
2549
|
|
|
2078
2550
|
|
|
2079
|
-
<li class="
|
|
2551
|
+
<li class="even ">
|
|
2080
2552
|
<div class="item">
|
|
2081
2553
|
<span class='object_link'><a href="Doing/WWID.html#views-instance_method" title="Doing::WWID#views (method)">#views</a></span>
|
|
2082
2554
|
<small>Doing::WWID</small>
|
|
@@ -2084,7 +2556,7 @@
|
|
|
2084
2556
|
</li>
|
|
2085
2557
|
|
|
2086
2558
|
|
|
2087
|
-
<li class="
|
|
2559
|
+
<li class="odd ">
|
|
2088
2560
|
<div class="item">
|
|
2089
2561
|
<span class='object_link'><a href="Doing/LogAdapter.html#warn-instance_method" title="Doing::LogAdapter#warn (method)">#warn</a></span>
|
|
2090
2562
|
<small>Doing::LogAdapter</small>
|
|
@@ -2092,6 +2564,14 @@
|
|
|
2092
2564
|
</li>
|
|
2093
2565
|
|
|
2094
2566
|
|
|
2567
|
+
<li class="even ">
|
|
2568
|
+
<div class="item">
|
|
2569
|
+
<span class='object_link'><a href="String.html#wildcard_to_rx-instance_method" title="String#wildcard_to_rx (method)">#wildcard_to_rx</a></span>
|
|
2570
|
+
<small>String</small>
|
|
2571
|
+
</div>
|
|
2572
|
+
</li>
|
|
2573
|
+
|
|
2574
|
+
|
|
2095
2575
|
<li class="odd ">
|
|
2096
2576
|
<div class="item">
|
|
2097
2577
|
<span class='object_link'><a href="String.html#wrap-instance_method" title="String#wrap (method)">#wrap</a></span>
|
|
@@ -2102,21 +2582,29 @@
|
|
|
2102
2582
|
|
|
2103
2583
|
<li class="even ">
|
|
2104
2584
|
<div class="item">
|
|
2105
|
-
<span class='object_link'><a href="Doing/
|
|
2106
|
-
<small>Doing::
|
|
2585
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#write-instance_method" title="Doing::LogAdapter#write (method)">#write</a></span>
|
|
2586
|
+
<small>Doing::LogAdapter</small>
|
|
2107
2587
|
</div>
|
|
2108
2588
|
</li>
|
|
2109
2589
|
|
|
2110
2590
|
|
|
2111
2591
|
<li class="odd ">
|
|
2112
2592
|
<div class="item">
|
|
2113
|
-
<span class='object_link'><a href="Doing/
|
|
2114
|
-
<small>Doing::
|
|
2593
|
+
<span class='object_link'><a href="Doing/WWID.html#write-instance_method" title="Doing::WWID#write (method)">#write</a></span>
|
|
2594
|
+
<small>Doing::WWID</small>
|
|
2115
2595
|
</div>
|
|
2116
2596
|
</li>
|
|
2117
2597
|
|
|
2118
2598
|
|
|
2119
2599
|
<li class="even ">
|
|
2600
|
+
<div class="item">
|
|
2601
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#write_backup-instance_method" title="Doing::Util::Backup#write_backup (method)">#write_backup</a></span>
|
|
2602
|
+
<small>Doing::Util::Backup</small>
|
|
2603
|
+
</div>
|
|
2604
|
+
</li>
|
|
2605
|
+
|
|
2606
|
+
|
|
2607
|
+
<li class="odd ">
|
|
2120
2608
|
<div class="item">
|
|
2121
2609
|
<span class='object_link'><a href="Doing/Util.html#write_to_file-instance_method" title="Doing::Util#write_to_file (method)">#write_to_file</a></span>
|
|
2122
2610
|
<small>Doing::Util</small>
|
|
@@ -2124,7 +2612,7 @@
|
|
|
2124
2612
|
</li>
|
|
2125
2613
|
|
|
2126
2614
|
|
|
2127
|
-
<li class="
|
|
2615
|
+
<li class="even ">
|
|
2128
2616
|
<div class="item">
|
|
2129
2617
|
<span class='object_link'><a href="Doing/WWID.html#yesterday-instance_method" title="Doing::WWID#yesterday (method)">#yesterday</a></span>
|
|
2130
2618
|
<small>Doing::WWID</small>
|
|
@@ -2132,7 +2620,7 @@
|
|
|
2132
2620
|
</li>
|
|
2133
2621
|
|
|
2134
2622
|
|
|
2135
|
-
<li class="
|
|
2623
|
+
<li class="odd ">
|
|
2136
2624
|
<div class="item">
|
|
2137
2625
|
<span class='object_link'><a href="Doing/Prompt.html#yn-class_method" title="Doing::Prompt.yn (method)">yn</a></span>
|
|
2138
2626
|
<small>Doing::Prompt</small>
|