Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Måns
Hi Jeremy I want the previous next function only to be visible in relevant tiddlers. Now it is added to the viewtemplate of all tiddlers. Is there a hide- or showwhen function which will hide/show the navigation panel from tiddlers based on tags - or sth. like that...? Cheers Måns Mårtensson

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Jeremy Ruston
Hi Måns I want the previous next function only to be visible in relevant tiddlers. Now it is added to the viewtemplate of all tiddlers. Is there a hide- or showwhen function which will hide/show the navigation panel from tiddlers based on tags - or sth. like that...? Yes, although the syntax

[tw]

2014-01-22 Thread Alex Hough
Dear All, I'd like an easy way to host a TiddlyWiki 5 on my own domain. Is it possible to get Dropbox TiddlyWiki onto my own domain? I don't really want to be uploading it each time I make and edit. Thanks in advance Alex -- You received this message because you are subscribed to the Google

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Måns
Hi Jeremy Great thanks. I use it like this: $list filter=[is[current]tag[Lektion1]] $list filter=[is[current]next[Lektion1]]/ / Forrige: $list filter=[is[current]previous[Lektion1]]/ /$list Will it be possible to define/use a custom viewtemplate at some stage? - like:

Re: [tw] My vanilla install on node.js does not have very worthwhile pages, like Docs !

2014-01-22 Thread Jeremy Ruston
Hi Chris TiddlyWiki5 always requires restarting after manually modifying the wiki folder content. The plugins and themes you imported from the tw5.com wiki are all available within the TiddlyWiki core. All you need to do is add them to your tiddlywiki.info file. See this one, for example, where

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Jeremy Ruston
Will it be possible to define/use a custom viewtemplate at some stage? - like: $:/tags/LessonViewTemplate No, that is not planned. TiddlyWiki5 tends to use configuration by tag, rather than configuration by title, as in TiddlyWiki Classic. The purpose of the change is to make it easier to

Re: [tw]

2014-01-22 Thread Jeremy Ruston
Hi Alex You can save a wiki to your Dropbox and generate a public URL for it (they call it sharing a link). The URL will be of the form: https://www.dropbox.com/s/qw---3w/mywiki.html (Where the dashes stand for other encoded characters that I have removed) You need to transform the URL

[tw] Tiddlyspot down?

2014-01-22 Thread Jan Winter
Knows anyone why tiddlyspot.com is not available? And more important: When is tiddlyspot online again? -- 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: Tiddlyspot down?

2014-01-22 Thread Stephan Hradek
It's not down for me. My http://tw5magick.tiddlyspot.com loads perfectly -- 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: Tiddlyspot down?

2014-01-22 Thread Jan Winter
Thanks @Stephan for testing. It works fine for me again:) Am Mittwoch, 22. Januar 2014 10:16:48 UTC+1 schrieb Jan Winter: Knows anyone why tiddlyspot.com is not available? And more important: When is tiddlyspot online again? -- You received this message because you are subscribed to the

[tw] Re: How to better structure the content in TW5?

2014-01-22 Thread PMario
On Tuesday, January 21, 2014 8:13:26 PM UTC+1, Marcel Kaczala wrote: 2) To create a tag like a title for the topic and goes creating small tiddlers for the tag? With the time it'll be there tons of tags... Too many visible system tags, was one of TWclassic's biggest problems. ... There are

[tw] My Tiddlywiki Backup Scheme

2014-01-22 Thread Mal
Folks, I am interested in comments or suggestions on my backup scheme. I've created a tiddlywiki as a note-keeping system for a medical student. It currently contains over 1000 tiddlers plus about 200 embedded images. This was originally created using twc and I have recently converted it to

Re: [tw] Re: [TW5] How about a right sidebar of some kind? More CSS and theme questions.

2014-01-22 Thread Jeremy Ruston
Hi Leo On Wed, Jan 22, 2014 at 1:06 AM, Leo Staley leosta...@gmail.com wrote: You are absolutely correct. I was a bit of a jerk, and now I feel really bad. I wrote the post when I was frustrated, and it came out far more than it should have! If you look at the stat page for the TiddlyWiki

