[tw5] Re: [TW5] Introducing TiddlyTables a plugin for creating sortable tables.

2019-12-12 Thread Alan Aldrich
Mohammad, I thought about it and I cannot recall why I decided to go that route. Another option would be to use the tag macro. My best guess is I didn't know about either of these options at the time. I like the simplicity of your suggested template and will change to it in the next release.

[tw5] Re: adding second action along with primary button action

2019-12-12 Thread Dave
Here's what I got working: \define myactions() <$action-sendmessage $message="tm-delete-tiddler" tooltip="delete" class="tc-btn-invisible"/> <$action-listops $tiddler="Today List" $field="list" $filter="[tag[today]!tag[exclude]!tag[done]sort[priority]]"/> \end \define justDelete() <$button

[tw5] Re: Searches

2019-12-12 Thread A Gloom
> > I'm thinking "literal" might be broken, or maybe we're interpreting it too > wait for it ... literally. > : ) coder humor -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from

[tw5] Re: Custom data styles: targeting fields

2019-12-12 Thread TonyM
Post Script Using selectors and Understanding specificity is quite involved. One thing I know is you can wrap something in a div with a specific ID and include that ID in your CSS so it only applies to something inside that ID. In a recent

[tw5] Re: Custom data styles: targeting fields

2019-12-12 Thread TonyM
Hubert, Perhaps, I expected you to read between the lines a little more. As in marios pointer to "dynamically create a CSS

[tw5] Re: Filter/Search problem

2019-12-12 Thread Mohammad
The reason is you have both part empty so both part returns the whole list of tiddlers and negative sign cause all-all = nothing 1. create those temp tiddler 2. put something in them 3. run the code 4. now empty the negsearch tiddler 5. run again 6. it works Your mistake is here you think if

[tw5] Re: adding second action along with primary button action

2019-12-12 Thread Dave
Thanks Tony, I'll give that a try in the next couple days and let you know how it goes -- 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

[tw5] Re: The-book weekly report

2019-12-12 Thread TonyM
Luis, Can I open with Google Docs and apply changes to help edit this? Regards Tony On Thursday, December 12, 2019 at 11:41:06 PM UTC+11, Luis Gonzalez wrote: > > This week I've been focused on the widgets chapter. > > I am a little worried about the way to orient this chapter. I've tried to >

[tw5] Re: The-book weekly report

2019-12-12 Thread TonyM
Luis, Thanks so much for your work. Here is my own comments reviewing the beginning of the document. 1. I like the front page but the possibility of server tiddlywiki's beyond the single file version may be worthy of mention. 2. On page 9 I think it fair to describe the long journey

[tw5] Re: Shiraz plugin: dynamic table gets search ui

2019-12-12 Thread Mohammad
On Friday, December 13, 2019 at 7:39:08 AM UTC+3:30, A Gloom wrote: > > Mohammad > > VERY NICE!! Will be watching with interest to see if you come up with > something better than my mad coding : D > LOL! Where is that? Is it the same you use in your documentation resource project?

[tw5] Re: Shiraz plugin: dynamic table gets search ui

2019-12-12 Thread Mohammad
Hi Tony! On Friday, December 13, 2019 at 6:53:20 AM UTC+3:30, TonyM wrote: > > Mohammad, > > It looks good. Perhaps placing this, or a variation of it, as an advanced > search tab would be appropriate, because that is what it is. > I thought to use this as en example (use case) but keep the

[tw5] Re: Searches

2019-12-12 Thread 'Mark S.' via TiddlyWiki
I'm thinking "literal" might be broken, or maybe we're interpreting it too wait for it ... literally. On Thursday, December 12, 2019 at 8:22:13 PM UTC-8, A Gloom wrote: > > Nice work Mark-- will be studying it... > > Hopefully that will work for PWL > > is literal not working in this use

[tw5] Re: Searches

2019-12-12 Thread A Gloom
Nice work Mark-- will be studying it... Hopefully that will work for PWL is literal not working in this use case? It will find the literal search string/term, wether it's part of a string/value as well as a separate/independent value/string? -- You received this message because you are

[tw5] Re: Filter/Search problem

