[tw5] Re: new-journal-here button how to add currentTiddler to name?

2021-01-07 Thread Sapphireslinger
Thank you so much! Hope this teaches me to wikify from now on!

I made a tiddler titled $:/core/ui/Buttons/new-class-log-entry-here and put 
your code in it:

\define newtags() [[$(currentTiddler)$]] [[bible study session]]

<$wikify name="Title" text="""<><>""">

<$button class="tc-btn-invisible">{{$:/core/images/new-journal-button}}
  <$action-sendmessage $message="tm-new-tiddler" title=<> 
tags=<> />
   

Notes:

* I removed the list filter because the icon wouldn't show up when viewing 
a "preview" of tiddlers containing the icon in the sidebar.
* However when I put {{Class Log - Jane 
Doe||$:/core/ui/Buttons/new-class-log-entry-here}} in the appropriate 
tiddler the icon is both viewable and clickable when that tiddler shows up 
in the sidebar. I have a finite number of students, so it is not too 
onerous to do this for each student.

On Friday, January 8, 2021 at 2:47:52 PM UTC+8 Odin wrote:

> You can use the wikify widget to create a title like that: 
>
> <$wikify name="classLogTitle" text="""<> 
> <>""">
>
> And then replace the yellow part with: <> to pass the 
> wikified bit as the text. To create the new journal button, you can use the 
> class="tc-btn-invisible" to hides the button part (you'll be left with just 
> text). Now you can replace the text with any icon you want, such as the new 
> journal icon. Also note that the  [[$(currentTiddler)$]] [[bible study 
> session]] part can be removed and the button still works. I am not sure 
> what it is for.
>
> Full solution:
>
>
> \define newtags() [[$(currentTiddler)$]] [[bible study session]]
>
> <$wikify name="Title" text="""<> 
> <>""">
>
> <$list filter="[prefix[Class Log - ]] ">
> <$button class="tc-btn-invisible">{{$:/core/images/new-journal-button}}
>   <$action-sendmessage $message="tm-new-tiddler" title=<> 
> tags=<> />
>
> 
>
> Op vrijdag 8 januari 2021 om 07:14:31 UTC+1 schreef Sapphireslinger:
>
>> I was originally trying to do something like this. Spent hours trying to 
>> figure out what to put in the yellow spot:
>>
>> \define newtags() [[$(currentTiddler)$]] [[bible study session]]
>>
>> <$list filter="[prefix[Class Log - ]] ">
>> <$button> Class Log - New Entry
>>   <$action-sendmessage $message="tm-new-tiddler" title=<> ".0MM.0DD.0hh0mm $(currentTiddler)$" >> tags=<> />
>>
>> 
>>
>> Then I got the bright idea of cloning new-journal-here button and think 
>> the new-journal here icon is smaller and nicer-looking than a grey button. 
>>
>> 1. However could someone please tell me what I ought to have put in the 
>> yellow space?
>>
>> 2. Also, this code seems to take up a lot less space than the 
>> new-journal-here code, not to mention it gets macro'd into any pertinent 
>> tiddlers instead of pasting it over and over again into the pertinent 
>> tiddlers, bloating the wiki. Any way to get it to be the new-journal here 
>> icon instead of a grey button?
>>
>> On Friday, January 8, 2021 at 2:02:50 PM UTC+8 Sapphireslinger wrote:
>>
>>> I am trying to create a new-journal-here button embedded in my tiddler 
>>> "Class Log - Jane Doe". I want it to create a tiddler titled 
>>> "year.month.day hour Class Log- Jane Doe" which is tagged with [bible study 
>>> session] and [Class Log - Jane Doe]
>>>
>>> In other words:
>>> * Title: "date currentTiddler"
>>> * Tags: [bible study session] [currentTiddler]
>>>
>>> I thought all I had to do was clone $:/core/ui/Buttons/new-journal-here 
>>> button, give it the new name $:/core/ui/Buttons/new-class-log-entry-here, 
>>> add [bible study session] to the tags, and embed it in any "Class Log - 
>>> Jane Doe" like tiddlers like so: {{Class Log- Jane 
>>> Doe||$:/core/ui/Buttons/new-class-log-entry-here}}
>>>
>>> Problem:
>>> Clicking that button in the Class - Jane Doe tiddler results in a 
>>> tiddler with the correct tags, but the title only has a date stamp, not 
>>> "date-stamp currentTiddler".
>>>
>>> \whitespace trim
>>> \define journalButtonTags()
>>> [[$(currentTiddlerTag)$]] [[bible study session]]
>>> \end
>>> \define journalButton()
>>> <$button tooltip={{$:/language/Buttons/NewJournalHere/Hint}} 
>>> aria-label={{$:/language/Buttons/NewJournalHere/Caption}} 
>>> class=<>>
>>> <$wikify name="journalTitle" text="""<$macrocall $name="now" 
>>> format=<>/>""">
>>> <$action-sendmessage $message="tm-new-tiddler" title=<> 
>>> tags=<> journal-date=<>/>
>>> <$list filter="[match[yes]]">
>>> {{$:/core/images/new-journal-button}}
>>> 
>>> <$list filter="[match[yes]]">
>>> 
>>> <$text text={{$:/language/Buttons/NewJournalHere/Caption}}/>
>>> 
>>> 
>>> 
>>> 
>>> \end
>>> <$set name="journalTitleTemplate" value={{$:/config/NewJournal/Title}}>
>>> <$set name="journalTags" value={{$:/config/NewJournal/Tags!!tags}}>
>>> <$set name="currentTiddlerTag" value=<>>
>>> <>
>>> 
>>> 
>>> 
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 

[tw5] Save issue with new Wiki and TiddlyDesktop

2021-01-07 Thread Stefan Schlechter
Hello,

I'm using TiddlyDesktop version 0.0.14 and downloaded a fresh empty wiki 
5.1.23.

Can't save changes:
[image: save_nok.jpg]
Save with my upgraded Wiki (from 5.1.22 to 5.1.23) is working fine.

Whats wrong?

Thanks
Stefan

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1517cdf9-19eb-4b38-aaf7-48e757b1a5a5n%40googlegroups.com.


Re: [tw5] Re: Code Tiddler and Transclude few lines

2021-01-07 Thread Mohammad Rahmani
Hi Eric,

 I came to this thread and found it very interesting. One use case is to
show a code using the $codeblock widget with language to highlight the code
for those specified lines and show the rest without highlighting!

 I appreciate to instruct me how to do this. I thought to use the
$codeblock widget instead of pre tag in showLines but this way I see
fragmented output.


Best wishes
Mohammad


On Thu, Nov 26, 2020 at 3:35 AM Eric Shulman  wrote:

> On Wednesday, November 25, 2020 at 3:19:13 PM UTC-8 TW Tones wrote:
>
>>
>>- And perhaps a code view with line numbers from the source.
>>
>>
> Here's an updated version that add line numbers AND also fixes a bug
> whereby only one blank line was included in the output
>
> \define showLines(tid,from,to)
> <$vars length={{{ [[$to$]subtract[$from$]add[1]] }}}>
> <$set name="lines" filter="[[$tid$]get[text]splitregexp[\n]addsuffix[
> ]first[$to$]last]">
> <$list filter="[enlist:raw]"
> variable="line"><$text text=<>/>
> 
> 
> \end
>
> Notes:
> * The $set filter adds a space to end of each line.  This effectively
> preserves multiple blank lines by making them non-empty list items
> * The output is wrapped in ... and uses
> ...  instead of a trailing  to add the line numbers
>
> enjoy,
> -e
>
> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tiddlywiki+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/f609beb5-695f-4b38-aff3-36afe498cde9n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAAV1gMCqyP4saej8GOBDV_3YdH_%3DeOwuE6Zn9kPXAfm1hLBfew%40mail.gmail.com.


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-07 Thread Sylvain Naudin
Hello,

Le vendredi 8 janvier 2021 à 06:57:46 UTC+1, BurningTreeC a écrit :

>
> Otherwise I wondered if the cards could take the colour of the header for 
>> the outline... an idea that was not so easy to implement;
>>
>
> I think that could be done, I could make that configurable
>
> or else to be able to put a background for each column, and rather have a 
>> less visible border at the top and bottom.
>>
>
> Setting a background would be feasible. What do you mean with the top and 
> bottom borders?
>


I am no longer sure which option to take.

If you search by image with the keyword Kanban, most of the Post-it notes 
are coloured rather than the headers. On this point we could imagine using 
the tiddlers colour field to apply a background or border.
Otherwise, as you have done so far, I think it reminded me of the Monday ad 
where the columns are fully coloured and the cards are neutral.

Have a nice day,
Sylvain

 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1d16738e-ff0b-435c-afbd-637de7e8cb19n%40googlegroups.com.


[tw5] Re: How do I use fontawesome icons?

2021-01-07 Thread Odin
http://fa5-free-svg.tiddlyspot.com/

It is this one. I like this solution as well because you can install 
individual icons. That helps keep the wiki small if you are using only a 
couple of extra icons.

Op vrijdag 8 januari 2021 om 00:35:31 UTC+1 schreef TW Tones:

> I cant find it now but there is a package of font awesome Icons as SVG's 
> for tiddlywiki.
>
> Tones
> On Thursday, 7 January 2021 at 23:29:45 UTC+11 Jon wrote:
>
>> Thanks TT!
>>
>> On Thursday, 7 January 2021 at 12:28:23 UTC TiddlyTweeter wrote:
>>
>>> Right! The mechanism to actually display the glyphs has to use CSS 
>>> classes. The font characters themselves are not directly accessible using 
>>> entity numbers as the font is activated through classes. It is not globally 
>>> loaded, I think.
>>>
>>> My understanding.
>>> TT
>>>
>>> On Thursday, 7 January 2021 at 12:48:14 UTC+1 Jon wrote:
>>>
 Ah, so after a bit of lateral thinking, found the instructions at 
 https://fontawesome.com/

 So, just in case I'm not the only one asking the question, this would 
 go in the tiddler (Icon id in quotes):

 

 Cheers
 Jon

 On Thursday, 7 January 2021 at 08:54:10 UTC Jon wrote:

