Re: [tw] Re: Looking for a nice compact newbie tutorial on Youtube

2015-09-12 Thread Francis Meetze
Thanks! After I get a bit more time with Tiddlywiki under my belt, I'll do a revised version and take care of a few other items I missed. After watching the video myself, it feels a bit more like a review than a tutorial. My apologies to Jeremy, I'll post my new one to my personal account.

Re: [tw] Re: [TW5] Get list of descendants by recursively assembling filter?

2015-09-12 Thread Evan Balster
A few notes: 1) Macros always have to be at the top of the file, before any WikiText. 2) The syntax $(variable)$ only applies inside macros. Outside macros, use <>. 3) Your trick isn't working because there's no way to *render* WikiText into a filter expression. Basically, the code inside

Re: [tw] [TW5] highlight.js

2015-09-12 Thread Danielo Rodríguez
El viernes, 11 de septiembre de 2015, 22:12:01 (UTC+2), Bob Flandard escribió: > > Hello Jeremy, > > Thank you for your investigations and the plugin upgrade. > > All the best, Bob > > I just remind that I have created a custom language. I was creating a plugin for my work, and part of the

[tw] Re: Version confusion for new users

2015-09-12 Thread Mat
Hi Hegart and welcome! As you're not the first to note, this is a difficulty. The thing is, the only *really *"official" site is tiddlywiki.com, and this is run by Jeremy Ruston. People can contribute to this site (via Github ) in the same way they

[tw] [TW5] External Link with embedded macro call

2015-09-12 Thread Bob Flandard
Hello, I'm using an external link, like: [ext[Link text|file:///C:\Users\Bob\Videos\file.mp4]] which works. But if I replace: "file:///C:\Users\Bob\Videos\file.mp4" with a macro call [ext[Link text|<>]] The result of the macro is not being substituted into the link string as I expected (as

[tw] Re: TWC to TW5 help

2015-09-12 Thread Bob Flandard
Hello Eric, 'Twas Tobias Beer. http://get.tiddlyspace.com/#GettingStarted About 60% of the plugins in my TW2 are thanks to you, so thanks to you! (and JR and PM and TB - not tuberculosis you understand) All the best, Bob -- You received this message because you are subscribed to the

[tw] Re: [TW5] External Link with embedded macro call