Re: [tw] Re: [TW5] Inline Editing of fields

2014-01-22 Thread Jeremy Ruston
Hi Danielo The button is sending a message back up to the ancestor navigator widget that contains it. It is the navigator widget that actually creates the new tiddler. That indirection is needed because the process of adding the new tiddler needs to know things like the current story and history

Re: [tw] Help an eternal newbie with node.js for TW5

2014-01-22 Thread Jeremy Ruston
On Tue, Jan 21, 2014 at 11:56 PM, David Gifford dgiff...@crcna.org wrote: oops, I didn't tease out my very first question enough. How do I create a new directory in Skydrive? Is it mkdir filepath directoryname? Are you on Windows? You'd need: mkdir c:\myfolder\mywiki Alternatively, you

Re: [tw] Re: [TW5] Inline Editing of fields

2014-01-22 Thread Danielo Rodríguez
Hello Jeremy, thank you for the explanation. I understand the mechanism, but it still unintuitive, even reading the documentation. What kind of messages does the navigator accepts? Is that the only one or there are others like close tiddler and so? -- You received this message because you

[tw] [TW5] How to iterate over the items in a tiddler's field?

2014-01-22 Thread TheDiveO
As a more or less still complete newbie to TW programming, and TW5 programming in particular, I'm lost on a seemingly simple task: I want to iterate over the items (which are RFC numbers) that are stored in a field of a tiddler. So far, I've set up a tiddler named

Re: [tw] Re: [TW5] Inline Editing of fields

2014-01-22 Thread Stephan Hradek
Am Mittwoch, 22. Januar 2014 12:39:45 UTC+1 schrieb Danielo Rodríguez: Hello Jeremy, thank you for the explanation. I understand the mechanism, but it still unintuitive, even reading the documentation. What kind of messages does the navigator accepts? Is that the only one or there are

[tw] Re: [TW5] How to iterate over the items in a tiddler's field?

2014-01-22 Thread Stephan Hradek
At the moment you can only iterate over the content of the list field. So if you created your own field, you're (at the moment) lost. Copy over the content of your field to the field called list (which you might need to create). -- You received this message because you are subscribed to the

[tw] Re: [TW5] How to iterate over the items in a tiddler's field?

2014-01-22 Thread TheDiveO
Doesn't sound good ... as I have also some other fields that are effectively lists: the list of updating RFCs and also the list of RFC obsoleted by this RFC. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop

[tw] [TWC] retreive and write lines with a specific text

2014-01-22 Thread julien23
Hi All I use TW for project managements. In tiddlers I usually have have a Todo section like this. !!Todo JGBo JBo LCo : mécanique JBo : spec accel JBo JBi : Lancer JBo JGBo : quartz LCo JBo JBi and JGBo are people aliases In ex. JBi's tiddler I have a FET that shows all JBi's actions

[tw] [TW5] Transcluding oneself with a template to show certain fields problem

2014-01-22 Thread TheDiveO
Somehow I still don't really understand TW5's concepts; but the problem here is on my side. I don't see what I'm doing wrong here and would like to get your help on this small problem: I have a template tiddler RFCHeader with the following text: | !RFC|$view field=rfcnumber//undefined///$view|

[tw] Re: [TW5] Transcluding oneself with a template to show certain fields problem

2014-01-22 Thread TheDiveO
Well, one mistake found, hit next wall ... of course, it should have been: {{{[is[current]]||RFCHeader}}} This now transcludes the markup verbatim instead of rendering it. Somehow I'm still not getting it... -- You received this message because you are subscribed to the Google Groups

[tw] Re: [TW5] Transcluding oneself with a template to show certain fields problem

2014-01-22 Thread Stephan Hradek
Am Mittwoch, 22. Januar 2014 15:01:33 UTC+1 schrieb TheDiveO: Well, one mistake found, hit next wall ... of course, it should have been: {{{[is[current]]||RFCHeader}}} This now transcludes the markup verbatim instead of rendering it. Somehow I'm still not getting it... Instead of that

Re: [tw] Re: [TW5] Transcluding oneself with a template to show certain fields problem