2019-12-12 Thread 'Mark S.' via TiddlyWiki
The reason this doesn't work is because when $:/temp/negsearch is missing, then search{$:/temp/negsearch} will return EVERY tiddler that contains nothing -- i.e., every single tiddler. On Thursday, December 12, 2019 at 11:29:14 AM UTC-8, Eric Shulman wrote: > > If I understand your goal

[tw5] Re: Lets talk about tables.

2019-12-12 Thread TonyM
Folks, In the same vein as lists, tables we can add toc's. If we wanted to be complete the ability to generate multi-level sort lists could first be introduced to tables but with clever design we can strip away the table "Chrome (headers, rows and lines)" and provide indented lists, or heading

[tw5] Re: Shiraz plugin: dynamic table gets search ui

2019-12-12 Thread A Gloom
Mohammad VERY NICE!! Will be watching with interest to see if you come up with something better than my mad coding : D -- 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: Filter/Search problem

2019-12-12 Thread 'Mark S.' via TiddlyWiki
Here's my version: <$list filter="[search{possearch}!search{negsearch}] ~[search{possearch}] -[[possearch]] -$:/HistoryList"> <> I changed $:/temp/possearch and $:/temp/negsearch for my research. I'm sure you'll see how to change them back. Because the possearch term will always contain

[tw5] Re: Filter/Search problem

2019-12-12 Thread 'Stephen Kimmel' via TiddlyWiki
Apparently clarity is not my strong suit. Yes. Both your and Eric's solutions work fine when $:/temp/possearch contains "Mark" and $:/temp/negsearch contains "Temple." I get a list of tiddlers. Now go to the next step. What happens with your solution when $:/temp/possearch contains "Matthew"

[tw5] Re: Datepicker plugin & static export

2019-12-12 Thread TonyM
Steve, Do I take is that you reference the date picker in the tiddler that you then export to a static tiddler? Static means a HTML only representation (No interaction or javascript) of what you see when the tiddlers wikitext is rendered. In my view, In this case the date picker will not work

[tw5] Re: Shiraz plugin: dynamic table gets search ui

2019-12-12 Thread TonyM
Mohammad, It looks good. Perhaps placing this, or a variation of it, as an advanced search tab would be appropriate, because that is what it is. I wonder if the field displayed in the preview slider which is currently text, could be set as well? Just for fun I extracted your data tiddlers and

[tw5] Re: Searches

2019-12-12 Thread 'Mark S.' via TiddlyWiki
Because "literal" doesn't work, a lot more code is needed. Make a backup of your work. Here's my version, which I tested with some simple data. I may have lost the formatting you had with @@, so you may need to put that back in. Basically what the following does is use a whole separate routine

[tw5] Re: Filter/Search problem

2019-12-12 Thread TonyM
Stephan {tiddlername} in filters or {{tiddlername}} in wiki text are not variables, they are transclusions. We use in filters and <> in wiki text If you choose to use transclusions the thing you are transcluding needs to contain the value you want used. Given Erics guidance the simple form

[tw5] Re: adding second action along with primary button action

2019-12-12 Thread TonyM
Dave, I am not exactly sure what you are trying to achieve but have you tried is before the delete "label"? However more likely it may be that the message in the button is executed after the actions inside the button. Perhaps drop the message and use the action send message widget

[tw5] adding second action along with primary button action

2019-12-12 Thread Dave
I have this code that displays a button and a list <$button> load recent changes <$action-listops $tiddler=<> $field="list" $filter="[tag[today]!tag[exclude]!tag[done]sort[priority]]"/> <> The list items are sortable, and when you click the button, it re-populates the list from that

[tw5] Re: Filter/Search problem

2019-12-12 Thread 'Stephen Kimmel' via TiddlyWiki
Unfortunately, if $:/temp/negsearch doesn't exist or the text field is blank, then this gives me nothing at all. That's the problem I'm trying to avoid. I've tried with a "missing" operator and an "else" operator and that doesn't seem to work either. On Thursday, December 12, 2019 at

[tw5] Re: SVG for button graphic

2019-12-12 Thread A Gloom
just be careful-- save any wotk before messing with code in case of worst case-- see warning below WARNING; uses absolute positioned (positon:absolute) div's. If the absolute positioned div is taken out of it relatively positioned container div (positon:relative), it can appear elsewhere,

