Re: [tw5] Tiddlywiki Rest API for pulling tiddlers by tag or using a filter?

2020-12-13 Thread leeand00
(thank you all rather) On Sunday, 13 December 2020 at 19:18:21 UTC-5 leeand00 wrote: > That's great! :) Thank you! > > On Sunday, 13 December 2020 at 17:37:46 UTC-5 jeremy...@gmail.com wrote: > >> I've used the node.js server version of tiddlywiki and been abl

Re: [tw5] Tiddlywiki Rest API for pulling tiddlers by tag or using a filter?

2020-12-13 Thread leeand00
That's great! :) Thank you! On Sunday, 13 December 2020 at 17:37:46 UTC-5 jeremy...@gmail.com wrote: > I've used the node.js server version of tiddlywiki and been able to > download a bunch of tiddlers in JSON format, but I was wondering if it's > possible to use some sort filter query to retu

[tw5] Tiddlywiki Rest API for pulling tiddlers by tag or using a filter?

2020-12-13 Thread leeand00
I've used the node.js server version of tiddlywiki and been able to download a bunch of tiddlers in JSON format, but I was wondering if it's possible to use some sort filter query to return the tiddlers in JSON format via a REST API or something like that? For instance I might want to use a fil

[tw5] node.js on IIS?

2020-11-18 Thread leeand00
I've been following the tutorial at tiddlywiki.com on setting up tiddlywiki on node.js through IIS . I got through the entire tutorial but when I try to load the page I get an error in the node

[tw5] Taking a Tiddler and seeing what link text was used to link to it for consistency?

2020-09-24 Thread leeand00
If I have many tiddlers in my tiddlywiki that reference a tiddler, I am able to see which ones in the references, but I'm interesting in seeing what the link text for the link to that tiddler is. Is there a way to find this out? -- You received this message because you are subscribed to the Go

[tw5] Re: How do I remove a suffix from a variable?

2020-09-07 Thread leeand00
Yes, that's much less verbose thank you! On Sunday, 6 September 2020 at 19:47:47 UTC-4 Eric Shulman wrote: > On Saturday, September 5, 2020 at 12:05:24 PM UTC-7, leeand00 wrote: > >> So I'm using a filter, and it's working great to remove the suffix and >> add

[tw5] Re: How do I remove a suffix from a variable?

2020-09-07 Thread leeand00
Okay I just used the Javascipt because I'm more familiar with it than the macros (which I don't know how to comment either), but I also because didn't know how to create the new tiddlers in Javascript from the template tiddlers. On Sunday, 6 September 2020 at 18:22:20 UTC-4 saq.i...@gmail.com w

[tw5] Re: How do I remove a suffix from a variable?

2020-09-06 Thread leeand00
ogies. > > > On Saturday, September 5, 2020 at 9:57:05 PM UTC+2, Saq Imtiaz wrote: >> >> Something along these lines will get you there: >> >> <$set name="tiddlerToCreateFromTemplate" >> value={{{[removeSuffix[Underground]]}}} > >> >>

[tw5] How do I remove a suffix from a variable?

2020-09-05 Thread leeand00
So I'm using a filter, and it's working great to remove the suffix and add another one...see below: [tag[templates]tag[EditingTemplate]] +[removesuffix[Template]] +[addsuffix[ - Underground]] Result: Spelling - Underground

[tw5] Keyboard shortcut to jump between tiddler title and tiddler body?

2020-08-09 Thread leeand00
Is there a keyboard shortcut to jump directly to the tiddler title when editing the body and vice versa? Sincerely, Tired of tabbing. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails fr

[tw5] Does node.js Tiddlywiki use the express.js library?

2020-08-04 Thread leeand00
Security Alert regarding express.js: https://www.bleepingcomputer.com/news/security/nodejs-module-downloaded-7m-times-lets-hackers-inject-code/ I would think that tiddlywiki does use this library (and about a million other projects...), so I just thought I ought to make people aware of it. --

[tw5] Re: node.js Tiddlywiki Doesn't Include custom proxy port over ssh when port forwarding?

