[tw5] Re: Guide to font-size in TiddlyWiki?

2021-06-12 Thread PMario
There is a good post with much better reasoning. https://uxengineer.com/css-specificity-avoid-important-css/ -m On Sunday, June 13, 2021 at 7:59:29 AM UTC+2 PMario wrote: > On Sunday, June 13, 2021 at 1:46:42 AM UTC+2 iamdar...@gmail.com wrote: > >> If yes try adding the following css to your c

[tw5] Re: Guide to font-size in TiddlyWiki?

2021-06-12 Thread PMario
On Sunday, June 13, 2021 at 1:46:42 AM UTC+2 iamdar...@gmail.com wrote: > If yes try adding the following css to your css tiddler. > > body, p, ol, il, strong { > > font-size: fontsize !important; > } > !important is the absolute last resort. It brutally forces styles. In the long run it will ca

[tw5] Re: Keyboard Shortcut to show/hide edit button

2021-06-12 Thread Atul Grover
Thanks Eric Works beautifully... YOU ARE THE MAN! On Sunday, June 13, 2021 at 3:23:55 AM UTC+5:30 Eric Shulman wrote: > addendum: > > When used as a shortcut, I'm not sure that the macro definition for the > config tiddler title will be available. > If this is the case, then you can also wri

[tw5] Re: Tools for testing responsive TiddlyWiki designs

2021-06-12 Thread Charlie Veniot
Just getting around to trying that. I really like it. This will be my goto place for responsiveness. Thanks! I do very much enjoy. The heck with those sites I was looking at. Now the next thing on my mind: testing behaviour of code on browser/device simulators. On Saturday, June 12, 2021

[tw5] Re: Tools for testing responsive TiddlyWiki designs

2021-06-12 Thread Charlie Veniot
This one is pretty nice, but doesn't handle opening tiddlers in new windows: https://bluetree.ai/screenfly/ On Saturday, June 12, 2021 at 12:38:42 PM UTC-3 Charlie Veniot wrote: > G'day, > > Easy enough to find smartphone simulators/emulators out there on the web > to do some testing. > > A qu

Re: [tw5] Re: Unable to run TiddlyDesktop on Linux

2021-06-12 Thread Darth Mole
Ok, that error remains but the other one about the missing libconfg2-4 is gone it seems. I'll look into it a bit more. TiddlyDesktop is basically an application that allows a user to open, modify, and save their TiddlyWikis (the .html files) on their desktop. Since TiddlyWiki contains various s

[tw5] Re: Guide to font-size in TiddlyWiki?

2021-06-12 Thread Darth Mole
Glad the information was of some use :) Congrats and good luck! On Saturday, June 12, 2021 at 8:45:15 PM UTC-4 David Gifford wrote: > Thanks iamdar... and Brian! Brian's snippet did the trick, and I am > learning from iamgar's advice too! > > On Saturday, June 12, 2021 at 6:36:47 PM UTC-5 iamdar

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread Charlie Veniot
I am in "d*euil*" (mourning) over my misspelled "ac*c**ueil*". One of the beauties of the French language: the "euil" of deuil and the "cueil" of "accueil" have the same sound. If I could time-travel to a certain period long ago, I'd be giving somebody at the Académie française a slap from the

[tw5] Presenting GG2TW Beta, a method to convert Google Groups Conversations to TW JSON Tids

2021-06-12 Thread Finn Lancaster
Hello All, Recently, I have been inspired by many complaining about GG, and have thus built a [beta] version of a GG to TW converter. While still full of bugs and in need of much more work and polishing, you can still get a gist of how it will work when fully completed. A demo is available at

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread Charlie Veniot
Ah marde. Merci ! Good eye! Very much appreciated, although: Lord that's depressing ... On Saturday, June 12, 2021 at 7:56:39 PM UTC-3 Télumire wrote: > Just a head up, I've spotted a typo : " Acc*eu*il" --> "Accueil" > Great work on the UI btw ! > > Le samedi 12 juin 2021 à 03:51:15 UTC+2, c

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread Charlie Veniot
Oops, I mean neocities.org ! On Saturday, June 12, 2021 at 12:42:31 PM UTC-3 Charlie Veniot wrote: > Yeah, your network, or your computer, is blocking access to anything on > neocities.com > > Kind of makes sense because I'm sure there are sites hosted on there that > are nefarious. > > I suppo

