[tw] Re: node.js non-global install

2018-03-27 Thread Jed Carty
As Riz said you don't have to install it globally, but it is also worth mentioning that just because you install it globally doesn't mean you can't run it multiple times on different ports while it is installed globally. The biggest reasons to not install it globally are if you want to run diff

[tw] Re: Node.js help sought

2017-12-09 Thread PMario
On Saturday, December 9, 2017 at 2:13:26 PM UTC+1, JWHoneycutt wrote: > > @Jed, PMario, Riz > > Thank you SO much. It worked,... > \o/ -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails f

[tw] Re: Node.js help sought

2017-12-09 Thread JWHoneycutt
The tiddler that displays the tags in edit mode is called > $:/core/ui/EditTemplate/tags so if you open that tiddler and delete it that > may solve the problem. > > @Jed, PMario, Riz Thank you SO much. It worked, and was a lot simpler than exporting them out and doing cleanup. I had tagged t

[tw] Re: Node.js help sought

2017-12-09 Thread Jed Carty
The good news is that this is almost certainly a strange interaction between the three wikis you combined and not a bug with tiddlywiki itself. If you can't see it than it is probably either a css tiddler that is hiding the section or the tiddler for displaying tag is the edit mode is overwritt

[tw] Re: Node.js help sought

2017-12-09 Thread Riz
Have you tried dragging and dropping the https://tiddlywiki.com/#%24%3A%2Fcore%2Fui%2FEditTemplate%2Ftags to your wiki? On Saturday, 9 December 2017 10:35:20 UTC+5:30, JWHoneycutt wrote: > > I am experimenting with Node.js, and merged 3 TW5 files a few weeks ago. > I re-merged it from separa

[tw] Re: Node.js help sought

2017-12-09 Thread PMario
Hi, You can got to *ControlPanel: Info: Basics* page and have a look at: "Number of overridden shadow tiddlers:" and click the icon. You'll get this [is[tiddler]is[shadow]sort[title]] filter in the Advanced Search. It shows your overwritten shadows. ... May be one of them is a problem, since y

[tw] Re: Node.js install of TiddlyWiki doesn't delete files

2017-11-15 Thread Diego Mesa
I had several problems when I created tiddlers with titles with question marks, colons, etc. On Wednesday, November 15, 2017 at 4:11:11 PM UTC-6, Ansel Santosa wrote: > > No they're not ghost tiddlers. They still have their full content. In the > logs, I just never see a `syncer-server-filesyst

[tw] Re: Node.js install of TiddlyWiki doesn't delete files

2017-11-15 Thread Ansel Santosa
No they're not ghost tiddlers. They still have their full content. In the logs, I just never see a `syncer-server-filesystem: Dispatching 'delete' task:` message when I'm running in "lazy-all" mode On Wednesday, November 15, 2017 at 2:06:36 PM UTC-8, Mark S. wrote: > > Do the tiddlers have conte

[tw] Re: Node.js install of TiddlyWiki doesn't delete files

2017-11-15 Thread 'Mark S.' via TiddlyWiki
Do the tiddlers have content? Or are they "ghost" tiddlers? If ghosts, if you add content can you then delete them? If you search the forum, there has been some discussion about problems with deleting tiddlers. Good luck, Mark On Wednesday, November 15, 2017 at 1:54:01 PM UTC-8, Ansel Santosa

[tw] Re: Node.js install of TiddlyWiki doesn't delete files

2017-11-15 Thread Ansel Santosa
*Update:* problem goes away if I use `$:/core/save/lazy-images` instead of `$:/core/save/lazy-all` On Wednesday, November 15, 2017 at 1:54:01 PM UTC-8, Ansel Santosa wrote: > > I'm running TW with the recommended node.js install. I can create new > tiddlers just fine and make changes to old ones

[tw] Re: node.js freezing up

2017-10-11 Thread Dave Gifford - http://www.giffmex.org/
Oh, now I get it!!! Never mind. On Wednesday, October 11, 2017 at 8:57:20 PM UTC-4, Dave Gifford - http://www.giffmex.org/ wrote: > > I played around with node.js, installed it, then followed the instructions > to start it normally for TiddlyWiki on my Windows laptop. > > At first it was working

[tw] Re: node.js - Full Function Via 127.0.0.1 and Read-only Via Other IP