[tw5] Questions to ask about saving and hosting your wiki

2019-12-12 Thread TonyM
Folks, The options available to save ot host Tiddlywiki are numerous. People with knowledge of multiple options find it easy to provide a solution to someone who asks, however it takes time to extract a users requirements from them. As a result I am keen to prepare a set of questions who's

[tw5] Re: Tiddlywiki on a LAN share/container (Was self-host tiddlywiki)?

2019-12-12 Thread TonyM
Nick, Perhaps you need to share more so we can guide you. smb or nfs are simply file systems. if you have read/write access you still need your browser to be able to save back. You either use Timimi or a saver (various available) so single file wikis can save without always having to

[tw5] Re: Searches

2019-12-12 Thread A Gloom
the literal prefix won't work for what OP wants testing with 2 tiddlers with the 3 fields, one tiddler all fields set at 1, the other set at 12... search for "1" brings up both, search for "12" brings up the 2nd tiddler for exact matches of even a single character, this regexp works <$list

[tw5] Re: Searches

2019-12-12 Thread Eric Shulman
On Thursday, December 12, 2019 at 2:21:58 PM UTC-8, Mark S. wrote: > > Try modifying the search filter so it looks for the literal string: > That is, change > search:hd > to > search:hd:literal > That is exactly what I already suggested: adding the "literal" flag to the search filters, and then

[tw5] Re: Searches

2019-12-12 Thread 'Mark S.' via TiddlyWiki
Try modifying the search filter so it looks for the literal string: That is, change search:hd to search:hd:literal On Thursday, December 12, 2019 at 1:34:10 PM UTC-8, PWL wrote: > > Okay fixed that. Unfortunately it didn't work. I tried surrounding it > with spaces too. Still getting

[tw5] Re: Tiddlywiki on a LAN share/container (Was self-host tiddlywiki)?

2019-12-12 Thread Nick
I have been investigating these options but it's not clear to me which one would be suited best for me. Right now I was looking at webdav and the possibility to use my existing Nextcloud for this. Anyone who can elaborate why webdav and not smb or nfs -- You received this message because you

[tw5] Re: Tiddlywiki on a LAN share/container (Was self-host tiddlywiki)?

2019-12-12 Thread Jed Carty
If it is just on the local LAN that you certainly want to use either Bob or TiddlyServer, Bob is available here: https://github.com/OokTech/TW5-BobEXE/releases just download the version for your system and run it, TiddlyServer is here https://github.com/Arlen22/TiddlyServer, I think other

[tw5] Re: Searches

2019-12-12 Thread PWL
Okay fixed that. Unfortunately it didn't work. I tried surrounding it with spaces too. Still getting the same results, search one and get 1,10, 11, 12 etc. On Wednesday, 11 December 2019 20:47:15 UTC-4, Eric Shulman wrote: > > On Wednesday, December 11, 2019 at 4:20:22 PM UTC-8, PWL wrote:

[tw5] Re: Itty.bitty - a cousin to the tiddler?

2019-12-12 Thread TonyM
Now I am going to immediately put an argument opposite to my last. Can itty.bitty built into tiddlywiki be used to take and preserve a snapshot of a rendered tiddler? it would compress the result and allow review in a new tab or iframe. It could also generate static html pages where we can use

[tw5] Re: Itty.bitty - a cousin to the tiddler?

2019-12-12 Thread TonyM
Mario Thanks for considering that. In a similar way I see more value in a tool to use a filter to package tiddlers in a bookmarklet. Jeremy provided the wiki text recently to me. One drags the bookmarklet to the browser bookmarks and with a click it silently imports the tiddlers in the

[tw5] Re: search operator and variables

2019-12-12 Thread Mohammad
Good point Tony! I think TiddlyTables has a lot to learn and what you said is used throughout TiddlyTables code! --Mohammad On Friday, December 13, 2019 at 12:19:33 AM UTC+3:30, TonyM wrote: > > Mohammad et all > > A design pattern I use to simplify similar code is turning text references > or

[tw5] Shiraz plugin: dynamic table gets search ui

2019-12-12 Thread Mohammad
I am EXPERIMENTING how to implement a searchable dynamic table in Shiraz! My top priorities are - *modular design (extensible)* - *minimalist design* - *simple to use* - *simple to understand* Today we had a fruitful thread with Eric Shulman who created a simple powerful

