[tw] exporting all tiddlers [TW5]

2014-08-27 Thread paolo b
Hi everybody we all know that tiddlywiki superbly combines program and data in one compact, portable html file. However, as more and more features are added to the program, I've been looking at ways to backup my data, in case the html file accidentally gets corrupted. Exporting one static html

[tw] Re: exporting all tiddlers [TW5]

2014-08-27 Thread Danielo Rodríguez
Your best bet here is to use the NODEJS version. Import your old wiki into your node instance (just drag and drop as usual) and you will automatically get all the tiddlers in separate files. I use it in combination with dropbox. El miércoles, 27 de agosto de 2014 11:18:02 UTC+2, paolo b

[tw] How to get rid of a 'corrupt' tiddler

2014-08-27 Thread Ton Gerner
Hi all, After upgrading my main TW5 (with all kinds of experiments from earlier TW versions) to TW5.0.15 I selected a certain tiddler but got a Javascript error (red screen). Despite the red screen, the tiddler showed up in the list of opened tiddlers, but trying to edit it gave again the red

[tw] Re: TiddlyWiki Hangout #58 will be on Tuesday 26th August at 4pm BST

2014-08-27 Thread PMario
annotations: http://pmario.tiddlyspace.com/#2014-08-26-TW-hangout-58 video: https://www.youtube.com/watch?v=UshdLGnXdsI have fun! mario -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop receiving emails from

[tw] Re: [TWC] autosave and function problem

2014-08-27 Thread sklpns
hey mario, thank you very much for your response taking from your input I've ended up - using the uncompressed http://tiddlywiki.abego-software.de/archive/DataTiddlerPlugin/1.0.7/DataTiddlerPlugin-1.0.7-src.js version of the DataTiddlerPlugin - finding the lines

[tw] Re: [TWC] autosave and function problem

2014-08-27 Thread PMario
Hi, sklpns I thought you should change you fet code, not the plugin code. Can you post the fet code, that produces your table? -m -- 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,

[tw] How to get rid of a 'corrupt' tiddler

2014-08-27 Thread Alberto Molina
Hi Ton, I use $edit-text tiddler=mycorrupttiddler/ to delete/modify it's content. Cheers, Alberto -- 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] Howto import SyntaxHighlighter3 into an existing TWC file?

2014-08-27 Thread longbow leo
Hi all, I am working on the TiddlyWiki classic version 2.8.1. I have tried to import the SyntaxHighlighter3 plugin into my existing tiddlywiki files, but I could not success. After searched by Google, I was failed to find any solutions about how to do it. Is is possible to import

[tw] Re: How to get rid of a 'corrupt' tiddler

2014-08-27 Thread Ton Gerner
Hi Alberto, Yes! That is a very elegant way. Thanks a lot. Cheers, Ton On Wednesday, August 27, 2014 5:16:39 PM UTC+2, Alberto Molina wrote: Hi Ton, I use $edit-text tiddler=mycorrupttiddler/ to delete/modify it's content. Cheers, Alberto -- You received this message because

[tw] [TW5] How to combine/transclude codeblock tiddlers?

2014-08-27 Thread Branimir Braykov
I have several tiddlers that only contain single codeblocks. Like, these are two tiddlers: Tiddler1 ``` line 1 line 2 line 3 ``` Tiddler2 ``` text 1 text 2 text 3 ``` I would like to use Transclude widget to combine them as a single block. I tried this: $transclude tiddler=Tiddler

[tw] Re: [TW5] ListWidget values to lower level filters

2014-08-27 Thread kccnospam
That looks like what I want. Thank you. Kevin On Friday, August 22, 2014 6:10:19 PM UTC-4, HowardM wrote: Hi Kevin The following code works if placed in a tiddler with a list field containing the tags. ul$list filter =[list[]] variable=mytaglimytag/liul$list

[tw] Re: TiddlyWiki Hangout #58 will be on Tuesday 26th August at 4pm BST

2014-08-27 Thread Jeremy Ruston
Thanks Mario, much appreciated. Best wishes Jeremy On Wed, Aug 27, 2014 at 1:57 PM, PMario pmari...@gmail.com wrote: annotations: http://pmario.tiddlyspace.com/#2014-08-26-TW-hangout-58 video: https://www.youtube.com/watch?v=UshdLGnXdsI have fun! mario -- Jeremy Ruston

Re: [tw] [TW5] How to combine/transclude codeblock tiddlers?

