Re: [tw] Creating tiddlers outside of TW5

2017-11-28 Thread Paul Hemans
Thanks I'll check it out. On Tue, Nov 28, 2017 at 9:12 PM, Jeremy Ruston wrote: > Hi Paul > > Very much a noob, but this is a smashing project. > > > Thanks! > > I am running tiddlywiki with the server option. I would like to create > tiddlers through an external

Re: [tw] Creating tiddlers outside of TW5

2017-11-28 Thread Paul Hemans
Hi Jeremy, where can I find the docs on the HTTP API? On Tue, Nov 28, 2017 at 9:52 PM, Paul Hemans wrote: > Thanks I'll check it out. > > On Tue, Nov 28, 2017 at 9:12 PM, Jeremy Ruston > wrote: > >> Hi Paul >> >> Very much a noob, but this is

[tw] Re: Australian or Sydney based tiddlywiki enthusiasts?

2017-11-28 Thread Paul Hemans
Yes I'd like that. We head down the south coast now and then for holidays and pass through Braidwood on the way. Good part of the world. I have added you to a Google circle so you should be able to let me know when you are passing by. On Tuesday, November 28, 2017 at 8:03:17 PM UTC+11, TonyM

[tw] Re: Auto Tiddler Tag Linking.

2017-11-28 Thread tobaisch
For the old TW Classic there was http://linkify.tiddlyspot.com/. Exactly this one for the new TW5 i am searching. or something similar :) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails

Re: [tw] Creating tiddlers outside of TW5

2017-11-28 Thread Jeremy Ruston
Hi Paul > Very much a noob, but this is a smashing project. Thanks! > I am running tiddlywiki with the server option. I would like to create > tiddlers through an external process and then display them in the browser. > That has been successful. > > Now I need the page to refresh in the

Re: [tw] Creating tiddlers outside of TW5

2017-11-28 Thread Jeremy Ruston
Hi Paul > Hi Jeremy, where can I find the docs on the HTTP API? Embarrassingly, there’s no decent documentation. The API is a subset of the TiddlyWeb API, which is documented here: https://tank.peermore.com/tanks/tiddlyweb/HTTP%20API

[tw] Re: Auto Tiddler Tag Linking.

2017-11-28 Thread tobaisch
or even a plugin that automatically link words they are in a whitelist. this one is maybe easier. for example: In my whitelist are two words: "nice" & "day" I have three Tiddlers with the title: "nice", "day" & "exampel". I write the following text in a new tiddler. Today is a nice day and that

[tw] Comma-separated lists in TW5

2017-11-28 Thread Rob Hoelz
Hi TiddlyWiki users and devs! I'm working on a piece of UI for a plugin I wrote, and I would like to render a list of items as a comma-separated list. Unfortunately, I can't seem to wrap my head around how to do this - at first I thought to use $reveal, but that depends on state in a tiddler

[tw] Adding a new index to a JSON data tiddler

2017-11-28 Thread Rob Hoelz
Hi TiddlyWiki users and devs! I'm writing a UI for a plugin, and it's meant to present the contents of a JSON data tiddler in a user-friendly way. The JSON data is a list of lists, like so: [ "Firefox Fx", "FTS [[full text search]]" ] I would like to add functionality to the UI to create

[tw] Re: Plattform independed 3D Html presentations with strut.io

2017-11-28 Thread wegs . petra
Great news! Thanks a ton! I didn't know there was ShowPreper. I will have a look into all the things you posted! have fun too! -- 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

Re: [tw] Creating tiddlers outside of TW5

2017-11-28 Thread Paul Hemans
That's ok about the docs, I understand. I think the suggestion about using devtools is a really good one that should be enough to get me going. On Tue, Nov 28, 2017 at 10:34 PM, Jeremy Ruston wrote: > Hi Paul > > Hi Jeremy, where can I find the docs on the HTTP API? > >

[tw] Re: Comma-separated lists in TW5

2017-11-28 Thread Jed Carty
If you are using a list widget than you just go like this: <$list filter=<>> <>, to prevent a trailing comma on the last item you can do this: <$list filter='[tag[HelloThere]]+[butlast[]]'> <>, <$list filter='[tag[HelloThere]]+[last[]]'> <> -- You received this message because you are

[tw] Re: Comma-separated lists in TW5

2017-11-28 Thread Rob Hoelz
Ah, good trick - thanks! On Tuesday, November 28, 2017 at 12:41:51 PM UTC-6, Jed Carty wrote: > > If you are using a list widget than you just go like this: > > <$list filter=<>> > <>, > > > to prevent a trailing comma on the last item you can do this: > > <$list

[tw] Re: Presenting my simple mobile layout...

