doing 2.1.30 → 2.1.34
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/CHANGELOG.md +4972 -0
- data/Dockerfile-2.6 +3 -1
- data/Dockerfile-2.7 +4 -2
- data/Dockerfile-3.0 +3 -1
- data/Gemfile.lock +1 -67
- data/README.md +1 -1
- data/bash_profile +13 -0
- data/bin/commands/again.rb +1 -1
- data/bin/commands/archive.rb +3 -3
- data/bin/commands/cancel.rb +1 -1
- data/bin/commands/commands.rb +8 -8
- data/bin/commands/completion.rb +61 -19
- data/bin/commands/config.rb +22 -19
- data/bin/commands/done.rb +2 -2
- data/bin/commands/flag.rb +1 -1
- data/bin/commands/grep.rb +6 -33
- data/bin/commands/last.rb +1 -1
- data/bin/commands/meanwhile.rb +2 -2
- data/bin/commands/now.rb +2 -2
- data/bin/commands/on.rb +6 -16
- data/bin/commands/open.rb +1 -1
- data/bin/commands/recent.rb +5 -17
- data/bin/commands/rotate.rb +17 -0
- data/bin/commands/sections.rb +82 -7
- data/bin/commands/show.rb +8 -28
- data/bin/commands/since.rb +5 -16
- data/bin/commands/tag_dir.rb +27 -3
- data/bin/commands/today.rb +3 -28
- data/bin/commands/view.rb +3 -3
- data/bin/commands/yesterday.rb +3 -36
- data/bin/doing +29 -139
- data/docs/doc/Array.html +1 -1
- 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 +324 -4
- data/docs/doc/Doing/Configuration.html +3 -3
- 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 +144 -3
- data/docs/doc/Doing/Items.html +209 -1
- data/docs/doc/Doing/LogAdapter.html +1 -1
- data/docs/doc/Doing/Logger.html +1807 -0
- data/docs/doc/Doing/Note.html +109 -3
- data/docs/doc/Doing/Pager.html +1 -1
- data/docs/doc/Doing/Plugins.html +1 -1
- data/docs/doc/Doing/Prompt.html +1 -1
- data/docs/doc/Doing/Section.html +1 -1
- data/docs/doc/Doing/TemplateString.html +1 -1
- data/docs/doc/Doing/Types.html +3 -3
- data/docs/doc/Doing/Util/Backup.html +1 -1
- data/docs/doc/Doing/Util.html +1 -1
- data/docs/doc/Doing/WWID.html +8 -58
- data/docs/doc/Doing.html +4 -4
- data/docs/doc/FalseClass.html +1 -1
- data/docs/doc/GLI/Commands/Help.html +1 -1
- 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/Object.html +1 -1
- 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 +1 -1
- data/docs/doc/Symbol.html +1 -1
- data/docs/doc/Time.html +1 -1
- data/docs/doc/TrueClass.html +1 -1
- data/docs/doc/_index.html +12 -10
- data/docs/doc/class_list.html +1 -1
- data/docs/doc/file.README.html +2 -2
- data/docs/doc/index.html +2 -2
- data/docs/doc/method_list.html +424 -304
- data/docs/doc/top-level-namespace.html +105 -1
- data/docs/index.md +1 -1
- data/doing.gemspec +24 -24
- data/doing.rdoc +259 -26
- data/example_plugin.rb +7 -5
- data/inputrc +57 -0
- data/lib/completion/_doing.zsh +48 -52
- data/lib/completion/doing.bash +14 -25
- data/lib/completion/doing.fish +41 -15
- data/lib/doing/add_options.rb +152 -0
- data/lib/doing/array/array.rb +16 -0
- data/lib/doing/changelog/changes.rb +1 -1
- data/lib/doing/chronify/string.rb +1 -1
- data/lib/doing/completion/bash_completion.rb +12 -51
- data/lib/doing/completion/fish_completion.rb +17 -53
- data/lib/doing/completion/zsh_completion.rb +21 -59
- data/lib/doing/completion.rb +203 -17
- data/lib/doing/configuration.rb +7 -1
- data/lib/doing/item.rb +30 -5
- data/lib/doing/items.rb +53 -5
- data/lib/doing/{log_adapter.rb → logger.rb} +8 -2
- data/lib/doing/note.rb +24 -8
- data/lib/doing/plugins/export/dayone_export.rb +8 -6
- data/lib/doing/plugins/export/html_export.rb +4 -4
- data/lib/doing/plugins/export/json_export.rb +19 -20
- data/lib/doing/plugins/export/markdown_export.rb +2 -2
- data/lib/doing/plugins/export/template_export.rb +4 -4
- data/lib/doing/plugins/import/calendar_import.rb +2 -2
- data/lib/doing/plugins/import/doing_import.rb +2 -2
- data/lib/doing/plugins/import/timing_import.rb +2 -2
- data/lib/doing/string/highlight.rb +3 -4
- data/lib/doing/string/string.rb +8 -0
- data/lib/doing/string/tags.rb +1 -1
- data/lib/doing/types.rb +2 -2
- data/lib/doing/util.rb +1 -1
- data/lib/doing/util_backup.rb +12 -12
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +119 -120
- data/lib/doing.rb +61 -3
- data/lib/examples/commands/wiki.rb +27 -19
- data/lib/examples/plugins/capture_thing_import.rb +1 -1
- data/lib/helpers/threaded_tests.rb +2 -0
- data/scripts/setting_replace.rb +11 -0
- metadata +109 -124
- data/.yardoc/checksums +0 -29
- data/.yardoc/complete +0 -0
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +0 -0
- data/bin/commands/add_section.rb +0 -15
data/docs/doc/method_list.html
CHANGED
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
|
|
47
47
|
<li class="odd ">
|
|
48
48
|
<div class="item">
|
|
49
|
-
<span class='object_link'><a href="Doing/
|
|
50
|
-
<small>Doing::
|
|
49
|
+
<span class='object_link'><a href="Doing/Logger.html#abort_with-instance_method" title="Doing::Logger#abort_with (method)">#abort_with</a></span>
|
|
50
|
+
<small>Doing::Logger</small>
|
|
51
51
|
</div>
|
|
52
52
|
</li>
|
|
53
53
|
|
|
@@ -78,23 +78,23 @@
|
|
|
78
78
|
|
|
79
79
|
<li class="odd ">
|
|
80
80
|
<div class="item">
|
|
81
|
-
<span class='object_link'><a href="
|
|
82
|
-
<small>
|
|
81
|
+
<span class='object_link'><a href="top-level-namespace.html#add_options-instance_method" title="#add_options (method)">#add_options</a></span>
|
|
82
|
+
<small>Top Level Namespace</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="Doing/
|
|
90
|
-
<small>Doing::
|
|
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="Doing/WWID.html#
|
|
97
|
+
<span class='object_link'><a href="Doing/WWID.html#add_with_editor-instance_method" title="Doing::WWID#add_with_editor (method)">#add_with_editor</a></span>
|
|
98
98
|
<small>Doing::WWID</small>
|
|
99
99
|
</div>
|
|
100
100
|
</li>
|
|
@@ -110,13 +110,21 @@
|
|
|
110
110
|
|
|
111
111
|
<li class="odd ">
|
|
112
112
|
<div class="item">
|
|
113
|
-
<span class='object_link'><a href="Doing/
|
|
114
|
-
<small>Doing::
|
|
113
|
+
<span class='object_link'><a href="Doing/WWID.html#additional_configs-instance_method" title="Doing::WWID#additional_configs (method)">#additional_configs</a></span>
|
|
114
|
+
<small>Doing::WWID</small>
|
|
115
115
|
</div>
|
|
116
116
|
</li>
|
|
117
117
|
|
|
118
118
|
|
|
119
119
|
<li class="even ">
|
|
120
|
+
<div class="item">
|
|
121
|
+
<span class='object_link'><a href="Doing/Logger.html#adjust_verbosity-instance_method" title="Doing::Logger#adjust_verbosity (method)">#adjust_verbosity</a></span>
|
|
122
|
+
<small>Doing::Logger</small>
|
|
123
|
+
</div>
|
|
124
|
+
</li>
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
<li class="odd ">
|
|
120
128
|
<div class="item">
|
|
121
129
|
<span class='object_link'><a href="Doing/WWID.html#all_tags-instance_method" title="Doing::WWID#all_tags (method)">#all_tags</a></span>
|
|
122
130
|
<small>Doing::WWID</small>
|
|
@@ -124,7 +132,7 @@
|
|
|
124
132
|
</li>
|
|
125
133
|
|
|
126
134
|
|
|
127
|
-
<li class="
|
|
135
|
+
<li class="even ">
|
|
128
136
|
<div class="item">
|
|
129
137
|
<span class='object_link'><a href="Doing/Items.html#all_tags-instance_method" title="Doing::Items#all_tags (method)">#all_tags</a></span>
|
|
130
138
|
<small>Doing::Items</small>
|
|
@@ -132,7 +140,7 @@
|
|
|
132
140
|
</li>
|
|
133
141
|
|
|
134
142
|
|
|
135
|
-
<li class="
|
|
143
|
+
<li class="odd ">
|
|
136
144
|
<div class="item">
|
|
137
145
|
<span class='object_link'><a href="Doing/TemplateString.html#apply_colors-instance_method" title="Doing::TemplateString#apply_colors (method)">#apply_colors</a></span>
|
|
138
146
|
<small>Doing::TemplateString</small>
|
|
@@ -140,7 +148,7 @@
|
|
|
140
148
|
</li>
|
|
141
149
|
|
|
142
150
|
|
|
143
|
-
<li class="
|
|
151
|
+
<li class="even ">
|
|
144
152
|
<div class="item">
|
|
145
153
|
<span class='object_link'><a href="Doing/WWID.html#archive-instance_method" title="Doing::WWID#archive (method)">#archive</a></span>
|
|
146
154
|
<small>Doing::WWID</small>
|
|
@@ -148,7 +156,7 @@
|
|
|
148
156
|
</li>
|
|
149
157
|
|
|
150
158
|
|
|
151
|
-
<li class="
|
|
159
|
+
<li class="odd ">
|
|
152
160
|
<div class="item">
|
|
153
161
|
<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>
|
|
154
162
|
<small>Doing::Util</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/Color.html#attributes-class_method" title="Doing::Color.attributes (method)">attributes</a></span>
|
|
162
170
|
<small>Doing::Color</small>
|
|
@@ -164,14 +172,6 @@
|
|
|
164
172
|
</li>
|
|
165
173
|
|
|
166
174
|
|
|
167
|
-
<li class="even ">
|
|
168
|
-
<div class="item">
|
|
169
|
-
<span class='object_link'><a href="Doing/WWID.html#auto_tag-instance_method" title="Doing::WWID#auto_tag (method)">#auto_tag</a></span>
|
|
170
|
-
<small>Doing::WWID</small>
|
|
171
|
-
</div>
|
|
172
|
-
</li>
|
|
173
|
-
|
|
174
|
-
|
|
175
175
|
<li class="odd ">
|
|
176
176
|
<div class="item">
|
|
177
177
|
<span class='object_link'><a href="Doing/WWID.html#autotag-instance_method" title="Doing::WWID#autotag (method)">#autotag</a></span>
|
|
@@ -198,8 +198,8 @@
|
|
|
198
198
|
|
|
199
199
|
<li class="even ">
|
|
200
200
|
<div class="item">
|
|
201
|
-
<span class='object_link'><a href="Doing/
|
|
202
|
-
<small>Doing::
|
|
201
|
+
<span class='object_link'><a href="Doing/Logger.html#benchmark-instance_method" title="Doing::Logger#benchmark (method)">#benchmark</a></span>
|
|
202
|
+
<small>Doing::Logger</small>
|
|
203
203
|
</div>
|
|
204
204
|
</li>
|
|
205
205
|
|
|
@@ -454,8 +454,8 @@
|
|
|
454
454
|
|
|
455
455
|
<li class="even ">
|
|
456
456
|
<div class="item">
|
|
457
|
-
<span class='object_link'><a href="Doing/
|
|
458
|
-
<small>Doing::
|
|
457
|
+
<span class='object_link'><a href="Doing/Logger.html#count-instance_method" title="Doing::Logger#count (method)">#count</a></span>
|
|
458
|
+
<small>Doing::Logger</small>
|
|
459
459
|
</div>
|
|
460
460
|
</li>
|
|
461
461
|
|
|
@@ -486,13 +486,21 @@
|
|
|
486
486
|
|
|
487
487
|
<li class="even ">
|
|
488
488
|
<div class="item">
|
|
489
|
-
<span class='object_link'><a href="Doing/
|
|
490
|
-
<small>Doing::
|
|
489
|
+
<span class='object_link'><a href="Doing/Logger.html#debug-instance_method" title="Doing::Logger#debug (method)">#debug</a></span>
|
|
490
|
+
<small>Doing::Logger</small>
|
|
491
491
|
</div>
|
|
492
492
|
</li>
|
|
493
493
|
|
|
494
494
|
|
|
495
495
|
<li class="odd ">
|
|
496
|
+
<div class="item">
|
|
497
|
+
<span class='object_link'><a href="Doing/Items.html#dedup-instance_method" title="Doing::Items#dedup (method)">#dedup</a></span>
|
|
498
|
+
<small>Doing::Items</small>
|
|
499
|
+
</div>
|
|
500
|
+
</li>
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
<li class="even ">
|
|
496
504
|
<div class="item">
|
|
497
505
|
<span class='object_link'><a href="Doing/WWID.html#dedup-instance_method" title="Doing::WWID#dedup (method)">#dedup</a></span>
|
|
498
506
|
<small>Doing::WWID</small>
|
|
@@ -500,6 +508,14 @@
|
|
|
500
508
|
</li>
|
|
501
509
|
|
|
502
510
|
|
|
511
|
+
<li class="odd ">
|
|
512
|
+
<div class="item">
|
|
513
|
+
<span class='object_link'><a href="Doing/Items.html#dedup!-instance_method" title="Doing::Items#dedup! (method)">#dedup!</a></span>
|
|
514
|
+
<small>Doing::Items</small>
|
|
515
|
+
</div>
|
|
516
|
+
</li>
|
|
517
|
+
|
|
518
|
+
|
|
503
519
|
<li class="even ">
|
|
504
520
|
<div class="item">
|
|
505
521
|
<span class='object_link'><a href="Hash.html#deep_freeze-instance_method" title="Hash#deep_freeze (method)">#deep_freeze</a></span>
|
|
@@ -614,13 +630,21 @@
|
|
|
614
630
|
|
|
615
631
|
<li class="even ">
|
|
616
632
|
<div class="item">
|
|
617
|
-
<span class='object_link'><a href="Doing/Items.html#
|
|
633
|
+
<span class='object_link'><a href="Doing/Items.html#delete_section-instance_method" title="Doing::Items#delete_section (method)">#delete_section</a></span>
|
|
618
634
|
<small>Doing::Items</small>
|
|
619
635
|
</div>
|
|
620
636
|
</li>
|
|
621
637
|
|
|
622
638
|
|
|
623
639
|
<li class="odd ">
|
|
640
|
+
<div class="item">
|
|
641
|
+
<span class='object_link'><a href="Doing/Items.html#diff-instance_method" title="Doing::Items#diff (method)">#diff</a></span>
|
|
642
|
+
<small>Doing::Items</small>
|
|
643
|
+
</div>
|
|
644
|
+
</li>
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
<li class="even ">
|
|
624
648
|
<div class="item">
|
|
625
649
|
<span class='object_link'><a href="Doing/WWID.html#doing_file-instance_method" title="Doing::WWID#doing_file (method)">#doing_file</a></span>
|
|
626
650
|
<small>Doing::WWID</small>
|
|
@@ -628,7 +652,7 @@
|
|
|
628
652
|
</li>
|
|
629
653
|
|
|
630
654
|
|
|
631
|
-
<li class="
|
|
655
|
+
<li class="odd ">
|
|
632
656
|
<div class="item">
|
|
633
657
|
<span class='object_link'><a href="Doing/Util.html#duplicable%3F-instance_method" title="Doing::Util#duplicable? (method)">#duplicable?</a></span>
|
|
634
658
|
<small>Doing::Util</small>
|
|
@@ -636,7 +660,7 @@
|
|
|
636
660
|
</li>
|
|
637
661
|
|
|
638
662
|
|
|
639
|
-
<li class="
|
|
663
|
+
<li class="even ">
|
|
640
664
|
<div class="item">
|
|
641
665
|
<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>
|
|
642
666
|
<small>Doing::Util</small>
|
|
@@ -644,7 +668,7 @@
|
|
|
644
668
|
</li>
|
|
645
669
|
|
|
646
670
|
|
|
647
|
-
<li class="
|
|
671
|
+
<li class="odd ">
|
|
648
672
|
<div class="item">
|
|
649
673
|
<span class='object_link'><a href="Doing/Item.html#duration-instance_method" title="Doing::Item#duration (method)">#duration</a></span>
|
|
650
674
|
<small>Doing::Item</small>
|
|
@@ -652,7 +676,7 @@
|
|
|
652
676
|
</li>
|
|
653
677
|
|
|
654
678
|
|
|
655
|
-
<li class="
|
|
679
|
+
<li class="even ">
|
|
656
680
|
<div class="item">
|
|
657
681
|
<span class='object_link'><a href="Doing/WWID.html#edit_items-instance_method" title="Doing::WWID#edit_items (method)">#edit_items</a></span>
|
|
658
682
|
<small>Doing::WWID</small>
|
|
@@ -660,7 +684,7 @@
|
|
|
660
684
|
</li>
|
|
661
685
|
|
|
662
686
|
|
|
663
|
-
<li class="
|
|
687
|
+
<li class="odd ">
|
|
664
688
|
<div class="item">
|
|
665
689
|
<span class='object_link'><a href="Doing/WWID.html#edit_last-instance_method" title="Doing::WWID#edit_last (method)">#edit_last</a></span>
|
|
666
690
|
<small>Doing::WWID</small>
|
|
@@ -668,7 +692,7 @@
|
|
|
668
692
|
</li>
|
|
669
693
|
|
|
670
694
|
|
|
671
|
-
<li class="
|
|
695
|
+
<li class="even ">
|
|
672
696
|
<div class="item">
|
|
673
697
|
<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
698
|
<small>Doing::Util</small>
|
|
@@ -676,7 +700,7 @@
|
|
|
676
700
|
</li>
|
|
677
701
|
|
|
678
702
|
|
|
679
|
-
<li class="
|
|
703
|
+
<li class="odd ">
|
|
680
704
|
<div class="item">
|
|
681
705
|
<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
706
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -684,7 +708,7 @@
|
|
|
684
708
|
</li>
|
|
685
709
|
|
|
686
710
|
|
|
687
|
-
<li class="
|
|
711
|
+
<li class="even ">
|
|
688
712
|
<div class="item">
|
|
689
713
|
<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
714
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -692,7 +716,7 @@
|
|
|
692
716
|
</li>
|
|
693
717
|
|
|
694
718
|
|
|
695
|
-
<li class="
|
|
719
|
+
<li class="odd ">
|
|
696
720
|
<div class="item">
|
|
697
721
|
<span class='object_link'><a href="Doing/Item.html#end_date-instance_method" title="Doing::Item#end_date (method)">#end_date</a></span>
|
|
698
722
|
<small>Doing::Item</small>
|
|
@@ -700,7 +724,7 @@
|
|
|
700
724
|
</li>
|
|
701
725
|
|
|
702
726
|
|
|
703
|
-
<li class="
|
|
727
|
+
<li class="even ">
|
|
704
728
|
<div class="item">
|
|
705
729
|
<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
730
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -708,7 +732,7 @@
|
|
|
708
732
|
</li>
|
|
709
733
|
|
|
710
734
|
|
|
711
|
-
<li class="
|
|
735
|
+
<li class="odd ">
|
|
712
736
|
<div class="item">
|
|
713
737
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#ending-instance_method" title="GLI::Commands::MarkdownDocumentListener#ending (method)">#ending</a></span>
|
|
714
738
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -716,7 +740,7 @@
|
|
|
716
740
|
</li>
|
|
717
741
|
|
|
718
742
|
|
|
719
|
-
<li class="
|
|
743
|
+
<li class="even ">
|
|
720
744
|
<div class="item">
|
|
721
745
|
<span class='object_link'><a href="Doing/Prompt.html#enter_text-class_method" title="Doing::Prompt.enter_text (method)">enter_text</a></span>
|
|
722
746
|
<small>Doing::Prompt</small>
|
|
@@ -724,14 +748,6 @@
|
|
|
724
748
|
</li>
|
|
725
749
|
|
|
726
750
|
|
|
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
751
|
<li class="odd ">
|
|
736
752
|
<div class="item">
|
|
737
753
|
<span class='object_link'><a href="Doing/Item.html#equal%3F-instance_method" title="Doing::Item#equal? (method)">#equal?</a></span>
|
|
@@ -742,13 +758,21 @@
|
|
|
742
758
|
|
|
743
759
|
<li class="even ">
|
|
744
760
|
<div class="item">
|
|
745
|
-
<span class='object_link'><a href="Doing/
|
|
746
|
-
<small>Doing::
|
|
761
|
+
<span class='object_link'><a href="Doing/Note.html#equal%3F-instance_method" title="Doing::Note#equal? (method)">#equal?</a></span>
|
|
762
|
+
<small>Doing::Note</small>
|
|
747
763
|
</div>
|
|
748
764
|
</li>
|
|
749
765
|
|
|
750
766
|
|
|
751
767
|
<li class="odd ">
|
|
768
|
+
<div class="item">
|
|
769
|
+
<span class='object_link'><a href="Doing/Logger.html#error-instance_method" title="Doing::Logger#error (method)">#error</a></span>
|
|
770
|
+
<small>Doing::Logger</small>
|
|
771
|
+
</div>
|
|
772
|
+
</li>
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
<li class="even ">
|
|
752
776
|
<div class="item">
|
|
753
777
|
<span class='object_link'><a href="Status.html#esc-instance_method" title="Status#esc (method)">#esc</a></span>
|
|
754
778
|
<small>Status</small>
|
|
@@ -756,7 +780,7 @@
|
|
|
756
780
|
</li>
|
|
757
781
|
|
|
758
782
|
|
|
759
|
-
<li class="
|
|
783
|
+
<li class="odd ">
|
|
760
784
|
<div class="item">
|
|
761
785
|
<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
786
|
<small>Doing::Configuration</small>
|
|
@@ -764,7 +788,7 @@
|
|
|
764
788
|
</li>
|
|
765
789
|
|
|
766
790
|
|
|
767
|
-
<li class="
|
|
791
|
+
<li class="even ">
|
|
768
792
|
<div class="item">
|
|
769
793
|
<span class='object_link'><a href="Doing/Util.html#exec_available-instance_method" title="Doing::Util#exec_available (method)">#exec_available</a></span>
|
|
770
794
|
<small>Doing::Util</small>
|
|
@@ -772,7 +796,7 @@
|
|
|
772
796
|
</li>
|
|
773
797
|
|
|
774
798
|
|
|
775
|
-
<li class="
|
|
799
|
+
<li class="odd ">
|
|
776
800
|
<div class="item">
|
|
777
801
|
<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>
|
|
778
802
|
<small>Doing::Item</small>
|
|
@@ -780,7 +804,7 @@
|
|
|
780
804
|
</li>
|
|
781
805
|
|
|
782
806
|
|
|
783
|
-
<li class="
|
|
807
|
+
<li class="even ">
|
|
784
808
|
<div class="item">
|
|
785
809
|
<span class='object_link'><a href="Doing/Configuration.html#fetch-instance_method" title="Doing::Configuration#fetch (method)">#fetch</a></span>
|
|
786
810
|
<small>Doing::Configuration</small>
|
|
@@ -788,7 +812,7 @@
|
|
|
788
812
|
</li>
|
|
789
813
|
|
|
790
814
|
|
|
791
|
-
<li class="
|
|
815
|
+
<li class="odd ">
|
|
792
816
|
<div class="item">
|
|
793
817
|
<span class='object_link'><a href="Doing/TemplateString.html#fill-instance_method" title="Doing::TemplateString#fill (method)">#fill</a></span>
|
|
794
818
|
<small>Doing::TemplateString</small>
|
|
@@ -796,7 +820,7 @@
|
|
|
796
820
|
</li>
|
|
797
821
|
|
|
798
822
|
|
|
799
|
-
<li class="
|
|
823
|
+
<li class="even ">
|
|
800
824
|
<div class="item">
|
|
801
825
|
<span class='object_link'><a href="Doing/WWID.html#filter_items-instance_method" title="Doing::WWID#filter_items (method)">#filter_items</a></span>
|
|
802
826
|
<small>Doing::WWID</small>
|
|
@@ -804,7 +828,7 @@
|
|
|
804
828
|
</li>
|
|
805
829
|
|
|
806
830
|
|
|
807
|
-
<li class="
|
|
831
|
+
<li class="odd ">
|
|
808
832
|
<div class="item">
|
|
809
833
|
<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>
|
|
810
834
|
<small>Doing::Util</small>
|
|
@@ -812,6 +836,14 @@
|
|
|
812
836
|
</li>
|
|
813
837
|
|
|
814
838
|
|
|
839
|
+
<li class="even ">
|
|
840
|
+
<div class="item">
|
|
841
|
+
<span class='object_link'><a href="Doing/Item.html#finished%3F-instance_method" title="Doing::Item#finished? (method)">#finished?</a></span>
|
|
842
|
+
<small>Doing::Item</small>
|
|
843
|
+
</div>
|
|
844
|
+
</li>
|
|
845
|
+
|
|
846
|
+
|
|
815
847
|
<li class="odd ">
|
|
816
848
|
<div class="item">
|
|
817
849
|
<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>
|
|
@@ -862,8 +894,8 @@
|
|
|
862
894
|
|
|
863
895
|
<li class="odd ">
|
|
864
896
|
<div class="item">
|
|
865
|
-
<span class='object_link'><a href="Doing/
|
|
866
|
-
<small>Doing::
|
|
897
|
+
<span class='object_link'><a href="Doing/Logger.html#formatted_topic-instance_method" title="Doing::Logger#formatted_topic (method)">#formatted_topic</a></span>
|
|
898
|
+
<small>Doing::Logger</small>
|
|
867
899
|
</div>
|
|
868
900
|
</li>
|
|
869
901
|
|
|
@@ -910,15 +942,15 @@
|
|
|
910
942
|
|
|
911
943
|
<li class="odd ">
|
|
912
944
|
<div class="item">
|
|
913
|
-
<span class='object_link'><a href="Doing/
|
|
914
|
-
<small>Doing::
|
|
945
|
+
<span class='object_link'><a href="Doing/Completion.html#get_help_sections-class_method" title="Doing::Completion.get_help_sections (method)">get_help_sections</a></span>
|
|
946
|
+
<small>Doing::Completion</small>
|
|
915
947
|
</div>
|
|
916
948
|
</li>
|
|
917
949
|
|
|
918
950
|
|
|
919
951
|
<li class="even ">
|
|
920
952
|
<div class="item">
|
|
921
|
-
<span class='object_link'><a href="Doing/WWID.html#
|
|
953
|
+
<span class='object_link'><a href="Doing/WWID.html#get_interval-instance_method" title="Doing::WWID#get_interval (method)">#get_interval</a></span>
|
|
922
954
|
<small>Doing::WWID</small>
|
|
923
955
|
</div>
|
|
924
956
|
</li>
|
|
@@ -926,32 +958,32 @@
|
|
|
926
958
|
|
|
927
959
|
<li class="odd ">
|
|
928
960
|
<div class="item">
|
|
929
|
-
<span class='object_link'><a href="
|
|
930
|
-
<small>
|
|
961
|
+
<span class='object_link'><a href="Doing/WWID.html#get_view-instance_method" title="Doing::WWID#get_view (method)">#get_view</a></span>
|
|
962
|
+
<small>Doing::WWID</small>
|
|
931
963
|
</div>
|
|
932
964
|
</li>
|
|
933
965
|
|
|
934
966
|
|
|
935
967
|
<li class="even ">
|
|
936
968
|
<div class="item">
|
|
937
|
-
<span class='object_link'><a href="
|
|
938
|
-
<small>
|
|
969
|
+
<span class='object_link'><a href="Object.html#good%3F-instance_method" title="Object#good? (method)">#good?</a></span>
|
|
970
|
+
<small>Object</small>
|
|
939
971
|
</div>
|
|
940
972
|
</li>
|
|
941
973
|
|
|
942
974
|
|
|
943
975
|
<li class="odd ">
|
|
944
976
|
<div class="item">
|
|
945
|
-
<span class='object_link'><a href="
|
|
946
|
-
<small>
|
|
977
|
+
<span class='object_link'><a href="String.html#good%3F-instance_method" title="String#good? (method)">#good?</a></span>
|
|
978
|
+
<small>String</small>
|
|
947
979
|
</div>
|
|
948
980
|
</li>
|
|
949
981
|
|
|
950
982
|
|
|
951
983
|
<li class="even ">
|
|
952
984
|
<div class="item">
|
|
953
|
-
<span class='object_link'><a href="
|
|
954
|
-
<small>
|
|
985
|
+
<span class='object_link'><a href="Array.html#good%3F-instance_method" title="Array#good? (method)">#good?</a></span>
|
|
986
|
+
<small>Array</small>
|
|
955
987
|
</div>
|
|
956
988
|
</li>
|
|
957
989
|
|
|
@@ -965,6 +997,14 @@
|
|
|
965
997
|
|
|
966
998
|
|
|
967
999
|
<li class="even ">
|
|
1000
|
+
<div class="item">
|
|
1001
|
+
<span class='object_link'><a href="TrueClass.html#good%3F-instance_method" title="TrueClass#good? (method)">#good?</a></span>
|
|
1002
|
+
<small>TrueClass</small>
|
|
1003
|
+
</div>
|
|
1004
|
+
</li>
|
|
1005
|
+
|
|
1006
|
+
|
|
1007
|
+
<li class="odd ">
|
|
968
1008
|
<div class="item">
|
|
969
1009
|
<span class='object_link'><a href="Doing/WWID.html#guess_section-instance_method" title="Doing::WWID#guess_section (method)">#guess_section</a></span>
|
|
970
1010
|
<small>Doing::WWID</small>
|
|
@@ -972,7 +1012,7 @@
|
|
|
972
1012
|
</li>
|
|
973
1013
|
|
|
974
1014
|
|
|
975
|
-
<li class="
|
|
1015
|
+
<li class="even ">
|
|
976
1016
|
<div class="item">
|
|
977
1017
|
<span class='object_link'><a href="Doing/WWID.html#guess_view-instance_method" title="Doing::WWID#guess_view (method)">#guess_view</a></span>
|
|
978
1018
|
<small>Doing::WWID</small>
|
|
@@ -980,7 +1020,7 @@
|
|
|
980
1020
|
</li>
|
|
981
1021
|
|
|
982
1022
|
|
|
983
|
-
<li class="
|
|
1023
|
+
<li class="odd ">
|
|
984
1024
|
<div class="item">
|
|
985
1025
|
<span class='object_link'><a href="Doing/Item.html#highlight_search-instance_method" title="Doing::Item#highlight_search (method)">#highlight_search</a></span>
|
|
986
1026
|
<small>Doing::Item</small>
|
|
@@ -988,7 +1028,7 @@
|
|
|
988
1028
|
</li>
|
|
989
1029
|
|
|
990
1030
|
|
|
991
|
-
<li class="
|
|
1031
|
+
<li class="even ">
|
|
992
1032
|
<div class="item">
|
|
993
1033
|
<span class='object_link'><a href="Time.html#humanize-instance_method" title="Time#humanize (method)">#humanize</a></span>
|
|
994
1034
|
<small>Time</small>
|
|
@@ -996,7 +1036,7 @@
|
|
|
996
1036
|
</li>
|
|
997
1037
|
|
|
998
1038
|
|
|
999
|
-
<li class="
|
|
1039
|
+
<li class="odd ">
|
|
1000
1040
|
<div class="item">
|
|
1001
1041
|
<span class='object_link'><a href="Doing/Item.html#id-instance_method" title="Doing::Item#id (method)">#id</a></span>
|
|
1002
1042
|
<small>Doing::Item</small>
|
|
@@ -1004,7 +1044,7 @@
|
|
|
1004
1044
|
</li>
|
|
1005
1045
|
|
|
1006
1046
|
|
|
1007
|
-
<li class="
|
|
1047
|
+
<li class="even ">
|
|
1008
1048
|
<div class="item">
|
|
1009
1049
|
<span class='object_link'><a href="Doing/Item.html#ignore_case-instance_method" title="Doing::Item#ignore_case (method)">#ignore_case</a></span>
|
|
1010
1050
|
<small>Doing::Item</small>
|
|
@@ -1012,7 +1052,7 @@
|
|
|
1012
1052
|
</li>
|
|
1013
1053
|
|
|
1014
1054
|
|
|
1015
|
-
<li class="
|
|
1055
|
+
<li class="odd ">
|
|
1016
1056
|
<div class="item">
|
|
1017
1057
|
<span class='object_link'><a href="Doing/WWID.html#import-instance_method" title="Doing::WWID#import (method)">#import</a></span>
|
|
1018
1058
|
<small>Doing::WWID</small>
|
|
@@ -1020,7 +1060,7 @@
|
|
|
1020
1060
|
</li>
|
|
1021
1061
|
|
|
1022
1062
|
|
|
1023
|
-
<li class="
|
|
1063
|
+
<li class="even ">
|
|
1024
1064
|
<div class="item">
|
|
1025
1065
|
<span class='object_link'><a href="Doing/Items.html#in_section-instance_method" title="Doing::Items#in_section (method)">#in_section</a></span>
|
|
1026
1066
|
<small>Doing::Items</small>
|
|
@@ -1028,10 +1068,18 @@
|
|
|
1028
1068
|
</li>
|
|
1029
1069
|
|
|
1030
1070
|
|
|
1071
|
+
<li class="odd ">
|
|
1072
|
+
<div class="item">
|
|
1073
|
+
<span class='object_link'><a href="Doing/Items.html#include%3F-instance_method" title="Doing::Items#include? (method)">#include?</a></span>
|
|
1074
|
+
<small>Doing::Items</small>
|
|
1075
|
+
</div>
|
|
1076
|
+
</li>
|
|
1077
|
+
|
|
1078
|
+
|
|
1031
1079
|
<li class="even ">
|
|
1032
1080
|
<div class="item">
|
|
1033
|
-
<span class='object_link'><a href="Doing/
|
|
1034
|
-
<small>Doing::
|
|
1081
|
+
<span class='object_link'><a href="Doing/Logger.html#info-instance_method" title="Doing::Logger#info (method)">#info</a></span>
|
|
1082
|
+
<small>Doing::Logger</small>
|
|
1035
1083
|
</div>
|
|
1036
1084
|
</li>
|
|
1037
1085
|
|
|
@@ -1046,88 +1094,88 @@
|
|
|
1046
1094
|
|
|
1047
1095
|
<li class="even ">
|
|
1048
1096
|
<div class="item">
|
|
1049
|
-
<span class='object_link'><a href="
|
|
1050
|
-
<small>
|
|
1097
|
+
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#initialize-instance_method" title="GLI::Commands::MarkdownDocumentListener#initialize (method)">#initialize</a></span>
|
|
1098
|
+
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
1051
1099
|
</div>
|
|
1052
1100
|
</li>
|
|
1053
1101
|
|
|
1054
1102
|
|
|
1055
1103
|
<li class="odd ">
|
|
1056
1104
|
<div class="item">
|
|
1057
|
-
<span class='object_link'><a href="
|
|
1058
|
-
<small>
|
|
1105
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#initialize-instance_method" title="BooleanTermParser::Query#initialize (method)">#initialize</a></span>
|
|
1106
|
+
<small>BooleanTermParser::Query</small>
|
|
1059
1107
|
</div>
|
|
1060
1108
|
</li>
|
|
1061
1109
|
|
|
1062
1110
|
|
|
1063
1111
|
<li class="even ">
|
|
1064
1112
|
<div class="item">
|
|
1065
|
-
<span class='object_link'><a href="Doing/
|
|
1066
|
-
<small>Doing::
|
|
1113
|
+
<span class='object_link'><a href="Doing/Logger.html#initialize-instance_method" title="Doing::Logger#initialize (method)">#initialize</a></span>
|
|
1114
|
+
<small>Doing::Logger</small>
|
|
1067
1115
|
</div>
|
|
1068
1116
|
</li>
|
|
1069
1117
|
|
|
1070
1118
|
|
|
1071
1119
|
<li class="odd ">
|
|
1072
1120
|
<div class="item">
|
|
1073
|
-
<span class='object_link'><a href="Doing/
|
|
1074
|
-
<small>Doing::
|
|
1121
|
+
<span class='object_link'><a href="Doing/Errors/PluginException.html#initialize-instance_method" title="Doing::Errors::PluginException#initialize (method)">#initialize</a></span>
|
|
1122
|
+
<small>Doing::Errors::PluginException</small>
|
|
1075
1123
|
</div>
|
|
1076
1124
|
</li>
|
|
1077
1125
|
|
|
1078
1126
|
|
|
1079
1127
|
<li class="even ">
|
|
1080
1128
|
<div class="item">
|
|
1081
|
-
<span class='object_link'><a href="
|
|
1082
|
-
<small>
|
|
1129
|
+
<span class='object_link'><a href="Doing/Errors/DoingNoTraceError.html#initialize-instance_method" title="Doing::Errors::DoingNoTraceError#initialize (method)">#initialize</a></span>
|
|
1130
|
+
<small>Doing::Errors::DoingNoTraceError</small>
|
|
1083
1131
|
</div>
|
|
1084
1132
|
</li>
|
|
1085
1133
|
|
|
1086
1134
|
|
|
1087
1135
|
<li class="odd ">
|
|
1088
1136
|
<div class="item">
|
|
1089
|
-
<span class='object_link'><a href="
|
|
1090
|
-
<small>
|
|
1137
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#initialize-instance_method" title="BooleanTermParser::Clause#initialize (method)">#initialize</a></span>
|
|
1138
|
+
<small>BooleanTermParser::Clause</small>
|
|
1091
1139
|
</div>
|
|
1092
1140
|
</li>
|
|
1093
1141
|
|
|
1094
1142
|
|
|
1095
1143
|
<li class="even ">
|
|
1096
1144
|
<div class="item">
|
|
1097
|
-
<span class='object_link'><a href="
|
|
1098
|
-
<small>
|
|
1145
|
+
<span class='object_link'><a href="Doing/Errors/NoResults.html#initialize-instance_method" title="Doing::Errors::NoResults#initialize (method)">#initialize</a></span>
|
|
1146
|
+
<small>Doing::Errors::NoResults</small>
|
|
1099
1147
|
</div>
|
|
1100
1148
|
</li>
|
|
1101
1149
|
|
|
1102
1150
|
|
|
1103
1151
|
<li class="odd ">
|
|
1104
1152
|
<div class="item">
|
|
1105
|
-
<span class='object_link'><a href="
|
|
1106
|
-
<small>
|
|
1153
|
+
<span class='object_link'><a href="Doing/Errors/DoingRuntimeError.html#initialize-instance_method" title="Doing::Errors::DoingRuntimeError#initialize (method)">#initialize</a></span>
|
|
1154
|
+
<small>Doing::Errors::DoingRuntimeError</small>
|
|
1107
1155
|
</div>
|
|
1108
1156
|
</li>
|
|
1109
1157
|
|
|
1110
1158
|
|
|
1111
1159
|
<li class="even ">
|
|
1112
1160
|
<div class="item">
|
|
1113
|
-
<span class='object_link'><a href="
|
|
1114
|
-
<small>
|
|
1161
|
+
<span class='object_link'><a href="Doing/Errors/WrongCommand.html#initialize-instance_method" title="Doing::Errors::WrongCommand#initialize (method)">#initialize</a></span>
|
|
1162
|
+
<small>Doing::Errors::WrongCommand</small>
|
|
1115
1163
|
</div>
|
|
1116
1164
|
</li>
|
|
1117
1165
|
|
|
1118
1166
|
|
|
1119
1167
|
<li class="odd ">
|
|
1120
1168
|
<div class="item">
|
|
1121
|
-
<span class='object_link'><a href="
|
|
1122
|
-
<small>
|
|
1169
|
+
<span class='object_link'><a href="Doing/Errors/DoingStandardError.html#initialize-instance_method" title="Doing::Errors::DoingStandardError#initialize (method)">#initialize</a></span>
|
|
1170
|
+
<small>Doing::Errors::DoingStandardError</small>
|
|
1123
1171
|
</div>
|
|
1124
1172
|
</li>
|
|
1125
1173
|
|
|
1126
1174
|
|
|
1127
1175
|
<li class="even ">
|
|
1128
1176
|
<div class="item">
|
|
1129
|
-
<span class='object_link'><a href="Doing/
|
|
1130
|
-
<small>Doing::
|
|
1177
|
+
<span class='object_link'><a href="Doing/Errors/EmptyInput.html#initialize-instance_method" title="Doing::Errors::EmptyInput#initialize (method)">#initialize</a></span>
|
|
1178
|
+
<small>Doing::Errors::EmptyInput</small>
|
|
1131
1179
|
</div>
|
|
1132
1180
|
</li>
|
|
1133
1181
|
|
|
@@ -1142,80 +1190,80 @@
|
|
|
1142
1190
|
|
|
1143
1191
|
<li class="even ">
|
|
1144
1192
|
<div class="item">
|
|
1145
|
-
<span class='object_link'><a href="Doing/
|
|
1146
|
-
<small>Doing::
|
|
1193
|
+
<span class='object_link'><a href="Doing/Configuration.html#initialize-instance_method" title="Doing::Configuration#initialize (method)">#initialize</a></span>
|
|
1194
|
+
<small>Doing::Configuration</small>
|
|
1147
1195
|
</div>
|
|
1148
1196
|
</li>
|
|
1149
1197
|
|
|
1150
1198
|
|
|
1151
1199
|
<li class="odd ">
|
|
1152
1200
|
<div class="item">
|
|
1153
|
-
<span class='object_link'><a href="
|
|
1154
|
-
<small>
|
|
1201
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#initialize-instance_method" title="PhraseParser::TermClause#initialize (method)">#initialize</a></span>
|
|
1202
|
+
<small>PhraseParser::TermClause</small>
|
|
1155
1203
|
</div>
|
|
1156
1204
|
</li>
|
|
1157
1205
|
|
|
1158
1206
|
|
|
1159
1207
|
<li class="even ">
|
|
1160
1208
|
<div class="item">
|
|
1161
|
-
<span class='object_link'><a href="
|
|
1162
|
-
<small>
|
|
1209
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#initialize-instance_method" title="PhraseParser::PhraseClause#initialize (method)">#initialize</a></span>
|
|
1210
|
+
<small>PhraseParser::PhraseClause</small>
|
|
1163
1211
|
</div>
|
|
1164
1212
|
</li>
|
|
1165
1213
|
|
|
1166
1214
|
|
|
1167
1215
|
<li class="odd ">
|
|
1168
1216
|
<div class="item">
|
|
1169
|
-
<span class='object_link'><a href="Doing/
|
|
1170
|
-
<small>Doing::
|
|
1217
|
+
<span class='object_link'><a href="Doing/Note.html#initialize-instance_method" title="Doing::Note#initialize (method)">#initialize</a></span>
|
|
1218
|
+
<small>Doing::Note</small>
|
|
1171
1219
|
</div>
|
|
1172
1220
|
</li>
|
|
1173
1221
|
|
|
1174
1222
|
|
|
1175
1223
|
<li class="even ">
|
|
1176
1224
|
<div class="item">
|
|
1177
|
-
<span class='object_link'><a href="
|
|
1178
|
-
<small>
|
|
1225
|
+
<span class='object_link'><a href="PhraseParser/Query.html#initialize-instance_method" title="PhraseParser::Query#initialize (method)">#initialize</a></span>
|
|
1226
|
+
<small>PhraseParser::Query</small>
|
|
1179
1227
|
</div>
|
|
1180
1228
|
</li>
|
|
1181
1229
|
|
|
1182
1230
|
|
|
1183
1231
|
<li class="odd ">
|
|
1184
1232
|
<div class="item">
|
|
1185
|
-
<span class='object_link'><a href="Doing/
|
|
1186
|
-
<small>Doing::
|
|
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>
|
|
1187
1235
|
</div>
|
|
1188
1236
|
</li>
|
|
1189
1237
|
|
|
1190
1238
|
|
|
1191
1239
|
<li class="even ">
|
|
1192
1240
|
<div class="item">
|
|
1193
|
-
<span class='object_link'><a href="Doing/
|
|
1194
|
-
<small>Doing::
|
|
1241
|
+
<span class='object_link'><a href="Doing/TemplateString.html#initialize-instance_method" title="Doing::TemplateString#initialize (method)">#initialize</a></span>
|
|
1242
|
+
<small>Doing::TemplateString</small>
|
|
1195
1243
|
</div>
|
|
1196
1244
|
</li>
|
|
1197
1245
|
|
|
1198
1246
|
|
|
1199
1247
|
<li class="odd ">
|
|
1200
1248
|
<div class="item">
|
|
1201
|
-
<span class='object_link'><a href="Doing/
|
|
1202
|
-
<small>Doing::
|
|
1249
|
+
<span class='object_link'><a href="Doing/WWID.html#initialize-instance_method" title="Doing::WWID#initialize (method)">#initialize</a></span>
|
|
1250
|
+
<small>Doing::WWID</small>
|
|
1203
1251
|
</div>
|
|
1204
1252
|
</li>
|
|
1205
1253
|
|
|
1206
1254
|
|
|
1207
1255
|
<li class="even ">
|
|
1208
1256
|
<div class="item">
|
|
1209
|
-
<span class='object_link'><a href="
|
|
1210
|
-
<small>
|
|
1257
|
+
<span class='object_link'><a href="Doing/Item.html#initialize-instance_method" title="Doing::Item#initialize (method)">#initialize</a></span>
|
|
1258
|
+
<small>Doing::Item</small>
|
|
1211
1259
|
</div>
|
|
1212
1260
|
</li>
|
|
1213
1261
|
|
|
1214
1262
|
|
|
1215
1263
|
<li class="odd ">
|
|
1216
1264
|
<div class="item">
|
|
1217
|
-
<span class='object_link'><a href="Doing/
|
|
1218
|
-
<small>Doing::
|
|
1265
|
+
<span class='object_link'><a href="Doing/Items.html#initialize-instance_method" title="Doing::Items#initialize (method)">#initialize</a></span>
|
|
1266
|
+
<small>Doing::Items</small>
|
|
1219
1267
|
</div>
|
|
1220
1268
|
</li>
|
|
1221
1269
|
|
|
@@ -1229,6 +1277,14 @@
|
|
|
1229
1277
|
|
|
1230
1278
|
|
|
1231
1279
|
<li class="odd ">
|
|
1280
|
+
<div class="item">
|
|
1281
|
+
<span class='object_link'><a href="Doing/Completion.html#install_builtin-class_method" title="Doing::Completion.install_builtin (method)">install_builtin</a></span>
|
|
1282
|
+
<small>Doing::Completion</small>
|
|
1283
|
+
</div>
|
|
1284
|
+
</li>
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
<li class="even ">
|
|
1232
1288
|
<div class="item">
|
|
1233
1289
|
<span class='object_link'><a href="Doing/Prompt.html#install_fzf-class_method" title="Doing::Prompt.install_fzf (method)">install_fzf</a></span>
|
|
1234
1290
|
<small>Doing::Prompt</small>
|
|
@@ -1236,7 +1292,7 @@
|
|
|
1236
1292
|
</li>
|
|
1237
1293
|
|
|
1238
1294
|
|
|
1239
|
-
<li class="
|
|
1295
|
+
<li class="odd ">
|
|
1240
1296
|
<div class="item">
|
|
1241
1297
|
<span class='object_link'><a href="Doing/WWID.html#interactive-instance_method" title="Doing::WWID#interactive (method)">#interactive</a></span>
|
|
1242
1298
|
<small>Doing::WWID</small>
|
|
@@ -1244,7 +1300,7 @@
|
|
|
1244
1300
|
</li>
|
|
1245
1301
|
|
|
1246
1302
|
|
|
1247
|
-
<li class="
|
|
1303
|
+
<li class="even ">
|
|
1248
1304
|
<div class="item">
|
|
1249
1305
|
<span class='object_link'><a href="Doing/Item.html#interval-instance_method" title="Doing::Item#interval (method)">#interval</a></span>
|
|
1250
1306
|
<small>Doing::Item</small>
|
|
@@ -1252,7 +1308,7 @@
|
|
|
1252
1308
|
</li>
|
|
1253
1309
|
|
|
1254
1310
|
|
|
1255
|
-
<li class="
|
|
1311
|
+
<li class="odd ">
|
|
1256
1312
|
<div class="item">
|
|
1257
1313
|
<span class='object_link'><a href="Doing/WWID.html#last-instance_method" title="Doing::WWID#last (method)">#last</a></span>
|
|
1258
1314
|
<small>Doing::WWID</small>
|
|
@@ -1260,7 +1316,7 @@
|
|
|
1260
1316
|
</li>
|
|
1261
1317
|
|
|
1262
1318
|
|
|
1263
|
-
<li class="
|
|
1319
|
+
<li class="even ">
|
|
1264
1320
|
<div class="item">
|
|
1265
1321
|
<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>
|
|
1266
1322
|
<small>Doing::Util::Backup</small>
|
|
@@ -1268,7 +1324,7 @@
|
|
|
1268
1324
|
</li>
|
|
1269
1325
|
|
|
1270
1326
|
|
|
1271
|
-
<li class="
|
|
1327
|
+
<li class="odd ">
|
|
1272
1328
|
<div class="item">
|
|
1273
1329
|
<span class='object_link'><a href="Doing/WWID.html#last_entry-instance_method" title="Doing::WWID#last_entry (method)">#last_entry</a></span>
|
|
1274
1330
|
<small>Doing::WWID</small>
|
|
@@ -1276,7 +1332,7 @@
|
|
|
1276
1332
|
</li>
|
|
1277
1333
|
|
|
1278
1334
|
|
|
1279
|
-
<li class="
|
|
1335
|
+
<li class="even ">
|
|
1280
1336
|
<div class="item">
|
|
1281
1337
|
<span class='object_link'><a href="Doing/WWID.html#last_note-instance_method" title="Doing::WWID#last_note (method)">#last_note</a></span>
|
|
1282
1338
|
<small>Doing::WWID</small>
|
|
@@ -1284,10 +1340,18 @@
|
|
|
1284
1340
|
</li>
|
|
1285
1341
|
|
|
1286
1342
|
|
|
1343
|
+
<li class="odd ">
|
|
1344
|
+
<div class="item">
|
|
1345
|
+
<span class='object_link'><a href="Doing/Logger.html#level-instance_method" title="Doing::Logger#level (method)">#level</a></span>
|
|
1346
|
+
<small>Doing::Logger</small>
|
|
1347
|
+
</div>
|
|
1348
|
+
</li>
|
|
1349
|
+
|
|
1350
|
+
|
|
1287
1351
|
<li class="even ">
|
|
1288
1352
|
<div class="item">
|
|
1289
|
-
<span class='object_link'><a href="Doing/
|
|
1290
|
-
<small>Doing::
|
|
1353
|
+
<span class='object_link'><a href="Doing/Completion.html#link_default-class_method" title="Doing::Completion.link_default (method)">link_default</a></span>
|
|
1354
|
+
<small>Doing::Completion</small>
|
|
1291
1355
|
</div>
|
|
1292
1356
|
</li>
|
|
1293
1357
|
|
|
@@ -1326,32 +1390,32 @@
|
|
|
1326
1390
|
|
|
1327
1391
|
<li class="odd ">
|
|
1328
1392
|
<div class="item">
|
|
1329
|
-
<span class='object_link'><a href="Doing/
|
|
1330
|
-
<small>Doing::
|
|
1393
|
+
<span class='object_link'><a href="Doing/Logger.html#log_benchmarks-instance_method" title="Doing::Logger#log_benchmarks (method)">#log_benchmarks</a></span>
|
|
1394
|
+
<small>Doing::Logger</small>
|
|
1331
1395
|
</div>
|
|
1332
1396
|
</li>
|
|
1333
1397
|
|
|
1334
1398
|
|
|
1335
1399
|
<li class="even ">
|
|
1336
1400
|
<div class="item">
|
|
1337
|
-
<span class='object_link'><a href="Doing/
|
|
1338
|
-
<small>Doing::
|
|
1401
|
+
<span class='object_link'><a href="Doing/Logger.html#log_change-instance_method" title="Doing::Logger#log_change (method)">#log_change</a></span>
|
|
1402
|
+
<small>Doing::Logger</small>
|
|
1339
1403
|
</div>
|
|
1340
1404
|
</li>
|
|
1341
1405
|
|
|
1342
1406
|
|
|
1343
1407
|
<li class="odd ">
|
|
1344
1408
|
<div class="item">
|
|
1345
|
-
<span class='object_link'><a href="Doing/
|
|
1346
|
-
<small>Doing::
|
|
1409
|
+
<span class='object_link'><a href="Doing/Logger.html#log_level=-instance_method" title="Doing::Logger#log_level= (method)">#log_level=</a></span>
|
|
1410
|
+
<small>Doing::Logger</small>
|
|
1347
1411
|
</div>
|
|
1348
1412
|
</li>
|
|
1349
1413
|
|
|
1350
1414
|
|
|
1351
1415
|
<li class="even ">
|
|
1352
1416
|
<div class="item">
|
|
1353
|
-
<span class='object_link'><a href="Doing/
|
|
1354
|
-
<small>Doing::
|
|
1417
|
+
<span class='object_link'><a href="Doing/Logger.html#log_now-instance_method" title="Doing::Logger#log_now (method)">#log_now</a></span>
|
|
1418
|
+
<small>Doing::Logger</small>
|
|
1355
1419
|
</div>
|
|
1356
1420
|
</li>
|
|
1357
1421
|
|
|
@@ -1414,8 +1478,8 @@
|
|
|
1414
1478
|
|
|
1415
1479
|
<li class="even ">
|
|
1416
1480
|
<div class="item">
|
|
1417
|
-
<span class='object_link'><a href="Doing/
|
|
1418
|
-
<small>Doing::
|
|
1481
|
+
<span class='object_link'><a href="Doing/Logger.html#messages-instance_method" title="Doing::Logger#messages (method)">#messages</a></span>
|
|
1482
|
+
<small>Doing::Logger</small>
|
|
1419
1483
|
</div>
|
|
1420
1484
|
</li>
|
|
1421
1485
|
|
|
@@ -1478,16 +1542,16 @@
|
|
|
1478
1542
|
|
|
1479
1543
|
<li class="even ">
|
|
1480
1544
|
<div class="item">
|
|
1481
|
-
<span class='object_link'><a href="
|
|
1482
|
-
<small>
|
|
1545
|
+
<span class='object_link'><a href="Symbol.html#normalize_age-instance_method" title="Symbol#normalize_age (method)">#normalize_age</a></span>
|
|
1546
|
+
<small>Symbol</small>
|
|
1483
1547
|
</div>
|
|
1484
1548
|
</li>
|
|
1485
1549
|
|
|
1486
1550
|
|
|
1487
1551
|
<li class="odd ">
|
|
1488
1552
|
<div class="item">
|
|
1489
|
-
<span class='object_link'><a href="
|
|
1490
|
-
<small>
|
|
1553
|
+
<span class='object_link'><a href="String.html#normalize_age-instance_method" title="String#normalize_age (method)">#normalize_age</a></span>
|
|
1554
|
+
<small>String</small>
|
|
1491
1555
|
</div>
|
|
1492
1556
|
</li>
|
|
1493
1557
|
|
|
@@ -1502,16 +1566,16 @@
|
|
|
1502
1566
|
|
|
1503
1567
|
<li class="odd ">
|
|
1504
1568
|
<div class="item">
|
|
1505
|
-
<span class='object_link'><a href="
|
|
1506
|
-
<small>
|
|
1569
|
+
<span class='object_link'><a href="Symbol.html#normalize_bool-instance_method" title="Symbol#normalize_bool (method)">#normalize_bool</a></span>
|
|
1570
|
+
<small>Symbol</small>
|
|
1507
1571
|
</div>
|
|
1508
1572
|
</li>
|
|
1509
1573
|
|
|
1510
1574
|
|
|
1511
1575
|
<li class="even ">
|
|
1512
1576
|
<div class="item">
|
|
1513
|
-
<span class='object_link'><a href="
|
|
1514
|
-
<small>
|
|
1577
|
+
<span class='object_link'><a href="String.html#normalize_bool-instance_method" title="String#normalize_bool (method)">#normalize_bool</a></span>
|
|
1578
|
+
<small>String</small>
|
|
1515
1579
|
</div>
|
|
1516
1580
|
</li>
|
|
1517
1581
|
|
|
@@ -1558,16 +1622,16 @@
|
|
|
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="Symbol.html#normalize_matching-instance_method" title="Symbol#normalize_matching (method)">#normalize_matching</a></span>
|
|
1626
|
+
<small>Symbol</small>
|
|
1563
1627
|
</div>
|
|
1564
1628
|
</li>
|
|
1565
1629
|
|
|
1566
1630
|
|
|
1567
1631
|
<li class="odd ">
|
|
1568
1632
|
<div class="item">
|
|
1569
|
-
<span class='object_link'><a href="
|
|
1570
|
-
<small>
|
|
1633
|
+
<span class='object_link'><a href="String.html#normalize_matching-instance_method" title="String#normalize_matching (method)">#normalize_matching</a></span>
|
|
1634
|
+
<small>String</small>
|
|
1571
1635
|
</div>
|
|
1572
1636
|
</li>
|
|
1573
1637
|
|
|
@@ -1582,16 +1646,16 @@
|
|
|
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_order-instance_method" title="String#normalize_order (method)">#normalize_order</a></span>
|
|
1650
|
+
<small>String</small>
|
|
1587
1651
|
</div>
|
|
1588
1652
|
</li>
|
|
1589
1653
|
|
|
1590
1654
|
|
|
1591
1655
|
<li class="even ">
|
|
1592
1656
|
<div class="item">
|
|
1593
|
-
<span class='object_link'><a href="
|
|
1594
|
-
<small>
|
|
1657
|
+
<span class='object_link'><a href="Symbol.html#normalize_order-instance_method" title="Symbol#normalize_order (method)">#normalize_order</a></span>
|
|
1658
|
+
<small>Symbol</small>
|
|
1595
1659
|
</div>
|
|
1596
1660
|
</li>
|
|
1597
1661
|
|
|
@@ -1606,8 +1670,8 @@
|
|
|
1606
1670
|
|
|
1607
1671
|
<li class="even ">
|
|
1608
1672
|
<div class="item">
|
|
1609
|
-
<span class='object_link'><a href="
|
|
1610
|
-
<small>
|
|
1673
|
+
<span class='object_link'><a href="FalseClass.html#normalize_tag_sort-instance_method" title="FalseClass#normalize_tag_sort (method)">#normalize_tag_sort</a></span>
|
|
1674
|
+
<small>FalseClass</small>
|
|
1611
1675
|
</div>
|
|
1612
1676
|
</li>
|
|
1613
1677
|
|
|
@@ -1622,8 +1686,8 @@
|
|
|
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_tag_sort-instance_method" title="String#normalize_tag_sort (method)">#normalize_tag_sort</a></span>
|
|
1690
|
+
<small>String</small>
|
|
1627
1691
|
</div>
|
|
1628
1692
|
</li>
|
|
1629
1693
|
|
|
@@ -1662,48 +1726,48 @@
|
|
|
1662
1726
|
|
|
1663
1727
|
<li class="odd ">
|
|
1664
1728
|
<div class="item">
|
|
1665
|
-
<span class='object_link'><a href="Doing/
|
|
1666
|
-
<small>Doing::
|
|
1729
|
+
<span class='object_link'><a href="Doing/Completion.html#normalize_type-class_method" title="Doing::Completion.normalize_type (method)">normalize_type</a></span>
|
|
1730
|
+
<small>Doing::Completion</small>
|
|
1667
1731
|
</div>
|
|
1668
1732
|
</li>
|
|
1669
1733
|
|
|
1670
1734
|
|
|
1671
1735
|
<li class="even ">
|
|
1672
1736
|
<div class="item">
|
|
1673
|
-
<span class='object_link'><a href="
|
|
1674
|
-
<small>
|
|
1737
|
+
<span class='object_link'><a href="Doing/Item.html#note-instance_method" title="Doing::Item#note (method)">#note</a></span>
|
|
1738
|
+
<small>Doing::Item</small>
|
|
1675
1739
|
</div>
|
|
1676
1740
|
</li>
|
|
1677
1741
|
|
|
1678
1742
|
|
|
1679
1743
|
<li class="odd ">
|
|
1680
1744
|
<div class="item">
|
|
1681
|
-
<span class='object_link'><a href="
|
|
1682
|
-
<small>
|
|
1745
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#operator-instance_method" title="PhraseParser::PhraseClause#operator (method)">#operator</a></span>
|
|
1746
|
+
<small>PhraseParser::PhraseClause</small>
|
|
1683
1747
|
</div>
|
|
1684
1748
|
</li>
|
|
1685
1749
|
|
|
1686
1750
|
|
|
1687
1751
|
<li class="even ">
|
|
1688
1752
|
<div class="item">
|
|
1689
|
-
<span class='object_link'><a href="
|
|
1690
|
-
<small>
|
|
1753
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#operator-instance_method" title="BooleanTermParser::Clause#operator (method)">#operator</a></span>
|
|
1754
|
+
<small>BooleanTermParser::Clause</small>
|
|
1691
1755
|
</div>
|
|
1692
1756
|
</li>
|
|
1693
1757
|
|
|
1694
1758
|
|
|
1695
1759
|
<li class="odd ">
|
|
1696
1760
|
<div class="item">
|
|
1697
|
-
<span class='object_link'><a href="
|
|
1698
|
-
<small>
|
|
1761
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#operator-instance_method" title="PhraseParser::TermClause#operator (method)">#operator</a></span>
|
|
1762
|
+
<small>PhraseParser::TermClause</small>
|
|
1699
1763
|
</div>
|
|
1700
1764
|
</li>
|
|
1701
1765
|
|
|
1702
1766
|
|
|
1703
1767
|
<li class="even ">
|
|
1704
1768
|
<div class="item">
|
|
1705
|
-
<span class='object_link'><a href="
|
|
1706
|
-
<small>
|
|
1769
|
+
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#options-instance_method" title="GLI::Commands::MarkdownDocumentListener#options (method)">#options</a></span>
|
|
1770
|
+
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
1707
1771
|
</div>
|
|
1708
1772
|
</li>
|
|
1709
1773
|
|
|
@@ -1718,13 +1782,21 @@
|
|
|
1718
1782
|
|
|
1719
1783
|
<li class="even ">
|
|
1720
1784
|
<div class="item">
|
|
1721
|
-
<span class='object_link'><a href="Doing/
|
|
1722
|
-
<small>Doing::
|
|
1785
|
+
<span class='object_link'><a href="Doing/Section.html#original-instance_method" title="Doing::Section#original (method)">#original</a></span>
|
|
1786
|
+
<small>Doing::Section</small>
|
|
1723
1787
|
</div>
|
|
1724
1788
|
</li>
|
|
1725
1789
|
|
|
1726
1790
|
|
|
1727
1791
|
<li class="odd ">
|
|
1792
|
+
<div class="item">
|
|
1793
|
+
<span class='object_link'><a href="Doing/Logger.html#output_results-instance_method" title="Doing::Logger#output_results (method)">#output_results</a></span>
|
|
1794
|
+
<small>Doing::Logger</small>
|
|
1795
|
+
</div>
|
|
1796
|
+
</li>
|
|
1797
|
+
|
|
1798
|
+
|
|
1799
|
+
<li class="even ">
|
|
1728
1800
|
<div class="item">
|
|
1729
1801
|
<span class='object_link'><a href="Doing/Item.html#overlapping_time%3F-instance_method" title="Doing::Item#overlapping_time? (method)">#overlapping_time?</a></span>
|
|
1730
1802
|
<small>Doing::Item</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="Doing/Pager.html#page-class_method" title="Doing::Pager.page (method)">page</a></span>
|
|
1738
1810
|
<small>Doing::Pager</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/Pager.html#paginate-class_method" title="Doing::Pager.paginate (method)">paginate</a></span>
|
|
1746
1818
|
<small>Doing::Pager</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/Pager.html#paginate=-class_method" title="Doing::Pager.paginate= (method)">paginate=</a></span>
|
|
1754
1826
|
<small>Doing::Pager</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/TemplateString.html#parse_colors-instance_method" title="Doing::TemplateString#parse_colors (method)">#parse_colors</a></span>
|
|
1762
1834
|
<small>Doing::TemplateString</small>
|
|
@@ -1764,7 +1836,39 @@
|
|
|
1764
1836
|
</li>
|
|
1765
1837
|
|
|
1766
1838
|
|
|
1839
|
+
<li class="odd ">
|
|
1840
|
+
<div class="item">
|
|
1841
|
+
<span class='object_link'><a href="Doing/Completion.html#parse_command-class_method" title="Doing::Completion.parse_command (method)">parse_command</a></span>
|
|
1842
|
+
<small>Doing::Completion</small>
|
|
1843
|
+
</div>
|
|
1844
|
+
</li>
|
|
1845
|
+
|
|
1846
|
+
|
|
1847
|
+
<li class="even ">
|
|
1848
|
+
<div class="item">
|
|
1849
|
+
<span class='object_link'><a href="Doing/Completion.html#parse_commands-class_method" title="Doing::Completion.parse_commands (method)">parse_commands</a></span>
|
|
1850
|
+
<small>Doing::Completion</small>
|
|
1851
|
+
</div>
|
|
1852
|
+
</li>
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
|
+
<li class="odd ">
|
|
1856
|
+
<div class="item">
|
|
1857
|
+
<span class='object_link'><a href="Doing/Completion.html#parse_option-class_method" title="Doing::Completion.parse_option (method)">parse_option</a></span>
|
|
1858
|
+
<small>Doing::Completion</small>
|
|
1859
|
+
</div>
|
|
1860
|
+
</li>
|
|
1861
|
+
|
|
1862
|
+
|
|
1767
1863
|
<li class="even ">
|
|
1864
|
+
<div class="item">
|
|
1865
|
+
<span class='object_link'><a href="Doing/Completion.html#parse_options-class_method" title="Doing::Completion.parse_options (method)">parse_options</a></span>
|
|
1866
|
+
<small>Doing::Completion</small>
|
|
1867
|
+
</div>
|
|
1868
|
+
</li>
|
|
1869
|
+
|
|
1870
|
+
|
|
1871
|
+
<li class="odd ">
|
|
1768
1872
|
<div class="item">
|
|
1769
1873
|
<span class='object_link'><a href="Doing/TemplateString.html#parsed_colors-instance_method" title="Doing::TemplateString#parsed_colors (method)">#parsed_colors</a></span>
|
|
1770
1874
|
<small>Doing::TemplateString</small>
|
|
@@ -1772,7 +1876,7 @@
|
|
|
1772
1876
|
</li>
|
|
1773
1877
|
|
|
1774
1878
|
|
|
1775
|
-
<li class="
|
|
1879
|
+
<li class="even ">
|
|
1776
1880
|
<div class="item">
|
|
1777
1881
|
<span class='object_link'><a href="PhraseParser/PhraseClause.html#phrase-instance_method" title="PhraseParser::PhraseClause#phrase (method)">#phrase</a></span>
|
|
1778
1882
|
<small>PhraseParser::PhraseClause</small>
|
|
@@ -1780,7 +1884,7 @@
|
|
|
1780
1884
|
</li>
|
|
1781
1885
|
|
|
1782
1886
|
|
|
1783
|
-
<li class="
|
|
1887
|
+
<li class="odd ">
|
|
1784
1888
|
<div class="item">
|
|
1785
1889
|
<span class='object_link'><a href="Doing/Errors/PluginException.html#plugin-instance_method" title="Doing::Errors::PluginException#plugin (method)">#plugin</a></span>
|
|
1786
1890
|
<small>Doing::Errors::PluginException</small>
|
|
@@ -1788,7 +1892,7 @@
|
|
|
1788
1892
|
</li>
|
|
1789
1893
|
|
|
1790
1894
|
|
|
1791
|
-
<li class="
|
|
1895
|
+
<li class="even ">
|
|
1792
1896
|
<div class="item">
|
|
1793
1897
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_names-class_method" title="Doing::Plugins.plugin_names (method)">plugin_names</a></span>
|
|
1794
1898
|
<small>Doing::Plugins</small>
|
|
@@ -1796,7 +1900,7 @@
|
|
|
1796
1900
|
</li>
|
|
1797
1901
|
|
|
1798
1902
|
|
|
1799
|
-
<li class="
|
|
1903
|
+
<li class="odd ">
|
|
1800
1904
|
<div class="item">
|
|
1801
1905
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_regex-class_method" title="Doing::Plugins.plugin_regex (method)">plugin_regex</a></span>
|
|
1802
1906
|
<small>Doing::Plugins</small>
|
|
@@ -1804,7 +1908,7 @@
|
|
|
1804
1908
|
</li>
|
|
1805
1909
|
|
|
1806
1910
|
|
|
1807
|
-
<li class="
|
|
1911
|
+
<li class="even ">
|
|
1808
1912
|
<div class="item">
|
|
1809
1913
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_templates-class_method" title="Doing::Plugins.plugin_templates (method)">plugin_templates</a></span>
|
|
1810
1914
|
<small>Doing::Plugins</small>
|
|
@@ -1812,7 +1916,7 @@
|
|
|
1812
1916
|
</li>
|
|
1813
1917
|
|
|
1814
1918
|
|
|
1815
|
-
<li class="
|
|
1919
|
+
<li class="odd ">
|
|
1816
1920
|
<div class="item">
|
|
1817
1921
|
<span class='object_link'><a href="Doing/Plugins.html#plugins-class_method" title="Doing::Plugins.plugins (method)">plugins</a></span>
|
|
1818
1922
|
<small>Doing::Plugins</small>
|
|
@@ -1820,7 +1924,7 @@
|
|
|
1820
1924
|
</li>
|
|
1821
1925
|
|
|
1822
1926
|
|
|
1823
|
-
<li class="
|
|
1927
|
+
<li class="even ">
|
|
1824
1928
|
<div class="item">
|
|
1825
1929
|
<span class='object_link'><a href="Doing/Plugins.html#plugins_path-class_method" title="Doing::Plugins.plugins_path (method)">plugins_path</a></span>
|
|
1826
1930
|
<small>Doing::Plugins</small>
|
|
@@ -1828,7 +1932,7 @@
|
|
|
1828
1932
|
</li>
|
|
1829
1933
|
|
|
1830
1934
|
|
|
1831
|
-
<li class="
|
|
1935
|
+
<li class="odd ">
|
|
1832
1936
|
<div class="item">
|
|
1833
1937
|
<span class='object_link'><a href="Doing/Hooks.html#priority_value-class_method" title="Doing::Hooks.priority_value (method)">priority_value</a></span>
|
|
1834
1938
|
<small>Doing::Hooks</small>
|
|
@@ -1836,7 +1940,7 @@
|
|
|
1836
1940
|
</li>
|
|
1837
1941
|
|
|
1838
1942
|
|
|
1839
|
-
<li class="
|
|
1943
|
+
<li class="even ">
|
|
1840
1944
|
<div class="item">
|
|
1841
1945
|
<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>
|
|
1842
1946
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -1844,7 +1948,7 @@
|
|
|
1844
1948
|
</li>
|
|
1845
1949
|
|
|
1846
1950
|
|
|
1847
|
-
<li class="
|
|
1951
|
+
<li class="odd ">
|
|
1848
1952
|
<div class="item">
|
|
1849
1953
|
<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>
|
|
1850
1954
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -1852,7 +1956,7 @@
|
|
|
1852
1956
|
</li>
|
|
1853
1957
|
|
|
1854
1958
|
|
|
1855
|
-
<li class="
|
|
1959
|
+
<li class="even ">
|
|
1856
1960
|
<div class="item">
|
|
1857
1961
|
<span class='object_link'><a href="Status.html#progress-instance_method" title="Status#progress (method)">#progress</a></span>
|
|
1858
1962
|
<small>Status</small>
|
|
@@ -1860,7 +1964,7 @@
|
|
|
1860
1964
|
</li>
|
|
1861
1965
|
|
|
1862
1966
|
|
|
1863
|
-
<li class="
|
|
1967
|
+
<li class="odd ">
|
|
1864
1968
|
<div class="item">
|
|
1865
1969
|
<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>
|
|
1866
1970
|
<small>Doing::Util::Backup</small>
|
|
@@ -1868,7 +1972,7 @@
|
|
|
1868
1972
|
</li>
|
|
1869
1973
|
|
|
1870
1974
|
|
|
1871
|
-
<li class="
|
|
1975
|
+
<li class="even ">
|
|
1872
1976
|
<div class="item">
|
|
1873
1977
|
<span class='object_link'><a href="Doing/TemplateString.html#raw-instance_method" title="Doing::TemplateString#raw (method)">#raw</a></span>
|
|
1874
1978
|
<small>Doing::TemplateString</small>
|
|
@@ -1876,7 +1980,7 @@
|
|
|
1876
1980
|
</li>
|
|
1877
1981
|
|
|
1878
1982
|
|
|
1879
|
-
<li class="
|
|
1983
|
+
<li class="odd ">
|
|
1880
1984
|
<div class="item">
|
|
1881
1985
|
<span class='object_link'><a href="Doing/Prompt.html#read_line-class_method" title="Doing::Prompt.read_line (method)">read_line</a></span>
|
|
1882
1986
|
<small>Doing::Prompt</small>
|
|
@@ -1884,7 +1988,7 @@
|
|
|
1884
1988
|
</li>
|
|
1885
1989
|
|
|
1886
1990
|
|
|
1887
|
-
<li class="
|
|
1991
|
+
<li class="even ">
|
|
1888
1992
|
<div class="item">
|
|
1889
1993
|
<span class='object_link'><a href="Doing/Prompt.html#read_lines-class_method" title="Doing::Prompt.read_lines (method)">read_lines</a></span>
|
|
1890
1994
|
<small>Doing::Prompt</small>
|
|
@@ -1892,7 +1996,7 @@
|
|
|
1892
1996
|
</li>
|
|
1893
1997
|
|
|
1894
1998
|
|
|
1895
|
-
<li class="
|
|
1999
|
+
<li class="odd ">
|
|
1896
2000
|
<div class="item">
|
|
1897
2001
|
<span class='object_link'><a href="Doing/WWID.html#recent-instance_method" title="Doing::WWID#recent (method)">#recent</a></span>
|
|
1898
2002
|
<small>Doing::WWID</small>
|
|
@@ -1900,7 +2004,7 @@
|
|
|
1900
2004
|
</li>
|
|
1901
2005
|
|
|
1902
2006
|
|
|
1903
|
-
<li class="
|
|
2007
|
+
<li class="even ">
|
|
1904
2008
|
<div class="item">
|
|
1905
2009
|
<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>
|
|
1906
2010
|
<small>Doing::Util::Backup</small>
|
|
@@ -1908,23 +2012,23 @@
|
|
|
1908
2012
|
</li>
|
|
1909
2013
|
|
|
1910
2014
|
|
|
1911
|
-
<li class="
|
|
2015
|
+
<li class="odd ">
|
|
1912
2016
|
<div class="item">
|
|
1913
|
-
<span class='object_link'><a href="Doing/
|
|
1914
|
-
<small>Doing::
|
|
2017
|
+
<span class='object_link'><a href="Doing/Hooks.html#register-class_method" title="Doing::Hooks.register (method)">register</a></span>
|
|
2018
|
+
<small>Doing::Hooks</small>
|
|
1915
2019
|
</div>
|
|
1916
2020
|
</li>
|
|
1917
2021
|
|
|
1918
2022
|
|
|
1919
|
-
<li class="
|
|
2023
|
+
<li class="even ">
|
|
1920
2024
|
<div class="item">
|
|
1921
|
-
<span class='object_link'><a href="Doing/
|
|
1922
|
-
<small>Doing::
|
|
2025
|
+
<span class='object_link'><a href="Doing/Plugins.html#register-class_method" title="Doing::Plugins.register (method)">register</a></span>
|
|
2026
|
+
<small>Doing::Plugins</small>
|
|
1923
2027
|
</div>
|
|
1924
2028
|
</li>
|
|
1925
2029
|
|
|
1926
2030
|
|
|
1927
|
-
<li class="
|
|
2031
|
+
<li class="odd ">
|
|
1928
2032
|
<div class="item">
|
|
1929
2033
|
<span class='object_link'><a href="Doing/Hooks.html#register_one-class_method" title="Doing::Hooks.register_one (method)">register_one</a></span>
|
|
1930
2034
|
<small>Doing::Hooks</small>
|
|
@@ -1932,7 +2036,7 @@
|
|
|
1932
2036
|
</li>
|
|
1933
2037
|
|
|
1934
2038
|
|
|
1935
|
-
<li class="
|
|
2039
|
+
<li class="even ">
|
|
1936
2040
|
<div class="item">
|
|
1937
2041
|
<span class='object_link'><a href="Time.html#relative_date-instance_method" title="Time#relative_date (method)">#relative_date</a></span>
|
|
1938
2042
|
<small>Time</small>
|
|
@@ -1940,7 +2044,7 @@
|
|
|
1940
2044
|
</li>
|
|
1941
2045
|
|
|
1942
2046
|
|
|
1943
|
-
<li class="
|
|
2047
|
+
<li class="odd ">
|
|
1944
2048
|
<div class="item">
|
|
1945
2049
|
<span class='object_link'><a href="Doing/TemplateString.html#reparse-instance_method" title="Doing::TemplateString#reparse (method)">#reparse</a></span>
|
|
1946
2050
|
<small>Doing::TemplateString</small>
|
|
@@ -1948,7 +2052,7 @@
|
|
|
1948
2052
|
</li>
|
|
1949
2053
|
|
|
1950
2054
|
|
|
1951
|
-
<li class="
|
|
2055
|
+
<li class="even ">
|
|
1952
2056
|
<div class="item">
|
|
1953
2057
|
<span class='object_link'><a href="Doing/WWID.html#repeat_item-instance_method" title="Doing::WWID#repeat_item (method)">#repeat_item</a></span>
|
|
1954
2058
|
<small>Doing::WWID</small>
|
|
@@ -1956,7 +2060,7 @@
|
|
|
1956
2060
|
</li>
|
|
1957
2061
|
|
|
1958
2062
|
|
|
1959
|
-
<li class="
|
|
2063
|
+
<li class="odd ">
|
|
1960
2064
|
<div class="item">
|
|
1961
2065
|
<span class='object_link'><a href="Doing/WWID.html#repeat_last-instance_method" title="Doing::WWID#repeat_last (method)">#repeat_last</a></span>
|
|
1962
2066
|
<small>Doing::WWID</small>
|
|
@@ -1964,7 +2068,7 @@
|
|
|
1964
2068
|
</li>
|
|
1965
2069
|
|
|
1966
2070
|
|
|
1967
|
-
<li class="
|
|
2071
|
+
<li class="even ">
|
|
1968
2072
|
<div class="item">
|
|
1969
2073
|
<span class='object_link'><a href="Doing/Prompt.html#request_lines-class_method" title="Doing::Prompt.request_lines (method)">request_lines</a></span>
|
|
1970
2074
|
<small>Doing::Prompt</small>
|
|
@@ -1972,7 +2076,7 @@
|
|
|
1972
2076
|
</li>
|
|
1973
2077
|
|
|
1974
2078
|
|
|
1975
|
-
<li class="
|
|
2079
|
+
<li class="odd ">
|
|
1976
2080
|
<div class="item">
|
|
1977
2081
|
<span class='object_link'><a href="Doing/WWID.html#reset_item-instance_method" title="Doing::WWID#reset_item (method)">#reset_item</a></span>
|
|
1978
2082
|
<small>Doing::WWID</small>
|
|
@@ -1980,7 +2084,7 @@
|
|
|
1980
2084
|
</li>
|
|
1981
2085
|
|
|
1982
2086
|
|
|
1983
|
-
<li class="
|
|
2087
|
+
<li class="even ">
|
|
1984
2088
|
<div class="item">
|
|
1985
2089
|
<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>
|
|
1986
2090
|
<small>Doing::Configuration</small>
|
|
@@ -1988,7 +2092,7 @@
|
|
|
1988
2092
|
</li>
|
|
1989
2093
|
|
|
1990
2094
|
|
|
1991
|
-
<li class="
|
|
2095
|
+
<li class="odd ">
|
|
1992
2096
|
<div class="item">
|
|
1993
2097
|
<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>
|
|
1994
2098
|
<small>Doing::Util::Backup</small>
|
|
@@ -1996,15 +2100,15 @@
|
|
|
1996
2100
|
</li>
|
|
1997
2101
|
|
|
1998
2102
|
|
|
1999
|
-
<li class="
|
|
2103
|
+
<li class="even ">
|
|
2000
2104
|
<div class="item">
|
|
2001
|
-
<span class='object_link'><a href="Doing/
|
|
2002
|
-
<small>Doing::
|
|
2105
|
+
<span class='object_link'><a href="Doing/Logger.html#restore_level-instance_method" title="Doing::Logger#restore_level (method)">#restore_level</a></span>
|
|
2106
|
+
<small>Doing::Logger</small>
|
|
2003
2107
|
</div>
|
|
2004
2108
|
</li>
|
|
2005
2109
|
|
|
2006
2110
|
|
|
2007
|
-
<li class="
|
|
2111
|
+
<li class="odd ">
|
|
2008
2112
|
<div class="item">
|
|
2009
2113
|
<span class='object_link'><a href="Doing/Prompt.html#restore_std-class_method" title="Doing::Prompt.restore_std (method)">restore_std</a></span>
|
|
2010
2114
|
<small>Doing::Prompt</small>
|
|
@@ -2012,15 +2116,15 @@
|
|
|
2012
2116
|
</li>
|
|
2013
2117
|
|
|
2014
2118
|
|
|
2015
|
-
<li class="
|
|
2119
|
+
<li class="even ">
|
|
2016
2120
|
<div class="item">
|
|
2017
|
-
<span class='object_link'><a href="Doing/
|
|
2018
|
-
<small>Doing::
|
|
2121
|
+
<span class='object_link'><a href="Doing/Logger.html#results-instance_method" title="Doing::Logger#results (method)">#results</a></span>
|
|
2122
|
+
<small>Doing::Logger</small>
|
|
2019
2123
|
</div>
|
|
2020
2124
|
</li>
|
|
2021
2125
|
|
|
2022
2126
|
|
|
2023
|
-
<li class="
|
|
2127
|
+
<li class="odd ">
|
|
2024
2128
|
<div class="item">
|
|
2025
2129
|
<span class='object_link'><a href="Doing/WWID.html#rotate-instance_method" title="Doing::WWID#rotate (method)">#rotate</a></span>
|
|
2026
2130
|
<small>Doing::WWID</small>
|
|
@@ -2028,7 +2132,7 @@
|
|
|
2028
2132
|
</li>
|
|
2029
2133
|
|
|
2030
2134
|
|
|
2031
|
-
<li class="
|
|
2135
|
+
<li class="even ">
|
|
2032
2136
|
<div class="item">
|
|
2033
2137
|
<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>
|
|
2034
2138
|
<small>Doing::Util</small>
|
|
@@ -2036,7 +2140,7 @@
|
|
|
2036
2140
|
</li>
|
|
2037
2141
|
|
|
2038
2142
|
|
|
2039
|
-
<li class="
|
|
2143
|
+
<li class="odd ">
|
|
2040
2144
|
<div class="item">
|
|
2041
2145
|
<span class='object_link'><a href="Doing/Item.html#same_time%3F-instance_method" title="Doing::Item#same_time? (method)">#same_time?</a></span>
|
|
2042
2146
|
<small>Doing::Item</small>
|
|
@@ -2044,7 +2148,7 @@
|
|
|
2044
2148
|
</li>
|
|
2045
2149
|
|
|
2046
2150
|
|
|
2047
|
-
<li class="
|
|
2151
|
+
<li class="even ">
|
|
2048
2152
|
<div class="item">
|
|
2049
2153
|
<span class='object_link'><a href="Doing/Plugins.html#save_template-class_method" title="Doing::Plugins.save_template (method)">save_template</a></span>
|
|
2050
2154
|
<small>Doing::Plugins</small>
|
|
@@ -2052,7 +2156,7 @@
|
|
|
2052
2156
|
</li>
|
|
2053
2157
|
|
|
2054
2158
|
|
|
2055
|
-
<li class="
|
|
2159
|
+
<li class="odd ">
|
|
2056
2160
|
<div class="item">
|
|
2057
2161
|
<span class='object_link'><a href="Doing/Item.html#search-instance_method" title="Doing::Item#search (method)">#search</a></span>
|
|
2058
2162
|
<small>Doing::Item</small>
|
|
@@ -2060,7 +2164,7 @@
|
|
|
2060
2164
|
</li>
|
|
2061
2165
|
|
|
2062
2166
|
|
|
2063
|
-
<li class="
|
|
2167
|
+
<li class="even ">
|
|
2064
2168
|
<div class="item">
|
|
2065
2169
|
<span class='object_link'><a href="Doing/Item.html#section-instance_method" title="Doing::Item#section (method)">#section</a></span>
|
|
2066
2170
|
<small>Doing::Item</small>
|
|
@@ -2068,7 +2172,7 @@
|
|
|
2068
2172
|
</li>
|
|
2069
2173
|
|
|
2070
2174
|
|
|
2071
|
-
<li class="
|
|
2175
|
+
<li class="odd ">
|
|
2072
2176
|
<div class="item">
|
|
2073
2177
|
<span class='object_link'><a href="Doing/Items.html#section%3F-instance_method" title="Doing::Items#section? (method)">#section?</a></span>
|
|
2074
2178
|
<small>Doing::Items</small>
|
|
@@ -2076,7 +2180,7 @@
|
|
|
2076
2180
|
</li>
|
|
2077
2181
|
|
|
2078
2182
|
|
|
2079
|
-
<li class="
|
|
2183
|
+
<li class="even ">
|
|
2080
2184
|
<div class="item">
|
|
2081
2185
|
<span class='object_link'><a href="Doing/Items.html#section_titles-instance_method" title="Doing::Items#section_titles (method)">#section_titles</a></span>
|
|
2082
2186
|
<small>Doing::Items</small>
|
|
@@ -2084,23 +2188,23 @@
|
|
|
2084
2188
|
</li>
|
|
2085
2189
|
|
|
2086
2190
|
|
|
2087
|
-
<li class="
|
|
2191
|
+
<li class="odd ">
|
|
2088
2192
|
<div class="item">
|
|
2089
|
-
<span class='object_link'><a href="Doing/
|
|
2090
|
-
<small>Doing::
|
|
2193
|
+
<span class='object_link'><a href="Doing/Items.html#sections-instance_method" title="Doing::Items#sections (method)">#sections</a></span>
|
|
2194
|
+
<small>Doing::Items</small>
|
|
2091
2195
|
</div>
|
|
2092
2196
|
</li>
|
|
2093
2197
|
|
|
2094
2198
|
|
|
2095
|
-
<li class="
|
|
2199
|
+
<li class="even ">
|
|
2096
2200
|
<div class="item">
|
|
2097
|
-
<span class='object_link'><a href="Doing/
|
|
2098
|
-
<small>Doing::
|
|
2201
|
+
<span class='object_link'><a href="Doing/WWID.html#sections-instance_method" title="Doing::WWID#sections (method)">#sections</a></span>
|
|
2202
|
+
<small>Doing::WWID</small>
|
|
2099
2203
|
</div>
|
|
2100
2204
|
</li>
|
|
2101
2205
|
|
|
2102
2206
|
|
|
2103
|
-
<li class="
|
|
2207
|
+
<li class="odd ">
|
|
2104
2208
|
<div class="item">
|
|
2105
2209
|
<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>
|
|
2106
2210
|
<small>Doing::Util::Backup</small>
|
|
@@ -2108,7 +2212,7 @@
|
|
|
2108
2212
|
</li>
|
|
2109
2213
|
|
|
2110
2214
|
|
|
2111
|
-
<li class="
|
|
2215
|
+
<li class="even ">
|
|
2112
2216
|
<div class="item">
|
|
2113
2217
|
<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>
|
|
2114
2218
|
<small>Doing::Util::Backup</small>
|
|
@@ -2116,7 +2220,7 @@
|
|
|
2116
2220
|
</li>
|
|
2117
2221
|
|
|
2118
2222
|
|
|
2119
|
-
<li class="
|
|
2223
|
+
<li class="odd ">
|
|
2120
2224
|
<div class="item">
|
|
2121
2225
|
<span class='object_link'><a href="Doing/Configuration.html#settings-instance_method" title="Doing::Configuration#settings (method)">#settings</a></span>
|
|
2122
2226
|
<small>Doing::Configuration</small>
|
|
@@ -2124,7 +2228,7 @@
|
|
|
2124
2228
|
</li>
|
|
2125
2229
|
|
|
2126
2230
|
|
|
2127
|
-
<li class="
|
|
2231
|
+
<li class="even ">
|
|
2128
2232
|
<div class="item">
|
|
2129
2233
|
<span class='object_link'><a href="PhraseParser/Query.html#should_clauses-instance_method" title="PhraseParser::Query#should_clauses (method)">#should_clauses</a></span>
|
|
2130
2234
|
<small>PhraseParser::Query</small>
|
|
@@ -2132,7 +2236,7 @@
|
|
|
2132
2236
|
</li>
|
|
2133
2237
|
|
|
2134
2238
|
|
|
2135
|
-
<li class="
|
|
2239
|
+
<li class="odd ">
|
|
2136
2240
|
<div class="item">
|
|
2137
2241
|
<span class='object_link'><a href="Doing/Item.html#should_finish%3F-instance_method" title="Doing::Item#should_finish? (method)">#should_finish?</a></span>
|
|
2138
2242
|
<small>Doing::Item</small>
|
|
@@ -2140,7 +2244,7 @@
|
|
|
2140
2244
|
</li>
|
|
2141
2245
|
|
|
2142
2246
|
|
|
2143
|
-
<li class="
|
|
2247
|
+
<li class="even ">
|
|
2144
2248
|
<div class="item">
|
|
2145
2249
|
<span class='object_link'><a href="BooleanTermParser/Query.html#should_terms-instance_method" title="BooleanTermParser::Query#should_terms (method)">#should_terms</a></span>
|
|
2146
2250
|
<small>BooleanTermParser::Query</small>
|
|
@@ -2148,7 +2252,7 @@
|
|
|
2148
2252
|
</li>
|
|
2149
2253
|
|
|
2150
2254
|
|
|
2151
|
-
<li class="
|
|
2255
|
+
<li class="odd ">
|
|
2152
2256
|
<div class="item">
|
|
2153
2257
|
<span class='object_link'><a href="Doing/Item.html#should_time%3F-instance_method" title="Doing::Item#should_time? (method)">#should_time?</a></span>
|
|
2154
2258
|
<small>Doing::Item</small>
|
|
@@ -2156,7 +2260,7 @@
|
|
|
2156
2260
|
</li>
|
|
2157
2261
|
|
|
2158
2262
|
|
|
2159
|
-
<li class="
|
|
2263
|
+
<li class="even ">
|
|
2160
2264
|
<div class="item">
|
|
2161
2265
|
<span class='object_link'><a href="GLI/Commands/Help.html#show_help-instance_method" title="GLI::Commands::Help#show_help (method)">#show_help</a></span>
|
|
2162
2266
|
<small>GLI::Commands::Help</small>
|
|
@@ -2164,7 +2268,7 @@
|
|
|
2164
2268
|
</li>
|
|
2165
2269
|
|
|
2166
2270
|
|
|
2167
|
-
<li class="
|
|
2271
|
+
<li class="odd ">
|
|
2168
2272
|
<div class="item">
|
|
2169
2273
|
<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>
|
|
2170
2274
|
<small>Doing::Util::Backup</small>
|
|
@@ -2172,7 +2276,7 @@
|
|
|
2172
2276
|
</li>
|
|
2173
2277
|
|
|
2174
2278
|
|
|
2175
|
-
<li class="
|
|
2279
|
+
<li class="even ">
|
|
2176
2280
|
<div class="item">
|
|
2177
2281
|
<span class='object_link'><a href="Doing/Prompt.html#silence_std-class_method" title="Doing::Prompt.silence_std (method)">silence_std</a></span>
|
|
2178
2282
|
<small>Doing::Prompt</small>
|
|
@@ -2180,7 +2284,7 @@
|
|
|
2180
2284
|
</li>
|
|
2181
2285
|
|
|
2182
2286
|
|
|
2183
|
-
<li class="
|
|
2287
|
+
<li class="odd ">
|
|
2184
2288
|
<div class="item">
|
|
2185
2289
|
<span class='object_link'><a href="Status.html#status-instance_method" title="Status#status (method)">#status</a></span>
|
|
2186
2290
|
<small>Status</small>
|
|
@@ -2188,7 +2292,7 @@
|
|
|
2188
2292
|
</li>
|
|
2189
2293
|
|
|
2190
2294
|
|
|
2191
|
-
<li class="
|
|
2295
|
+
<li class="even ">
|
|
2192
2296
|
<div class="item">
|
|
2193
2297
|
<span class='object_link'><a href="Doing/WWID.html#stop_start-instance_method" title="Doing::WWID#stop_start (method)">#stop_start</a></span>
|
|
2194
2298
|
<small>Doing::WWID</small>
|
|
@@ -2196,7 +2300,7 @@
|
|
|
2196
2300
|
</li>
|
|
2197
2301
|
|
|
2198
2302
|
|
|
2199
|
-
<li class="
|
|
2303
|
+
<li class="odd ">
|
|
2200
2304
|
<div class="item">
|
|
2201
2305
|
<span class='object_link'><a href="Hash.html#stringify_keys-instance_method" title="Hash#stringify_keys (method)">#stringify_keys</a></span>
|
|
2202
2306
|
<small>Hash</small>
|
|
@@ -2204,7 +2308,7 @@
|
|
|
2204
2308
|
</li>
|
|
2205
2309
|
|
|
2206
2310
|
|
|
2207
|
-
<li class="
|
|
2311
|
+
<li class="even ">
|
|
2208
2312
|
<div class="item">
|
|
2209
2313
|
<span class='object_link'><a href="Doing/Note.html#strip_lines-instance_method" title="Doing::Note#strip_lines (method)">#strip_lines</a></span>
|
|
2210
2314
|
<small>Doing::Note</small>
|
|
@@ -2212,7 +2316,7 @@
|
|
|
2212
2316
|
</li>
|
|
2213
2317
|
|
|
2214
2318
|
|
|
2215
|
-
<li class="
|
|
2319
|
+
<li class="odd ">
|
|
2216
2320
|
<div class="item">
|
|
2217
2321
|
<span class='object_link'><a href="Doing/Note.html#strip_lines!-instance_method" title="Doing::Note#strip_lines! (method)">#strip_lines!</a></span>
|
|
2218
2322
|
<small>Doing::Note</small>
|
|
@@ -2220,7 +2324,7 @@
|
|
|
2220
2324
|
</li>
|
|
2221
2325
|
|
|
2222
2326
|
|
|
2223
|
-
<li class="
|
|
2327
|
+
<li class="even ">
|
|
2224
2328
|
<div class="item">
|
|
2225
2329
|
<span class='object_link'><a href="Doing/Color.html#support%3F-instance_method" title="Doing::Color#support? (method)">#support?</a></span>
|
|
2226
2330
|
<small>Doing::Color</small>
|
|
@@ -2228,7 +2332,7 @@
|
|
|
2228
2332
|
</li>
|
|
2229
2333
|
|
|
2230
2334
|
|
|
2231
|
-
<li class="
|
|
2335
|
+
<li class="odd ">
|
|
2232
2336
|
<div class="item">
|
|
2233
2337
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#switch-instance_method" title="GLI::Commands::MarkdownDocumentListener#switch (method)">#switch</a></span>
|
|
2234
2338
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -2236,7 +2340,7 @@
|
|
|
2236
2340
|
</li>
|
|
2237
2341
|
|
|
2238
2342
|
|
|
2239
|
-
<li class="
|
|
2343
|
+
<li class="even ">
|
|
2240
2344
|
<div class="item">
|
|
2241
2345
|
<span class='object_link'><a href="BooleanTermParser/Operator.html#symbol-class_method" title="BooleanTermParser::Operator.symbol (method)">symbol</a></span>
|
|
2242
2346
|
<small>BooleanTermParser::Operator</small>
|
|
@@ -2244,7 +2348,7 @@
|
|
|
2244
2348
|
</li>
|
|
2245
2349
|
|
|
2246
2350
|
|
|
2247
|
-
<li class="
|
|
2351
|
+
<li class="odd ">
|
|
2248
2352
|
<div class="item">
|
|
2249
2353
|
<span class='object_link'><a href="PhraseParser/Operator.html#symbol-class_method" title="PhraseParser::Operator.symbol (method)">symbol</a></span>
|
|
2250
2354
|
<small>PhraseParser::Operator</small>
|
|
@@ -2252,7 +2356,7 @@
|
|
|
2252
2356
|
</li>
|
|
2253
2357
|
|
|
2254
2358
|
|
|
2255
|
-
<li class="
|
|
2359
|
+
<li class="even ">
|
|
2256
2360
|
<div class="item">
|
|
2257
2361
|
<span class='object_link'><a href="Hash.html#symbolize_keys-instance_method" title="Hash#symbolize_keys (method)">#symbolize_keys</a></span>
|
|
2258
2362
|
<small>Hash</small>
|
|
@@ -2260,7 +2364,7 @@
|
|
|
2260
2364
|
</li>
|
|
2261
2365
|
|
|
2262
2366
|
|
|
2263
|
-
<li class="
|
|
2367
|
+
<li class="odd ">
|
|
2264
2368
|
<div class="item">
|
|
2265
2369
|
<span class='object_link'><a href="Doing/Item.html#tag-instance_method" title="Doing::Item#tag (method)">#tag</a></span>
|
|
2266
2370
|
<small>Doing::Item</small>
|
|
@@ -2268,7 +2372,7 @@
|
|
|
2268
2372
|
</li>
|
|
2269
2373
|
|
|
2270
2374
|
|
|
2271
|
-
<li class="
|
|
2375
|
+
<li class="even ">
|
|
2272
2376
|
<div class="item">
|
|
2273
2377
|
<span class='object_link'><a href="Doing/Item.html#tag_array-instance_method" title="Doing::Item#tag_array (method)">#tag_array</a></span>
|
|
2274
2378
|
<small>Doing::Item</small>
|
|
@@ -2276,7 +2380,7 @@
|
|
|
2276
2380
|
</li>
|
|
2277
2381
|
|
|
2278
2382
|
|
|
2279
|
-
<li class="
|
|
2383
|
+
<li class="odd ">
|
|
2280
2384
|
<div class="item">
|
|
2281
2385
|
<span class='object_link'><a href="Doing/WWID.html#tag_groups-instance_method" title="Doing::WWID#tag_groups (method)">#tag_groups</a></span>
|
|
2282
2386
|
<small>Doing::WWID</small>
|
|
@@ -2284,7 +2388,7 @@
|
|
|
2284
2388
|
</li>
|
|
2285
2389
|
|
|
2286
2390
|
|
|
2287
|
-
<li class="
|
|
2391
|
+
<li class="even ">
|
|
2288
2392
|
<div class="item">
|
|
2289
2393
|
<span class='object_link'><a href="Doing/WWID.html#tag_last-instance_method" title="Doing::WWID#tag_last (method)">#tag_last</a></span>
|
|
2290
2394
|
<small>Doing::WWID</small>
|
|
@@ -2292,7 +2396,7 @@
|
|
|
2292
2396
|
</li>
|
|
2293
2397
|
|
|
2294
2398
|
|
|
2295
|
-
<li class="
|
|
2399
|
+
<li class="odd ">
|
|
2296
2400
|
<div class="item">
|
|
2297
2401
|
<span class='object_link'><a href="Doing/WWID.html#tag_times-instance_method" title="Doing::WWID#tag_times (method)">#tag_times</a></span>
|
|
2298
2402
|
<small>Doing::WWID</small>
|
|
@@ -2300,7 +2404,7 @@
|
|
|
2300
2404
|
</li>
|
|
2301
2405
|
|
|
2302
2406
|
|
|
2303
|
-
<li class="
|
|
2407
|
+
<li class="even ">
|
|
2304
2408
|
<div class="item">
|
|
2305
2409
|
<span class='object_link'><a href="Doing/Item.html#tag_values%3F-instance_method" title="Doing::Item#tag_values? (method)">#tag_values?</a></span>
|
|
2306
2410
|
<small>Doing::Item</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/Item.html#tags-instance_method" title="Doing::Item#tags (method)">#tags</a></span>
|
|
2314
2418
|
<small>Doing::Item</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/Item.html#tags%3F-instance_method" title="Doing::Item#tags? (method)">#tags?</a></span>
|
|
2322
2426
|
<small>Doing::Item</small>
|
|
@@ -2324,15 +2428,15 @@
|
|
|
2324
2428
|
</li>
|
|
2325
2429
|
|
|
2326
2430
|
|
|
2327
|
-
<li class="
|
|
2431
|
+
<li class="odd ">
|
|
2328
2432
|
<div class="item">
|
|
2329
|
-
<span class='object_link'><a href="Doing/
|
|
2330
|
-
<small>Doing::
|
|
2433
|
+
<span class='object_link'><a href="Doing/Logger.html#temp_level-instance_method" title="Doing::Logger#temp_level (method)">#temp_level</a></span>
|
|
2434
|
+
<small>Doing::Logger</small>
|
|
2331
2435
|
</div>
|
|
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="Doing/Plugins.html#template_for_trigger-class_method" title="Doing::Plugins.template_for_trigger (method)">template_for_trigger</a></span>
|
|
2338
2442
|
<small>Doing::Plugins</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="Doing/Plugins.html#template_regex-class_method" title="Doing::Plugins.template_regex (method)">template_regex</a></span>
|
|
2346
2450
|
<small>Doing::Plugins</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="PhraseParser/TermClause.html#term-instance_method" title="PhraseParser::TermClause#term (method)">#term</a></span>
|
|
2354
2458
|
<small>PhraseParser::TermClause</small>
|
|
@@ -2356,7 +2460,7 @@
|
|
|
2356
2460
|
</li>
|
|
2357
2461
|
|
|
2358
2462
|
|
|
2359
|
-
<li class="
|
|
2463
|
+
<li class="odd ">
|
|
2360
2464
|
<div class="item">
|
|
2361
2465
|
<span class='object_link'><a href="BooleanTermParser/Clause.html#term-instance_method" title="BooleanTermParser::Clause#term (method)">#term</a></span>
|
|
2362
2466
|
<small>BooleanTermParser::Clause</small>
|
|
@@ -2364,7 +2468,7 @@
|
|
|
2364
2468
|
</li>
|
|
2365
2469
|
|
|
2366
2470
|
|
|
2367
|
-
<li class="
|
|
2471
|
+
<li class="even ">
|
|
2368
2472
|
<div class="item">
|
|
2369
2473
|
<span class='object_link'><a href="Time.html#time_ago-instance_method" title="Time#time_ago (method)">#time_ago</a></span>
|
|
2370
2474
|
<small>Time</small>
|
|
@@ -2372,7 +2476,7 @@
|
|
|
2372
2476
|
</li>
|
|
2373
2477
|
|
|
2374
2478
|
|
|
2375
|
-
<li class="
|
|
2479
|
+
<li class="odd ">
|
|
2376
2480
|
<div class="item">
|
|
2377
2481
|
<span class='object_link'><a href="Doing/Section.html#title-instance_method" title="Doing::Section#title (method)">#title</a></span>
|
|
2378
2482
|
<small>Doing::Section</small>
|
|
@@ -2380,7 +2484,7 @@
|
|
|
2380
2484
|
</li>
|
|
2381
2485
|
|
|
2382
2486
|
|
|
2383
|
-
<li class="
|
|
2487
|
+
<li class="even ">
|
|
2384
2488
|
<div class="item">
|
|
2385
2489
|
<span class='object_link'><a href="Doing/Item.html#title-instance_method" title="Doing::Item#title (method)">#title</a></span>
|
|
2386
2490
|
<small>Doing::Item</small>
|
|
@@ -2388,6 +2492,14 @@
|
|
|
2388
2492
|
</li>
|
|
2389
2493
|
|
|
2390
2494
|
|
|
2495
|
+
<li class="odd ">
|
|
2496
|
+
<div class="item">
|
|
2497
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#to_elasticsearch-instance_method" title="BooleanTermParser::Query#to_elasticsearch (method)">#to_elasticsearch</a></span>
|
|
2498
|
+
<small>BooleanTermParser::Query</small>
|
|
2499
|
+
</div>
|
|
2500
|
+
</li>
|
|
2501
|
+
|
|
2502
|
+
|
|
2391
2503
|
<li class="even ">
|
|
2392
2504
|
<div class="item">
|
|
2393
2505
|
<span class='object_link'><a href="PhraseParser/Query.html#to_elasticsearch-instance_method" title="PhraseParser::Query#to_elasticsearch (method)">#to_elasticsearch</a></span>
|
|
@@ -2398,8 +2510,8 @@
|
|
|
2398
2510
|
|
|
2399
2511
|
<li class="odd ">
|
|
2400
2512
|
<div class="item">
|
|
2401
|
-
<span class='object_link'><a href="
|
|
2402
|
-
<small>
|
|
2513
|
+
<span class='object_link'><a href="Doing/Note.html#to_line-instance_method" title="Doing::Note#to_line (method)">#to_line</a></span>
|
|
2514
|
+
<small>Doing::Note</small>
|
|
2403
2515
|
</div>
|
|
2404
2516
|
</li>
|
|
2405
2517
|
|
|
@@ -2414,32 +2526,32 @@
|
|
|
2414
2526
|
|
|
2415
2527
|
<li class="odd ">
|
|
2416
2528
|
<div class="item">
|
|
2417
|
-
<span class='object_link'><a href="Doing/
|
|
2418
|
-
<small>Doing::
|
|
2529
|
+
<span class='object_link'><a href="Doing/Note.html#to_s-instance_method" title="Doing::Note#to_s (method)">#to_s</a></span>
|
|
2530
|
+
<small>Doing::Note</small>
|
|
2419
2531
|
</div>
|
|
2420
2532
|
</li>
|
|
2421
2533
|
|
|
2422
2534
|
|
|
2423
2535
|
<li class="even ">
|
|
2424
2536
|
<div class="item">
|
|
2425
|
-
<span class='object_link'><a href="Doing/
|
|
2426
|
-
<small>Doing::
|
|
2537
|
+
<span class='object_link'><a href="Doing/Item.html#to_s-instance_method" title="Doing::Item#to_s (method)">#to_s</a></span>
|
|
2538
|
+
<small>Doing::Item</small>
|
|
2427
2539
|
</div>
|
|
2428
2540
|
</li>
|
|
2429
2541
|
|
|
2430
2542
|
|
|
2431
2543
|
<li class="odd ">
|
|
2432
2544
|
<div class="item">
|
|
2433
|
-
<span class='object_link'><a href="Doing/
|
|
2434
|
-
<small>Doing::
|
|
2545
|
+
<span class='object_link'><a href="Doing/Items.html#to_s-instance_method" title="Doing::Items#to_s (method)">#to_s</a></span>
|
|
2546
|
+
<small>Doing::Items</small>
|
|
2435
2547
|
</div>
|
|
2436
2548
|
</li>
|
|
2437
2549
|
|
|
2438
2550
|
|
|
2439
2551
|
<li class="even ">
|
|
2440
2552
|
<div class="item">
|
|
2441
|
-
<span class='object_link'><a href="Doing/
|
|
2442
|
-
<small>Doing::
|
|
2553
|
+
<span class='object_link'><a href="Doing/Section.html#to_s-instance_method" title="Doing::Section#to_s (method)">#to_s</a></span>
|
|
2554
|
+
<small>Doing::Section</small>
|
|
2443
2555
|
</div>
|
|
2444
2556
|
</li>
|
|
2445
2557
|
|
|
@@ -2469,6 +2581,14 @@
|
|
|
2469
2581
|
|
|
2470
2582
|
|
|
2471
2583
|
<li class="even ">
|
|
2584
|
+
<div class="item">
|
|
2585
|
+
<span class='object_link'><a href="Doing/Item.html#unfinished%3F-instance_method" title="Doing::Item#unfinished? (method)">#unfinished?</a></span>
|
|
2586
|
+
<small>Doing::Item</small>
|
|
2587
|
+
</div>
|
|
2588
|
+
</li>
|
|
2589
|
+
|
|
2590
|
+
|
|
2591
|
+
<li class="odd ">
|
|
2472
2592
|
<div class="item">
|
|
2473
2593
|
<span class='object_link'><a href="Doing/Prompt.html#uninstall_fzf-class_method" title="Doing::Prompt.uninstall_fzf (method)">uninstall_fzf</a></span>
|
|
2474
2594
|
<small>Doing::Prompt</small>
|
|
@@ -2476,7 +2596,7 @@
|
|
|
2476
2596
|
</li>
|
|
2477
2597
|
|
|
2478
2598
|
|
|
2479
|
-
<li class="
|
|
2599
|
+
<li class="even ">
|
|
2480
2600
|
<div class="item">
|
|
2481
2601
|
<span class='object_link'><a href="Doing/Configuration.html#update_deprecated_config-instance_method" title="Doing::Configuration#update_deprecated_config (method)">#update_deprecated_config</a></span>
|
|
2482
2602
|
<small>Doing::Configuration</small>
|
|
@@ -2484,7 +2604,7 @@
|
|
|
2484
2604
|
</li>
|
|
2485
2605
|
|
|
2486
2606
|
|
|
2487
|
-
<li class="
|
|
2607
|
+
<li class="odd ">
|
|
2488
2608
|
<div class="item">
|
|
2489
2609
|
<span class='object_link'><a href="Doing/Items.html#update_item-instance_method" title="Doing::Items#update_item (method)">#update_item</a></span>
|
|
2490
2610
|
<small>Doing::Items</small>
|
|
@@ -2492,7 +2612,7 @@
|
|
|
2492
2612
|
</li>
|
|
2493
2613
|
|
|
2494
2614
|
|
|
2495
|
-
<li class="
|
|
2615
|
+
<li class="even ">
|
|
2496
2616
|
<div class="item">
|
|
2497
2617
|
<span class='object_link'><a href="Doing/Util.html#user_home-instance_method" title="Doing::Util#user_home (method)">#user_home</a></span>
|
|
2498
2618
|
<small>Doing::Util</small>
|
|
@@ -2500,7 +2620,7 @@
|
|
|
2500
2620
|
</li>
|
|
2501
2621
|
|
|
2502
2622
|
|
|
2503
|
-
<li class="
|
|
2623
|
+
<li class="odd ">
|
|
2504
2624
|
<div class="item">
|
|
2505
2625
|
<span class='object_link'><a href="Doing/Plugins.html#user_home-class_method" title="Doing::Plugins.user_home (method)">user_home</a></span>
|
|
2506
2626
|
<small>Doing::Plugins</small>
|
|
@@ -2508,7 +2628,7 @@
|
|
|
2508
2628
|
</li>
|
|
2509
2629
|
|
|
2510
2630
|
|
|
2511
|
-
<li class="
|
|
2631
|
+
<li class="even ">
|
|
2512
2632
|
<div class="item">
|
|
2513
2633
|
<span class='object_link'><a href="Doing/Plugins.html#valid_type-class_method" title="Doing::Plugins.valid_type (method)">valid_type</a></span>
|
|
2514
2634
|
<small>Doing::Plugins</small>
|
|
@@ -2516,7 +2636,7 @@
|
|
|
2516
2636
|
</li>
|
|
2517
2637
|
|
|
2518
2638
|
|
|
2519
|
-
<li class="
|
|
2639
|
+
<li class="odd ">
|
|
2520
2640
|
<div class="item">
|
|
2521
2641
|
<span class='object_link'><a href="String.html#validate_color-instance_method" title="String#validate_color (method)">#validate_color</a></span>
|
|
2522
2642
|
<small>String</small>
|
|
@@ -2524,7 +2644,7 @@
|
|
|
2524
2644
|
</li>
|
|
2525
2645
|
|
|
2526
2646
|
|
|
2527
|
-
<li class="
|
|
2647
|
+
<li class="even ">
|
|
2528
2648
|
<div class="item">
|
|
2529
2649
|
<span class='object_link'><a href="Doing/Plugins.html#validate_plugin-class_method" title="Doing::Plugins.validate_plugin (method)">validate_plugin</a></span>
|
|
2530
2650
|
<small>Doing::Plugins</small>
|
|
@@ -2532,7 +2652,7 @@
|
|
|
2532
2652
|
</li>
|
|
2533
2653
|
|
|
2534
2654
|
|
|
2535
|
-
<li class="
|
|
2655
|
+
<li class="odd ">
|
|
2536
2656
|
<div class="item">
|
|
2537
2657
|
<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>
|
|
2538
2658
|
<small>Doing::Configuration</small>
|
|
@@ -2540,7 +2660,7 @@
|
|
|
2540
2660
|
</li>
|
|
2541
2661
|
|
|
2542
2662
|
|
|
2543
|
-
<li class="
|
|
2663
|
+
<li class="even ">
|
|
2544
2664
|
<div class="item">
|
|
2545
2665
|
<span class='object_link'><a href="Doing/WWID.html#verify_duration-instance_method" title="Doing::WWID#verify_duration (method)">#verify_duration</a></span>
|
|
2546
2666
|
<small>Doing::WWID</small>
|
|
@@ -2548,7 +2668,7 @@
|
|
|
2548
2668
|
</li>
|
|
2549
2669
|
|
|
2550
2670
|
|
|
2551
|
-
<li class="
|
|
2671
|
+
<li class="odd ">
|
|
2552
2672
|
<div class="item">
|
|
2553
2673
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#version-instance_method" title="GLI::Commands::MarkdownDocumentListener#version (method)">#version</a></span>
|
|
2554
2674
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -2556,7 +2676,7 @@
|
|
|
2556
2676
|
</li>
|
|
2557
2677
|
|
|
2558
2678
|
|
|
2559
|
-
<li class="
|
|
2679
|
+
<li class="even ">
|
|
2560
2680
|
<div class="item">
|
|
2561
2681
|
<span class='object_link'><a href="Doing/WWID.html#views-instance_method" title="Doing::WWID#views (method)">#views</a></span>
|
|
2562
2682
|
<small>Doing::WWID</small>
|
|
@@ -2564,15 +2684,15 @@
|
|
|
2564
2684
|
</li>
|
|
2565
2685
|
|
|
2566
2686
|
|
|
2567
|
-
<li class="
|
|
2687
|
+
<li class="odd ">
|
|
2568
2688
|
<div class="item">
|
|
2569
|
-
<span class='object_link'><a href="Doing/
|
|
2570
|
-
<small>Doing::
|
|
2689
|
+
<span class='object_link'><a href="Doing/Logger.html#warn-instance_method" title="Doing::Logger#warn (method)">#warn</a></span>
|
|
2690
|
+
<small>Doing::Logger</small>
|
|
2571
2691
|
</div>
|
|
2572
2692
|
</li>
|
|
2573
2693
|
|
|
2574
2694
|
|
|
2575
|
-
<li class="
|
|
2695
|
+
<li class="even ">
|
|
2576
2696
|
<div class="item">
|
|
2577
2697
|
<span class='object_link'><a href="Doing/Prompt.html#which_fzf-class_method" title="Doing::Prompt.which_fzf (method)">which_fzf</a></span>
|
|
2578
2698
|
<small>Doing::Prompt</small>
|
|
@@ -2580,23 +2700,23 @@
|
|
|
2580
2700
|
</li>
|
|
2581
2701
|
|
|
2582
2702
|
|
|
2583
|
-
<li class="
|
|
2703
|
+
<li class="odd ">
|
|
2584
2704
|
<div class="item">
|
|
2585
|
-
<span class='object_link'><a href="Doing/
|
|
2586
|
-
<small>Doing::
|
|
2705
|
+
<span class='object_link'><a href="Doing/WWID.html#write-instance_method" title="Doing::WWID#write (method)">#write</a></span>
|
|
2706
|
+
<small>Doing::WWID</small>
|
|
2587
2707
|
</div>
|
|
2588
2708
|
</li>
|
|
2589
2709
|
|
|
2590
2710
|
|
|
2591
|
-
<li class="
|
|
2711
|
+
<li class="even ">
|
|
2592
2712
|
<div class="item">
|
|
2593
|
-
<span class='object_link'><a href="Doing/
|
|
2594
|
-
<small>Doing::
|
|
2713
|
+
<span class='object_link'><a href="Doing/Logger.html#write-instance_method" title="Doing::Logger#write (method)">#write</a></span>
|
|
2714
|
+
<small>Doing::Logger</small>
|
|
2595
2715
|
</div>
|
|
2596
2716
|
</li>
|
|
2597
2717
|
|
|
2598
2718
|
|
|
2599
|
-
<li class="
|
|
2719
|
+
<li class="odd ">
|
|
2600
2720
|
<div class="item">
|
|
2601
2721
|
<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
2722
|
<small>Doing::Util::Backup</small>
|
|
@@ -2604,7 +2724,7 @@
|
|
|
2604
2724
|
</li>
|
|
2605
2725
|
|
|
2606
2726
|
|
|
2607
|
-
<li class="
|
|
2727
|
+
<li class="even ">
|
|
2608
2728
|
<div class="item">
|
|
2609
2729
|
<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>
|
|
2610
2730
|
<small>Doing::Util</small>
|
|
@@ -2612,7 +2732,7 @@
|
|
|
2612
2732
|
</li>
|
|
2613
2733
|
|
|
2614
2734
|
|
|
2615
|
-
<li class="
|
|
2735
|
+
<li class="odd ">
|
|
2616
2736
|
<div class="item">
|
|
2617
2737
|
<span class='object_link'><a href="Doing/WWID.html#yesterday-instance_method" title="Doing::WWID#yesterday (method)">#yesterday</a></span>
|
|
2618
2738
|
<small>Doing::WWID</small>
|
|
@@ -2620,7 +2740,7 @@
|
|
|
2620
2740
|
</li>
|
|
2621
2741
|
|
|
2622
2742
|
|
|
2623
|
-
<li class="
|
|
2743
|
+
<li class="even ">
|
|
2624
2744
|
<div class="item">
|
|
2625
2745
|
<span class='object_link'><a href="Doing/Prompt.html#yn-class_method" title="Doing::Prompt.yn (method)">yn</a></span>
|
|
2626
2746
|
<small>Doing::Prompt</small>
|