[tw5] Re: Yet another workflow, adaptation and video to check out

2021-06-12 Thread David Gifford
Hey si Steal the 'current source' system now that it is way better, thanks to TW Tones! go to: https://giffmex.org/experiments/detalles.sandbox.html#%24%3A%2Fcore%2Fui%2FMoreSideBar%2FSystem >From there, drag these links: $:/.giffmex/button/newsource $:/.giffmex/Current.Source.Tab $:/.giffmex

[tw5] Re: Yet another workflow, adaptation and video to check out

2021-06-12 Thread David Gifford
Thank you so much, Tones! Works like a charm! That will save me mucho time and grief! On Saturday, June 12, 2021 at 7:21:08 PM UTC-5 TW Tones wrote: > David, > > You could copy a title and place it in any tiddler. A small extension I > have intended to add for a while is to as a rule when copyi

[tw5] Re: Guide to font-size in TiddlyWiki?

2021-06-12 Thread David Gifford
Thanks iamdar... and Brian! Brian's snippet did the trick, and I am learning from iamgar's advice too! On Saturday, June 12, 2021 at 6:36:47 PM UTC-5 iamdar...@gmail.com wrote: > Hello, > > Just to confirm you want all the text related to items 1 through 8 to be > the same size? > > On Saturday

[tw5] Re: Guide to font-size in TiddlyWiki?

2021-06-12 Thread Brian Radspinner
Try these: *html body.tc-body* { font-size: 16px; } * body p { font-size: 1em; } * *.tc-tiddler-frame* { font-size: 1em; } *.tc-sidebar-scrollable* { font-size: 1em; } For a page baseline size and some relative sizes. On Saturday, June 12, 2021 at 4:46:42 PM UTC-7 iamdar...@gmail.com wrote: >

[tw5] Re: Guide to font-size in TiddlyWiki?

2021-06-12 Thread Darth Mole
If yes try adding the following css to your css tiddler. body, p, ol, il, strong { font-size: fontsize !important; } Replace the word *fontsize* with one of the values from the property values section of the below page: https://www.w3schools.com/cssref/pr_font_font-size.asp IE: small, medium,

[tw5] Re: Guide to font-size in TiddlyWiki?

2021-06-12 Thread Darth Mole
Hello, Just to confirm you want all the text related to items 1 through 8 to be the same size? On Saturday, June 12, 2021 at 6:16:22 PM UTC-4 David Gifford wrote: > > I am having a rough time of it in TiddlyWiki today. > > I just want the font-size of the following to all be the same: > > 1. Re

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread Télumire
Just a head up, I've spotted a typo : " Acc*eu*il" --> "Accueil" Great work on the UI btw ! Le samedi 12 juin 2021 à 03:51:15 UTC+2, cj.v...@gmail.com a écrit : > G'day, > > Just an FYI about my ever-evolving approach to presenting TiddlyWiki's, by > default, in "reader view(?)", with alternativ

[tw5] Prevent tag dropdown until 3 or more characters are typed

2021-06-12 Thread dieg...@gmail.com
Hello all, I'd like to prevent the tag dropdown from showing at all until at least 3 characters are typed, just like the standard search. I find it takes a long time for this dropdown to render, and I frequently accidentally click on a tag on the huge dropdown. Thanks, Diego -- You receive

[tw5] Re: [question] plugin that turn a transclusion into a clickable link in edit mode ?

2021-06-12 Thread Télumire
Hello everyone, First of all thank you very much for taking the time to answer me, second of all my apologies for answering so late. *Fred*, for now instead of a macro I proceed as follow (online demo here ) : In the tiddler transc

[tw5] Guide to font-size in TiddlyWiki?

