[tw5] Re: Show user field on each Tiddler

2021-04-08 Thread Stefan Schlechter
Hello Anders, nice, it works! Thank you, Stefan Anjar schrieb am Freitag, 9. April 2021 um 00:54:21 UTC+2: > Hi, > > To move it to the right, wrap it in a div (you may want to play with the > padding) > > <$list filter="[all[current]has:field[published]]"> > {{!!published}} > > > And to

Re: [tw5] Re: Presenting: HackSearch - Find that shadowtid!

2021-04-08 Thread Mohammad Rahmani
Thank you Mat! Two ignorable comments - put version number and date on the first page - the table in Page tab overflows over the right border of tiddler, may be a max-width:100% could help Best wishes Mohammad On Fri, Apr 9, 2021 at 3:49 AM Mat wrote: > HackSearch updated!

Re: [tw5] Getting backlinks from shadow tiddlers

2021-04-08 Thread Mohammad Rahmani
Here Soren likes to distribute a book using plugin. There were other requests to have a plugin subtype or similar mechanism to distribute presentations, lecture notes, etc.. So, with reference to discussion on GitHub https://github.com/Jermolene/TiddlyWiki5/discussions/5462#discussion-2560493 and

[tw5] Re: VIEWTEMPLATETIDDLER

2021-04-08 Thread Brian Radspinner
Check out $:/core/ui/ViewTemplate, but the code may be talking about a custom ViewTemplate tiddler, or a tiddler that is supposed to be tagged with "$:/tags/ViewTemplate", or something else. Please post some more details about what you are trying to do, for clarification. On Thursday, April 8,

[tw5] Re: VIEWTEMPLATETIDDLER

2021-04-08 Thread Sapphireslinger
Ouch. Didn't mean to leave the subject in CAPS. Sorry. On Friday, April 9, 2021 at 11:47:32 AM UTC+8 Sapphireslinger wrote: > May I ask where Tiddlywiki's "VIEWTEMPLATETIDDLER" is? > > I was given some code which contains "$param="VIEWTEMPLATETIDDLER" and I > can not find it. > > Does it make a

[tw5] VIEWTEMPLATETIDDLER

2021-04-08 Thread Sapphireslinger
May I ask where Tiddlywiki's "VIEWTEMPLATETIDDLER" is? I was given some code which contains "$param="VIEWTEMPLATETIDDLER" and I can not find it. Does it make a difference if I am using muuri? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw5] Re: Getting backlinks from shadow tiddlers

2021-04-08 Thread Soren Bjornstad
Thanks for the tips, and for the submitted feature request! Since in this case I know what plugin tiddler the backlinks will be coming from, I was able to hack together a version that comes at the links from the other direction, which presumably isn't terribly performant but seems to work all

[tw5] Re: Presenting: HackSearch - Find that shadowtid!

2021-04-08 Thread Mat
HackSearch updated! The main news is a search mechanism that lets you save custom search words for specific tiddlers. Avoid *"Gaaah! I can't find it, again!"* <:-) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw5] Re: Show user field on each Tiddler

2021-04-08 Thread Anjar
Hi, To move it to the right, wrap it in a div (you may want to play with the padding) <$list filter="[all[current]has:field[published]]"> {{!!published}} And to bring it to the top, add a field called "list-before" and set the value to "$:/core/ui/ViewTemplate/body" Best, Anders torsdag 8.

[tw5] Re: Getting backlinks from shadow tiddlers

2021-04-08 Thread si
@Soren It's ugly, and maybe you have already thought of it, but you could try something like this: <$list filter="[all[current]]"> <$vars lb="[[" rb="]]"> <$vars search-term={{{ [addsuffixaddsuffix] }}} > <$list filter="[all[shadows]search]"> <$link> <> You could use the regex operator to

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

2021-04-08 Thread Mat
So, I watch these types of clips every now and then: Log carving robot and Automatic Hydroponic . Filled with envy of their competence I sometimes think "One day I will do that too" but I know it's a

[tw5] Re: trying to set tags to {{!!title}}