2014-01-22 Thread Jeremy Ruston
If you want to transclude a tiddler without changing the current tiddler variable, you can just do this: $transclude tiddler=RFCHeader/ That should cause RFCHeader to be transcluded without affecting the current tiddler, so the view widgets you've got referencing the current tiddler should still

[tw] Re: How to better structure the content in TW5?

2014-01-22 Thread Marcel Kaczala
Thank you for yours help, I understood the topic of tags and list field but I was looking for an easy and simple method for structure the content. Something simple like in Dokuwiki as it takes the headings and build the TOC. Em quarta-feira, 22 de janeiro de 2014 08h07min25s UTC-2, PMario

[tw] Re: My Tiddlywiki Backup Scheme

2014-01-22 Thread Marcel Kaczala
I using TW5 on node.js in my VPS and Dropbox for the Tiddlers folder. That simple. Em quarta-feira, 22 de janeiro de 2014 07h58min44s UTC-2, Mal escreveu: Folks, I am interested in comments or suggestions on my backup scheme. I've created a tiddlywiki as a note-keeping system for a medical

[tw] Re: My Tiddlywiki Backup Scheme

2014-01-22 Thread PMario
Hi Mal, Reading your post, your number one priority is, to protect the content. And as a side effect you'd like to recreate older versions. I think your usecase asks for a TW5 dev server and an optional VCS system. It seems you are ok to create some (probably tricky) bash scripts and you are

Re: [tw] Re: [TW5] Transcluding oneself with a template to show certain fields problem

2014-01-22 Thread TheDiveO
At first, it looked as if it doesn't exactly work as expected, as all I got from $transclude tiddler=RFCHeader/ was the table markdown generated by the template tiddler: | !RFC|4861| | !Title|Neighbor Discovery for IP version 6 (IPv6)| While I was writing my reply I then noticed something

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Måns
Hi Jeremy TiddlyWiki5 tends to use configuration by tag, rather than configuration by title, as in TiddlyWiki Classic. The purpose of the change is to make it easier to blend and mix customisations. If we have fixed templates then it becomes impossible for another plugin to modify them except

[tw] Re: TiddlyWiki Hangout #31 now on Wednesday 22nd January at 4pm GMT

2014-01-22 Thread Jeremy Ruston
The hangout is about to start over at: https://plus.google.com/hangouts/_/hoaevent/AP36tYcU3kDskTaZ16OVZ__bYCxvvmKTmLdgFFwJ7_Pz2F2NVZ87Gg Best wishes Jeremy On Mon, Jan 20, 2014 at 8:54 AM, Jeremy Ruston jeremy.rus...@gmail.comwrote: Apologies, I've had to move this weeks hangout to

[tw] Re: [TW5] Transcluding oneself with a template to show certain fields problem

2014-01-22 Thread Julie
An issue with linebreaks, especially after tables, I guess. See https://groups.google.com/forum/#!topic/tiddlywiki/uuqj5MJWo3E for a similar issue. It seems that when the wikitext is translated into HTML, some p elements are included that may interfere with what you expect. -- You received

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Måns
Hi Jeremy Let's say you have a tiddler called Lesson1 with the list field set to: [[First Bit]] SecondBit FinalBit Is it possible to use the list macro/widget-thingy to generate the list field value and sort by a second custom field value? like this: list: $list

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Stephan Hradek
Am Mittwoch, 22. Januar 2014 17:19:07 UTC+1 schrieb Måns: Is it possible to use the list macro/widget-thingy to generate the list field value and sort by a second custom field value? Should be possible. Give me an example Wiki and I'll try to create the proper code for you… -- You

Re: [tw] My vanilla install on node.js does not have very worthwhile pages, like Docs !

