Re: [tw5] Re: Favorites plugin: new update 3.1.0

2021-05-15 Thread pack...@gmail.com
Editted, after following Odin advice: I changed the first four lines in $:/plugins/kookma/favorites/styles/image.css to .tc-tiddler-controls .notselected .tc-image-favorites-button { stroke: #fff; fill:#fff; } and it works, the heart icon has white stroke (same as other icon). But if

Re: [tw5] search operator can't search in field of tiddlers with type:application/pdf

2021-05-15 Thread Jeremy Ruston
Hi Odin I couldn't duplicate this problem on tiddlywiki.com, so I think it might be a problem with RefNotes. I edited the tiddler "Motovun Jack.pdf" to add a field called "something" with the text "now", and then tried "[search:something[now]]" in the advanced search "Filter" tab. As

Re: [tw5] [Comment] Data Dictionaries are GOOD for some things ...

2021-05-15 Thread TiddlyTweeter
Mohammad wrote ... > > In the Todolist plugin which is highly based on dataTiddler you can enter > any kind of wikitext! > It even uses macro calls like <> to show an icon for todo item! > So, yes this part needs to be documented much better, many do not know! > *Right!* It is also worth

Re: [tw5] Streams 0.21 is now available - streams 0.212 quirks and workarounds

2021-05-15 Thread PMario
On Saturday, May 15, 2021 at 8:46:36 AM UTC+2 Saq Imtiaz wrote: > Note that all toolbar buttons that do not implement a dropdown are usable > via keyboard shortcuts even when the toolbar is turned off in the Streams > settings. > @Saq *How did you implement that?* I always thought, buttons

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Saq Imtiaz
Below are three different ways to do this using reduce and without wikify. The last one uses a custom filter printf[] that is attached. Note that you can use a tiddler for your template as well. *#1 - addprefix galore* <$button> save to a single tiddler <$vars lb=" "> <$action-setfield

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Odin
Thank you Saq for the solutions!! Helps a lot : ) @Mohammed, I did try a search in the TW-scripts. So I think I will add a pull request to include Saq's solutions soon! Op zaterdag 15 mei 2021 om 11:46:45 UTC+2 schreef Anjar: > Hi, > > This would be very easy if we had a general way to

Re: [tw5] Re: Favorites plugin: new update 3.1.0

2021-05-15 Thread Mohammad Rahmani
Hi Pak and Odin, Yes, part of coloring is done inside macros! I will have a look and fix it! Stay tuned! Best wishes Mohammad On Sat, May 15, 2021 at 11:02 AM pack...@gmail.com wrote: > Mohammad, I think this is setting in the core. To see the issue, go to >

Re: [tw5] Streams 0.21 is now available - streams 0.212 quirks and workarounds

2021-05-15 Thread Saq Imtiaz
@pmario The buttons are just hidden with CSS ;) That's why the popup's don't work, they need the button element to have a position. On Saturday, May 15, 2021 at 1:24:19 PM UTC+2 PMario wrote: > On Saturday, May 15, 2021 at 8:46:36 AM UTC+2 Saq Imtiaz wrote: > >> Note that all toolbar buttons

Re: [tw5] Re: Favorites plugin: new update 3.1.0

2021-05-15 Thread pack...@gmail.com
Mohammad, I think this is setting in the core. To see the issue, go to https://kookma.github.io/TW-Favorites/#%24%3A%2Fcore%2Fui%2FControlPanel%2FSettings%2FToolbarButtonStyle (your demo site). Change setting to "Rounded". The heart is still grey while other icons change to white. Perhaps

Re: [tw5] Streams 0.21 is now available - streams 0.212 quirks and workarounds

2021-05-15 Thread Saq Imtiaz
Thanks Fred, I've pushed an update that resolves this. This is a bug arising from an incomplete implementation. The original idea was for the streams editor toolbar to have its own configuration panel. See:

[tw5] Combine tiddlers into one

2021-05-15 Thread Odin
I have a series of notes on a subject I want to archive by putting them into one tiddler, so I can remove the individual tiddlers. I am trying to make a button to do this. With this filter, it brings the desired effect. If you copy this to tiddlywiki.com, it will combine all tiddlers with the

[tw5] Re: Hard-replace macros at tiddler save

