[tw] Re: [TW5] Improving tiddler renaming behaviour

2017-01-03 Thread Dmitry Sokolov
I would be supportive to the point of view of Tobias if I understand it right: titles of tiddlers must be unique, to be referred reliably in future. The other reason to support is our potential transition to the IPFS protocol in near future. Human-readable links is one of the core features of

Re: [tw] Re: [tw5] TiddlerInfotab: ViewText to display text field of a shadow, system tiddler without having to open it in edit mode

2017-01-03 Thread Jeremy Ruston
Hi Tobias > Apparently tabs now display camelcase captions as links (indepent of config > setting autocamelcase to link switched on or off, is this a bug in the > prerelease?). > > I'd say it smells like a bug, since standard tab buttons don't really provide > the flexibility to have things li

[tw] Re: [TW5] Import Tiddles automatically in Tiddlywiki

2017-01-03 Thread Stéphane Delaye
Hello. I installed a pouchdb server and tried noteself... without success at the moment (https://github.com/NoteSelf/NoteSelf.github.io/issues/5 ). I left the couchdb server online, if someone want to try. Hope tu succeed in the coming days... @+ Le mercredi 28 décembre 2016 21:29:46 UTC+1, Stéph

[tw] Re: [TW5] Edit field of tiddlers under the same tag every time one of those tiddlers is updated or created.

2017-01-03 Thread Penguinlay
I believe I am in the right path, then. I have been trying out for a while now. I used to learn by doing. But, I doubted myself there for a second because it had not been that fruitful. Thank to your reply, I will get back to making mistakes and learning from them with confidence. It may take mo

[tw] Re: [TW5] Edit field of tiddlers under the same tag every time one of those tiddlers is updated or created.

2017-01-03 Thread Penguinlay
I believe I am in the right path, then. I have been trying out for a while now. I used to learn by doing. But, I doubted myself there for a second because it had not been that fruitful. Thank to your reply, I will get back to making mistakes and learning from them with confidence. It may take mo

[tw] Re: [TW5] Edit field of tiddlers under the same tag every time one of those tiddlers is updated or created.

2017-01-03 Thread Penguinlay
Nice works going on there, Dmitry! I will see you there! On Monday, January 2, 2017 at 8:34:49 PM UTC-8, Dmitry Sokolov wrote: > > Hi Penguinlay, > > welcome on board! :) > It's not just you facing this problem with getting started. > "My TiddlyWiki Journey >

Re: [tw] Re: [TW5] the LeftBar theme (left sidebar / mainmenu )

2017-01-03 Thread Jan
Hej Riz, what a difference a word makes... Thanks so much I searched so long the it started to turn me mad. It's a pleasure working with you. Working on a mobile theme I encountered difficulties to keep the Tiddler clean and dense without hiding the toolbar to unfindable or too small to use.

[tw] Re: How to create a desktop launcher for NodeJS TW5 in linux mint/ubuntu/debian?