> Hi, 
>
> I've installed the  fontawesome plugin 
>  but 
> there aren't any instructions as to how to use it and to get icons in a 
> tiddler (unless I've missed them)
>
> I notice the cheat sheet doesn't work in my wiki, so that might be a 
> clue that something's not right.
>
> Any pointers?
>
> Thanks
> Jon
>


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/654fb132-0cd2-4612-abab-ee3a713f59c0n%40googlegroups.com.


[tw5] Re: new-journal-here button how to add currentTiddler to name?

2021-01-07 Thread Odin
You can use the wikify widget to create a title like that: 

<$wikify name="classLogTitle" text="""<> 
<>""">

And then replace the yellow part with: <> to pass the 
wikified bit as the text. To create the new journal button, you can use the 
class="tc-btn-invisible" to hides the button part (you'll be left with just 
text). Now you can replace the text with any icon you want, such as the new 
journal icon. Also note that the  [[$(currentTiddler)$]] [[bible study 
session]] part can be removed and the button still works. I am not sure 
what it is for.

Full solution:

\define newtags() [[$(currentTiddler)$]] [[bible study session]]

<$wikify name="Title" text="""<> 
<>""">

<$list filter="[prefix[Class Log - ]] ">
<$button class="tc-btn-invisible">{{$:/core/images/new-journal-button}}
  <$action-sendmessage $message="tm-new-tiddler" title=<> 
tags=<> />
   


Op vrijdag 8 januari 2021 om 07:14:31 UTC+1 schreef Sapphireslinger:

> I was originally trying to do something like this. Spent hours trying to 
> figure out what to put in the yellow spot:
>
> \define newtags() [[$(currentTiddler)$]] [[bible study session]]
>
> <$list filter="[prefix[Class Log - ]] ">
> <$button> Class Log - New Entry
>   <$action-sendmessage $message="tm-new-tiddler" title=< ".0MM.0DD.0hh0mm $(currentTiddler)$" >> tags=<> />
>
> 
>
> Then I got the bright idea of cloning new-journal-here button and think 
> the new-journal here icon is smaller and nicer-looking than a grey button. 
>
> 1. However could someone please tell me what I ought to have put in the 
> yellow space?
>
> 2. Also, this code seems to take up a lot less space than the 
> new-journal-here code, not to mention it gets macro'd into any pertinent 
> tiddlers instead of pasting it over and over again into the pertinent 
> tiddlers, bloating the wiki. Any way to get it to be the new-journal here 
> icon instead of a grey button?
>
> On Friday, January 8, 2021 at 2:02:50 PM UTC+8 Sapphireslinger wrote:
>
>> I am trying to create a new-journal-here button embedded in my tiddler 
>> "Class Log - Jane Doe". I want it to create a tiddler titled 
>> "year.month.day hour Class Log- Jane Doe" which is tagged with [bible study 
>> session] and [Class Log - Jane Doe]
>>
>> In other words:
>> * Title: "date currentTiddler"
>> * Tags: [bible study session] [currentTiddler]
>>
>> I thought all I had to do was clone $:/core/ui/Buttons/new-journal-here 
>> button, give it the new name $:/core/ui/Buttons/new-class-log-entry-here, 
>> add [bible study session] to the tags, and embed it in any "Class Log - 
>> Jane Doe" like tiddlers like so: {{Class Log- Jane 
>> Doe||$:/core/ui/Buttons/new-class-log-entry-here}}
>>
>> Problem:
>> Clicking that button in the Class - Jane Doe tiddler results in a tiddler 
>> with the correct tags, but the title only has a date stamp, not "date-stamp 
>> currentTiddler".
>>
>> \whitespace trim
>> \define journalButtonTags()
>> [[$(currentTiddlerTag)$]] [[bible study session]]
>> \end
>> \define journalButton()
>> <$button tooltip={{$:/language/Buttons/NewJournalHere/Hint}} 
>> aria-label={{$:/language/Buttons/NewJournalHere/Caption}} 
>> class=<>>
>> <$wikify name="journalTitle" text="""<$macrocall $name="now" 
>> format=<>/>""">
>> <$action-sendmessage $message="tm-new-tiddler" title=<> 
>> tags=<> journal-date=<>/>
>> <$list filter="[match[yes]]">
>> {{$:/core/images/new-journal-button}}
>> 
>> <$list filter="[match[yes]]">
>> 
>> <$text text={{$:/language/Buttons/NewJournalHere/Caption}}/>
>> 
>> 
>> 
>> 
>> \end
>> <$set name="journalTitleTemplate" value={{$:/config/NewJournal/Title}}>
>> <$set name="journalTags" value={{$:/config/NewJournal/Tags!!tags}}>
>> <$set name="currentTiddlerTag" value=<>>
>> <>
>> 
>> 
>> 
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d261e865-a149-4d21-b827-e93328b07921n%40googlegroups.com.


Re: [tw5] [ANN] Projectify 0.8.0 is out!

2021-01-07 Thread Sapphireslinger
How do I install if have older version? 
Do I go to plugins and delete version 7, then import version 8? Or import 
8, then delete 7? 
I don't want to lose all my projects in version 7, and have to enter 
everything again in version 8.

On Thursday, January 7, 2021 at 1:16:07 AM UTC+8 Nicolas Petton wrote:

> Mohammad Rahmani  writes:
>
> > Hi Nico,
>
> Hi Mohammad,
>
> > Thank you for these new improvements. Projectify is a great web App
> > now.
>
> Thank you, I'm really glad you like it!
>
> Nico
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/dc5a7bb6-c1bf-491d-b518-fbe8c829964dn%40googlegroups.com.


[tw5] how to enlarge $:/_simple_toolbar icons

2021-01-07 Thread Sapphireslinger
I am using the TonGerner's awesome Simple Toolbar but my tiddlywiki renders 
them super tiny, the tiniest I've ever seen. How do I enlarge them? Hope I 
can get them as large as my old toolbar.


{{$:/core/ui/Buttons/home}}
{{$:/core/ui/Buttons/close-all}}
{{$:/core/ui/Buttons/new-tiddler}}
{{$:/core/ui/Buttons/new-journal}}
{{$:/core/ui/Buttons/new-image}}
{{$:/core/ui/Buttons/control-panel}}
{{$:/core/ui/Buttons/advanced-search}}
{{$:/core/ui/Buttons/save-wiki}}
{{$:/plugins/nico/projectify/ui/buttons/Scheduled}}

{{Create (vertical) toolbar}}


.tgc-fixed {
 position: fixed;
 padding-top: 3px;
 padding-bottom: 3px;
 top: 0px;
 width: 100%;
 left: 10px;
 background-color: white;
 z-index: 200;
}

.tgc-fixed button svg {
 fill: <>;
}

.tgc-fixed button:hover svg {
 fill: #0044BB;
}


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/093adb0d-2571-4919-b21b-57e2b78658c2n%40googlegroups.com.


[tw5] Re: new-journal-here button how to add currentTiddler to name?

2021-01-07 Thread Sapphireslinger
I was originally trying to do something like this. Spent hours trying to 
figure out what to put in the yellow spot:

\define newtags() [[$(currentTiddler)$]] [[bible study session]]

<$list filter="[prefix[Class Log - ]] ">
<$button> Class Log - New Entry
  <$action-sendmessage $message="tm-new-tiddler" title=<> tags=<> />
   


Then I got the bright idea of cloning new-journal-here button and think the 
new-journal here icon is smaller and nicer-looking than a grey button. 

1. However could someone please tell me what I ought to have put in the 
yellow space?

2. Also, this code seems to take up a lot less space than the 
new-journal-here code, not to mention it gets macro'd into any pertinent 
tiddlers instead of pasting it over and over again into the pertinent 
tiddlers, bloating the wiki. Any way to get it to be the new-journal here 
icon instead of a grey button?

On Friday, January 8, 2021 at 2:02:50 PM UTC+8 Sapphireslinger wrote:

> I am trying to create a new-journal-here button embedded in my tiddler 
> "Class Log - Jane Doe". I want it to create a tiddler titled 
> "year.month.day hour Class Log- Jane Doe" which is tagged with [bible study 
> session] and [Class Log - Jane Doe]
>
> In other words:
> * Title: "date currentTiddler"
> * Tags: [bible study session] [currentTiddler]
>
> I thought all I had to do was clone $:/core/ui/Buttons/new-journal-here 
> button, give it the new name $:/core/ui/Buttons/new-class-log-entry-here, 
> add [bible study session] to the tags, and embed it in any "Class Log - 
> Jane Doe" like tiddlers like so: {{Class Log- Jane 
> Doe||$:/core/ui/Buttons/new-class-log-entry-here}}
>
> Problem:
> Clicking that button in the Class - Jane Doe tiddler results in a tiddler 
> with the correct tags, but the title only has a date stamp, not "date-stamp 
> currentTiddler".
>
> \whitespace trim
> \define journalButtonTags()
> [[$(currentTiddlerTag)$]] [[bible study session]]
> \end
> \define journalButton()
> <$button tooltip={{$:/language/Buttons/NewJournalHere/Hint}} 
> aria-label={{$:/language/Buttons/NewJournalHere/Caption}} 
> class=<>>
> <$wikify name="journalTitle" text="""<$macrocall $name="now" 
> format=<>/>""">
> <$action-sendmessage $message="tm-new-tiddler" title=<> 
> tags=<> journal-date=<>/>
> <$list filter="[match[yes]]">
> {{$:/core/images/new-journal-button}}
> 
> <$list filter="[match[yes]]">
> 
> <$text text={{$:/language/Buttons/NewJournalHere/Caption}}/>
> 
> 
> 
> 
> \end
> <$set name="journalTitleTemplate" value={{$:/config/NewJournal/Title}}>
> <$set name="journalTags" value={{$:/config/NewJournal/Tags!!tags}}>
> <$set name="currentTiddlerTag" value=<>>
> <>
> 
> 
> 
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/fab8efcb-7d27-49d8-b22f-158a74dff4bcn%40googlegroups.com.


[tw5] new-journal-here button how to add currentTiddler to name?

2021-01-07 Thread Sapphireslinger
I am trying to create a new-journal-here button embedded in my tiddler 
"Class Log - Jane Doe". I want it to create a tiddler titled 
"year.month.day hour Class Log- Jane Doe" which is tagged with [bible study 
session] and [Class Log - Jane Doe]

In other words:
* Title: "date currentTiddler"
* Tags: [bible study session] [currentTiddler]

I thought all I had to do was clone $:/core/ui/Buttons/new-journal-here 
button, give it the new name $:/core/ui/Buttons/new-class-log-entry-here, 
add [bible study session] to the tags, and embed it in any "Class Log - 
Jane Doe" like tiddlers like so: {{Class Log- Jane 
Doe||$:/core/ui/Buttons/new-class-log-entry-here}}

Problem:
Clicking that button in the Class - Jane Doe tiddler results in a tiddler 
with the correct tags, but the title only has a date stamp, not "date-stamp 
currentTiddler".