2017-09-25 Thread Matthew Lauber
What I did was put my wiki behind a nginx LB with this config. This says READ requests (GET, HEAD) are permitted by anyone, but POST and other requests require user authentication. server { listen 80; access_log /var/log/nginx/tiddlywiki.access.log combined; location / { root /opt/h

Re: [tw] Re: node.js - Full Function Via 127.0.0.1 and Read-only Via Other IP

2017-09-24 Thread Arlen Beiler
I'm pretty sure it is possible to listen on more than one IP address separately if they are on different interfaces, such as in this case. I will keep it in mind for Tiddly server, but for vanilla node tw5, you can load two instances, but changes won't show up until you reload the read-only instanc

[tw] Re: node.js - Full Function Via 127.0.0.1 and Read-only Via Other IP

2017-09-23 Thread RichardWilliamSmith
Why not publish it as a static site for other people to look at? It will load much quicker for them. I wrote instructions for a custom site here: https://www.didaxy.com/exporting-static-sites-from-tiddlywiki but if you're happy with the default styling, you really only need the default commands

[tw] Re: node.js - Full Function Via 127.0.0.1 and Read-only Via Other IP

2017-09-23 Thread Jed Carty
You could probably add this into the tiddlywiki code to make downloading the only way to save unless you are on localhost. Using something like the ip module in node should make this pretty simple but I am not certain where in saver-handler.js the change needs to be done or if it needs to be so

[tw] Re: Node.js save mechanism (to interface with git)

2017-06-03 Thread jwd
Coming late to this but , you could also delegate the git interface to a separate nodejs process using something like https://www.npmjs.com/package/watch-fs to watch for tiddler updates. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubs

[tw] Re: Node.js save mechanism (to interface with git)

2017-05-24 Thread Matthew Lauber
I'll be honest, I went with KISS. A cron job to run git commit (including the timestamp). Only commits when files are saved. But if you want to try to trigger git from nodejs, I'd say look at the $:/temp/ prefix for the commit message. Anything starting with $:/temp/ doesn't get saved/synced

[tw] Re: Node.js save mechanism (to interface with git)

2017-05-23 Thread Conner Phillips
This should probably get it's own thread, but since I already mentioned git in the title I will just run with it. I'm wondering about the best way to transfer the commit message to the node server? Possible solutions: Using a edit-text to write to a Shadow tiddler with saving disabled Field whic

[tw] Re: Node.js save mechanism (to interface with git)

2017-05-21 Thread PMario
Hi Conner, have a look here: https://github.com/Jermolene/TiddlyWiki5/blob/master/editions/server/tiddlywiki.info#L4-L5 those 2 plugins are needed if you run in server mode. -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from

[tw] Re: Node.js save mechanism (to interface with git)

2017-05-20 Thread Conner Phillips
A little more digging, I think plugins/tiddlywiki/filesystem/filesystemadaptor.js with the save and delete functions at lines 146 and 199 would be the proper place to implement such a feature. Am I on the right track? On Saturday, May 20, 2017 at 6:23:27 PM UTC+2, Conner Phillips wrote: > > Hi

[tw] Re: Node.js error - can't start server (but managed to earlier)

2017-03-25 Thread BJ
Hi Suzanne, what version of node and what system (eg windows+version) are you using? cheers BJ On Saturday, March 25, 2017 at 4:26:53 AM UTC+1, Suzanne McHale wrote: > > I managed to get node.js working once earlier to generate a static site, > then stopped it, but when wanting to start it agai

Re: [tw] Re: node.js issue

2017-01-26 Thread Andrew Lister
I'm on a mac, and I just use OS X's tags. There is a program called LEAP that helps keep them organized. The main thing is to tag everything as its created, then to clean house once in a while. On Thursday, 26 January 2017 15:43:16 UTC-5, Jacob Glenn wrote: > > Andrew, I'm curious - what tag-ba

Re: [tw] Re: node.js issue

2017-01-26 Thread Jacob Glenn
Andrew, I'm curious - what tag-based file system are you using? On 1/25/17 9:15 AM, Andrew Lister wrote: So, I found this page: https://docs.npmjs.com/getting-started/installing-node which tells me where I can get node.js for the initial install, and how I can update npm, but doesn't say anyth

Re: [tw] Re: node.js issue

2017-01-26 Thread PMario
On Thursday, January 26, 2017 at 2:04:59 AM UTC+1, Andrew Lister wrote: > > Thanks I think i've got it working using homebrew. Uninstalled node.js, > then installed with homebrew. > Good! Please report back, if it solved the problem. -m -- You received this message because you are subscribed to

Re: [tw] Re: node.js issue

2017-01-25 Thread Andrew Lister
Thanks I think i've got it working using homebrew. Uninstalled node.js, then installed with homebrew. On Wednesday, 25 January 2017 17:28:02 UTC-5, Eneko Gotzon wrote: > > > On Wed, Jan 25, 2017 at 4:12 PM, Tony Grosinger > wrote: > >> Have you heard of Homebrew? > > > ​There is also MacPorts

Re: [tw] Re: node.js issue

2017-01-25 Thread Eneko Gotzon
On Wed, Jan 25, 2017 at 4:12 PM, Tony Grosinger wrote: > Have you heard of Homebrew? ​There is also MacPorts ​. -- Eneko Gotzon Ares enekogot...@gmail.com -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscr

[tw] Re: node.js issue

2017-01-25 Thread Andrew Lister
Thanks very much, I will look into that. On Wednesday, 25 January 2017 10:12:28 UTC-5, Tony Grosinger wrote: > > Hi Andrew, > Have you heard of Homebrew? It's a great utility for installing and > automatically updating programs on a Mac. If you can remove your existing > version of Node, Homebr

[tw] Re: node.js issue

2017-01-25 Thread Tony Grosinger
Hi Andrew, Have you heard of Homebrew? It's a great utility for installing and automatically updating programs on a Mac. If you can remove your existing version of Node, Homebrew would install it for you and help you keep it updated very easily. For reference, I am running my TiddlyWiki under N

[tw] Re: node.js issue

2017-01-25 Thread Andrew Lister
So, I found this page: https://docs.npmjs.com/getting-started/installing-node which tells me where I can get node.js for the initial install, and how I can update npm, but doesn't say anything about how to update node.js You might wonder why I'm using node.js if I don't understand all of this

[tw] Re: node.js issue

2017-01-25 Thread Andrew Lister
v0.10.24 On Wednesday, 25 January 2017 09:04:09 UTC-5, Andrew Lister wrote: > > um... node version? I will google that and respond in a moment ;) > > On Tuesday, 24 January 2017 19:07:21 UTC-5, PMario wrote: >> >> Hi Andrew, >> >> Which node version do you have? >> >> -m >> > -- You received t

[tw] Re: node.js issue

2017-01-25 Thread Andrew Lister
um... node version? I will google that and respond in a moment ;) On Tuesday, 24 January 2017 19:07:21 UTC-5, PMario wrote: > > Hi Andrew, > > Which node version do you have? > > -m > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw] Re: node.js issue

