[tw5] Re: Any idea how to collapse/expand section within a tiddler

2023-12-20 Thread TeeDub
I initially got a portion of this somewhere else, but I have added to it a 
lot. It works.

As a sidenote,  I'm pretty confused about how/why the checkbox field works 
like this (it seems to be interchangeable with the state tiddler?). That's 
the bit I got somewhere else. 

In any case, I used the qualify macro to name the checkbox field (rather 
than the state tiddler). The state tiddler uses the checkbox field or 
something. And it required two exclamation marks in front of it. I spent a 
lot of time getting it to work through trial and error without 
understanding it.

























*.chkbx [type="checkbox"]{display:none;}.htag 
{display: block; border-radius:4px; text-decoration:none; border:0px; 
margin-top:6px; margin-bottom:4px; padding-left:6px; padding-top:6px; 
padding-bottom:2px; color: #333; background-color:#AAA}.exsec { 
padding-left: 10px; padding-right:10px; border-left:4px solid #AAA; 
margin-left:20px; margin-right:4px; margin-top:-2px; margin-bottom:-2px; 
}.editlink {font-size:smaller;  }<$set fieldName=<>><$list filter="[tag[soho]sort[title]] -[regexp:title[^Draft of 
\'.*]]"><$checkbox field="<>" checked="yes" 
unchecked="no">{{$:/core/images/unfold-button}}<$transclude field="title" 
mode="inline"/><$link> 
[edit]<$reveal 
state="!!<>" type="match" text="yes"><$transclude field="text" 
mode="block"/>*

On Tuesday, May 19, 2020 at 1:01:11 PM UTC-4 Reet Pandher wrote:

> Final Version:
> \define fold(heading, text)
> <$button class="tc-btn-invisible" popup=< "$:/state/section$heading$">>>
>
>
> $heading$ {{$:/core/images/fold-button}}
>
> 
> <$reveal type="nomatch" state=<> 
> text="">
> $text$
> 
> \end
>
> Changed the image from chevron-right to fold-button. It is a smaller icon 
> so it doesn't bother as much without the animation!!
>
> On Tuesday, May 19, 2020 at 10:15:35 PM UTC+5:30, Reet Pandher wrote:
>>
>> I tried this version and it seems to work:
>> \define fold(heading, text)
>> <$button class="tc-btn-invisible" popup=<> "$:/state/section$heading$">>>
>>
>> $heading$ {{$:/core/images/chevron-right}}
>> 
>> <$reveal type="nomatch" state=<> 
>> text="">
>> $text$
>> 
>> \end
>>
>> Only problem is that the arrow button now stays the same but i think i 
>> can live with it. Also, is there any smaller and vertical arrow that can be 
>> used in place of the current one?
>> Thanks
>>
>> On Tuesday, May 19, 2020 at 8:58:45 PM UTC+5:30, Eric Shulman wrote:
>>>
>>> On Tuesday, May 19, 2020 at 8:08:15 AM UTC-7, Reet Pandher wrote:

 I tried it and it displays the heading with the right arrow but when i 
 click on the heading to expand text, no text appears *and *the heading 
 disappears as well. When i click anywhere on the screen the heading 
 re-appears.


>>> oops!  I left out a closing /$reveal and the $button wrapper around the 
>>> second heading... here's the fixed macro:
>>>
>>> \define fold(heading, text)
>>> <$reveal type="match" state=<> 
>>> text="">
>>> <$button class="tc-btn-invisible" popup=<>> "$:/state/section$heading$">>>
>>>
>>> $heading$ {{$:/core/images/chevron-right}}
>>> 
>>> 
>>> <$reveal type="nomatch" state=<> 
>>> text="">
>>> <$button class="tc-btn-invisible" popup=<>> "$:/state/section$heading$">>>
>>>
>>> $heading$ {{$:/core/images/chevron-down}}
>>> 
>>> $text$
>>> 
>>> \end
>>>
>>> <>
>>> <>
>>>
>>> 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/af4c8096-3259-48c5-80e5-b6dc94be70c0n%40googlegroups.com.