2017-01-03 Thread BJ
you may need a delay to let node start: tiddlywiki main-wiki-server --server 8081 & (sleep 1; xdg-open http://127.0.0.1:8081) On Monday, January 2, 2017 at 3:06:47 PM UTC+1, Riz wrote: > > hese are the things I already tried. > > Creating a .desktop file with > exec=tiddlywiki /path/to/my/wi

Re: [tw] Re: How to create a desktop launcher for NodeJS TW5 in linux mint/ubuntu/debian?

2017-01-03 Thread Rizwan Ishak
BJ , Well, we are getting closer I guess. When I used your command, the terminal opened, started the server, but after 1 sec it closed itself before moving on to the next command. I feel this is what has been happening all along. It is not that the server is not starting, instead, it is getting clo

[tw] [TW5] When setting filters as perimeter for a macro, it doesn't work if the filter is a tag with spaces.

2017-01-03 Thread Penguinlay
I have a simple macro to count number of tiddlers under a input filter. Title is countTiddlers. It is tagged with $:/tags/Macro The content is: \define countTiddlers(filter) <$count filter="[$filter$]"/> \end Now, from a different tiddler, I access that macro. <> If the tag tiddler title h

[tw] Re: [TW5] When setting filters as perimeter for a macro, it doesn't work if the filter is a tag with spaces.

2017-01-03 Thread Jed Carty
You need to put quotes around the filter like this: <> otherwise it is split up as a space separated list of inputs and only tag[Something is passed as the first parameter. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from th

[tw] Re: [TW5] When setting filters as perimeter for a macro, it doesn't work if the filter is a tag with spaces.

2017-01-03 Thread Penguinlay
I see now! Thank you very much! On Tuesday, January 3, 2017 at 2:21:46 AM UTC-8, Jed Carty wrote: > > You need to put quotes around the filter like this: > > <> > > > otherwise it is split up as a space separated list of inputs and only > tag[Something is passed as the first parameter. > -- You

Re: [tw] Re: [TW5] the LeftBar theme (left sidebar / mainmenu )

2017-01-03 Thread Riz
It would be cool if you could pull it off. I guess you will have to hack the title viewtemplate to pull it off Personally I would love to see someone attempting a pop-up tiddler viewtoolbar that appears if I long press anywhere in the tiddler body. Given that long tiddlers in desktop will beco

[tw] Re: [TW5] When setting filters as perimeter for a macro, it doesn't work if the filter is a tag with spaces.

2017-01-03 Thread Riz
Double quotes. <> On Tuesday, 3 January 2017 15:39:20 UTC+5:30, Penguinlay wrote: > > I have a simple macro to count number of tiddlers under a input filter. > Title is countTiddlers. > > It is tagged with > $:/tags/Macro > > The content is: > \define countTiddlers(filter) > <$count filter="[$f

Re: [tw] Re: How to create a desktop launcher for NodeJS TW5 in linux mint/ubuntu/debian?

2017-01-03 Thread BJ
this works for me #!/usr/bin/env xdg-open [Desktop Entry] Version=1.0 Terminal=false Type=Application Name=test Exec=/bin/bash -c "tiddlywiki main-wiki-server --server 8085 & (sleep 1; xdg-open http://127.0.0.1:8085)" On Tuesday, January 3, 2017 at 11:07:21 AM UTC+1, Riz wrote: > > BJ > , > W

Re: [tw] Re: How to create a desktop launcher for NodeJS TW5 in linux mint/ubuntu/debian?

2017-01-03 Thread BJ
This is the contents of test.desktop On Tuesday, January 3, 2017 at 11:57:46 AM UTC+1, BJ wrote: > > this works for me > > #!/usr/bin/env xdg-open > [Desktop Entry] > Version=1.0 > Terminal=false > Type=Application > Name=test > Exec=/bin/bash -c "tiddlywiki main-wiki-server --server 8085 & (slee

Re: [tw] Re: [TW5] the LeftBar theme (left sidebar / mainmenu )

2017-01-03 Thread Jan
Ahh! I see a narrow bar with save and discard button fixed to the top of the screen for editing, to be able to scroll below. Ingenious... I very much like the solution found by As Noted. http://asnoted.com/ Jan Am 03.01.2017 um 11:38 schrieb Riz: It would be cool if you could pull it off.

[tw] Is TW5 in use in any Companies / Organizations?

2017-01-03 Thread NT
Apart from private use I am interested in the real corporate use cases (not the potential ones) of TW5. Do you guys know or work in companies / institutions where TW5 is in use? Which organizations? What are they working on? Where are they located - U.S., Europe, Germany, Spain? What is the pu

[tw] Re: [TW5] the LeftBar theme (left sidebar / mainmenu )

2017-01-03 Thread Jed Carty
That is similar to what I was hoping to make with my icon menus , but I never got that far with it. -- 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, s

[tw] Re: Is TW5 in use in any Companies / Organizations?

2017-01-03 Thread Jed Carty
I use tiddlywiki for the work I do as OokTech, I think it is safe to assume that Jeremy uses it a lot for his company that I really should know the name of. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

[tw] Re: Is TW5 in use in any Companies / Organizations?

2017-01-03 Thread NT
Thanks for feedback, Jed. What is the main purpose of TW5 in your company? What's the purpose of your company? Do you work alone? If not, how big is your company? 1-5 / 5-10 / 10-20 / 20-50 / 50-100 / etc. people? Am Dienstag, 3. Januar 2017 12:33:03 UTC+1 schrieb Jed Carty: > > I use tiddlywik

[tw] HistoryList/StoryList Backward/Forward Questions

2017-01-03 Thread Jan
Hi, here are some Questions that puzzeld me for some time. * How can I make a listfilter for the Tiddlers recently visited (and not necessarily modified) * How can I create listfilter to the next tiddler in the {{storylist!!list}} that follows {{$:/HistoryList!!current-tiddler}}? * How a

[tw] Re: HistoryList/StoryList Backward/Forward Questions

2017-01-03 Thread Jed Carty
For the second thing in your first list you can use the after filter operator. Something like <$button>SOMETHING <$list filter='[list[$:/StoryList]after{$:/HistoryList!!current-tiddler}]'> <$action-navigate $to=<>/> should do it. -- You received this message because you are subscribed to

Re: [tw] Re: HistoryList/StoryList Backward/Forward Questions

2017-01-03 Thread Jan
Hi Jed! Thanks a lot! In the menu it works fine, as you can see. http://slidesnstories.tiddlyspot.com/#About%20SlideshowRemote Because it is ment for a Moderator view (as you can also see in the link) it has to work from another window, there it does not work yet, as well as the fullscreen-butt

Re: [tw] Re: [tw5] TiddlerInfotab: ViewText to display text field of a shadow, system tiddler without having to open it in edit mode

2017-01-03 Thread Tobias Beer
Hi Jeremy, The tabs macro could be updated to set the variable tv-wikilinks to “no” > for the scope of rendering the caption field. > Or we could update the button widget to automatically set tv-wikilinks for > its’ content. > Possibly the latter. But maybe there is a usecase where we would wa

Re: [tw] Re: How to create a desktop launcher for NodeJS TW5 in linux mint/ubuntu/debian?

2017-01-03 Thread Riz
BJ Thanks for the help. I don't know why it did not work for me, but I finally got a different setting to run using a cli called parallel. Again, thanks for being patient. On Tuesday, 3 January 2017 16:40:41 UTC+5:30, BJ wrote: > > This is the contents of test.desktop > > On Tuesday, January

Re: [tw] Re: [tw5] TiddlerInfotab: ViewText to display text field of a shadow, system tiddler without having to open it in edit mode

2017-01-03 Thread Danielo Rodríguez
For me having a link inside a button it's always a problem. I faced this before and Mario persuaded me from asking a change, can't remember how. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving em

Re: [tw] Re: How to create a desktop launcher for NodeJS TW5 in linux mint/ubuntu/debian?

2017-01-03 Thread Ste Wilson
I was going to suggest nohup to let the server keep running even if the terminal window closes but you have beaten the problem. -- 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, sen

[tw] Re: [TW5] Import Tiddles automatically in Tiddlywiki

2017-01-03 Thread Danielo Rodríguez
Hello @sdelaye, thank you for trying Noteself. I didn't make any investigation yet, but I guess that several things are happening: you're trying to access an http server from an https origin. Browsers prevent this kind of things. Both the server and the client should speak http or https, never

[tw] Re: NoteSelf mobile app ( well, kind of)

2017-01-03 Thread Danielo Rodríguez
Hello and thanks to both Mat and Josiah. I have read your very well exposed points, and I want to answer them properly. Now I'm writing this from my mobile phone, let me reach my home and I will try to answer both of you. Regards -- You received this message because you are subscribed to th

[tw] Re: Cardo beta release

2017-01-03 Thread PMario
On Sunday, January 1, 2017 at 1:26:11 PM UTC+1, PMario wrote: > > - "sidebar: Tools" buttons don't work anymore. > sidebar: Tools: ColorPalette sidebar: Tools: Themes dropdowns are missing for me. using FF 50.1.0 win10, chrome has the same problem. -mario -- You received this message bec

Re: [tw] Re: List tiddlers by tag in sidebar?

2017-01-03 Thread Evade Flow
Wow. That's a lot to digest, thank you! I'll report back when I've had a chance to process it all. (I suspect I'll need to get a better understanding of the TW ecosystem, in general, before it 'clicks' for me...) On Tue, Jan 3, 2017 at 2:02 AM, Tobias Beer wrote: > One more detail: > > I would r

Re: [tw] Re: [TW5] plugin filter historylist (breadcrumbs, trail, recently visited)

2017-01-03 Thread Jan
Hi Wimm, great plugin, I just asked for something like in the Group and your plugin delivers more than I dared to wish. I will incorporate some of it in my drilldown.tiddlyspot.com http://tw5quickref.tiddlyspot.com/ Thanks for the great job you did Jan Am 14.05.2016 um 09:19 schrieb wimm: Hi

[tw] Use multi-file layout without using NodeJS?

2017-01-03 Thread Evade Flow
I've been experimenting with TiddlyWiki and NodeJS, and discovered that 'importing' my mono-html file (using tiddlywiki --load) causes it to be converted into a bunch of discrete files. Further experiments reveal that it is possible—seemingly, at least—to sync these files (and hence, my entire wiki

[tw] Re: [TW5] Is there a single, concise upgrade HowTo anywhere?

2017-01-03 Thread Dmitry Sokolov
Good stuff Loyd, is your issued resolved? Your thread is processed and seems being extremely valuable: http://confocal-manawatu.pbworks.com/w/page/114222940/TW5%20Is%20there%20a%20single%2C%20concise%20upgrade%20HowTo%20anywhere A number of nodes is added to the knowledge network. Many thanks to

[tw] Re: My TiddlyWiki Journey

2017-01-03 Thread Dmitry Sokolov
Today I went through just one thread: TW5 Is there a single, concise upgrade HowTo anywhere . However, it was extremely thought provoking and resulted in a number of

[tw] Re: Use multi-file layout without using NodeJS?

2017-01-03 Thread Evade Flow
> is there some way I can access/modify this collection of files using only git and a browser? Driving home this evening, I realized this was a bit of a silly question for somebody who professes to be a software developer by trade to ask—doh! (Can you tell I'm not a web developer?) Looking at t

[tw] Re: tooltip within a link

2017-01-03 Thread stevesuny
Thanks Eric, that's exactly what I needed. much appreciated. //steve. On Friday, December 30, 2016 at 3:43:11 PM UTC-5, Eric Shulman wrote: > > On Friday, December 30, 2016 at 12:39:56 PM UTC-8, Eric Shulman wrote: >> >> \define see(show,go) >> <$link to="""$go$""" tooltip={{$go$!!tooltip}}">$show

Re: [tw] Re: Use multi-file layout without using NodeJS?

2017-01-03 Thread Arlen Beiler
Anything is possible over HTTP. How are you going to save changes? >From reading your email, I guess you don't know that you can just download any tag or the master from the TiddlyWiki GitHub repository, drop node.exe into it and call "node.exe tiddlywiki.js ../data/wiki1 --server" and your good t

Re: [tw] Re: Use multi-file layout without using NodeJS?

2017-01-03 Thread 'Mark S.' via TiddlyWiki
In your example, what is "../data/wiki1" and where does it come from? Thanks! Mark On Tuesday, January 3, 2017 at 7:26:43 PM UTC-8, Arlen Beiler wrote: > > Anything is possible over HTTP. How are you going to save changes? > > From reading your email, I guess you don't know that you can just dow

[tw] [TW5] Analytics pluging not working. Is there a way to add arbitrary js to head?

2017-01-03 Thread Noam g
Hi, I'm new to TiddlyWiki and am trying to add Google analytics. I downloaded the plugin through the plugin manager. Then I opened the two shadow documents as described in the instructions and updated their content so that my tracking number and domain (www.mysite.com) was the text. (Is this wh

Re: [tw] Re: Use multi-file layout without using NodeJS?

2017-01-03 Thread Arlen Beiler
If you specify --init or --load instead --server, then tiddlywiki.js will make that the data directory. Then you specify that directory when you specify --server and it will serve the files from that folder. You can find more info on TiddlyWiki.com or by exploring the code. On Jan 3, 2017 10:55 P

Re: [tw] Re: Use multi-file layout without using NodeJS?

2017-01-03 Thread Arlen Beiler
If you do not specify a directory as the first argument after tiddlywiki.js, it will use the current directory. Most of the commands use that directory. So I recommend you set one. On Jan 3, 2017 11:56 PM, "Arlen Beiler" wrote: > If you specify --init or --load instead --server, then tiddlywiki.

Re: [tw] Re: Use multi-file layout without using NodeJS?

2017-01-03 Thread Arlen Beiler
Welcome to the world of NodeJS. You can search for "commands" on TiddlyWiki.com. That will give you all the command line options. node.exe tiddlywiki.js [data directory] [command [options]] On Jan 4, 2017 12:00 AM, "Arlen Beiler" wrote: > If you do not specify a directory as the first argument

Re: [tw] Re: Use multi-file layout without using NodeJS?

2017-01-03 Thread Arlen Beiler
Normally I store the data directory inside the tiddlywiki folder, but you can store it anywhere you want. On Jan 4, 2017 12:04 AM, "Arlen Beiler" wrote: > Welcome to the world of NodeJS. You can search for "commands" on > TiddlyWiki.com. That will give you all the command line options. > > node.

Re: [tw] Re: [tw5] TiddlerInfotab: ViewText to display text field of a shadow, system tiddler without having to open it in edit mode

2017-01-03 Thread wimm
Hi Jeremy > The caption field is wikified, so as to allow for things like translation. > If the caption field is wikified, shouldn't it still convert camel case words into links depending on the config setting --- Camel Case Wiki Links