2020-06-18 Thread leeand00
wiki. On Wednesday, 17 June 2020 19:30:12 UTC-4, leeand00 wrote: > > Okay so I made a network diagram of sorts and attached it. > > I try to access the wiki both externally and internally, and depending on > the value in $__config_tiddlyweb_host.tid different things work (internal

[tw5] Re: node.js Tiddlywiki Doesn't Include custom proxy port over ssh when port forwarding?

2020-06-17 Thread leeand00
No I'm just happy someone is here to help me out. Thank you! The URL requests for tiddlers.json?filter=[all[tidd... is being made to http://wiki/helpdeskaleer.com/recipes/undefined/tiddlers.json?filter=...URI Encoded string That's one of the other wiki's that I have reverse proxied...also the

[tw5] Re: node.js Tiddlywiki Doesn't Include custom proxy port over ssh when port forwarding?

2020-06-17 Thread leeand00
hanging it to: *$protocol$//$host$* > This should make it pickup the port from document.location.host > > > On Wednesday, June 17, 2020 at 8:20:11 PM UTC+2, leeand00 wrote: >> >> The plugins I have are: >> >> - Core: TiddlyWiki5 core >> - Filesystem: Synchron

[tw5] Re: node.js Tiddlywiki Doesn't Include custom proxy port over ssh when port forwarding?

2020-06-17 Thread leeand00
8080 and I get the same errors I got before when tiddlywiki was expecting port 80. On Wednesday, 17 June 2020 14:06:38 UTC-4, Saq Imtiaz wrote: > > In the Control Panel, which plugins do you see listed? > > Do you see either tiddlyweb or nwsaver? > > On Wednesday, June 17, 2020 at

[tw5] Re: node.js Tiddlywiki Doesn't Include custom proxy port over ssh when port forwarding?

2020-06-17 Thread leeand00
m/Jermolene/TiddlyWiki5/blob/master/plugins/tiddlywiki/tiddlyweb/tiddlywebadaptor.js#L40 > $protocol is replaced with document.location.protocol > $host is replaced with document.location.host > > I think the value you want to set is: $protocol//127.0.0.1:8080 > > > > On W

[tw5] Re: node.js Tiddlywiki Doesn't Include custom proxy port over ssh when port forwarding?

2020-06-17 Thread leeand00
PMario, yes, I'm already using nginx to shoot multiple wiki's across port 80 inside the DMZ, and I access it from a specific machine on the LAN that way (as you stated using a reverse-proxy). On Wednesday, 17 June 2020 02:43:19 UTC-4, PMario wrote: > > Hi > I think you should forward URL paths t

[tw5] Re: node.js Tiddlywiki Doesn't Include custom proxy port over ssh when port forwarding?

2020-06-16 Thread leeand00
It's not $:/info/url/port is it? I grepped the github repo I pulled it from and it says Port portion of URL of wiki (eg, ''<>'') in the InfoMechanisms tiddler. On Tuesday, 16 June 2020 15:57:23 UTC-4, leeand00 wrote: > > I just installed TW 5.1.22 on a ma

[tw5] Re: node.js Tiddlywiki Doesn't Include custom proxy port over ssh when port forwarding?

2020-06-16 Thread leeand00
I read something about dynamic port forwarding (and then configuring your browser for that), is that maybe the solution? On Tuesday, 16 June 2020 15:57:23 UTC-4, leeand00 wrote: > > I just installed TW 5.1.22 on a machine (the TW5 server) that I have on > the DMZ behind an SSH gateway

[tw5] node.js Tiddlywiki Doesn't Include custom proxy port over ssh when port forwarding?

2020-06-16 Thread leeand00
I just installed TW 5.1.22 on a machine (the TW5 server) that I have on the DMZ behind an SSH gateway. I have ssh port forwarded from outside and used the local port 8080 to tunnel through the SSH gateway to my TW5 server inside. I also have another PHP web application on there that seems to

[tw5] Re: How do I pass a variable to a Javascript macro? (or don't I?)

2020-05-22 Thread leeand00
inside the JS macro that are wrong, > but that's what's wrong out of the box. > > Good luck! > > > > > On Friday, May 22, 2020 at 4:01:24 PM UTC-7, leeand00 wrote: >> >> Hi, >> >> I'm trying to pass a value to a variable to a javascr

[tw5] How do I pass a variable to a Javascript macro? (or don't I?)

2020-05-22 Thread leeand00
Hi, I'm trying to pass a value to a variable to a javascript macro I'm trying to write; the result keeps coming back NaN, and I belive it is because I am passing "$(bgcol)$" instead of "7" for v: Is there some other way I ought to be passing this argument? <$set name=bgcol value="7"> >>< >"$

[tw5] Re: Personal News

2020-05-22 Thread leeand00
My sister and brother in law had it as well; please get well! On Monday, 18 May 2020 04:59:36 UTC-4, Jeremy Ruston wrote: > > I should let you all know that I have somehow contracted Covid-19, despite > being in careful lockdown for two months. I haven't been tested (this is > the UK), but the s

[tw5] Does the MultiTiddlerFiles extension allow me to load multiple tiddlers from a text file from node.js?

2020-05-07 Thread leeand00
I found some MultiTiddlerFiles functionality in Tiddlywiki.,com, can this be used to load multiple tiddlers into a file? I don't see the extension (.multids) in the list of loadable files in the load comman

[tw5] Re: Autofill Tab Captions, Tooltips and Order fields...across Excised content?

2020-04-21 Thread leeand00
April 2020 21:33:35 UTC-4, TonyM wrote: > > Perhaps reshare your fixed code so we can test it on tiddlywiki.com and > see if we understand your problem! > > Tony > > On Tuesday, April 21, 2020 at 5:38:24 AM UTC+10, leeand00 wrote: >> >> Okay nevermind; I got it; I fou

[tw5] Re: Autofill Tab Captions, Tooltips and Order fields...across Excised content?

2020-04-20 Thread leeand00
nday, 20 April 2020 15:38:24 UTC-4, leeand00 wrote: > > Okay nevermind; I got it; I found the subtract filter operator works great > if you don't mind your tabs starting at 0; and I fixed it in the code above. > > On Monday, 20 April 2020 15:31:31 UTC-4, leeand00 wrote: >&g

[tw5] Re: Autofill Tab Captions, Tooltips and Order fields...across Excised content?

2020-04-20 Thread leeand00
Okay nevermind; I got it; I found the subtract filter operator works great if you don't mind your tabs starting at 0; and I fixed it in the code above. On Monday, 20 April 2020 15:31:31 UTC-4, leeand00 wrote: > > When I read something, and I throw it into the wiki, I have a tendency

[tw5] Autofill Tab Captions, Tooltips and Order fields...across Excised content?

2020-04-20 Thread leeand00
When I read something, and I throw it into the wiki, I have a tendency to chunk it into smaller examples... When I do this I use the "Excise" functionality to split the long text out; it works great but...when I want to split it into tabs the tabs show up with their full titles, and I'd prefer

[tw5] How do I get a list of tiddlers from a filter and then manipulate the fields / tags on each in a loop?

2020-04-16 Thread leeand00
I'm aware there are widgets that will modify them...for instance <$action-listops> can modify fields, but I don't know how to use a filter like [tag[some-tag-they-all-have]sort[create-or-mod-date]] and to loop through them performing a similar action on each. I'd also like to be able to include

[tw5] Re: <$action-listops>: Actual title instead of draft title?

2020-04-15 Thread leeand00
Thank you Mario! On Monday, 13 April 2020 13:44:01 UTC-4, PMario wrote: > > Hi, > > A draft tiddler has 2 additional fields: > eg: > > "draft.of": "New Tiddler"... Name of the tiddler which is edited > ​"draft.title": "asdf" ... new name of the tiddler if you want to rename > it. > > You ca

[tw5] <$action-listops>: Actual title instead of draft title?

2020-04-12 Thread leeand00
This code works great for populating the caption, order and tooltip fields at the click of a button; but I always end up with the draft title instead of the title of the tiddler in the field I end up with the draft title; is there anyway to fix that? <$button> <$set name="cap_ord" value="4">

[tw5] Re: How do I use GitHub Saver?

2019-11-03 Thread leeand00
Is it possible to add a commit message? On Wednesday, 16 October 2019 14:32:15 UTC-4, leeand00 wrote: > > I put in the password, my account name, the repository, the branch > etc...and when I click save, it still saves to my desktop and not GitHub. > > I don't want to use

[tw5] Re: How do I use GitHub Saver?

2019-10-16 Thread leeand00
Also, does it save the password in plain text? That would be bad. Or do I have to type it back in again everytime? On Wednesday, 16 October 2019 17:44:00 UTC-4, leeand00 wrote: > > It worked! Wow! That's great stuff! > > Is there a way I can change the commit message

[tw5] Re: How do I use GitHub Saver?

2019-10-16 Thread leeand00
r path to target file (e.g. /wiki/) filled in? > > When I tried it, I found that *something* has to go in that box, even if > it's just the root "/" > > Good luck! > > On Wednesday, October 16, 2019 at 11:32:15 AM UTC-7, leeand00 wrote: >> >> I put in t

[tw5] How do I use GitHub Saver?

2019-10-16 Thread leeand00
I put in the password, my account name, the repository, the branch etc...and when I click save, it still saves to my desktop and not GitHub. I don't want to use any of that 2 factor auth stuff, that's overkill. Is there another setting I have to change (in TW5 or my browser to get that to work)

[tw5] Is there a tag umask for tiddlers?

2019-05-02 Thread leeand00
In linux you can set a umask if you want all of the files created by you to have certain permissions. Is it possible to have a umask for tiddlers (and change it now and again) so you don't have to re-tag everything all the time? -- You received this message because you are subscribed to the Go

[tw5] Re: Is there a tag umask for tiddlers?

2019-05-02 Thread leeand00
Just set the tag-umask once and start making tiddlers, if the one you're creating doesn't match, then you can change the umask and all the tiddlers you create after that will have those tags. On Thursday, 2 May 2019 15:46:49 UTC-4, leeand00 wrote: > > In linux you can set a u

[tw5] Installing the vim keymapping with the Code Mirror Editor Plugin 5.1.19 on TW5 5.1.19?

2019-01-22 Thread leeand00
I have TiddlyWiki version 5.1.19 and The CodeMirror_Editor plugin 5.1.19 Now I dug real deep into Jerome's repo and I found the vim keymap plugin here: https://github.com/Jermolene/TiddlyWiki5/tree/master/plugins/tiddlywiki/codemirror-keymap-vim But it appears that sublime text has surplanted

[tw5] Configuring the Code Mirror Plugin for Powershell formatting

2019-01-21 Thread leeand00
How does one configure use the code mirror plugin for TW5 to format powershell text ? A while ago I did this with application/x-python but I'm not sure how to configure it from application/x-powershell -- You received this message because you

[tw5] Re: How does this macro work to download a binary file?

2018-07-21 Thread leeand00
Oh so I'm barking up the wrong tree! Thanks for clearing that up. I wasn't aware of that. On Friday, 20 July 2018 02:50:23 UTC-4, Jed Carty wrote: > > It isn't a tiddlywiki thing, that is just how anchor tags work. I imagine > that MDN or W3C has some information about it. > > https://develope

[tw5] Re: How does this macro work to download a binary file?

2018-07-19 Thread leeand00
So, ;,]addsuffix{ }] }}} download=""> is what it really means? Am I correct? On Saturday, 14 July 2018 12:03:50 UTC-4, Jed Carty wrote: > > One way browsers get around handling incompatible data types is to convert > them into a base 64 representation that uses only basic ascii characters.