2015-09-12 Thread Eric Shulman
On Saturday, September 12, 2015 at 3:10:13 PM UTC-7, Bob Flandard wrote: > > [ext[Link text|file:///C:\Users\Bob\Videos\file.mp4]] > which works. > [ext[Link text|<>]] > The result of the macro is not being substituted into the link string as I > expected (as seen by hovering the mouse over the

Re: [tw] [TW5] highlight.js

2015-09-12 Thread Bob Flandard
Hello Danielo, I had a look at the plugin code and got about as far as realizing that "hljs.registerLanguage" was the start of each new language. I thought about hijacking one of the existing languages that I'm unlikely to need for its intended purpose, but the minified code looked too

[tw] Rendering WikiText into attribute strings (Core Macro Request?)

2015-09-12 Thread Evan Balster
Use Case: Suppose within my TiddlyWiki I'm rendering an infographic as SVG. The SVG contains a path, which is defined by a string containing a list of vertices. Suppose further I want to use an operation with at least one <$list> widget to populate this path, as below. Because the path is

[tw] Re: [TW5] Render WikiText into attribute strings?

2015-09-12 Thread Evan Balster
I noticed another ongoing thread where the user in question was expecting to be able to render wikitext into an attribute: Read here . He is trying to generate a filter expression using <$list> widgets, presumably to cull

[tw] DefaulTiddler only displays first tiddler

2015-09-12 Thread Danielo Rodríguez
Have you tried adding line breaks? I think it should look like a list -- 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

[tw] Re: Version confusion for new users

2015-09-12 Thread Hegart Dmishiv
Hi Mat, thanks for the welcome and the extensive reply. I appreciate the efforts of volunteers working on making TiddlyWiki as great as it is, and particularly the work of Jeremy. I plan to watch the hangout videos at

[tw] Re: TW Hosting

2015-09-12 Thread Hegart Dmishiv
Thanks for this great guide, Stefan. I have set up my "dev" instance of TW 5.1.9 using the technique you described here. My only criticism is that the difference between http://drive.google.com and http://googledrive.com perhaps needs

Re: [tw] Re: [TW5]How to use canonical uri field to point to local files

2015-09-12 Thread Danielo Rodríguez
Hello Jeremy, I can understand this limitation on the fileSystem adaptor: it has to figure it out what to do with the files based on it's extension and turn them into tiddlers. But, in this scenario we already have the tiddler, and the tiddler has a type defined, so it should be

Re: [tw] (TW5) html href to tiddler not working?

2015-09-12 Thread Jeremy Ruston
Hi Remi The HTML element is used to create links to external resources. To link to a tiddler you'd use the <$link> widget. This example would link to the tiddler whose title is contained in the tiddler "MyLinkDestination": <$link to={{MyLinkDestination}}>link To link directly to the tiddler

Re: [tw] Re: NodeJS version extremely slow an resource intensive

2015-09-12 Thread Jeremy Ruston
Hi Atomi Apologies for the delayed response. > Why is the NodeJS version so slow for search and launching? Can you give me an idea of your setup and which operations you're finding slow? It'd be useful to know what platform/browser you're using too. > Isn't there a way to just have the NodeJS

Re: [tw] Re: [TW5] Get list of descendants by recursively assembling filter?

2015-09-12 Thread Linus Johnsson
Thank you for your kind replies. Both suggestions rendered brackets just fine. As you seem to have anticipated, this immediately landed me in a different kind of problem. I defined the following macro: \define listDescendants(tag) <$list filter="[tag[$tag$]tag[concepts]]"> <$view

[tw] Version confusion for new users

2015-09-12 Thread Hegart Dmishiv
I've just started using TiddlyWiki in the last few days, and am really enjoying it so far. I have lots of previous experience with MediaWiki, so I'm finding that I have to "unlearn" some things from there first. Even so, I've found it quite difficult to learn the new skills for TW, as the

[tw] Re: TWC to TW5 help

2015-09-12 Thread Bob Flandard
Hello Evolena, Thanks for spoon-feeding me the exact macro I wanted. It works perfectly! I will make the effort to try and understand it though. I think the original TW2 macro/plugin was one of Eric S's fine creations. All the best, Bob -- You received this message because you are

[tw] Re: TWC to TW5 help

2015-09-12 Thread Eric Shulman
On Saturday, September 12, 2015 at 7:08:05 AM UTC-7, Bob Flandard wrote: > > Hello Evolena, > > Thanks for spoon-feeding me the exact macro I wanted. It works perfectly! > I will make the effort to try and understand it though. > I think the original TW2 macro/plugin was one of Eric S's fine

Re: [tw] Re: TWC to TW5 help

2015-09-12 Thread Bob Flandard
Hello, This code... \define property_table(PROP) <$list filter="[tag[apdl]tag[help]]+[sort[title]]"> {{!!title}} {{$$PROP$$}} \end ... didn't do the same thing as this code from TW2 <> The TW2 code creates a two column table with column headers "Macro Name" and "Summary" The first

[tw] Re: Feature Request: Sidebar tab hiding as a built-in option

2015-09-12 Thread Graeme Henson
That's an amazingly simple solution after how much I've been googling to find the something using all sorts of plug-ins and workarounds and such. I think I was expecting something more like a start-up script that just ran whenever the file opened up or changed a default setting somewhere, but

Re: [tw] Re: NodeJS version extremely slow an resource intensive

2015-09-12 Thread Mat
Unfortunately google groups (or whatever is responsiple) parses "somethingdotsomething" as a link. So foo.bar is linkified without me making it so. tw.com is merely short for tiddlywiki.com <:-) On Saturday, September 12, 2015 at 1:49:07 PM UTC+2, BJ wrote: > > tw.com takes you to a

Re: [tw] Re: NodeJS version extremely slow an resource intensive

2015-09-12 Thread Mat
On Saturday, September 12, 2015 at 1:49:07 PM UTC+2, BJ wrote: > > tw.com takes you to a taiwanese website! > Hm, I replied - but deleted - answering that "anythingdotanything" was parsed by google groups as a link. This is at least the case when you write tw.com ...but for some reason not

[tw] Re: (tw5) howto display c source code syntax highlighted in a scroll box with line numbers

2015-09-12 Thread Mat
Woudl it be enough to merely put the code within triple backticks ``` like this ``` I.e empty line (!) triple backticks on its own line content triple backticks on its own line <:-) On Saturday, September 12, 2015 at 2:14:53 PM UTC+2, ch wrote: > > hi, > > i started to use tw5 running on

[tw] Re: [TW5] Show field from story tiddler within list widget

