{{ChandlerButtons}}
{{ChandlerNow}}
{{ChandlerLater}}
{{ChandlerDone}}\define folding-editor(tiddler)
<$set name="state" value={{{ [[$:/state/folding-editor/]addsuffix<currentTiddler>addsuffix<__tiddler__>] }}}>
<$reveal stateTitle=<<state>> type="nomatch" text="edit">
<span style="float: right;">
<$button class="tc-btn-invisible" setTitle=<<state>> setTo="edit">{{$:/core/images/edit-button}}</$button>
</span>
<$list filter="[<__tiddler__>is[missing]] [<__tiddler__>!is[missing]!has[text]]">
<<__tiddler__>>
</$list>
<$transclude tiddler=<<__tiddler__>> mode="block"/>
</$reveal>
<$reveal stateTitle=<<state>> type="match" text="edit">
<span style="float: right;">
<$button class="tc-btn-invisible" setTitle=<<state>> setTo="">{{$:/core/images/done-button}}</$button>
</span>
<$edit-text class="tc-edit-texteditor" tiddler=<<__tiddler__>> tag="textarea" default="" placeholder={{$:/language/EditTemplate/Body/Placeholder}}/>
</$reveal>
</$set>
\endThis is very nice. It works on TWApp for mobile too. Links, transclusions and list filters created in the edit text also work.
For mobile use can I ask;
1. How to increase the size of the buttons?
2. The title of the tiddler to be created, eg ChandlerDone, is shown before clicking on the edit pen icon that creates it. Is it possible to show it after clicking the 'done' tick as well? (Maybe as a link).
3. The title of the new target tiddler is pre-named in the Macro eg . Is there a way to enter the new title in the text edit window at the point of creation?
4. Clicking done displays the new text in the 'host' tiddler. Is it possible to display the title only, with the edit pen beside it so that the new tiddler can be edited in place if necessary but its contents aren't displayed. (My use case might be different to Joe's - I'm aiming at one home tiddler on a mobile that lists tiddlers created and allows me to edit them without leaving the Home tiddler. If I want to see their full content I click on the edit pen or open the tiddler itself.)
I realise BTC time is a precious commodity so ignore any of these requests if they're too complicated. This Macro is already super useful as it is. Big Thanks to you and Joe.
Hey Joe, where you going with that ChandlerDone in your hand?' - Hendrix meets The Big Sleep?
This is very nice. It works on TWApp for mobile too. Links, transclusions and list filters created in the edit text also work.
For mobile use can I ask;
1. How to increase the size of the buttons?
2. The title of the tiddler to be created, eg ChandlerDone, is shown before clicking on the edit pen icon that creates it. Is it possible to show it after clicking the 'done' tick as well? (Maybe as a link).
3. The title of the new target tiddler is pre-named in the Macro eg . Is there a way to enter the new title in the text edit window at the point of creation?
4. Clicking done displays the new text in the 'host' tiddler. Is it possible to display the title only, with the edit pen beside it so that the new tiddler can be edited in place if necessary but its contents aren't displayed. (My use case might be different to Joe's - I'm aiming at one home tiddler on a mobile that lists tiddlers created and allows me to edit them without leaving the Home tiddler. If I want to see their full content I click on the edit pen or open the tiddler itself.)
I realise BTC time is a precious commodity so ignore any of these requests if they're too complicated. This Macro is already super useful as it is. Big Thanks to you and Joe.
<$wikify name=tagvalue text=<<now "DDth MMM YYYY">> >
<$checkbox tag=<<tagvalue>> > tick to add today's date as a tag
</$checkbox>
</$wikify>
Is this a reference to the Chandler PIM project that ceased development in 2008 ?
{{ChandlerDone}}<<now "YYYY-0MM-0DDT0hh:0mm:0ssTZD">>Hi Joe,
I don't have an answer to the folding editor but toggling the preview pane (eyelid icon on toolbar or alt-p) allows you to see changes when you edit.
I really enjoyed your blog post about Chandler and task management triage. Having tried so many different task managers, it is refreshing to see something so clear, simple and well executed. I just dragged in all the chandler tiddlers and set Chandler as a default tiddler on startup. I like that the chandler tasks are not marred by widget code or additional field metadata; everything is handled by tag state changes.
I've already tweakedwith an archive button and set the date format to a ISO 8601 preference{{ChandlerDone}}<<now "YYYY-0MM-0DDT0hh:0mm:0ssTZD">>so Chandler is really working to focus running tasks.
I think Chandler is fine as is but if you continue development, here are some calendar links that may be helpful:
One problem in spreading Tiddlywiki for more uses and applications in other areas is documentation.
There is little documentation on TW and most of them are not easy to understand. What you said above is correct. For basic usage the learning curve is steep but then you encounter many troubles, that because you can't find a good resource to explains what every element of TW can do for you. Thanks to the kind and helpful people of this forum, without them going beyond the basics is impossible.
I hope documentation can get a higher priority for TW. I am sure then, the development speed will be much more than this.
Mohammad
It seems to me you can come a long way with tags and filter operations over tags.
So what does your new ChandlerDone look like? - I'm curious
<$button>
<$action-sendmessage $message="tm-add-tag" $param="archive"/>
<$action-sendmessage $message="tm-remove-tag" $param="done"/>
<$action-sendmessage $message="tm-remove-tag" $param="chandler"/>
{{$:/core/images/chevron-left}}archive
</$button><$fieldmangler>
<$button>
<$action-sendmessage $message="tm-remove-tag" $param="archive"/>
<$action-sendmessage $message="tm-add-tag" $param="chandler"/>
<$action-sendmessage $message="tm-add-tag" $param="now"/>
{{$:/core/images/star-filled}}
</$button>
</$fieldmangler>{{ChandlerizeButton}}On Friday, January 4, 2019 at 1:25:19 PM UTC-8, Joe Armstrong wrote:It seems to me you can come a long way with tags and filter operations over tags.Indeed! That is why your re-implementation of Chandler is a breath of fresh air.My needs are simple and expedient. I've moved back to analog with the joys of a fountain pen and paper to more rapidly capture daily tasks.
Joe,I think this could save you automating, build it right into the model.Have you seen my algorithim that uses date stamps on fields for task management? I think this is a superior method to tags. No need to swap one tag for another.Eg I have the following fields item-started item-completed item-cancelled item-archivedIf at any time I timestamp such a field, not only does it change its status, but I record when it changed status.Using the new subfilter operator I define active-task to equal [has[item-started]!has[item-completed]!has[item-cancelled]] - I call this tiddler disposition.Using this method I can interrogate my tasks in many ways like
- active-task started more than a week ago
- Task closed today
I also have item-strategic item-tactical and item-operational dates. Each representing Monthly, Weekly and DailyListing tactical due I just list active-tasks with a item-tactical older than 7 days. When I do a tactical tasks I can just re-stamp it with the current date and it will not list for another weekThis allows me to change the review periods without changing any task tiddlers. Eg Tactical review of 2 weeks or 14 days.These review tiddlers can also have a tiddler disposition as above.Using this method you could retrofit tools that report how long something was active eg item-completed less item-startedI also allow item-planed-start item-planed-due to be set and can show when they are planned to start and past dueFields are like a specific tag for which you can store a value.Anything with Item-archived appears in my references list and discourages deletion.
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/0EkDcX6frpw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/f1545f2a-d181-41dc-9aee-f10182dc922e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
For the planning items I still have the aforementioned disposition dates but I include
Planing-start planned start date
Planning-due planed completion date personal target
Planning-end do or die delivery end
Regards
Tony