2014-01-22 Thread Chris Miller
Hi Jeremy, Smokin'! That answers the question 100%. Give yourself a raise. (-: I have found a trivial bug. This should probably be a log and ignore response. Please tell me the expected way to report bugs. In the meantime, I will record it here: If you specify a plugin that does not

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Måns
Hi Stephan I made two minimal test cases: 1) http://xn--mns-ula.dk/mtc2/ works with a hardcoded list of tiddlers as a value in the Navigation tiddler's list field. 2) http://xn--mns-ula.dk/mtc/ doesn't work with a list filter expression as a value in the Navigation tiddler's list field.

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Måns
Btw - The notification popup for saving the wiki throws errors - even if it does save back to the server... Den onsdag den 22. januar 2014 18.44.30 UTC+1 skrev Måns: Hi Stephan I made two minimal test cases: 1) http://xn--mns-ula.dk/mtc2/ works with a hardcoded list of tiddlers as a

Re: [tw]

2014-01-22 Thread Måns
Hi Jeremy It (sort of) works https://groups.google.com/d/msg/tiddlywiki/GlWwfKh0ntI/CaKq-9xKN8oJ - even if it throws errors. Try it out with password: tester Cheers Måns Mårtensson The easiest way to get your own private instance of TiddlyWiki5 running on your own server is to use the

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Stephan Hradek
I've created a Lesson2 and a tiddler ToC containing: $list filter=[tags[]prefix[Lesson]] ! $view field=title/ {{{ [tag{!!title}sort[number]] }}} /$list Does this help? -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Danielo Rodríguez
If you want the next button to not be displayed when no next tiddler just don't use a fixed string for next and previous. Use the widget link instead, and link to the variable that points to. $list $link to={{!!title}} Next /$link /$list I think that can work. -- You received this

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Stephan Hradek
If you want to create the list with a filter and select the previous and next from it, you need a modified next/previous filter function https://github.com/Jermolene/TiddlyWiki5/pull/357 -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To

[tw] Re: Tiddlyspot down?

2014-01-22 Thread Leo Staley
This is actually why I'm hoping for a different tiddlywiki hosting solution eventually. I'd much rather host somewhere that I have used before and trust, somewhere that millions of people use, like Google, HostGator, or Go Daddy. I'm glad TW5 is working toward that possibility. On Wednesday,

[tw] Re: TiddlyWiki Hangout #31 now on Wednesday 22nd January at 4pm GMT

2014-01-22 Thread Leo Staley
Oh no! I missed it again! Ok, I'll try next week. I wonder if Eric Shulman will be hosting his tiddlywiki hangout this week. On Monday, January 20, 2014 1:54:07 AM UTC-7, Jeremy Ruston wrote: Apologies, I've had to move this weeks hangout to Wednesday 22nd January at 4pm.

[tw] Use Cases

2014-01-22 Thread Chris Miller
Hi Folks, I'd like advice for various use cases. Problem Tracker: I'd like to be able to answer: - What is the chronology of this problem/project -- occurrence and resolution? - Who were the players, meaning contact details? I'd also like to be able to answer the question: -

Re: [tw] Re: [TW5] Inline Editing of fields

2014-01-22 Thread Danielo Rodríguez
Thank you, that throws some light to my doubts. -- 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] CodeMirror plugin

2014-01-22 Thread Chris Miller
Hi Folks, I am presumably using the CodeMirror plugin. I believe this is so because $:/ControlPanel plugins tab shows me: $:/plugins/tiddlywiki/codemirror Codemirror plugin 5.0.6-beta However, I don't see VIM keybindings, meaning it doesn't work. I'm getting standard primitive notepad

[tw] CodeMirror plugin

2014-01-22 Thread Danielo Rodríguez
I have the same problem. After installing the plugin the only thing that I noticed are the line numbers. Is that everything or should I expect something more? -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and

[tw] Re: Tiddlyspot down?

2014-01-22 Thread Danielo Rodríguez
The next release will be dropbox compatible. I think that is reliable enough ;) -- 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] backticks for inline code - very bad usability on German keyboard layouts

2014-01-22 Thread wis775
Thanks for all the replies. For my Fedora environment, the most convenience way to get 3 backticks are *6 times the backtick key* (without SHIFT). This sequence will give me 3 backticks. But I agree with Jeremy, that the general solution would be, that TiddlyWiki would provide some keyboard

[tw] [TW5] How to IF… THEN… ?