[tw5] Re: Any idea how to collapse/expand section within a tiddler

2023-12-20 Thread TeeDub
Sorry I didn't whittle this down more, but it might be interesting for 
several reasons. 

I initially got a portion of this somewhere else, but I have added to it a 
lot. It works.

As a sidenote however,  I'm pretty confused about how/why the checkbox 
field works like this (it seems to be interchangeable with the state 
tiddler?). That's the bit I got somewhere else. 

In any case, I used the qualify macro to name the checkbox field, as well 
as the state tiddler, which has two exclamation marks in front of it. I 
spent a lot of time getting it to work through trial and error without 
understanding it.




















*$set fieldName=<>><$list filter="[tag[Wiki 
Related]sort[title]] -[regexp:title[^Draft of.*]]">.exheading [type="checkbox"]{display:none;}<$checkbox field="<>" checked="yes" 
unchecked="no">{{$:/core/images/unfold-button}}<$transclude 
field="title" mode="inline"/><$link>[edit]<$reveal 
state="!!<>" type="match" text="yes"><$transclude field="text" 
mode="block"/>*

On Tuesday, May 19, 2020 at 1:01:11 PM UTC-4 Reet Pandher wrote:

> Final Version:
> \define fold(heading, text)
> <$button class="tc-btn-invisible" popup=< "$:/state/section$heading$">>>
>
>
> $heading$ {{$:/core/images/fold-button}}
>
> 
> <$reveal type="nomatch" state=<> 
> text="">
> $text$
> 
> \end
>
> Changed the image from chevron-right to fold-button. It is a smaller icon 
> so it doesn't bother as much without the animation!!
>
> On Tuesday, May 19, 2020 at 10:15:35 PM UTC+5:30, Reet Pandher wrote:
>>
>> I tried this version and it seems to work:
>> \define fold(heading, text)
>> <$button class="tc-btn-invisible" popup=<> "$:/state/section$heading$">>>
>>
>> $heading$ {{$:/core/images/chevron-right}}
>> 
>> <$reveal type="nomatch" state=<> 
>> text="">
>> $text$
>> 
>> \end
>>
>> Only problem is that the arrow button now stays the same but i think i 
>> can live with it. Also, is there any smaller and vertical arrow that can be 
>> used in place of the current one?
>> Thanks
>>
>> On Tuesday, May 19, 2020 at 8:58:45 PM UTC+5:30, Eric Shulman wrote:
>>>
>>> On Tuesday, May 19, 2020 at 8:08:15 AM UTC-7, Reet Pandher wrote:

 I tried it and it displays the heading with the right arrow but when i 
 click on the heading to expand text, no text appears *and *the heading 
 disappears as well. When i click anywhere on the screen the heading 
 re-appears.


>>> oops!  I left out a closing /$reveal and the $button wrapper around the 
>>> second heading... here's the fixed macro:
>>>
>>> \define fold(heading, text)
>>> <$reveal type="match" state=<> 
>>> text="">
>>> <$button class="tc-btn-invisible" popup=<>> "$:/state/section$heading$">>>
>>>
>>> $heading$ {{$:/core/images/chevron-right}}
>>> 
>>> 
>>> <$reveal type="nomatch" state=<> 
>>> text="">
>>> <$button class="tc-btn-invisible" popup=<>> "$:/state/section$heading$">>>
>>>
>>> $heading$ {{$:/core/images/chevron-down}}
>>> 
>>> $text$
>>> 
>>> \end
>>>
>>> <>
>>> <>
>>>
>>> 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/591f8958-057f-4e53-858b-28931af96bdcn%40googlegroups.com.


[tw5] Re: Any idea how to collapse/expand section within a tiddler

2023-12-20 Thread TeeDub
This kind of crazy. 

It is a set of expanding sections applied to a list filter.