[tw5] How does this macro work to download a binary file?

2018-07-14 Thread leeand00
\define download-xlsx-tiddler(title,caption) $caption$ \end It's called like this: <> I see that it mentions the MIME type of the and the base64 format is also mentioned, but I don't think I really understand it. It looks like it's using transclusion and a filter, but I don't really un

[tw5] How to retrieve a binary file imported into a tiddlywiki?

2018-07-06 Thread leeand00
I imported a binary file into TW5 by dragging it into the interface. How can I get this back out of tiddlywiki? The tiddler created says "This Tiddler Contains Binary Content". I also tried to export it as a .tid file and then take the contents (just the binary part presumably) and put it in

[tw5] Does AndtidWiki+ support the importing of tiddlers into tw5?

2018-06-12 Thread leeand00
I've recently loaded a TW5 wiki into AndtidWiki+ and it doesn't seem to be allowing me to click the import tool button. Does AndtidWiki+ not suppport this functionality? Thank you, Andrew J. Leer -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" gro

[tw] Installing CodeMirror with vim extensions on Tiddlywiki 5?

2018-04-03 Thread leeand00
...and one more thing...if I set my tiddlers type to text/x-python I get the code formattting in the editor...but I do not get it in the preview / final result; is there a way to get the code formatting / colorizing in the preview / result as well? -- You received this message because you are