2021-04-08 Thread Geert Geurts
Sweet! Tones you've made my day! Thanks allot! Geert On Thursday, 8 April 2021 at 10:09:23 UTC+2 TW Tones wrote: > Geert, > > The are a number of ways to achieve this here is one, inside a macro we > can use substitution variables. > \define newhere() > <$button> <$action-sendmessage

Re: [tw5] Getting backlinks from shadow tiddlers

2021-04-08 Thread Jeremy Ruston
Hi Soren I can confirm that the backlinks operator does not currently consider links from shadow tiddlers. There would be performance and backwards compatibility implications to changing the default, but we could consider adding an option/switch. I've created a GitHub ticket here:

[tw5] The sorting order mystery!?

2021-04-08 Thread Mat
Copy-past the below code e.g on tiddlywiki.com , and look at it in editor preview and hide the sidebar. *What causes the different sorting orders in the two lists?* I.e when the $:/tags/ViewTemplate has no list content (as deleted with the button), why are the items not equally sorted?

Re: [tw5] Re: Reveal fields on View mode

2021-04-08 Thread Mohammad Rahmani
Mark I think the below works <$vars newFieldNameTiddler=<> newFieldValueTiddler=<> searchListState=<> storeTitle=<> ><$transclude tiddler="$:/core/ui/EditTemplate/fields"/> By way not sure if we meet all requirements or not ;-) Also this works (copied from TW core editviewtemplate ui

[tw5] Re: Getting backlinks from shadow tiddlers

2021-04-08 Thread Mat
I would think this is accomplishable with the filter ops: shadowsource and/or plugintiddlers <:-) On Thursday, April 8, 2021 at 8:01:14 PM UTC+2 Soren Bjornstad wrote:

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

2021-04-08 Thread Mohammad Rahmani
On Thu, Apr 8, 2021 at 10:29 PM TiddlyTweeter wrote: > Mohammad wrote > >> One reason is I love it because it is mine! >> > > Right! > I could not agree more! > It is not on the cloud! It is on your own machine! It is yours! You can do many customization! No need to ask others to allow you to

[tw5] Re: Splitregexp at : but not at $:

2021-04-08 Thread Mat
@Saq, much appreciated. Your filter is good but/and thanks to it I realized I need a "split*before*regexp". The idea is to use it to extract things in a dictionary so I circumvented the "$*:*/" issue by instead searching for colon+space. This is less than optimal because users might not stick

Re: [tw5] Re: Reveal fields on View mode

2021-04-08 Thread Mohammad Rahmani
Good start Mark, The current fields are displayed New fields can be added the field name does not filter names as you type enter key on adding the new fields works other shortcuts does not work Best wishes Mohammad On Thu, Apr 8, 2021 at 10:50 PM 'Mark S.' via TiddlyWiki <

[tw5] Re: Reveal fields on View mode

2021-04-08 Thread 'Mark S.' via TiddlyWiki
As a start: <$fieldmangler> <$vars newFieldNameTiddler=<> newFieldValueTiddler=<> > <$transclude tiddler="$:/core/ui/EditTemplate/fields"/> On Thursday, April 8, 2021 at 10:35:03 AM UTC-7 Mohammad wrote: > In the Utility plugin there is a > button on

[tw5] Getting backlinks from shadow tiddlers

2021-04-08 Thread Soren Bjornstad
Is there any way I can obtain backlinks that exist within shadow tiddlers (i.e., tiddler B is a shadow tiddler that links to tiddler A, and I want to see that link with, e.g., [[A]backlinks[]])? I've placed most of the content of *Grok TiddlyWiki *in a plugin to make it easy to update in the

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

2021-04-08 Thread TiddlyTweeter
Mohammad wrote > One reason is I love it because it is mine! > Right! I could not agree more! 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

[tw5] Reveal fields on View mode

2021-04-08 Thread Mohammad Rahmani
In the Utility plugin there is a button on the sidebar that on click shows the fields under subtitle and above the text of tiddler. To simplify it I decided to transclude the core tiddler e.g *$:/core/ui/EditTemplate/fields* in my own tiddler as below and