It uses a checkbox with a field instead of a button. 

I'm actually very confused as to why/how the checkbox field works with the 
state tiddler. Except that the qualify macro is applied to the checkbox 
field's name. 

<$set fieldName=<>>
<$list filter="[tag[Wiki Related]sort[title]] -[regexp:title[^Draft of.*]]">

.exheading [type="checkbox"]{display:none;}


<$checkbox field="showstate" checked="yes" unchecked="no">

{{$:/core/images/unfold-button}}
<$transclude field="title" mode="inline"/><$link>[edit]




<$reveal state="!!showstate" type="match" text="yes">
<$transclude field="text" mode="block"/>




<$list filter="[tag[Game Projects]sort[title]] -[regexp:title[^Draft 
of.*]]">

.exheading [type="checkbox"]{display:none;}


<$checkbox field="showtest" checked="yes" unchecked="no">

{{$:/core/images/unfold-button}}
<$transclude field="title" mode="inline"/><$link>[edit]




<$reveal state="!!showtest" type="match" text="yes">
<$transclude field="text" mode="block"/>




On Tuesday, May 19, 2020 at 1:01:11 PM UTC-4 Reet Pandher wrote:

> Final Version:
> \define fold(heading, text)
> <$button class="tc-btn-invisible" popup=< "$:/state/section$heading$">>>
>
>
> $heading$ {{$:/core/images/fold-button}}
>
> 
> <$reveal type="nomatch" state=<> 
> text="">
> $text$
> 
> \end
>
> Changed the image from chevron-right to fold-button. It is a smaller icon 
> so it doesn't bother as much without the animation!!
>
> On Tuesday, May 19, 2020 at 10:15:35 PM UTC+5:30, Reet Pandher wrote:
>>
>> I tried this version and it seems to work:
>> \define fold(heading, text)
>> <$button class="tc-btn-invisible" popup=<> "$:/state/section$heading$">>>
>>
>> $heading$ {{$:/core/images/chevron-right}}
>> 
>> <$reveal type="nomatch" state=<> 
>> text="">
>> $text$
>> 
>> \end
>>
>> Only problem is that the arrow button now stays the same but i think i 
>> can live with it. Also, is there any smaller and vertical arrow that can be 
>> used in place of the current one?
>> Thanks
>>
>> On Tuesday, May 19, 2020 at 8:58:45 PM UTC+5:30, Eric Shulman wrote:
>>>
>>> On Tuesday, May 19, 2020 at 8:08:15 AM UTC-7, Reet Pandher wrote:

 I tried it and it displays the heading with the right arrow but when i 
 click on the heading to expand text, no text appears *and *the heading 
 disappears as well. When i click anywhere on the screen the heading 
 re-appears.


>>> oops!  I left out a closing /$reveal and the $button wrapper around the 
>>> second heading... here's the fixed macro:
>>>
>>> \define fold(heading, text)
>>> <$reveal type="match" state=<> 
>>> text="">
>>> <$button class="tc-btn-invisible" popup=<>> "$:/state/section$heading$">>>
>>>
>>> $heading$ {{$:/core/images/chevron-right}}
>>> 
>>> 
>>> <$reveal type="nomatch" state=<> 
>>> text="">
>>> <$button class="tc-btn-invisible" popup=<>> "$:/state/section$heading$">>>
>>>
>>> $heading$ {{$:/core/images/chevron-down}}
>>> 
>>> $text$
>>> 
>>> \end
>>>
>>> <>
>>> <>
>>>
>>> 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/8a654fb2-3396-4190-b0b2-9c337d774bf1n%40googlegroups.com.


[tw5] Re: Imagining a TiddlyWiki Portal Website: what should we find there?

2022-08-04 Thread TeeDub
My only idea for how to gather this information is through a bit of 
additional direction in plugin creation instructions, and recruitment from 
3rd parties to contribute such information.