[tw] Installing CodeMirror with vim extensions on Tiddlywiki 5?

2018-04-03 Thread leeand00
After reading someone else's suggestion to do so in the forums, I installed CodeMirror in a new Tiddlywiki...I sort of know how to do it, and I was successful in getting it to work; its best thing ever having what's pretty close to a full vim editor in my tiddlers; but I'm still a little confuse

[tw] Re: wikify widget doesn't accept variable as text attribute?

2018-01-19 Thread leeand00
Figured it out! I was using 5.1.14 and I needed 5.1.15 to do it. On Thursday, 18 January 2018 22:51:13 UTC-5, leeand00 wrote: > > > When iterating over a source dictionary tiddler, is it possible to feed a > line (index) from it into the <$wifify> widget's text > a

[tw] Re: wikify widget doesn't accept variable as text attribute?

2018-01-19 Thread leeand00
7;t show your index in your example, so for my test I just made it > 01: > > So ... without seeing your data -- be sure you have an index for each > line. Be sure that you've set the type of the data tiddler to data tiddlers. > > Good luck, > > -- Mark

[tw] Re: wikify widget doesn't accept variable as text attribute?

2018-01-19 Thread leeand00
data -- be sure you have an index for each > line. Be sure that you've set the type of the data tiddler to data tiddlers. > > Good luck, > > -- Mark > > On Thursday, January 18, 2018 at 7:51:13 PM UTC-8, leeand00 wrote: >> >> >> When iterating over a

[tw] wikify widget doesn't accept variable as text attribute?