[tw5] Re: search operator and variables

2019-12-12 Thread TonyM
Mohammad et all A design pattern I use to simplify similar code is turning text references or transcludes into variables \define sitetitle() {{$:/SiteTitle}} \define sitesubtitle() {{$:/SiteSubtitle}} These can be global variables as well One advantage being variables can be reset with a

[tw5] Re: to tag or not to tag

2019-12-12 Thread TonyM
Captain Re tableofcontents tag That is one way and the new here button facilitates tagging subtiddlers with the current. Use the TOCP solution if you want to move this into a field and save tags. Regards Tony -- You received this message because you are subscribed to the Google Groups

[tw5] Re: Tiddlywiki on a LAN share/container (Was self-host tiddlywiki)?

2019-12-12 Thread TonyM
Just for consistency if you were hosting on a php server I recommend tw-reciever to edit online. The store php seems fragile Tony -- 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,

[tw5] Re: Regex or loops in filter notation?

2019-12-12 Thread TonyM
In my only published plugin mymenus I allow multiple menu items with fields named menu-n I Can list these with a filter [all[current]fields[]prefix[menu-]] I can then process as many menu- fields that exist. Perhaps this will help? regards Tony -- You received this message because you are

[tw5] Re: Regex or loops in filter notation?

2019-12-12 Thread 'Mark S.' via TiddlyWiki
Having individual "subject" fields will require a fair amount of wikitext programming. You might consider using the list field to list your subjects. It depends on the overall nature and comprehensiveness of your task. If you have a photo, say "Photo-1" and then use the "new here" button

[tw5] Re: Very simple button for notes - help appreciated

2019-12-12 Thread Matthew Phelps
YES!!! This is exactly it. Thank you sooo much. You're the best. On Thursday, December 12, 2019 at 2:16:49 PM UTC-5, Mark S. wrote: > > If you go to advanced search and put this into the filter tab: > > [tags[]addprefix[X]addsuffix[X]] > > then scroll down to see the various tags in

[tw5] Re: Filter/Search problem

2019-12-12 Thread Eric Shulman
If I understand your goal correctly, you want to get one list that matches a certain filter... and then remove some of the items that match another filter. To do that, use separate filter "runs", where the second filter has a leading "-" (minus), like this: <$list

[tw5] Re: Regex or loops in filter notation?

2019-12-12 Thread Mohammad
See http://tw-regexp.tiddlyspot.com/ to learn how to use regexp in Tiddlywiki. --Mohammad On Thursday, December 12, 2019 at 10:30:31 PM UTC+3:30, Paul Lee wrote: > > I wish I could put a regex in a filter, in order to select all fields > whose identifiers begin with the same group of

[tw5] Re: Very simple button for notes - help appreciated

2019-12-12 Thread 'Mark S.' via TiddlyWiki
If you go to advanced search and put this into the filter tab: [tags[]addprefix[X]addsuffix[X]] then scroll down to see the various tags in use. You will notice that $:/tags/PageControls has a space in front of it. Somehow you introduced an extra character. Delete the tag from TestButton2 and

[tw5] Filter/Search problem

2019-12-12 Thread 'Stephen Kimmel' via TiddlyWiki
I want to combine a pair of search operators within a single filter where one will be positive and the other negative. For example, I might want a list of all the tiddlers that contain the word "Mark" but exclude all the tiddlers that contain the word "temple." The solution I suspect would

[tw5] Regex or loops in filter notation?

2019-12-12 Thread Paul Lee
I wish I could put a regex in a filter, in order to select all fields whose identifiers begin with the same group of characters in tiddlers inheriting one of my templates. The needed functionality is to loop through different fields with the same name except for a number at the end, outputting

[tw5] Very simple button for notes - help appreciated

2019-12-12 Thread Matthew Phelps
I have spent many hours scouring through examples on how to make a pagetoolbar button that acts as a custom journal, but am not having any success. I believe there there is something very subtle I am missing but cannot for the life of me determine why it is not working. I've tried looking at

[tw5] Re: Tiddlywiki on a LAN share/container (Was self-host tiddlywiki)?