\whitespace trim
\define journalButtonTags()
[[$(currentTiddlerTag)$]] [[bible study session]]
\end
\define journalButton()
<$button tooltip={{$:/language/Buttons/NewJournalHere/Hint}} 
aria-label={{$:/language/Buttons/NewJournalHere/Caption}} 
class=<>>
<$wikify name="journalTitle" text="""<$macrocall $name="now" 
format=<>/>""">
<$action-sendmessage $message="tm-new-tiddler" title=<> 
tags=<> journal-date=<>/>
<$list filter="[match[yes]]">
{{$:/core/images/new-journal-button}}

<$list filter="[match[yes]]">

<$text text={{$:/language/Buttons/NewJournalHere/Caption}}/>




\end
<$set name="journalTitleTemplate" value={{$:/config/NewJournal/Title}}>
<$set name="journalTags" value={{$:/config/NewJournal/Tags!!tags}}>
<$set name="currentTiddlerTag" value=<>>
<>




-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/415bdc3e-9db2-437b-810e-4ee7376169fen%40googlegroups.com.


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-07 Thread BurningTreeC
Hi Sylvain,

I just try Ctrl+Shift+L to see Kaban layer : nice !
>
A very minor thing, with rotateZ css on + button, when rotate scroll bar 
> show briefly, so maybe don't use this effect.
>

Oh, I haven't come across this bug yet, I'll try to reproduce 

>
> Otherwise I wondered if the cards could take the colour of the header for 
> the outline... an idea that was not so easy to implement;
>

I think that could be done, I could make that configurable

or else to be able to put a background for each column, and rather have a 
> less visible border at the top and bottom.
>

Setting a background would be feasible. What do you mean with the top and 
bottom borders? 