2018-01-18 Thread leeand00
When iterating over a source dictionary tiddler, is it possible to feed a line (index) from it into the <$wifify> widget's text attribute? <$set name="source" value={{!!accomplishments_tiddler}} > <$list filter="[indexes[]]" variable="index"> <>:<> <$set name="aline" tiddler=<> index=<> > <>

[tw] Re: Reveal based on presence or absense of tiddler field?

2018-01-17 Thread leeand00
Thank you Thomas that did the trick! :) On Wednesday, 17 January 2018 09:54:59 UTC-5, Thomas Elmiger wrote: > > Hi Andrew, > > as Eric pointed out some time ago in > https://groups.google.com/d/msg/tiddlywiki/my9YIZEPGng/g_WCNmGuBwAJ > > … you could use reveal like this with the default attribu

[tw] Reveal based on presence or absense of tiddler field?

2018-01-17 Thread leeand00
I have a tiddler with the following: <$set name="myVariable" filter="[all[current]has[catanchor]]" value="1" emptyValue="0"> <$text text=<>/> <$reveal type="match" state=<> text="1"> FIELD PRESENT <$reveal type="match" state=<> text="0"> NO FIELD NewTiddler field:catanchor The above

[tw] Re: Is it possible to create a list of tiddlers to transclude in a data dictionary?

2017-11-22 Thread leeand00
Josh, thank you! That's very clean and very clear. On Wednesday, 22 November 2017 15:21:21 UTC-5, Joshua Fontany wrote: > > Create 3 tiddlers, Test1, Test2, Test3. Put some text into their text > field. Here are the other tiddlers to make the TempaltedList work: > > title: DataTiddler > type: ap

[tw] Re: width 100% tables?

2017-11-22 Thread leeand00
Thanks Eric! That was it! On Wednesday, 22 November 2017 08:57:41 UTC-5, leeand00 wrote: > > How can I get my tables to be 100% width? I tried the following and it > didn't work: > > Per the documentation, created a tiddler named "$:/tags/Stylesheet" with > a

[tw] Is it possible to create a list of tiddlers to transclude in a data dictionary?

2017-11-22 Thread leeand00
Is it possible to list tiddler titles in a data dictionary tiddler, and then transclude just those tiddlers (using a template) somewhere else? And if so, how would one go about that? Here is as close as I've gotten with a tiddler named QualificationsSummary: \define linkup(link,idx) <$vi

[tw] width 100% tables?

2017-11-22 Thread leeand00
How can I get my tables to be 100% width? I tried the following and it didn't work: Per the documentation, created a tiddler named "$:/tags/Stylesheet" with a type of "text/css" the following content: html body.tc-body { background: red; } .dasHead { width: 100% ! important; text-a

[tw] Upload Tiddlers to Tiddlywiki Directly from Vim with Vimscript

2017-06-01 Thread leeand00
them to import them, so I decided it would be best to just use my buffer in vim and a mapped function in vimscript to import them directly. (Oh, and ssh), you can find it here in my .vimrc file: https://github.com/leeand00/dotfiles/blob/master/dotfiles/.vimrc <http://bit.ly/2sjD2HE&g

[tw] Re: Is it possible to run a tiddlywiki server over a linux/unix socket?

2017-03-28 Thread leeand00
ction-vs-unix-domain-socket> . On Monday, 27 March 2017 23:26:25 UTC-4, leeand00 wrote: > > I was reading up on Systemd Socket Activation > <https://apachelog.wordpress.com/2017/03/07/aptly-systemd-socket-activation/>...which, > > if I understand it correctly, mean

[tw] Is it possible to run a tiddlywiki server over a linux/unix socket?

2017-03-27 Thread leeand00
I was reading up on Systemd Socket Activation ...which, if I understand it correctly, means that I should be able to ping a TCP port to a socket file and start a unit service. But! There's a catch. The server can't

[tw] Is it possible to pull more tan one tiddler using http://host/recipes/default/tiddlers/{tidname}?

2016-12-06 Thread leeand00
It is possible to use a single request to pull the wiki text of more than one tiddler? for example using a request like: http://host/recipes/default/tiddlers/{tidname} -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this gr

[tw] Re: Pulling Tiddlers as JSON from node.js Tiddlywiki 5?

2016-12-06 Thread leeand00
ll pull them down in json format. > > Matt Lauber > > On Tuesday, December 6, 2016 at 8:43:27 AM UTC-5, leeand00 wrote: >> >> Is it possible to send a request to the node.js version of Tiddlywiki 5 >> and return a list of tiddlers in JSON format? >> >>

[tw] Re: Pulling Tiddlers as JSON from node.js Tiddlywiki 5?