[tw5] Re: Show user field on each Tiddler

2021-04-08 Thread Stefan Schlechter
Hello Anjar, thanks - this works :-) And how do I get the field to to right top? [image: Image.png] Thanks Stefan Anjar schrieb am Donnerstag, 8. April 2021 um 16:13:29 UTC+2: > Hi Stefan, > > Try removing the space inside the filter; i.e. > > <$list

Re: [tw5] Hangouts - still going?

2021-04-08 Thread Jeremy Ruston
Hi David, David, I’d be interested to restart the hangouts again. I revived them last year with terrible timing, we kicked them off 10 days before I got COVID: https://groups.google.com/g/tiddlywiki/c/GBgXVMmtQdo/m/_Ul0D11lAQAJ We then restarted them for a few weeks when I recovered, but then

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

2021-04-08 Thread Mohammad
With all the pros of other tools, I don't know why I stick to my gun (Tiddlywiki). One reason is I love it because it is mine! -- 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,

[tw5] Re: Mem

2021-04-08 Thread David Gifford
@Mark, my point in sharing is not to recommend the app as opposed to TiddlyWiki or even to recommend it at all. Same for my post a moment ago regarding Supernotes. My point is simply that we can use some aspects of these sites as inspiration for TiddlyWiki. On Thursday, April 8, 2021 at

[tw5] Supernotes

2021-04-08 Thread David Gifford
Yet another notetaking app! This looks very similar to TiddlyWiki both in the notecard idea and the non-hierarchical focus. And it is a source of inspiration for ideas of what could be done in TiddlyWiki. Things to try in Supernotes: - type the / in a note to call up a popup to add elements. -

[tw5] Re: Mem

2021-04-08 Thread 'Mark S.' via TiddlyWiki
Well, there's no "there" there -- we're only allowed to see a video. Whenever an app allows collaboration, it means a server is running somewhere. Which means someone has to pay for the server, and that your data might be exposed on the cloud. Which means there will likely be a cost for the

[tw5] Re: Show user field on each Tiddler

2021-04-08 Thread Anjar
Hi Stefan, Try removing the space inside the filter; i.e. <$list filter="[all[current]has:field[published]]"> {{!!published}} Best, Anders torsdag 8. april 2021 kl. 15:18:35 UTC+2 skrev schlechter...@gmail.com: > Hello Odin, > > Thanks for your tip - but it's not working. > What I'm doing

[tw5] Re: Show user field on each Tiddler

2021-04-08 Thread Stefan Schlechter
Hello Odin, Thanks for your tip - but it's not working. What I'm doing wrong? [image: published_nok.png] Thanks Stefan Odin schrieb am Mittwoch, 7. April 2021 um 21:43:27 UTC+2: > Hi! > > This can be achieved with the $:/tags/ViewTemplate tag. Make a tiddler > tagged with

[tw5] Re: Just a bit of a test (extended)

2021-04-08 Thread Hans Wobbe
Reviewing this OLD thread in order to assess the impact of the changes that have emerged as part of the NEW googleGroups On Monday, November 30, 2020 at 7:19:33 AM UTC-5 TiddlyTweeter wrote: > Ciao Hans > > The problem will be that we would *add verbiage*. Previously one EDITED > and sent

[tw5] Re: Easy local saving with WebDav

2021-04-08 Thread Mohammad
Hi Mario, Thanks for your hint! Yes the above was a demo to instruct users how to setup a wbdav server. Yes, one should warn users about the credentials used here! Thank you On Thursday, April 8, 2021 at 5:02:38 PM UTC+4:30 PMario wrote: > Hi Folks, > Hi Mohammad, > > PLEASE DON'T use

[tw5] Re: video embedded in modal - how to call with link instead of button?

2021-04-08 Thread Sapphireslinger
Joshua Fontany, Thank you for the explanation. Unfortunately, I don't know how to find my "VIEWTEMPLATETIDDLER". I tried plugging different things like "$:/core/ui/ViewTemplate" and "storyTiddler" into the space and it didn't work. I also tried using your code just like you had it, but that