>
> (and in fact I don't really understand the interest of the dropzone, I 
> must be missing something, because it adds the column but the content as 
> such is not visible anyway, and in my test I had taken an existing tiddler 
> so, and not seeing the title right away I deleted it, and so the tiddler 
> too ^-^').
>

Yeah, the dropzone won't be used that often. It's for quick-adding of 
tiddlers as columns. Also every column-header is a dropzone for adding 
tiddlers as items. That dropzone is more useful
 

>
> All the best
> Sylvain
>

all the best,
Simon

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c280eb5c-8457-40c4-a9e4-d9800a73ed50n%40googlegroups.com.


[tw5] Re: Query: POWERSHELL for TW: anyone doing anything?

2021-01-07 Thread TW Tones
Mark,

In the past I was a batch file guru. I must admit tiddlywiki with all its 
complexity is easier to use than batch files, but last time I tried I could 
use DOS commands like a pro, Although this could be the memory of skills 
lost. 

   - Complex if/then decision trees and sub functions all possible in batch 
   files, but sometimes fiddly. 
   - I used to write advanced "Basic" programs as input filters and more 
   back in the day, or even exe batches.

In short if you are using TiddlyDesktop a link to an exe, file or folder 
will be as if you typed from the command line.

 
Go  Run
[[file:///C:\Data\batches\runnetworkcheck.cmd]] Run
[[file:///C:\Data\batches]] Open folder in Windows Explorer

To review the contents of a file I used

<$button set="Networkcheck!!last-refresh" setTo=<> >
Refresh {{Networkcheck!!last-refresh}}


 


   - Of course you can do the same to execute PowerShell scripts.
   - I found a way to generate batch/command files and print them to the 
   generic text printer and saving the batch, all that's left is to execute.
   - You can also write smart batches that monitor for the existence of a 
   file and it it exists, execute or process it, so you need only save the 
   file to have it processed.

Regards
Tones




On Friday, 8 January 2021 at 15:26:17 UTC+11 Mark S. wrote:

> On Thursday, January 7, 2021 at 3:19:34 PM UTC-8 TW Tones wrote:
>
>>
>> PowerShell is but one standard of command line use. I tend to make use of 
>> the windows command line and batch commands from TiddlyDesktop since as an 
>> app TD has local access.
>>
>
> That sounds interesting. Is there some documentation on how to launch from 
> TD?
>
> I think Powershell has a potential to make some inroads towards being a 
> universal batch language. There's all these shell batch languages that look 
> very similar, but have different libraries and subtly different syntax. I 
> found this out the other day when trying to run a Posix script on my linux 
> system. Of course there are full-blown programming languages like python 
> and java that are universal, but more complicated than most people want for 
> simple file manipulation and command launching. Perhaps I've missed some 
> developments in the original Windows command shell, but the last time I 
> tried it was much harder to make complex if/then decision trees and 
> subfunctions. I wouldn't be surprised if MS replaces the windows command 
> shell with Powershell entirely some day.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7b0dc66f-5966-43ca-85eb-1794e73b589bn%40googlegroups.com.


[tw5] Re: Query: POWERSHELL for TW: anyone doing anything?

2021-01-07 Thread 'Mark S.' via TiddlyWiki


On Thursday, January 7, 2021 at 3:19:34 PM UTC-8 TW Tones wrote:

>
> PowerShell is but one standard of command line use. I tend to make use of 
> the windows command line and batch commands from TiddlyDesktop since as an 
> app TD has local access.
>

That sounds interesting. Is there some documentation on how to launch from 
TD?

I think Powershell has a potential to make some inroads towards being a 
universal batch language. There's all these shell batch languages that look 
very similar, but have different libraries and subtly different syntax. I 
found this out the other day when trying to run a Posix script on my linux 
system. Of course there are full-blown programming languages like python 
and java that are universal, but more complicated than most people want for 
simple file manipulation and command launching. Perhaps I've missed some 
developments in the original Windows command shell, but the last time I 
tried it was much harder to make complex if/then decision trees and 
subfunctions. I wouldn't be surprised if MS replaces the windows command 
shell with Powershell entirely some day.


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8f690adf-d8cf-4be4-a090-8b00f425fb83n%40googlegroups.com.


[tw5] Re: Markdown bullet spacing

2021-01-07 Thread bluespire
I tried to figure this out, but I can only seem to modify the stylesheet 
for all of TW. How would I do it for just the Markdown elements?

On Thursday, January 7, 2021 at 1:09:07 AM UTC-6 Brian Radspinner wrote:

> You can try adjusting the top & bottom margins of the P element inside 
> each of the Markdown-produced OL > LI items. Make a new tiddler and tag it 
> with *$:/tags/Stylesheet*. In the tiddler body add some CSS for adjusting 
> those paragraph margins, like this...
>
> *ol > li > p { margin: 0.25em auto; }*
>
> This will have equal top & bottom margins, adjust the first margin value 
> to adjust the spacing. 
>
> If you want to adjust them each independently, try this instead...
>
> *ol > li > p { margin: 0.25em auto 0.25em; }*
>
> Adjust the first value for the top margin, third value for the bottom 
> margin.
> On Wednesday, January 6, 2021 at 8:10:01 PM UTC-7 bluespire wrote:
>
>> The spacing between bullets is different between the normal TW5 renderer 
>> and the Markdown renderer (Mardown's seems to be double-spaced (2 
>> newlines). How can I change that spacing?
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7ff2ae04-bf0a-43ec-8bb7-abe9427876a3n%40googlegroups.com.


[tw5] Re: Plain text without formatting after: <$list filter=....

2021-01-07 Thread TW Tones
Vin..

Just so you know it is convention to use lowercase for variable names, 
perhaps this is another case where ALL CAPS is like shouting. I suggest 
using it sparingly.
I tend to use variable names that obey the ruled for fieldnames see 
 because then they are always 
interchangeable. You can store a variables value in a matching field, or 
set a variable to a fields value.

 The filter you use is realy only setting the current tiddler; so try this

<$tiddler tiddler=<> >
<$transclude/> 


or
<$transclude tiddler=<>/>

On Friday, 8 January 2021 at 08:51:22 UTC+11 vinvi...@gmail.com wrote:

> That's what I mean. :) 
> Thank you, it works fine..
>
> Op donderdag 7 januari 2021 om 19:28:43 UTC+1 schreef Soren Bjornstad:
>
>> I tried copying and pasting this, and it does not show the result in *plain 
>> text *(bold, for instance, displays fine). I think what you're observing 
>> is that the transclusion is displaying in *inline mode*, which means 
>> that things like section headers and paragraph breaks won't show up.
>>
>> To get it into *block mode* instead, put a blank line before and after 
>> {{!!text}}. Another option is to use the $transclude widget instead of 
>> {{!!text}}, which lets you explicitly specify whether you want it in block 
>> or inline mode:
>>
>> <$list filter=<>>
>>   <$transclude mode="block"/>
>> 
>>
>> (See also https://tiddlywiki.com/#HTML%20in%20WikiText.)
>>
>> On Thursday, January 7, 2021 at 3:51:04 AM UTC-6 vinvi...@gmail.com 
>> wrote:
>>
>>> Hello,
>>>
>>> \define LIST-DESCRIPTION() [[$(currentTiddler)$-description]]
>>>
>>> <$list filter=<>>
>>> {{!!text}}
>>> 
>>>
>>>
>>> The above code works fine but shows the result in plain text. How can I 
>>> prevent this?
>>>
>>> Thank you,
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/96d5064a-f828-4c7b-baff-3bfb3fff69fen%40googlegroups.com.


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-07 Thread TW Tones
BTC,

>
>>1. Ability to identify the board and column in which the tiddler was 
>>added.
>>
>> How are you imagining this? 
>
 
Perhaps when using the + button in a board, or Column add that board or 
column name to a field in the tiddler. In most cases we will possibly 
create a board, add a columns (Add board field) and add an item (record 
board and Column). Then the items in the kanban can be accessed elsewhere 
using board[boardname] and/or column[columnname]. This will not address 
drag and drop.

Later extending the board to board*s* and colum*n*s using listops for 
multiple values would support drag and drop, perhaps drag can remove the 
current when its moved away? unless a modifier key is used.

The reason for doing this is would be to retain any information available 
about tiddler movements in boards and columns, and would provide a generic 
way of managing lists of tiddlers with your lovely Kanban. A little more 
complexity in the solution in someway makes it simpler for users, because 
such behaviour would be what users may assume or desire. A single column is 
a list viewer, multiple columns on a board is a method for cross/inter list 
manipulation.

Carful handling of a multi-board and multi-columns field on each tiddlers 
would allow move and/or add a given tiddler to other and multiple lists.

Tones


>>1. Perhaps you could set a favicon on 
>>https://burningtreec.github.io/tiddlywiki-muuri/ so its easy to 
>>identify in browser tabs
>>
>> Yes I could do so but I don't have a suitable one atm
>

Even without a suitable one use any, even "M" attached;

Tones

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9bb86f73-ec47-413a-99b8-94c0d46ca44en%40googlegroups.com.


[tw5] Re: 'start' tiddler without header informations / toggle 'home' button

2021-01-07 Thread TW Tones
Stefan,

Perhaps using the emptyStory message - ie when all tiddlers are closed.

https://tiddlywiki.com/#HistoryMechanism

Tones

On Friday, 8 January 2021 at 04:32:38 UTC+11 schlechter...@gmail.com wrote:

> Hello,
>
> clicking the 'home' button I would like to have
>
>- the 'start' tiddler ( Default tiddler 
> with 
>table of content) *without header informations* (tiddler name, 
>creator, creation date, view tools (*except 'close'*) and tags
>- toggle function for 'home' button 
>
> Thanks for feedback
> Stefan
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e546ec54-233f-499f-8226-10210b12797dn%40googlegroups.com.


[tw5] Re: How do I use fontawesome icons?

2021-01-07 Thread TW Tones
I cant find it now but there is a package of font awesome Icons as SVG's 
for tiddlywiki.

Tones
On Thursday, 7 January 2021 at 23:29:45 UTC+11 Jon wrote:

> Thanks TT!
>
> On Thursday, 7 January 2021 at 12:28:23 UTC TiddlyTweeter wrote:
>
>> Right! The mechanism to actually display the glyphs has to use CSS 
>> classes. The font characters themselves are not directly accessible using 
>> entity numbers as the font is activated through classes. It is not globally 
>> loaded, I think.
>>
>> My understanding.
>> TT
>>
>> On Thursday, 7 January 2021 at 12:48:14 UTC+1 Jon wrote:
>>
>>> Ah, so after a bit of lateral thinking, found the instructions at 
>>> https://fontawesome.com/
>>>
>>> So, just in case I'm not the only one asking the question, this would go 
>>> in the tiddler (Icon id in quotes):
>>>
>>> 
>>>
>>> Cheers
>>> Jon
>>>
>>> On Thursday, 7 January 2021 at 08:54:10 UTC Jon wrote:
>>>
 Hi, 

 I've installed the  fontawesome plugin 
  but 
 there aren't any instructions as to how to use it and to get icons in a 
 tiddler (unless I've missed them)

 I notice the cheat sheet doesn't work in my wiki, so that might be a 
 clue that something's not right.

 Any pointers?

 Thanks
 Jon

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/219736e5-f2a3-4426-93c8-cf61d75c5542n%40googlegroups.com.


[tw5] Re: Query: POWERSHELL for TW: anyone doing anything?

2021-01-07 Thread TW Tones
TT,

PowerShell is but one standard of command line use. I tend to make use of 
the windows command line and batch commands from TiddlyDesktop since as an 
app TD has local access. 

   - I Have experimented to see how far I could go with desktop automation 
   and it is a long way, but now I tend to "live inside my browser and 
   tiddlywiki" I have neglected this area.
   - It seems to me TiddlyWiki with local access is ideal platform for 
   training tips and hints even batch file generators for desktop and process 
   automation etc..
   - Generating custom HTML pages that can be placed in folders for local 
   utility functions, or LAN access is also a possibility.
   - So yes, PowerShell and its compatible platforms such as Office 365 has 
   much potential.

Tones
On Thursday, 7 January 2021 at 20:53:35 UTC+11 TiddlyTweeter wrote:

> Having worked with Mark S. on POLLY 
> (A 
> very useful Powershell tool to save & backup TW and more). 
>
> I am very aware of the utility of Powershell to get things done. And 
> "Powershell Core" is now multi-platform (all except Android natively).
>
> The QUESTION here is whether any of you are using Powershell to help 
> support TW in interesting ways?
>
> Just an initial query,
> TT 
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c6b948f4-9b45-4ead-a608-91e740627a89n%40googlegroups.com.


[tw5] Re: Comment: The centrality of MORPHING

2021-01-07 Thread TW Tones
TT,

Perhaps you could extend your definition of morphing, in this context?

I would be more to think of shuffling and arranging things, including 
relationships. But the UI also helps me present or represent information 
and data many ways.

Yes, more flexible than we can even imagine.

Tones
On Thursday, 7 January 2021 at 20:31:57 UTC+11 TiddlyTweeter wrote:

> I been thinking about what TW in practice is for me. Basically it seems to 
> be about human-enabled-Morphing. Its flex is pretty astounding.
>
> Just a comment.
> TT
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6412d95b-f5fc-4644-b936-e9f02cc3fc30n%40googlegroups.com.


[tw5] Re: Plain text without formatting after: <$list filter=....

2021-01-07 Thread vinvi...@gmail.com
That's what I mean. :) 
Thank you, it works fine..

Op donderdag 7 januari 2021 om 19:28:43 UTC+1 schreef Soren Bjornstad:

> I tried copying and pasting this, and it does not show the result in *plain 
> text *(bold, for instance, displays fine). I think what you're observing 
> is that the transclusion is displaying in *inline mode*, which means that 
> things like section headers and paragraph breaks won't show up.
>
> To get it into *block mode* instead, put a blank line before and after 
> {{!!text}}. Another option is to use the $transclude widget instead of 
> {{!!text}}, which lets you explicitly specify whether you want it in block 
> or inline mode:
>
> <$list filter=<>>
>   <$transclude mode="block"/>
> 
>
> (See also https://tiddlywiki.com/#HTML%20in%20WikiText.)
>
> On Thursday, January 7, 2021 at 3:51:04 AM UTC-6 vinvi...@gmail.com wrote:
>
>> Hello,
>>
>> \define LIST-DESCRIPTION() [[$(currentTiddler)$-description]]
>>
>> <$list filter=<>>
>> {{!!text}}
>> 
>>
>>
>> The above code works fine but shows the result in plain text. How can I 
>> prevent this?
>>
>> Thank you,
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e202ca07-f093-43c3-a7a2-165d318a67d4n%40googlegroups.com.


[tw5] Re: I love TiddlyWiki because...

2021-01-07 Thread springer

I love #TiddlyWiki because...  conceptual origami
On Monday, March 5, 2018 at 6:41:21 AM UTC-5 TiddlyTweeter wrote:

> This thread is a continuation from Positive Assertions In One Sentence ... 
> 
>  
> Here is a start ...
>
> I love #TiddlyWiki  because 
> ... of, in two words:  Radical #transclusion 
> .
>
> @TiddlyTweeter
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2c7afc82-a685-444b-8ddd-33b9b48b7b5bn%40googlegroups.com.


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-07 Thread Sylvain Naudin
Hi Simon,

I just try Ctrl+Shift+L to see Kaban layer : nice !
A very minor thing, with rotateZ css on + button, when rotate scroll bar 
show briefly, so maybe don't use this effect.

Otherwise I wondered if the cards could take the colour of the header for 
the outline... an idea that was not so easy to implement; or else to be 
able to put a background for each column, and rather have a less visible 
border at the top and bottom.

(and in fact I don't really understand the interest of the dropzone, I must 
be missing something, because it adds the column but the content as such is 
not visible anyway, and in my test I had taken an existing tiddler so, and 
not seeing the title right away I deleted it, and so the tiddler too ^-^').

All the best
Sylvain

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cbbc2aa6-42e5-4f67-9ad1-d3d428301b5an%40googlegroups.com.


[tw5] Re: Habit/Mood Tracking using TW?

2021-01-07 Thread bluespire
The Trilium project is similar to TW5, and also allows scripts within its 
note blocks. They have a weight tracker as part of their example. IIRC, one 
note has the code to the read the metadata of other notes (these are 
analogous to the fields on TW5), and then graph the weight over time.

On Thursday, January 7, 2021 at 3:23:57 AM UTC-6 TiddlyTweeter wrote:

> TonyM & Manish
>
> TW Tones wrote:
>
>> ... with Unicode Characters I saw a lot of emoticons, thinking 
>>
>
> I certainly agree we could innovate on "Tracking" toolology.
>
> For instance a "toggle" button that selected a specific emoticon to 
> express a state of being, as Tones implies.
>
> Also, Mat, some time ago provided a proof of concept of using the SVG 
> editor to annotate another SVG. For instance have an anatomical SVG of a 
> typical  back and mark where the pain is. 
>
> I think the real point is to simply define what the needs are on 
> "Tracking" and kick it about a bit more.
>
> IMO TW is very well suited to develop the whole "Track my state" thing 
> even better than it currently does.
>
> Best wishes
> TT
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/69da6d90-738b-4140-8315-335da4cfebfbn%40googlegroups.com.


Re: [tw5] Re: Next features in Projectify?

2021-01-07 Thread bluespire
I haven't used it too much yet, but if you can capture most of the features 
from the MyLifeOrganized software and ToodleDo, then, IMO, you will have 
captured pretty much everything.

On Thursday, January 7, 2021 at 10:29:12 AM UTC-6 Mohammad wrote:

> Hi Nico
>
>
>> > The datepicker is great by the way. There would be utility in making 
>> that 
>> > available as a separate plugin.
>>
>> Agreed. It's already nicely decoupled from Projectify, though I haven't
>> made it into its own plugin yet, simply because of plugin dependency
>> management in TW.
>>
>>  
>   Very nice and useful datepicker indeed! 
>   Great idea to have it as an independent plugin!  
>
> If plugin dependency management in TW could automatically fetch the 
> required plugins it would be really helpful.
>
> --Mohammad
>
>  
>
>> Cheers,
>> Nico
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "TiddlyWiki" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to tiddlywiki+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/87tursn804.fsf%40petton.fr.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cb9c2612-0269-43b7-b280-7fc64f6a3eben%40googlegroups.com.


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-07 Thread BurningTreeC
Hi Tony,

BTC,
>
> I am currently building the following;
>
>- a Field show-kanban-here which if yes a view template transcludes 
>{{||Kanban}}
>
> you could also transclude $:/plugins/BTC/Muuri-Kanban/ui/KanbanTemplate 

>
>- A button to add or toggle show-kanban-here
>   - This allows any tiddler to become a Kanban, then the columns and 
>   tiddlers can be dropped.
>   - This allows the Kanban to be hidden if needed.
>
> Nice!
 

> I love how this makes use of the list field, However I can see in future 
> wanting to use a different field, since list is used to order tags as well.
>

I don't see a workaround for not using the list field atm


> Post Script,
>
>- I am also building generic list handling because this is a clear 
>strength of tiddlywiki.
>- This would allow any generated list for example to be pasted into a 
>Kanban Board or column or other field.
>
> Regards
> Tony
>
> best wishes,
Simon

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c8186b3a-2abe-4ce7-8eeb-30a8224fc760n%40googlegroups.com.


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-07 Thread BurningTreeC
Hi @Tones,

BTC,
>
> I am playing with the Muuri Kanban and finding it highly hackable, thank 
> you. 
>
> Do you want me to share my hack as possible features in a future version, 
> or just for interest?  
>

Yes I'd be very interested in your hack

>
>1. I observed the new items create a matching tiddler and adds it to 
>the list field. Now we have a link to the actual tiddler, you could not 
>create the tiddler, only add it to the list field until it is edited. This 
>would allow large lists of items in a Kanban without the need for a 
>matching tiddler.
>
> Yes that would be possible 

>
>1. With this in mind the provision of actions on key Kanban actions 
>would allow further hackability. Is that what drop-actions is?
>
> The drop-actions are actions that are performed when an item is dropped 
from another grid to the current one. The item-title is contained in the 
actionTiddler variable, the modifier keys held while dragging in the 
modifier variable 

>
>1. Ability to identify the board and column in which the tiddler was 
>added.
>
> How are you imagining this? 

>
>1. Perhaps you could set a favicon on 
>https://burningtreec.github.io/tiddlywiki-muuri/ so its easy to 
>identify in browser tabs
>
> Yes I could do so but I don't have a suitable one atm

Examples;
>
>- I added  <$edit-text field="list" tag="input"/>  
>to $:/plugins/BTC/Muuri-Kanban/ui/KanbanColumnEditTemplate so I can edit 
>the list field directly see 1 above
>   - Perhaps we could have a tag driven addition of "field edit" 
>   tiddlers here, or a template for transclusion.
>
> Regards
> Tones
>
>
Best wishes,
BTC

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/46ed45fd-746b-40f8-94da-26ab7a99a15en%40googlegroups.com.


[tw5] Re: Plain text without formatting after: <$list filter=....

2021-01-07 Thread Soren Bjornstad
I tried copying and pasting this, and it does not show the result in *plain 
text *(bold, for instance, displays fine). I think what you're observing is 
that the transclusion is displaying in *inline mode*, which means that 
things like section headers and paragraph breaks won't show up.

To get it into *block mode* instead, put a blank line before and after 
{{!!text}}. Another option is to use the $transclude widget instead of 
{{!!text}}, which lets you explicitly specify whether you want it in block 
or inline mode:

<$list filter=<>>
  <$transclude mode="block"/>


(See also https://tiddlywiki.com/#HTML%20in%20WikiText.)

On Thursday, January 7, 2021 at 3:51:04 AM UTC-6 vinvi...@gmail.com wrote:

> Hello,
>
> \define LIST-DESCRIPTION() [[$(currentTiddler)$-description]]
>
> <$list filter=<>>
> {{!!text}}
> 
>
>
> The above code works fine but shows the result in plain text. How can I 
> prevent this?
>
> Thank you,
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6e0da7bc-3898-4241-8c72-00961e7d85acn%40googlegroups.com.


[tw5] Re: I love TiddlyWiki because...

2021-01-07 Thread jtech108
I love TiddlyWiki because: It's the Lego set I never had! :)

Regards all,
Julio 

On Thursday, January 7, 2021 at 12:39:46 PM UTC-5 TiddlyTweeter wrote:

> Whether it is my Memex machine or a full Xememex I can't forget her.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cdb132d2-7199-4df2-bbe6-3292700ab026n%40googlegroups.com.


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-07 Thread Ste
@BTC
Your a muuri machine! Buttery smooth once more! 

On Thursday, 7 January 2021 at 17:05:43 UTC BurningTreeC wrote:

> Hi @Ste, I've released the *Muuri plugin v0.2.7 *and the *Muuri-Kanban 
> plugin v0.1.6*
>
> both are bugfix releases and also the bug you reported should be fixed
>
> best wishes,
> BTC
> BurningTreeC schrieb am Donnerstag, 7. Januar 2021 um 09:02:38 UTC+1:
>
>>
>> @Ste, I can confirm this is a bug. I'll see what I can do to fix it
>> Ste schrieb am Donnerstag, 7. Januar 2021 um 00:06:35 UTC+1:
>>
>>> Just had a quick look on my phone and moving anything freezes it in 
>>> place and it kind of.. Judders before a RSOE
>>>
>>> On Wednesday, 6 January 2021 at 09:27:05 UTC BurningTreeC wrote:
>>>
 I've *updated* both the *Muuri *and the *Muuri-Kanban* plugins to 
 version v0.2.6 and v0.1.4 respectively

 For the Muuri plugin I've added the option to auto-save after dragging 
 and I've fixed the bug @Sylvain mentioned above (grid dimensions not 
 refreshing when window dimensions change)

 For the Muuri-Kanban plugin I've added the auto-save configuration 
 option in the plugin-config (works only with the Muuri plugin v0.2.6 and 
 above) and updated some styles


 best wishes,
 BTC

 TW Tones schrieb am Mittwoch, 6. Januar 2021 um 00:18:30 UTC+1:

> Thank you BTC,
>
> Very nice. I need to use this for some big decisions shortly, Lets see 
> if I can share the methods I use.
>
> The option to add more buttons, need only be a hack, its the 
> possibility for a designer to add additional handling to cards and 
> columns 
> that's needed,  they can take responsibility for spacing etc...
>
>- Such a customisation may be as little as a tick button, or a 
>help icon etc...
>- Personally I use muuri and Kanban on a large screen, so I have 
>plenty of real-estate.
>
> One thing I believe Muuri can achieve that other layouts can't, is to 
> support "large, single or multiple 'pain of glass' dashboard's", given 
> the 
> versatility of content in tiddlers, including iFrames to other sites and 
> resources that a Muuri could be used in NOC's (Network Operating Centres) 
> or Operation centre for space or traffic control.
>
> Regards
> Tones
>
> On Tuesday, 5 January 2021 at 20:00:56 UTC+11 BurningTreeC wrote:
>
>>
>> Thanks @Tones,
>>
>> The top drop area will be at the bottom in the next update
>> I'll add a link button to open an item in the StoryRiver
>> I'll also make the  show conditionally if the item contains text 
>> and style it a bit more simple
>>
>> About the option to add more buttons: I'd like to keep it as simple 
>> as possuble since space is limited on those items and they shouldn't 
>> cover 
>> too much space.
>> Showing the subtitle though is an option I'll think about
>>
>> Best wishes,
>> Simon
>> TW Tones schrieb am Dienstag, 5. Januar 2021 um 03:50:44 UTC+1:
>>
>>> BTC,
>>>
>>> Great stuff. I particularly like your Kanban and like the way you 
>>> are leveraging the history for "compound tiddlers". 
>>>
>>> I really like the way you handle various drag and drop handling
>>>
>>>- Although the top + area to start new columns is great, after 
>>>building my board, I would like to be able to hide it, or toggle it, 
>>> or 
>>>perhaps move it to the bottom.
>>>
>>> Other possible improvements from my perspective
>>>
>>>- Option to hide the  when no text exists for a card (good 
>>>for simple lists)
>>>- Perhaps the ability to toggle the display of the text when it 
>>>exists
>>>- love the inline edit, but a link to the actual tiddler would 
>>>be helpful.
>>>
>>> More advanced features
>>>
>>>- It would be nice if we could introduce our own buttons and 
>>>subtitle to each column and cards, 
>>>   - Much like the viewToolBar and subtitle works on tiddlers. 
>>>   - This would allow a designer to add more advanced features 
>>>   to the board and cards
>>>  - Archive, tagging, long description under the heading and 
>>>  more. Even the existing subtitle, for a tiddler.
>>>  - And like the  viewToolBar and subtitle conditional 
>>>  lists/reveals would allow response to the current tiddler.
>>>   - A similar bottom bar on each column or card would also 
>>>   permit useful tools to be introduced to cards
>>>- Could Muuri be activated and deactivated with the new Layout 
>>>switch?
>>>
>>> Personal use under investigation.
>>>
>>> I am keen to look at building a sophisticated evaluation tool making 
>>> use of your Kanban as so far it seems potentially the most 

[tw5] Re: TiddlySmile ...

2021-01-07 Thread TiddlyTweeter
April Mackenzie, currently living in Virtual Oxford, wrote to me wondering 
if TiddlyWiki was changing her name to something other, like "TWemex".

I assured her that, once Covid settles down, all will get clearer.

TT

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a8dc3a44-6e2f-49fd-888d-6c052d0fe6c1n%40googlegroups.com.


[tw5] Re: I love TiddlyWiki because...

2021-01-07 Thread TiddlyTweeter
Whether it is my Memex machine or a full Xememex I can't forget her.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e1d79f56-05ef-48d2-8789-dd203ce51d93n%40googlegroups.com.


[tw5] 'start' tiddler without header informations / toggle 'home' button

2021-01-07 Thread Stefan Schlechter
Hello,

clicking the 'home' button I would like to have

   - the 'start' tiddler ( Default tiddler 
    with 
   table of content) *without header informations* (tiddler name, creator, 
   creation date, view tools (*except 'close'*) and tags
   - toggle function for 'home' button 

Thanks for feedback
Stefan

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5aa2b306-8024-44b3-8f2b-3aee0ce231aen%40googlegroups.com.


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-07 Thread BurningTreeC
Hi @Ste, I've released the *Muuri plugin v0.2.7 *and the *Muuri-Kanban 
plugin v0.1.6*

both are bugfix releases and also the bug you reported should be fixed

best wishes,
BTC
BurningTreeC schrieb am Donnerstag, 7. Januar 2021 um 09:02:38 UTC+1:

>
> @Ste, I can confirm this is a bug. I'll see what I can do to fix it
> Ste schrieb am Donnerstag, 7. Januar 2021 um 00:06:35 UTC+1:
>
>> Just had a quick look on my phone and moving anything freezes it in place 
>> and it kind of.. Judders before a RSOE
>>
>> On Wednesday, 6 January 2021 at 09:27:05 UTC BurningTreeC wrote:
>>
>>> I've *updated* both the *Muuri *and the *Muuri-Kanban* plugins to 
>>> version v0.2.6 and v0.1.4 respectively
>>>
>>> For the Muuri plugin I've added the option to auto-save after dragging 
>>> and I've fixed the bug @Sylvain mentioned above (grid dimensions not 
>>> refreshing when window dimensions change)
>>>
>>> For the Muuri-Kanban plugin I've added the auto-save configuration 
>>> option in the plugin-config (works only with the Muuri plugin v0.2.6 and 
>>> above) and updated some styles
>>>
>>>
>>> best wishes,
>>> BTC
>>>
>>> TW Tones schrieb am Mittwoch, 6. Januar 2021 um 00:18:30 UTC+1:
>>>
 Thank you BTC,

 Very nice. I need to use this for some big decisions shortly, Lets see 
 if I can share the methods I use.

 The option to add more buttons, need only be a hack, its the 
 possibility for a designer to add additional handling to cards and columns 
 that's needed,  they can take responsibility for spacing etc...

- Such a customisation may be as little as a tick button, or a help 
icon etc...
- Personally I use muuri and Kanban on a large screen, so I have 
plenty of real-estate.

 One thing I believe Muuri can achieve that other layouts can't, is to 
 support "large, single or multiple 'pain of glass' dashboard's", given the 
 versatility of content in tiddlers, including iFrames to other sites and 
 resources that a Muuri could be used in NOC's (Network Operating Centres) 
 or Operation centre for space or traffic control.

 Regards
 Tones

 On Tuesday, 5 January 2021 at 20:00:56 UTC+11 BurningTreeC wrote:

>
> Thanks @Tones,
>
> The top drop area will be at the bottom in the next update
> I'll add a link button to open an item in the StoryRiver
> I'll also make the  show conditionally if the item contains text 
> and style it a bit more simple
>
> About the option to add more buttons: I'd like to keep it as simple as 
> possuble since space is limited on those items and they shouldn't cover 
> too 
> much space.
> Showing the subtitle though is an option I'll think about
>
> Best wishes,
> Simon
> TW Tones schrieb am Dienstag, 5. Januar 2021 um 03:50:44 UTC+1:
>
>> BTC,
>>
>> Great stuff. I particularly like your Kanban and like the way you are 
>> leveraging the history for "compound tiddlers". 
>>
>> I really like the way you handle various drag and drop handling
>>
>>- Although the top + area to start new columns is great, after 
>>building my board, I would like to be able to hide it, or toggle it, 
>> or 
>>perhaps move it to the bottom.
>>
>> Other possible improvements from my perspective
>>
>>- Option to hide the  when no text exists for a card (good 
>>for simple lists)
>>- Perhaps the ability to toggle the display of the text when it 
>>exists
>>- love the inline edit, but a link to the actual tiddler would be 
>>helpful.
>>
>> More advanced features
>>
>>- It would be nice if we could introduce our own buttons and 
>>subtitle to each column and cards, 
>>   - Much like the viewToolBar and subtitle works on tiddlers. 
>>   - This would allow a designer to add more advanced features to 
>>   the board and cards
>>  - Archive, tagging, long description under the heading and 
>>  more. Even the existing subtitle, for a tiddler.
>>  - And like the  viewToolBar and subtitle conditional 
>>  lists/reveals would allow response to the current tiddler.
>>   - A similar bottom bar on each column or card would also 
>>   permit useful tools to be introduced to cards
>>- Could Muuri be activated and deactivated with the new Layout 
>>switch?
>>
>> Personal use under investigation.
>>
>> I am keen to look at building a sophisticated evaluation tool making 
>> use of your Kanban as so far it seems potentially the most extensible so 
>> far.
>>
>>- I would want to extend it as an addon to you Kanban rather than 
>>forking it, thus we can make use of it with Muuri
>>- This would mean I need to find ways to link a tiddler in one 
>>column 

Re: [tw5] How to change ViewTemplate/body for tiddlers with specific tag?

2021-01-07 Thread Joshua Poehls
This fixed it. 臘‍♂️

Thank you all for the help!

—
Joshua Poehls

> On Jan 7, 2021, at 12:04 AM, Eric Shulman  wrote:
> 
> There is a syntax error in the filter:
><$list filter="[all[current[tag[test]]">
> should be:
><$list filter="[all[current]tag[test]]">
> 
> (i.e., the third open bracket should be a CLOSE bracket)
> 
> -e
> -- 
> 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/Jg-nmLk-yxs/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> tiddlywiki+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/fb191d85-cace-4a43-a453-1dbfd14efff7n%40googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/F36B59B6-29FF-484A-9C45-435213C3D60F%40poehls.me.


[tw5] Re: Prevent a button from overwriting tiddlers.

2021-01-07 Thread PMario

Hi,
Have a closer look at: https://tiddlywiki.com/#ActionCreateTiddlerWidget 
and the examples!
-m

On Thursday, January 7, 2021 at 12:08:59 PM UTC+1 vinvi...@gmail.com wrote:

> Hello,
>
> This button will overwrite an existing tiddler. How do I make sure that if 
> the tiddler already exists it is numbered? If "Tiddler1" already exists, it 
> becomes "Tiddler2".
>
>
> \define BUTTON-NAME() Enter >
> \define BUTTON-COLOR+SIZE() btn btn-link btn-sm
> \define BUTTON-TEXT-COLOR() color:
> \define TIDDLER-TITLE() $(currentTiddler)$ SPECIFIC
> \define TIDDLER-TEMPLATE() {{||$(currentTiddler)$-SPECIFIC-TEMPLATE}}
>
>
> <$button type="button" class=<>>
> <$set name=mytags filter="[subfilter{!!tiddler-tag-button}]">
>
> <$action-sendmessage $message="tm-new-tiddler"
> title=<>
> text=<>
> load-description-button="{{||Description-button}}"
> tags=<>/>
> 
> >><>
> 
> <>
>
>
> Thank you,
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1780be55-c363-4d6c-91a2-f51109fd3131n%40googlegroups.com.


Re: [tw5] Re: Next features in Projectify?

2021-01-07 Thread Mohammad Rahmani
Hi Nico


> > The datepicker is great by the way. There would be utility in making
> that
> > available as a separate plugin.
>
> Agreed. It's already nicely decoupled from Projectify, though I haven't
> made it into its own plugin yet, simply because of plugin dependency
> management in TW.
>
>
  Very nice and useful datepicker indeed!
  Great idea to have it as an independent plugin!

If plugin dependency management in TW could automatically fetch the
required plugins it would be really helpful.

--Mohammad



> Cheers,
> Nico
>
> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tiddlywiki+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/87tursn804.fsf%40petton.fr.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAAV1gMBQ_wyEPTkgam-T2tTtJ%3DSKZPu80faoAKJ-aruJxu8Feg%40mail.gmail.com.


Re: [tw5] Re: How to execute JS on startup? I have a "copy on select" userscript

2021-01-07 Thread maki aea
thanks sylvain! it's quite hard to find things in the group, if we didn't 
come across it while it's popular or if we don't know even what kind of 
thing to look for in say david's toolmap. it seems like a very common 
knowledge issue that we often don't know how to find things we don't know 
about— i find it an interesting thing to think about and maybe to solve a 
little!. happy new year!

On Saturday, January 2, 2021 at 12:21:54 PM UTC sil...@gmail.com wrote:

> Hello Maki,
>
> Thank you for putting this thread back in recent items, it allows me to 
> discover the solution. Yours seems to work correctly on desktop (Firefox 
> under Fedora Gnu/Linux).
>
> Regards,
> Sylvain
> Le samedi 2 janvier 2021 à 12:58:32 UTC+1, ma...@makiaea.org a écrit :
>
>> love this, thanks lin onetwo! i'm on mobile so i modded a copy slightly 
>> to use pointer instead of mouse, sorry am not able to test extensively or 
>> on desktop to see if it still works there just now: 
>> http://makiaea.org/00045/20201205makiaea-anwiki#copy%20on%20select
>>
>> warmest wishes, maki
>>
>> On Sunday, April 12, 2020 at 8:51:45 AM UTC+1 TW Tones wrote:
>>
>>> Thanks for Sharing.
>>>
>>> I am great with TiddlyWiki but not the Javscript side of things, I 
>>> appreciate such contributions.
>>>
>>> Regards
>>> Tony
>>>
>>>
>>> On Sunday, April 12, 2020 at 5:35:30 PM UTC+10, Lin Onetwo wrote:

 It just implements function like 
 https://addons.mozilla.org/en-US/firefox/addon/copy-on-select/

 I'm using desktop app with nodejs tiddlywiki, so I feel unconfertable 
 without this firefox add-on. So I make it work in tiddlywiki.

 在 2020年4月12日星期日 UTC+8下午3:31:20,TonyM写道:
>
> So what mysterious function does this achieve?
>
> tony
>


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/125a93c5-e8c6-4e64-af79-3b9ffe6c8631n%40googlegroups.com.


[tw5] Re: Tidgraph strange behaviour

2021-01-07 Thread maki aea
not sure, i tried and got the same result as you but then i saw that 
florian has it working 
https://fkohrt.gitlab.io/digitale-selbstbestimmung/#Start
On Sunday, December 6, 2020 at 12:28:05 AM UTC danraymond wrote:

> I have started using Tidgraph 
> https://ihm4u.github.io/tw5plugs/#Tidgraph%20-%20Easy%20tiddler%20graphs%20for%20TW5).
>  
> It seems to only work for me if the root tiddler is one word, others levels 
> work okay if the tidder title is two words.
>
> if I do this : <$tidgraph start=Virtues/> it all works.
> if I do this: <$tidgraph start="Virtues" /> no graph appears.
> if I rename the root tiddler to "Virtues Sand", say and update all tags 
> and the call <$tidgraph start="Virtues Sand"/> no graph appears.
>
> Any thoughts?
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/50490ef7-7ae3-4316-9f80-88d394b82aadn%40googlegroups.com.


Re: [tw5] Re: Next features in Projectify?

2021-01-07 Thread Nicolas Petton
Saq Imtiaz  writes:

> Hi Nico,

Hi Saq,

> Since you mentioned Todoist, the feature I miss most from there is the 
> parsing when adding tasks to set the due date, labels etc. 
>
> Being able to enter things like the following leads to a very fast workflow 
> for adding tasks:
> Review project @xyz ev 2 weeks start fri at 6pm
>
> The natural language date parsing is complex, but perhaps some limited 
> support, as well as syntax for specifying a project?

That would be very nice indeed. It's a feature that I've postponed for
now, not just because of the work that a parser would be, but also
because of the UI that is going to be challenging to build.

> It may also be nice to offer separate views (tabs?) for Today, Next 7 days 
> etc under Schedule. The current layout works fine with few tasks but I 
> suspect it would be too cluttered once a lot of tasks are added. In fact 
> something like the "Upcoming" view in Todoist would be great, that shows 
> tasks for each day for a specified time period and being able to drag and 
> drop between them.

That's exactly the feedback I got for Todoist users. I think it's time
to rework the dashboard.

> The datepicker is great by the way. There would be utility in making that 
> available as a separate plugin.

Agreed. It's already nicely decoupled from Projectify, though I haven't
made it into its own plugin yet, simply because of plugin dependency
management in TW.

Cheers,
Nico

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/87tursn804.fsf%40petton.fr.


signature.asc
Description: PGP signature


Re: [tw5] Re: Next features in Projectify?

2021-01-07 Thread Nicolas Petton
"dieg...@gmail.com"  writes:

Hi Diego,

> Nico - firstly thank you for your excellent recent contributions! This 
> project is awesome!

Thanks :)

> I agree strongly with Sylvain that a visual way (Gantt chart, etc.) would 
> be great! (though of course, is probably beyond the scope of this
> plugin).

It's not necessarily out of the scope of the plugin, though it would be
nice to reuse existing plugins for that.

Cheers,
Nico

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/87wnwon84u.fsf%40petton.fr.


signature.asc
Description: PGP signature


[tw5] Re: Refresh all tiddlers

2021-01-07 Thread Stobot
Ok, thanks PMario. I was trying to see if I could avoid the browser 
refresh, but it's only a minor annoyance. I run my wiki though the web, so 
a refresh means I have to be online (and because I use SharePoint behind 
corporate firewall, it's a little slower). I think if I want to avoid that, 
I'm best to run a loop against all open tiddlers in StoryList and flip 
edit-mode/read-mode or something. Just thought there might be some kind of 
"message" or something I could trigger instead. 

On Wednesday, January 6, 2021 at 10:44:03 PM UTC-5 PMario wrote:

> Hi,
> The StoryList can be saved. Open the ControlPanel : Info page. The 
> DefaultTiddlers setting allows you to click the "retain story ordering"
> button.
> The default tiddlers are also shown, if you click the Home Button.
> -m
> On Wednesday, January 6, 2021 at 12:29:35 PM UTC+1 Stobot wrote:
>
>> Is there a way to refresh all open tiddlers without refreshing the wiki 
>> as a whole?
>>
>> Use case is that I use TW for project management, and often have a number 
>> of tiddlers open. Many of them show stats around either the current date, 
>> number of dates from current date to due date, etc. When I come back to the 
>> computer the next day, obviously all of those dates / duration values are 
>> wrong, and so they need to be refreshed/recalculated. 
>>
>> I can obviously to a full save and browser refresh, though I lose my 
>> story, and sometimes I don't actually *want* to save it. Sometimes I'm 
>> finding instead that I open each in edit view and then discard changes 
>> which fixes it. Just wondering if there's another way to accomplish this. I 
>> guess programmatically flipping through each tiddler in StoryList and 
>> sending edit-mode/read-mode messages?
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/957ec9f3-8258-4351-9921-282ba20f0ed1n%40googlegroups.com.


[tw5] Re: How do I use fontawesome icons?

2021-01-07 Thread Jon
Thanks TT!

On Thursday, 7 January 2021 at 12:28:23 UTC TiddlyTweeter wrote:

> Right! The mechanism to actually display the glyphs has to use CSS 
> classes. The font characters themselves are not directly accessible using 
> entity numbers as the font is activated through classes. It is not globally 
> loaded, I think.
>
> My understanding.
> TT
>
> On Thursday, 7 January 2021 at 12:48:14 UTC+1 Jon wrote:
>
>> Ah, so after a bit of lateral thinking, found the instructions at 
>> https://fontawesome.com/
>>
>> So, just in case I'm not the only one asking the question, this would go 
>> in the tiddler (Icon id in quotes):
>>
>> 
>>
>> Cheers
>> Jon
>>
>> On Thursday, 7 January 2021 at 08:54:10 UTC Jon wrote:
>>
>>> Hi, 
>>>
>>> I've installed the  fontawesome plugin 
>>>  but 
>>> there aren't any instructions as to how to use it and to get icons in a 
>>> tiddler (unless I've missed them)
>>>
>>> I notice the cheat sheet doesn't work in my wiki, so that might be a 
>>> clue that something's not right.
>>>
>>> Any pointers?
>>>
>>> Thanks
>>> Jon
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/90c3dd4c-3fb4-4735-9632-a727d91d8547n%40googlegroups.com.


[tw5] Re: How do I use fontawesome icons?

2021-01-07 Thread Jon
Ah, so after a bit of lateral thinking, found the instructions at 
https://fontawesome.com/

So, just in case I'm not the only one asking the question, this would go in 
the tiddler (Icon id in quotes):



Cheers
Jon

On Thursday, 7 January 2021 at 08:54:10 UTC Jon wrote:

> Hi, 
>
> I've installed the  fontawesome plugin 
>  but 
> there aren't any instructions as to how to use it and to get icons in a 
> tiddler (unless I've missed them)
>
> I notice the cheat sheet doesn't work in my wiki, so that might be a clue 
> that something's not right.
>
> Any pointers?
>
> Thanks
> Jon
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/13d13ccc-0b8e-4237-8fd6-6cca767fc68bn%40googlegroups.com.


[tw5] Prevent a button from overwriting tiddlers.

2021-01-07 Thread vinvi...@gmail.com
Hello,

This button will overwrite an existing tiddler. How do I make sure that if 
the tiddler already exists it is numbered? If "Tiddler1" already exists, it 
becomes "Tiddler2".


\define BUTTON-NAME() Enter >
\define BUTTON-COLOR+SIZE() btn btn-link btn-sm
\define BUTTON-TEXT-COLOR() color:
\define TIDDLER-TITLE() $(currentTiddler)$ SPECIFIC
\define TIDDLER-TEMPLATE() {{||$(currentTiddler)$-SPECIFIC-TEMPLATE}}


<$button type="button" class=<>>
<$set name=mytags filter="[subfilter{!!tiddler-tag-button}]">

<$action-sendmessage $message="tm-new-tiddler"
title=<>
text=<>
load-description-button="{{||Description-button}}"
tags=<>/>

>><>

<>


Thank you,

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bdeebeea-0ecd-47be-8fd3-1ed7a5b4e5e8n%40googlegroups.com.


Re: [tw5] Re: Next features in Projectify?

2021-01-07 Thread Saq Imtiaz
Hi Nico, 

Since you mentioned Todoist, the feature I miss most from there is the 
parsing when adding tasks to set the due date, labels etc. 

Being able to enter things like the following leads to a very fast workflow 
for adding tasks:
Review project @xyz ev 2 weeks start fri at 6pm

The natural language date parsing is complex, but perhaps some limited 
support, as well as syntax for specifying a project?

It may also be nice to offer separate views (tabs?) for Today, Next 7 days 
etc under Schedule. The current layout works fine with few tasks but I 
suspect it would be too cluttered once a lot of tasks are added. In fact 
something like the "Upcoming" view in Todoist would be great, that shows 
tasks for each day for a specified time period and being able to drag and 
drop between them.

The datepicker is great by the way. There would be utility in making that 
available as a separate plugin.
Cheers,

Saq

On Thursday, January 7, 2021 at 11:21:25 AM UTC+1 Nicolas Petton wrote:

> Sylvain Naudin  writes:
>
> > Hello,
>
> Hi Sylvain,
>
> > * Make project card colours customizable : *Yes !*
>
> :)
>
> > * Add support for recurring tasks : I'm wondering if this could work 
> like 
> > Droptask (Ayoa now) when you finish a task, the next task is created 
> with 
> > next due time (maybe it's the normal way so my comment is useless).
>
> I'm not used to Ayoa, but I will check it out. What I had in mind for
> recurring tasks is something similar to what Todoist does:
>
> * You set the task to be recurring every XXX (2 weeks, etc.)
> * When you mark the task as completed, it's due date will shift by the
> * interval specified.
>
> > And it's mono-user now (because single-file orianted and multiuser with 
> TW 
> > is not perfect yet without Bob), but in future asign task to member 
> project 
> > (even if I'm the one in charge, it will be interresting to do that, and 
> > have filter view by asign to remember people they are late :D).
>
> Good idea! It would be useful when used with TiddlyServer for instance,
> since it's multi-user.
>
> Cheers,
> Nico
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ceb503f3-e0c3-4f5f-85e1-9c2f458715b5n%40googlegroups.com.


[tw5] Re: Displaying Hard Linebreaks in Text which is pulled from JSON Datatiddler

2021-01-07 Thread scourfie...@gmail.com
Thanks Mark

I couldn't get your solution to work for some reason, but in my own time I 
found another one which seems to work and is a little cleaner. It involves 
applying a custom css class to the transclude widget.

Define the following somewhere:

.hardLineBreaks { word-break: normal; word-wrap: break-word; white-space: 
pre-wrap; } 

And then wrap the transclude widget as follows

@@.hardLineBreaks
<$transclude tiddler="_planning_descriptions" index={{!!created}} 
mode=block />
@@

This led to the intended behaviour for me.

Thanks all for your responses

On Wednesday, 6 January 2021 at 17:32:29 UTC Mark S. wrote:

> Here's a solution. Hopefully there's a more elegant one. In my data, 
> "test" is the data tiddler and "idx1" is the index.
> This uses the new search-replace operator to replace linefeeds with html 
> linebreaks, so that the text will display 
> as expected.
>
> <$vars eol="" lf="""
> """>
> <$set name=out value={{{ [[test]getindex[idx1]search-replace:g,] 
> }}} >
> <>
> 
> 
>
> If you want output like TW, with single linefeeds ignored but double 
> linefeeds recognized, then you could use the simpler:
>
> <$wikify name=out text="""<$transclude tiddler=test index=idx1 mode=block 
> />""" output="html">
> <>
> 
>
>
> On Wednesday, January 6, 2021 at 1:42:56 AM UTC-8 scourfie...@gmail.com 
> wrote:
>
>> Hi
>>
>> Yes, I'm already using block mode. The code looks like this:
>>
>> <$transclude tiddler="_planning_descriptions" index={{!!created}} 
>> mode=block/>
>>
>> (I'm using this tiddler as a template and storing the textbox content in 
>> a json, indexed by the "created" timecode so that they can be renamed 
>> freely)
>>
>> If I use inline mode, it doesn't respect any linebreaks at all (even 
>> double ones).
>>
>> Thanks for your response
>>
>> On Wednesday, 6 January 2021 at 00:29:15 UTC TW Tones wrote:
>>
>>> Just a quick check;
>>>
>>> If you use the transclude widget you can specify mode=block, have you 
>>> tried this yet?
>>>
>>> The triple quotes is more a WikiMarkup option for text within a tiddler. 
>>> With transclusion and templates and more the inline vs block tends to be 
>>> used. See 
>>>
>>> Tones
>>>
>>> On Wednesday, 6 January 2021 at 01:01:04 UTC+11 scourfie...@gmail.com 
>>> wrote:
>>>
 Hi all

 I have some text stored in a json datatiddler which I'm pulling out 
 using the transclude widget in index mode. 

 I'd like to display this text with hard linebreaks respected, rather 
 than the default tiddlywiki behaviour of ignoring single linebreaks and 
 collapsing many linebreaks down into one. However I can't seem to do this, 
 even when wrapping my transclude widget in triple double quotes as 
 described here 
 
 .

 Any advice on how to do this? I suspect its something to do with how 
 the json encodes text, but its not my area of expertise.

 Thanks a ton

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/76242098-261e-4997-b81d-f2436be16f72n%40googlegroups.com.


Re: [tw5] Re: Next features in Projectify?

2021-01-07 Thread Nicolas Petton
Sylvain Naudin  writes:

> Hello,

Hi Sylvain,

> * Make project card colours customizable : *Yes !*

:)

> * Add support for recurring tasks : I'm wondering if this could work like 
> Droptask (Ayoa now) when you finish a task, the next task is created with 
> next due time (maybe it's the normal way so my comment is useless).

I'm not used to Ayoa, but I will check it out. What I had in mind for
recurring tasks is something similar to what Todoist does:

* You set the task to be recurring every XXX (2 weeks, etc.)
* When you mark the task as completed, it's due date will shift by the
* interval specified.

> And it's mono-user now (because single-file orianted and multiuser with TW 
> is not perfect yet without Bob), but in future asign task to member project 
> (even if I'm the one in charge, it will be interresting to do that, and 
> have filter view by asign to remember people they are late :D).

Good idea! It would be useful when used with TiddlyServer for instance,
since it's multi-user.

Cheers,
Nico

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/87zh1lm4iz.fsf%40petton.fr.


signature.asc
Description: PGP signature


[tw5] Query: POWERSHELL for TW: anyone doing anything?

2021-01-07 Thread TiddlyTweeter
Having worked with Mark S. on POLLY 
(A 
very useful Powershell tool to save & backup TW and more). 

I am very aware of the utility of Powershell to get things done. And 
"Powershell Core" is now multi-platform (all except Android natively).

The QUESTION here is whether any of you are using Powershell to help 
support TW in interesting ways?

Just an initial query,
TT 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2cb457d0-90dc-4de6-b4c5-b7132828669bn%40googlegroups.com.


[tw5] Plain text without formatting after: <$list filter=....

2021-01-07 Thread vinvi...@gmail.com
Hello,

\define LIST-DESCRIPTION() [[$(currentTiddler)$-description]]

<$list filter=<>>
{{!!text}}



The above code works fine but shows the result in plain text. How can I 
prevent this?

Thank you,

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/824ef849-4d50-4e9a-8ddd-6c13f7a5be95n%40googlegroups.com.


[tw5] Comment: The centrality of MORPHING

2021-01-07 Thread TiddlyTweeter
I been thinking about what TW in practice is for me. Basically it seems to 
be about human-enabled-Morphing. Its flex is pretty astounding.

Just a comment.
TT

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f0f43265-f8e1-480c-9d35-0f1a27630843n%40googlegroups.com.


[tw5] Re: Habit/Mood Tracking using TW?

2021-01-07 Thread TiddlyTweeter
TonyM & Manish

TW Tones wrote:

> ... with Unicode Characters I saw a lot of emoticons, thinking 
>

I certainly agree we could innovate on "Tracking" toolology.

For instance a "toggle" button that selected a specific emoticon to express 
a state of being, as Tones implies.

Also, Mat, some time ago provided a proof of concept of using the SVG 
editor to annotate another SVG. For instance have an anatomical SVG of a 
typical  back and mark where the pain is. 

I think the real point is to simply define what the needs are on "Tracking" 
and kick it about a bit more.

IMO TW is very well suited to develop the whole "Track my state" thing even 
better than it currently does.

Best wishes
TT

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/78df2dd9-f5fb-4f97-966b-24b4e1b5a2c9n%40googlegroups.com.


[tw5] How do I use fontawesome icons?

2021-01-07 Thread Jon
Hi, 

I've installed the  fontawesome plugin 
 but 
there aren't any instructions as to how to use it and to get icons in a 
tiddler (unless I've missed them)

I notice the cheat sheet doesn't work in my wiki, so that might be a clue 
that something's not right.

Any pointers?

Thanks
Jon

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6ab724ee-9076-4cf5-afcf-646bfb73c130n%40googlegroups.com.


Re: [tw5] Re: Custom bullet point and numbered lists are overlapping?

2021-01-07 Thread P M
Haa! Works perfectly, thanks Sylvain!

-Petri

On Wed, Jan 6, 2021 at 9:20 PM Sylvain Naudin  wrote:

> I just try to fix CSS like this :
>
>  ul>li::before ... (add > beetwen ul and li to apply this CSS only on
> this element (and not all ul with ol number element) If I'm not wrong)
>
>
> Regards,
> Sylvain
>
> Le lundi 4 janvier 2021 à 10:16:21 UTC+1, Petri M. a écrit :
>
>> I have been using these nice looking BlueBullets
>> 
>> from Stroll but I just noticed that if I try to use numbered lists within
>> bullet lists (with *#) the blue bullet is overlapping the number. Could
>> someone maybe help me in fixing this? I have pretty much zero exprience
>> with css.
>>
>> Thanks,
>> Petri
>>
>> --
> 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/cV13fY7qJK4/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/abf2ea65-e4bf-4c93-ac97-c8b16efb59d6n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAOv-5H8X2gX8Uku_w5h41K8ubWZ_gYKfZPKEiLWpMEKt4ah5ig%40mail.gmail.com.


Re: [tw5] Re: Next features in Projectify?

2021-01-07 Thread Nicolas Petton
Ste  writes:

> I might be missing something but for projects I would want to be able to 
> set a future start date and duration/ finish date.

How would you want Projectify to behave when setting a start date for a
project? Move the project to a separate section until that day?

Cheers,
Nico

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8735zdnnrz.fsf%40petton.fr.


signature.asc
Description: PGP signature


Re: [tw5] Re: Next features in Projectify?

2021-01-07 Thread Nicolas Petton
TW Tones  writes:

Hi Anthony,

> If we build solutions using tiddlywikis standard methods it should be 
> possible to integrate projectify with the other plugins, I believe a 
> timeline and Gantt charts have being done before.

If I can build new features on top of existing plugins, I will
definitely do that, I have no interest in competing against other
plugins :)

Cheers,
Nico

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/875z49nop7.fsf%40petton.fr.


signature.asc
Description: PGP signature


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-07 Thread BurningTreeC

@Ste, I can confirm this is a bug. I'll see what I can do to fix it
Ste schrieb am Donnerstag, 7. Januar 2021 um 00:06:35 UTC+1:

> Just had a quick look on my phone and moving anything freezes it in place 
> and it kind of.. Judders before a RSOE
>
> On Wednesday, 6 January 2021 at 09:27:05 UTC BurningTreeC wrote:
>
>> I've *updated* both the *Muuri *and the *Muuri-Kanban* plugins to 
>> version v0.2.6 and v0.1.4 respectively
>>
>> For the Muuri plugin I've added the option to auto-save after dragging 
>> and I've fixed the bug @Sylvain mentioned above (grid dimensions not 
>> refreshing when window dimensions change)
>>
>> For the Muuri-Kanban plugin I've added the auto-save configuration option 
>> in the plugin-config (works only with the Muuri plugin v0.2.6 and above) 
>> and updated some styles
>>
>>
>> best wishes,
>> BTC
>>
>> TW Tones schrieb am Mittwoch, 6. Januar 2021 um 00:18:30 UTC+1:
>>
>>> Thank you BTC,
>>>
>>> Very nice. I need to use this for some big decisions shortly, Lets see 
>>> if I can share the methods I use.
>>>
>>> The option to add more buttons, need only be a hack, its the possibility 
>>> for a designer to add additional handling to cards and columns that's 
>>> needed,  they can take responsibility for spacing etc...
>>>
>>>- Such a customisation may be as little as a tick button, or a help 
>>>icon etc...
>>>- Personally I use muuri and Kanban on a large screen, so I have 
>>>plenty of real-estate.
>>>
>>> One thing I believe Muuri can achieve that other layouts can't, is to 
>>> support "large, single or multiple 'pain of glass' dashboard's", given the 
>>> versatility of content in tiddlers, including iFrames to other sites and 
>>> resources that a Muuri could be used in NOC's (Network Operating Centres) 
>>> or Operation centre for space or traffic control.
>>>
>>> Regards
>>> Tones
>>>
>>> On Tuesday, 5 January 2021 at 20:00:56 UTC+11 BurningTreeC wrote:
>>>

 Thanks @Tones,

 The top drop area will be at the bottom in the next update
 I'll add a link button to open an item in the StoryRiver
 I'll also make the  show conditionally if the item contains text 
 and style it a bit more simple

 About the option to add more buttons: I'd like to keep it as simple as 
 possuble since space is limited on those items and they shouldn't cover 
 too 
 much space.
 Showing the subtitle though is an option I'll think about

 Best wishes,
 Simon
 TW Tones schrieb am Dienstag, 5. Januar 2021 um 03:50:44 UTC+1:

> BTC,
>
> Great stuff. I particularly like your Kanban and like the way you are 
> leveraging the history for "compound tiddlers". 
>
> I really like the way you handle various drag and drop handling
>
>- Although the top + area to start new columns is great, after 
>building my board, I would like to be able to hide it, or toggle it, 
> or 
>perhaps move it to the bottom.
>
> Other possible improvements from my perspective
>
>- Option to hide the  when no text exists for a card (good for 
>simple lists)
>- Perhaps the ability to toggle the display of the text when it 
>exists
>- love the inline edit, but a link to the actual tiddler would be 
>helpful.
>
> More advanced features
>
>- It would be nice if we could introduce our own buttons and 
>subtitle to each column and cards, 
>   - Much like the viewToolBar and subtitle works on tiddlers. 
>   - This would allow a designer to add more advanced features to 
>   the board and cards
>  - Archive, tagging, long description under the heading and 
>  more. Even the existing subtitle, for a tiddler.
>  - And like the  viewToolBar and subtitle conditional 
>  lists/reveals would allow response to the current tiddler.
>   - A similar bottom bar on each column or card would also permit 
>   useful tools to be introduced to cards
>- Could Muuri be activated and deactivated with the new Layout 
>switch?
>
> Personal use under investigation.
>
> I am keen to look at building a sophisticated evaluation tool making 
> use of your Kanban as so far it seems potentially the most extensible so 
> far.
>
>- I would want to extend it as an addon to you Kanban rather than 
>forking it, thus we can make use of it with Muuri
>- This would mean I need to find ways to link a tiddler in one 
>column with another and sort them accordingly.
>- Build some advanced history list tools, usable elsewhere as well
>   - Eg; access the list in the set order elsewhere than in the 
>   Kanban
>   - List each history list, remove the prefix list and/or 
>   indicate that lists currentTiddler. Helps access where you were 
> last