2021-06-12 Thread David Gifford
I am having a rough time of it in TiddlyWiki today. I just want the font-size of the following to all be the same: 1. Regular text in a tiddler. 2. Text in transclusions 3. Text in the sidebar lists. 4. Text in tables. 5-8 below tend to be smaller than 1-4 above. 5. Text in ordered and unord

[tw5] Re: Keyboard Shortcut to show/hide edit button

2021-06-12 Thread Eric Shulman
addendum: When used as a shortcut, I'm not sure that the macro definition for the config tiddler title will be available. If this is the case, then you can also write it this way: <$vars config="$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/edit"> <$action-setfield $tiddler=<> text=

[tw5] Re: Keyboard Shortcut to show/hide edit button

2021-06-12 Thread Eric Shulman
On Saturday, June 12, 2021 at 12:54:54 PM UTC-7 atulg...@gmail.com wrote: > I am trying to add a shortcut... I don't know what the first line of the > code should be... Please help. > Try this: <$list filter="[[$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/edit]get[text]!match[sho

[tw5] Re: [TW5] PrintRiver plugin

2021-06-12 Thread
Hello BTC, *you made it - great, thanks!* One remark: Each time, when I print a tiddler an I uncheck eg: title, a new file will be generated in '*$:/state/PrintRiver/..*.'. This information is not important to store - temporary it is ok, but it should be removed, when PrintRiver window is close

Re: [tw5] Re: Unable to run TiddlyDesktop on Linux

2021-06-12 Thread LinuxNoob
Yeah I'm still getting the same error message: [9629:9629:0603/160810.303573:ERROR:sandbox.cc(376)] InitializeSandbox() called with multiple threads in process gpu-process. I figured that I can still edit the html files after creating them by opening the file manually (not using TiddlyDesktop

[tw5] Keyboard Shortcut to show/hide edit button

2021-06-12 Thread Atul Grover
Hi all, I am trying to add a shortcut... I don't know what the first line of the code should be... Please help. *<$list filter="[[ $:/core/ui/Buttons/edit ]is[missing]] [{ $:/core/ui/Buttons/edit }removeprefix[show]]" emptyMessage="""* <$action-setfield $tiddler="$:/config/ViewToolbarButtons/

[tw5] Re: Create Save and close in one click ?

2021-06-12 Thread Eric Shulman
On Saturday, June 12, 2021 at 11:14:07 AM UTC-7 mohamed...@hotmail.com wrote: > <$select > field="blocker"…> > <$list filter='[!is[system]!status[completed]tag[task]sort[title]]'> > <$view field= 'title'/> > > > can i get the value chosen from the drop list to populate with brackets in > the

[tw5] Split and uncaught errors when combining Stephen Kimmel's togglers and TWCrossLinks

2021-06-12 Thread cmari
Long shot question: I have found that in an empty current TiddlyWiki, I cannot add both TWCrossLinks and the Togglers macros without getting javascript errors. Clicking on a link to a tid

[tw5] Re: [question] plugin that turn a transclusion into a clickable link in edit mode ?

2021-06-12 Thread si
>>> CodeMirror is able to parse links, so maybe someone made an addon build upon it allowing this functionnality ? I searched but ultimately found nothing .. I'm not aware of any currently existing plugin, but CodeMirrorPlus has an open ticket for adding clickable links in edit mode: https://

[tw5] Re: Create Save and close in one click ?

2021-06-12 Thread paulgilbert2000
Hi again , can this work for drop downs as well ? so if i have something like this <$select field="blocker"…> <$list filter='[!is[system]!status[completed]tag[task]sort[title]]'> <$view field= 'title'/> can i get the value chosen from the drop list to populate with brackets in the "blocke

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread Eric Shulman
On Friday, June 11, 2021 at 6:51:15 PM UTC-7 cj.v...@gmail.com wrote: > >- by "reader view" (internal debate on-going about that label), I mean >hiding much of what looks like TiddlyWiki interface features, without >getting into anything too fancy >- for toggling, I went with no-