2016-12-06 Thread leeand00
on format. > > Matt Lauber > > On Tuesday, December 6, 2016 at 8:43:27 AM UTC-5, leeand00 wrote: >> >> Is it possible to send a request to the node.js version of Tiddlywiki 5 >> and return a list of tiddlers in JSON format? >> >> Is it also possible to use a

[tw] Re: Pulling Tiddlers as JSON from node.js Tiddlywiki 5?

2016-12-06 Thread leeand00
. > > Matt Lauber > > On Tuesday, December 6, 2016 at 8:43:27 AM UTC-5, leeand00 wrote: >> >> Is it possible to send a request to the node.js version of Tiddlywiki 5 >> and return a list of tiddlers in JSON format? >> >> Is it also possible to use a filter

[tw] Pulling Tiddlers as JSON from node.js Tiddlywiki 5?

2016-12-06 Thread leeand00
Is it possible to send a request to the node.js version of Tiddlywiki 5 and return a list of tiddlers in JSON format? Is it also possible to use a filter to pull them? Or even just export them to a file? Thank you, Andrew J. Leer -- You received this message because you are subscribed to

[tw] Getting a count in a list?

2016-11-28 Thread leeand00
\define thisList() <$list filter="$(thefilter)$"> <$view field="title"/> - <$count filter=[tag[!!{{title}}]] /> \end <$set name="thefilter" value={{!!dasfilter}}> <> Is it possible to do this? The part that really has me confused is how to get a <$count> that will count the number of

[tw] Re: [TW5] Popup transclusion on mouse over?

2016-11-23 Thread leeand00
Okay thanks Mat! On Saturday, 19 November 2016 12:55:49 UTC-5, Mat wrote: > > Here's a start. No idea if it is "the best" way and there's probably some > more native tw5 way that I can't think of right now because I'm temporarily > a bit out of the game. I hope you was the RevealWidget >

[tw] Tiddlywiki node.js backups?

2016-11-23 Thread leeand00
If I'm doing a backup of Tiddlywiki 5.1.13, is it necessary to stop the tiddlywiki node.js daemon first? If it was a database that didn't support hot backup this would be necessary, but I'm uncertain about it considering it uses text files. Thank you, Andrew J. Leer -- You received this me

[tw] [TW5] Popup transclusion on mouse over?

2016-11-18 Thread leeand00
Is there any way to do a Popup transclusion on mouse over in TW5? If not what's the best way to write something like that? -- 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 a

[tw] Re: Filtering a list of skills and skill categories to just the skills in the list.

2016-11-11 Thread leeand00
ng > > - sql > > > > Here both "os" and "programming-lang" show up because both are required. > The compromise is that you can't use any skills names with spaces in them. > But it didn't seem

[tw] Re: Filtering a list of skills and skill categories to just the skills in the list.

2016-11-10 Thread leeand00
; what are the contents of "jobitemskilltagsnot" ? > > On Thursday, November 10, 2016 at 11:26:57 AM UTC-8, leeand00 wrote: >> >> Alright, let me try this again.. >> >> So to be clear: >> >>- The "os" and "programming-lang"

[tw] Re: Filtering a list of skills and skill categories to just the skills in the list.

2016-11-10 Thread leeand00
> <$list filter="[tag]"> > > <$view field="title"/> > > > >

[tw] Filtering a list of skills and skill categories to just the skills in the list.

2016-11-10 Thread leeand00
Using the macro below I get the following text when I set the field "jobitemsskilltags" to "[title[sql]][title[windows-7]]" - programming-lang - sql - windows-7 - os - sql - windows-7 It works pretty good..but I'd like only the titles of skills tagged with os

[tw] Re: Dropdown that triggers a field update when selected?

2016-10-24 Thread leeand00
Nevermind; it works; thank you! On Monday, 24 October 2016 14:28:20 UTC-4, leeand00 wrote: > > I have a dropdown... > > <$select field='dassection'> ><$list filter='[tag[section]]'> > <$view field='title' /> >

[tw] Re: Dropdown that triggers a field update when selected?

2016-10-24 Thread leeand00
t; Note the "-" hyphen used as the default. This forces the user to make a > selection. If the user doesn't change the settings of the drop-down, > nothing happens. Obviously, you would want to change the filter that I made > up. > > Good luck, > Mark &

[tw] Dropdown that triggers a field update when selected?

2016-10-24 Thread leeand00
I have a dropdown... <$select field='dassection'> <$list filter='[tag[section]]'> <$view field='title' /> It currently populates the option labels, but not the values... I'd like the values to be populated with the title field, I thought {{!!title}} would work but it didn't. I'd

[tw] Re: dot tid dot tid dot tid dot tid