2017-01-24 Thread PMario
Hi Andrew, Which node version do you have? -m -- 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 post to this group, sen

[tw] Re: Node.js - cmd in windows

2016-02-24 Thread PMario
Hi Jo, You could use this little tool: https://www.npmjs.com/package/parallelshell to start all of your servers in one session. ... If you are not familiar with npm scripts read this: http://blog.keithcirkel.co.uk/how-to-use-npm-as-a-build-tool/ ... That's where I found parallel shell :) hav

Re: [tw] Re: Node.js - cmd in windows

2016-02-24 Thread Simon Eigeldinger
Hi, though when you close the cmd window the server gets shut down as well. so if you want to shut it down just hit ctrl+c in the window you want to close. i heard there is also a tool to minimize windows which you can't minimize to the systray. so those windows might not be in your way. gree

[tw] Re: Node.js - cmd in windows

2016-02-24 Thread Eric Shulman
On Wednesday, February 24, 2016 at 9:12:23 AM UTC-8, jen...@googlemail.com wrote: > > working with the node version of TW for a while I have set up several > wikis, each of them with its own localhost port. I decided to start them > manually via windows batch files, so every node wiki has its ow

[tw] Re: node.js on android tablet

2015-05-31 Thread Crash Pop-Quiz
Thanks again to everyone for your support. Previous to starting this thread I searched for solutions. There are a handful of instructions for moving node.js to Android. There was a day where I would understand these articles. Where I could implement them. With great frustration I must accept my

[tw] Re: node.js on android tablet

2015-05-31 Thread Danielo Rodríguez
> Personally, I think that a really easy way to edit and get things into a > single Tiddlywiki from multiple devices is a 'killer feature' that would make > it obviously more useful to a huge new group of people. That is possible with my pouchdb plugin. -- You received this message because y

[tw] Re: node.js on android tablet

2015-05-30 Thread Richard Smith
Hi Crash, Personally, I use dropbox to store any TWs that I want to keep in sync across multiple devices. That way I don't have to remember to save/sync anything manually. I use a mac and a windows machine and not android. If I want to run the node.js version on both of my machines, I can still

[tw] Re: node.js on android tablet

2015-05-30 Thread Crash Pop-Quiz
Thanks for your input and suggestions. I was hoping that there was some method to port node.js to the Android platform. I have come to love the one tiddler - one file feature enabled through node.js. Thanks again. On Saturday, May 30, 2015 at 3:38:11 PM UTC-4, Crash Pop-Quiz wrote: > > I lean h

[tw] Re: node.js on android tablet

2015-05-30 Thread 'Mark S.' via TiddlyWiki
Hello Crash, I use Cheetah sync to synch my TW file with Android. Cheetah runs a file server on the desktop computer. When I'm going to be using the tablet, I run the synch (which I previously set up) and then refresh in the Firefox browser on the tablet. When I'm done, and if I have made any

[tw] Re: node.js on android tablet