[tw5] Re: Tools for testing responsive TiddlyWiki designs

2021-06-12 Thread Eric Shulman
On Saturday, June 12, 2021 at 8:38:42 AM UTC-7 cj.v...@gmail.com wrote: > Easy enough to find smartphone simulators/emulators out there on the web > to do some testing. > If you know of any related goodies, please share ? > Using Chrome: 1) Open Developer Tools window (ctrl-shift-I) 2) Toggle D

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread Charlie Veniot
Yeah, your network, or your computer, is blocking access to anything on neocities.com Kind of makes sense because I'm sure there are sites hosted on there that are nefarious. I suppose first things first is to figure out if it is your device or your network infrastructure (at work?) On Satu

[tw5] Tools for testing responsive TiddlyWiki designs

2021-06-12 Thread Charlie Veniot
G'day, Easy enough to find smartphone simulators/emulators out there on the web to do some testing. A quick look found me this one: https://mobilemoxie.com/tools/mobile-page-test/ If you know of any related goodies, please share ? -- You received this message because you are subscribed to t

[tw5] Re: Yet another workflow, adaptation and video to check out

2021-06-12 Thread David Gifford
And, just to be sure you hear me say it, the buttons as they are, are very cool! Thanks again. On Saturday, June 12, 2021 at 10:22:10 AM UTC-5 David Gifford wrote: > Hi Tones! Thanks for thinking of this and coming up with this for me! Your > buttons got me thinking: could you tweak the copy-te

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread David Gifford
How do I reconfigure my firewall so I can open these sites? On Friday, June 11, 2021 at 8:51:15 PM UTC-5 cj.v...@gmail.com wrote: > G'day, > > Just an FYI about my ever-evolving approach to presenting TiddlyWiki's, by > default, in "reader view(?)", with alternative "normal TiddlyWiki view" > a

[tw5] Re: Yet another workflow, adaptation and video to check out

2021-06-12 Thread David Gifford
Hi Tones! Thanks for thinking of this and coming up with this for me! Your buttons got me thinking: could you tweak the copy-text-title button so that rather than copying the title, it replaces the text of $:/.giffmex/Current.source.text with the title of the tiddler? That way I could open my l

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread TiddlyTweeter
cj.v...@gmail.com wrote: > Yeah, responsive web design in on my noggin'. It is certain NOGGIN THE NOG may help :-) NOGGIN THE NOG . TT -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this grou

[tw5] Re: Yet another workflow, adaptation and video to check out

2021-06-12 Thread TW Tones
David, Thanks for sharing. Not only do I gain insight into how others use tiddlywiki, but I also see the opportunity to help (if you like it) See my copy title or copy text buttons attached. It adds buttons in the view toolbar, however you can also include them in lists, such as your list of s

Re: [tw5] Re: Simple authentication options for Bob

2021-06-12 Thread Pietro Abano
Hi Ed, some time ago (a year?) I have created a description of how to authenticate (to a nginx web server) via a user certificate. It did work for me. It's here: https://groups.google.com/g/tiddlywiki/c/StoO3ApsWJU/m/064orDtwBQAJ. Unfortunately it's not at the linked URL anymore, but I probably

[tw5] Re: [question] plugin that turn a transclusion into a clickable link in edit mode ?

2021-06-12 Thread TW Tones
Folks, There is a way to always transclude via another transclusion eg; {{transcludetiddler||transclude}} where "transclude" is a smart tiddler that responds to an edit mode setting, if in edit mode it will allow editing, provide a link etc,, other wise behave as normal. In the transclude tidd

[tw5] Re: Vanishing content!

2021-06-12 Thread Charlie Veniot
And all of this reminds me of: https://www.youtube.com/watch?v=mzWN4v2Ck0s On Saturday, June 12, 2021 at 10:17:21 AM UTC-3 TiddlyTweeter wrote: > LOL! I do that too, especially, Kowalski Steve, when watching VANISHING > POINT. > > On Saturday, 12 Ju

[tw5] Re: Keyboard/Mouse Combination to Force Selected Tiddler to Use Zoomin Story View?