[tw5] Re: Easy local saving with WebDav

2021-04-08 Thread PMario
Hi Folks, Hi Mohammad, PLEASE DON'T use username: admin and password: admin in your examples without big red letters: Encrypt your passwords or you are f*&%$! There are users out there, which copy/paste configuration examples and think they work. ... But they DON'T!. Mohammand. You used

Re: [tw5] Re: Quick walkthrough of my notetaking process

2021-04-08 Thread Mohammad Rahmani
Best wishes Mohammad On Wed, Apr 7, 2021 at 10:44 PM 'Mark S.' via TiddlyWiki < tiddlywiki@googlegroups.com> wrote: > Just thinking out loud. If the tiddler indexing code could be put in a > template, then it might be possible to write a command line script that > would use nodejs tiddliwiki to

Re: [tw5] Quick walkthrough of my notetaking process

2021-04-08 Thread Mohammad Rahmani
+1 Thank you David! Best wishes Mohammad On Wed, Apr 7, 2021 at 7:18 PM David Gifford wrote: > > There has been a lot of talk about walk-throughs ever since Soren's > wonderful example. > > Here is one of my own. It includes BLTs (formerly L+BL), and Mohammad's > SearchWikis plugin. > >

[tw5] Re: Dear David (giffmex) .... where is your Plugin LIBRARY? :-)

2021-04-08 Thread David Gifford
Thanks TT I think if I start getting more ideas for plugins I will do a plugin library. But so far there are only two: Customizer and its precursor Toggle. Stroll is more like an edition and is a mishmash of other people's plugins. And BLT is just 5 or 6 tiddlers, not even worth the time to

[tw5] Re: inluding macros

2021-04-08 Thread Jean-Pierre Rivière
Many thanks Eric. \import works fine here. I'll be using it for helper macros required by system-wide true macros. That will help clean things. a declaration akin to private for a macro would be a lot better though. Also, when I looked at pragma, it mentions \rules which is used in

[tw5] Spacing in ordered lists in Markdown Tiddlers

2021-04-08 Thread Andy Pastuszak
When I create ordered lists in markdown tiddlers, I get a space between each item in the ordered lists. Creating ordered lists using TW5 does not create these spaces. My Markdown looks like this: 1. List Item 1 2. List Item 2 3. List Item 3 My TW5 looks like this: # List Item 1 # List Item

Re: [tw5] Re: Quick walkthrough of my notetaking process

2021-04-08 Thread stan...@gmail.com
+1 What a great contribution to the TW community - and to me personally. This notetaking process will radically alter how I put together my notes for two book revisions I am working on. Thanks, David. Stan On Wednesday, April 7, 2021 at 5:20:18 PM UTC-4 j.te...@gmail.com wrote: > I'll have

[tw5] Re: inluding macros

2021-04-08 Thread Eric Shulman
On Thursday, April 8, 2021 at 4:09:59 AM UTC-7 jn.pierr...@gmail.com wrote: > On solution to my problem is to tag my sample macro tiddler as a system > macro. > But this has the problems that its macros are now public and their names > must now be made unique. > To avoid creating global

[tw5] Re: inluding macros

