[tw5] Re: [tw] Re: TW WebDAV Failing Status 412 - but not curl

2024-03-21 Thread Rick Nyman
Resurrecting an old thread, but this solved the same issue for me, so thank you! Rick On Wednesday, April 4, 2018 at 4:56:10 PM UTC-4 Kevin Kleinfelter wrote: > Thanks for the replies. Now that I know that's just how it works, I > decided to hack the code and > change > if(this.etag) {\n\t\th

[tw5] Re: Suggestions to use TW for Weight-Loss

2024-02-11 Thread Télumire
tor and other kind of calculators. For now I put the dev on hold, but it's usable On Sunday 4 February 2024 at 17:32:21 UTC+1 Valdus Constante wrote: > Just as the title says, I am looking for a way or an extension to use TW > to help me lose weight. > > Suggestions? > --

[tw5] Re: Suggestions to use TW for Weight-Loss

2024-02-10 Thread 'Mark S.' via TiddlyWiki
h TiddlyWiki for medical information > tracking, and habit tracking: > > https://talk.tiddlywiki.org/t/phr-personal-health-record-example/1610/8 > > https://talk.tiddlywiki.org/t/habit-tracker-in-tw/4003 > > If those threads don't give you a good starting-point, you can certainly

[tw5] Re: Suggestions to use TW for Weight-Loss

2024-02-04 Thread springer
n tracking, and habit tracking: https://talk.tiddlywiki.org/t/phr-personal-health-record-example/1610/8 https://talk.tiddlywiki.org/t/habit-tracker-in-tw/4003 If those threads don't give you a good starting-point, you can certainly post your questions there, with better likelihood of ge

[tw5] Suggestions to use TW for Weight-Loss

2024-02-04 Thread Valdus Constante
Just as the title says, I am looking for a way or an extension to use TW to help me lose weight. Suggestions? -- 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

[tw5] Re: Copying TW customization and configuration

2024-01-29 Thread scott....@gmail.com
I copied this to a talk.tiddlywiki discussion at https://talk.tiddlywiki.org/t/copying-tw-customization-and-configuration/9009. Let's move the conversation over there. On Monday, January 29, 2024 at 2:58:41 PM UTC-5 duche...@gmail.com wrote: > Thank you Scott, and feel free to m

[tw5] Re: Copying TW customization and configuration

2024-01-29 Thread duche...@gmail.com
ated wiki, and then use the TW-node `--load` to load this into your > existing or (probably safer) a new node wiki. > > ```text > tiddlywiki path/to/new/wiki --init server > tiddlywiki path/to/new/wiki --load path/to/upgrade.htm > tiddlywiki path/to/new/wiki --listen port=6789 >

[tw5] Re: Copying TW customization and configuration

2024-01-28 Thread scott....@gmail.com
Note that most of the tiddlywiki discussion these days takes place on https://talk.tiddlywiki.org. My technique would be to save a copy of your wiki as a single-file wiki, use the upgrade page at https://tiddlywiki.com/upgrade to create an updated wiki, and then use the TW-node `--load` to

[tw5] Copying TW customization and configuration

2024-01-28 Thread Normand Duchesne
I am running TW 5.2.2. on nodejs and created a new (docker) TW nodes service running 5.3.3. I copied the tiddlers from the original env. to the new one without issues but I would like to also copy all the customizations I did in the 5.2.2 to the new one. I searched this group and the web

[tw5] Re: [tw] [TW5] Markdown as default for New Tiddler

2024-01-25 Thread Rahul Kashyap
Dear All, The new Markdown button is very useful but, *it doesn't solve the problem when we use excise button to transclude text from a markdown file, in that case newly created tiddlers are not markdown type. How do you enable that?* *-Rahul* On Thursday, December 18, 2014 at 12:39:13 PM UTC-

[tw5] How easy is it to create a sprite editor in TW?

2023-05-21 Thread Charlie Veniot
Ridiculously easy. (Leading and trailing triple backticks to make the code below viewable at TalkTiddlyWiki) ``` .bu {width:3em;height:3em;background:white;border:2px dotted lightgray;margin-right:-6px;font-weight:bold;} .bu:hover {border:2px solid black;}} <$checkbox field="grid" checked="

[tw5] Re: TW Gadget: Tiddler Editor Text Resizer

2023-05-19 Thread Scott Sauyet
Charlie Veniot wrote: > Done. Plus a "reset" button. I created a version of this that scales logarithmically from 30% to 400%. It feels smoother and more useful to me. GigantiCorp doesn't allow me to upload attachments to Google Groups. I'll try to do that from home later, but the changes a

[tw5] Re: TW Gadget: Tiddler Editor Text Resizer

2023-05-19 Thread
ywiki/vanilla/metrics/bodyfontsize" >> min="14" max="44" default="20" increment="1" class="slider"/> >>   >> >> {{$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize}} >> >> <$button class="tc-bt