2014-01-22 Thread Albertononi
What is the best way to have something like: *if [some boolean condition] then… * ? I am trying to create a custom ViewTemplate that shows some information *only when it exists*. For instance, to show a list of publications of an author only if there is any: *If

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Måns
Thanks Stephan Sorry I don't have a clue how to use the modified next/previous filter function I've put the simplest list filter tag expression (I could imagine) into the text value field for the custom field: list in the tiddler Lesson1. list: $list filter=[is[current]tag[Lesson1]

[tw] Re: My Tiddlywiki Backup Scheme

2014-01-22 Thread Mal
I accidentally replied directly to Marcel rather than posting, so I am re-submitting my reply below. Marcel also suggested Seafile http://seafile.com/en/home/as a dropbox alternative, so I will check it out. Marcel, I agree, this is a straight-forward approach. However, I am still

[tw] Edit the label that appears when I mouse over a link

2014-01-22 Thread dickon
In TW classic (well in TS actually) how do I edit the label that appears as I mouse over the link (ie it tells you the title it is pointing at, who edited it last, and when)? I used to know how to do this, but I have forgotten and just can't figure it out! Thanks anyone out there! dickon --

[tw] Re: TiddlyWiki Hangout #30 on Tuesday 14th January at 4pm GMT

2014-01-22 Thread PMario
A bit late, but here it is :) video: http://www.youtube.com/watch?v=I7vzfWieF_4 annotations: http://pmario.tiddlyspace.com/#2014-01-11-TW-hangout-30 have fun! mario -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group

[tw] Re: [TW5] backticks for inline code - very bad usability on German keyboard layouts

2014-01-22 Thread PMario
On Wednesday, January 22, 2014 11:20:13 PM UTC+1, wis775 wrote: For my Fedora environment, the most convenience way to get 3 backticks are *6 times the backtick key* (without SHIFT). This sequence will give me 3 backticks. I did have the same/similar problem with ubuntu's default

[tw] Re: My Tiddlywiki Backup Scheme

2014-01-22 Thread Mal
Mario, Thanks for the detailed response. See my comments included below. Regards, Mal On Thursday, 23 January 2014 00:58:19 UTC+10, PMario wrote: Hi Mal, Reading your post, your number one priority is, to protect the content. And as a side effect you'd like to recreate older versions.

[tw] Re: My Tiddlywiki Backup Scheme

2014-01-22 Thread Leo Staley
giewiki (Poul's version which runs a modified tiddlywiki on Google apps ) automatically keeps a version history of every tiddler. I imagine a plugin for something like that could be created for TW5, stored locally. I myself use SugarSync, which just automatically syncs with whatever is in any

[tw] Re: [TW5] backticks for inline code - very bad usability on German keyboard layouts

2014-01-22 Thread Leo Staley
If I may: AutoHotkey http://www.autohotkey.com/or AutoIt 3http://www.autoitscript.com/site/autoit/are probably the two best windows apps for making macros for this sort of thing. for something as quick and easy as this, either of them should work On Wednesday, January 22, 2014 3:20:13 PM

[tw] [TW5] How to IF… THEN… ?

2014-01-22 Thread Lorenzo
Hi, at the moment I think that the only solution is the one you can find here: https://groups.google.com/forum/m/#!topic/tiddlywiki/3zaTj1GVh_k Bye, Lorenzo -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Stephan Hradek
Done $list filter=[is[current]tag[Lesson1]] Next: $list filter=[tag[Lesson1]sort[number]next[]]/ / Previous: $list filter=[tag[Lesson1]sort[number]previous[]]/ /$list $list filter=[is[current]tag[Lesson2]] Next: $list filter=[tag[Lesson2]sort[number]next[]]/ / Previous: $list

Re: [tw] Re: Defining navigation paths in TiddlyWiki5

2014-01-22 Thread Stephan Hradek
SOLVED \define prevnext(lesson) Previous: $list filter=[tag[$lesson$]sort[number]previous[]]/ / Next: $list filter=[tag[$lesson$]sort[number]next[]]/ \end $list filter=[is[current]tags[]prefix[Lesson]] variable=lessonhr$macrocall $name=prevnext lesson=lesson//$list -- You received this