2016-10-17 Thread leeand00
> > On Saturday, October 8, 2016 at 5:22:09 AM UTC+1, leeand00 wrote: >> >> Can someone explain to me what's happening when I get a series of tiddler >> files in the tiddlers directory in the node.js version of tiddlywiki 5? >> >> I'd like to clean those u

[tw] Re: Creating a dropdown to pass values to a template?

2016-10-07 Thread leeand00
Okay that did it; thank you all! On Tuesday, 27 September 2016 12:23:25 UTC-4, leeand00 wrote: > > > > Is it possible to use a sort here at the end to sort the whole thing? > > [tag[tag3]][tag[tag1]][tag[tag2]][tag[tag5]][tag[tag4]][tag[tag6]][tag[ > tag8]][tag[tag7]]+[tag

[tw] dot tid dot tid dot tid dot tid

2016-10-07 Thread leeand00
Can someone explain to me what's happening when I get a series of tiddler files in the tiddlers directory in the node.js version of tiddlywiki 5? I'd like to clean those up as it's confusing both me and the wiki. Thank you, Andrew J. Leer -- You received this message because you are subsc

[tw] Creating a dropdown to pass values to a template?

2016-09-27 Thread leeand00
Is it possible to use a sort here at the end to sort the whole thing? [tag[tag3]][tag[tag1]][tag[tag2]][tag[tag5]][tag[tag4]][tag[tag6]][tag[tag8 ]][tag[tag7]]+[tag[notherTag]] I've tried it, but it doesn't seem to bring back the desired sort...is there a way to do it? Thank you, Andrew J

[tw] Re: How to filter through a template using a field and <$edit-text>?

2016-09-24 Thread leeand00
No they don't do it, I read the ad to see what they are looking for and then I filter through it myself, so that it doesn't take me hours or days to throw a resume together and send it in. And thank you for fixing it! On Friday, 23 September 2016 10:25:11 UTC-4, Thomas Elmiger wrote: > > Thanks

[tw] Re: How to filter through a template using a field and <$edit-text>?

2016-09-23 Thread leeand00
Ah perhaps I was not very clear about what I am trying to do... What happens is, I have several job position tiddlers, which I am adding to a resume. My resume is about 8 pages long, and not all of the experience will be considered relevant to each employer. So what I have decided to do is cr

[tw] Re: How to filter through a template using a field and <$edit-text>?

2016-09-22 Thread leeand00
trap to be aware of is > that the edit text widget *cannot be used* to edit a field of the tiddler > that contains it. Each keypress results in the tiddler being re-rendered, > which loses the cursor position within the text field." > > Good luck! > Thomas > > A

[tw] Re: How to filter through a template using a field and <$edit-text>?

2016-09-20 Thread leeand00
Okay I fixed that bit...but it still isn't working the way that the first example does...is it because they're all sort-of in the same tiddler? Am I losing it in scope or something? Should I attach the field to a different tiddler? On Tuesday, 20 September 2016 14:19:54 UTC-4, leea

[tw] How to filter through a template using a field and <$edit-text>?

2016-09-20 Thread leeand00
I figured out how to filter through a list using a field and <$edit-text>, but now I want to do the same thing using a template. Here is my working non-template example: Tiddler Title: blah1 \define thisList() <$list filter="[{!!title}tagging[]$(thefilter)$]"> <$transclude/> \end <$set na

[tw] Setting the filter for the list from a variable?

2016-09-19 Thread leeand00
I have the following template: <$list filter="[tag[Database Analyst - Net Tech - MIS - Help Desk]tag[ms-access]tag[sql]]"> <$transclude/> But I want to be able to call the template from else where and specify the filter string from outside (almost like passing a variable to the template) <

[tw] Re: Bind address always 127.0.0.1 when starting from Tiddlywiki from systemd

2016-09-17 Thread leeand00
> User=dokupe > Restart=always > StandardOutput=syslog > StandardError=syslog > EnvironmentFile=/etc/tiddlywiki.conf > ExecStart=/usr/bin/tiddlywiki $WIKI --server $PORT $OPTS "" "" $IP > [Install] > WantedBy=multi-user.target > > and the /etc/tiddlywi

[tw] Re: Is it possible to turn off CTRL+I in tw5?

2016-08-08 Thread leeand00
Thank you! On Tuesday, 2 August 2016 09:18:17 UTC-4, Jed Carty wrote: > > If you open the control panel there is a keyboard shortcutstab, you can > change or remove the shortcuts there -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubsc

[tw] Is it possible to turn off CTRL+I in tw5?

2016-08-02 Thread leeand00
Can I turn off CTRL+I in Tiddlywiki 5? I like to use Vimerator to edit my wiki entries and when I press CTRL+I I get italics instead of gvim. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving email

[tw] Bind address always 127.0.0.1 when starting from Tiddlywiki from systemd

2016-06-09 Thread leeand00
Here is my Unit File: [Unit] Description=TW5 Bacula Wiki After=nginx.service Requires=nginx.service [Service] TimeoutStartSec=5000 ExecStart=/usr/local/bin/tiddlywiki /home/pi/tw5/linux/bacula --server 9094 $:/core/save/all text/plain text/html "" "" %H User=Tw5 Group=Tw5 [Install] WantedBy=mult

[tw] Systemd Unit File Always Binds to 127.0.0.1

2016-06-08 Thread leeand00
Here is my Unit File: [Unit] Description=TW5 Bacula Wiki After=nginx.service Requires=nginx.service [Service] TimeoutStartSec=5000 ExecStart=/usr/local/bin/tiddlywiki /home/pi/tw5/linux/bacula --server 9094 $:/core/save/all text/plain text/html aleer i2jl1g5x %H User=Tw5 Group=Tw5 [Install] Wan

[tw] What command do I run to stop a specific tiddlywiki server instance?

2016-06-08 Thread leeand00
I'm looking into using unit files and systemd to start and stop my node.js tiddlywiki server instances. Is there any way to stop them using a command instead of just outright killing the process? Thank you, Andrew J. Leer -- You received this message because you are subscribed to the Goog

[tw] Re: Setting attributes as values from a <$list> in an <$action-setfield>

2016-01-07 Thread leeand00
Thanks again Tobias! As usual that did the trick. You have been essential in speeding up my TW5 usage. On Wednesday, 6 January 2016 16:59:41 UTC-5, Tobias Beer wrote: > > Hi Andrew, > > >> In the following code, is there any way to get the title to show up in >> the action-setfield attribut

[tw] Setting attributes as values from a <$list> in an <$action-setfield>

2016-01-06 Thread leeand00
In the following code, is there any way to get the title to show up in the action-setfield attributes? See example below: <$button> <$list filter="[ [] ]"> <$action-setfield text="[[edit|{{!!title}}]]" tags="[[General Settings]]" caption="{{!!title}}"/> <$action-navigate/> Make New Tiddlers

[tw] Re: Using TW5 to generate a table of Titles and Tiddler contents?

2016-01-06 Thread leeand00
Ah okay that did it, thank you! On Wednesday, 6 January 2016 14:11:18 UTC-5, Jed Carty wrote: > > Use this > > > <$list filter="[tag[Agency Transition Wizard]]"> > > > <$view field="title"/> > > > <$transclude tiddler=<>/> > > > > > > > You could use <$view field='text'/> as well, but tra

[tw] Using TW5 to generate a table of Titles and Tiddler contents?

2016-01-06 Thread leeand00
izard]]"> <$view field="title"/> {{ <$view field="title" /> }} Thank you, leeand00 -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving email