[tw5] Re: TW Gadget: Tiddler Editor Text Resizer

2023-05-19 Thread Eric Shulman
tip="Reset"> > <$action-setfield > $tiddler="$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize" > text="20px"/>  > > ''↺'' > > > (Actual I put "20px" to the reset button.) > > Any idea how to keep it?

[tw5] Re: TW Gadget: Tiddler Editor Text Resizer

2023-05-19 Thread
$action-setfield $tiddler="$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize" text="20px"/>  ''↺'' (Actual I put "20px" to the reset button.) Any idea how to keep it? Thanks, Stefan Charlie Veniot schrieb am Donnerstag, 18. Mai 2023 um 22:39:18

[tw5] Re: TW Gadget: Tiddler Editor Text Resizer

2023-05-18 Thread
ble" tooltip="Reset"> <$action-setfield $tiddler="fontsizeEditor" text="18"/>  ''↺'' Charlie Veniot schrieb am Donnerstag, 18. Mai 2023 um 22:39:18 UTC+2: > There are a few problems in your TW scripting. > > The first line, action-s

[tw5] Re: TW Gadget: Tiddler Editor Text Resizer

2023-05-18 Thread Charlie Veniot
There are a few problems in your TW scripting. The first line, action-setfield. All action widgets have to be the result of something happening (like clicking on a button). That action doesn't have anything to trigger it, so it will never happen. The other action-setfield does happen

[tw5] Re: TW Gadget: Tiddler Editor Text Resizer

2023-05-18 Thread
Hello forum, inspired by @Charlie Veniot I tried to add the reset button to my wiki - but no effect when clicking on the button. Any idea why? Also tested on https://tiddlywiki.com/ [image: code.png] *Code:* <$action-setfield $tiddler="$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize" text={{

[tw5] Re: TW Gadget: Tiddler Editor Text Resizer

2023-05-18 Thread Charlie Veniot
Done. Plus a "reset" button. [image: Screenshot 2023-05-18 2.19.38 PM.png] On Thursday, May 18, 2023 at 10:50:52 AM UTC-3 Scott Sauyet wrote: > Charlie Veniot wrote: > > Just for the giggles to figure out how I would go about it. > > Very nice! One suggestion: make the max 200 or so rather th

[tw5] Re: TW Gadget: Tiddler Editor Text Resizer

2023-05-18 Thread Scott Sauyet
Charlie Veniot wrote: > Just for the giggles to figure out how I would go about it. Very nice! One suggestion: make the max 200 or so rather than the default 100. Help those with poorer eyesight! -- Scott -- You received this message because you are subscribed to the Google Groups "Tiddl

[tw5] Re: New Plugin tw-receiver saves wiki to PHP

2023-01-07 Thread Xekima Leo
Hi, everybody! I added Zip compress / decompress on send https://github.com/daidalvi/tw-receiver - JS zip creates via zip.js: https://github.com/gildas-lormeau/zip.js - In backend unzip via ZipArchive: https://www.php.net/manual/en/class.ziparchive.php If the size of your wiki

[tw5] "Factory Reset", "Edition System Update", "TW Upgrade"

2022-11-09 Thread Charlie Veniot
;Edition System Update", a process, is just a matter of setting up the ability to drag a package of "architectural" stuff (maybe as a plugin, likely not) from the one edition to the edition being upgraded. "TW Upgrade", the service, is already existing. If for any reason I&#x

Re: [tw5] Re: LightBox Prototype (one Single Tiddler, no javascript, all TW + HTML + CSS )

2022-08-16 Thread Charlie Veniot
Yup, can be done. Requires some fancy filtering: grab all the content from the text field, filter out what is needed with some pretty fancy regexp work, and away you go. You will have to get some help from somebody who knows regexp. I know regexp, but not yet well enough to do that quickly.

Re: [tw5] Re: LightBox Prototype (one Single Tiddler, no javascript, all TW + HTML + CSS )

2022-08-16 Thread arun babu
https://demowiki.tiddlyhost.com/#Spring%20Ligament%20Tear%20-%20Radsource This is an example of how images are shown in my tiddlers, but usually my tiddlers won't be this long..this one is long because it's clipped from a web article. Once setup like a lightbox, I am thinking of clicking on on

[tw5] Re: LightBox Prototype (one Single Tiddler, no javascript, all TW + HTML + CSS )

2022-08-16 Thread Charlie Veniot
Maybe. The amount of pain involved depends on what you mean by images in the current tiddler and how challenging it is to create a fitler to grab those pictures. What I've built is based on each image being in a dedicated tiddler. As per my philosophy of componentization, I would not keep a b

[tw5] Re: LightBox Prototype (one Single Tiddler, no javascript, all TW + HTML + CSS )