2019-12-12 Thread Michael Wiktowy
On Thursday, December 12, 2019 at 7:18:46 AM UTC-4, Nick wrote: > > Hi all > > I am a diehard FF user and was using TW together with tiddlyfox for some > time. > A few years ago I experienced quite a lot of browser crashes, lost some TW > content and after that the possibility of using tiddlyfox

[tw5] Re: Best of 2019 and wish-list of 2020

2019-12-12 Thread Mohammad
In 2019 1. TW 5.1.20+ gave TW alot of new feature, among them new filter operators (math and string operation) 2. Relink and TiddlyTables 3. The android apps Tiddloid and Quinoid Bob and TiddlyServer, Timimi and filebackup are great tools without them life was much more difficult.

Re: [tw5] Re: Best of 2019 and wish-list of 2020

2019-12-12 Thread Diego Mesa
2019: Thankful for Mohammad's entire discography, Alans TiddlyTables, and Luis' "The BOOK™" 2020: I wish for the text sclier plugin overhaul, and core support for tiddler title completion in edit mode! Diego On Thursday, December 12, 2019 at 9:45:34 AM UTC-6, Aidan Grey wrote: > > 2019 - I

[tw5] Re: to tag or not to tag

2019-12-12 Thread Captain Packers
Thanks to everyone for the great feedback and food for thought. Happy Holidays! On Wednesday, December 11, 2019 at 10:05:56 AM UTC-5, Captain Packers wrote: > > I'm curious about what people's views are about tagging. Is it better to > limit the number of tags you use and force tiddlers to fit

[tw5] Re: to tag or not to tag

2019-12-12 Thread Captain Packers
So for example, with a TableOfContents, don't tag every tiddler with TableOfContents, but instead tag a second level tiddler with one of the primary area tiddlers that is tagged with TableOfContents??? Something like that? On Wednesday, December 11, 2019 at 5:39:53 PM UTC-5, TonyM wrote: > >

[tw5] Re: search operator and variables

2019-12-12 Thread Mohammad
On Thursday, December 12, 2019 at 7:24:00 PM UTC+3:30, Eric Shulman wrote: > > I just added an "export" button to SearchAndDestroy > so you can now use it just like the $:/AdvancedSearch/Filter panel > except that you don't need to hand-write the filter. > This is very useful specially for who

[tw5] Re: search operator and variables

2019-12-12 Thread Mohammad
Looks great! I am sure this wiki will get a lot of attention. Filter is a fundamental area in Tiddlywiki always users specially newcomers get confused! It is nice to see what is the form of filter produce that list of tiddlers. Thank you Eric! --Mohammad On Thursday, December 12, 2019 at

[tw5] Re: search operator and variables

2019-12-12 Thread Eric Shulman
I just added an "export" button to SearchAndDestroy so you can now use it just like the $:/AdvancedSearch/Filter panel except that you don't need to hand-write the filter. enjoy, -e -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

Re: [tw5] Re: Best of 2019 and wish-list of 2020

2019-12-12 Thread Aidan Grey
2019 - I only really started using TW this year, so it's all the best. Favorite thing of all though is Mohammed's Commander. Used it a LOT when setting up / cleaning up notes. 2020 Wishlist: - a comprehensive list / explanation of CSS selectors : what does XYZ selector do? How do I effectively

[tw5] Re: Best of 2019 and wish-list of 2020

2019-12-12 Thread 'Mark S.' via TiddlyWiki
For 2020 Either a WYSIWYG editor that writes to wikitext OR A markdown mode that understands wikitext widgets. And a puppy. On Thursday, December 12, 2019 at 1:43:25 AM UTC-8, Mohammad wrote: > > Dear all, > > The 2019 is gradually goes to end and a new year 2020 will start soon! > I

[tw5] Re: search operator and variables

2019-12-12 Thread Eric Shulman
On Thursday, December 12, 2019 at 12:37:57 AM UTC-8, Mohammad wrote: > > The http://tiddlytools.com/filtergenerators.html site title is good to > change to reflect the purpose like Filter Generator. > As you've suggested, I've added a $:/SiteTitle and $:/SiteSubtitle. I've also updated the

[tw5] Re: Bob and TiddlyServer

