[tw] Re: more than 1 class in tw5

2017-12-25 Thread Fco Javier González Domínguez
Thank you Birthe C Of course i use StyleSheetShortcuts (Eric Shulman) It's a preety way to format the text output. It's similar to how it is done in html using css3. That's why a like it. In TW5 it's diferent. The pair "@@" to open and close the format, you don't know if the second "@@" is a new

[tw] Re: more than 1 class in tw5

2017-12-25 Thread Eric Shulman
On Monday, December 25, 2017 at 1:42:32 AM UTC-8, Fco Javier González Domínguez wrote: > > Thank you Birthe C > Of course i use StyleSheetShortcuts (Eric Shulman) > It's a preety way to format the text output. It's similar to how it is > done in html using css3. That's why a like it. > In TW5 it'

[tw] Re: [TW5] "Muuri-Touch" plugin

2017-12-25 Thread BurningTreeC
Merry Christmas to all! I have some time now, and here are some muuri updates - There are new Buttons to try - enable/disable dragging - vertical/horizontal view - align tiddlers right/left - switch from muuri to tiddlywiki-view and vice versa - gaps filling beha

[tw] Re: more than 1 class in tw5

2017-12-25 Thread Fco Javier González Domínguez
Thank you Eric. I do it so, but as you say it's a bit ugly. I thought there was an other way to do it. Thank you -- 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

[tw] Re: [TW5] MultiUser plugin now serves multiple wikis.

2017-12-25 Thread Stobot
I'm very excited to try this, but am unfortunately lost on trying to get this up and running. I'm a windows using amateur (no git / web / server experience) trying to follow along... I was able to follow the standard TW Node JS instructions and get something open, but now trying to apply this p

[tw] Re: [TW5] MultiUser plugin now serves multiple wikis.

2017-12-25 Thread Jed Carty
Is git not included on windows by default? That may be why. I can write instructions for doing it without git, you can just download the zip file and unzip it instead of using git. That may be a better solution for people who don't use git anyway. I will write up some instructions for that now.

[tw] How to use the "strict" flag for tag operator?

2017-12-25 Thread Jeff Vance
I'm trying to use the new suffix option in the tag filter operator, as described here: https://tiddlywiki.com/#tag%20Operator I don't understand the syntax for how to actually set the "strict" flag. At first I thought it would be like: tag[:strict some_tag]. Or maybe tag[strict: some_tag]

[tw] Re: How to use the "strict" flag for tag operator?

2017-12-25 Thread Jeff Vance
Ah, nevermindI figured it out. I shouldn't have given up so easily. I now see it is tag:strict[some_tag]. So far it seems to be working the way I want, but I need to test this out more. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.

[tw] Re: next/previous navigation

2017-12-25 Thread tobaisch
Hello your Santas, am I doing something wrong? It does not work in version 5.1.15. Regards Tob -- 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.

[tw] Re: [TW5] MultiUser plugin now serves multiple wikis.

2017-12-25 Thread Mat
Jed, interesting stuff as always - even if I have not tried it since I'm a single file kinda guy. Curious; if someone offered a server, would an instance of this creation of yours then allow a collective effort for e.g a plugin repo? Are admin rights controllable? What limitations would you say

[tw] Re: Button and Filter Inefficiencies

2017-12-25 Thread David Allen
So here's what I've tried so far: <$select tiddler="Sandbox_Retrieve" field="current_mode"> add good bad new reverse <$reveal state={{!!Sandbox_Retrieve!!current_mode}} type="match" text="good"> <$button to="Good Tumblr" class="tab_button">Good <> <$set name="goods" filter="[tag[tumblr]!year{S

[tw] Re: Button and Filter Inefficiencies

2017-12-25 Thread Eric Shulman
On Monday, December 25, 2017 at 2:43:27 PM UTC-8, David Allen wrote: > > <$reveal state={{!!Sandbox_Retrieve!!current_mode}} type="match" > text="good"> > For whatever reason this isn't working. I think I've got something wrong > with the reveal widget but I'm not sure what. > The "state" param

[tw] Re: Button and Filter Inefficiencies

2017-12-25 Thread David Allen
That's helped to a degree, but I'm wondering if I could modify the code somehow to prevent the filter from being evaluated until the button is pressed? On Sunday, December 24, 2017 at 11:18:00 PM UTC-6, David Allen wrote: > > Hey everyone! I have buttons that, when clicked, set a field in a tid

[tw] Can I configure and use a simple HTTP server instead of TiddlyServer?

2017-12-25 Thread Don Birdsall
I have setup TiddlyServer on my home network on port 8080. Portforwading on my router is not working. -- 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+u

[tw] Re: Can I configure and use a simple HTTP server instead of TiddlyServer?

2017-12-25 Thread 'Mark S.' via TiddlyWiki
Can't save with plain HTTP server. You would need HTTP plus PHP plus store.php script. -- Mark On Monday, December 25, 2017 at 3:20:57 PM UTC-8, Don Birdsall wrote: > > I have setup TiddlyServer on my home network on port 8080. Portforwading > on my router is not working. > -- You received th

[tw] Possible to get the TOC style with normal tabs macro?

2017-12-25 Thread Jeff Vance
I'm not sure if this is possible, but there are many times I like the look of the table-of-contents, but I don't want to generate a full hierarchy of tagged titles. I just want standard tabbed list of titles, but with the look of the TOC. I don't see any way to control the depth of the TOC ma

[tw] Re: Button and Filter Inefficiencies

2017-12-25 Thread Eric Shulman
On Monday, December 25, 2017 at 3:20:03 PM UTC-8, David Allen wrote: > > That's helped to a degree, but I'm wondering if I could modify the code > somehow to prevent the filter from being evaluated until the button is > pressed? > Use the $button params set and setTo to change a flag value... th

[tw] Re: Button and Filter Inefficiencies

2017-12-25 Thread 'Mark S.' via TiddlyWiki
I think it kind of has to evaluate inside the button because it has no way of knowing if some of that code generates something to display as part of the button text. I *think* what you would do is attach the inner button to a state tiddler and then wrap the inside "executable" code with a neste

[tw] Re: Button and Filter Inefficiencies

2017-12-25 Thread David Allen
So I figured out a way to get this to work. /define some_macro() <> <$set . > <$action-setfield .> /end <$button actions=<> to="destination" class="blah"> Button Title By shoving the costly set code into a macro, I prevented it from being rendered until the button is actually clicked.

[tw] how to sync when I change tidder

2017-12-25 Thread yotarget66
I build tiddlywiki on node,when i edit a tidder by sublime text,but when i refresh browser ,this not in force -- 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 t

[tw] missing can't work in the navigator widget when using markdown plugin

2017-12-25 Thread yotarget66
missing can't work in the navigator widget when using markdown plugin -- 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 p

Re: [tw] how to sync when I change tidder

2017-12-25 Thread Arlen Beiler
You need to wait for the save check mark to change from red to grey. On Dec 26, 2017 11:14 AM, wrote: I build tiddlywiki on node,when i edit a tidder by sublime text,but when i refresh browser ,this not in force -- You received this message because you are subscribed to the Google Groups "Ti