2022-08-16 Thread arun babu
Hi Charlie, I have two doubts 1. Is it possible to view the images only in the current tiddler using this lightbox. Images are using this format - [img[]] 2. Also can we use some filters to view images (having [img[]] format )within tidlders with certain tags or fields? On Monday, June 13, 2022

[tw5] Re: [tw] Re: [TW5] Experience with PlantUML and TW5

2022-08-13 Thread Octavian Petrescu
This still works in 2022! :) TW FTW :) On Friday, August 2, 2019 at 4:02:18 AM UTC-4 hexa...@gmail.com wrote: > It's really a fantastic work! Thanks a lot! > > BTW, I'm wondering that is it feasible to render the image via local file > "plantuml.jar"? > >

[tw5] Re: How to change the color of Tw icons

2022-06-28 Thread Xabriña
Hello Mario. It is clear to me from the explanation you have given me that there is no choice but to use CSS and macros, and I appreciate you taking the trouble to leave me the files with the solution already prepared. >From what I see in the end, I have no choice but to either take the path t

[tw5] Re: How to change the color of Tw icons

2022-06-27 Thread TiddlyTweeter
PMario: "That doesn't work that way, since the height and width are directly defined in the SVG element. You need to do..." That is a very nice solution to the SVG "change-dimensions" issue using a "class"! TT -- You received this message because you are subscribed to the Google Groups "Tidd

[tw5] Re: How to change the color of Tw icons

2022-06-27 Thread PMario
On Monday, June 27, 2022 at 11:12:46 PM UTC+2 Juan Palomo wrote: > One more question. I have tried to modify the size of the icon since it is > larger than I want and I cannot find the parameter to adjust it. > I have tried the following formula but it seems that it is not correct: > > @@fill:blu

[tw5] Re: How to change the color of Tw icons

2022-06-27 Thread Juan Palomo
One more question. I have tried to modify the size of the icon since it is larger than I want and I cannot find the parameter to adjust it. I have tried the following formula but it seems that it is not correct: @@fill:blue; width:1em; height: 1em; {{$:/core/images/tip}}@@ Thanks a lot El lun

[tw5] Re: How to change the color of Tw icons

2022-06-27 Thread Juan Palomo
Thank you very much Eric!!! El lunes, 27 de junio de 2022 a las 18:50:47 UTC+2, Eric Shulman escribió: > This will do what you want: > ``` > @@fill:yellow;{{$:/core/images/tip}}@@ > ``` > > enjoy, > -e > > On Monday, June 27, 2022 at 9:35:59 AM UTC-7 Juan Palomo wrote: > >> Hello everyone. >> >> I

[tw5] Re: How to change the color of Tw icons

2022-06-27 Thread Eric Shulman
This will do what you want: ``` @@fill:yellow;{{$:/core/images/tip}}@@ ``` enjoy, -e On Monday, June 27, 2022 at 9:35:59 AM UTC-7 Juan Palomo wrote: > Hello everyone. > > Is there any way to change the color of TW's system icons? The fact is > that I would like to use some icons in a table that

[tw5] How to change the color of Tw icons

2022-06-27 Thread Juan Palomo
Hello everyone. Is there any way to change the color of TW's system icons? The fact is that I would like to use some icons in a table that I am making instead of text, but I cannot change their original black color. I have read that it can be done using CSS, but I would like to know if it can b

[tw5] Re: Sudden horizontal scrollbar and blank space in my TW

2022-06-22 Thread 'Mark S.' via TiddlyWiki
You have a lot going on in your TW. I'd guess you have at least a half dozen plugins. Nothing wrong with that, but when you use multiple plugins from different authors it becomes increasingly likely that some bit of CSS or other code will conflict with each other. Especially when you'

[tw5] Re: Sudden horizontal scrollbar and blank space in my TW

2022-06-22 Thread Kiya
all. > > > On Wednesday, June 22, 2022 at 12:56:55 PM UTC+2 Kiya wrote: > >> Hello everyone!! >> >> As the title says, my TW has suddenly seemed to gain a big amount of >> blank space to the right of the storyriver which has added a horizontal >> scrollbar to

[tw5] Re: Sudden horizontal scrollbar and blank space in my TW

2022-06-22 Thread strikke...@gmail.com
When you clicked tab more and then all you got a very long list of tiddlers without the horizontal scrollbar you would not be able to see them all. On Wednesday, June 22, 2022 at 12:56:55 PM UTC+2 Kiya wrote: > Hello everyone!! > > As the title says, my TW has suddenly seemed to g

[tw5] LightBox Prototype (one Single Tiddler, no javascript, all TW + HTML + CSS )

