Re: [tw] Re: Migrating from TWc to TW5 - tag cloud sidebar?

2014-10-07 Thread Jeremy Ruston
Hi Uwe is it possible to position the whole tiddler [[MainMenu]] (with a smaller size, cool formating) to the left side? The from this [[MainMenu]] opened tiddlers should be shown in a single page mode (only one tiddler should be shown at a time, but the [[MainMenu]] should be always

[tw] Re: Announcing TiddlyWiki 5.1.1

2014-10-07 Thread Jeremy Ruston
Hi Steffen I have tried the KaTeX plugin and noticed that common amsmath symbols such as \propto or \partial do not work. Is there a possibility to implement this functionality? You'll need to provide feedback to the KaTeX team; I'm only packaging their code into a TiddlyWiki plugin. All the

[tw] Re: How to show the current filename in a tiddler?

2014-10-07 Thread PMario
I did create a pull request: https://github.com/Jermolene/TiddlyWiki5/pull/947 for a plugin, that implements the possibility for users to easily access information about the TW document. For the filename it will be as easy as: actual filename: document-filename We'll see, what Jeremy says :)

Re: [tw] Re: [TW5] Automatic password lock after timeout

2014-10-07 Thread Jeremy Ruston
Hi Matthias We may be able to implement an auto-lock for encrypted wikis, but there are some significant potential issues: * It's not clear what we'd have to do to implement the lock securely, without leaving the clear text in the browser memory. (The obvious approach of causing the page to

Re: [tw] Re: Migrating from TWc to TW5 - tag cloud sidebar?

2014-10-07 Thread UBi
Hi Helge, as long as there is no fully-fledged tag cloud, you can maybe get along wit this poor man's version (simply drop it it in a newly created tiddler): style .cloud { margin-right: 7px; } .cloud .tc-tag-list-item { margin-right: 0; } /style $list filter=[tags[]!is[system]sort[title]] span

[tw] Re: [TW5] widget to Goto Ranomized Tiddler

2014-10-07 Thread Philip Coltharp
What type of object is source? -- 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, send email to

[tw] Re: [TW5] widget to Goto Ranomized Tiddler

2014-10-07 Thread Eucaly J
Hi Philip: Could you explain your question a little further? Philip Coltharp: What type of object is source? -- 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

[tw] Re: [TW5] widget to Goto Ranomized Tiddler

2014-10-07 Thread Philip Coltharp
is it a list/array of arbitrary objects, indexed by title? Is it a list/array of only tiddlers, indexed by title? The code source(function(tiddler,title) { results.push(title); }); is some thing I don't understand well. What is the name given to the javascript concept used here?, which I

[tw] Re: [TW5] widget to Goto Ranomized Tiddler

2014-10-07 Thread Philip Coltharp
Euclay, So I'm reading and learning tiddlywiki filter code and its conventions. I just read the code TiddlyWiki5\core\modules\filters.js and I believe I've started to answer my question. Thank you for what you have given so far. On Tuesday, October 7, 2014 6:28:17 AM UTC-4, Philip Coltharp

Re: [tw] Re: [TW5] widget to Goto Ranomized Tiddler

2014-10-07 Thread Jeremy Ruston
Hi Eucaly Here comes the random filter (to limit to n results), as attached. usage : [tag[Widgets]*random[1]*] There is a potential issue with this approach. It means that each time the filter is evaluated it might return different results, even if the tiddler store hasn't changed. This is

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread julien23
Hi whatever Sorry for long silence ... I slightly modified your script to match my taxonomy script var skills = store.getTaggedTiddlers(*Skills*); //Get skill tiddlers var here = story.findContainingTiddler(place); //Determine place if (here) { var tid =

Re: [tw] Re: [TW5] widget to Goto Ranomized Tiddler

2014-10-07 Thread PMario
On Tuesday, October 7, 2014 1:25:33 PM UTC+2, Jeremy Ruston wrote: Then we'd add a new filter choose that would be used like this: [tag[Widgets]choose{$:/info/random}] If you write the tiddler title to $:/info/random you could use $transclude tiddler={{$:/info/random!!text}} mode=block or

Re: [tw] [TW5] Advice on Node.js Deployment and Wiki Performance

2014-10-07 Thread Jeremy Ruston
Hi Rick We have tw5.1.2 installed for Node.js and with NGINX. We're using a daemon to run the wiki out of it's own directory (/home/ncemonwiki/emonwiki) and using SSL to access the nginx server running one the same server. That's great to hear. At initial connect from Chrome browser, it takes

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread Stephan Hradek
$list filter=[[Paul]tags[]] +[tag[Skills]] $view field=title/ /$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

Re: [tw] [TW5] Advice on Node.js Deployment and Wiki Performance

2014-10-07 Thread PMario
On Tuesday, October 7, 2014 1:50:49 PM UTC+2, Jeremy Ruston wrote: One other thing I'd like to get working in the server is being able to work in a mode where we use paths instead of fragment identifiers to select target tiddlers: http://127.0.0.1:8080/mywiki/HelloThere Just make the

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread Eric Shulman
On Tuesday, October 7, 2014 5:01:50 AM UTC-7, Stephan Hradek wrote: $list filter=[[Paul]tags[]] +[tag[Skills]] $view field=title/ /$list This solution is for TW5. The question was specifically for TWClassic. However, it does demonstrate how powerful the new TiddlyWiki filter syntax is!

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread Eric Shulman
On Tuesday, October 7, 2014 4:26:09 AM UTC-7, julien23 wrote: var title = $1; //Calling tiddler's title And to call it from [Paul] with tiddler PeopleSkillsScript with: {{tiddler.title}} But I get : ReferenceError: Paul is not defined Can you please help me further ? You need to put

[tw] Re: [TW5] Advice on Node.js Deployment and Wiki Performance

2014-10-07 Thread PMario
On Monday, October 6, 2014 6:28:32 PM UTC+2, Rick Williams wrote: We have tw5.1.2 installed for Node.js and with NGINX. We're using a daemon to run the wiki out of it's own directory (/home/ncemonwiki/emonwiki) and using SSL to access the nginx server running one the same server. At

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread Stephan Hradek
Am Dienstag, 7. Oktober 2014 14:08:26 UTC+2 schrieb Eric Shulman: This solution is for TW5. The question was specifically for TWClassic. However, it does demonstrate how powerful the new TiddlyWiki filter syntax is! Now that you say it… ;) -- You received this message because you

Re: [tw] Re: TW5 Can't save when path contains greek letters

2014-10-07 Thread Jeremy Ruston
Hi aravias I can't save the wiki when the destination path contains a folder with greek letters in windows 7. That sounds like a bug. I've created a ticket for this issue: https://github.com/TiddlyWiki/TiddlyFox/issues/25 I'll try to investigate it soon, Best wishes Jeremy On Mon, Oct 6,

Re: [tw] TW5 home button doesn't work as expected in zoomin mode

2014-10-07 Thread Jeremy Ruston
Thanks UBi, that's a bug, fixed for 5.13 here: https://github.com/Jermolene/TiddlyWiki5/commit/09b6540998fec6bf1fb14842be8e8c53dbd5c46a Best wishes Jeremy On Mon, Oct 6, 2014 at 8:38 AM, UBi u...@kefc.de wrote: Hi, 1. open http://www.tiddlywiki.com 2. activate the home button 3.

[tw] Re: [TW5] Advice on Node.js Deployment and Wiki Performance

2014-10-07 Thread Rick Williams
Hi All, I really appreciate the help and responses on this. Let me describe my setup in more detail. Perhaps there is some configuration changes that someone might suggest to help. My server is in our local data center. Network and server performance should not be any issue. Keep in mind,

[tw] Newbie Question - Moving to TW5 from TWC

2014-10-07 Thread Michel van der List
Hi there. I'm a newcomer to TW5 and have used TWC off and on in the past. I'm trying to upgrade my wiki and after the import I at least seem to have all my notes stored in the original. However, trying to convert (some of) the tiddlers to the new formatting makes chrome very unhappy (page

Re: [tw] Re: [TW5] widget to Goto Ranomized Tiddler

2014-10-07 Thread Eucaly J
Hi Jeremy: The refresh cycle issue did come across my mind earlier today. I will add a warning message on the random filter. After reading your suggestion, I will agree that such unexpected change would better be user driven -- as a button. (to issue tm-generate-random message, or calling some

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread julien23
Hi all Eric, Thank you I have abounded your tip jar as usual Stephan, I do love TW5, but it took me so much time to build my system with TWC, I can't imagine to migrate ... too bad! Regards Julien On Tuesday, October 7, 2014 2:18:10 PM UTC+2, Stephan Hradek wrote: Am Dienstag, 7.

[tw] delete tiddler

2014-10-07 Thread amorok
I created a tiddler containing javascript code (using the jsxgraph plugin). The code bug and prevented me from opening my Tiddlywiki5. I found a way to open my Tiddlywiki by changing the tiddlers open at startup. Now I want to delete the buggy tiddler without opening it, because the bug

[tw] Re: Newbie Question - Moving to TW5 from TWC

2014-10-07 Thread BJ
Hi Michel, tiddlywiki5 tiddlers have a 'type' which is used to select the correct parser. When you import tiddlers from tw classic they get assigned the type text/x-tiddlywiki. The new tiddlywik5 tiddlers have the type text/vnd.tiddlywiki. If you have the tw2parser installed text/x-tiddlywiki

Re: [tw] Re: Is there a way to use datetime module to add tomorrows date in a tag?

2014-10-07 Thread cmari
Thank you, Stephan, that widget was already essential to me, but the additions are terrific. cmari On Mon, Oct 6, 2014 at 2:59 AM, Shash skmurth...@gmail.com wrote: Really incredible Stephan. Thanks a lot for your support on this. I will be looking forward for your enhancements. Thanks!

[tw] Re: TiddlyWiki Hangout #63 on October 7th at 4pm BST

2014-10-07 Thread Jeremy Ruston
TiddlyWiki Hangout #63 is about to start. Watch or post questions at https://plus.google.com/events/cumlfpjejmdoqp9rtntiajb19ac Join at https://plus.google.com/hangouts/_/hoaevent/AP36tYeD-ngev5YU_Gvc9fWUrkKvySnFH6SAFXpVT2c9Y7mPhLVqGQ Best wishes Jeremy On Sun, Sep 28, 2014 at 11:17 PM,

Re: [tw] Re: Is there a way to use datetime module to add tomorrows date in a tag?

2014-10-07 Thread cmari
oops, I meant macro, not widget On Tue, Oct 7, 2014 at 7:41 AM, cmari cema...@gmail.com wrote: Thank you, Stephan, that widget was already essential to me, but the additions are terrific. cmari On Mon, Oct 6, 2014 at 2:59 AM, Shash skmurth...@gmail.com wrote: Really incredible

[tw] Re: join variables with $set widget

2014-10-07 Thread stefan . fruehwirth
Forgot to include [TW5] in subject. On Tuesday, October 7, 2014 5:24:34 PM UTC+2, stefan.f...@gmx.at wrote: Is it somehow possible to join two or more variables into one using the $set widget? For instance, if I write something like this $set name=joined value=ab / (doesn't work) with

[tw] join variables with $set widget

2014-10-07 Thread stefan . fruehwirth
Is it somehow possible to join two or more variables into one using the $set widget? For instance, if I write something like this $set name=joined value=ab / (doesn't work) with a being hello and b being world I get helloworld in the joined variable. Best, Stefan -- You received this

[tw] Re: join variables with $set widget

2014-10-07 Thread Stephan Hradek
No, but try \define join_a_b $(a)$$(b)$ $set name=joined value=join_a_b -- 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.

[tw] Re: delete tiddler

2014-10-07 Thread Stephan Hradek
As you just want to once delete a tiddler you know by name, try this: $button message=tw-delete-tiddler param=title of the tiddler to be deletedKill it man!/$button -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group

[tw] Re: Newbie Question - Moving to TW5 from TWC

2014-10-07 Thread Michel van der List
Thanks for that explanation. Unfortunately, that means the tw2parser is not installed correctly and it also means that the convert thing throws the parser in an infinite loop of some sort. Oh well, I guess I'll write something that does most of the cleanup externally. Don't think I'd be too

[tw] Re: delete tiddler

2014-10-07 Thread amorok
Wow! It's working! Thanks. Le mardi 7 octobre 2014 12:51:28 UTC-4, Stephan Hradek a écrit : As you just want to once delete a tiddler you know by name, try this: $button message=tw-delete-tiddler param=title of the tiddler to be deletedKill it man!/$button -- You received this

[tw] [TW5]Stylesheets dpcumentation?

2014-10-07 Thread Mik McAllister
I've been changing the palette colors, using the Blue Palette as a clone base and using the Sticky Titles theme, and was having a problem getting the tiddler titles to show properly - no matter what I did, the background for the titles was white (the background for my palette is #BB99AA). I

Re: [tw] Re: [TW5] Theme adjustment request

2014-10-07 Thread Mik McAllister
Thank you. Is the Read Only theme a plug-in? On Monday, October 6, 2014, Jeremy Ruston jeremy.rus...@gmail.com wrote: Hi Mik No offense, but where are the instructions to install these? I just had to copy and paste the two shadow tiddlers by hand, and compare them to TiddlyWiki to get this

[tw] Re: [TW5]Stylesheets dpcumentation?

2014-10-07 Thread Mik McAllister
Wait, that's not going to work, because somehow that style block changes one of the plug-ins for Firefox. On Tuesday, October 7, 2014 12:07:10 PM UTC-7, Mik McAllister wrote: I've been changing the palette colors, using the Blue Palette as a clone base and using the Sticky Titles theme, and

Re: [tw] [TW5]Stylesheets dpcumentation?

2014-10-07 Thread Jeremy Ruston
Hi Mik I'm afraid that's a bug with the Sticky Titles theme; I've fixed it for 5.0.13 such that the titlebar gets the tiddler-background colour as expected: https://github.com/Jermolene/TiddlyWiki5/commit/b3dcd7d625ec83701ef3a77f3fb8101af57c154f Best wishes Jeremy On Tue, Oct 7, 2014 at

[tw] Re: [TW5]Stylesheets dpcumentation?

2014-10-07 Thread Mik McAllister
Okay altering that style only affects the Fastest Notifier for Gmail, if it is clicked on while viewing the wiki. I'm not sure why, but it does. I am contacting the developer of the plugin regarding that. The original question still stands. -- You received this message because you are

Re: [tw] [TW5]Stylesheets dpcumentation?

2014-10-07 Thread Mik McAllister
Well that looks nice, but is there a way to have it a separate color? Some folks (like myself) might prefer that. I appreciate the work you've done, truly. I apologize for being so nit-picky. On Tuesday, October 7, 2014 12:42:06 PM UTC-7, Jeremy Ruston wrote: Hi Mik I'm afraid that's a bug

[tw] Re: [TW5] Advice on Node.js Deployment and Wiki Performance

2014-10-07 Thread PMario
On Tuesday, October 7, 2014 3:23:48 PM UTC+2, Rick Williams wrote: The way I understand this is that we are simply forwarding the requests from nginx to the http server built in to the tiddlywiki program. jup. From the responses so far, I'm thinking there must be another way to

[tw] Re: [TW5] Automatic password lock after timeout

2014-10-07 Thread Mik McAllister
If you are using a window machine, hold down the Windows key and press 'L'. On Sunday, October 5, 2014 10:33:26 PM UTC-7, Matthias Gruenewald wrote: Hello community, I'm using TW classic for years now. It is the best productivity tool! Now I would like to switch to TW5. I really like the

Re: [tw] [TW5]Stylesheets dpcumentation?

2014-10-07 Thread Jeremy Ruston
Hi Mik Well that looks nice, but is there a way to have it a separate color? Some folks (like myself) might prefer that. I'm not sure that it's worth adding a new entry to the named palette colours; I'd recommend using a custom stylesheet to set the title background colour (as your example

Re: [tw] Re: [TW5] Theme adjustment request

2014-10-07 Thread Jeremy Ruston
Hi Mik Is the Read Only theme a plug-in? Yes, it's a plugin; you can obtain it from the control panel at http://tiddlywiki.com. Best wishes Jeremy On Monday, October 6, 2014, Jeremy Ruston jeremy.rus...@gmail.com wrote: Hi Mik No offense, but where are the instructions to install

Re: [tw] [TW5]Stylesheets dpcumentation?

2014-10-07 Thread Mik McAllister
That's fine. Hopefully this thread will still be around if anybody else runs into the issue. I was just worried if I had missed something completely obvious. That happens when one gets old. I'm still going to try to document the palette fields. Some of the terms are a little obscure. What is

Re: [tw] Re: [TW5] Advice on Node.js Deployment and Wiki Performance

2014-10-07 Thread Jeremy Ruston
If you request a TW.html from the TW server, the TW server builds an html file including the TW core, but without the content tiddlers. One small correction: the HTML file does include the content tiddlers. (It doesn't include them when used with TiddlyWeb). Best wishes Jeremy The

Re: [tw] [TW5]Stylesheets dpcumentation?

2014-10-07 Thread Jeremy Ruston
Hi Mik What is a dragger? It's the tiddler title pill that is displayed during a drag: [image: Inline image 1] Best wishes Jeremy. On Tuesday, October 7, 2014 12:51:55 PM UTC-7, Jeremy Ruston wrote: Hi Mik Well that looks nice, but is there a way to have it a separate color? Some

[tw] Re: [TW5] Advice on Node.js Deployment and Wiki Performance

2014-10-07 Thread Rick Williams
Hi PMario, That's definitely not the case. I've defined this server myself specifically for this. There is no competing load of any significance. On Tuesday, October 7, 2014 3:46:53 PM UTC-4, PMario wrote: On Tuesday, October 7, 2014 3:23:48 PM UTC+2, Rick Williams wrote: The way I

[tw] Re: join variables with $set widget

2014-10-07 Thread Antonio Vargas
\define join_a_b $(a)$$(b)$ The use of the dollar character $ and $$ in this way conflicts with other plugins (KaTex and mathjax) which is very annoying when we try to mix macro definitions and equations. -- You received this message because you are subscribed to the Google Groups

Re: [tw] [TW5] Small request on search field - closing x too small on tablets

2014-10-07 Thread Jeremy Ruston
Hi Mark Sorry it's taken me so long to get to this, but I've increased the area of the search cancel button for 5.1.13: https://github.com/Jermolene/TiddlyWiki5/commit/dc9981322aeb508d5ebac0b691b0d703f8c1995e Best wishes Jeremy. On Mon, Sep 29, 2014 at 6:43 PM, 'Mark S.' via TiddlyWiki

Re: [tw] Re: join variables with $set widget

2014-10-07 Thread Jeremy Ruston
Hi Antonio \define join_a_b $(a)$$(b)$ The use of the dollar character $ and $$ in this way conflicts with other plugins (KaTex and mathjax) which is very annoying when we try to mix macro definitions and equations. I don't know about the MathJax plugin, but the KaTeX plugin should not

[tw] Re: join variables with $set widget

2014-10-07 Thread Stephan Hradek
Am Dienstag, 7. Oktober 2014 23:12:43 UTC+2 schrieb Antonio Vargas: \define join_a_b $(a)$$(b)$ The use of the dollar character $ and $$ in this way conflicts with other plugins (KaTex and mathjax) which is very annoying when we try to mix macro definitions and equations. I didn't

[tw] [TW5] tm-new-tiddler set new tiddler title when using template

2014-10-07 Thread James Anderson
In certain tagged tiddlers I have links to other tiddlers (driven by a field) which may or may not exist. If they do not exists I want to set the create the tiddler from a template which is easy enough, but i also want to be able to set the title and not have it default to my temp tiddler's

[tw] Re: [TW5] tm-new-tiddler set new tiddler title when using template

2014-10-07 Thread Stephan Hradek
http://tiddlystuff.tiddlyspot.com Newtiddler Widget Be sure to read the note as I still did not yet manage to make it ready-to-use for 5.1. You need to tweak it a bit as instructed. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe

Re: [tw] Re: Migrating from TWc to TW5 - tag cloud sidebar?

2014-10-07 Thread Mik McAllister
You can also tag that with $:\tags\Sidebar to add that to the sidebar tabs. I've tried changing the sort to count but I get a wonky response. It's not sorted by count, but it isn't sorted by title either. I have a feeling that it would take some javascript to take the output of UBi's script and

[tw] Re: [TW5] Advice on Node.js Deployment and Wiki Performance

2014-10-07 Thread PMario
On Tuesday, October 7, 2014 10:43:27 PM UTC+2, Rick Williams wrote: Hi PMario, That's definitely not the case. I've defined this server myself specifically for this. There is no competing load of any significance. I think I know it. WARNING: Be aware, that I didn't test the following

Re: [tw] Re: [TW5] widget to Goto Ranomized Tiddler

2014-10-07 Thread Philip Coltharp
On Tuesday, October 7, 2014 7:25:33 AM UTC-4, Jeremy Ruston wrote: There is a potential issue with this approach. It means that each time the filter is evaluated it might return different results, even if the tiddler store hasn't changed. This is contrary to the expectations of the rest of

[tw] images in tiddlers, safari on os x

2014-10-07 Thread Bob Jansen
I am not sure if this has been addressed previously but I can not find any reference to this. I am trying to insert images into tiddlers, using the [img[filename.png]] tag. But the image does not display. I have also tried the transclusion method but that also doesn't work. Safari 5.1.10, os

[tw] upgade fails on os x

2014-10-07 Thread Bob Jansen
when I try to use the upgrade function, either online or locally, it immediately fails when I drag the tiddlywiki file on to it. error message can't find varialble FileReader Screen grab attached bobj -- You received this message because you are subscribed to the Google Groups TiddlyWiki

[tw] [TW5] serve up local file

2014-10-07 Thread Nathan Gleaves
I am trying to put a link in my tiddler to a file stored locally on my server. I want to be able to download this file from another machine accessing my wiki. here is what i'm trying to do so far. [ext[Character Sheet|D:\misc\Wallpaper\05.jpg]] [[Character Sheet|D:\misc\Wallpaper\05.jpg]]

Re: [tw] Having trouble figuring uto tuse Markdown

2014-10-07 Thread Nathan Gleaves
Somehow, its working now after being shut down for a a few days. I don't really understand why. No worries though. I'm actually not even using markdown now. the more i get into it, the more i prefer using the default markup. On Sunday, October 5, 2014 6:23:22 PM UTC-5, Jeremy Ruston wrote:

[tw] [TW5]: Saving the wiki in html, with custom name and without edit, info, create buttons

2014-10-07 Thread iani
Hello, TW5 is working very well for me. I run it locally on my macbook using node.js but would like to use the saved html version for publishing the wiki as a read-only website on a public webserver. Therefore I need to customize the save-button to do the following things: - Temporarily