[tw] Re: [TW5] BJ's VisualEditor Plugin - Syntax Highlighting in Code Snippets Created by CKEditor

2017-03-24 Thread BJ
ah! The markup produced by ckeditor is correct, the problem is that the hightlight plugin does not support the standard way of interacting with hightlight.js. If you know how to use github you can add a feature request (to support ), or I could it. all the best On Friday, March 24, 2017

[tw] Re: [TW5] Get the value of a related Tiddler to use in the text of another Tiddler.

2017-03-24 Thread Matt Groth
Why do you need brackets in the related field? -- 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,

[tw] Re: [TW5] Get the value of a related Tiddler to use in the text of another Tiddler.

2017-03-24 Thread G
I'm used to doing so when I work with the "list" field to relate to multiple Tiddlers like for example a Tiddler C with a field "list" containing "[[Tiddler A]] [[Tiddler B]]". I think that without the brackets each of the words in the "list" field is considered to be a separate title, but I

[tw] How can I get the currently viewed tiddler in zoomin from anywhere on my wiki?

2017-03-24 Thread Matt Groth
I am trying to make tabs for my storylist in zoomin (the one where you can only see a single tiddler at a time). So far so good, only I can't figure out the variable that will determine if a tab should have the "selected" style. - currentTiddler represents the tiddler the tab is

[tw] Re: Voicing Futures ...

2017-03-24 Thread David Szego
Naieve but stupidly simple potential solution... What if one of the Core Tiddlers was a Java web server running on localhost, which the rest of the Core sync'd to? Wouldn't that local Java web server have access to write files? -- You received this message because you are subscribed to the

[tw] Re: [TW5] for genealogy and LDS microfilm records

2017-03-24 Thread @TiddlyTweeter
Ciao David Impressive on the fine-grainedness. The richness of the data. The one thing I was looking for I couldn't find was a "relationship map" ... I mean how to navigate between relatives to understand their positioning genealogically to each other. Best wishes Josiah On Thursday, 23

Re: [tw] Re: Voicing Futures ...

2017-03-24 Thread David Szego
On Friday, 24 March 2017 11:24:54 UTC-4, Jeremy Ruston wrote: > > Substitute “JavaScript” for “Java” and that’s a pretty good description of > TiddlyWiki running today under Node.js :) > Understood, but to avoid the pain / inability to have every user install Node everywhere they want TW,

[tw] Re: [TW5] Get the value of a related Tiddler to use in the text of another Tiddler.

2017-03-24 Thread G
Hi Matt, Matthew Both of your solutions got me in the correct direction and now it is working. When removing the brackets in the "related" field, I was able to get the value of the "document_type" field. Since I like the use of the angle brackets to be able create lists of Tiddlers or a link

[tw] Re: Voicing Futures ...

2017-03-24 Thread Jed Carty
The problem is that the single file version runs in the browser context and that prevents it from accessing the file system, you need something to bridge that which is what node does. Anything that is supposed to solve the same problem would have to be external to the browser and would have the

Re: [tw] [NEW plugin] TW5 Search and Replace

2017-03-24 Thread Danielo Rodríguez
Dear David, That's a good suggestion. However, this plugin is quite old, and it is previous to the editor bar. I don't have experience with it, so I don't know how easy or hard would be to integrate it . -- You received this message because you are subscribed to the Google Groups

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

2017-03-24 Thread Suzanne McHale
I managed to get node.js working once earlier to generate a static site, then stopped it, but when wanting to start it again later, I get this error: *H:\nodejs-portable-master>tiddlywiki programtips --server* *Serving on 127.0.0.1:8080* *(press ctrl-C to exit)* *$:/core/modules/syncer.js:407*

Re: [tw] Re: Voicing Futures ...

2017-03-24 Thread Jeremy Ruston
Hi David > Naieve but stupidly simple potential solution... > > What if one of the Core Tiddlers was a Java web server running on localhost, > which the rest of the Core sync'd to? > > Wouldn't that local Java web server have access to write files? Substitute “JavaScript” for “Java” and

[tw] Re: How can I get the currently viewed tiddler in zoomin from anywhere on my wiki?

2017-03-24 Thread BJ
it's $:/HistoryList!!current-tiddler (see http://bjtools.tiddlyspot.com/#%24%3A%2Fplugin%2Fbj%2Fstorytabs for an example of how I have done it.), however there is a bug in zooming mode, if you close the current selected tab, the history is not updated. all the best BJ On Friday, March 24,

[tw] Re: [TW5] Get the value of a related Tiddler to use in the text of another Tiddler.

2017-03-24 Thread Matthew Lauber
You could wrap the <$view> in a <$list> widget. e.g. <$list filter="[list[!!related]]"> <$view field="document_type"> On Friday, March 24, 2017 at 10:00:33 AM UTC-4, G wrote: > > I'm used to doing so when I work with the "list" field to relate to > multiple Tiddlers like for example a Tiddler

[tw] [TW5] Get the value of a related Tiddler to use in the text of another Tiddler.

2017-03-24 Thread G
Hi there I'm am trying to get the value of a related Tiddler to use in the text of another Tiddler. The setup is as follows: - Tiddler with title "Tiddler A" has a field "document_type" - Tiddler with title "Tiddler B" has a field "related" with as content "[[Tiddler A]]" What I'm

[tw] Re: [TW5] BJ's VisualEditor Plugin - Syntax Highlighting in Code Snippets Created by CKEditor

2017-03-24 Thread AltugOz
Yes, that makes sense! Thanks for all the help. I submitted a feature request on github. Best, Altug On Friday, March 24, 2017 at 2:27:31 AM UTC-4, BJ wrote: > > ah! > The markup produced by ckeditor is correct, the problem is that the >