2019-12-12 Thread 'Mark S.' via TiddlyWiki
On Thursday, December 12, 2019 at 1:11:13 AM UTC-8, Jed Carty wrote: > > By default if you put in a wiki location that doesn't exist that will be > removed the next time the list of wikis is updated. I don't know if that is > what you are describing because I am still not certain of the

[tw5] Datepicker plugin & static export

2019-12-12 Thread Steven Schneider
Hi folks, I love the datepicker (http://kixam.github.io/TW5-datePicker/) plugin; thanks for the great work! One bug: It generates a javascript fatal error when exporting a tiddler as static html: Uncaught TypeError: Cannot assign to read only property 'parentNode' of object '#' Any

[tw5] Re: Itty.bitty - a cousin to the tiddler?

2019-12-12 Thread TiddlyTweeter
Ciao Mat & PMario PMario wrote... > 2) I don't see a real usecase ... Neither do I. The thing works via an online service in the default. It is a nice thing ... BUT ... "What has TW got to do with it?" What would be the benefit? TT -- You received this message because you are

[tw5] Re: The-book weekly report

2019-12-12 Thread Mohammad
Hi Luis, TW-Scripts is a good place to see examples and brief explanation on some element behavior. Find it at: https://kookma.github.io/TW-Scripts/ --Mohammad -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group

[tw5] Re: Lets talk about tables.

2019-12-12 Thread Mohammad
Tables give comfort and readability when you work on bunch of tiddlers. Tiddlywiki core uses itself tables in several cases like Tag Manager https://tiddlywiki.com/prerelease/#%24%3A%2FTagManager Tiddler Manager https://tiddlywiki.com/prerelease/#%24%3A%2FManager I think dynamic tables are

[tw5] Re: Itty.bitty - a cousin to the tiddler?

2019-12-12 Thread PMario
Hi Mat, I had a closer look at the implementation and it seems to be simple to implement into TW. Both the encoder and the decoder. There are some lzma libraries at github, which could be used. Minified code size may be about 50kByte ... BUT There are 2 concerns. 1) Security. See the last

[tw5] Tidgraph not scrolling to top... Any ideas?

2019-12-12 Thread Ste Wilson
I've just tried the tidgraph plug in on tiddlywikki.com and it also does not scroll to the top. I have also tested on an empty wiki with the same result. Bug? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and

[tw5] Re: Itty.bitty - a cousin to the tiddler?

2019-12-12 Thread Ste Wilson
Qr code* -- 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 this discussion on the web visit

[tw5] Re: Itty.bitty - a cousin to the tiddler?

2019-12-12 Thread Ste Wilson
But we already have a we code generator! -- 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 this discussion on the

[tw5] Re: Lets talk about tables.

2019-12-12 Thread PMario
On Wednesday, December 11, 2019 at 10:23:03 AM UTC+1, HC Haase wrote: ... > So this is my proposal. > Imaging that you make a standard TW list, and at the top left corner (or > elsewhere) there is a small toggle button. table view on/of. with this you > get a table view of your list with all

[tw5] Re: Self-host tiddlywiki?

2019-12-12 Thread Nick
Hi Jed, thanks for picking this one up! I meant using it on my LAN, not publicly. I did some searches on note taking apps but came back to TW because I primarly liked the style and simplicity of it very much so I would like a way to access it from multiple devices from a browser. So being able

[tw5] Re: Lets talk about tables.