2021-04-08 Thread Jean-Pierre Rivière
On solution to my problem is to tag my sample macro tiddler as a system macro. But this has the problems that its macros are now public and their names must now be made unique. I can do that by calling my macro as demo-for-this-and-that instead of just macros (including helpers macros, which

Re: [tw5] Re: Rendering colored symbols

2021-04-08 Thread Mark Salib
Thank you I will give it a try and revert with any follow ups. Cheers! On Thu, 8 Apr 2021, 12:54 Mat, wrote: > Mark, > > after inspecting the code in your file, I'd say Tones suggestion is your > best bet if you want to type the symbols *directly *like you're doing. > I.e in the code it reads >

[tw5] inluding macros

2021-04-08 Thread Jean-Pierre Rivière
Macro should be at the beginning of a tiddler before anything else. IMHO there could be an exception: including macros. Here is my use case: I'm writing a tutorial/how-to about difficulties in TW programming. I illustrate my points with sample macros. I want to show the code within my articles

Re: [tw5] Re: Rendering colored symbols

2021-04-08 Thread Mat
Mark, after inspecting the code in your file, I'd say Tones suggestion is your best bet if you want to type the symbols *directly *like you're doing. I.e in the code it reads 2♥ (which you might have typed as |2♥| to create a table cell ) AFAIK, it is not possible to only color *some

[tw5] Re: Splitregexp at : but not at $:

2021-04-08 Thread Saq Imtiaz
Try this: (? I hope to improve HackSearch with a > *search* field so that users can add custom "search terms" in a > dictionary to find tiddler titles that are used as dictionary indexes e.g > like so: > > $:/core/UI/ViewTemplate/body : body text [[main

[tw5] Splitregexp at : but not at $:

2021-04-08 Thread Mat
I hope to improve HackSearch with a *search* field so that users can add custom "search terms" in a dictionary to find tiddler titles that are used as dictionary indexes e.g like so: $:/core/UI/ViewTemplate/body : body text [[main field]] I.e searching for,

[tw5] Dear David (giffmex) .... where is your Plugin LIBRARY? :-)

2021-04-08 Thread TiddlyTweeter
Ciao David It is really interesting watching how in the last 6 months or so, much of you flowers in TW--to everyone's good. Looking at your own invaluable, vast, creation, TiddlyWiki Toolmap , I see a lot of good " giffmex

[tw5] Re: Quick walkthrough of my notetaking process

2021-04-08 Thread TiddlyTweeter
*Are you American?* *Do you deliver BLTs overseas from Mexico?* ** *Back to normal ...* I think you approach is very interesting. It HIGHLIGHTS the role of* intention*. I think your recent work works well because it is expressing a clear orientation! Thumbs up! Best wishes, TT -- You

Re: [tw5] Re: Quick walkthrough of my notetaking process

2021-04-08 Thread Naveen Roy Vikkram
Thanks David! I think that's good enough for me to get started with linking and tags. Appreciate your help. On Wednesday, April 7, 2021 at 11:44:06 PM UTC+1 David Gifford wrote: > @Julio - do you want extra cheese on that order? :-) > > @Naveen - I don't think that it matters too much whether

[tw5] Last Wednesday On Github ...

2021-04-08 Thread TiddlyTweeter
I've been working on search tools to help find what we need to find more exactly ... *I'll eventually provide a tool. * BUT, actually, URL searches are the basis of many search engines and are EASY to benefit from if you know what to enter ... For instance, finding "Last" + "Wednesday" in

[tw5] Re: Splitting text to grab @strings to make some tags

2021-04-08 Thread Saq Imtiaz
{{{ [enlistprefix[@]removeprefix[@]] }}} is identical to {{{ [enlistremoveprefix[@]] }}} Depending on how the input text will be used, the change in syntax may have significant consequences for rendering of links, finding backlinks and freelinks etc. On Thursday, April 8, 2021 at 10:33:04 AM

[tw5] Re: Splitting text to grab @strings to make some tags

2021-04-08 Thread TW Tones
Diego, Try this below, notice the subtle difference in annotation for the spaced tiddler? Then in the remove prefix we are talking about the tiddlername. \define input() aribrart text .. .etc. # ... @title1 @title2 [[@title with space]] {{{ [enlistprefix[@]removeprefix[@]] }}} Regards

Re: [tw5] Possible [Bug] in add-tm-field and add-tm-tag widget messages

2021-04-08 Thread Mohammad Rahmani
Bug was filed on GitHub https://github.com/Jermolene/TiddlyWiki5/issues/5593 Best wishes Mohammad On Thu, Apr 8, 2021 at 12:08 PM Mohammad wrote: > 1. Open https://tiddlywiki.com/ > 2. Create a new tiddler with below text > > > <$button>Tag me > <$fieldmangler tiddler=MyTiddler> > <$list

Re: [tw5] Re: Possible [Bug] in add-tm-field and add-tm-tag widget messages

2021-04-08 Thread Mohammad Rahmani
On Thu, Apr 8, 2021 at 12:50 PM TW Tones wrote: > Mohammad, > > I reproduced this my self also in preview mode of FieldMangler Widget > (Examples ) > on tiddlywiki.com. > Ah yes, Tiddlywiki has the same example! > > This is without

Re: [tw5] Re: Rendering colored symbols

2021-04-08 Thread TW Tones
Mark, Has your computer got a unicode aware font? When displaying unicode characters you must have a local font that defines them visually, if not a webfont or browser font. some have enhanced a range of symbols to be larger and coloured etc... Regards Tones On Thursday, 8 April 2021 at

[tw5] Re: Mem

2021-04-08 Thread 'Florian Felix' via TiddlyWiki
Well, so that’s where TW struggles ._. David Gifford schrieb am Mittwoch, 7. April 2021 um 05:28:49 UTC+2: > > Here is some food for thought. Mem, a new notetaking and collaboration app. > > Coolest items: Collaboration is super easy. Saving from the web is easy. > Pasting from Mem to another

[tw5] Re: Possible [Bug] in add-tm-field and add-tm-tag widget messages

2021-04-08 Thread TW Tones
Mohammad, I reproduced this my self also in preview mode of FieldMangler Widget (Examples ) on tiddlywiki.com. This is without creating a new tiddler. Yes, I think it is a bug, perhaps as a result of the tiddler being in draft

[tw5] Re: trying to set tags to {{!!title}}

2021-04-08 Thread TW Tones
Geert, The are a number of ways to achieve this here is one, inside a macro we can use substitution variables. \define newhere() <$button> <$action-sendmessage $message="tm-new-tiddler" title=<> text="" tags="[[$(currentTiddler)$]]" /> New Tiddler \end <> But this button already exists in the

Re: [tw5] Re: Easy local saving with WebDav

2021-04-08 Thread 'Florian Felix' via TiddlyWiki
Ok, but my Nextcloud is actually not local.. I was looking at rsync before, especially because you can do so many services with it and even from android via termux. right now I’m just using syncthing though, it’s kind of cool Javier Rojas schrieb am Dienstag, 30. März 2021 um 05:17:41 UTC+2:

[tw5] Possible [Bug] in add-tm-field and add-tm-tag widget messages

2021-04-08 Thread Mohammad
1. Open https://tiddlywiki.com/ 2. Create a new tiddler with below text <$button>Tag me <$fieldmangler tiddler=MyTiddler> <$list filter="one two" variable=item> <$action-sendmessage $message="tm-add-field" $param=<>/> 3. don't save and open preview pan 4. click on the button 5. MyTiddler is

[tw5] trying to set tags to {{!!title}}

2021-04-08 Thread Geert Geurts
Hi All I'm trying to create a button which pressing it creates a tiddler tagged with the title of the tiddler where the button resides. So I have a tiddler named "New Tiddler" with a button. Once I click this button I want to get a new tiddler tagged "New Tiddler". I cam this far: <$button>

Re: [tw5] Re: Rendering colored symbols

2021-04-08 Thread Mark Salib
Hi guys, thanks for the responses. I have attached a sample below. On my laptop all card symbols are black :) Thanks again! On Sun, Mar 28, 2021 at 3:40 AM R² wrote: > Hi Mark, > > If as Mark mentioned, these are indeed UTF-8 symbols, TW is very good at > leveraging CSS for these kinds of ends.

Re: [tw5] Re: Hangouts - still going?

2021-04-08 Thread David Bovill
Right. It’s the way of things. Anyone expressed interest in organising this - that is helping to form a podcast / hangout team to support Jeremy doing this - or am I the first person asking :) On 7 Apr 2021, 23:55 +0100, David Gifford , wrote: > Jeremy started them back up last Spring after a

[tw5] Re: Splitting text to grab @strings to make some tags

2021-04-08 Thread Saq Imtiaz
I realized that the solution I posted above only works for my use case where the tags are on a line of their own. I am sure someone with better RegExp prowess can improve on this significantly, but this should work: <$vars text="""this is some aribrart text .. .etc. # ... @title1