2021-06-12 Thread TW Tones
You could make a button that looks like a link to close all and then open ( Action navigate } a named tiddler, but I think you want this to occur for all links? Of course such a button could close one, and open another leaving the rest of the story intact but how do your define "The existing o

[tw5] Re: Building a book/blog webpage -- is TW5 right for it?

2021-06-12 Thread TW Tones
As much as I value WordPress my personal belief is tiddlywiki would be ideal, I would start with others book style wikis to get going. I understand the value of static websites for search may be valuable however the interactive wiki offers much more. The compromise would be a static site on w

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread Charlie Veniot
Yeah, responsive web design in on my noggin'. My next major refactoring job: a new form for entering data and providing presentation layout. With responsive web design in mind. Then responsive web design throughout. Well, "good enough" responsive web design, so that I can get back to adding c

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread Charlie Veniot
"Distraction-free reading" ? Just did a quick search of the web, and "Reader Mode" seems like the right way to go. Yeah, I get caught up in wording ... On Friday, June 11, 2021 at 10:51:15 PM UTC-3 Charlie Veniot wrote: > G'day, > > Just an FYI about my ever-evolving approach to presenting Tid

[tw5] Re: Vanishing content!

2021-06-12 Thread TiddlyTweeter
LOL! I do that too, especially, Kowalski Steve, when watching VANISHING POINT. On Saturday, 12 June 2021 at 13:37:26 UTC+2 Ste wrote: > I never! > Oh... Yeah.. > *embarrased silence* > Thanks! > -- You received this message because you are subs

[tw5] Re: Vanishing content!

2021-06-12 Thread Ste
I never! Oh... Yeah.. *embarrased silence* Thanks! On Saturday, 12 June 2021 at 12:33:18 UTC+1 Eric Shulman wrote: > The tiddler "Thermodynamics" is *folded* !!! > > see $:/state/folded/Thermodynamics > >

[tw5] Re: Vanishing content!

2021-06-12 Thread Eric Shulman
The tiddler "Thermodynamics" is *folded* !!! see $:/state/folded/Thermodynamics -e On Saturday, June 12, 2021 at 4:18:35 AM UTC-7 Ste wrote: > Changing the tiddler linked to above to Thermodynamics and the

[tw5] Re: Vanishing content!

2021-06-12 Thread Saq Imtiaz
Have you folded the tiddler? On Saturday, June 12, 2021 at 1:18:35 PM UTC+2 Ste wrote: > Changing the tiddler linked to above to Thermodynamics and the content > vanishes. > > On Saturday, 12 June 2021 at 12:15:46 UTC+1 Ste wrote: > >> Ok... >> This one has me stumped.. >> I have a tiddler ti

[tw5] Re: IT'S ALL WRONG, especially documents, says Ted in 2011

2021-06-12 Thread TiddlyTweeter
Ciao Birthe, strikke...@gmail.com wrote: > In danish we have a saying, "En fugl i hånden er bedre end ti på taget." > I think you say: "a bird *in* the hand is worth two *in* the bush". > But I find the danish better.ti på taget= ten on the roof. > Google translates that as ...* "A bir

[tw5] Grammarly is not working my TiddlyWiki

2021-06-12 Thread Ibby (parc6502)
I'm not sure why, but Grammarly is not working on my local wiki, although it does work on tiddlywiki.com. I use TiddlyServer, but I tried it with the official node server as well as downloading an HTML and got the same result. I tried disabling all my editor plugins, reverting to the stock edi

[tw5] Re: Vanishing content!

2021-06-12 Thread Ste
Changing the tiddler linked to above to Thermodynamics and the content vanishes. On Saturday, 12 June 2021 at 12:15:46 UTC+1 Ste wrote: > Ok... > This one has me stumped.. > I have a tiddler titled Thermodynamics. > When I'm in edit mode the preview shows correctly however when I'm view, >

[tw5] Vanishing content!