2021-05-15 Thread Anjar
Another use case was just posted (on how to combine the text from several tiddlers into a single tiddler so that the original tiddlers can be deleted): https://groups.google.com/g/tiddlywiki/c/xTCzMIj0uqs Good solutions were suggested, but it would also be very simple to just write <<>> and

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Saq Imtiaz
@TT what form would such a macro take? Just to display combined text, or save it somewhere? And in what format/structure? If the majority of requests have a lot in common then it is easier to create a generic solution. Otherwise it might be better to try to raise awareness of the underlying

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Mohammad Rahmani
Odin, I have not read your post but search the Forum! There is long thread discussed this and Jed Carty provided some good solutions for this! Best wishes Mohammad On Sat, May 15, 2021 at 1:21 PM Odin wrote: > I have a series of notes on a subject I want to archive by putting them > into

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Anjar
Hi, This would be very easy if we had a general way to hard-replace macros at tiddler save; see https://groups.google.com/g/tiddlywiki/c/crnjiJ4Spq4 (I'm mentioning it here since google groups doesn't show backlinks..) Best, Anders lørdag 15. mai 2021 kl. 11:41:31 UTC+2 skrev

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread TiddlyTweeter
saq.i...@gmail.com wrote: > Below are three different ways to do this using reduce and without > wikify. The last one uses a custom filter printf[] that is attached. > Note that you can use a tiddler for your template as well > *You are a very clever man! * A published generic APPEND macro

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Saq Imtiaz
So with the printf[] operator I attached which is not a part of the TW core, $(varname)$ is replaced by a variable called varname if it exists, just like in macros. So in the example above $(accumulator)$ is replaced with the value of the variable accumulator $n$ is replaced by the nth

[tw5] Re: automatically update field

2021-05-15 Thread Joshua Fontany
You could setup your UI as 2 lists, one list to filter the Urgent ones first (with different CSS styling), then another list for non-Urgent tiddlers. You cannot change data in fields automatically, data updates require user interaction (a button with actions, a drag-and-drop, etc). Best,

[tw5] Re: Eric's Calendar : how to choose which of conflicting colors for a day to display?

2021-05-15 Thread Eric Shulman
On Saturday, May 15, 2021 at 12:31:44 PM UTC-7 jacque...@gmail.com wrote: > I'm adopting Eric's TiddlyTools/Time/Calendar. Thanks to him. > I have a problem when conflicting colors happen for a same day. How to > force priority on the color I'd want ? > > *An instance :* > >- I have a

Re: [tw5] Re: Time Tracking in TiddlyWiki?

2021-05-15 Thread paulgilbert2000
Thanks Eric, followed the exact steps you mentioned with the new code, works perfect :) , the action now only takes place in fields for tiddlers assigned an alarm , and not the entire list. cant thank you enough , this was really helpful On Saturday, May 15, 2021 at 5:13:25 PM UTC+2 Eric

[tw5] Re: SyncMechanism Not On Root?

2021-05-15 Thread Joshua Fontany
Hi Kevin, This should point you in the right direction: https://tiddlywiki.com/#Using%20a%20custom%20path%20prefix%20with%20the%20client-server%20edition Best, Joshua Fontany On Thursday, May 13, 2021 at 4:10:16 PM UTC-7 kleinfelt...@gmail.com wrote: > How can I configure the SyncMechanism

[tw5] Eric's Calendar : how to choose which of conflicting colors for a day to display?

