[tw5] Re: Code simplification Challenge - a smart config values select

2020-07-06 Thread Felicia Crow
Hi Tony, sorry for not answering yesterday, but my migraine apparently now gets also triggered by smaller changes in weather. Thanks for the reminder of the size parameter! Somehow I was so convinced at the time that it had to be something with width and found nothing except for css changes

[tw5] Re: EditorMagic - status update

2020-07-06 Thread TW Tones
Mat, Not sure what you mean. It does support *invoking *macros and widgets (even > if we'd need some mechanism to collect all macro titles) and there is > support for stamping, e.g like is done in the HTMLtable example (test it by > typing really isn't practical because you'd have to exchange

[tw5] Re: When would I be missing the "new tiddler" + sign?

2020-07-06 Thread Saq Imtiaz
The login/readonly situation only happens when using authentication on node, which is not the default but is set up by the docker container you are using. On Monday, July 6, 2020 at 11:33:16 AM UTC+2, Wpq wrote: > > Ah! Thank you! That was the reason. When I logged in I saw the "+" sign. > >

[tw5] Re: Preview Tiddler button and css

2020-07-06 Thread Felicia Crow
Oh two people one thought, although Saq definitely explained it better. If scale is not important and it is just about sizing I played around a little and found this solution using flexbox: \define preview(filter) .preview-container{ display: flex; flex-wrap: wrap; flex-direction: row;

[tw5] Re: Preview Tiddler button and css

2020-07-06 Thread Saq Imtiaz
A quick fix that works for most use cases is to wrap your div in a wrapper div and give it the final height and width of the div being resized (original width x scale), as well as overflow: auto. Something like .mywrapper { width: 300px; height: 200px; overflow: hidden; } On Monday,

[tw5] Re: Notowritey - Outliner/editor for TW

2020-07-06 Thread TiddlyTweeter
TW Tones wrote: > > I think the view/copy the wiki text version may deserve a special button, > one I wonder if we could make a generic one, or is it too tool specific? > Ciao Tones & Mark I'd like to chip in on this. As far as I understand it there are *three* "capture/snap" modes ... 1.

[tw5] Preview Tiddler button and css

2020-07-06 Thread TW Tones
Folks, If you place the following in a tiddler on tiddlywiki.com, you will see it generates a preview of tiddlers with The TableOfContents tag. To get here I have begged, borrowed and stolen code. The problem is I do not know how to remove the empty space between each preview. Any advice

[tw5] Re: Code simplification Challenge - a smart config values select

2020-07-06 Thread TW Tones
Felicia, sorry for not answering yesterday, but my migraine apparently now gets also > triggered by smaller changes in weather. > > I feel for you with migraines although I have being told, to keep a log before you conclude things like "*now gets also triggered by smaller changes in weather"*

[tw5] Re: When would I be missing the "new tiddler" + sign?

2020-07-06 Thread PMario
Hi, Your screenshot isn't visible. ... At least for me. -mario -- 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

[tw5] Re: When would I be missing the "new tiddler" + sign?

2020-07-06 Thread Wpq
Ah! Thank you! That was the reason. When I logged in I saw the "+" sign. While in hindsight this is obvious, it may be a good idea to add that point to the "Getting stated" tiddler, as more may be searching for the "+". Thanks again for the help Le lundi 6 juillet 2020 à 11:25:42 UTC+2,

[tw5] Re: When would I be missing the "new tiddler" + sign?

2020-07-06 Thread Wpq
Sorry for that - apparently the copy/paste did not go though: https://imgur.com/a/azYfKp5 (and there is no way to edit my original message) Le lundi 6 juillet 2020 à 10:33:02 UTC+2, PMario a écrit : > Hi, > Your screenshot isn't visible. ... At least for me. > -mario > -- You received

[tw5] Re: When would I be missing the "new tiddler" + sign?

2020-07-06 Thread TW Tones
WPQ I think its simple, That is the standard way of looking at tiddlywiki, you will see if you open an empty.html and zoom out. Just go to Control Panel > Appearance > Theme Tweaks and change the first item, Sidebar layout to fluid story, fixed sidebar. Regards Tony On Monday, July 6, 2020

[tw5] Re: EditorMagic - status update

2020-07-06 Thread TiddlyTweeter
Mat wrote: > > Re-demo of EditorMagic ~ *the editor as an assistant!* > > With critical help from, particularly, @Jed, @Saq and @Eric (THANK YOU > GUYS!!!) things are now *decent enough *for a new demo attempt. > Ciao Mat Quick comment. Looking v. good! Hope you will get help on the remaining

[tw5] Re: When would I be missing the "new tiddler" + sign?

2020-07-06 Thread TW Tones
WPQ, To fix the side bar position, Use Control Panel > Appearance > Theme Tweaks First option set as follows Sidebar layout Fixed story, fluid sidebarFluid story, fixed sidebarTo show the Page Control

[tw5] Re: When would I be missing the "new tiddler" + sign?

2020-07-06 Thread Saq Imtiaz
Have you logged in via http://127.0.0.1:8080/login-basic ? On Monday, July 6, 2020 at 9:35:46 AM UTC+2, Wpq wrote: > > Hello everyone > > I just started to use TiddlyWiki by installing it in a docker container ( > https://hub.docker.com/r/vimagick/tiddlywiki). > > When going to the wiki page, I

[tw5] Re: Preview Tiddler button and css

2020-07-06 Thread Felicia Crow
Hi Tony, Is there a reason you define a width and height and then scale it down? Scaling like this does not affect the document flow, meaning that while you see the scaled down elements on screen in the background the size of each of your previews is still considered 600px when it comes to

[tw5] Re: Preview Tiddler button and css

2020-07-06 Thread Saq Imtiaz
I haven't tested your code but I can guess what the problem is from your CSS. When using transform:scale with CSS, the various block level elements are rendered before being scaled. As such, they take up as much space as their original size. There are various workarounds that work, depending

[tw5] Re: TiddlyServer Missing ETag on Nginx Reverse Proxy

2020-07-06 Thread Saq Imtiaz
Have a look at the etag settings mentioned at https://arlen22.github.io/tiddlyserver/docs/serverconfig.html (A browser search on that page is helpful) On Tuesday, July 7, 2020 at 6:41:07 AM UTC+2, oha...@gmail.com wrote: > > Hello, > > Jordan here. > > That sounds like a good path to go down,

[tw5] Re: TiddlyServer Missing ETag on Nginx Reverse Proxy

2020-07-06 Thread oha...@gmail.com
Hello, Jordan here. That sounds like a good path to go down, how do I go about it? On Tuesday, 7 July 2020 at 01:32:50 UTC+2 TW Tones wrote: > Hi - whats your name? > > I do not have the skills to help you as I have not gone this way > previously. > > I do recall however configuring etag

[tw5] Re: Is it possible to apply dynamic tags on new tiddlers?

2020-07-06 Thread PMario
Hi TW has no info about the Week number. _And_ counting week numbers is different between eg: US and Europe! So they are different sometimes! ... Which means not 100% reliable. -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw5] Re: Is it possible to apply dynamic tags on new tiddlers?

2020-07-06 Thread Wpq
The week number was just an example (though it is defined in ISO 8601 https://en.wikipedia.org/wiki/ISO_week_date but indeed it changes by local tradition). I was more wondering about the general idea of being able to add dynamic data to tags. Thanks for the feedback! Le lundi 6 juillet 2020

[tw5] Re: Is it possible to create buttons (or other one-click mechanisms) to filter tiddlers?

2020-07-06 Thread Saq Imtiaz
Have a look at the ListWidget https://tiddlywiki.com/#ListWidget On Monday, July 6, 2020 at 1:35:50 PM UTC+2, Wpq wrote: > > I am reading about tiddlers and made one specific form my home page. I > also saw that they are available for use in Advanced Search. > > Is there a way to link a filter

[tw5] Re: Is it possible to create buttons (or other one-click mechanisms) to filter tiddlers?

2020-07-06 Thread Wpq
This is what I tried first (with the tag "journal", I have a test tiddler with that tag), but there is nothing on the output: https://i.imgur.com/mNOwiGl.png and after saving: https://i.imgur.com/ZwbHA4t.png Le lundi 6 juillet 2020 à 13:54:16 UTC+2, saq.i...@gmail.com a écrit : > You can

[tw5] Re: Is it possible to apply dynamic tags on new tiddlers?

2020-07-06 Thread TW Tones
Wpq, Welcome to the community. I can see the possibilities are slowly coming to you. If you embrace tiddlywiki, I do not think you will every look back. We volunteers in the community can help you a lot, no question is a silly question, but searching tiddlywiki.com or our forums is the first

[tw5] Re: Is it possible to create buttons (or other one-click mechanisms) to filter tiddlers?

2020-07-06 Thread Saq Imtiaz
You can use it anywhere you can use wiki text. Best way to learn is to try a list widget in a tiddler. For example: <$list filter="[tag[pro]]"/> On Monday, July 6, 2020 at 1:49:07 PM UTC+2, Wpq wrote: > > Thank you very much - this is exactly what I was looking for. > I have a problem,

[tw5] Re: Is it possible to create buttons (or other one-click mechanisms) to filter tiddlers?

2020-07-06 Thread Saq Imtiaz
Are you sure you have tiddlers tagged "journal"? Note that tags are case sensitive. Try this at tiddlywiki.com <$list filter="[tag[HelloThere]]"/> On Monday, July 6, 2020 at 2:04:20 PM UTC+2, Wpq wrote: > > This is what I tried first (with the tag "journal", I have a test tiddler > with that

[tw5] Re: $link to anchor?

2020-07-06 Thread TW Tones
Jake, In a simple html page an anchor is defined and links to the anchor moves you to that part of the page, such as a heading. They are a kind of internal link. Now if you stop to think about it tiddlywiki has a lot of features about internal links, it open tiddlers, and executes buttons and

[tw5] Re: Is it possible to create buttons (or other one-click mechanisms) to filter tiddlers?

2020-07-06 Thread Wpq
Thank you very much - this is exactly what I was looking for. I have a problem, however, because the documentation is not clear about WHERE to use <$list>. Sorry if this is obvious, I am still struggling with some basic concepts. Would you know of a place where <$list> is actually used so that

[tw5] Re: How to install plugins when running a node server?

2020-07-06 Thread TW Tones
Wpq, Use markdown if you must but It is better to learn tiddlywikis own markdow language, and the features that emerge from there. I only say this because I know you are new, it may be your reflex to use markdown since it is available, perhaps to import current documents but it is unnecessary.

[tw5] Re: Is it possible to apply dynamic tags on new tiddlers?

2020-07-06 Thread PMario
Hi, That's not possible out of the box. ... Someone would need to make a "special" New Tiddler button, that contains some logic as you describe it. -mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

[tw5] $link to anchor?

2020-07-06 Thread 'Jake' via TiddlyWiki
Is there a way to $link to a specific anchor in a tiddler (like you do with https://tiddlywiki.com/#LinkWidget and there is some parameter called: aria-label Optional accessibility label Is this some TW analogue of anchor? If so, how to put one in a tiddler? There's absolutely zero

[tw5] Re: Code simplification Challenge - a smart config values select

2020-07-06 Thread Felicia Crow
Thanks for your kind words! That was why I wrote apparently since I know from years of dealing with my migraine and observation that larger changes in weather and/or temperature triggers it - always "fun" in weeks where it gets from sunny to rain and back from one day to the next - so seeing

[tw5] Re: Preview Tiddler button and css

2020-07-06 Thread Felicia Crow
So first testing it on another computer copying in what I actually send you I see what you mean with vertically stacked. So I have to recheck my code to see what went wrong, sorry for that. In my tests it worked, but there I imported it via drag and drop from the wiki I worked in. From which I

[tw5] Re: Is it possible to create buttons (or other one-click mechanisms) to filter tiddlers?

2020-07-06 Thread Wpq
You are absolutely right - I had Journal (capitalized). This is great, I will test all this. I had no idea about ToddlyWiki, it is an amazing tool. Thanks a lot. Le lundi 6 juillet 2020 à 14:09:27 UTC+2, saq.i...@gmail.com a écrit : > Are you sure you have tiddlers tagged "journal"? > Note

[tw5] Re: Is it possible to create buttons (or other one-click mechanisms) to filter tiddlers?

2020-07-06 Thread TW Tones
WPQ, It is amazing. There are already a range of toc macros available, See https://tiddlywiki.com/#Table-of-Contents%20Macros You can drag and drop this tiddler ont your wiki to start, Then tag the top level tiddlers with TableOfContents, see the contents tab in the sidebar Then use the new

[tw5] Re: $link to anchor?

2020-07-06 Thread Wpq
ARIA (Accessible Rich Internet Applications) is a way to help people with disabilities to process a page: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA An `aria-label` will describe the element to, for instance, a screen reader. Le lundi 6 juillet 2020 à 13:10:01 UTC+2, Jake

[tw5] Re: How to install plugins when running a node server?

2020-07-06 Thread Wpq
I found it - you need to drop it on the very top of the scree, a green bar appears Le lundi 6 juillet 2020 à 13:08:12 UTC+2, Wpq a écrit : > TiddlyWiki has an official Markdown plugin: > https://tiddlywiki.com/plugins/tiddlywiki/markdown/ > > The site explains that > > > To add the plugin to

[tw5] Re: Code simplification Challenge - a smart config values select

2020-07-06 Thread Birthe C
Felicia and TW Tones, I know it is used for another purpose, but have you seen the mono theme and how it used the EmptyStoryMessage. For a quick look at an example https://akhater.github.io/drift/#%24%3A%2Fthemes%2Fjd%2FMono%2FEmptyStoryMessage. I also know the migraine all too well. I was

[tw5] Re: Preview Tiddler button and css

2020-07-06 Thread TW Tones
Felicia, That certainly solves the unwanted space issue. I only see them stacked vertically and my desire to wrap them all in a Is not working on top of your solution Thanks for you response TW Tones On Monday, July 6, 2020 at 8:34:09 PM UTC+10, Felicia Crow wrote: > > Oh two people one

[tw5] Re: Is it possible to apply dynamic tags on new tiddlers?

2020-07-06 Thread TW Tones
WPQ, The ability to add tags on tiddlers is in someways a simple extra option. It is not really for more sophisticated use. You could use it while creating a dozen new tiddlers manually all of which you want to have the same tag(s) The thing is the tags you add on the Control Panel info panel

[tw5] Re: [ Streams ] : feedback and issues

2020-07-06 Thread Saq Imtiaz
Version 0.1.10 https://saqimtiaz.github.io/sq-tw/streams.html - added option to disable breadcrumbs - added feature to add commands to context menu via tagged tiddlers -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from

[tw5] Re: "EditTextWidget for Dummies" anywhere?

2020-07-06 Thread Ankit
no problem at all :) Let me try and walk you through the edit-text widget as I understand and more knowledgeable people around can pitch in to correct me if I have got this wrong... As I understand the most basic usage of the widget would be to place the widget in a tiddler like so:

[tw5] Re: Preview: keyboard driven draggable bullets

2020-07-06 Thread Saq Imtiaz
I've been asked to point out that here is a new thread for further updates, feedback and bug reports for Streams: https://groups.google.com/forum/?oldui=1#!topic/tiddlywiki/1jTwdmq8cgI Please do not post further in this thread as it is getting far too long. Cheers, Saq -- You received this

[tw5] Re: Preview Tiddler button and css

2020-07-06 Thread Felicia Crow
Hi Tony, I don't know what I did, but I somehow managed to get an empty line after copying where there isn't one in my tiddler. The reason the code broke was that tiddlywiki put the preview divs in a paragraph due to the empty line between the outer div and the list widget. So removing that it

[tw5] Re: An addon for Saq's stream-editor

2020-07-06 Thread Saq Imtiaz
Jan, I've added the ability to extend the Streams context menu by adding a tiddler, as opposed to editing the context menu tiddler. The format required can be found here using your flatten as an example: https://saqimtiaz.github.io/sq-tw/streams.html#Extending%20the%20Context%20Menu I plan to

[tw5] Re: What are the preferences for questions in this community?

2020-07-06 Thread Eric Shulman
On Monday, July 6, 2020 at 7:52:43 AM UTC-7, Wpq wrote: > > As I am diving into TiddlyWiki I will have several questions (which are > hopefully not covered in the documentation). > Is it better to ask the questions here > >- one message per question, StackOverflow-style? >- or group all

[tw5] What are the preferences for questions in this community?

2020-07-06 Thread Ste Wilson
Ask away and we will shout at you for doing it wrong :) Not really. It's a friendly bunch here. Here is the place I think. If your questions are related stick em together. If you think they might need a bit of space to breath stick em in their own thread. You can always start a new thread if

[tw5] Re: $link to anchor?

2020-07-06 Thread 'Jake' via TiddlyWiki
> > ARIA (Accessible Rich Internet Applications) is a way to help people with > disabilities to process a page: > https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA > An `aria-label` will describe the element to, for instance, a screen > reader. > Well, then I guess that is not

[tw5] Re: Is it possible to apply dynamic tags on new tiddlers?

2020-07-06 Thread Wpq
Thanks for the answer. I am just starting, I discovered TiddlyWiki today. After 25 years of making notes in all kind of environments (either the ones I coded myself, or OneNote, Evernote, Joplin, you name it). This is the first time I see a system which is so versatile - I will invest time

[tw5] Re: TiddlyServer Missing ETag on Nginx Reverse Proxy

2020-07-06 Thread TW Tones
Hi - whats your name? I do not have the skills to help you as I have not gone this way previously. I do recall however configuring etag settings in TiddlyServers settings.json in the past, primarily to stop the passing of time giving rise to failed saves. Perhaps this is a clue that could

[tw5] Re: What are the preferences for questions in this community?

2020-07-06 Thread TW Tones
WPQ, I will also add, especially for gamers there is the "TiddlyWiki 5" Discord community as well. I support both Eric and Stes suggestions do the following as well when possible - Followup and share the final solution if possible - At a minimum share when it is completed - Think of

[tw5] Re: Notowritey - Outliner/editor for TW

2020-07-06 Thread 'Mark S.' via TiddlyWiki
I like dropping in a macro and ... away you go. I don't want things to become too complicated. Unfortunately, the toolbar doesn't know about the *contents* of it's tiddler. That is, it doesn't know anything about the macro it contains. And, of course, someone could, in a spate of cruelty, put

[tw5] TiddlyServer Missing ETag on Nginx Reverse Proxy

2020-07-06 Thread oha...@gmail.com
Hi all, I'm at the end of my rope here, trying to fix this. I am running an instance of TiddlyServer on my Raspberry Pi running behind an Nginx reverse proxy and SSL from Let's Encrypt. Some combination of all of these factors causes the Etag header to be missing on the responses, and my

[tw5] Re: EditorMagic - status update

2020-07-06 Thread TW Tones
Mat, I was just reviewing your EditorMagic again and see how it can look up the documentation on widgets, what a fantastic feature. When it comes to EditorMagic insertions; - I can see that there is a bit of work to be done to populate it with useful insertions, kind of a sample and

[tw5] Re: Notowritey - Outliner/editor for TW

2020-07-06 Thread Birthe C
Mark S, Wow, That is an elegant solution. I think you can be sure, that NotoWritey will get many users, when more people find out how handy it is. My friend visited and saw me using Noto. He would like something like that too, and for once he did not scare off when I had to remind him, that

[tw5] Re: Notowritey - Outliner/editor for TW

2020-07-06 Thread TW Tones
Mark, See here, I have re-released the beta for my local-viewtemplate field. Just create the field on any install and type `<>` Regards Tony On Tuesday, July 7, 2020 at 10:45:35 AM UTC+10, TW Tones wrote: > > Mark, > > You have persuaded me to make a button. I personally do not like putting >

[tw5] Re: Notowritey - Outliner/editor for TW

2020-07-06 Thread TW Tones
Mark, You have persuaded me to make a button. I personally do not like putting macros in the text field to define what the wiki does. I prefer to use the text field for content. I already created a view template field in tiddlers who's content is then transcluded in the view template, in this

[tw5] Re: Notowritey - Outliner/editor for TW

2020-07-06 Thread TW Tones
Mark, Beautiful. The read mode caps the whole project off, from brainstorm to publishing thanks. You seem reluctant to use a viewToolbar button, shall I create one that becomes visible when in publish mode? Regards Tony On Tuesday, July 7, 2020 at 8:22:37 AM UTC+10, Mark S. wrote: > > >

[tw5] Re: Notowritey - Outliner/editor for TW

2020-07-06 Thread 'Mark S.' via TiddlyWiki
There is now a Publication/Read-only mode. Hopefully I didn't break anything making it, because a lot of CSS got moved around. The button is down in the settings. Once you're in the view mode, to get back to regular mode hover over the bottom of the "document" (usually the bottom of the