2014-08-27 Thread Jeremy Ruston
Hi Branimir I would like to use Transclude widget to combine them as a single block. Yes, that makes sense. I tried this: $transclude tiddler=Tiddler 1 mode=block/ $transclude tiddler=Tiddler 2 mode=block/ But I still get two separate codeblocks. TiddlyWiki doesn't merge consecutive

Re: [tw] Re: How to get rid of a 'corrupt' tiddler

2014-08-27 Thread Jeremy Ruston
Hi Ton I'd be interested to see the source of the corrupted tiddler - the red screen of death does imply a core bug. Best wishes Jeremy On Wed, Aug 27, 2014 at 4:48 PM, Ton Gerner ton.ger...@gmail.com wrote: Hi Alberto, Yes! That is a very elegant way. Thanks a lot. Cheers, Ton

[tw] Adding and deleting items from a list (field)

2014-08-27 Thread cpaussa via TiddlyWiki
This post has two mysteries for me 1. I can't pass the results from a macrocall to a javascript macro into the set value in the $button widget The macro call returns true rather than the macro result no matter what I do. 2. The variables that I set using the $set widget don't act in the same

Re: [tw] Adding and deleting items from a list (field)

2014-08-27 Thread Jeremy Ruston
Hi cpaussa On Wed, Aug 27, 2014 at 8:25 PM, cpaussa via TiddlyWiki tiddlywiki@googlegroups.com wrote: This post has two mysteries for me 1. I can't pass the results from a macrocall to a javascript macro into the set value in the $button widget The macro call returns true rather than the

Re: [tw] Re: How to get rid of a 'corrupt' tiddler

2014-08-27 Thread Ton Gerner
Hi Jeremy, Although I did delete the 'corrupt' tiddler, I still have a copy of it; one never knows ;-) As far as I can remember (I am not sure) it was a flexible search example of Stephan Hadrek at http://tiddlystuff.tiddlyspot.com/, see

[tw] Re: [TW5] How to combine/transclude codeblock tiddlers?

2014-08-27 Thread Branimir Braykov
Hi, Jeremy, 10x for your quick answer. I tried the proposed way, but the resulting block includes a lot of ``` as they become part of the text. My actual tiddlers only include something like: ``` text more text ``` I was originaly trying to follow the logic as explained in

[tw] Re: Adding and deleting items from a list (field)

2014-08-27 Thread cpaussa via TiddlyWiki
Yay! That works thanks! -- 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

Re: [tw] Re: [TW5] How to combine/transclude codeblock tiddlers?

2014-08-27 Thread Jeremy Ruston
Hi Branimir Apologies, I missed out a couple of points: you'll need to remove the triple backticks from your code tiddlers. If you still want those tiddlers to display as fixed width text then you can give them the type text/plain. In terms of transclusion, there's basically two ways of doing

[tw] Open on Tiddler on first visit with link

2014-08-27 Thread Sören Müller
Hi, when I visit http://tiddlywiki.com/ I see all default tiddlers. When I visit http://tiddlywiki.com/#Features I see only this one tiddler. How did I manage to get the same behaviour on my TiddlyWiki? Mine always open all default tiddlers... Greets, Sören -- You received this message

[tw] Re: Open on Tiddler on first visit with link

2014-08-27 Thread Richard Smith
Hi Sören, Navigate to just the tiddler you want and the address bar should change to reflect this. For example; yourwiki.html#a%20tiddler:[[a%20tiddler]] From outside the wiki that link should do what you want. Of course you know that you can change the default tiddlers from the control

[tw] Re: Open on Tiddler on first visit with link

2014-08-27 Thread Sören Müller
Hi Richard, thanks for the fast answer! I thought that too... Here is an example: http://wiki.pattyland.de/#Lorem%20ipsum Why is the Hallo Tiddler there too? Greets, Sören -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To

[tw] Re: Open on Tiddler on first visit with link

2014-08-27 Thread Eric Shulman
On Wednesday, August 27, 2014 3:51:10 PM UTC-7, Sören Müller wrote: Hi Richard, thanks for the fast answer! I thought that too... Here is an example: http://wiki.pattyland.de/#Lorem%20ipsum Why is the Hallo Tiddler there too? The handling for PermaLinks is discussed here:

[tw] Re: [TW5] editing a tiddler in the view mode and duplicating a model

2014-08-27 Thread Birthe C
I've been using Stephan Hradeks simple contacts DB. It worked very well, but after upgrading to TW 5.0.15 I am not able to edit the entries at all. After each keypress focus is lost. Birthe Den onsdag den 11. juni 2014 12.51.03 UTC+2 skrev Stephan Hradek: Maybe my simple contacts database