2021-05-15 Thread Jacques Turbé
Hello, I'm adopting Eric's TiddlyTools/Time/Calendar. Thanks to him. I have a problem when conflicting colors happen for a same day. How to force priority on the color I'd want ? *An instance :* - I have a timeline for team members absences, coded "OldLace". Fred is not available

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Mohammad Rahmani
On Sat, May 15, 2021 at 8:33 PM Saq Imtiaz wrote: > Just in the interest of thoroughness, option 3 from my post above can be > further simplified to: > > <$button> save to a single tiddler > <$vars template=" > $(accumulator)$ > !! $0$ > > $1$ > "> > <$action-setfield $tiddler="report" text={{{

Re: [tw5] Streams 0.21 is now available

2021-05-15 Thread si
>>> Thanks I realised the Context Menu has some customisation. However it assumes a button/action where I may just want to display something conditionally. I could use a popup to contain something a bit like the rename, but more info, but I am interested in placing a tag pill or button

Re: [tw5] Re: TiddlyMap vs. Stroll

2021-05-15 Thread David Gifford
Slowdown of TiddlyWiki. On Saturday, May 15, 2021 at 11:25:31 AM UTC-5 19y...@googlemail.com wrote: > Do you mean slowdown in terms of a lack of responsiveness of your > Tiddlywiki (for example you have to wait longer when you a open a tiddler) > or slowdown in terms of a slowdown of your

[tw5] Re: Eric's Calendar : how to choose which of conflicting colors for a day to display?

2021-05-15 Thread Jacques Turbé
Thanks for your fast answer, Eric. I think I've understood. I'll try and test tomorrow (middle of night here), and report. Le samedi 15 mai 2021 à 22:53:53 UTC+2, Eric Shulman a écrit : > On Saturday, May 15, 2021 at 12:31:44 PM UTC-7 jacque...@gmail.com wrote: > >> I'm adopting Eric's

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread TiddlyTweeter
saq.i...@gmail.com wrote: > @TT what form would such a macro take? Just to display combined text, or > save it somewhere? And in what format/structure? TBH I am not sure. I'm not really a programmer. The underlying issues are opaque to me. I can only see the surface clearly. What I DO know

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Mohammad Rahmani
On Sat, May 15, 2021 at 2:24 PM Odin wrote: > Thank you Saq for the solutions!! Helps a lot : ) > > @Mohammed, I did try a search in the TW-scripts. So I think I will add a > pull request to include Saq's solutions soon! > Thank you Odin! also feel free to email me the tiddlers if you like! >

Re: [tw5] Does the "text" field store data differently to other fields?

2021-05-15 Thread si
Sorry to bump this but I did a little test and looked at the source to see how the data was stored. I create a tiddler like this: [image: tiddler.png] Then I used action-setfield to move the text to a field called "test". When I looked at the source I saw this: [image: source-div.png] So it

[tw5] Re: Commercial or Open Source Tiddly Wiki for the following

2021-05-15 Thread Odin
Hi! There are some themes documented at https://tiddlywiki.com/#Community. And also at: https://links.tiddlywiki.com/topics/themes/. Most of them come with a licence, so you can have a look at it to see if it fits your needs. The plugin shiraz

Re: [tw5] Re: Browse Widget question

2021-05-15 Thread Charlie Veniot
The one problem with having that iframe thingy in the TiddlyWiki (hey, a rhyme!) : if you click on any link to a picture by mistake, the current web page (i.e. your TiddlyWiki) will navigate to the image. It might make more sense to have to browser windows open side-by-side. One browser

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Mohammad Rahmani
WOW, great solution Saq! If we could have some good CSS for print in TW, then we could produce wonderful output in PDF format! Best wishes Mohammad On Sat, May 15, 2021 at 2:11 PM Saq Imtiaz wrote: > Below are three different ways to do this using reduce and without > wikify. The last one

Re: [tw5] Re: Shiraz plugin new release 2.3.0

2021-05-15 Thread Mohammad Rahmani
Pall, In dynamic table currentRecord is equivalent to currentTiddler. In the example I sent you it only cares about links and backlinks not other types of nodes like tagging! but you can add them! I will add examples to Shiraz Demo later! But it seems you have been able to get template work for

Re: [tw5] Re: TiddlyMap vs. Stroll

2021-05-15 Thread '19yc93' via TiddlyWiki
Do you mean slowdown in terms of a lack of responsiveness of your Tiddlywiki (for example you have to wait longer when you a open a tiddler) or slowdown in terms of a slowdown of your workflow in general? David Gifford schrieb am Samstag, 15. Mai 2021 um 02:57:16 UTC+2: > Hey 19! > > Every time

[tw5] Commercial or Open Source Tiddly Wiki for the following

2021-05-15 Thread Java Development
Hi, I'm looking for a commercial or open source tiddly wiki templates or html file for the following subjects 1. Stories Theme - where huge amount of storied with already defined theme to be followed. Beautiful theme for have stories alone 2. Categorization Theme - Lots of information to be

Re: [tw5] Re: Shiraz plugin new release 2.3.0

2021-05-15 Thread Pall Sigurdsson
Hello Mohammad, Your template returned always the string "backlink", also in the case of forward links. In addition to links and backlinks I also wanted to identify child tiddlers, that is tagging tiddlers. I managed to achieve all that by "borrowing" some additional code from the linktype

Re: [tw5] search operator can't search in field of tiddlers with type:application/pdf

2021-05-15 Thread Odin
Hi Jeremy, I am troubleshooting on the TiddlyWiki website, without added plugins. I do think I've found something. Every Tiddler tagged 'Tutorials' has a 'url' field. I set the tiddler 'TW-Scripts by Mohammad' to application/pdf. While using this filter in advanced search filter tab:

Re: [tw5] search operator can't search in field of tiddlers with type:application/pdf

2021-05-15 Thread Mohammad Rahmani
Hi Odin, The Refnotes for noting with search so I think this is not related to Refnotes! On Sat, May 15, 2021 at 6:33 PM Odin wrote: > Hi Jeremy, > > I am troubleshooting on the TiddlyWiki website, without added plugins. I > do think I've found something. > > Every Tiddler tagged 'Tutorials'

Re: [tw5] Re: Time Tracking in TiddlyWiki?

2021-05-15 Thread Eric Shulman
On Friday, May 14, 2021 at 9:53:23 AM UTC-7 mohamed...@hotmail.com wrote: > one more question , if i may, how would this work in a list situation , so > if i am listing a group of tiddlers , i can assign different alarms to > them, but when the action triggers for one alarm it affects all

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Saq Imtiaz
Just in the interest of thoroughness, option 3 from my post above can be further simplified to: <$button> save to a single tiddler <$vars template=" $(accumulator)$ !! $0$ $1$ "> <$action-setfield $tiddler="report" text={{{ [tag[About]] :reduce[printf{!!title},{!!text}] }}}/> However,

Re: [tw5] Re: Demystify drag-N-drop in Tiddlywiki

2021-05-15 Thread TW Tones
Mohammad, Thanks for your work on this. I just wanted to share/dump some thoughts that we may consider. - I support the idea of tiddler per link because there are many ways in which a drag can create a tiddler - Examples include in projectify and Streams, from the side bar,

[tw5] Re: fields inheritance

2021-05-15 Thread TW Tones
Damcal With respect I think you are mixing the design process with the user activity on your wiki. Cloning is a way of rapid duplication and edit, you would be far better served using a template or button to build your "instances" of a standard tiddler. Fortunately in tiddlywiki we can build

[tw5] Re: fields inheritance

2021-05-15 Thread Soren Bjornstad
So it's mostly about renaming things? That's an interesting use case. I guess I have never had the need to do that on a large scale. I wouldn't have expected inheritance to be capable of renaming a field like that, either. I haven't used Tiddler Commander, but renaming a field doesn't really

Re: [tw5] Streams 0.21 is now available

2021-05-15 Thread TW Tones
Si, Thanks for that. I have always liked streams but I am adopting it a lot more now I have my own stream tiddler naming standard, not to mention the ability to drag and drop into and from streams into and from projectify, and other tiddlywiki solutions. Add to this recent discussions on the

Re: [tw5] Re: Time Tracking in TiddlyWiki?

2021-05-15 Thread TW Tones
Eric, I just wanted to let you know I am using Timer tools with projectify, streams and the recent basket (plussa number of my own tools) to build a very nice comprehensive "work a day" solution. Thanks sooo much for this substantial contribution. Once I have settled on my solution I will

Re: [tw5] Experimental Chromium native saver

2021-05-15 Thread TW Tones
Folks, Is there a simple set of instructions to make use of this. I cant see them and don't have a lot of time available to read through the discussion? Personally I am interested in a php implementation. Thanks in advance Tones On Saturday, 15 May 2021 at 00:20:13 UTC+10 PMario wrote: > On

Re: [tw5] Experimental Chromium native saver

2021-05-15 Thread 'Mark S.' via TiddlyWiki
If you're not saving to indexedDB, then how is the path saved? Do your earlier caveats about file:// still apply? If I understand correctly, when using a static server, you're basically using the server path name as a safe way to save the actual file system pathway? So you could maybe also

Re: [tw5] Experimental Chromium native saver

2021-05-15 Thread 'Mark S.' via TiddlyWiki
It's pretty straight forward. You just need 1. A chromium-based browser 2. Dyllon's plugin from above 3. Any way to serve up the file including Tiddlywiki on node (it serves up things in the /files dir) and python. Python comes with a simple server where you can just run python3 -m

[tw5] Formatting link alias

2021-05-15 Thread Louis Davout
I'm looking to migrate my ConnectedText wikis to TW5. With CT I can have at least some formatting in a link alias. So [[Alias^^1^^|Topic]] will format the 1 to superscript. TW5 displays the literal ^^1^^. Workaround is [[Alias|Topic]]^^1^^. Is there a way to format a link alias in TW5?

[tw5] Re: Formatting link alias

2021-05-15 Thread Eric Shulman
On Saturday, May 15, 2021 at 8:02:20 PM UTC-7 davou...@gmail.com wrote: > [[Alias^^1^^|Topic]] will format the 1 to superscript... Is there a way to > format a link alias in TW5? > Use the <$link> widget, like this: <$link to="Topic">Alias^^1^^ enjoy, -e -- You received this message because

Re: [tw5] Combine tiddlers into one

2021-05-15 Thread Mohammad Rahmani
On Sat, May 15, 2021 at 11:14 PM Saq Imtiaz wrote: > So with the printf[] operator I attached which is not a part of the TW > core, $(varname)$ is replaced by a variable called varname if it exists, > just like in macros. > So in the example above $(accumulator)$ is replaced with the value of

Re: [tw5] Re: Favorites plugin: new update 3.1.0

2021-05-15 Thread Mohammad Rahmani
A new update has been pushed to address the issue with svg color when TW rounded icons are used! *Code and demo* - Demo: https://kookma.github.io/TW-Favorites - Code: https://github.com/kookma/TW-Favorites *Release 4.5.1* - May 16th, 2021 - [NEW] heart svg used for view toolbar

Re: [tw5] Re: Favorites plugin: new update 3.1.0

2021-05-15 Thread Pak
Hi Mohamad, I just upgraded to your new version. The icon is fixed now! However I got two heart icons originally [image: ht1.png] But this can be fixed by unticking the the item "--" in Appearance > Toolbar setting: [image: ht2.png] That "--" item won't go away though. What do I do to remove

[tw5] Re: Eric's Calendar : how to choose which of conflicting colors for a day to display?

2021-05-15 Thread Jacques Turbé
Couldn't wait. It works. Fantastic ! I renamed an event list and an .ics : *LightGreen *I was looking for immediately flashed ! My timeline title began with "S', *absence *was already a caption, so I left it untouched. Obviously, tiddler titles have to be designed for the process, and must be

Re: [tw5] Does the "text" field store data differently to other fields?

2021-05-15 Thread 'JWHoneycutt' via TiddlyWiki
"Does the "text" field store data differently to other fields?" I am not an expert, but think I know the answer to your question, and would love to be corrected. Text fields are handled the "same" as any other field. That said, the tiddlywiki core or your overriding viewtemplate tiddlers can

Re: [tw5] Streams 0.21 is now available

2021-05-15 Thread Saq Imtiaz
@si @Saq In general do you think this would be a good feature to add to > Streams? You could pull out into a > separate tiddler tagged with $:/tags/streams/ViewTemplate. Then users can > easily customise what appears on a node just like we can with the > ViewTemplate for normal tiddlers.

[tw5] Re: automatically update field

2021-05-15 Thread Soren Bjornstad
Is there any particular reason you need it to change a field, specifically? As Joshua pointed out, the normal way to do this in TiddlyWiki is to use a filter at the time you want to display whether the task is urgent. Can you explain how you use these task tiddlers? For example, are they in a

[tw5] Re: Tiddlers Created when colour of tag changed

2021-05-15 Thread Jon Light
Update: Solved. My problem was unwanted tiddlers on the story river of the following nature 1. Tiddlers created when I change the colour of a tag 2. Tiddlers created when I import an image In the case of number 2. I wanted to use the image within other tiddlers just like illustrations in

[tw5] search operator can't search in field of tiddlers with type:application/pdf

2021-05-15 Thread Odin
Go to https://kookma.github.io/TW-Refnotes/ and copy the code below in a new tiddler. It allows you to search in any field of the all tiddlers that have the 'bibtex-title' field. Search for 'Borio', ' butadiene', '2005' and see how all of these searches give you the same result. Even though it