2019-12-12 Thread PMario
On Wednesday, December 11, 2019 at 10:23:03 AM UTC+1, HC Haase wrote: .. > However I am not sure if it breaks with the TW-philosophy of the tiddler > as the smallest unit and tags as the main organiser. > I think "tags as the main organiser" is only true, because it has the best UX (user

[tw5] Re: Self-host tiddlywiki?

2019-12-12 Thread Jed Carty
By self host do you mean for use on the same computer that is hosting it, for use on the local network on on a public-facing server? Because if it is one of the first two there are some newer tools that make it pretty simple, if it is for a public-facing server than it depends on how much

[tw5] Re: Custom data styles: targeting fields

2019-12-12 Thread PMario
On Thursday, December 12, 2019 at 12:18:50 PM UTC+1, PMario wrote: ... > Other possibilities can be found in the Style FAQ. Especially "dynamically > create a CSS >

[tw5] Re: Custom data styles: targeting fields

2019-12-12 Thread PMario
Hi Hubert, Starting with 5.1.16 we have the possibility to use a "class" field to define special behaviour. Other possibilities can be found in the Style FAQ. Especially "dynamically create a CSS

[tw5] Self-host tiddlywiki?

2019-12-12 Thread Nick
Hi all I am a diehard FF user and was using TW together with tiddlyfox for some time. A few years ago I experienced quite a lot of browser crashes, lost some TW content and after that the possibility of using tiddlyfox ceased to work. I have missed using TW quite a lot, so much that I'm

[tw5] Best of 2019 and wish-list of 2020

2019-12-12 Thread Mohammad
Dear all, The 2019 is gradually goes to end and a new year 2020 will start soon! I would like to ask you to share the best of 2019 and your wishlist of 2020. Tiddlywiki gets more powerful and resource rich and now we have many tools --Mohammad -- You received this message because

[tw5] Re: search operator and variables

2019-12-12 Thread Mohammad
Many thanks for clarification! --Mohammad -- 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 this discussion on the

[tw5] Re: Custom data styles: targeting fields

2019-12-12 Thread Hubert
Tony, I appreciate your efforts to assist me. But what you've described or referenced is exactly what I've been doing and what I've already had implemented in my own wiki for a long time. As you can see in my original post and also in its title, I'm trying to go beyond all of that. I'm trying

[tw5] Re: Lets talk about tables.

2019-12-12 Thread TonyM
Tables may appear to be structured, but are they if they have one or diverse members, or exist to discover relationships. It is important to recognise the interplay of non linear and linear information. I can collect information of any nature or detail in a non linear datastore. However as we

[tw5] Re: search operator and variables

2019-12-12 Thread Eric Shulman
On Thursday, December 12, 2019 at 12:34:23 AM UTC-8, Mohammad wrote: > > On Thursday, December 12, 2019 at 11:04:09 AM UTC+3:30, Eric Shulman wrote: >> >> 3) If you don't provide a tag value, it won't match anything. To avoid >> this, use the tag:strict[...] filter syntax >> > > I do not

[tw5] Re: Bob and TiddlyServer

2019-12-12 Thread Jed Carty
I have just spent the last 20 minutes putting random things into different places and you have found a way to crash bob that I was unaware of, but the way to get that error is not to put something into the adding a node wiki part, you have to edit the manual settings and remove the 'logging'

[tw5] Re: [TW5] Introducing TiddlyTables a plugin for creating sortable tables.

2019-12-12 Thread Mohammad
Hi Alan, I realized for tags template you have developed your own template! I think you can use the core template for this purpose. So, in $:/plugins/aaldrich/tables/template/body/tags replace the content with below >> <$tiddler tiddler=<>>{{||$:/core/ui/ViewTemplate/tags}} where tagclass

Re: [tw5] Pin Unpin Posts

2019-12-12 Thread Jeremy Ruston
Hi Tony > > I am not saying this, perhaps moderators are necessary, I am saying to avoid > active moderation unless there is a real need. Sure spammers and trolls > should be locked out. Are you saying that this community practices active moderation without a real need? Or that you’re afraid

Re: [tw5] Google Group Tags... Notes on utility & moderation?

2019-12-12 Thread Jeremy Ruston
Hi Tony Are you still arguing that we should open up the group moderation settings again? The only rationale I’m hearing is that we can clear up any accidental moderation mistakes. The primary reason that I’m not in favour of doing so is that it makes a poor experience for new or occasional

[tw5] Re: search operator and variables

2019-12-12 Thread Mohammad
Minor comment The http://tiddlytools.com/filtergenerators.html site title is good to change to reflect the purpose like Filter Generator. --Mohammad -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

[tw5] Re: search operator and variables

2019-12-12 Thread Mohammad
On Thursday, December 12, 2019 at 11:04:09 AM UTC+3:30, Eric Shulman wrote: > > On Wednesday, December 11, 2019 at 9:59:39 PM UTC-8, Mohammad wrote: >> >> Search operator https://tiddlywiki.com/prerelease/#search%20Operator >> has flag list, field list and operand! I want to have a list widget