2015-09-12 Thread Mat
> > +[tag[<>]] single macrobrackets inside filter +[tag[]] <:-) On Saturday, September 12, 2015 at 2:49:39 PM UTC+2, francois godard wrote: > > Hi everyone, > > Thanks Tobias for the link, it did help > I used this tips for my case. The syntax is > <$list filter="..." variable=Cat

[tw] Re: (tw5) howto display c source code syntax highlighted in a scroll box with line numbers

2015-09-12 Thread ch
no On Saturday, September 12, 2015 at 3:02:15 PM UTC+2, Mat wrote: > > Woudl it be enough to merely put the code within triple backticks > > ``` > like this > ``` > > I.e > > empty line (!) > triple backticks on its own line > content > triple backticks on its own line > > > <:-) > > > > On

Re: [tw] Re: An Easy Way to Create and Modify Plugins

2015-09-12 Thread Mat
Dear Andreas do you think you could put up Tinka on github? It would be much easier to post issues which in turn would provide a great overview of stuff AND it would enable others to make pull requests. Thanks. <:-) -- You received this message because you are subscribed to the Google

[tw] Re: TWC to TW5 help

2015-09-12 Thread Evolena
Le samedi 12 septembre 2015 14:12:17 UTC+2, Bob Flandard a écrit : > > For the TW5 code above to work (for me), I needed to delete the macro > argument and replace $$PROP$$ with !!summary, having first defined a > field in each tiddler called summary. This is really inconvenient because I >

Re: [tw] Re: NodeJS version extremely slow an resource intensive

2015-09-12 Thread BJ
tw.com takes you to a taiwanese website! On Saturday, September 12, 2015 at 11:19:54 AM UTC+1, Jeremy Ruston wrote: > > Hi Atomi > > Apologies for the delayed response. > > > Why is the NodeJS version so slow for search and launching? > > Can you give me an idea of your setup and which

Re: [tw] Re: NodeJS version extremely slow an resource intensive

2015-09-12 Thread BJ
tw.com takes you to a taiwanese website! On Saturday, September 12, 2015 at 11:19:54 AM UTC+1, Jeremy Ruston wrote: > > Hi Atomi > > Apologies for the delayed response. > > > Why is the NodeJS version so slow for search and launching? > > Can you give me an idea of your setup and which

[tw] DefaulTiddler only displays first tiddler

2015-09-12 Thread Ray Vermey
Hi all i edited DefaultTiddler as folows: [[TagCloud]] [[ToDo]] Now only the TagCloud tiddler is displayed. When i change [[ToDo]] as the 1st one then only [[ToDo]] is displayed. What am i doing wrong? Thanks Ray -- You received this message because you are subscribed to the Google Groups

[tw] (tw5) howto display c source code syntax highlighted in a scroll box with line numbers

2015-09-12 Thread ch
hi, i started to use tw5 running on node.js to evaluate it as a wiki containing information about software development, for example: 1. links, like howtos, man pages, etc. 2. documents, like style guides, protocols, etc. 3. c source code examples, for educational purposes it was pretty easy to

[tw] Re: [TW5] Show field from story tiddler within list widget

2015-09-12 Thread francois godard
Hi everyone, Thanks Tobias for the link, it did help I used this tips for my case. The syntax is <$list filter="..." variable=Cat ><$view tiddler=<> field="title"/> (I must say he took me a while) Now I have a sublist that needs both filtering on the story tiddler and on the <> <$list

Re: [tw] Re: NodeJS version extremely slow an resource intensive

2015-09-12 Thread Mat
> > but for some reason not when you write foo.com (and there is a site named > so). GAAAH - I did some tests and they did NOT linkify... but now foo.com DOES. I dunno what to say. Anyway: tw.com = tiddlywiki.com <:-) On Saturday, September 12, 2015 at 2:51:19 PM UTC+2, Mat wrote: > > On

[tw] (tw5) tiddlywiki on node.js - howto control where tiddlers (and plugins) are stored, i.e. folder and file

2015-09-12 Thread ch
hi, i created an empty tiddlywiki on node.js with the following command: tiddlywiki mynewwiki --init server ...and started it with: tiddlywiki mynewwiki --server ...now it's possible to access mynewwiki by pointing my browser to url: http://127.0.0.1:8080 i can view, create and edit

[tw] Re: [TW5] Show field from story tiddler within list widget

2015-09-12 Thread Evolena
Le samedi 12 septembre 2015 14:49:39 UTC+2, francois godard a écrit : > Now I have a sublist that needs both filtering on the story tiddler and on > the <> > <$list filter="[is[current]tagging[]] +[tag[<>]]" variable="Rec"> > > saddly the run +[tag[<>]] is not understood > > What would be the