This is the type of information I personally would be willing to submit 
through emails/git sites, etc. That is: links to resources I have found, 
perhaps asking permission of contributors if that is necessary.

Thanks.

On Thursday, August 4, 2022 at 8:42:21 PM UTC-4 TeeDub wrote:

> Hello, I have very recently been making a go at improving my Tiddlywiki 
> skills, although I have been acquainted with it for 14 years.
>
> I agree with the OP's perspective. (Linking to various "instances" and 
> resources, rather than trying to provide all of them in one place.)
>
>
>- links to Instances with 
>- help topics, 
>- plugins, 
>- demos, 
>- themes, etc.
>- icons
>- base64 fonts
>- css blurbs
>
>
> As is the case with many of these things, especially plugins, multiple 
> plugins sometimes exist on one tw demo site created by a contributor.
>
> My specific additional input is to attempt lists of individual plugins 
> (and other bulleted items) such that they are find-able on an individual 
> basis, with some kind of search or category tagging parameters.
>
> Even though there is not an overwhelming list, it could be its own 
> Tiddlywiki all by itself, and benefit.
>
> On Thursday, August 4, 2022 at 3:39:38 PM UTC-4 cj.v...@gmail.com wrote:
>
>> My suggestion goes entirely in the opposite direction than  Redesign of 
>> tiddlywiki.com - TAKE 1 
>> <https://talk.tiddlywiki.org/t/redesign-of-tiddlywiki-com-take-1/4120>
>>
>> I'm no fan of a TiddlyWiki instance that serves all purposes for all 
>> people.  Landing page, online demo, online documentation, and community 
>> test bed.  When something tries to be all things for all people, it doesn't 
>> do all that great at any of the things.  It is bloated and heavy 
>> (lethargic), and hard to navigate.
>>
>> What I'm suggesting here is a proper portal, that does only that job: be 
>> a portal.  A portal to all things, including many TiddlyWiki instances, 
>> each TiddlyWiki instance doing an intended job.  Many online demos focused 
>> on what they are demoing.  Many for online documentation.  All of them 
>> available as community  test beds.  Any one TiddlyWiki instance able to 
>> behave as a client and/or a server to any other one.
>>
>> ASIDE: Many TiddlyWiki instances for online documentation?  YES!  For 
>> example: a TiddlyWiki instance with the sole purpose of navigating and 
>> learning TiddlyWiki interface elements.  That lets a visitor interact with 
>> it in the same way as the tutorial for TreeSheets (download TreeSheets and 
>> when you open it, you have access to the tutorial that invites you to try 
>> this and try that.)
>>
>> Something like that.  I'm never done piecing together what I'm thinking 
>> ...
>> On Thursday, August 4, 2022 at 3:49:10 PM UTC-3 Charlie Veniot wrote:
>>
>>> My "TiddlyWiki Portal Project 
>>> <https://sites.google.com/view/tiddlywikiportalproject/home>"
>>>
>>> What should we be able to find in a TiddlyWiki Portal Project?
>>>
>>> What things would you like to easily find there?
>>>
>>> If you don't mind collaborating on a list via Google Forms, then please 
>>> share your thoughts anonymously:
>>>
>>>- one "thing" per form submission
>>>- as many submissions as you like
>>>- bookmark the "edit your reponse" link(s) to edit your response(s) 
>>>at any time
>>>
>>> Click here to access the form <https://forms.gle/x2V7XJG48Uiwv4RS9>
>>> Click here to see published list of responses 
>>> <https://docs.google.com/spreadsheets/d/e/2PACX-1vQk5fKY_kdj78q1sPZrvxkpwP3rBLCdn2IecetqtjDLyY01oB4iYRoQ6iUsIM_-sjhNbQPdNr8UlA04/pubhtml?gid=0=true>
>>>
>>> Alternatively, feel free to post a reply here (Google Groups).
>>>
>>> The topic of this question has been discussed in various forms many 
>>> times and in many threads over there years.
>>>
>>> If you find any relevant and notewearthy discussions, submit any via the 
>>> form or as a reply here.
>>>
>>> Cheers !
>>>
>>

