Re: [tw5] Re: Collapse and expand headings in a tiddler

2021-09-02 Thread Charlie Veniot
I might be a little bit slow upgrading Relink in all of my TiddlyWikis ...

On Friday, September 3, 2021 at 12:51:02 AM UTC-3 Flibbles wrote:

> Hey all! So you should not need...
>
> <$transclude tiddler={{ This_Tiddler!!title }} mode="block"/>
>
> Relink has <$transclude tiddler /> already configured in its whitelist, 
> so...
>
> <$transclude tiddler="This_Tiddler" mode="block"/>
>
> should work just fine. No need for weird syntax gymnastics.
>
> -Flibbles
> On Monday, August 30, 2021 at 10:17:48 AM UTC-4 cj.v...@gmail.com wrote:
>
>> Arg, sorry.  Forgot about the quotes.
>>
>> I almost never specify a tiddler title with quotes.
>>
>> For example, if transcluding a tiddler called "This_Tiddler", my 
>> transclude would look like this:
>>
>> <$transclude tiddler={{ This_Tiddler!!title }} mode="block"/>
>>
>>
>> I'm an incessant tweaker by nature, so often change my tiddler titles to 
>> get them just right as tiddler content/scope/purpose evolves, and tiddler 
>> titles in quotes don't get changed upon save of a tiddler with the new 
>> title.
>>
>> The Relink plugin, though, comes to the rescue as long as I reference 
>> titles as per that transclude sample above.
>> On Monday, August 30, 2021 at 10:48:10 AM UTC-3 theok...@gmail.com wrote:
>>
>>>   That worked! Thank you! I just had to put quotes around the tiddler 
>>> title.
>>>
>>> On Monday, August 30, 2021 at 9:32:20 AM UTC-4 cj.v...@gmail.com wrote:
>>> G'day,
>>>
>>> If you are using "{{}}" for transclusion, try the transclude widget 
>>> instead with mode = "block" *(i.e.  <$transclude 
>>> tiddler=your_tiddler's_title mode="block"/>).*
>>>
>>>
>>>
>>> On Monday, August 30, 2021 at 9:32:20 AM UTC-4 cj.v...@gmail.com wrote:
>>>
 G'day,

 If you are using "{{}}" for transclusion, try the transclude widget 
 instead with mode = "block" *(i.e.  <$transclude 
 tiddler=your_tiddler's_title mode="block"/>).*



 On Monday, August 30, 2021 at 10:20:32 AM UTC-3 theok...@gmail.com 
 wrote:

> @ TW Tones
>
> Is there a way for this to work with other wikitext after the closing 
> summary? I use a lot of wikitext tables and mine isn't working. By that I 
> mean my "HelloThere" for transclusion is a big table formatted using 
> wikitext.
>
> On Sunday, August 29, 2021 at 10:38:38 PM UTC-4 TW Tones wrote:
>
>> Actually the summary tag can contain wiki text.
>>
>> I have used it to allow editing 
>> {{tiddlername||$:/core/ui/Buttons/edit}}
>>
>> HelloThere 
>> {{HelloThere||$:/core/ui/Buttons/edit}}
>>
>> {{HelloThere}}
>> 
>>
>> I also use filtered transclusion to count something and display that 
>> in the summary so there is not need to open it if there are no cases (=0)
>> Or wrap the whole thing to optionally display
>>
>> <$list filter="display condition" variable=nul emptyMessage="No 
>> details message">
>> HelloThere 
>> {{HelloThere||$:/core/ui/Buttons/edit}}
>>
>> {{HelloThere}}
>> 
>> 
>>
>> Regards
>> Tones
>> On Monday, 30 August 2021 at 07:56:32 UTC+10 cj.v...@gmail.com wrote:
>>
>>> Not only can summary be styled, but details can be styled too, as 
>>> per this snippet from the tiddlers included in that earlier attachment 
>>> of 
>>> mine:
>>>
>>> <*details* style="background-color:white;border:1px solid 
>>> lightgray;">
>>>   <*summary* 
>>> style="font-size:1.5em;background-color:white;border:1px solid 
>>> lightgray;">{{!!title}}<$link>*
>>>
>>> <$transclude tiddler=<> mode="block"/>
>>> 
>>>
>>> On Sunday, August 29, 2021 at 6:50:24 PM UTC-3 theok...@gmail.com 
>>> wrote:
>>>
 To add to what @David Gifford said I've been tinkering with the 
 details html element today. They documentation I was reading said it 
 didn't 
 support any attributes besides open/close.

 BUT...  I discovered SUMMARY which is used to change it's name DOES.

 
 >>> style="background-color:green;color:white;font-weight:bold;width:220px;">TESTING
  
 DETAILS STYLES

 Testing a bunch of testing text. a bunch and more and more and more.
 

 On Sunday, August 29, 2021 at 11:39:51 AM UTC-4 cj.v...@gmail.com 
 wrote:

> Hoo Nelly, I'm not an Emacs Org-Mode guy, so that is all 
> gobbledygook to me.
>
> There is a sweet spot for adequate WikiText:
>
>- complex WikiText formatting markup is bad
>- not enough simple WikiText formatting markup is bad
>- too much simple WikiText formatting markup is bad
>- not enough depends on the person; too much also depends on 
>the person
>
> That can be a drag when one needs some complicated formatting that 
> 

Re: [tw5] Re: Collapse and expand headings in a tiddler

2021-09-02 Thread Flibbles
Hey all! So you should not need...

<$transclude tiddler={{ This_Tiddler!!title }} mode="block"/>

Relink has <$transclude tiddler /> already configured in its whitelist, 
so...

<$transclude tiddler="This_Tiddler" mode="block"/>

should work just fine. No need for weird syntax gymnastics.

-Flibbles
On Monday, August 30, 2021 at 10:17:48 AM UTC-4 cj.v...@gmail.com wrote:

> Arg, sorry.  Forgot about the quotes.
>
> I almost never specify a tiddler title with quotes.
>
> For example, if transcluding a tiddler called "This_Tiddler", my 
> transclude would look like this:
>
> <$transclude tiddler={{ This_Tiddler!!title }} mode="block"/>
>
>
> I'm an incessant tweaker by nature, so often change my tiddler titles to 
> get them just right as tiddler content/scope/purpose evolves, and tiddler 
> titles in quotes don't get changed upon save of a tiddler with the new 
> title.
>
> The Relink plugin, though, comes to the rescue as long as I reference 
> titles as per that transclude sample above.
> On Monday, August 30, 2021 at 10:48:10 AM UTC-3 theok...@gmail.com wrote:
>
>>   That worked! Thank you! I just had to put quotes around the tiddler 
>> title.
>>
>> On Monday, August 30, 2021 at 9:32:20 AM UTC-4 cj.v...@gmail.com wrote:
>> G'day,
>>
>> If you are using "{{}}" for transclusion, try the transclude widget 
>> instead with mode = "block" *(i.e.  <$transclude 
>> tiddler=your_tiddler's_title mode="block"/>).*
>>
>>
>>
>> On Monday, August 30, 2021 at 9:32:20 AM UTC-4 cj.v...@gmail.com wrote:
>>
>>> G'day,
>>>
>>> If you are using "{{}}" for transclusion, try the transclude widget 
>>> instead with mode = "block" *(i.e.  <$transclude 
>>> tiddler=your_tiddler's_title mode="block"/>).*
>>>
>>>
>>>
>>> On Monday, August 30, 2021 at 10:20:32 AM UTC-3 theok...@gmail.com 
>>> wrote:
>>>
 @ TW Tones

 Is there a way for this to work with other wikitext after the closing 
 summary? I use a lot of wikitext tables and mine isn't working. By that I 
 mean my "HelloThere" for transclusion is a big table formatted using 
 wikitext.

 On Sunday, August 29, 2021 at 10:38:38 PM UTC-4 TW Tones wrote:

> Actually the summary tag can contain wiki text.
>
> I have used it to allow editing 
> {{tiddlername||$:/core/ui/Buttons/edit}}
>
> HelloThere 
> {{HelloThere||$:/core/ui/Buttons/edit}}
>
> {{HelloThere}}
> 
>
> I also use filtered transclusion to count something and display that 
> in the summary so there is not need to open it if there are no cases (=0)
> Or wrap the whole thing to optionally display
>
> <$list filter="display condition" variable=nul emptyMessage="No 
> details message">
> HelloThere 
> {{HelloThere||$:/core/ui/Buttons/edit}}
>
> {{HelloThere}}
> 
> 
>
> Regards
> Tones
> On Monday, 30 August 2021 at 07:56:32 UTC+10 cj.v...@gmail.com wrote:
>
>> Not only can summary be styled, but details can be styled too, as per 
>> this snippet from the tiddlers included in that earlier attachment of 
>> mine:
>>
>> <*details* style="background-color:white;border:1px solid 
>> lightgray;">
>>   <*summary* 
>> style="font-size:1.5em;background-color:white;border:1px solid 
>> lightgray;">{{!!title}}<$link>*
>>
>> <$transclude tiddler=<> mode="block"/>
>> 
>>
>> On Sunday, August 29, 2021 at 6:50:24 PM UTC-3 theok...@gmail.com 
>> wrote:
>>
>>> To add to what @David Gifford said I've been tinkering with the 
>>> details html element today. They documentation I was reading said it 
>>> didn't 
>>> support any attributes besides open/close.
>>>
>>> BUT...  I discovered SUMMARY which is used to change it's name DOES.
>>>
>>> 
>>> >> style="background-color:green;color:white;font-weight:bold;width:220px;">TESTING
>>>  
>>> DETAILS STYLES
>>>
>>> Testing a bunch of testing text. a bunch and more and more and more.
>>> 
>>>
>>> On Sunday, August 29, 2021 at 11:39:51 AM UTC-4 cj.v...@gmail.com 
>>> wrote:
>>>
 Hoo Nelly, I'm not an Emacs Org-Mode guy, so that is all 
 gobbledygook to me.

 There is a sweet spot for adequate WikiText:

- complex WikiText formatting markup is bad
- not enough simple WikiText formatting markup is bad
- too much simple WikiText formatting markup is bad
- not enough depends on the person; too much also depends on 
the person

 That can be a drag when one needs some complicated formatting that 
 isn't available in WikiText (or whatever markup).

 But having to fall back on HTML/CSS isn't so bad.  With TiddlyWiki, 
 it can be plug and play.  Grab somebody else's HTML/CSS, drop it in 
 some 
 tiddlers, and forget about it.

 Ideally, any HTML 

[tw5] Re: Reboot of Subsume plugin

2021-09-02 Thread Flibbles
Hey David Gifford,

Flibbles again. Just wondering if there was some problem with Relink that 
was preventing the integration. Unless Relink is causing some sort of 
glitch, I would have thought integrating our two plugins would have been 
easy peasy using the whitelist method. What was going wrong?

-Flibbles

On Tuesday, August 17, 2021 at 11:41:09 AM UTC-4 David Gifford wrote:

>
> Hi everyone
>
> I have rebooted the Subsume plugin rather than updating it. (
> https://giffmex.org/gifts/subsume.html)
>
> The good news is that it now includes a way to have a subsume with an edit 
> button. I like this way better than the regular subsumes with links.
>
> The bad news is that the integration with the relink plugin was causing me 
> problems, making the installation process more convoluted, and potentially 
> causing problems for users for the future. So I removed the relink-related 
> tiddlers, and also made integration with the edit-comptext plugin an 
> optional feature, with new instructions. 
>
> This is the best I can do with this. My apologies for any inconveniences 
> to anyone who uses Subsume and likes the the relink feature. And my thanks 
> to flibbles for catching part of the problem, after which I found other 
> complications as well.
>
> Blessings, Dave
>
>
>

-- 
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/ad8933e3-d1bf-4d52-b477-66dbfc2c23adn%40googlegroups.com.


[tw5] yuml.de for simple UML diagrams

2021-09-02 Thread Charlie Veniot
Drag the attached JSON into TiddlyWiki.com

In the imported tiddlers, you'll see that I've just setup static diagrams 
as external image tiddlers.

It would be easy enough for an enterprising person to create dynamic 
diagrams based on existing tiddlers and some filtering magic.

Food for thought in case anybody is interested in that kind of stuff.

-- 
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/76f047aa-9fc3-4d77-b3d7-2d5493c9a468n%40googlegroups.com.


yuml.deForSimpleUmlDiagrams.json
Description: application/json


[tw5] Re: Scrollable Sidebar Tabs?

2021-09-02 Thread amreus
Since I can't reply there, Eric Shulman posted a pure css solution onthe 
talk forum:

https://talk.tiddlywiki.org/t/tw5-scrollable-sidebar-tabs/68/4

Thanks Eric!


On Monday, August 16, 2021 at 10:59:09 PM UTC-4 TW Tones wrote:

> Thanks for Sharing I will test it out!
>
> Tones
>
> On Tuesday, 17 August 2021 at 02:08:37 UTC+10 amreus wrote:
>
>> The attached is a sample of a scrollable More/All tab. Import it to 
>> tiddlywiki.com.  I just think it it's a better experience than having 
>> the entire sidebar scroll.
>>
>> I think an issue might be what height do you set the scrollble part to? 
>> Could it be calculated from the existing sidebar-segments?
>>
>> <$scrollable class="tc-scrollable-demo">
>> <$list filter={{$:/core/Filters/AllTiddlers!!filter}} 
>> template="$:/core/ui/ListItemTemplate"/>
>> 
>>
>> On Monday, August 16, 2021 at 10:43:19 AM UTC-4 amreus wrote:
>>
>>>
>>> Another style question - is there one place where I can make all the 
>>> sidebar tabs scrollable, or does each tiddler tagged $:/tags/SideBar 
>>> and  $:/tags/MoreSideBar need to wrapped in a scrollable widget?
>>>
>>> Thanks. 
>>>
>>> I think all of the sidebar tabs should be scrollable by default so the 
>>> entire sidebar does not scroll out of view. Or maybe all of the 
>>> SidebarSegments above the tabs should be fixed position.
>>>
>>>
>>>
>>>

-- 
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/cb0543f4-350f-489a-872f-0c74a4b88ad0n%40googlegroups.com.


[tw5] Re: How to use this plugin I paste the url and click create button nothing happens

2021-09-02 Thread Joost
Instructions:

- Drag and drop the JSON file in Tiddlywiki for enabling within Tiddlywiki 
(import function)
- Make sure you have a valid apiflash.com API key and it is entered within 
Tiddlywiki
- After you added a bookmark (not all websites work) you unfortunately have 
to refresh Tiddlywiki
- If you can't see/find the tiddler, go to "more > all" and see if the new 
tiddler is showing 

Op donderdag 2 september 2021 om 14:13:41 UTC+2 schreef imleg...@gmail.com:

> https://github.com/akhater/TiddlyWiki-EasyBookmark this plugin
>
>
> On Tuesday, August 31, 2021 at 10:54:19 PM UTC+8 PMario wrote:
>
>> Hi,
>> If you could be more specific, what "this plugin" is, we would probably 
>> be able to help you.
>> -m
>>
>

-- 
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/2f2a85ce-64c9-47c6-abde-3acbb61bfb02n%40googlegroups.com.


[tw5] Re: How to use this plugin I paste the url and click create button nothing happens

2021-09-02 Thread imleg...@gmail.com
https://github.com/akhater/TiddlyWiki-EasyBookmark this plugin


On Tuesday, August 31, 2021 at 10:54:19 PM UTC+8 PMario wrote:

> Hi,
> If you could be more specific, what "this plugin" is, we would probably be 
> able to help you.
> -m
>

-- 
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/1739bacd-7034-4373-89cd-358ef239d663n%40googlegroups.com.


[tw5] Re: implementing external image path in shiraz image-card macro?

2021-09-02 Thread Robin Wilson
sorry but I still have problems.  The macrocall syntax suggested by Tony 
and Álvaro does not work, the tiddler displays the code  although with the 
image itself displayed in place of the image filename.  I have tried 
replacing 
img=<>  with img="<>" and even with 
the full path to the image.I think shiraz is installed correctly since 
the standard syntax <  ... >> works fine.  
Is it possible that shiraz macros can't be used with MacroCall ?  Or (more 
likely) the error remains with my incomplete understanding?  

I don't know if it matters but I am using TiddlyDesktop under Linux Mint 
19.3 and TiddlyWiki 5.1.22 with Shiraz 2.4.0

thanks, bye, Robin

PS My registration with Talk TiddlyWiki 5 Discourse is now complete so I 
will continue this discussion, if necessary, over there after this post.  
(i had to use an alternative email address, probably some drastic blocking 
from my work email security settings, the Talk Discourse confirmation email 
never arrived, even in my spam folder)


On Wednesday, 1 September 2021 at 22:01:51 UTC+10 Álvaro wrote:

> I think that you don't "see" the following text before your cited text:
> " *The advantages of the widget formulation are: "* 
>
> I think it is easier to understand by looking at the two codeblocks: In 
> the first block 2 examples with normal syntax and In the second block 3 
> examples with macro call *widget*.
>
> You have to use de widget. In your case, something like the 2nd example of 
> 2nd codeblock. (But you don't have to use the same indirection in a 
> macrocall (widget)
> <$macrocall $name="image-card" img=<>  width="" 
> align="left" *...*
>  
>
> El miércoles, 1 de septiembre de 2021 a las 12:51:12 UTC+2, 
> rwi...@museum.vic.gov.au escribió:
>
>> Hi all
>>
>> I have been using the very handy ximg macro of Tobias Beer [
>> http://tobibeer.github.io/tb5/#External%20Image%20Path]  to provide a 
>> URL where my images live.  Works great, except that I now wish to use  the 
>> image-card macro from the shiraz plugin for more options to display 
>> images.  According to https://tiddlywiki.com/#MacroCallWidget :  
>> Macro parameters are specified as widget attributes, thus allowing 
>> indirection via {{title!!field}}, <> or {{{filter}}}
>>
>> so i have tried including <> within the standard 
>> syntax  
>> <> title:"" text:"" footer:"" pos:"top" alt:"">> 
>>
>> to get
>>
>> <>"  width:"" align:"left" 
>> caption:"" title:"" text:"" footer:"" pos:"top" alt:"">>
>>
>> but having tried various modifications I now surmise that nesting 
>> MacroCallWidgets is not allowed.  Nor could I find this addressed in the 
>> group archives
>>
>> No doubt the solution is dead simple but not for beginners like me.  I'd 
>> be grateful for help
>>
>> very many thanks, Robin
>>
>> [I would have posted this to the new Talk Tiddlywiki discourse but I'm 
>> _still_ waiting for my confirmation email to complete registration]
>>
>>
>>
>>
>>

-- 
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/315fcd2e-5374-4f08-b548-ed47dd15a58fn%40googlegroups.com.