2015-05-30 Thread Danielo Rodríguez
Hello Crash, My grandpa suffers Parkinson also, so I know how bad this illness is. There is no node version for android. Fortunately tiddlywiki can work without any node backend. Your best (and simplest) bet is to use the Firefox browser on your tablet and install the tiddlyfox addon for Firefo

Re: [tw] Re: Node.js version of tiddlywiki: automatically saved .tid files to specific folders based on condition

2015-02-04 Thread Tobias Beer
> > What do you mean with "after install X"? ... > It means I have tried to install it somewhere between 3-5 times. Whenever I start it, it goes... So, essentially Windows is telling

Re: [tw] Re: Node.js version of tiddlywiki: automatically saved .tid files to specific folders based on condition

2015-02-04 Thread PMario
On Wednesday, February 4, 2015 at 2:26:40 AM UTC+1, Tobias Beer wrote: > > I think it's a great project but I do my development with brackets.io as >> the editor... >> > > If it didn't crash on startup even after install X, I'd give it a try. ^^ > I didn't have a single crash, yet. ... What do

Re: [tw] Re: Node.js version of tiddlywiki: automatically saved .tid files to specific folders based on condition

2015-02-03 Thread Tobias Beer
> > I think it's a great project but I do my development with brackets.io as > the editor... > If it didn't crash on startup even after install X, I'd give it a try. ^^ Best wishes, Tobias. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To un

Re: [tw] Re: Node.js version of tiddlywiki: automatically saved .tid files to specific folders based on condition

2015-02-03 Thread PMario
On Tuesday, February 3, 2015 at 4:19:45 AM UTC+1, Nhan Ho wrote: > > I think I've found the functionality in question: tag-based file storage, > it can be found under Control Panel -> File Storage. > Yes, that's the functionality I did think of. ... I have to say, that I did play with thirdflow

Re: [tw] Re: Node.js version of tiddlywiki: automatically saved .tid files to specific folders based on condition

2015-02-02 Thread Nhan Ho
I think I've found the functionality in question: tag-based file storage, it can be found under Control Panel -> File Storage. Note that you will need to add an empty "config" field to tiddlywiki.info for it to work (otherwise you will get an error for disable-hfs fields). -Nhan On Mon, Feb 2, 2

Re: [tw] Re: Node.js version of tiddlywiki: automatically saved .tid files to specific folders based on condition

2015-02-02 Thread Nhan Ho
Thanks for the pointer, that plugin looks great. However, after reading the description and installing, I failed to see how the plugin could be apply to my use case (except may be using it to develop a plugin for the use case?). Do you mind elaborate a bit on how I could use it for the specific sc

[tw] Re: Node.js version of tiddlywiki: automatically saved .tid files to specific folders based on condition

2015-02-02 Thread PMario
Hi Nhan, I think the ThirdFlow plugin could meet your needs. ... It's not exactly, what you may want, but imo could be used for your usecase. see: http://thediveo.github.io/ThirdFlow/ have fun! mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" gr

Re: [tw] Re: Node.js

2015-01-05 Thread Handoko Suwono
I found few notes outside TW that might be useful to explain Node.js for beginners like myself. This is beginner's first twenty pages of the full book. http://www.nodebeginner.org/ and some other links worth at, http://stackoverflow.com/questions/1884724/what-is-node-js http://www.toptal.com/nod

Re: [tw] Re: Node.js

2015-01-05 Thread Handoko Suwono
I found few notes outside TW that might be useful to explain Node.js for beginners like myself. This is beginner's first twenty pages of the full book. http://www.nodebeginner.org/ and some other links worth at, http://stackoverflow.com/questions/1884724/what-is-node-js http://www.toptal.com/n

Re: [tw] Re: Node.js

2014-12-31 Thread Handoko Suwono
thanks Jim. Happy new year. Handoko - On 12/31/14, Jim Lehmer wrote: > On Tuesday, December 30, 2014 9:26:21 PM UTC-6, Handoko Suwono wrote: >> >> Is there any introductory note on Node.js and how is it related to TW? >> >> > Yes. Start here: http://tiddlywiki.com/#TiddlyWiki%20on%20Node.js > >

[tw] Re: Node.js

2014-12-31 Thread Jim Lehmer
On Tuesday, December 30, 2014 9:26:21 PM UTC-6, Handoko Suwono wrote: > > Is there any introductory note on Node.js and how is it related to TW? > > Yes. Start here: http://tiddlywiki.com/#TiddlyWiki%20on%20Node.js -- You received this message because you are subscribed to the Google Groups "Ti

[tw] Re: Node.js spell check?

2014-12-17 Thread Captain Packers
This seems to be an artifact of Chrome. Switching to Firefox seems to resolve the issue. See https://groups.google.com/forum/#!topic/tiddlywiki/6qaY4VQwuuI, although I did not find that disabling codemirror made any difference On Tuesday, November 11, 2014 2:54:29 PM UTC-5, Captain Packers wrot