-- 
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/5d16b074-b739-4106-abcf-1d20b886414dn%40googlegroups.com.


[tw5] Re: Imagining a TiddlyWiki Portal Website: what should we find there?

2022-08-04 Thread TeeDub
Hello, I have very recently been making a go at improving my Tiddlywiki 
skills, although I have been acquainted with it for 14 years.

I agree with the OP's perspective. (Linking to various "instances" and 
resources, rather than trying to provide all of them in one place.)


   - links to Instances with 
   - help topics, 
   - plugins, 
   - demos, 
   - themes, etc.
   - icons
   - base64 fonts
   - css blurbs
   

As is the case with many of these things, especially plugins, multiple 
plugins sometimes exist on one tw demo site created by a contributor.

My specific additional input is to attempt lists of individual plugins (and 
other bulleted items) such that they are find-able on an individual basis, 
with some kind of search or category tagging parameters.

Even though there is not an overwhelming list, it could be its own 
Tiddlywiki all by itself, and benefit.

On Thursday, August 4, 2022 at 3:39:38 PM UTC-4 cj.v...@gmail.com wrote:

> My suggestion goes entirely in the opposite direction than  Redesign of 
> tiddlywiki.com - TAKE 1 
> 
>
> I'm no fan of a TiddlyWiki instance that serves all purposes for all 
> people.  Landing page, online demo, online documentation, and community 
> test bed.  When something tries to be all things for all people, it doesn't 
> do all that great at any of the things.  It is bloated and heavy 
> (lethargic), and hard to navigate.
>
> What I'm suggesting here is a proper portal, that does only that job: be a 
> portal.  A portal to all things, including many TiddlyWiki instances, each 
> TiddlyWiki instance doing an intended job.  Many online demos focused on 
> what they are demoing.  Many for online documentation.  All of them 
> available as community  test beds.  Any one TiddlyWiki instance able to 
> behave as a client and/or a server to any other one.
>
> ASIDE: Many TiddlyWiki instances for online documentation?  YES!  For 
> example: a TiddlyWiki instance with the sole purpose of navigating and 
> learning TiddlyWiki interface elements.  That lets a visitor interact with 
> it in the same way as the tutorial for TreeSheets (download TreeSheets and 
> when you open it, you have access to the tutorial that invites you to try 
> this and try that.)
>
> Something like that.  I'm never done piecing together what I'm thinking ...
> On Thursday, August 4, 2022 at 3:49:10 PM UTC-3 Charlie Veniot wrote:
>
>> My "TiddlyWiki Portal Project 
>> "
>>
>> What should we be able to find in a TiddlyWiki Portal Project?
>>
>> What things would you like to easily find there?
>>
>> If you don't mind collaborating on a list via Google Forms, then please 
>> share your thoughts anonymously:
>>
>>- one "thing" per form submission
>>- as many submissions as you like
>>- bookmark the "edit your reponse" link(s) to edit your response(s) 
>>at any time
>>
>> Click here to access the form 
>> Click here to see published list of responses 
>> 
>>
>> Alternatively, feel free to post a reply here (Google Groups).
>>
>> The topic of this question has been discussed in various forms many times 
>> and in many threads over there years.
>>
>> If you find any relevant and notewearthy discussions, submit any via the 
>> form or as a reply here.
>>
>> Cheers !
>>
>

-- 
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/9afe9607-75fa-42a4-9e51-c33c63d2f6aan%40googlegroups.com.


[tw5] Re: Alternative Icons for the "EditButtons" plugin The Attachment

2022-08-03 Thread TeeDub
*Whoops! Here is the attachment*

On Wednesday, August 3, 2022 at 6:32:04 PM UTC-4 TeeDub wrote:

> *This is a link to the plugin's wiki. (Thomas Elmiger's) 
> <https://tid.li/tw5/plugins-2019.html>*
>
>
>-   *Red*  = Discard Changes
>- *Green* = Save Changes
>- ==
>-   *X*   = Exit Tiddler
>- *Arrow* = View Tiddler
>
> [image: twicons2.png]
>
>
> Affected Tiddlers:
>
>- $:/core/images/cancel-button
>- $:/core/images/done-button
>- $:/plugins/telmiger/EditButtons/images/cancel-close-button
>- $:/plugins/telmiger/EditButtons/images/done-close-button
>- $:/plugins/telmiger/EditButtons/images/done-open-button
>
>
> CSS for Larger Buttons:
>
>
>
>
>
>
>
>
> *div.tc-tiddler-edit-title span.tc-tiddler-controls button svg, 
> div.tc-tiddler-edit-title span.tc-tiddler-controls button img {  height: 
> 1.0em;}div.tc-tiddler-edit-title span.tc-tiddler-controls {margin-top: 
> -10px;margin-bottom: 10px;}*
>
>
>
>

-- 
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/e5e75118-08a7-400e-b8de-69e02fb2c217n%40googlegroups.com.


editButtons_alternative_icons.json
Description: application/json


[tw5] Re: Alternative Icons for EditButtons Plugin (Attached as .json)

2022-08-02 Thread TeeDub
CSS for larger buttons

/* Close X area buttons on top-right of each Tiddler */

.tc-tiddler-controls button svg, .tc-tiddler-controls button img {
  height: 0.7em;
}

/* Tiddler Edit View: Save / Cancel / Delete buttons on top-right  */

div.tc-tiddler-edit-title span.tc-tiddler-controls button svg, 
div.tc-tiddler-edit-title span.tc-tiddler-controls button img {
  height: 1.0em;
}

div.tc-tiddler-edit-title span.tc-tiddler-controls {
margin-top: -10px;
margin-bottom: 10px;
}

On Tuesday, August 2, 2022 at 1:52:49 AM UTC-4 TeeDub wrote:

> Additional Notes:
>
>
> Affected Tiddlers:
>
>- $:/core/images/cancel-button
>- $:/core/images/done-button
>- $:/plugins/telmiger/EditButtons/images/cancel-close-button
>- $:/plugins/telmiger/EditButtons/images/done-close-button
>- $:/plugins/telmiger/EditButtons/images/done-open-button
>
>
> Unset Dark/Light and Highlighting
>
> They highlight when hovered.
>
> I did not test these on a light theme, but the grey parts in the original 
> picture go dark in a light theme.
>
> Thanks.
>
> On Tuesday, August 2, 2022 at 1:41:57 AM UTC-4 TeeDub wrote:
>
>> *The icons are attached as an exported TW .json file.*
>>
>>
>> *[image: editbuttons-alt-icons.png]*
>>
>> Red = discard changes
>> Green = save changes
>> Eye = view tiddler (exit the editor)
>> Arrow = close/leave tiddler
>> Check = save/update without exiting the editor
>>
>> Link to EditButtons Plugin 
>> <https://tid.li/tw5/plugins.html#$:/plugins/telmiger/EditButtons>
>>
>> Thank you, This is a very useful plugin.
>>
>

-- 
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/326de4f4-c47a-479b-8fd7-be224083b8b9n%40googlegroups.com.


[tw5] Re: Alternative Icons for EditButtons Plugin (Attached as .json)

2022-08-01 Thread TeeDub
Additional Notes:


Affected Tiddlers:

   - $:/core/images/cancel-button
   - $:/core/images/done-button
   - $:/plugins/telmiger/EditButtons/images/cancel-close-button
   - $:/plugins/telmiger/EditButtons/images/done-close-button
   - $:/plugins/telmiger/EditButtons/images/done-open-button


Unset Dark/Light and Highlighting

They highlight when hovered.

I did not test these on a light theme, but the grey parts in the original 
picture go dark in a light theme.

Thanks.