2017-11-28 Thread 'Mark S.' via TiddlyWiki
On a small screen, if you have the double chevron clicked, that is what happens. Just click the double chevron again (lower right corner) to restore. Apologies if this is not the problem you are describing. -- Mark On Tuesday, November 28, 2017 at 10:48:59 AM UTC-8, Diego Mesa wrote: > > Hey

[tw] Re: How to Filter Using Range of Field Values ((less than, greater than)

2017-11-28 Thread Jed Carty
Does it work when you only have one? Does <$list filter="[lessthan:birth{!!year}tag[People]]"> give you anything? -- 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

[tw] Re: How to Filter Using Range of Field Values ((less than, greater than)

2017-11-28 Thread Gabriel Perlmutter
Nope On Tuesday, November 28, 2017 at 2:44:36 PM UTC-5, Jed Carty wrote: > > Does it work when you only have one? > > Does > > <$list filter="[lessthan:birth{!!year}tag[People]]"> > > give you anything? > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw] Re: Presenting my simple mobile layout...

2017-11-28 Thread Diego Mesa
Hey JD, Thanks for this! On my TW, Im not sure why, but this is causing strange rendering where basically my sidebar isn't behaving well and ends up taking over everything. On Wednesday, November 22, 2017 at 9:31:14 AM UTC-6, JD wrote: > > Hi, I've upgraded this plugin to *1.0.2*, what is

Re: [tw] Re: How to Filter Using Range of Field Values ((less than, greater than)

2017-11-28 Thread Gabriel Perlmutter
I have tried that syntax it still doesn't work, I get no result. no result: <$list filter="[lessthan:birth{!!year}greaterthan:death{!!year} tag[People]]"> expected result: <$list filter="[lessthan:birth[1950]greaterthan:death[1950]tag[People]]"> On Monday, November 27, 2017 at 10:00:54 AM

[tw] Re: Presenting my simple mobile layout...

2017-11-28 Thread Diego Mesa
Thanks Mark - I did notice that, and I saw the tb5 link above to auto-hide the sidebar as well. My problem is that there seems to be 3 sidebar states: 1. The default sidebar when my window is normal size 2. The mobile sidebar created by this plugin 3. A strange "middle state" that is white

[tw] Re: How to Filter Using Range of Field Values ((less than, greater than)

2017-11-28 Thread BJ
to debug you need some testing, if you type this --{{!!year}}-- <$list filter="[lessthan:birth{!!year}tag[People]]"> does the {{!!year}} show the expected value? On Tuesday, November 28, 2017 at 8:44:36 PM UTC+1, Jed Carty wrote: > > Does it work when you only have one? > > Does > > <$list

[tw] Re: Bug report: Creating New Journal Tiddler deletes existing Journal Tiddler

2017-11-28 Thread Alexander Smit
I'm not on Github.. I just figured the "New journal here"-button actually does opens a journal tiddler allready created with a same date. However, in that case it doesn't add the label of the 2nd tiddles it is opened from. neither it autosaves on confirming. On Tuesday, 10 October 2017

[tw] Re: How to Filter Using Range of Field Values ((less than, greater than)

2017-11-28 Thread TonyM
I know you are talking code snipits here, But I assume you are displaying the result eg; {{!!title}} and using <$/list> On Wednesday, 29 November 2017 07:21:26 UTC+11, Gabriel Perlmutter wrote: > > Nope > > On Tuesday, November 28, 2017 at 2:44:36 PM UTC-5, Jed Carty wrote: >> >> Does it work

Re: [tw] Creating tiddlers outside of TW5

2017-11-28 Thread TonyM
Paul, Checkout the discussion https://groups.google.com/forum/#!searchin/tiddlywiki/multiuser%7Csort:date/tiddlywiki/BJ5I2CqX_Ho/SIQ0zs7bBgAJ which is a development process to build features in this area, Warning it is a bit of a rabbit hole. Needs NodeJS server. Regards Tony On

[tw] Re: Is an endless calendar for birthdays available?

2017-11-28 Thread TonyM
I do not recall seeing one of late, but in TiddlyWiki we would be more likely to use the features to redraw the calendar for every year and use reoccurring appointments. I imagine you are interested in Printing / exporting it? Why not go ahead and build it yourself and learn about tables,

[tw] Re: NoteSelf the Evernote-like experience update

2017-11-28 Thread Diego Mesa
Hi Danielo, Thanks for making and sharing this. I currently use a node installation of tw5 on my local machine, running out of a dropbox folder. I am most interested in adding the "revisions" feature to my tw5 installation. Do you have any information on that? Thanks! Diego On Monday, July

[tw] Re: Where should I post issues I found with what kind of detailed information?

2017-11-28 Thread 'Mark S.' via TiddlyWiki
I think he means the pink banner "can you help improve this ..." you get if you download a full TW and go to edit an existing tiddler. -- Mark On Tuesday, November 28, 2017 at 1:28:45 PM UTC-8, TonyM wrote: > > You can replace a shadow with something else but not delete them, > > Try and

[tw] a useful plugin

2017-11-28 Thread tobaisch
Is there a plugin for following idea? Double click at a tiddler in the sidebar opens the tiddler in edith mode. Maybe ctrl+click would be also a good variant? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

[tw] Re: [TW5] Top Toolbar Plugin Question

2017-11-28 Thread Diego Mesa
Hi Ton, I just went ahead and installed your toolbar on top and layout adjustment plugins and I see the following (attached) What could be the problem? Thanks! On Thursday, August 4, 2016 at 7:13:49 AM UTC-5, Ton Gerner wrote: > > Hi reakt...@gmail.com > > > Is there a way to toggle the

[tw] Re: Where should I post issues I found with what kind of detailed information?

2017-11-28 Thread 'Mark S.' via TiddlyWiki
A screenshot might help. -- Mark On Tuesday, November 28, 2017 at 6:47:05 AM UTC-8, wegs@gmail.com wrote: > > I installed a lot of plugins with the German language and using > Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101 > Firefox/56.0 . > I can't delete some Tiddlers

[tw] [TW5] Documentation Proposal (Improved Examples)

2017-11-28 Thread TonyM
Folks, I plan to start contributing to the TiddlyWiki documentation. I want to spell out what I am keen to add, so wanted to open it for discussion before hand. Please keep this discussion focused on what I propose if possible. As my Newbie status fades I am still finding the documentation

[tw] Re: Auto Tiddler Tag Linking.

2017-11-28 Thread tobaisch
Oh thank you Tony, that sounds really good, but I'm an enduser and have no idea how to somehow implement your code here. :) -- 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

Re: [tw] Re: Bug report: Creating New Journal Tiddler deletes existing Journal Tiddler

2017-11-28 Thread Jeremy Ruston
I think the problem in the original post is fixed in 5.1.15. Best wishes Jeremy -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 28 Nov 2017, at 21:15, Alexander Smit wrote: > > I'm not on Github.. I just figured the "New journal here"-button

Re: [tw] Creating tiddlers outside of TW5

2017-11-28 Thread Paul Hemans
Thanks Tony it does look a little deep from my perspective. What I need to do is hopely fairly simple. Maybe a little later ... On Wed, Nov 29, 2017 at 8:25 AM, TonyM wrote: > Paul, > > Checkout the discussion https://groups.google.com/forum/#!searchin/ >

[tw] Re: reply to calendar plugin not working

2017-11-28 Thread BJ
the solution to passing in parameters to macros is to use the macocall widget <$macrocall $name="diary" year={{!!title}}/> I am quite busy at the moment so it will be some time until I can add extra features. On Wednesday, November 29, 2017 at 1:12:31 AM UTC+1, TonyM wrote: > > BJ, > > I

[tw] Re: Auto Tiddler Tag Linking.

2017-11-28 Thread TonyM
Tob, So you have one 3000 word tiddler, and 100 other tiddlers that are named according to words found in the 3000 word tiddler? If so how were the 100 tiddlers created? If you want to change every occurrence of 100 different words in the 3000 word tiddler to links, following those links may

[tw] [TW5] Documentation Proposal (Improved Examples)

2017-11-28 Thread Riz
If someone could also extend the dev docs, that would be wonderful too. As it is now, it gives a broad outline of practices in TW. Beyond that we are expected to understand the use cases and best practices by looking at the core tiddlers. I think if we manage a couple of more stepping stones,

[tw] Re: a useful plugin

2017-11-28 Thread Sander Datema
Not exactly that, but this plugin allows you to double click a tiddler and edit it: https://danielorodriguez.com/TW5-2click2edit/ Op dinsdag 28 november 2017 16:14:18 UTC+1 schreef tobaisch: > > Is there a plugin for following idea? > Double click at a tiddler in the sidebar opens the tiddler in

[tw] Re: Auto Tiddler Tag Linking.

2017-11-28 Thread tobaisch
Thanks Tony, I understand your intention very well. That's all clear to me, really. Thanks for the many tips and hints. But you have not explained this one special case. e.g. I have 100 Tiddlers and a text copied with 3000 words. How can I find the words that match to the titles of the tiddlers

[tw] Re: Where should I post issues I found with what kind of detailed information?

2017-11-28 Thread TonyM
You can replace a shadow with something else but not delete them, Try and Identify the plugin that produces it disable or delete, save and or reload. The pink banner what is it saying? Tony On Wednesday, 29 November 2017 01:47:05 UTC+11, wegs@gmail.com wrote: > > I installed a lot of

[tw] Re: Auto Tiddler Tag Linking.

2017-11-28 Thread TonyM
Tobiasch, Somewhat similar to your need, I did the following I ham happy to have markup in my wikitext, so I created Question and answer CSS ".q and .a " which I uses like this ;.q This is the Question :.a This is the answer if available And you could use @@.q The Question @@ or a white list.

Re: [tw] Re: Bug report: Creating New Journal Tiddler deletes existing Journal Tiddler

2017-11-28 Thread Michael Wiktowy
Yes, it was fixed. Just tested it with the standard 5.1.15 tiddlywiki. Thank you. /Mike On Tue, Nov 28, 2017 at 6:23 PM, Jeremy Ruston wrote: > I think the problem in the original post is fixed in 5.1.15. > > Best wishes > > Jeremy > > -- > Jeremy Ruston >

Re: [tw] Re: Can node.js be portable with no internet connection

2017-11-28 Thread Raymond McDowell
Thanks for the directions. I note the instruction *"If you want it on the USB stick, download the binary (which is a zip). Hang onto it for now, we'll use it soon." *You didn't say how we should use it. Did I miss something? On Wednesday, October 25, 2017 at 7:36:10 PM UTC+8, Arlen Beiler

[tw] Re: sameday[]

2017-11-28 Thread Eric Shulman
On Monday, November 27, 2017 at 11:43:36 PM UTC-8, Stefan Spycher wrote: > > @Eric: the > > [sameday:created{!!created}] > > -notation is what i couldn't come up with, literally in hours > I'm still trying to understand where i missed the part in the docs where > this would have been

[tw] Re: Australian or Sydney based tiddlywiki enthusiasts?

2017-11-28 Thread TonyM
Paul, I often travel through the highlands on my way to my shack near braidwood. perhaps we can meetup for a coffee. 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, send an

[tw] Re: reply to calendar plugin not working

2017-11-28 Thread TonyM
BJ, I have come across another problem you may be able to help with. I am unable to pass a variable into the <> macro, where say ((!!title)) is a year, or even a year-month, I want to create an ability for the user to enter a year and create a year tiddler, from there they can create an entry

Re: [tw] Re: Bug report: Creating New Journal Tiddler deletes existing Journal Tiddler

2017-11-28 Thread TonyM
Try a fresh Wiki perhaps, I am not getting this behaviour on new Jounal, New Journal here or via the below macro. Subsequent clicks open an existing tiddler for edit and retaining the orginal content \define todayentry() <$button tooltip="Create or Open Today entry">

[tw] Re: Auto Tiddler Tag Linking.

2017-11-28 Thread TonyM
I understand, however when you say; I dont like sticking [[brackets]] all over the place specially after i copyed long text. I don't like using CamelCase-WikiWords too. - You are in someways ignoring the features available to you. Which I may add, exist in many other markups like

Re: [tw] Re: Bug report: Creating New Journal Tiddler deletes existing Journal Tiddler

2017-11-28 Thread Diego Mesa
Hey Tony, You're right - the problem is my Custom New Research Journal Button. I cant track down whats wrong with it though attached are the two files I've modified, based on tobias' tutorial. Any help with this would be greatly appreciated! On Tuesday, November 28, 2017 at 6:17:05 PM

Re: [tw] Re: Bug report: Creating New Journal Tiddler deletes existing Journal Tiddler

2017-11-28 Thread Diego Mesa
Hm I might be missing something silly, but I'm on 5.1.15 but I still see this behavior. On Tuesday, November 28, 2017 at 5:23:31 PM UTC-6, Jeremy Ruston wrote: > > I think the problem in the original post is fixed in 5.1.15. > > Best wishes > > Jeremy > > -- > Jeremy Ruston >

[tw] Re: Reveal widget with nonempty field

2017-11-28 Thread Diego Mesa
Hey Mario, I've been using this plugin very successfully so far, so thank you again! I have found myself recently trying to tag a tiddler with the alias of an existing tiddler. I don't see an easy way to enable this - I'm just wondering if you've thought at all about this, or if it's even

[tw] Re: Hard Linebreaks not appearing with some text formatting

2017-11-28 Thread TonyM
As Suggested, I did the Homework for you. Try this - wrap in a tag, not tiddler links still work Text in a pre element is displayed in a fixed-width font, and it preserves both spaces and [[HTML use in Tiddlers]] line breaks Regards Tony On Sunday, 26 November 2017 13:32:46 UTC+11,