doing 2.1.12 → 2.1.16
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/.irbrc +1 -0
- data/.yardoc/checksums +16 -14
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/CHANGELOG.md +67 -0
- data/Gemfile.lock +9 -2
- data/README.md +56 -19
- data/bin/doing +317 -113
- data/docs/doc/Array.html +117 -3
- data/docs/doc/BooleanTermParser/Clause.html +1 -1
- data/docs/doc/BooleanTermParser/Operator.html +1 -1
- data/docs/doc/BooleanTermParser/Query.html +1 -1
- data/docs/doc/BooleanTermParser/QueryParser.html +1 -1
- data/docs/doc/BooleanTermParser/QueryTransformer.html +1 -1
- data/docs/doc/BooleanTermParser.html +1 -1
- data/docs/doc/Doing/Color.html +1 -1
- data/docs/doc/Doing/Completion.html +1 -1
- data/docs/doc/Doing/Configuration.html +7 -4
- data/docs/doc/Doing/Errors/DoingNoTraceError.html +1 -1
- data/docs/doc/Doing/Errors/DoingRuntimeError.html +1 -1
- data/docs/doc/Doing/Errors/DoingStandardError.html +1 -1
- data/docs/doc/Doing/Errors/EmptyInput.html +1 -1
- data/docs/doc/Doing/Errors/NoResults.html +1 -1
- data/docs/doc/Doing/Errors/PluginException.html +1 -1
- data/docs/doc/Doing/Errors/UserCancelled.html +1 -1
- data/docs/doc/Doing/Errors/WrongCommand.html +1 -1
- data/docs/doc/Doing/Errors.html +1 -1
- data/docs/doc/Doing/Hooks.html +1 -1
- data/docs/doc/Doing/Item.html +337 -14
- data/docs/doc/Doing/Items.html +66 -2
- data/docs/doc/Doing/LogAdapter.html +1 -1
- data/docs/doc/Doing/Note.html +2 -2
- data/docs/doc/Doing/Pager.html +1 -1
- data/docs/doc/Doing/Plugins.html +1 -1
- data/docs/doc/Doing/Prompt.html +103 -1
- data/docs/doc/Doing/Section.html +1 -1
- data/docs/doc/Doing/TemplateString.html +2 -2
- data/docs/doc/Doing/Util/Backup.html +84 -1
- data/docs/doc/Doing/Util.html +1 -1
- data/docs/doc/Doing/WWID.html +214 -35
- data/docs/doc/Doing.html +3 -3
- data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
- data/docs/doc/GLI/Commands.html +1 -1
- data/docs/doc/GLI.html +1 -1
- data/docs/doc/Hash.html +1 -1
- data/docs/doc/Numeric.html +279 -0
- data/docs/doc/PhraseParser/Operator.html +1 -1
- data/docs/doc/PhraseParser/PhraseClause.html +1 -1
- data/docs/doc/PhraseParser/Query.html +1 -1
- data/docs/doc/PhraseParser/QueryParser.html +1 -1
- data/docs/doc/PhraseParser/QueryTransformer.html +1 -1
- data/docs/doc/PhraseParser/TermClause.html +1 -1
- data/docs/doc/PhraseParser.html +1 -1
- data/docs/doc/Status.html +1 -1
- data/docs/doc/String.html +881 -138
- data/docs/doc/Symbol.html +1 -1
- data/docs/doc/Time.html +1 -1
- data/docs/doc/_index.html +14 -9
- data/docs/doc/class_list.html +1 -1
- data/docs/doc/file.README.html +41 -15
- data/docs/doc/index.html +41 -15
- data/docs/doc/method_list.html +408 -256
- data/docs/doc/top-level-namespace.html +2 -2
- data/docs/index.md +56 -19
- data/doing.gemspec +2 -0
- data/doing.rdoc +257 -48
- data/example_plugin.rb +2 -4
- data/lib/completion/_doing.zsh +31 -27
- data/lib/completion/doing.bash +50 -39
- data/lib/completion/doing.fish +37 -7
- data/lib/doing/array_chronify.rb +57 -0
- data/lib/doing/configuration.rb +4 -1
- data/lib/doing/item.rb +176 -0
- data/lib/doing/log_adapter.rb +1 -1
- data/lib/doing/numeric_chronify.rb +40 -0
- data/lib/doing/plugins/export/dayone_export.rb +1 -1
- data/lib/doing/plugins/export/json_export.rb +2 -2
- data/lib/doing/plugins/export/template_export.rb +47 -90
- data/lib/doing/plugins/import/calendar_import.rb +13 -1
- data/lib/doing/plugins/import/doing_import.rb +12 -1
- data/lib/doing/plugins/import/timing_import.rb +13 -1
- data/lib/doing/prompt.rb +54 -1
- data/lib/doing/string.rb +97 -33
- data/lib/doing/string_chronify.rb +112 -14
- data/lib/doing/template_string.rb +1 -1
- data/lib/doing/time.rb +6 -6
- data/lib/doing/util_backup.rb +1 -1
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +128 -103
- data/lib/doing.rb +36 -31
- data/lib/examples/plugins/say_export.rb +1 -4
- metadata +46 -2
data/docs/doc/method_list.html
CHANGED
@@ -221,6 +221,14 @@
|
|
221
221
|
|
222
222
|
|
223
223
|
<li class="odd ">
|
224
|
+
<div class="item">
|
225
|
+
<span class='object_link'><a href="Doing/Item.html#calculate_end_date-instance_method" title="Doing::Item#calculate_end_date (method)">#calculate_end_date</a></span>
|
226
|
+
<small>Doing::Item</small>
|
227
|
+
</div>
|
228
|
+
</li>
|
229
|
+
|
230
|
+
|
231
|
+
<li class="even ">
|
224
232
|
<div class="item">
|
225
233
|
<span class='object_link'><a href="String.html#cap_first-instance_method" title="String#cap_first (method)">#cap_first</a></span>
|
226
234
|
<small>String</small>
|
@@ -228,7 +236,7 @@
|
|
228
236
|
</li>
|
229
237
|
|
230
238
|
|
231
|
-
<li class="
|
239
|
+
<li class="odd ">
|
232
240
|
<div class="item">
|
233
241
|
<span class='object_link'><a href="Doing/Configuration.html#choose_config-instance_method" title="Doing::Configuration#choose_config (method)">#choose_config</a></span>
|
234
242
|
<small>Doing::Configuration</small>
|
@@ -236,7 +244,7 @@
|
|
236
244
|
</li>
|
237
245
|
|
238
246
|
|
239
|
-
<li class="
|
247
|
+
<li class="even ">
|
240
248
|
<div class="item">
|
241
249
|
<span class='object_link'><a href="Doing/Prompt.html#choose_from-class_method" title="Doing::Prompt.choose_from (method)">choose_from</a></span>
|
242
250
|
<small>Doing::Prompt</small>
|
@@ -244,7 +252,7 @@
|
|
244
252
|
</li>
|
245
253
|
|
246
254
|
|
247
|
-
<li class="
|
255
|
+
<li class="odd ">
|
248
256
|
<div class="item">
|
249
257
|
<span class='object_link'><a href="Doing/Prompt.html#choose_from_items-class_method" title="Doing::Prompt.choose_from_items (method)">choose_from_items</a></span>
|
250
258
|
<small>Doing::Prompt</small>
|
@@ -252,7 +260,7 @@
|
|
252
260
|
</li>
|
253
261
|
|
254
262
|
|
255
|
-
<li class="
|
263
|
+
<li class="even ">
|
256
264
|
<div class="item">
|
257
265
|
<span class='object_link'><a href="Doing/WWID.html#choose_section-instance_method" title="Doing::WWID#choose_section (method)">#choose_section</a></span>
|
258
266
|
<small>Doing::WWID</small>
|
@@ -260,7 +268,7 @@
|
|
260
268
|
</li>
|
261
269
|
|
262
270
|
|
263
|
-
<li class="
|
271
|
+
<li class="odd ">
|
264
272
|
<div class="item">
|
265
273
|
<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
274
|
<small>Doing::WWID</small>
|
@@ -268,7 +276,7 @@
|
|
268
276
|
</li>
|
269
277
|
|
270
278
|
|
271
|
-
<li class="
|
279
|
+
<li class="even ">
|
272
280
|
<div class="item">
|
273
281
|
<span class='object_link'><a href="Doing/WWID.html#choose_tag-instance_method" title="Doing::WWID#choose_tag (method)">#choose_tag</a></span>
|
274
282
|
<small>Doing::WWID</small>
|
@@ -276,7 +284,7 @@
|
|
276
284
|
</li>
|
277
285
|
|
278
286
|
|
279
|
-
<li class="
|
287
|
+
<li class="odd ">
|
280
288
|
<div class="item">
|
281
289
|
<span class='object_link'><a href="Doing/WWID.html#choose_view-instance_method" title="Doing::WWID#choose_view (method)">#choose_view</a></span>
|
282
290
|
<small>Doing::WWID</small>
|
@@ -284,7 +292,7 @@
|
|
284
292
|
</li>
|
285
293
|
|
286
294
|
|
287
|
-
<li class="
|
295
|
+
<li class="even ">
|
288
296
|
<div class="item">
|
289
297
|
<span class='object_link'><a href="String.html#chronify-instance_method" title="String#chronify (method)">#chronify</a></span>
|
290
298
|
<small>String</small>
|
@@ -292,7 +300,7 @@
|
|
292
300
|
</li>
|
293
301
|
|
294
302
|
|
295
|
-
<li class="
|
303
|
+
<li class="odd ">
|
296
304
|
<div class="item">
|
297
305
|
<span class='object_link'><a href="String.html#chronify_qty-instance_method" title="String#chronify_qty (method)">#chronify_qty</a></span>
|
298
306
|
<small>String</small>
|
@@ -300,7 +308,7 @@
|
|
300
308
|
</li>
|
301
309
|
|
302
310
|
|
303
|
-
<li class="
|
311
|
+
<li class="even ">
|
304
312
|
<div class="item">
|
305
313
|
<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
314
|
<small>PhraseParser::Query</small>
|
@@ -308,7 +316,7 @@
|
|
308
316
|
</li>
|
309
317
|
|
310
318
|
|
311
|
-
<li class="
|
319
|
+
<li class="odd ">
|
312
320
|
<div class="item">
|
313
321
|
<span class='object_link'><a href="String.html#clean_unlinked_urls-instance_method" title="String#clean_unlinked_urls (method)">#clean_unlinked_urls</a></span>
|
314
322
|
<small>String</small>
|
@@ -316,7 +324,7 @@
|
|
316
324
|
</li>
|
317
325
|
|
318
326
|
|
319
|
-
<li class="
|
327
|
+
<li class="even ">
|
320
328
|
<div class="item">
|
321
329
|
<span class='object_link'><a href="Status.html#clear-instance_method" title="Status#clear (method)">#clear</a></span>
|
322
330
|
<small>Status</small>
|
@@ -324,7 +332,7 @@
|
|
324
332
|
</li>
|
325
333
|
|
326
334
|
|
327
|
-
<li class="
|
335
|
+
<li class="odd ">
|
328
336
|
<div class="item">
|
329
337
|
<span class='object_link'><a href="Doing/Util/Backup.html#clear_redo-instance_method" title="Doing::Util::Backup#clear_redo (method)">#clear_redo</a></span>
|
330
338
|
<small>Doing::Util::Backup</small>
|
@@ -332,7 +340,7 @@
|
|
332
340
|
</li>
|
333
341
|
|
334
342
|
|
335
|
-
<li class="
|
343
|
+
<li class="even ">
|
336
344
|
<div class="item">
|
337
345
|
<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>
|
338
346
|
<small>Doing::Util::Backup</small>
|
@@ -340,7 +348,7 @@
|
|
340
348
|
</li>
|
341
349
|
|
342
350
|
|
343
|
-
<li class="
|
351
|
+
<li class="odd ">
|
344
352
|
<div class="item">
|
345
353
|
<span class='object_link'><a href="Doing/TemplateString.html#colored-instance_method" title="Doing::TemplateString#colored (method)">#colored</a></span>
|
346
354
|
<small>Doing::TemplateString</small>
|
@@ -348,7 +356,7 @@
|
|
348
356
|
</li>
|
349
357
|
|
350
358
|
|
351
|
-
<li class="
|
359
|
+
<li class="even ">
|
352
360
|
<div class="item">
|
353
361
|
<span class='object_link'><a href="Doing/Color.html#coloring-class_method" title="Doing::Color.coloring (method)">coloring</a></span>
|
354
362
|
<small>Doing::Color</small>
|
@@ -356,7 +364,7 @@
|
|
356
364
|
</li>
|
357
365
|
|
358
366
|
|
359
|
-
<li class="
|
367
|
+
<li class="odd ">
|
360
368
|
<div class="item">
|
361
369
|
<span class='object_link'><a href="Doing/Color.html#coloring%3F-class_method" title="Doing::Color.coloring? (method)">coloring?</a></span>
|
362
370
|
<small>Doing::Color</small>
|
@@ -364,7 +372,7 @@
|
|
364
372
|
</li>
|
365
373
|
|
366
374
|
|
367
|
-
<li class="
|
375
|
+
<li class="even ">
|
368
376
|
<div class="item">
|
369
377
|
<span class='object_link'><a href="Doing/TemplateString.html#colors%3F-instance_method" title="Doing::TemplateString#colors? (method)">#colors?</a></span>
|
370
378
|
<small>Doing::TemplateString</small>
|
@@ -372,7 +380,7 @@
|
|
372
380
|
</li>
|
373
381
|
|
374
382
|
|
375
|
-
<li class="
|
383
|
+
<li class="odd ">
|
376
384
|
<div class="item">
|
377
385
|
<span class='object_link'><a href="Status.html#cols-instance_method" title="Status#cols (method)">#cols</a></span>
|
378
386
|
<small>Status</small>
|
@@ -380,7 +388,7 @@
|
|
380
388
|
</li>
|
381
389
|
|
382
390
|
|
383
|
-
<li class="
|
391
|
+
<li class="even ">
|
384
392
|
<div class="item">
|
385
393
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#command-instance_method" title="GLI::Commands::MarkdownDocumentListener#command (method)">#command</a></span>
|
386
394
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -388,7 +396,7 @@
|
|
388
396
|
</li>
|
389
397
|
|
390
398
|
|
391
|
-
<li class="
|
399
|
+
<li class="odd ">
|
392
400
|
<div class="item">
|
393
401
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#commands-instance_method" title="GLI::Commands::MarkdownDocumentListener#commands (method)">#commands</a></span>
|
394
402
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -396,6 +404,14 @@
|
|
396
404
|
</li>
|
397
405
|
|
398
406
|
|
407
|
+
<li class="even ">
|
408
|
+
<div class="item">
|
409
|
+
<span class='object_link'><a href="String.html#compress-instance_method" title="String#compress (method)">#compress</a></span>
|
410
|
+
<small>String</small>
|
411
|
+
</div>
|
412
|
+
</li>
|
413
|
+
|
414
|
+
|
399
415
|
<li class="odd ">
|
400
416
|
<div class="item">
|
401
417
|
<span class='object_link'><a href="Doing/Note.html#compress-instance_method" title="Doing::Note#compress (method)">#compress</a></span>
|
@@ -406,8 +422,8 @@
|
|
406
422
|
|
407
423
|
<li class="even ">
|
408
424
|
<div class="item">
|
409
|
-
<span class='object_link'><a href="
|
410
|
-
<small>
|
425
|
+
<span class='object_link'><a href="Doing/Note.html#compress!-instance_method" title="Doing::Note#compress! (method)">#compress!</a></span>
|
426
|
+
<small>Doing::Note</small>
|
411
427
|
</div>
|
412
428
|
</li>
|
413
429
|
|
@@ -422,23 +438,23 @@
|
|
422
438
|
|
423
439
|
<li class="even ">
|
424
440
|
<div class="item">
|
425
|
-
<span class='object_link'><a href="Doing/
|
426
|
-
<small>Doing::
|
441
|
+
<span class='object_link'><a href="Doing/WWID.html#config-instance_method" title="Doing::WWID#config (method)">#config</a></span>
|
442
|
+
<small>Doing::WWID</small>
|
427
443
|
</div>
|
428
444
|
</li>
|
429
445
|
|
430
446
|
|
431
447
|
<li class="odd ">
|
432
448
|
<div class="item">
|
433
|
-
<span class='object_link'><a href="Doing/
|
434
|
-
<small>Doing::
|
449
|
+
<span class='object_link'><a href="Doing/Configuration.html#config_dir-instance_method" title="Doing::Configuration#config_dir (method)">#config_dir</a></span>
|
450
|
+
<small>Doing::Configuration</small>
|
435
451
|
</div>
|
436
452
|
</li>
|
437
453
|
|
438
454
|
|
439
455
|
<li class="even ">
|
440
456
|
<div class="item">
|
441
|
-
<span class='object_link'><a href="Doing/Configuration.html#
|
457
|
+
<span class='object_link'><a href="Doing/Configuration.html#config_file-instance_method" title="Doing::Configuration#config_file (method)">#config_file</a></span>
|
442
458
|
<small>Doing::Configuration</small>
|
443
459
|
</div>
|
444
460
|
</li>
|
@@ -454,8 +470,8 @@
|
|
454
470
|
|
455
471
|
<li class="even ">
|
456
472
|
<div class="item">
|
457
|
-
<span class='object_link'><a href="Doing/
|
458
|
-
<small>Doing::
|
473
|
+
<span class='object_link'><a href="Doing/WWID.html#configure-instance_method" title="Doing::WWID#configure (method)">#configure</a></span>
|
474
|
+
<small>Doing::WWID</small>
|
459
475
|
</div>
|
460
476
|
</li>
|
461
477
|
|
@@ -628,6 +644,22 @@
|
|
628
644
|
</li>
|
629
645
|
|
630
646
|
|
647
|
+
<li class="even ">
|
648
|
+
<div class="item">
|
649
|
+
<span class='object_link'><a href="Doing/WWID.html#delete_items-instance_method" title="Doing::WWID#delete_items (method)">#delete_items</a></span>
|
650
|
+
<small>Doing::WWID</small>
|
651
|
+
</div>
|
652
|
+
</li>
|
653
|
+
|
654
|
+
|
655
|
+
<li class="odd ">
|
656
|
+
<div class="item">
|
657
|
+
<span class='object_link'><a href="Doing/Items.html#diff-instance_method" title="Doing::Items#diff (method)">#diff</a></span>
|
658
|
+
<small>Doing::Items</small>
|
659
|
+
</div>
|
660
|
+
</li>
|
661
|
+
|
662
|
+
|
631
663
|
<li class="even ">
|
632
664
|
<div class="item">
|
633
665
|
<span class='object_link'><a href="Doing/WWID.html#doing_file-instance_method" title="Doing::WWID#doing_file (method)">#doing_file</a></span>
|
@@ -662,13 +694,21 @@
|
|
662
694
|
|
663
695
|
<li class="even ">
|
664
696
|
<div class="item">
|
665
|
-
<span class='object_link'><a href="Doing/WWID.html#
|
697
|
+
<span class='object_link'><a href="Doing/WWID.html#edit_items-instance_method" title="Doing::WWID#edit_items (method)">#edit_items</a></span>
|
666
698
|
<small>Doing::WWID</small>
|
667
699
|
</div>
|
668
700
|
</li>
|
669
701
|
|
670
702
|
|
671
703
|
<li class="odd ">
|
704
|
+
<div class="item">
|
705
|
+
<span class='object_link'><a href="Doing/WWID.html#edit_last-instance_method" title="Doing::WWID#edit_last (method)">#edit_last</a></span>
|
706
|
+
<small>Doing::WWID</small>
|
707
|
+
</div>
|
708
|
+
</li>
|
709
|
+
|
710
|
+
|
711
|
+
<li class="even ">
|
672
712
|
<div class="item">
|
673
713
|
<span class='object_link'><a href="Doing/Util.html#editor_with_args-instance_method" title="Doing::Util#editor_with_args (method)">#editor_with_args</a></span>
|
674
714
|
<small>Doing::Util</small>
|
@@ -676,7 +716,7 @@
|
|
676
716
|
</li>
|
677
717
|
|
678
718
|
|
679
|
-
<li class="
|
719
|
+
<li class="odd ">
|
680
720
|
<div class="item">
|
681
721
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#end_command-instance_method" title="GLI::Commands::MarkdownDocumentListener#end_command (method)">#end_command</a></span>
|
682
722
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -684,7 +724,7 @@
|
|
684
724
|
</li>
|
685
725
|
|
686
726
|
|
687
|
-
<li class="
|
727
|
+
<li class="even ">
|
688
728
|
<div class="item">
|
689
729
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#end_commands-instance_method" title="GLI::Commands::MarkdownDocumentListener#end_commands (method)">#end_commands</a></span>
|
690
730
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -692,7 +732,7 @@
|
|
692
732
|
</li>
|
693
733
|
|
694
734
|
|
695
|
-
<li class="
|
735
|
+
<li class="odd ">
|
696
736
|
<div class="item">
|
697
737
|
<span class='object_link'><a href="Doing/Item.html#end_date-instance_method" title="Doing::Item#end_date (method)">#end_date</a></span>
|
698
738
|
<small>Doing::Item</small>
|
@@ -700,7 +740,7 @@
|
|
700
740
|
</li>
|
701
741
|
|
702
742
|
|
703
|
-
<li class="
|
743
|
+
<li class="even ">
|
704
744
|
<div class="item">
|
705
745
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#end_options-instance_method" title="GLI::Commands::MarkdownDocumentListener#end_options (method)">#end_options</a></span>
|
706
746
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -708,7 +748,7 @@
|
|
708
748
|
</li>
|
709
749
|
|
710
750
|
|
711
|
-
<li class="
|
751
|
+
<li class="odd ">
|
712
752
|
<div class="item">
|
713
753
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#ending-instance_method" title="GLI::Commands::MarkdownDocumentListener#ending (method)">#ending</a></span>
|
714
754
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -716,7 +756,7 @@
|
|
716
756
|
</li>
|
717
757
|
|
718
758
|
|
719
|
-
<li class="
|
759
|
+
<li class="even ">
|
720
760
|
<div class="item">
|
721
761
|
<span class='object_link'><a href="Doing/Prompt.html#enter_text-class_method" title="Doing::Prompt.enter_text (method)">enter_text</a></span>
|
722
762
|
<small>Doing::Prompt</small>
|
@@ -724,7 +764,7 @@
|
|
724
764
|
</li>
|
725
765
|
|
726
766
|
|
727
|
-
<li class="
|
767
|
+
<li class="odd ">
|
728
768
|
<div class="item">
|
729
769
|
<span class='object_link'><a href="Doing/Item.html#equal%3F-instance_method" title="Doing::Item#equal? (method)">#equal?</a></span>
|
730
770
|
<small>Doing::Item</small>
|
@@ -732,7 +772,7 @@
|
|
732
772
|
</li>
|
733
773
|
|
734
774
|
|
735
|
-
<li class="
|
775
|
+
<li class="even ">
|
736
776
|
<div class="item">
|
737
777
|
<span class='object_link'><a href="Doing/Note.html#equal%3F-instance_method" title="Doing::Note#equal? (method)">#equal?</a></span>
|
738
778
|
<small>Doing::Note</small>
|
@@ -740,7 +780,7 @@
|
|
740
780
|
</li>
|
741
781
|
|
742
782
|
|
743
|
-
<li class="
|
783
|
+
<li class="odd ">
|
744
784
|
<div class="item">
|
745
785
|
<span class='object_link'><a href="Doing/LogAdapter.html#error-instance_method" title="Doing::LogAdapter#error (method)">#error</a></span>
|
746
786
|
<small>Doing::LogAdapter</small>
|
@@ -748,7 +788,7 @@
|
|
748
788
|
</li>
|
749
789
|
|
750
790
|
|
751
|
-
<li class="
|
791
|
+
<li class="even ">
|
752
792
|
<div class="item">
|
753
793
|
<span class='object_link'><a href="Status.html#esc-instance_method" title="Status#esc (method)">#esc</a></span>
|
754
794
|
<small>Status</small>
|
@@ -756,7 +796,7 @@
|
|
756
796
|
</li>
|
757
797
|
|
758
798
|
|
759
|
-
<li class="
|
799
|
+
<li class="odd ">
|
760
800
|
<div class="item">
|
761
801
|
<span class='object_link'><a href="Doing/Configuration.html#exact_match%3F-instance_method" title="Doing::Configuration#exact_match? (method)">#exact_match?</a></span>
|
762
802
|
<small>Doing::Configuration</small>
|
@@ -764,7 +804,7 @@
|
|
764
804
|
</li>
|
765
805
|
|
766
806
|
|
767
|
-
<li class="
|
807
|
+
<li class="even ">
|
768
808
|
<div class="item">
|
769
809
|
<span class='object_link'><a href="Doing/Util.html#exec_available-instance_method" title="Doing::Util#exec_available (method)">#exec_available</a></span>
|
770
810
|
<small>Doing::Util</small>
|
@@ -772,7 +812,23 @@
|
|
772
812
|
</li>
|
773
813
|
|
774
814
|
|
815
|
+
<li class="odd ">
|
816
|
+
<div class="item">
|
817
|
+
<span class='object_link'><a href="Doing/Item.html#expand_date_tags-instance_method" title="Doing::Item#expand_date_tags (method)">#expand_date_tags</a></span>
|
818
|
+
<small>Doing::Item</small>
|
819
|
+
</div>
|
820
|
+
</li>
|
821
|
+
|
822
|
+
|
775
823
|
<li class="even ">
|
824
|
+
<div class="item">
|
825
|
+
<span class='object_link'><a href="String.html#expand_date_tags-instance_method" title="String#expand_date_tags (method)">#expand_date_tags</a></span>
|
826
|
+
<small>String</small>
|
827
|
+
</div>
|
828
|
+
</li>
|
829
|
+
|
830
|
+
|
831
|
+
<li class="odd ">
|
776
832
|
<div class="item">
|
777
833
|
<span class='object_link'><a href="Doing/TemplateString.html#fill-instance_method" title="Doing::TemplateString#fill (method)">#fill</a></span>
|
778
834
|
<small>Doing::TemplateString</small>
|
@@ -780,7 +836,7 @@
|
|
780
836
|
</li>
|
781
837
|
|
782
838
|
|
783
|
-
<li class="
|
839
|
+
<li class="even ">
|
784
840
|
<div class="item">
|
785
841
|
<span class='object_link'><a href="Doing/WWID.html#filter_items-instance_method" title="Doing::WWID#filter_items (method)">#filter_items</a></span>
|
786
842
|
<small>Doing::WWID</small>
|
@@ -788,7 +844,7 @@
|
|
788
844
|
</li>
|
789
845
|
|
790
846
|
|
791
|
-
<li class="
|
847
|
+
<li class="odd ">
|
792
848
|
<div class="item">
|
793
849
|
<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>
|
794
850
|
<small>Doing::Util</small>
|
@@ -796,7 +852,7 @@
|
|
796
852
|
</li>
|
797
853
|
|
798
854
|
|
799
|
-
<li class="
|
855
|
+
<li class="even ">
|
800
856
|
<div class="item">
|
801
857
|
<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>
|
802
858
|
<small>Doing::Util</small>
|
@@ -804,7 +860,7 @@
|
|
804
860
|
</li>
|
805
861
|
|
806
862
|
|
807
|
-
<li class="
|
863
|
+
<li class="odd ">
|
808
864
|
<div class="item">
|
809
865
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#flag-instance_method" title="GLI::Commands::MarkdownDocumentListener#flag (method)">#flag</a></span>
|
810
866
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -812,7 +868,7 @@
|
|
812
868
|
</li>
|
813
869
|
|
814
870
|
|
815
|
-
<li class="
|
871
|
+
<li class="even ">
|
816
872
|
<div class="item">
|
817
873
|
<span class='object_link'><a href="Doing/Configuration.html#force_answer-instance_method" title="Doing::Configuration#force_answer (method)">#force_answer</a></span>
|
818
874
|
<small>Doing::Configuration</small>
|
@@ -820,7 +876,7 @@
|
|
820
876
|
</li>
|
821
877
|
|
822
878
|
|
823
|
-
<li class="
|
879
|
+
<li class="odd ">
|
824
880
|
<div class="item">
|
825
881
|
<span class='object_link'><a href="Doing/Prompt.html#force_answer-class_method" title="Doing::Prompt.force_answer (method)">force_answer</a></span>
|
826
882
|
<small>Doing::Prompt</small>
|
@@ -828,7 +884,7 @@
|
|
828
884
|
</li>
|
829
885
|
|
830
886
|
|
831
|
-
<li class="
|
887
|
+
<li class="even ">
|
832
888
|
<div class="item">
|
833
889
|
<span class='object_link'><a href="Doing/WWID.html#fork_editor-instance_method" title="Doing::WWID#fork_editor (method)">#fork_editor</a></span>
|
834
890
|
<small>Doing::WWID</small>
|
@@ -836,7 +892,7 @@
|
|
836
892
|
</li>
|
837
893
|
|
838
894
|
|
839
|
-
<li class="
|
895
|
+
<li class="odd ">
|
840
896
|
<div class="item">
|
841
897
|
<span class='object_link'><a href="Doing/WWID.html#format_input-instance_method" title="Doing::WWID#format_input (method)">#format_input</a></span>
|
842
898
|
<small>Doing::WWID</small>
|
@@ -844,15 +900,15 @@
|
|
844
900
|
</li>
|
845
901
|
|
846
902
|
|
847
|
-
<li class="
|
903
|
+
<li class="even ">
|
848
904
|
<div class="item">
|
849
|
-
<span class='object_link'><a href="
|
850
|
-
<small>
|
905
|
+
<span class='object_link'><a href="Numeric.html#format_time-instance_method" title="Numeric#format_time (method)">#format_time</a></span>
|
906
|
+
<small>Numeric</small>
|
851
907
|
</div>
|
852
908
|
</li>
|
853
909
|
|
854
910
|
|
855
|
-
<li class="
|
911
|
+
<li class="odd ">
|
856
912
|
<div class="item">
|
857
913
|
<span class='object_link'><a href="Doing/LogAdapter.html#formatted_topic-instance_method" title="Doing::LogAdapter#formatted_topic (method)">#formatted_topic</a></span>
|
858
914
|
<small>Doing::LogAdapter</small>
|
@@ -860,7 +916,7 @@
|
|
860
916
|
</li>
|
861
917
|
|
862
918
|
|
863
|
-
<li class="
|
919
|
+
<li class="even ">
|
864
920
|
<div class="item">
|
865
921
|
<span class='object_link'><a href="Doing/Configuration.html#from-instance_method" title="Doing::Configuration#from (method)">#from</a></span>
|
866
922
|
<small>Doing::Configuration</small>
|
@@ -868,7 +924,7 @@
|
|
868
924
|
</li>
|
869
925
|
|
870
926
|
|
871
|
-
<li class="
|
927
|
+
<li class="odd ">
|
872
928
|
<div class="item">
|
873
929
|
<span class='object_link'><a href="Doing/WWID.html#fuzzy_filter_items-instance_method" title="Doing::WWID#fuzzy_filter_items (method)">#fuzzy_filter_items</a></span>
|
874
930
|
<small>Doing::WWID</small>
|
@@ -876,7 +932,7 @@
|
|
876
932
|
</li>
|
877
933
|
|
878
934
|
|
879
|
-
<li class="
|
935
|
+
<li class="even ">
|
880
936
|
<div class="item">
|
881
937
|
<span class='object_link'><a href="Doing/Prompt.html#fzf-class_method" title="Doing::Prompt.fzf (method)">fzf</a></span>
|
882
938
|
<small>Doing::Prompt</small>
|
@@ -884,7 +940,7 @@
|
|
884
940
|
</li>
|
885
941
|
|
886
942
|
|
887
|
-
<li class="
|
943
|
+
<li class="odd ">
|
888
944
|
<div class="item">
|
889
945
|
<span class='object_link'><a href="Doing/Completion.html#generate_completion-class_method" title="Doing::Completion.generate_completion (method)">generate_completion</a></span>
|
890
946
|
<small>Doing::Completion</small>
|
@@ -892,6 +948,14 @@
|
|
892
948
|
</li>
|
893
949
|
|
894
950
|
|
951
|
+
<li class="even ">
|
952
|
+
<div class="item">
|
953
|
+
<span class='object_link'><a href="Doing/WWID.html#get_diff-instance_method" title="Doing::WWID#get_diff (method)">#get_diff</a></span>
|
954
|
+
<small>Doing::WWID</small>
|
955
|
+
</div>
|
956
|
+
</li>
|
957
|
+
|
958
|
+
|
895
959
|
<li class="odd ">
|
896
960
|
<div class="item">
|
897
961
|
<span class='object_link'><a href="Doing/WWID.html#get_interval-instance_method" title="Doing::WWID#get_interval (method)">#get_interval</a></span>
|
@@ -1014,77 +1078,69 @@
|
|
1014
1078
|
|
1015
1079
|
<li class="even ">
|
1016
1080
|
<div class="item">
|
1017
|
-
<span class='object_link'><a href="Doing/
|
1018
|
-
<small>Doing::
|
1081
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#initialize-instance_method" title="Doing::LogAdapter#initialize (method)">#initialize</a></span>
|
1082
|
+
<small>Doing::LogAdapter</small>
|
1019
1083
|
</div>
|
1020
1084
|
</li>
|
1021
1085
|
|
1022
1086
|
|
1023
1087
|
<li class="odd ">
|
1024
1088
|
<div class="item">
|
1025
|
-
<span class='object_link'><a href="PhraseParser/
|
1026
|
-
<small>PhraseParser::
|
1089
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#initialize-instance_method" title="PhraseParser::PhraseClause#initialize (method)">#initialize</a></span>
|
1090
|
+
<small>PhraseParser::PhraseClause</small>
|
1027
1091
|
</div>
|
1028
1092
|
</li>
|
1029
1093
|
|
1030
1094
|
|
1031
1095
|
<li class="even ">
|
1032
1096
|
<div class="item">
|
1033
|
-
<span class='object_link'><a href="PhraseParser/
|
1034
|
-
<small>PhraseParser::
|
1097
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#initialize-instance_method" title="PhraseParser::TermClause#initialize (method)">#initialize</a></span>
|
1098
|
+
<small>PhraseParser::TermClause</small>
|
1035
1099
|
</div>
|
1036
1100
|
</li>
|
1037
1101
|
|
1038
1102
|
|
1039
1103
|
<li class="odd ">
|
1040
1104
|
<div class="item">
|
1041
|
-
<span class='object_link'><a href="
|
1042
|
-
<small>
|
1105
|
+
<span class='object_link'><a href="Doing/Items.html#initialize-instance_method" title="Doing::Items#initialize (method)">#initialize</a></span>
|
1106
|
+
<small>Doing::Items</small>
|
1043
1107
|
</div>
|
1044
1108
|
</li>
|
1045
1109
|
|
1046
1110
|
|
1047
1111
|
<li class="even ">
|
1048
1112
|
<div class="item">
|
1049
|
-
<span class='object_link'><a href="
|
1050
|
-
<small>
|
1113
|
+
<span class='object_link'><a href="Doing/Configuration.html#initialize-instance_method" title="Doing::Configuration#initialize (method)">#initialize</a></span>
|
1114
|
+
<small>Doing::Configuration</small>
|
1051
1115
|
</div>
|
1052
1116
|
</li>
|
1053
1117
|
|
1054
1118
|
|
1055
1119
|
<li class="odd ">
|
1056
1120
|
<div class="item">
|
1057
|
-
<span class='object_link'><a href="Doing/
|
1058
|
-
<small>Doing::
|
1121
|
+
<span class='object_link'><a href="Doing/TemplateString.html#initialize-instance_method" title="Doing::TemplateString#initialize (method)">#initialize</a></span>
|
1122
|
+
<small>Doing::TemplateString</small>
|
1059
1123
|
</div>
|
1060
1124
|
</li>
|
1061
1125
|
|
1062
1126
|
|
1063
1127
|
<li class="even ">
|
1064
1128
|
<div class="item">
|
1065
|
-
<span class='object_link'><a href="Doing/
|
1066
|
-
<small>Doing::
|
1129
|
+
<span class='object_link'><a href="Doing/Note.html#initialize-instance_method" title="Doing::Note#initialize (method)">#initialize</a></span>
|
1130
|
+
<small>Doing::Note</small>
|
1067
1131
|
</div>
|
1068
1132
|
</li>
|
1069
1133
|
|
1070
1134
|
|
1071
1135
|
<li class="odd ">
|
1072
1136
|
<div class="item">
|
1073
|
-
<span class='object_link'><a href="
|
1074
|
-
<small>
|
1137
|
+
<span class='object_link'><a href="Doing/WWID.html#initialize-instance_method" title="Doing::WWID#initialize (method)">#initialize</a></span>
|
1138
|
+
<small>Doing::WWID</small>
|
1075
1139
|
</div>
|
1076
1140
|
</li>
|
1077
1141
|
|
1078
1142
|
|
1079
1143
|
<li class="even ">
|
1080
|
-
<div class="item">
|
1081
|
-
<span class='object_link'><a href="Doing/Section.html#initialize-instance_method" title="Doing::Section#initialize (method)">#initialize</a></span>
|
1082
|
-
<small>Doing::Section</small>
|
1083
|
-
</div>
|
1084
|
-
</li>
|
1085
|
-
|
1086
|
-
|
1087
|
-
<li class="odd ">
|
1088
1144
|
<div class="item">
|
1089
1145
|
<span class='object_link'><a href="Doing/Errors/UserCancelled.html#initialize-instance_method" title="Doing::Errors::UserCancelled#initialize (method)">#initialize</a></span>
|
1090
1146
|
<small>Doing::Errors::UserCancelled</small>
|
@@ -1092,7 +1148,7 @@
|
|
1092
1148
|
</li>
|
1093
1149
|
|
1094
1150
|
|
1095
|
-
<li class="
|
1151
|
+
<li class="odd ">
|
1096
1152
|
<div class="item">
|
1097
1153
|
<span class='object_link'><a href="Doing/Errors/EmptyInput.html#initialize-instance_method" title="Doing::Errors::EmptyInput#initialize (method)">#initialize</a></span>
|
1098
1154
|
<small>Doing::Errors::EmptyInput</small>
|
@@ -1100,7 +1156,7 @@
|
|
1100
1156
|
</li>
|
1101
1157
|
|
1102
1158
|
|
1103
|
-
<li class="
|
1159
|
+
<li class="even ">
|
1104
1160
|
<div class="item">
|
1105
1161
|
<span class='object_link'><a href="Doing/Errors/DoingStandardError.html#initialize-instance_method" title="Doing::Errors::DoingStandardError#initialize (method)">#initialize</a></span>
|
1106
1162
|
<small>Doing::Errors::DoingStandardError</small>
|
@@ -1108,7 +1164,7 @@
|
|
1108
1164
|
</li>
|
1109
1165
|
|
1110
1166
|
|
1111
|
-
<li class="
|
1167
|
+
<li class="odd ">
|
1112
1168
|
<div class="item">
|
1113
1169
|
<span class='object_link'><a href="Doing/Errors/WrongCommand.html#initialize-instance_method" title="Doing::Errors::WrongCommand#initialize (method)">#initialize</a></span>
|
1114
1170
|
<small>Doing::Errors::WrongCommand</small>
|
@@ -1116,15 +1172,15 @@
|
|
1116
1172
|
</li>
|
1117
1173
|
|
1118
1174
|
|
1119
|
-
<li class="
|
1175
|
+
<li class="even ">
|
1120
1176
|
<div class="item">
|
1121
|
-
<span class='object_link'><a href="Doing/
|
1122
|
-
<small>Doing::
|
1177
|
+
<span class='object_link'><a href="Doing/Errors/DoingRuntimeError.html#initialize-instance_method" title="Doing::Errors::DoingRuntimeError#initialize (method)">#initialize</a></span>
|
1178
|
+
<small>Doing::Errors::DoingRuntimeError</small>
|
1123
1179
|
</div>
|
1124
1180
|
</li>
|
1125
1181
|
|
1126
1182
|
|
1127
|
-
<li class="
|
1183
|
+
<li class="odd ">
|
1128
1184
|
<div class="item">
|
1129
1185
|
<span class='object_link'><a href="Doing/Errors/NoResults.html#initialize-instance_method" title="Doing::Errors::NoResults#initialize (method)">#initialize</a></span>
|
1130
1186
|
<small>Doing::Errors::NoResults</small>
|
@@ -1132,7 +1188,7 @@
|
|
1132
1188
|
</li>
|
1133
1189
|
|
1134
1190
|
|
1135
|
-
<li class="
|
1191
|
+
<li class="even ">
|
1136
1192
|
<div class="item">
|
1137
1193
|
<span class='object_link'><a href="Doing/Errors/DoingNoTraceError.html#initialize-instance_method" title="Doing::Errors::DoingNoTraceError#initialize (method)">#initialize</a></span>
|
1138
1194
|
<small>Doing::Errors::DoingNoTraceError</small>
|
@@ -1140,15 +1196,15 @@
|
|
1140
1196
|
</li>
|
1141
1197
|
|
1142
1198
|
|
1143
|
-
<li class="
|
1199
|
+
<li class="odd ">
|
1144
1200
|
<div class="item">
|
1145
|
-
<span class='object_link'><a href="
|
1146
|
-
<small>
|
1201
|
+
<span class='object_link'><a href="PhraseParser/Query.html#initialize-instance_method" title="PhraseParser::Query#initialize (method)">#initialize</a></span>
|
1202
|
+
<small>PhraseParser::Query</small>
|
1147
1203
|
</div>
|
1148
1204
|
</li>
|
1149
1205
|
|
1150
1206
|
|
1151
|
-
<li class="
|
1207
|
+
<li class="even ">
|
1152
1208
|
<div class="item">
|
1153
1209
|
<span class='object_link'><a href="Doing/Errors/PluginException.html#initialize-instance_method" title="Doing::Errors::PluginException#initialize (method)">#initialize</a></span>
|
1154
1210
|
<small>Doing::Errors::PluginException</small>
|
@@ -1156,34 +1212,42 @@
|
|
1156
1212
|
</li>
|
1157
1213
|
|
1158
1214
|
|
1215
|
+
<li class="odd ">
|
1216
|
+
<div class="item">
|
1217
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#initialize-instance_method" title="BooleanTermParser::Clause#initialize (method)">#initialize</a></span>
|
1218
|
+
<small>BooleanTermParser::Clause</small>
|
1219
|
+
</div>
|
1220
|
+
</li>
|
1221
|
+
|
1222
|
+
|
1159
1223
|
<li class="even ">
|
1160
1224
|
<div class="item">
|
1161
|
-
<span class='object_link'><a href="
|
1162
|
-
<small>
|
1225
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#initialize-instance_method" title="BooleanTermParser::Query#initialize (method)">#initialize</a></span>
|
1226
|
+
<small>BooleanTermParser::Query</small>
|
1163
1227
|
</div>
|
1164
1228
|
</li>
|
1165
1229
|
|
1166
1230
|
|
1167
1231
|
<li class="odd ">
|
1168
1232
|
<div class="item">
|
1169
|
-
<span class='object_link'><a href="
|
1170
|
-
<small>
|
1233
|
+
<span class='object_link'><a href="Doing/Section.html#initialize-instance_method" title="Doing::Section#initialize (method)">#initialize</a></span>
|
1234
|
+
<small>Doing::Section</small>
|
1171
1235
|
</div>
|
1172
1236
|
</li>
|
1173
1237
|
|
1174
1238
|
|
1175
1239
|
<li class="even ">
|
1176
1240
|
<div class="item">
|
1177
|
-
<span class='object_link'><a href="
|
1178
|
-
<small>
|
1241
|
+
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#initialize-instance_method" title="GLI::Commands::MarkdownDocumentListener#initialize (method)">#initialize</a></span>
|
1242
|
+
<small>GLI::Commands::MarkdownDocumentListener</small>
|
1179
1243
|
</div>
|
1180
1244
|
</li>
|
1181
1245
|
|
1182
1246
|
|
1183
1247
|
<li class="odd ">
|
1184
1248
|
<div class="item">
|
1185
|
-
<span class='object_link'><a href="Doing/
|
1186
|
-
<small>Doing::
|
1249
|
+
<span class='object_link'><a href="Doing/Item.html#initialize-instance_method" title="Doing::Item#initialize (method)">#initialize</a></span>
|
1250
|
+
<small>Doing::Item</small>
|
1187
1251
|
</div>
|
1188
1252
|
</li>
|
1189
1253
|
|
@@ -1237,6 +1301,14 @@
|
|
1237
1301
|
|
1238
1302
|
|
1239
1303
|
<li class="even ">
|
1304
|
+
<div class="item">
|
1305
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#last_backup-instance_method" title="Doing::Util::Backup#last_backup (method)">#last_backup</a></span>
|
1306
|
+
<small>Doing::Util::Backup</small>
|
1307
|
+
</div>
|
1308
|
+
</li>
|
1309
|
+
|
1310
|
+
|
1311
|
+
<li class="odd ">
|
1240
1312
|
<div class="item">
|
1241
1313
|
<span class='object_link'><a href="String.html#last_color-instance_method" title="String#last_color (method)">#last_color</a></span>
|
1242
1314
|
<small>String</small>
|
@@ -1244,7 +1316,7 @@
|
|
1244
1316
|
</li>
|
1245
1317
|
|
1246
1318
|
|
1247
|
-
<li class="
|
1319
|
+
<li class="even ">
|
1248
1320
|
<div class="item">
|
1249
1321
|
<span class='object_link'><a href="Doing/WWID.html#last_entry-instance_method" title="Doing::WWID#last_entry (method)">#last_entry</a></span>
|
1250
1322
|
<small>Doing::WWID</small>
|
@@ -1252,7 +1324,7 @@
|
|
1252
1324
|
</li>
|
1253
1325
|
|
1254
1326
|
|
1255
|
-
<li class="
|
1327
|
+
<li class="odd ">
|
1256
1328
|
<div class="item">
|
1257
1329
|
<span class='object_link'><a href="Doing/WWID.html#last_note-instance_method" title="Doing::WWID#last_note (method)">#last_note</a></span>
|
1258
1330
|
<small>Doing::WWID</small>
|
@@ -1260,7 +1332,7 @@
|
|
1260
1332
|
</li>
|
1261
1333
|
|
1262
1334
|
|
1263
|
-
<li class="
|
1335
|
+
<li class="even ">
|
1264
1336
|
<div class="item">
|
1265
1337
|
<span class='object_link'><a href="Doing/LogAdapter.html#level-instance_method" title="Doing::LogAdapter#level (method)">#level</a></span>
|
1266
1338
|
<small>Doing::LogAdapter</small>
|
@@ -1268,7 +1340,7 @@
|
|
1268
1340
|
</li>
|
1269
1341
|
|
1270
1342
|
|
1271
|
-
<li class="
|
1343
|
+
<li class="odd ">
|
1272
1344
|
<div class="item">
|
1273
1345
|
<span class='object_link'><a href="String.html#link_urls-instance_method" title="String#link_urls (method)">#link_urls</a></span>
|
1274
1346
|
<small>String</small>
|
@@ -1276,7 +1348,7 @@
|
|
1276
1348
|
</li>
|
1277
1349
|
|
1278
1350
|
|
1279
|
-
<li class="
|
1351
|
+
<li class="even ">
|
1280
1352
|
<div class="item">
|
1281
1353
|
<span class='object_link'><a href="String.html#link_urls!-instance_method" title="String#link_urls! (method)">#link_urls!</a></span>
|
1282
1354
|
<small>String</small>
|
@@ -1284,7 +1356,7 @@
|
|
1284
1356
|
</li>
|
1285
1357
|
|
1286
1358
|
|
1287
|
-
<li class="
|
1359
|
+
<li class="odd ">
|
1288
1360
|
<div class="item">
|
1289
1361
|
<span class='object_link'><a href="Doing/WWID.html#list_date-instance_method" title="Doing::WWID#list_date (method)">#list_date</a></span>
|
1290
1362
|
<small>Doing::WWID</small>
|
@@ -1292,7 +1364,7 @@
|
|
1292
1364
|
</li>
|
1293
1365
|
|
1294
1366
|
|
1295
|
-
<li class="
|
1367
|
+
<li class="even ">
|
1296
1368
|
<div class="item">
|
1297
1369
|
<span class='object_link'><a href="Doing/Plugins.html#list_plugins-class_method" title="Doing::Plugins.list_plugins (method)">list_plugins</a></span>
|
1298
1370
|
<small>Doing::Plugins</small>
|
@@ -1300,7 +1372,7 @@
|
|
1300
1372
|
</li>
|
1301
1373
|
|
1302
1374
|
|
1303
|
-
<li class="
|
1375
|
+
<li class="odd ">
|
1304
1376
|
<div class="item">
|
1305
1377
|
<span class='object_link'><a href="Doing/WWID.html#list_section-instance_method" title="Doing::WWID#list_section (method)">#list_section</a></span>
|
1306
1378
|
<small>Doing::WWID</small>
|
@@ -1308,7 +1380,7 @@
|
|
1308
1380
|
</li>
|
1309
1381
|
|
1310
1382
|
|
1311
|
-
<li class="
|
1383
|
+
<li class="even ">
|
1312
1384
|
<div class="item">
|
1313
1385
|
<span class='object_link'><a href="Doing/Plugins.html#load_plugins-class_method" title="Doing::Plugins.load_plugins (method)">load_plugins</a></span>
|
1314
1386
|
<small>Doing::Plugins</small>
|
@@ -1316,7 +1388,7 @@
|
|
1316
1388
|
</li>
|
1317
1389
|
|
1318
1390
|
|
1319
|
-
<li class="
|
1391
|
+
<li class="odd ">
|
1320
1392
|
<div class="item">
|
1321
1393
|
<span class='object_link'><a href="Doing/LogAdapter.html#log_benchmarks-instance_method" title="Doing::LogAdapter#log_benchmarks (method)">#log_benchmarks</a></span>
|
1322
1394
|
<small>Doing::LogAdapter</small>
|
@@ -1324,7 +1396,7 @@
|
|
1324
1396
|
</li>
|
1325
1397
|
|
1326
1398
|
|
1327
|
-
<li class="
|
1399
|
+
<li class="even ">
|
1328
1400
|
<div class="item">
|
1329
1401
|
<span class='object_link'><a href="Doing/LogAdapter.html#log_change-instance_method" title="Doing::LogAdapter#log_change (method)">#log_change</a></span>
|
1330
1402
|
<small>Doing::LogAdapter</small>
|
@@ -1332,7 +1404,7 @@
|
|
1332
1404
|
</li>
|
1333
1405
|
|
1334
1406
|
|
1335
|
-
<li class="
|
1407
|
+
<li class="odd ">
|
1336
1408
|
<div class="item">
|
1337
1409
|
<span class='object_link'><a href="Doing/LogAdapter.html#log_level=-instance_method" title="Doing::LogAdapter#log_level= (method)">#log_level=</a></span>
|
1338
1410
|
<small>Doing::LogAdapter</small>
|
@@ -1340,7 +1412,7 @@
|
|
1340
1412
|
</li>
|
1341
1413
|
|
1342
1414
|
|
1343
|
-
<li class="
|
1415
|
+
<li class="even ">
|
1344
1416
|
<div class="item">
|
1345
1417
|
<span class='object_link'><a href="Doing/LogAdapter.html#log_now-instance_method" title="Doing::LogAdapter#log_now (method)">#log_now</a></span>
|
1346
1418
|
<small>Doing::LogAdapter</small>
|
@@ -1348,7 +1420,7 @@
|
|
1348
1420
|
</li>
|
1349
1421
|
|
1350
1422
|
|
1351
|
-
<li class="
|
1423
|
+
<li class="odd ">
|
1352
1424
|
<div class="item">
|
1353
1425
|
<span class='object_link'><a href="Array.html#log_tags-instance_method" title="Array#log_tags (method)">#log_tags</a></span>
|
1354
1426
|
<small>Array</small>
|
@@ -1356,7 +1428,7 @@
|
|
1356
1428
|
</li>
|
1357
1429
|
|
1358
1430
|
|
1359
|
-
<li class="
|
1431
|
+
<li class="even ">
|
1360
1432
|
<div class="item">
|
1361
1433
|
<span class='object_link'><a href="Doing/WWID.html#logger-instance_method" title="Doing::WWID#logger (method)">#logger</a></span>
|
1362
1434
|
<small>Doing::WWID</small>
|
@@ -1364,7 +1436,7 @@
|
|
1364
1436
|
</li>
|
1365
1437
|
|
1366
1438
|
|
1367
|
-
<li class="
|
1439
|
+
<li class="odd ">
|
1368
1440
|
<div class="item">
|
1369
1441
|
<span class='object_link'><a href="PhraseParser/Query.html#match-instance_method" title="PhraseParser::Query#match (method)">#match</a></span>
|
1370
1442
|
<small>PhraseParser::Query</small>
|
@@ -1372,7 +1444,7 @@
|
|
1372
1444
|
</li>
|
1373
1445
|
|
1374
1446
|
|
1375
|
-
<li class="
|
1447
|
+
<li class="even ">
|
1376
1448
|
<div class="item">
|
1377
1449
|
<span class='object_link'><a href="BooleanTermParser/Query.html#match-instance_method" title="BooleanTermParser::Query#match (method)">#match</a></span>
|
1378
1450
|
<small>BooleanTermParser::Query</small>
|
@@ -1380,7 +1452,7 @@
|
|
1380
1452
|
</li>
|
1381
1453
|
|
1382
1454
|
|
1383
|
-
<li class="
|
1455
|
+
<li class="odd ">
|
1384
1456
|
<div class="item">
|
1385
1457
|
<span class='object_link'><a href="PhraseParser/Query.html#match_phrase-instance_method" title="PhraseParser::Query#match_phrase (method)">#match_phrase</a></span>
|
1386
1458
|
<small>PhraseParser::Query</small>
|
@@ -1388,7 +1460,7 @@
|
|
1388
1460
|
</li>
|
1389
1461
|
|
1390
1462
|
|
1391
|
-
<li class="
|
1463
|
+
<li class="even ">
|
1392
1464
|
<div class="item">
|
1393
1465
|
<span class='object_link'><a href="Doing/Util.html#mergable%3F-instance_method" title="Doing::Util#mergable? (method)">#mergable?</a></span>
|
1394
1466
|
<small>Doing::Util</small>
|
@@ -1396,7 +1468,7 @@
|
|
1396
1468
|
</li>
|
1397
1469
|
|
1398
1470
|
|
1399
|
-
<li class="
|
1471
|
+
<li class="odd ">
|
1400
1472
|
<div class="item">
|
1401
1473
|
<span class='object_link'><a href="Doing/Util.html#merge_default_proc-instance_method" title="Doing::Util#merge_default_proc (method)">#merge_default_proc</a></span>
|
1402
1474
|
<small>Doing::Util</small>
|
@@ -1404,7 +1476,7 @@
|
|
1404
1476
|
</li>
|
1405
1477
|
|
1406
1478
|
|
1407
|
-
<li class="
|
1479
|
+
<li class="even ">
|
1408
1480
|
<div class="item">
|
1409
1481
|
<span class='object_link'><a href="Doing/Util.html#merge_values-instance_method" title="Doing::Util#merge_values (method)">#merge_values</a></span>
|
1410
1482
|
<small>Doing::Util</small>
|
@@ -1412,7 +1484,7 @@
|
|
1412
1484
|
</li>
|
1413
1485
|
|
1414
1486
|
|
1415
|
-
<li class="
|
1487
|
+
<li class="odd ">
|
1416
1488
|
<div class="item">
|
1417
1489
|
<span class='object_link'><a href="Doing/LogAdapter.html#messages-instance_method" title="Doing::LogAdapter#messages (method)">#messages</a></span>
|
1418
1490
|
<small>Doing::LogAdapter</small>
|
@@ -1420,7 +1492,7 @@
|
|
1420
1492
|
</li>
|
1421
1493
|
|
1422
1494
|
|
1423
|
-
<li class="
|
1495
|
+
<li class="even ">
|
1424
1496
|
<div class="item">
|
1425
1497
|
<span class='object_link'><a href="Doing/Item.html#move_to-instance_method" title="Doing::Item#move_to (method)">#move_to</a></span>
|
1426
1498
|
<small>Doing::Item</small>
|
@@ -1428,7 +1500,7 @@
|
|
1428
1500
|
</li>
|
1429
1501
|
|
1430
1502
|
|
1431
|
-
<li class="
|
1503
|
+
<li class="odd ">
|
1432
1504
|
<div class="item">
|
1433
1505
|
<span class='object_link'><a href="Status.html#msg-instance_method" title="Status#msg (method)">#msg</a></span>
|
1434
1506
|
<small>Status</small>
|
@@ -1436,7 +1508,7 @@
|
|
1436
1508
|
</li>
|
1437
1509
|
|
1438
1510
|
|
1439
|
-
<li class="
|
1511
|
+
<li class="even ">
|
1440
1512
|
<div class="item">
|
1441
1513
|
<span class='object_link'><a href="PhraseParser/Query.html#must_clauses-instance_method" title="PhraseParser::Query#must_clauses (method)">#must_clauses</a></span>
|
1442
1514
|
<small>PhraseParser::Query</small>
|
@@ -1444,7 +1516,7 @@
|
|
1444
1516
|
</li>
|
1445
1517
|
|
1446
1518
|
|
1447
|
-
<li class="
|
1519
|
+
<li class="odd ">
|
1448
1520
|
<div class="item">
|
1449
1521
|
<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>
|
1450
1522
|
<small>PhraseParser::Query</small>
|
@@ -1452,7 +1524,7 @@
|
|
1452
1524
|
</li>
|
1453
1525
|
|
1454
1526
|
|
1455
|
-
<li class="
|
1527
|
+
<li class="even ">
|
1456
1528
|
<div class="item">
|
1457
1529
|
<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>
|
1458
1530
|
<small>BooleanTermParser::Query</small>
|
@@ -1460,7 +1532,7 @@
|
|
1460
1532
|
</li>
|
1461
1533
|
|
1462
1534
|
|
1463
|
-
<li class="
|
1535
|
+
<li class="odd ">
|
1464
1536
|
<div class="item">
|
1465
1537
|
<span class='object_link'><a href="BooleanTermParser/Query.html#must_terms-instance_method" title="BooleanTermParser::Query#must_terms (method)">#must_terms</a></span>
|
1466
1538
|
<small>BooleanTermParser::Query</small>
|
@@ -1468,7 +1540,7 @@
|
|
1468
1540
|
</li>
|
1469
1541
|
|
1470
1542
|
|
1471
|
-
<li class="
|
1543
|
+
<li class="even ">
|
1472
1544
|
<div class="item">
|
1473
1545
|
<span class='object_link'><a href="Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>
|
1474
1546
|
<small>Array</small>
|
@@ -1476,7 +1548,7 @@
|
|
1476
1548
|
</li>
|
1477
1549
|
|
1478
1550
|
|
1479
|
-
<li class="
|
1551
|
+
<li class="odd ">
|
1480
1552
|
<div class="item">
|
1481
1553
|
<span class='object_link'><a href="Doing/WWID.html#next_item-instance_method" title="Doing::WWID#next_item (method)">#next_item</a></span>
|
1482
1554
|
<small>Doing::WWID</small>
|
@@ -1484,7 +1556,7 @@
|
|
1484
1556
|
</li>
|
1485
1557
|
|
1486
1558
|
|
1487
|
-
<li class="
|
1559
|
+
<li class="even ">
|
1488
1560
|
<div class="item">
|
1489
1561
|
<span class='object_link'><a href="String.html#normalize_age-instance_method" title="String#normalize_age (method)">#normalize_age</a></span>
|
1490
1562
|
<small>String</small>
|
@@ -1492,7 +1564,7 @@
|
|
1492
1564
|
</li>
|
1493
1565
|
|
1494
1566
|
|
1495
|
-
<li class="
|
1567
|
+
<li class="odd ">
|
1496
1568
|
<div class="item">
|
1497
1569
|
<span class='object_link'><a href="Symbol.html#normalize_age-instance_method" title="Symbol#normalize_age (method)">#normalize_age</a></span>
|
1498
1570
|
<small>Symbol</small>
|
@@ -1500,17 +1572,9 @@
|
|
1500
1572
|
</li>
|
1501
1573
|
|
1502
1574
|
|
1503
|
-
<li class="odd ">
|
1504
|
-
<div class="item">
|
1505
|
-
<span class='object_link'><a href="String.html#normalize_age!-instance_method" title="String#normalize_age! (method)">#normalize_age!</a></span>
|
1506
|
-
<small>String</small>
|
1507
|
-
</div>
|
1508
|
-
</li>
|
1509
|
-
|
1510
|
-
|
1511
1575
|
<li class="even ">
|
1512
1576
|
<div class="item">
|
1513
|
-
<span class='object_link'><a href="String.html#
|
1577
|
+
<span class='object_link'><a href="String.html#normalize_age!-instance_method" title="String#normalize_age! (method)">#normalize_age!</a></span>
|
1514
1578
|
<small>String</small>
|
1515
1579
|
</div>
|
1516
1580
|
</li>
|
@@ -1526,7 +1590,7 @@
|
|
1526
1590
|
|
1527
1591
|
<li class="even ">
|
1528
1592
|
<div class="item">
|
1529
|
-
<span class='object_link'><a href="String.html#normalize_bool
|
1593
|
+
<span class='object_link'><a href="String.html#normalize_bool-instance_method" title="String#normalize_bool (method)">#normalize_bool</a></span>
|
1530
1594
|
<small>String</small>
|
1531
1595
|
</div>
|
1532
1596
|
</li>
|
@@ -1534,23 +1598,23 @@
|
|
1534
1598
|
|
1535
1599
|
<li class="odd ">
|
1536
1600
|
<div class="item">
|
1537
|
-
<span class='object_link'><a href="
|
1538
|
-
<small>
|
1601
|
+
<span class='object_link'><a href="String.html#normalize_bool!-instance_method" title="String#normalize_bool! (method)">#normalize_bool!</a></span>
|
1602
|
+
<small>String</small>
|
1539
1603
|
</div>
|
1540
1604
|
</li>
|
1541
1605
|
|
1542
1606
|
|
1543
1607
|
<li class="even ">
|
1544
1608
|
<div class="item">
|
1545
|
-
<span class='object_link'><a href="
|
1546
|
-
<small>
|
1609
|
+
<span class='object_link'><a href="Symbol.html#normalize_case-instance_method" title="Symbol#normalize_case (method)">#normalize_case</a></span>
|
1610
|
+
<small>Symbol</small>
|
1547
1611
|
</div>
|
1548
1612
|
</li>
|
1549
1613
|
|
1550
1614
|
|
1551
1615
|
<li class="odd ">
|
1552
1616
|
<div class="item">
|
1553
|
-
<span class='object_link'><a href="String.html#normalize_case
|
1617
|
+
<span class='object_link'><a href="String.html#normalize_case-instance_method" title="String#normalize_case (method)">#normalize_case</a></span>
|
1554
1618
|
<small>String</small>
|
1555
1619
|
</div>
|
1556
1620
|
</li>
|
@@ -1558,8 +1622,8 @@
|
|
1558
1622
|
|
1559
1623
|
<li class="even ">
|
1560
1624
|
<div class="item">
|
1561
|
-
<span class='object_link'><a href="
|
1562
|
-
<small>
|
1625
|
+
<span class='object_link'><a href="String.html#normalize_case!-instance_method" title="String#normalize_case! (method)">#normalize_case!</a></span>
|
1626
|
+
<small>String</small>
|
1563
1627
|
</div>
|
1564
1628
|
</li>
|
1565
1629
|
|
@@ -1574,16 +1638,16 @@
|
|
1574
1638
|
|
1575
1639
|
<li class="even ">
|
1576
1640
|
<div class="item">
|
1577
|
-
<span class='object_link'><a href="
|
1578
|
-
<small>
|
1641
|
+
<span class='object_link'><a href="Symbol.html#normalize_matching-instance_method" title="Symbol#normalize_matching (method)">#normalize_matching</a></span>
|
1642
|
+
<small>Symbol</small>
|
1579
1643
|
</div>
|
1580
1644
|
</li>
|
1581
1645
|
|
1582
1646
|
|
1583
1647
|
<li class="odd ">
|
1584
1648
|
<div class="item">
|
1585
|
-
<span class='object_link'><a href="
|
1586
|
-
<small>
|
1649
|
+
<span class='object_link'><a href="String.html#normalize_matching!-instance_method" title="String#normalize_matching! (method)">#normalize_matching!</a></span>
|
1650
|
+
<small>String</small>
|
1587
1651
|
</div>
|
1588
1652
|
</li>
|
1589
1653
|
|
@@ -1598,15 +1662,15 @@
|
|
1598
1662
|
|
1599
1663
|
<li class="odd ">
|
1600
1664
|
<div class="item">
|
1601
|
-
<span class='object_link'><a href="
|
1602
|
-
<small>
|
1665
|
+
<span class='object_link'><a href="Symbol.html#normalize_order-instance_method" title="Symbol#normalize_order (method)">#normalize_order</a></span>
|
1666
|
+
<small>Symbol</small>
|
1603
1667
|
</div>
|
1604
1668
|
</li>
|
1605
1669
|
|
1606
1670
|
|
1607
1671
|
<li class="even ">
|
1608
1672
|
<div class="item">
|
1609
|
-
<span class='object_link'><a href="String.html#
|
1673
|
+
<span class='object_link'><a href="String.html#normalize_order!-instance_method" title="String#normalize_order! (method)">#normalize_order!</a></span>
|
1610
1674
|
<small>String</small>
|
1611
1675
|
</div>
|
1612
1676
|
</li>
|
@@ -1614,7 +1678,7 @@
|
|
1614
1678
|
|
1615
1679
|
<li class="odd ">
|
1616
1680
|
<div class="item">
|
1617
|
-
<span class='object_link'><a href="String.html#normalize_trigger
|
1681
|
+
<span class='object_link'><a href="String.html#normalize_trigger-instance_method" title="String#normalize_trigger (method)">#normalize_trigger</a></span>
|
1618
1682
|
<small>String</small>
|
1619
1683
|
</div>
|
1620
1684
|
</li>
|
@@ -1622,16 +1686,16 @@
|
|
1622
1686
|
|
1623
1687
|
<li class="even ">
|
1624
1688
|
<div class="item">
|
1625
|
-
<span class='object_link'><a href="
|
1626
|
-
<small>
|
1689
|
+
<span class='object_link'><a href="String.html#normalize_trigger!-instance_method" title="String#normalize_trigger! (method)">#normalize_trigger!</a></span>
|
1690
|
+
<small>String</small>
|
1627
1691
|
</div>
|
1628
1692
|
</li>
|
1629
1693
|
|
1630
1694
|
|
1631
1695
|
<li class="odd ">
|
1632
1696
|
<div class="item">
|
1633
|
-
<span class='object_link'><a href="
|
1634
|
-
<small>
|
1697
|
+
<span class='object_link'><a href="Doing/Item.html#note-instance_method" title="Doing::Item#note (method)">#note</a></span>
|
1698
|
+
<small>Doing::Item</small>
|
1635
1699
|
</div>
|
1636
1700
|
</li>
|
1637
1701
|
|
@@ -1654,16 +1718,16 @@
|
|
1654
1718
|
|
1655
1719
|
<li class="even ">
|
1656
1720
|
<div class="item">
|
1657
|
-
<span class='object_link'><a href="
|
1658
|
-
<small>
|
1721
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#operator-instance_method" title="BooleanTermParser::Clause#operator (method)">#operator</a></span>
|
1722
|
+
<small>BooleanTermParser::Clause</small>
|
1659
1723
|
</div>
|
1660
1724
|
</li>
|
1661
1725
|
|
1662
1726
|
|
1663
1727
|
<li class="odd ">
|
1664
1728
|
<div class="item">
|
1665
|
-
<span class='object_link'><a href="
|
1666
|
-
<small>
|
1729
|
+
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#options-instance_method" title="GLI::Commands::MarkdownDocumentListener#options (method)">#options</a></span>
|
1730
|
+
<small>GLI::Commands::MarkdownDocumentListener</small>
|
1667
1731
|
</div>
|
1668
1732
|
</li>
|
1669
1733
|
|
@@ -1677,6 +1741,14 @@
|
|
1677
1741
|
|
1678
1742
|
|
1679
1743
|
<li class="odd ">
|
1744
|
+
<div class="item">
|
1745
|
+
<span class='object_link'><a href="Doing/TemplateString.html#original-instance_method" title="Doing::TemplateString#original (method)">#original</a></span>
|
1746
|
+
<small>Doing::TemplateString</small>
|
1747
|
+
</div>
|
1748
|
+
</li>
|
1749
|
+
|
1750
|
+
|
1751
|
+
<li class="even ">
|
1680
1752
|
<div class="item">
|
1681
1753
|
<span class='object_link'><a href="Doing/LogAdapter.html#output_results-instance_method" title="Doing::LogAdapter#output_results (method)">#output_results</a></span>
|
1682
1754
|
<small>Doing::LogAdapter</small>
|
@@ -1684,7 +1756,7 @@
|
|
1684
1756
|
</li>
|
1685
1757
|
|
1686
1758
|
|
1687
|
-
<li class="
|
1759
|
+
<li class="odd ">
|
1688
1760
|
<div class="item">
|
1689
1761
|
<span class='object_link'><a href="Doing/Item.html#overlapping_time%3F-instance_method" title="Doing::Item#overlapping_time? (method)">#overlapping_time?</a></span>
|
1690
1762
|
<small>Doing::Item</small>
|
@@ -1692,7 +1764,7 @@
|
|
1692
1764
|
</li>
|
1693
1765
|
|
1694
1766
|
|
1695
|
-
<li class="
|
1767
|
+
<li class="even ">
|
1696
1768
|
<div class="item">
|
1697
1769
|
<span class='object_link'><a href="Doing/Pager.html#page-class_method" title="Doing::Pager.page (method)">page</a></span>
|
1698
1770
|
<small>Doing::Pager</small>
|
@@ -1700,7 +1772,7 @@
|
|
1700
1772
|
</li>
|
1701
1773
|
|
1702
1774
|
|
1703
|
-
<li class="
|
1775
|
+
<li class="odd ">
|
1704
1776
|
<div class="item">
|
1705
1777
|
<span class='object_link'><a href="Doing/Pager.html#paginate-class_method" title="Doing::Pager.paginate (method)">paginate</a></span>
|
1706
1778
|
<small>Doing::Pager</small>
|
@@ -1708,7 +1780,7 @@
|
|
1708
1780
|
</li>
|
1709
1781
|
|
1710
1782
|
|
1711
|
-
<li class="
|
1783
|
+
<li class="even ">
|
1712
1784
|
<div class="item">
|
1713
1785
|
<span class='object_link'><a href="Doing/Pager.html#paginate=-class_method" title="Doing::Pager.paginate= (method)">paginate=</a></span>
|
1714
1786
|
<small>Doing::Pager</small>
|
@@ -1716,7 +1788,7 @@
|
|
1716
1788
|
</li>
|
1717
1789
|
|
1718
1790
|
|
1719
|
-
<li class="
|
1791
|
+
<li class="odd ">
|
1720
1792
|
<div class="item">
|
1721
1793
|
<span class='object_link'><a href="Doing/TemplateString.html#parse_colors-instance_method" title="Doing::TemplateString#parse_colors (method)">#parse_colors</a></span>
|
1722
1794
|
<small>Doing::TemplateString</small>
|
@@ -1724,7 +1796,7 @@
|
|
1724
1796
|
</li>
|
1725
1797
|
|
1726
1798
|
|
1727
|
-
<li class="
|
1799
|
+
<li class="even ">
|
1728
1800
|
<div class="item">
|
1729
1801
|
<span class='object_link'><a href="Doing/TemplateString.html#parsed_colors-instance_method" title="Doing::TemplateString#parsed_colors (method)">#parsed_colors</a></span>
|
1730
1802
|
<small>Doing::TemplateString</small>
|
@@ -1732,7 +1804,7 @@
|
|
1732
1804
|
</li>
|
1733
1805
|
|
1734
1806
|
|
1735
|
-
<li class="
|
1807
|
+
<li class="odd ">
|
1736
1808
|
<div class="item">
|
1737
1809
|
<span class='object_link'><a href="PhraseParser/PhraseClause.html#phrase-instance_method" title="PhraseParser::PhraseClause#phrase (method)">#phrase</a></span>
|
1738
1810
|
<small>PhraseParser::PhraseClause</small>
|
@@ -1740,7 +1812,7 @@
|
|
1740
1812
|
</li>
|
1741
1813
|
|
1742
1814
|
|
1743
|
-
<li class="
|
1815
|
+
<li class="even ">
|
1744
1816
|
<div class="item">
|
1745
1817
|
<span class='object_link'><a href="Doing/Errors/PluginException.html#plugin-instance_method" title="Doing::Errors::PluginException#plugin (method)">#plugin</a></span>
|
1746
1818
|
<small>Doing::Errors::PluginException</small>
|
@@ -1748,7 +1820,7 @@
|
|
1748
1820
|
</li>
|
1749
1821
|
|
1750
1822
|
|
1751
|
-
<li class="
|
1823
|
+
<li class="odd ">
|
1752
1824
|
<div class="item">
|
1753
1825
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_names-class_method" title="Doing::Plugins.plugin_names (method)">plugin_names</a></span>
|
1754
1826
|
<small>Doing::Plugins</small>
|
@@ -1756,7 +1828,7 @@
|
|
1756
1828
|
</li>
|
1757
1829
|
|
1758
1830
|
|
1759
|
-
<li class="
|
1831
|
+
<li class="even ">
|
1760
1832
|
<div class="item">
|
1761
1833
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_regex-class_method" title="Doing::Plugins.plugin_regex (method)">plugin_regex</a></span>
|
1762
1834
|
<small>Doing::Plugins</small>
|
@@ -1764,7 +1836,7 @@
|
|
1764
1836
|
</li>
|
1765
1837
|
|
1766
1838
|
|
1767
|
-
<li class="
|
1839
|
+
<li class="odd ">
|
1768
1840
|
<div class="item">
|
1769
1841
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_templates-class_method" title="Doing::Plugins.plugin_templates (method)">plugin_templates</a></span>
|
1770
1842
|
<small>Doing::Plugins</small>
|
@@ -1772,7 +1844,7 @@
|
|
1772
1844
|
</li>
|
1773
1845
|
|
1774
1846
|
|
1775
|
-
<li class="
|
1847
|
+
<li class="even ">
|
1776
1848
|
<div class="item">
|
1777
1849
|
<span class='object_link'><a href="Doing/Plugins.html#plugins-class_method" title="Doing::Plugins.plugins (method)">plugins</a></span>
|
1778
1850
|
<small>Doing::Plugins</small>
|
@@ -1780,7 +1852,7 @@
|
|
1780
1852
|
</li>
|
1781
1853
|
|
1782
1854
|
|
1783
|
-
<li class="
|
1855
|
+
<li class="odd ">
|
1784
1856
|
<div class="item">
|
1785
1857
|
<span class='object_link'><a href="Doing/Plugins.html#plugins_path-class_method" title="Doing::Plugins.plugins_path (method)">plugins_path</a></span>
|
1786
1858
|
<small>Doing::Plugins</small>
|
@@ -1788,14 +1860,6 @@
|
|
1788
1860
|
</li>
|
1789
1861
|
|
1790
1862
|
|
1791
|
-
<li class="odd ">
|
1792
|
-
<div class="item">
|
1793
|
-
<span class='object_link'><a href="String.html#pluralize-instance_method" title="String#pluralize (method)">#pluralize</a></span>
|
1794
|
-
<small>String</small>
|
1795
|
-
</div>
|
1796
|
-
</li>
|
1797
|
-
|
1798
|
-
|
1799
1863
|
<li class="even ">
|
1800
1864
|
<div class="item">
|
1801
1865
|
<span class='object_link'><a href="Doing/Hooks.html#priority_value-class_method" title="Doing::Hooks.priority_value (method)">priority_value</a></span>
|
@@ -1844,6 +1908,22 @@
|
|
1844
1908
|
</li>
|
1845
1909
|
|
1846
1910
|
|
1911
|
+
<li class="even ">
|
1912
|
+
<div class="item">
|
1913
|
+
<span class='object_link'><a href="Doing/Prompt.html#read_line-class_method" title="Doing::Prompt.read_line (method)">read_line</a></span>
|
1914
|
+
<small>Doing::Prompt</small>
|
1915
|
+
</div>
|
1916
|
+
</li>
|
1917
|
+
|
1918
|
+
|
1919
|
+
<li class="odd ">
|
1920
|
+
<div class="item">
|
1921
|
+
<span class='object_link'><a href="Doing/Prompt.html#read_lines-class_method" title="Doing::Prompt.read_lines (method)">read_lines</a></span>
|
1922
|
+
<small>Doing::Prompt</small>
|
1923
|
+
</div>
|
1924
|
+
</li>
|
1925
|
+
|
1926
|
+
|
1847
1927
|
<li class="even ">
|
1848
1928
|
<div class="item">
|
1849
1929
|
<span class='object_link'><a href="Doing/WWID.html#recent-instance_method" title="Doing::WWID#recent (method)">#recent</a></span>
|
@@ -1933,6 +2013,14 @@
|
|
1933
2013
|
|
1934
2014
|
|
1935
2015
|
<li class="odd ">
|
2016
|
+
<div class="item">
|
2017
|
+
<span class='object_link'><a href="Doing/Prompt.html#request_lines-class_method" title="Doing::Prompt.request_lines (method)">request_lines</a></span>
|
2018
|
+
<small>Doing::Prompt</small>
|
2019
|
+
</div>
|
2020
|
+
</li>
|
2021
|
+
|
2022
|
+
|
2023
|
+
<li class="even ">
|
1936
2024
|
<div class="item">
|
1937
2025
|
<span class='object_link'><a href="Doing/WWID.html#reset_item-instance_method" title="Doing::WWID#reset_item (method)">#reset_item</a></span>
|
1938
2026
|
<small>Doing::WWID</small>
|
@@ -1940,7 +2028,7 @@
|
|
1940
2028
|
</li>
|
1941
2029
|
|
1942
2030
|
|
1943
|
-
<li class="
|
2031
|
+
<li class="odd ">
|
1944
2032
|
<div class="item">
|
1945
2033
|
<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>
|
1946
2034
|
<small>Doing::Configuration</small>
|
@@ -1948,7 +2036,7 @@
|
|
1948
2036
|
</li>
|
1949
2037
|
|
1950
2038
|
|
1951
|
-
<li class="
|
2039
|
+
<li class="even ">
|
1952
2040
|
<div class="item">
|
1953
2041
|
<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>
|
1954
2042
|
<small>Doing::Util::Backup</small>
|
@@ -1956,7 +2044,7 @@
|
|
1956
2044
|
</li>
|
1957
2045
|
|
1958
2046
|
|
1959
|
-
<li class="
|
2047
|
+
<li class="odd ">
|
1960
2048
|
<div class="item">
|
1961
2049
|
<span class='object_link'><a href="Doing/LogAdapter.html#restore_level-instance_method" title="Doing::LogAdapter#restore_level (method)">#restore_level</a></span>
|
1962
2050
|
<small>Doing::LogAdapter</small>
|
@@ -1964,7 +2052,7 @@
|
|
1964
2052
|
</li>
|
1965
2053
|
|
1966
2054
|
|
1967
|
-
<li class="
|
2055
|
+
<li class="even ">
|
1968
2056
|
<div class="item">
|
1969
2057
|
<span class='object_link'><a href="Doing/Prompt.html#restore_std-class_method" title="Doing::Prompt.restore_std (method)">restore_std</a></span>
|
1970
2058
|
<small>Doing::Prompt</small>
|
@@ -1972,7 +2060,7 @@
|
|
1972
2060
|
</li>
|
1973
2061
|
|
1974
2062
|
|
1975
|
-
<li class="
|
2063
|
+
<li class="odd ">
|
1976
2064
|
<div class="item">
|
1977
2065
|
<span class='object_link'><a href="Doing/LogAdapter.html#results-instance_method" title="Doing::LogAdapter#results (method)">#results</a></span>
|
1978
2066
|
<small>Doing::LogAdapter</small>
|
@@ -1980,7 +2068,7 @@
|
|
1980
2068
|
</li>
|
1981
2069
|
|
1982
2070
|
|
1983
|
-
<li class="
|
2071
|
+
<li class="even ">
|
1984
2072
|
<div class="item">
|
1985
2073
|
<span class='object_link'><a href="Doing/WWID.html#rotate-instance_method" title="Doing::WWID#rotate (method)">#rotate</a></span>
|
1986
2074
|
<small>Doing::WWID</small>
|
@@ -1988,7 +2076,7 @@
|
|
1988
2076
|
</li>
|
1989
2077
|
|
1990
2078
|
|
1991
|
-
<li class="
|
2079
|
+
<li class="odd ">
|
1992
2080
|
<div class="item">
|
1993
2081
|
<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>
|
1994
2082
|
<small>Doing::Util</small>
|
@@ -1996,7 +2084,7 @@
|
|
1996
2084
|
</li>
|
1997
2085
|
|
1998
2086
|
|
1999
|
-
<li class="
|
2087
|
+
<li class="even ">
|
2000
2088
|
<div class="item">
|
2001
2089
|
<span class='object_link'><a href="Doing/Item.html#same_time%3F-instance_method" title="Doing::Item#same_time? (method)">#same_time?</a></span>
|
2002
2090
|
<small>Doing::Item</small>
|
@@ -2004,7 +2092,7 @@
|
|
2004
2092
|
</li>
|
2005
2093
|
|
2006
2094
|
|
2007
|
-
<li class="
|
2095
|
+
<li class="odd ">
|
2008
2096
|
<div class="item">
|
2009
2097
|
<span class='object_link'><a href="Doing/Plugins.html#save_template-class_method" title="Doing::Plugins.save_template (method)">save_template</a></span>
|
2010
2098
|
<small>Doing::Plugins</small>
|
@@ -2012,7 +2100,7 @@
|
|
2012
2100
|
</li>
|
2013
2101
|
|
2014
2102
|
|
2015
|
-
<li class="
|
2103
|
+
<li class="even ">
|
2016
2104
|
<div class="item">
|
2017
2105
|
<span class='object_link'><a href="Doing/Item.html#search-instance_method" title="Doing::Item#search (method)">#search</a></span>
|
2018
2106
|
<small>Doing::Item</small>
|
@@ -2020,7 +2108,7 @@
|
|
2020
2108
|
</li>
|
2021
2109
|
|
2022
2110
|
|
2023
|
-
<li class="
|
2111
|
+
<li class="odd ">
|
2024
2112
|
<div class="item">
|
2025
2113
|
<span class='object_link'><a href="Doing/Item.html#section-instance_method" title="Doing::Item#section (method)">#section</a></span>
|
2026
2114
|
<small>Doing::Item</small>
|
@@ -2028,7 +2116,7 @@
|
|
2028
2116
|
</li>
|
2029
2117
|
|
2030
2118
|
|
2031
|
-
<li class="
|
2119
|
+
<li class="even ">
|
2032
2120
|
<div class="item">
|
2033
2121
|
<span class='object_link'><a href="Doing/Items.html#section%3F-instance_method" title="Doing::Items#section? (method)">#section?</a></span>
|
2034
2122
|
<small>Doing::Items</small>
|
@@ -2036,7 +2124,7 @@
|
|
2036
2124
|
</li>
|
2037
2125
|
|
2038
2126
|
|
2039
|
-
<li class="
|
2127
|
+
<li class="odd ">
|
2040
2128
|
<div class="item">
|
2041
2129
|
<span class='object_link'><a href="Doing/Items.html#section_titles-instance_method" title="Doing::Items#section_titles (method)">#section_titles</a></span>
|
2042
2130
|
<small>Doing::Items</small>
|
@@ -2044,7 +2132,7 @@
|
|
2044
2132
|
</li>
|
2045
2133
|
|
2046
2134
|
|
2047
|
-
<li class="
|
2135
|
+
<li class="even ">
|
2048
2136
|
<div class="item">
|
2049
2137
|
<span class='object_link'><a href="Doing/Items.html#sections-instance_method" title="Doing::Items#sections (method)">#sections</a></span>
|
2050
2138
|
<small>Doing::Items</small>
|
@@ -2052,7 +2140,7 @@
|
|
2052
2140
|
</li>
|
2053
2141
|
|
2054
2142
|
|
2055
|
-
<li class="
|
2143
|
+
<li class="odd ">
|
2056
2144
|
<div class="item">
|
2057
2145
|
<span class='object_link'><a href="Doing/WWID.html#sections-instance_method" title="Doing::WWID#sections (method)">#sections</a></span>
|
2058
2146
|
<small>Doing::WWID</small>
|
@@ -2060,7 +2148,7 @@
|
|
2060
2148
|
</li>
|
2061
2149
|
|
2062
2150
|
|
2063
|
-
<li class="
|
2151
|
+
<li class="even ">
|
2064
2152
|
<div class="item">
|
2065
2153
|
<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>
|
2066
2154
|
<small>Doing::Util::Backup</small>
|
@@ -2068,7 +2156,7 @@
|
|
2068
2156
|
</li>
|
2069
2157
|
|
2070
2158
|
|
2071
|
-
<li class="
|
2159
|
+
<li class="odd ">
|
2072
2160
|
<div class="item">
|
2073
2161
|
<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>
|
2074
2162
|
<small>Doing::Util::Backup</small>
|
@@ -2076,7 +2164,7 @@
|
|
2076
2164
|
</li>
|
2077
2165
|
|
2078
2166
|
|
2079
|
-
<li class="
|
2167
|
+
<li class="even ">
|
2080
2168
|
<div class="item">
|
2081
2169
|
<span class='object_link'><a href="String.html#set_type-instance_method" title="String#set_type (method)">#set_type</a></span>
|
2082
2170
|
<small>String</small>
|
@@ -2084,7 +2172,7 @@
|
|
2084
2172
|
</li>
|
2085
2173
|
|
2086
2174
|
|
2087
|
-
<li class="
|
2175
|
+
<li class="odd ">
|
2088
2176
|
<div class="item">
|
2089
2177
|
<span class='object_link'><a href="Doing/Configuration.html#settings-instance_method" title="Doing::Configuration#settings (method)">#settings</a></span>
|
2090
2178
|
<small>Doing::Configuration</small>
|
@@ -2092,7 +2180,7 @@
|
|
2092
2180
|
</li>
|
2093
2181
|
|
2094
2182
|
|
2095
|
-
<li class="
|
2183
|
+
<li class="even ">
|
2096
2184
|
<div class="item">
|
2097
2185
|
<span class='object_link'><a href="PhraseParser/Query.html#should_clauses-instance_method" title="PhraseParser::Query#should_clauses (method)">#should_clauses</a></span>
|
2098
2186
|
<small>PhraseParser::Query</small>
|
@@ -2100,7 +2188,7 @@
|
|
2100
2188
|
</li>
|
2101
2189
|
|
2102
2190
|
|
2103
|
-
<li class="
|
2191
|
+
<li class="odd ">
|
2104
2192
|
<div class="item">
|
2105
2193
|
<span class='object_link'><a href="Doing/Item.html#should_finish%3F-instance_method" title="Doing::Item#should_finish? (method)">#should_finish?</a></span>
|
2106
2194
|
<small>Doing::Item</small>
|
@@ -2108,7 +2196,7 @@
|
|
2108
2196
|
</li>
|
2109
2197
|
|
2110
2198
|
|
2111
|
-
<li class="
|
2199
|
+
<li class="even ">
|
2112
2200
|
<div class="item">
|
2113
2201
|
<span class='object_link'><a href="BooleanTermParser/Query.html#should_terms-instance_method" title="BooleanTermParser::Query#should_terms (method)">#should_terms</a></span>
|
2114
2202
|
<small>BooleanTermParser::Query</small>
|
@@ -2116,7 +2204,7 @@
|
|
2116
2204
|
</li>
|
2117
2205
|
|
2118
2206
|
|
2119
|
-
<li class="
|
2207
|
+
<li class="odd ">
|
2120
2208
|
<div class="item">
|
2121
2209
|
<span class='object_link'><a href="Doing/Item.html#should_time%3F-instance_method" title="Doing::Item#should_time? (method)">#should_time?</a></span>
|
2122
2210
|
<small>Doing::Item</small>
|
@@ -2124,7 +2212,7 @@
|
|
2124
2212
|
</li>
|
2125
2213
|
|
2126
2214
|
|
2127
|
-
<li class="
|
2215
|
+
<li class="even ">
|
2128
2216
|
<div class="item">
|
2129
2217
|
<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>
|
2130
2218
|
<small>Doing::Util::Backup</small>
|
@@ -2132,7 +2220,7 @@
|
|
2132
2220
|
</li>
|
2133
2221
|
|
2134
2222
|
|
2135
|
-
<li class="
|
2223
|
+
<li class="odd ">
|
2136
2224
|
<div class="item">
|
2137
2225
|
<span class='object_link'><a href="Doing/Prompt.html#silence_std-class_method" title="Doing::Prompt.silence_std (method)">silence_std</a></span>
|
2138
2226
|
<small>Doing::Prompt</small>
|
@@ -2140,7 +2228,7 @@
|
|
2140
2228
|
</li>
|
2141
2229
|
|
2142
2230
|
|
2143
|
-
<li class="
|
2231
|
+
<li class="even ">
|
2144
2232
|
<div class="item">
|
2145
2233
|
<span class='object_link'><a href="String.html#simple_wrap-instance_method" title="String#simple_wrap (method)">#simple_wrap</a></span>
|
2146
2234
|
<small>String</small>
|
@@ -2148,6 +2236,14 @@
|
|
2148
2236
|
</li>
|
2149
2237
|
|
2150
2238
|
|
2239
|
+
<li class="odd ">
|
2240
|
+
<div class="item">
|
2241
|
+
<span class='object_link'><a href="String.html#split_date_range-instance_method" title="String#split_date_range (method)">#split_date_range</a></span>
|
2242
|
+
<small>String</small>
|
2243
|
+
</div>
|
2244
|
+
</li>
|
2245
|
+
|
2246
|
+
|
2151
2247
|
<li class="even ">
|
2152
2248
|
<div class="item">
|
2153
2249
|
<span class='object_link'><a href="Status.html#status-instance_method" title="Status#status (method)">#status</a></span>
|
@@ -2206,16 +2302,16 @@
|
|
2206
2302
|
|
2207
2303
|
<li class="odd ">
|
2208
2304
|
<div class="item">
|
2209
|
-
<span class='object_link'><a href="
|
2210
|
-
<small>
|
2305
|
+
<span class='object_link'><a href="PhraseParser/Operator.html#symbol-class_method" title="PhraseParser::Operator.symbol (method)">symbol</a></span>
|
2306
|
+
<small>PhraseParser::Operator</small>
|
2211
2307
|
</div>
|
2212
2308
|
</li>
|
2213
2309
|
|
2214
2310
|
|
2215
2311
|
<li class="even ">
|
2216
2312
|
<div class="item">
|
2217
|
-
<span class='object_link'><a href="
|
2218
|
-
<small>
|
2313
|
+
<span class='object_link'><a href="BooleanTermParser/Operator.html#symbol-class_method" title="BooleanTermParser::Operator.symbol (method)">symbol</a></span>
|
2314
|
+
<small>BooleanTermParser::Operator</small>
|
2219
2315
|
</div>
|
2220
2316
|
</li>
|
2221
2317
|
|
@@ -2286,7 +2382,7 @@
|
|
2286
2382
|
|
2287
2383
|
<li class="odd ">
|
2288
2384
|
<div class="item">
|
2289
|
-
<span class='object_link'><a href="Doing/Item.html#
|
2385
|
+
<span class='object_link'><a href="Doing/Item.html#tag_values%3F-instance_method" title="Doing::Item#tag_values? (method)">#tag_values?</a></span>
|
2290
2386
|
<small>Doing::Item</small>
|
2291
2387
|
</div>
|
2292
2388
|
</li>
|
@@ -2294,13 +2390,21 @@
|
|
2294
2390
|
|
2295
2391
|
<li class="even ">
|
2296
2392
|
<div class="item">
|
2297
|
-
<span class='object_link'><a href="Doing/Item.html#tags
|
2393
|
+
<span class='object_link'><a href="Doing/Item.html#tags-instance_method" title="Doing::Item#tags (method)">#tags</a></span>
|
2298
2394
|
<small>Doing::Item</small>
|
2299
2395
|
</div>
|
2300
2396
|
</li>
|
2301
2397
|
|
2302
2398
|
|
2303
2399
|
<li class="odd ">
|
2400
|
+
<div class="item">
|
2401
|
+
<span class='object_link'><a href="Doing/Item.html#tags%3F-instance_method" title="Doing::Item#tags? (method)">#tags?</a></span>
|
2402
|
+
<small>Doing::Item</small>
|
2403
|
+
</div>
|
2404
|
+
</li>
|
2405
|
+
|
2406
|
+
|
2407
|
+
<li class="even ">
|
2304
2408
|
<div class="item">
|
2305
2409
|
<span class='object_link'><a href="Array.html#tags_to_array-instance_method" title="Array#tags_to_array (method)">#tags_to_array</a></span>
|
2306
2410
|
<small>Array</small>
|
@@ -2308,7 +2412,7 @@
|
|
2308
2412
|
</li>
|
2309
2413
|
|
2310
2414
|
|
2311
|
-
<li class="
|
2415
|
+
<li class="odd ">
|
2312
2416
|
<div class="item">
|
2313
2417
|
<span class='object_link'><a href="Doing/LogAdapter.html#temp_level-instance_method" title="Doing::LogAdapter#temp_level (method)">#temp_level</a></span>
|
2314
2418
|
<small>Doing::LogAdapter</small>
|
@@ -2316,7 +2420,7 @@
|
|
2316
2420
|
</li>
|
2317
2421
|
|
2318
2422
|
|
2319
|
-
<li class="
|
2423
|
+
<li class="even ">
|
2320
2424
|
<div class="item">
|
2321
2425
|
<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>
|
2322
2426
|
<small>Doing::Plugins</small>
|
@@ -2324,7 +2428,7 @@
|
|
2324
2428
|
</li>
|
2325
2429
|
|
2326
2430
|
|
2327
|
-
<li class="
|
2431
|
+
<li class="odd ">
|
2328
2432
|
<div class="item">
|
2329
2433
|
<span class='object_link'><a href="Doing/Plugins.html#template_regex-class_method" title="Doing::Plugins.template_regex (method)">template_regex</a></span>
|
2330
2434
|
<small>Doing::Plugins</small>
|
@@ -2332,7 +2436,7 @@
|
|
2332
2436
|
</li>
|
2333
2437
|
|
2334
2438
|
|
2335
|
-
<li class="
|
2439
|
+
<li class="even ">
|
2336
2440
|
<div class="item">
|
2337
2441
|
<span class='object_link'><a href="PhraseParser/TermClause.html#term-instance_method" title="PhraseParser::TermClause#term (method)">#term</a></span>
|
2338
2442
|
<small>PhraseParser::TermClause</small>
|
@@ -2340,7 +2444,7 @@
|
|
2340
2444
|
</li>
|
2341
2445
|
|
2342
2446
|
|
2343
|
-
<li class="
|
2447
|
+
<li class="odd ">
|
2344
2448
|
<div class="item">
|
2345
2449
|
<span class='object_link'><a href="BooleanTermParser/Clause.html#term-instance_method" title="BooleanTermParser::Clause#term (method)">#term</a></span>
|
2346
2450
|
<small>BooleanTermParser::Clause</small>
|
@@ -2348,7 +2452,7 @@
|
|
2348
2452
|
</li>
|
2349
2453
|
|
2350
2454
|
|
2351
|
-
<li class="
|
2455
|
+
<li class="even ">
|
2352
2456
|
<div class="item">
|
2353
2457
|
<span class='object_link'><a href="Time.html#time_ago-instance_method" title="Time#time_ago (method)">#time_ago</a></span>
|
2354
2458
|
<small>Time</small>
|
@@ -2356,15 +2460,31 @@
|
|
2356
2460
|
</li>
|
2357
2461
|
|
2358
2462
|
|
2463
|
+
<li class="odd ">
|
2464
|
+
<div class="item">
|
2465
|
+
<span class='object_link'><a href="Numeric.html#time_string-instance_method" title="Numeric#time_string (method)">#time_string</a></span>
|
2466
|
+
<small>Numeric</small>
|
2467
|
+
</div>
|
2468
|
+
</li>
|
2469
|
+
|
2470
|
+
|
2359
2471
|
<li class="even ">
|
2360
2472
|
<div class="item">
|
2361
|
-
<span class='object_link'><a href="
|
2362
|
-
<small>
|
2473
|
+
<span class='object_link'><a href="String.html#time_string-instance_method" title="String#time_string (method)">#time_string</a></span>
|
2474
|
+
<small>String</small>
|
2363
2475
|
</div>
|
2364
2476
|
</li>
|
2365
2477
|
|
2366
2478
|
|
2367
2479
|
<li class="odd ">
|
2480
|
+
<div class="item">
|
2481
|
+
<span class='object_link'><a href="Array.html#time_string-instance_method" title="Array#time_string (method)">#time_string</a></span>
|
2482
|
+
<small>Array</small>
|
2483
|
+
</div>
|
2484
|
+
</li>
|
2485
|
+
|
2486
|
+
|
2487
|
+
<li class="even ">
|
2368
2488
|
<div class="item">
|
2369
2489
|
<span class='object_link'><a href="Doing/Item.html#title-instance_method" title="Doing::Item#title (method)">#title</a></span>
|
2370
2490
|
<small>Doing::Item</small>
|
@@ -2372,6 +2492,14 @@
|
|
2372
2492
|
</li>
|
2373
2493
|
|
2374
2494
|
|
2495
|
+
<li class="odd ">
|
2496
|
+
<div class="item">
|
2497
|
+
<span class='object_link'><a href="Doing/Section.html#title-instance_method" title="Doing::Section#title (method)">#title</a></span>
|
2498
|
+
<small>Doing::Section</small>
|
2499
|
+
</div>
|
2500
|
+
</li>
|
2501
|
+
|
2502
|
+
|
2375
2503
|
<li class="even ">
|
2376
2504
|
<div class="item">
|
2377
2505
|
<span class='object_link'><a href="PhraseParser/Query.html#to_elasticsearch-instance_method" title="PhraseParser::Query#to_elasticsearch (method)">#to_elasticsearch</a></span>
|
@@ -2390,7 +2518,7 @@
|
|
2390
2518
|
|
2391
2519
|
<li class="even ">
|
2392
2520
|
<div class="item">
|
2393
|
-
<span class='object_link'><a href="String.html#
|
2521
|
+
<span class='object_link'><a href="String.html#to_p-instance_method" title="String#to_p (method)">#to_p</a></span>
|
2394
2522
|
<small>String</small>
|
2395
2523
|
</div>
|
2396
2524
|
</li>
|
@@ -2398,8 +2526,8 @@
|
|
2398
2526
|
|
2399
2527
|
<li class="odd ">
|
2400
2528
|
<div class="item">
|
2401
|
-
<span class='object_link'><a href="
|
2402
|
-
<small>
|
2529
|
+
<span class='object_link'><a href="String.html#to_rx-instance_method" title="String#to_rx (method)">#to_rx</a></span>
|
2530
|
+
<small>String</small>
|
2403
2531
|
</div>
|
2404
2532
|
</li>
|
2405
2533
|
|
@@ -2413,6 +2541,14 @@
|
|
2413
2541
|
|
2414
2542
|
|
2415
2543
|
<li class="odd ">
|
2544
|
+
<div class="item">
|
2545
|
+
<span class='object_link'><a href="Doing/Note.html#to_s-instance_method" title="Doing::Note#to_s (method)">#to_s</a></span>
|
2546
|
+
<small>Doing::Note</small>
|
2547
|
+
</div>
|
2548
|
+
</li>
|
2549
|
+
|
2550
|
+
|
2551
|
+
<li class="even ">
|
2416
2552
|
<div class="item">
|
2417
2553
|
<span class='object_link'><a href="Doing/Item.html#to_s-instance_method" title="Doing::Item#to_s (method)">#to_s</a></span>
|
2418
2554
|
<small>Doing::Item</small>
|
@@ -2420,7 +2556,7 @@
|
|
2420
2556
|
</li>
|
2421
2557
|
|
2422
2558
|
|
2423
|
-
<li class="
|
2559
|
+
<li class="odd ">
|
2424
2560
|
<div class="item">
|
2425
2561
|
<span class='object_link'><a href="Doing/Items.html#to_s-instance_method" title="Doing::Items#to_s (method)">#to_s</a></span>
|
2426
2562
|
<small>Doing::Items</small>
|
@@ -2428,6 +2564,14 @@
|
|
2428
2564
|
</li>
|
2429
2565
|
|
2430
2566
|
|
2567
|
+
<li class="even ">
|
2568
|
+
<div class="item">
|
2569
|
+
<span class='object_link'><a href="String.html#to_seconds-instance_method" title="String#to_seconds (method)">#to_seconds</a></span>
|
2570
|
+
<small>String</small>
|
2571
|
+
</div>
|
2572
|
+
</li>
|
2573
|
+
|
2574
|
+
|
2431
2575
|
<li class="odd ">
|
2432
2576
|
<div class="item">
|
2433
2577
|
<span class='object_link'><a href="Array.html#to_tags-instance_method" title="Array#to_tags (method)">#to_tags</a></span>
|
@@ -2510,16 +2654,16 @@
|
|
2510
2654
|
|
2511
2655
|
<li class="odd ">
|
2512
2656
|
<div class="item">
|
2513
|
-
<span class='object_link'><a href="
|
2514
|
-
<small>
|
2657
|
+
<span class='object_link'><a href="Doing/Color.html#uncolor-instance_method" title="Doing::Color#uncolor (method)">#uncolor</a></span>
|
2658
|
+
<small>Doing::Color</small>
|
2515
2659
|
</div>
|
2516
2660
|
</li>
|
2517
2661
|
|
2518
2662
|
|
2519
2663
|
<li class="even ">
|
2520
2664
|
<div class="item">
|
2521
|
-
<span class='object_link'><a href="
|
2522
|
-
<small>
|
2665
|
+
<span class='object_link'><a href="String.html#uncolor-instance_method" title="String#uncolor (method)">#uncolor</a></span>
|
2666
|
+
<small>String</small>
|
2523
2667
|
</div>
|
2524
2668
|
</li>
|
2525
2669
|
|
@@ -2558,16 +2702,16 @@
|
|
2558
2702
|
|
2559
2703
|
<li class="odd ">
|
2560
2704
|
<div class="item">
|
2561
|
-
<span class='object_link'><a href="Doing/
|
2562
|
-
<small>Doing::
|
2705
|
+
<span class='object_link'><a href="Doing/Plugins.html#user_home-class_method" title="Doing::Plugins.user_home (method)">user_home</a></span>
|
2706
|
+
<small>Doing::Plugins</small>
|
2563
2707
|
</div>
|
2564
2708
|
</li>
|
2565
2709
|
|
2566
2710
|
|
2567
2711
|
<li class="even ">
|
2568
2712
|
<div class="item">
|
2569
|
-
<span class='object_link'><a href="Doing/
|
2570
|
-
<small>Doing::
|
2713
|
+
<span class='object_link'><a href="Doing/Util.html#user_home-instance_method" title="Doing::Util#user_home (method)">#user_home</a></span>
|
2714
|
+
<small>Doing::Util</small>
|
2571
2715
|
</div>
|
2572
2716
|
</li>
|
2573
2717
|
|
@@ -2605,6 +2749,14 @@
|
|
2605
2749
|
|
2606
2750
|
|
2607
2751
|
<li class="odd ">
|
2752
|
+
<div class="item">
|
2753
|
+
<span class='object_link'><a href="Doing/WWID.html#verify_duration-instance_method" title="Doing::WWID#verify_duration (method)">#verify_duration</a></span>
|
2754
|
+
<small>Doing::WWID</small>
|
2755
|
+
</div>
|
2756
|
+
</li>
|
2757
|
+
|
2758
|
+
|
2759
|
+
<li class="even ">
|
2608
2760
|
<div class="item">
|
2609
2761
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#version-instance_method" title="GLI::Commands::MarkdownDocumentListener#version (method)">#version</a></span>
|
2610
2762
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -2612,7 +2764,7 @@
|
|
2612
2764
|
</li>
|
2613
2765
|
|
2614
2766
|
|
2615
|
-
<li class="
|
2767
|
+
<li class="odd ">
|
2616
2768
|
<div class="item">
|
2617
2769
|
<span class='object_link'><a href="Doing/WWID.html#views-instance_method" title="Doing::WWID#views (method)">#views</a></span>
|
2618
2770
|
<small>Doing::WWID</small>
|
@@ -2620,7 +2772,7 @@
|
|
2620
2772
|
</li>
|
2621
2773
|
|
2622
2774
|
|
2623
|
-
<li class="
|
2775
|
+
<li class="even ">
|
2624
2776
|
<div class="item">
|
2625
2777
|
<span class='object_link'><a href="Doing/LogAdapter.html#warn-instance_method" title="Doing::LogAdapter#warn (method)">#warn</a></span>
|
2626
2778
|
<small>Doing::LogAdapter</small>
|
@@ -2628,7 +2780,7 @@
|
|
2628
2780
|
</li>
|
2629
2781
|
|
2630
2782
|
|
2631
|
-
<li class="
|
2783
|
+
<li class="odd ">
|
2632
2784
|
<div class="item">
|
2633
2785
|
<span class='object_link'><a href="Doing/Prompt.html#which_fzf-class_method" title="Doing::Prompt.which_fzf (method)">which_fzf</a></span>
|
2634
2786
|
<small>Doing::Prompt</small>
|
@@ -2636,7 +2788,7 @@
|
|
2636
2788
|
</li>
|
2637
2789
|
|
2638
2790
|
|
2639
|
-
<li class="
|
2791
|
+
<li class="even ">
|
2640
2792
|
<div class="item">
|
2641
2793
|
<span class='object_link'><a href="String.html#wildcard_to_rx-instance_method" title="String#wildcard_to_rx (method)">#wildcard_to_rx</a></span>
|
2642
2794
|
<small>String</small>
|
@@ -2644,7 +2796,7 @@
|
|
2644
2796
|
</li>
|
2645
2797
|
|
2646
2798
|
|
2647
|
-
<li class="
|
2799
|
+
<li class="odd ">
|
2648
2800
|
<div class="item">
|
2649
2801
|
<span class='object_link'><a href="String.html#wrap-instance_method" title="String#wrap (method)">#wrap</a></span>
|
2650
2802
|
<small>String</small>
|
@@ -2652,23 +2804,23 @@
|
|
2652
2804
|
</li>
|
2653
2805
|
|
2654
2806
|
|
2655
|
-
<li class="
|
2807
|
+
<li class="even ">
|
2656
2808
|
<div class="item">
|
2657
|
-
<span class='object_link'><a href="Doing/
|
2658
|
-
<small>Doing::
|
2809
|
+
<span class='object_link'><a href="Doing/WWID.html#write-instance_method" title="Doing::WWID#write (method)">#write</a></span>
|
2810
|
+
<small>Doing::WWID</small>
|
2659
2811
|
</div>
|
2660
2812
|
</li>
|
2661
2813
|
|
2662
2814
|
|
2663
|
-
<li class="
|
2815
|
+
<li class="odd ">
|
2664
2816
|
<div class="item">
|
2665
|
-
<span class='object_link'><a href="Doing/
|
2666
|
-
<small>Doing::
|
2817
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#write-instance_method" title="Doing::LogAdapter#write (method)">#write</a></span>
|
2818
|
+
<small>Doing::LogAdapter</small>
|
2667
2819
|
</div>
|
2668
2820
|
</li>
|
2669
2821
|
|
2670
2822
|
|
2671
|
-
<li class="
|
2823
|
+
<li class="even ">
|
2672
2824
|
<div class="item">
|
2673
2825
|
<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>
|
2674
2826
|
<small>Doing::Util::Backup</small>
|
@@ -2676,7 +2828,7 @@
|
|
2676
2828
|
</li>
|
2677
2829
|
|
2678
2830
|
|
2679
|
-
<li class="
|
2831
|
+
<li class="odd ">
|
2680
2832
|
<div class="item">
|
2681
2833
|
<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>
|
2682
2834
|
<small>Doing::Util</small>
|
@@ -2684,7 +2836,7 @@
|
|
2684
2836
|
</li>
|
2685
2837
|
|
2686
2838
|
|
2687
|
-
<li class="
|
2839
|
+
<li class="even ">
|
2688
2840
|
<div class="item">
|
2689
2841
|
<span class='object_link'><a href="Doing/WWID.html#yesterday-instance_method" title="Doing::WWID#yesterday (method)">#yesterday</a></span>
|
2690
2842
|
<small>Doing::WWID</small>
|
@@ -2692,7 +2844,7 @@
|
|
2692
2844
|
</li>
|
2693
2845
|
|
2694
2846
|
|
2695
|
-
<li class="
|
2847
|
+
<li class="odd ">
|
2696
2848
|
<div class="item">
|
2697
2849
|
<span class='object_link'><a href="Doing/Prompt.html#yn-class_method" title="Doing::Prompt.yn (method)">yn</a></span>
|
2698
2850
|
<small>Doing::Prompt</small>
|