[tw] Escaping characters in filters?

2015-12-22 Thread leeand00
<$button> <$list filter="\"Change Git Commit Editor\" \"Commit Verbosely\" \"git blame\" +[make[ %title% ]]"> <$action-setfield text="My New Tiddlers" tags="[[Standardized git commit message format]]" caption="xx"/> <$action-navigate/> Make New Tiddlers In the code above, is it possible to es

[tw] Re: [TW5] Can a Widget Set Variable be incremented?

2015-12-21 Thread leeand00
as announced here: > https://groups.google.com/forum/#!topic/tiddlywiki/ebha1ktI22U > > Best wishes, > > Tobias. > > On Saturday, 19 December 2015 12:59:47 UTC+1, Tobias Beer wrote: >> >> Hi leeand00 & matabele, >> >> >>> I created a new filter plugi

[tw] Re: [TW5] Can a Widget Set Variable be incremented?

2015-12-18 Thread leeand00
And then when you click on the link, that new tiddler gets the specified tags, titles and fields: On Friday, 18 December 2015 14:35:17 UTC-5, leeand00 wrote: > > Not that I know anything about this but... > > It would probably be better to have a json similar syntax like this: >

[tw] Re: [TW5] Can a Widget Set Variable be incremented?

2015-12-18 Thread leeand00
it appears that this filter could be used in other widgets to generate > new titles by using the output of a filter expression (specified as an > attribute): > > <$x-maketid $title="[make[operand expression]]" /> > > I'll have a look at this option -- flexible cre

[tw] [TW5] - Tooltip text on tabs?

2015-12-18 Thread leeand00
In the TW4 version of the tabs macro you could specify a tooltip for a tab. Is there a field you can set that will do the same thing in TW5? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails

  1   2   >