On Tuesday, August 2, 2022 at 1:41:57 AM UTC-4 TeeDub wrote:

> *The icons are attached as an exported TW .json file.*
>
>
> *[image: editbuttons-alt-icons.png]*
>
> Red = discard changes
> Green = save changes
> Eye = view tiddler (exit the editor)
> Arrow = close/leave tiddler
> Check = save/update without exiting the editor
>
> Link to EditButtons Plugin 
> <https://tid.li/tw5/plugins.html#$:/plugins/telmiger/EditButtons>
>
> Thank you, This is a very useful plugin.
>

-- 
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/f253ac96-954e-4a16-952b-7d08eb469ae0n%40googlegroups.com.


[tw5] Re: Announcing the release of TiddlyWiki v5.1.23

2020-12-28 Thread TeeDub
Stobot, I didn't see what you mentioned about the tabs macro actions. Would 
you mind linking me to something that talks about that? 

Thanks. That might be my favourite addition.

On Sunday, December 27, 2020 at 12:27:57 PM UTC-5 Stobot wrote:

> Excited for the update - thanks again for all the contributors!!
>
> Lots of things that sound really great - but I have no idea how to use 
> them :(
>
> Autocomplete for edit-text fields: Sounds awesome, no examples seem to be 
> available and playing isn't getting me anywhere. What I'd love to do is to 
> have an auto-complete where I could give it a list of values, tiddler names 
> (filtered ideally) and it would auto-complete it. For example if I have a 
> bunch of tiddlers tagged as "projects", could I have an <$edit-text.. 
> autocomplete="[tag[projects]]"/> that helped? Am I way off with that? I'm 
> using edit-comptext plugin and it has a basic auto-complete, but don't know 
> how to do a filtered list of options - which would be great. 
>
> Filter operators - always my favorite parts, thanks for the continued 
> focus in this area! I'm having a hard time understanding the difference 
> between things like filter and subfilter, or the difference (pros and cons) 
> between operators or run prefixes, but I can test my way to an 
> understanding there eventually. I think reduce will probably end up being 
> my favorite due to the amount of math I use in my wikis, but will need to 
> investigate further
>
> The re-linking improvements seem great - but am I understanding it right 
> that it's still not near as thorough as the relink plugin or are they now 
> equivalent?
>
> Tabs macro with actions will be *very* useful for some things I'm doing 
> from a UI building standpoint. 
>
> TW Tones - you mention further page layout customization which sound great 
> - I don't see much mention of it in the release notes - what am I missing? 
> I'm stitching together many plugins that don't play that well together just 
> to get it where I have:
> 1. a top bar with a size (height) that I can adjust - am I right that we 
> still can't modify this (without 3rd party plugins)?
> 2. a / the sidebar on the left - I still can't do that right? (without 3rd 
> party plugins)
>
> Overall - great release, thanks again all!
> On Sunday, December 27, 2020 at 2:29:46 AM UTC-5 TW Tones wrote:
>
>> For those interested I have updated my previously published Playground, 
>> with a few changes
>>
>>- It is now a 5.1.23 Version release with Autosave disabled and Local 
>>storage enabled.
>>- It is now a full copy of tiddlywiki.com so you can make use of the 
>>documentation tiddlers during testing.
>>- You can install plugins from drag and drop or multiple libraries in 
>>the Get more plugins button.
>>   - Then reload if you must and changes will be loaded from Browser 
>>   storage, no download or save needed.
>>- Use it as a playground but do not depend on your changes remaining 
>>in the browser memory forever.
>>
>> Go and have a play now with the great new features of the new version.
>>
>> https://anthonymuscio.github.io/playground.html
>>
>> On Sunday, 27 December 2020 at 14:59:56 UTC+11 TW Tones wrote:
>>
>>> *Slug handling;*
>>>
>>> As I understand it when converting what may otherwise be tiddlers and 
>>> their title to a URL filename slugify converts to a valid HTML filename.
>>>
>>> *The ZIP mechanism* allows you create files within a ZIP in TiddlyWiki, 
>>> that can be saved and unzipped in place with the files and folders being 
>>> extracted. Thus we can generate ZIP's with a multitude of files that 
>>> subsequently for a larger set like a website. Eg css and html files.
>>>
>>> The art of generating a site is a larger question, start a thread to ask 
>>> for help! Personally I use whole single file wikis on the internet rather 
>>> than "generate static sites", so if you start a thread do say why and what 
>>> you believe the result will be.
>>>
>>> Tones
>>> On Sunday, 27 December 2020 at 13:42:11 UTC+11 dix...@gmail.com wrote:
>>>
 "Slug handling will allow the generation of html pages and the zip 
 feature to bundle them, perhaps starting a new opportunity for TiddlyWiki 
 to generate sites"

 Can you expand on that a bit? This is my major pain point at this time, 
 generating a site...

 On Saturday, December 26, 2020 at 6:22:47 PM UTC-6 TW Tones wrote:

> Now I am at my desktop and not crippled by Google Groups on Mobile, I 
> will chip in and *thank the community* for another important release.
>
> I have being using and reviewing features on the pre-release for some 
> time can can assure you all that there are immediate and slow burning 
> advantages to this new release.
>
>- With search and replace, toggle and cycle operators it will be 
>easier to do some everyday actions on tiddler fields and status 
> handling, I 
>feel this 

[tw5] Re: Announcing the release of TiddlyWiki v5.1.23

2020-12-24 Thread TeeDub
I will have to look at the keyboard stuff.

Thank you very much for your work.

On Thursday, December 24, 2020 at 7:25:25 PM UTC-5 Mat wrote:

> Yes, what a Christmas gift! Thank you Jeremy and everyone who contributed!
> Favourite features... 
> - Keyboard handling - oh'yeah!
> - Single VarsWidget instead of multiple SetVariableWidgets is a "small but 
> big" one
> - and of course the new operators! I am particularly excied about the 
> operators; slugify, filter, toggle, and I know I'll use !is[draft]
>
> ...now if I can only find the *time *to tiddle fiddle more!
>
> <:-)
>
> On Thursday, December 24, 2020 at 3:03:06 PM UTC+1 Jeremy Ruston wrote:
>
>> I’m delighted to announce that the new v5.1.23 release of TiddlyWiki is 
>> now available:
>>
>> https://tiddlywiki.com/
>> https://www.npmjs.com/package/tiddlywiki/v/5.1.23
>>
>> I’ve attached a thumbnail of the release note (
>> https://tiddlywiki.com/#Release%205.1.23) to give a sense of the scale. 
>> Usually here I would summarise the key new features, but on this occasion 
>> there’s really too many to choose from. So instead I’d like to invite 
>> everyone to reply here nominating their favourite feature. And of course 
>> please do ask for clarifications if any of the changes aren’t clear.
>>
>> For all of us it’s been a strange year, with much heartbreaking suffering 
>> around us. Back in April, I was delighted to get v5.1.22 out as part of a 
>> clearing of the decks, just in case anything happened to me. As it’s turned 
>> out, despite COVID’s best efforts, but entirely thanks to a very high level 
>> of collaboration across the core development team, v5.1.23 has been one of 
>> the most impressive releases for a long time. I can’t wait to see what 
>> we’ll achieve in 2021.
>>
>> I’d like to thank everyone involved with the development, and of course a 
>> huge thank you to everyone here who’s time and attention makes this project 
>> what it is today. To corrupt an old adage, TiddlyWiki will die when the 
>> last person speaks its name. Right now there’s a chorus of voices lifting 
>> the project, and let’s hope that will long continue,
>>
>> Best wishes
>>
>> Jeremy
>>
>>
>>
>>
>>
>>

-- 
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/9064e519-01dd-4d75-afeb-c76c324b376bn%40googlegroups.com.