2022-06-12 Thread Charlie Veniot
Download the attached and drag into TiddlyWiki.com There are two tiddlers, but you only need one of them: - LightBox tiddler (this is the only one you need) - Sample LightBox Setup (this one just to show how to use the LightBox tiddler To create a new LightBox: - create a new tiddl

[tw5] Re: Using an existing TW file to start a new one

2022-04-27 Thread Ittay Dror
I did it and now the file loads as a blank page. On Wednesday, 16 October 2019 at 02:02:06 UTC+3 David Gifford wrote: > Go to advanced search. > Use the filter there to find tiddlers [is[system]]. > Export as a json file. > Drag that json file into an empty TiddlyWiki and import. > You should

[tw5] What to TW saver badge colors mean?

2022-04-20 Thread 'C Bacca' via TiddlyWiki
In the GettingStarted Tiddler here https://tiddlywiki.com/#GettingStarted The badges for different savers have a top border that are colors like green, yellow, red, and I think orange. I don't see any description of what these colors mean on this tiddler. Can someone add to this tiddler what ea

[tw5] Re: How do I copy a theme in TW 5.2.2?

2022-04-20 Thread 'C Bacca' via TiddlyWiki
Can I bump this? I still would like to copy a theme to tweak the copy and try different things. -- 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+unsubs

[tw5] Re: How do I copy a theme in TW 5.2.2?

2022-04-01 Thread PMario
Hi, If you needed to create a new account here, your initial posts where set to "need review", to avoid spam. I think new mails usually hit Eric Shulman (thx for that!). Since your posts come through now, it seems you are free to post again. -mario -- You received this message because you are

[tw5] How do I copy a theme in TW 5.2.2?

2022-03-31 Thread 'C Bacca' via TiddlyWiki
So I can tweak the copy? Thank you! You have all been so helpful and nice through all these years! This is a new account but I've been here at least 10 years. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and s

[tw5] Re: TW-Enhanced BAM Programming: TW for GUI and storage, BASIC for processing

2022-02-20 Thread Charlie Veniot
try. Nothing fancy, just proof-in-the-pudding concept. >> > > Very interesting *proof-in-the-pudding concept.* > > FYI if now wondering* if. If* the same approach could be used to interact > with generic O/S scripting lingos like *Powershell.* > > I'm not really any kind

[tw5] Re: TW-Enhanced BAM Programming: TW for GUI and storage, BASIC for processing

2022-02-20 Thread TiddlyTweeter
rshell.* I'm not really any kind of programmer, but I thought the immediacy of the example brilliant! One thing I do do is convert large texts farmed from the net to TW format. I'm thinking the approach you illustrate here could make that easier? Just an appreciative comment TT -- You re

[tw5] Re: TW-Enhanced BAM Programming: TW for GUI and storage, BASIC for processing

2022-02-19 Thread Charlie Veniot
ps://talk.tiddlywiki.org/ > ``` > > -e > > > > On Saturday, February 19, 2022 at 8:03:38 PM UTC-8 cj.v...@gmail.com > wrote: > >> This post might be better viewed in Google Groups >> <https://groups.google.com/g/tiddlywiki/c/P0hfGQeRYwo>. >>

[tw5] Re: TW-Enhanced BAM Programming: TW for GUI and storage, BASIC for processing

2022-02-19 Thread Eric Shulman
://talk.tiddlywiki.org/ ``` -e On Saturday, February 19, 2022 at 8:03:38 PM UTC-8 cj.v...@gmail.com wrote: > This post might be better viewed in Google Groups > <https://groups.google.com/g/tiddlywiki/c/P0hfGQeRYwo>. > > Below: BASIC program source code, Tiddler's TW cod

[tw5] TW-Enhanced BAM Programming: TW for GUI and storage, BASIC for processing

2022-02-19 Thread Charlie Veniot
This new sample showcases TiddlyWiki providing the GUI to interact with a running BASIC programming. So one-way (TiddlyWiki to BASIC) sharing/communication. Give the Sunshine Application a try. Not

Re: [Talk TW] [Google Group (Read Only)] [tw5] dynamically building a string by concatenation in a macro

2022-01-23 Thread Brian Theado
Jeremy, That is a very enlightening way of explaining it. I wasn't sure where in the docs this exact explanation would fit, but I did make a PR at https://github.com/Jermolene/TiddlyWiki5/pull/6417 which adds warnings about the non-recursive nature of attribute value processing. On Sun, Jan 23, 2

Re: [Talk TW] [Google Group (Read Only)] [tw5] dynamically building a string by concatenation in a macro

2022-01-23 Thread Jeremy Ruston
l string. ``` ``` Best wishes Jeremy -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 23 Jan 2022, at 12:32, CarloGgi via Talk TW > wrote: > >  > @jeremy thanks for the clarification. So it seems that you can correctly (in > the sense of *syntactically* correct)

Re: [tw5] Re: [Update] TW-Vote plugin v1.0.0

2022-01-03 Thread Mohammad
o Vote release number is 1.0.1 now. >> >> Best wishes >> Mohammad >> >> >> On Fri, Feb 26, 2021 at 5:26 AM dieg...@gmail.com >> wrote: >> >>> Mohammad, >>> >>> Thank you! When will this be updated in the Kookma plugin li

Re: [tw5] Re: [Update] TW-Vote plugin v1.0.0

2022-01-03 Thread Jon Light
gt; >> Thank you! When will this be updated in the Kookma plugin library? I >> thought that happened automatically. >> >> On Thursday, February 25, 2021 at 5:37:01 AM UTC-6 Mohammad wrote: >> >>> *TW-Vote plugin* >>> >>> Vote plugin lets you r

[tw5] Re: [tw] Re: Mermaid plugin?

2021-12-21 Thread Jason Houle
or: I just published this as a very lightweight (18kb) "wrapper" of the Mermaid Live service which handles all the rendering. All the power of Mermaid with streamlined code management and virtually no TW bloat. YouTube: https://www.youtube.com/watch?v=e78RRDp-NZg GitHub repo: https://github

Re: [tw5] Re: Set Browser Tab title different from TW Title?

2021-12-10 Thread Aidan Grey
; enjoy, > -e > > On Friday, December 10, 2021 at 9:14:20 AM UTC-8 taale...@gmail.com wrote: > >> Is that possible? If so how? >> >> For example, say the name of the TW is "The South-Eastern Canadian >> Women's Association Left-Handed Doily Lint Museum for t

[tw5] Re: Set Browser Tab title different from TW Title?

2021-12-10 Thread Eric Shulman
> > For example, say the name of the TW is "The South-Eastern Canadian > Women's Association Left-Handed Doily Lint Museum for the Benefit of the > Children". > > I want to keep that title on the wiki, but in the browser's tab, I just > want "Lin

Re: [tw5] Re: Set Browser Tab title different from TW Title?

2021-12-10 Thread Aidan Grey
; > content: "for the Benefit of the Children" ; > } > > Change the "content:" attributes to your preferred titles. Change the > margin-bottom: 60% to whatever percent works with your actual text. > > This is what it looks like on my system: > > [im

[tw5] Re: Set Browser Tab title different from TW Title?

2021-12-10 Thread 'Mark S.' via TiddlyWiki
cember 10, 2021 at 9:14:20 AM UTC-8 taale...@gmail.com wrote: > Is that possible? If so how? > > For example, say the name of the TW is "The South-Eastern Canadian > Women's Association Left-Handed Doily Lint Museum for the Benefit of the > Children". > > I want t

[tw5] Set Browser Tab title different from TW Title?

2021-12-10 Thread taale...@gmail.com
Is that possible? If so how? For example, say the name of the TW is "The South-Eastern Canadian Women's Association Left-Handed Doily Lint Museum for the Benefit of the Children". I want to keep that title on the wiki, but in the browser's tab, I just want "Lint

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-03 Thread Maurizio Torchio
No, no, I keep everything local! I put it on drive just for you to download and double check if it works by you (after downloading CormorantUpright-Regular.ttf from Google, of course. I chose CormorantUpright in order to make the difference between where it works and where it doesn't very clea

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-03 Thread Charlie Veniot
Oh, if you are keeping your TiddlyWiki instances on Google Drive and using TiddlyDrive, then this definitely won't work. TiddlyDrive, in my kindergarten way of understanding it, totally upends the "URL", so that TiddlyWiki can't reference the file that is right there where the TiddlyWiki is. T

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-03 Thread Maurizio Torchio
same folder. i open right clicking, double clicking, from the browser (file://...) nothing works. here is my empty wiki: https://drive.google.com/file/d/1bkC5viccXBaiN5tHtxpimuaZ6u9ymWZP/view?usp=sharing Il giorno venerdì 3 dicembre 2021 alle 17:40:58 UTC+1 cj.v...@gmail.com ha scritto: > Y

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-03 Thread Charlie Veniot
Yeah, if that font file is in the same file folder as your TiddlyWiki file, I don't know why things are working for me and not for you. How do you open your TiddlyWiki file? Right-click on it and choose open in the popup menu? Bugs me when stuff works A-1 for me but not for somebody else. I a

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-03 Thread Charlie Veniot
I just checked. Single quotes should make no difference. On Friday, December 3, 2021 at 12:35:39 PM UTC-4 Charlie Veniot wrote: > You have single quotes around the font-family name references in both > "@font-face" and ".bubba" style sections. > > I don't in my sample. > > I have no idea if th

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-03 Thread Charlie Veniot
You have single quotes around the font-family name references in both "@font-face" and ".bubba" style sections. I don't in my sample. I have no idea if that makes a difference. On Friday, December 3, 2021 at 11:58:38 AM UTC-4 torc...@gmail.com wrote: > hmm.. I really do not understand. For me

Re: [tw5] Re: Bug in TW 5.2.0 in zoomin view.

2021-12-03 Thread Siniy-Kit
@gmail.com: > Hi Siniy-Kit > > In TW 5.2.1-prereliase everything is good. And it is great! > > > Excellent news, thanks for your help, > > Best wishes > > Jeremy > > > http://heeg.ru/shop2_3.html?id=10Q1RMs2QeKlvKywq7MGHSRltcDYXYTD5y2HFs0aygqE > > пон

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-03 Thread Maurizio Torchio
nope. I spoke too soon. CodeMirror manage badly text selection on touchscreens. looks like https://codemirror.net/6/ will fix this but until then... it's of no use for me. : ( Il giorno venerdì 3 dicembre 2021 alle 11:02:00 UTC+1 Maurizio Torchio ha scritto: > To Whom It May Concern: it was j

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-03 Thread Maurizio Torchio
To Whom It May Concern: it was just a silly z-index problem. div.tc-editor-toolbar { position: sticky; top: 0px; z-index:1; } now I can use embedded font-face in the editor (thanks to CodeMirror) AND have a sticky toolbar. (and I'm perfectly happy!) : ) Il giorno venerdì 3 dicembre 2021 alle

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-02 Thread Maurizio Torchio
Hi Charlie, using a local font file, i.e @font-face { font-family: 'CormorantGaramond'; font-style: normal; font-weight: 400; src: url(./tiddly/CormorantGaramond-Regular.ttf); } does not work (it works anywhere in the wiki, but not in the EditTemplate). anyhow, even if it worked, I prefer to hav

Re: [tw5] [tw] Using Custom Font in Tiddler Editor

2021-12-02 Thread Jeremy Ruston
Hi Maurizio, That’s great to hear, I’m sorry I didn’t mention that option before. Best wishes Jeremy PS - do send a screenshot of what you’ve ended up with, it might inspire others... > On 2 Dec 2021, at 08:47, Maurizio Torchio wrote: > > WOW! IT WORKS > I'm... elated. > > Il giorno gioved

Re: [tw5] [tw] Using Custom Font in Tiddler Editor

2021-12-02 Thread Maurizio Torchio
WOW! IT WORKS I'm... elated. Il giorno giovedì 2 dicembre 2021 alle 09:10:26 UTC+1 jeremy...@gmail.com ha scritto: > thank you Charlie and Jeremy! yes: mine is a font-face. > the problem is: I love fonts! I use different fonts for different wiki, > they embody the "soul" of the wiki (and I'd l

Re: [tw5] [tw] Using Custom Font in Tiddler Editor

2021-12-02 Thread Jeremy Ruston
> thank you Charlie and Jeremy! yes: mine is a font-face. > the problem is: I love fonts! I use different fonts for different wiki, they > embody the "soul" of the wiki (and I'd like to have the same font whether > desktop or mobile, viewing or editing). that's why until now i used the edit > w

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-02 Thread Maurizio Torchio
thank you Charlie and Jeremy! yes: mine is a font-face. the problem is: I love fonts! I use different fonts for different wiki, they embody the "soul" of the wiki (and I'd like to have the same font whether desktop or mobile, viewing or editing). that's why until now i used the edit widget for

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-01 Thread Charlie Veniot
Thanks for the info, Jeremy. 2-tier client server guy over here, so the innards of web browsers is foreign territory for this kid. So whatever browser Maurizio is using, that approach I'm suggesting should work with some font-family available by default in whatever browser Maurizio is using, r

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-01 Thread Jeremy Ruston
I think it's working for CJ because the "Brush Script MT" font is available by default in that browser, without needing to be defined by a font-face tag. That technique only works for built-in fonts because there's no way to inject the CSS font-face declaration into the iframe. Best wishes Jer

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-01 Thread Charlie Veniot
I forgot to mention, you have to add that "bubba" class to the edit text widget. As per the screenshot, the editor is showing that funky font. However, it did strangely take half-a-minute or so for that font to take effect. On Wednesday, December 1, 2021 at 11:45:47 AM UTC-4 torc...@gmail.com

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-01 Thread Maurizio Torchio
thank you cj.v, but it didn't worked for me. it assign the class bubba to the iframe (just as $:/themes/tiddlywiki/vanilla/settings/editorfontfamily does) but... nothing changes. i suspect it has to do with what Jeremy wrote: "The reason that custom fonts doesn’t work with the editor toolbar i

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-01 Thread Maurizio Torchio
thank you cj.v... , but it does not work for me. it adds the class bubba to the textframe (just as $:/themes/tiddlywiki/vanilla/settings/editorfontfamily does), and on inspecting the element, font-family is correctly assigned but... nothing changes. I think it has to do with what Jeremy said:

Re: [tw5] Re: Bug in TW 5.2.0 in zoomin view.

2021-12-01 Thread Jeremy Ruston
Hi Siniy-Kit > In TW 5.2.1-prereliase everything is good. And it is great! Excellent news, thanks for your help, Best wishes Jeremy > > http://heeg.ru/shop2_3.html?id=10Q1RMs2QeKlvKywq7MGHSRltcDYXYTD5y2HFs0aygqE > > понедельник, 29 ноября 2021 г. в 17:56:35 UTC+3, Siniy-K

[tw5] Re: Bug in TW 5.2.0 in zoomin view.

2021-12-01 Thread Siniy-Kit
In TW 5.2.1-prereliase everything is good. And it is great! http://heeg.ru/shop2_3.html?id=10Q1RMs2QeKlvKywq7MGHSRltcDYXYTD5y2HFs0aygqE понедельник, 29 ноября 2021 г. в 17:56:35 UTC+3, Siniy-Kit: > Here I have update my TW5 to 5.2.0 template. > > http://heeg.ru/shop2_3

[tw5] Re: [tw] Using Custom Font in Tiddler Editor

2021-12-01 Thread Maurizio Torchio
Hi everybody, any progress on this? (I really don't like see a different fontfamily when editing) thank you so much for all the great work! maurizio Il giorno martedì 30 gennaio 2018 alle 21:09:06 UTC+1 Ton Gerner ha scritto: > Hi Alfonso, > > If I remember correctly the following comes from Je

[tw5] Re: Bug in TW 5.2.0 in zoomin view.

2021-11-29 Thread Siniy-Kit
Here I have update my TW5 to 5.2.0 template. http://heeg.ru/shop2_3_.html?id=10Q1RMs2QeKlvKywq7MGHSRltcDYXYTD5y2HFs0aygqE#index if I press back button (previous page) it scrolled to the bottom of the page. May be we can fix it by css styles? вторник, 9 ноября 2021 г. в 19:57:29 UTC+3, jeremy..

Re: [Talk TW] [Google Group (Read Only)] [tw5] No CSS while hosting Tiddlywiki on Node.js on Qnap NAS

2021-11-27 Thread Jeremy Ruston
com/Jermolene/TiddlyWiki5/blob/master/editions/empty/tiddlywiki.info Best wishes Jeremy -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 26 Nov 2021, at 23:04, Matt Kobe via Talk TW > wrote: > >  > Hi. I try to host Tiddlywiki Node.js on my Qnap NAS (with COnta

Re: [Talk TW] [Google Group (Read Only)] [tw5] No CSS while hosting Tiddlywiki on Node.js on Qnap NAS

2021-11-27 Thread Jeremy Ruston
com/Jermolene/TiddlyWiki5/blob/master/editions/empty/tiddlywiki.info Best wishes Jeremy -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 26 Nov 2021, at 23:04, Matt Kobe via Talk TW > wrote: > >  > Hi. I try to host Tiddlywiki Node.js on my Qnap NAS (with COnta

[tw5] Basic Programming Language hosting in TW ?

2021-11-26 Thread Charlie Veniot
*(Yeah, BASIC has always tugged at my heart strings.)* Download attached json, and drag into a TiddlyWiki instance to import the two tiddlers. See https://github.com/google/wwwbasic to read about the related javascript library. H, has me thinking: Using TW as a host for basic programming

[tw5] Re: TW 5.2.0 + CouchDB ?

2021-11-26 Thread Jeremy Ruston
PI, which means that TW still has to handle synchronisation * The difficulties of setting up and running a server of my own * The lack of CouchDB online services I was delighted to see Danielo's work with NoteSelf, and it deservedly attracted a lot of interest. It demonstrated that CouchDB can

[tw5] Re: TW 5.2.0 + CouchDB ?

2021-11-25 Thread 'Mark S.' via TiddlyWiki
ddlyWiki. All of them tiddlers sitting in individual text files, right >> where I want them. >> >> Although what you describe would be, I think, of no interest to me here, >> the ability to have these TiddlyWiki instances able to access databases on >> these server

[tw5] Re: TW 5.2.0 + CouchDB ?

2021-11-25 Thread Stephen Wilson
at the TiddlyWiki instances could have access to data > coming from other systems? That would get my attention. > > On Monday, November 22, 2021 at 6:26:58 AM UTC-4 V wrote: > >> Hi. >> >> I have been following the TW project for years and I am still very >> surp

[tw5] Re: TW 5.2.0 + CouchDB ?

2021-11-22 Thread Charlie Veniot
stances able to access databases on these servers, so that the TiddlyWiki instances could have access to data coming from other systems? That would get my attention. On Monday, November 22, 2021 at 6:26:58 AM UTC-4 V wrote: > Hi. > > I have been following the TW project for years an

[tw5] Re: TW 5.2.0 + CouchDB ?

2021-11-22 Thread Jan
eat deal of TiddlyWiki's user base) value that sort of > stability. > On Monday, November 22, 2021 at 4:26:58 AM UTC-6 V wrote: > >> Hi. >> >> I have been following the TW project for years and I am still very >> surprised that the community continues to active

[tw5] Re: TW 5.2.0 + CouchDB ?

2021-11-22 Thread Michael McDermott
robably the two most stable interfaces in technology today. I (and, I suspect, a great deal of TiddlyWiki's user base) value that sort of stability. On Monday, November 22, 2021 at 4:26:58 AM UTC-6 V wrote: > Hi. > > I have been following the TW project for years and I am still ve

[tw5] TW 5.2.0 + CouchDB ?

2021-11-22 Thread V
Hi. I have been following the TW project for years and I am still very surprised that the community continues to actively support super strange, inconvenient and limited ways of saving and synchronizing – but at the same time all developments using normal technologies on which synchronization

[tw5] Re: variables in subfilters make TW crash

2021-11-21 Thread CarloGgi
BINGO! Thanks. :) On Sunday, November 21, 2021 at 3:44:56 PM UTC+2 saq.i...@gmail.com wrote: > I suspect you are using TW v5.1.23 in which this is a know issue. > Upgrading to v5.2.0 should resolve it. If it does not, please report back. > > On Sunday, November 21, 2021 at 2:30

[tw5] Re: variables in subfilters make TW crash

2021-11-21 Thread CarloGgi
I forgot the most important: TW version! *Tiddlywiki* *5.1.23* Ubuntu 18.04.6 LTS Firefox 94.0 CG On Sunday, November 21, 2021 at 3:30:27 PM UTC+2 CarloGgi wrote: > > Hallo everybody, I go into trouble when using variables in subfilters, > they make code as simple as > > <$l

[tw5] Re: variables in subfilters make TW crash

2021-11-21 Thread Saq Imtiaz
I suspect you are using TW v5.1.23 in which this is a know issue. Upgrading to v5.2.0 should resolve it. If it does not, please report back. On Sunday, November 21, 2021 at 2:30:27 PM UTC+1 CarloGgi wrote: > > Hallo everybody, I go into trouble when using variables in subfilters, >

[tw5] variables in subfilters make TW crash

2021-11-21 Thread CarloGgi
filter="[tag[myTag]filter]" variable="result"> <> to crash TW with Internal Javascript error: "TypeError: widget is undefined" Even narrowing down the outer <$list> to a simple <$set> widget as in <$set name="indx" value=&

[tw5] Re: Bug in TW 5.2.0 in zoomin view.

2021-11-14 Thread Siniy-Kit
TW 5.1.21 worked good https://heeg.ru/shop2_2.html?id=16gDZVsB8FOIxrsFKbkbBNWC37lPUAfKOGf-rCVxeOmY вторник, 9 ноября 2021 г. в 19:57:29 UTC+3, jeremy...@gmail.com: > Hi Siniy-Kit, > > I can confirm the problem with v5.2.0. I also checked v5.1.23 and it seems > to have the

[tw5] Re: Bug in TW 5.2.0 in zoomin view.

2021-11-13 Thread Soren Bjornstad
This issue I was experiencing might be the same thing or related: https://groups.google.com/g/tiddlywiki/c/7HPSS67j4uU/m/kOgsG8YQBAAJ On Tuesday, November 9, 2021 at 10:57:29 AM UTC-6 jeremy...@gmail.com wrote: > Hi Siniy-Kit, > > I can confirm the problem with v5.2.0. I also checked v5.1.23 and

[tw5] Re: Windows 10 lost my TW HTML file

2021-11-12 Thread Paul Hampshire
Depending on where you were saving it (Documents folder for example) Windows might have backed it up for you with MS OneDrive. You can access it via your browser https://onedrive.live.com/ On Friday, November 12, 2021 at 3:13:25 PM UTC-5 rcsalsb...@gmail.com wrote: > Windows 10 updated in the m

[tw5] Windows 10 lost my TW HTML file

2021-11-12 Thread Russell Salsbury
Windows 10 updated in the middle of the night and lost my HTML file. No I hadn't backed it up. Is there any way to recover it? Windows 10; Browser Chrome. The HTML file was reset to download size. Everything was closed by the update, but when I restored the open chrome window the file was em

[tw5] Re: Bug in TW 5.2.0 in zoomin view.

2021-11-09 Thread Jeremy Ruston
Hi Siniy-Kit, I can confirm the problem with v5.2.0. I also checked v5.1.23 and it seems to have the same problem. Do you know when the problem was introduced? Did it indeed ever work properly? Best wishes Jeremy On Tuesday, November 9, 2021 at 4:45:33 PM UTC Jeremy Ruston wrote: > Hi Siniy

  1   2   3   4   5   6   7   8   9   10   >