2021-06-12 Thread Ste
Ok... This one has me stumped.. I have a tiddler titled Thermodynamics. When I'm in edit mode the preview shows correctly however when I'm view, nothing shows. I have cloned the tiddler, all is fine. But when I change the clone name from Thermodynamics 1 to Thermodynamics the content vanishes

[tw5] Re: IT'S ALL WRONG, especially documents, says Ted in 2011

2021-06-12 Thread strikke...@gmail.com
TT, For a long time I was very interested in Nelson's Project Xanadu but it didn't really fruit. In danish we have a saying, "En fugl i hånden er bedre end ti på taget." I think you say: "a bird *in* the hand is worth two *in* the bush". But I find the danish better.ti på taget= ten on

[tw5] Re: IT'S ALL WRONG, especially documents, says Ted in 2011

2021-06-12 Thread TiddlyTweeter
cj.v ... I often think: "I'm not sure what his problem is, but I'm sure it is hard to spell." Yeah! Ted Nelson was/is very interesting. Why? Because he is passionate about the cognizance of how the human brain is not hard coded, it is organic flexibility. The human knows more than the computer

[tw5] Re: [TW5] PrintRiver plugin

2021-06-12 Thread BurningTreeC
Hello S², I've updated the plugin so that one can set font-size and line-height for the new windows and tiddler-bodies Tell me if that works out well for you best wishes, BTC S² schrieb am Samstag, 12. Juni 2021 um 09:24:30 UTC+2: > Hello BTC, > > thanks a lot for your effort. > I really app

[tw5] Re: How to move tidler in the list of opened tidders.

2021-06-12 Thread PMario
On Saturday, June 12, 2021 at 11:21:04 AM UTC+2 PMario wrote: The thread is 5 years old. .. I didn't see that at first. .. So the example version with the tool was 5.1.14 .. Now we have 5.1.23. So you should definitely go with "drag & drop" You can also use drag & drop sort the "Open" tab in th

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread TiddlyTweeter
cj.v...@gmail.com wrote: > To get the Full Monty ... > >- the new going-forward version with "reader view" at startup > > > I guess the mission is: how do I setup the kind of structure that makes > for easy/simple navigation to a lot of content withou

[tw5] List: fieldname = tiddlername currentTiddler

2021-06-12 Thread vinvi...@gmail.com
Hello, The following is listing the values out of field "*warning*" of tiddler " *@fields*". The name of the listed field bears the same name as the tiddler containing the list-code: In tiddler warning: *<$list filter="[list[@fields!!warning]search:title{$:/temp/search@fields}]" variable=warn

[tw5] Re: How to move tidler in the list of opened tidders.

2021-06-12 Thread PMario
Hi Max, You can also use drag & drop sort the "Open" tab in the "Sidebar". The following code will do what you want: <$button> <$set name=me filter="[]"> <$action-listops $tiddler="$:/StoryList" $filter="[list[$:/StoryList]prepend]"/> Click That's all it needs. -mario -- You received

[tw5] Re: A Show'nTell: an evolving approach for TiddlyWiki "reader view(?)"

2021-06-12 Thread Ste
That's looking really good. There have been several read only plugins in the past (I used one on one of my presentations and now camt remember what it was so I can undo it!). It certainly looks cleaner and less cluttered in your new version. On Saturday, 12 June 2021 at 02:51:15 UTC+1 cj.v...@

[tw5] Re: [TW5] PrintRiver plugin

2021-06-12 Thread
Hello BTC, thanks a lot for your effort. I really appreciate this PrintRiver plugin! I use in my Wiki / Theme Tweaks bigger font settings: Font size: 18px Line height: 22px Font size for tiddler: body: 20px Line height for tiddler body: 24px Text is formatted with H1, H2, H3... For printing

[tw5] Re: How to move tidler in the list of opened tidders.

2021-06-12 Thread MaxGyver
@inmy... That's cool! Actually I'm looking for a button that moves the current tiddler to the top of the story river. I simply modified your "Move Tiddler Up" tiddler to use "move:-1000" instead of "move:-1". Do you have an idea how I could also move the viewport to the top? Can I make the butt