Re: [tw] [TW5] Questions for Server Edition

2014-03-21 Thread Stephan Hradek
Small correction. cd /path/to/my tiddlywiki TiddlyWiki --init server tiddlywiki --verbose TiddlyWiki --server 8080 '$:/core/save/all' text/plain text/html user password 0.0.0.0 -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe

Re: [tw] [TW5] Questions for Server Edition

2014-03-21 Thread Stephan Hradek
is it correct that I get in the serverfolder (in my case TiddlyWiki) just one file tiddlywiki.info containing: plugins: [ tiddlywiki/tiddlyweb, tiddlywiki/filesystem, tiddlywiki/codemirror, tiddlywiki/highlight ], themes: [ tiddlywiki/vanilla,

Re: [tw] [TW5] Questions for Server Edition

2014-03-21 Thread Stephan Hradek
starting like this gives the expected result: node /path/to/lib/node_modules/tiddlywiki/tiddlywiki.js /path/to/my/ TiddlyWiki --verbose --server 8080 $:/core/save/all text/plain text/html user password 0.0.0.0 So what went wrong? -- You received this message because you are subscribed to the

Re: [tw] [TW5] Questions for Server Edition

2014-03-21 Thread Stephan Hradek
Am Freitag, 21. März 2014 11:52:54 UTC+1 schrieb Jeremy Ruston: It looks like you had the wiki folder and the --verbose command transposed. You're right! Just tried it and it works. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To

[tw] Re: [TW5] Questions for Server Edition

2014-03-21 Thread Stephan Hradek
Next question: Is it possible to automatically generate a static version of each saved tiddler directly after the save? -- 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

[tw] Re: [TW5] Questions for Server Edition

2014-03-21 Thread Stephan Hradek
Or is it possible to add something like this: this.server.addRoute({ method: GET, path: /^\/static\/(.+).html$/, handler: function(request,response,state) { var title = decodeURIComponent(state.params[0]), tiddler =

[tw] Re: [TW5] Questions for Server Edition

2014-03-21 Thread Stephan Hradek
Changing state.server.get(renderType) to text/html Seems to do something useful for me. I get HTML! Hooray! -- 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

Re: [tw] Re: [TW5] Questions for Server Edition

2014-03-21 Thread Stephan Hradek
Great! I'll try that, but additionally the requirement now is, to store static html in the filesystem. So I need to find a way to store what's generated in a file on the server. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from

Re: [tw] Re: [TW5] Questions for Server Edition

2014-03-21 Thread Stephan Hradek
I tried it but I get empty HTML. -- 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 field pres-set value

2014-03-21 Thread Stephan Hradek
Check the Listselect Widget on http://tiddlystuff.tiddlyspot.com -- 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

[tw] Re: TW5 Palette

2014-03-20 Thread Stephan Hradek
What is a custom button? Maybe you could show us what you have so that we can play around with it? -- 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 Palette

2014-03-20 Thread Stephan Hradek
You should add a custom class to your custom buttons. Compare the classes of a standard button with yours: tw-image-save-button tw-image-button vs. tw-image-button For the save button there is a stylesheet defined: .tw-page-controls svg.tw-image-save-button { fill: colour toolbar-save-button;

[tw] Re: AliasPlugin TW5

2014-03-19 Thread Stephan Hradek
Where did you find the AliasPlugin? Did you try to install a TWC plugin on TW5? -- 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

Re: [tw] Re: TW5 - fixing an internal Javascript error

2014-03-18 Thread Stephan Hradek
So my reply did not help? -- 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] image resize and wrap text around

2014-03-18 Thread Stephan Hradek
Can you put your example online somewhere? Tiddlyspot maybe? -- 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

[tw] Re: [TW5] Copy Picture out of TW

2014-03-18 Thread Stephan Hradek
The problem is that the pictures dropped into TW are incoded as data URIs which I fear word et.al. can't interpret. What you can do is stick to your TWc style of working, putting the image files into local folders. This also works for TW5. You just need an additional template if you do not

[tw] Re: [TW5] Copy Picture out of TW

2014-03-18 Thread Stephan Hradek
Looked it up already Here is an example template if you want your pictures to reside in a local folder images residing in the same folder as your local wiki: \define image(src) img src=images/$src$/ \end $macrocall $name=image src={{!!title}}/ Used like this: {{NameOfTheImage.png||img}} --

[tw] Re: [TW5] image resize and wrap text around

2014-03-18 Thread Stephan Hradek
Ah! That's not a TiddlyWiki but a CSS issue and it's normal and expected with floating elemenst. Search around in this group we already had this before. In general you need to have something with a clear:both in its style. If I remember correctly I even posted an example which solves this

[tw] Re: [TW5] Copy Picture out of TW

2014-03-18 Thread Stephan Hradek
AHHH! Sorry! The code that I posted needs to be put into a tiddler called img (or anything you like) That's it. When you want to use an image, out {{nameOfImage.png||img}} where it should appear. replace img with the name of the tiddler you used when it was not img. Does that help? -- You

[tw] Re: [TW5] Copy Picture out of TW

2014-03-18 Thread Stephan Hradek
AHHH! Sorry! The code that I posted needs to be put into a tiddler called img (or anything you like) That's it. When you want to use an image, put {{nameOfImage.png||img}} where it should appear. replace img with the name of the tiddler you used when it was not img. Does that help? -- You

Re: [tw] Re: What is your TW5 plugin wishlist?

2014-03-18 Thread Stephan Hradek
Am Dienstag, 18. März 2014 13:53:13 UTC+1 schrieb David Gifford: Hey cmari, I was able to play briefly this morning with your example. It was very clearly written, very helpful. The only thing wrong is that because the SourceTemplateSkeleton is tagged tags/viewtoolbar, H... No, He

[tw] Re: [TW5] image resize and wrap text around

2014-03-18 Thread Stephan Hradek
No, this is not an TW issue. It's normal HTML/CSS. -- 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] image resize and wrap text around

2014-03-18 Thread Stephan Hradek
Am Dienstag, 18. März 2014 16:09:30 UTC+1 schrieb vpl: We are not on the same page. You tell me it's not a TiddlyWiki issue even when the image exceed the size of a Tiddler and overlap an other tiddler ...? Yes. I do and will continue to do so. I don't follow you then. Why? The

[tw] Re: [TW5] image resize and wrap text around

2014-03-18 Thread Stephan Hradek
I suggest you read something about CSS. -- 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

[tw] Re: [TW5] image resize and wrap text around

2014-03-18 Thread Stephan Hradek
Am Dienstag, 18. März 2014 18:35:33 UTC+1 schrieb vpl: Posting back to a CSS training is certainly a way of answering but not the most efficient for users willing to discover, with a limited amount of time, your really nice application But this group is for answering TiddlyWiki

[tw] Re: [TW5] image resize and wrap text around

2014-03-18 Thread Stephan Hradek
https://groups.google.com/d/msg/tiddlywikidev/a23v2KQufTk/roqLKZnpTCoJ -- 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: [TW5] group by field

2014-03-17 Thread Stephan Hradek
I posted something for Mr. Daemon here but it vanished? How could that happen? -- 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] group by field

2014-03-17 Thread Stephan Hradek
Am Montag, 17. März 2014 05:23:14 UTC+1 schrieb Stephan Hradek: 1. Create for each importance a tiddler with the importance's name and the importance's value as a field 2. Make the first list over these tiddler, sorted by importance value field 3. Make the inner list find

[tw] Re: [TW5] group by field

2014-03-17 Thread Stephan Hradek
Hi Mr. Daemon ;) Am Montag, 3. März 2014 19:21:05 UTC+1 schrieb aSpex Daemon: Here is the link: https://dl.dropboxusercontent.com/s/j0yzo2ap0ne90hz/tw5a10.tagmenu.html. May I propose something for your person book? 1. Tag all your tiddlers for a person with (e.g.) person 2. Remove

[tw] Re: [TW5] group by field

2014-03-17 Thread Stephan Hradek
Why don't you check my reply then. I'm pretty sure you can understand that and apply it to your real example. -- 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

Re: [tw] Re: TW5 - fixing an internal Javascript error

2014-03-17 Thread Stephan Hradek
The problem is that you open a list in the !! and do not close it there. Put all on one line and it'll work. But the output won't look like you think it should look like. But as I really do not know what you WANT to achieve, I can only guess. Maybe this will be better? $list

[tw] Re: [TW5] group by field

2014-03-16 Thread Stephan Hradek
1. Create for each importance a tiddler with the importance's name and the importance's value as a field 2. Make the first list over these tiddler, sorted by importance value field 3. Make the inner list find those tiddlers havig the importance's name in their field

[tw] Re: Upgraded TW files totally ignoring any markup.

2014-03-15 Thread Stephan Hradek
Am Samstag, 15. März 2014 12:03:25 UTC+1 schrieb PMario: I think this text needs to get an orange or red background and the text should be doubled in size and may be bold. ... So it should be impossible to miss it. And Blinking! And Marquee Effect! And maybe a background noise like:

[tw] Re: [TW5] listselect, helpenvironment and updated newtiddler

2014-03-14 Thread Stephan Hradek
I can't reproduce with my FF16. Which browser are you using? Which OS? Can you reproduce by dragging one of the plugins from tiddlywiki.com? Maybe it's worth an issue ticket. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from

Re: [tw] Re: What is your TW5 plugin wishlist?

2014-03-14 Thread Stephan Hradek
One addition: As you want to use titles as tags, and titles may contain spaces, the button needs to be a bit more complicated. \define get_title(l) $l$$(title)$]] \end $set name=title value={{!!title}}$set name=tags value=get_title [[$newtiddler skeleton=SourceTemplate title=your title

[tw] Re: TW5 - fixing an internal Javascript error

2014-03-14 Thread Stephan Hradek
Am Freitag, 14. März 2014 22:56:02 UTC+1 schrieb Joshua: Using TW5, I received an internal javascript error today. Is editing the html file in a text editor still the only way to fix these or is there a better way? Thanks. Driving home from work my car's engine suddenly stopped. Is

[tw] Re: TW5 - fixing an internal Javascript error

2014-03-14 Thread Stephan Hradek
Am Freitag, 14. März 2014 23:18:06 UTC+1 schrieb Joshua: Sorry Stephan but I don't know what your message means. Neither did I know what you meant. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop

[tw] Re: [TW5] listselect, helpenvironment and updated newtiddler

2014-03-13 Thread Stephan Hradek
Am Donnerstag, 13. März 2014 14:30:39 UTC+1 schrieb Matabele: Hi Stephen Is your $let widget still working with v.5.0.8-b? - the table at the bottom of your example no longer displays correctly It should. But I do not use it for the newtiddler widget example as I did not want to give

[tw] Re: [TW5] Add dynamic tags based on list filter results

2014-03-13 Thread Stephan Hradek
Am Donnerstag, 13. März 2014 15:43:33 UTC+1 schrieb TheDiveO: $list filter=[!is[system]tag[timebox]*projectthread* {!!projectthread}sort[title]] projectthread doesn't look like a valid operator to me. It's the shortcur of field:projectthread -- You received this message because you

[tw] Re: [TW5] input form: how to set up a combobox with a fixed set of options?

2014-03-13 Thread Stephan Hradek
I'm not sure what exactly you need. My listselect widget http://tiddlystuff.tiddlyspot.com will allow you to set one field to one option of a dropdown. If that's not enough, I *think* it should be relatively easy (for me) to change the listselect to also allow setting of tags. But I haven't

[tw] Re: [TW5] Add dynamic tags based on list filter results

2014-03-13 Thread Stephan Hradek
The question is: Where would you expect the tag to appear. I tried it on tiddlywiki.com and the tag appear at the tiddler where you found the projectthread field. So if I have a overview tiddler with your list and a New Tiddler with a projectthread field sharing the value with the overview

[tw] Re: [TW5] Add dynamic tags based on list filter results

2014-03-13 Thread Stephan Hradek
If you want the tag to be set on the overview tiddler, use this: \define newCheckbox(n_title) $checkbox tiddler=$(thistiddler)$ tag=$n_title$ $n_title$ /$checkbox \end $set name=thistiddler value={{!!title}} $list filter=[!is[system]tag[timebox]projectthread{!!projectthread}sort[title]]

[tw] Re: [TW5] listselect, helpenvironment and updated newtiddler

2014-03-13 Thread Stephan Hradek
Sorry, I seem to not understand. Can you give my some link where I can see the problem? Or maybe screenshots? -- 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] listselect, helpenvironment and updated newtiddler

2014-03-13 Thread Stephan Hradek
Found it! It is the You need 2 linebraks format change of 5.0.8. -- 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

[tw] Re: What is your TW5 plugin wishlist?

2014-03-13 Thread Stephan Hradek
Am Donnerstag, 13. März 2014 13:05:33 UTC+1 schrieb David Gifford: Hi everyone, On GitHub I have mentioned features and fixes I would like to see for the core of TW5. And there are three or four things on the Roadmap tiddler at tiddlywiki.com that I really, really want. But beyond that,

[tw] Re: (TW5) Launching Excel files in Wiki5

2014-03-13 Thread Stephan Hradek
1. You should stop using \ as URLs require / as a separator. 2. You browser needs to know what to start when an xls or xlsx file is downloaded So usually when this save dialog appears you should also be able to start some application. -- You received this message because you are subscribed to

Re: [tw] Re: [TW5] Add dynamic tags based on list filter results

2014-03-13 Thread Stephan Hradek
Because the checkbox widget sets the tag on the currentTiddler which happens to be the one you got the !!title from. $set name=thistiddler value={{!!title}} !-- here the currentTiddler still is your overview tiddler -- $list filter=[!is[system]tag[timebox]projectthread{!!

[tw] Re: What is your TW5 plugin wishlist?

2014-03-13 Thread Stephan Hradek
Am Donnerstag, 13. März 2014 17:56:53 UTC+1 schrieb Stephan Hradek: 2. A search plugin that lets you decide whether to search by title, tag, text, or a combination of them. Use cases: many. Most of the time I know what tiddler I am looking for, but searching a TW5 with a lot of tiddlers

Re: [tw] Re: What is your TW5 plugin wishlist?

2014-03-13 Thread Stephan Hradek
Am Donnerstag, 13. März 2014 20:57:38 UTC+1 schrieb David Gifford: Also, is there a way to exclude system and shadow tiddlers? Sure. The usual way: !is[shadow]!is[system] -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from

Re: [tw] Re: What is your TW5 plugin wishlist?

2014-03-13 Thread Stephan Hradek
Am Donnerstag, 13. März 2014 21:10:19 UTC+1 schrieb David Gifford: Tried newtiddler, too. I put it in a tiddler tagged $:/tags/ViewToolbar, and it grabs the skeleton tiddler and creates a tiddler with the title I used, with the fields and everything, but does not grab the title of the

Re: [tw] Re: What is your TW5 plugin wishlist?

2014-03-13 Thread Stephan Hradek
Am Donnerstag, 13. März 2014 21:48:49 UTC+1 schrieb David Gifford: Not sure where I need to insert that... Why don't you simply try? After there is just exactly one place in the Flexible Search tiddler where there is a filter. Anyhow… I've updated the tiddler to have shadow and system

Re: [tw] Re: What is your TW5 plugin wishlist?

2014-03-13 Thread Stephan Hradek
I checked your 'New Here' button and you made 2 mistakes: 1. Why did you put the set widget inside the button? The instructions clearly show it outside and my example in this thread also had it outside. What could I change in my instructions to make this more clear? 2. Your

[tw] Re: [TW5] How to disable a plugin?

2014-03-12 Thread Stephan Hradek
I guess you're using node.js. Remove the codemirror entry from tiddlywiki.info -- 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: List all tiddler with summary (just like google search result)

2014-03-12 Thread Stephan Hradek
Am Donnerstag, 13. März 2014 02:40:59 UTC+1 schrieb Jimmy Liew: would it be possible to have the summary of the tiddler to be shown under the title of each tiddler, just like the Google search result. Thanks. Define summary. Where would you get it from? If you look at

[tw] Re: [TW5] List fields of a tiddler

2014-03-11 Thread Stephan Hradek
Am Dienstag, 11. März 2014 20:33:21 UTC+1 schrieb Rustem: How can I use an arbitrary field for the list, instead of the special list field? At the moment you can't. You could use my split plugin (not yet finalized) which you can see on http://tiddlystuff.tiddlyspot.com to split any

[tw] Re: how to get the value of variable in a set widget

2014-03-09 Thread Stephan Hradek
Am Sonntag, 9. März 2014 13:58:08 UTC+1 schrieb ruddb: Thanks, your answer was straight on. Let me try that approach. May I know if this is documented and available in the TW5 help? I did not see this |direct| method before. Neither can I remember to have seen it documented. I just saw

[tw] Re: ok last question for today

2014-03-08 Thread Stephan Hradek
I also had that experience with my wikis and can confirm it with yours. I think there must be a bug counting some history changes or stuff like that as changes worth saving. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this

[tw] Re: how to get the value of variable in a set widget

2014-03-08 Thread Stephan Hradek
I couldn't really follow ;) But when it comes to variables, set with $set, there are 2 ways to get their value: \define mymacro() $(myvar)$ \end $set name=myvar value=myval |direct |myvar | |by macro |mymacro | /$set Where, in the macro, you also can use the myvar syntax, but not outside of

[tw] Re: [TW5] Open a tiddler from a sidebar page control button by tag?

2014-03-07 Thread Stephan Hradek
try something like this (UNTESTED!): $list filter=[tag[Home]limit[1]] $button to={{!!title}} class=btn-invisible{{$:/TheDiveO/images/home-button}}/$button /$list -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group

[tw] Re: One at a time sliders

2014-03-07 Thread Stephan Hradek
You should have indicated in your subject wether you're refering to [TW5] or [TWc] -- 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.0.8] TypeError: tags[tag].push is not a function

2014-03-07 Thread Stephan Hradek
{{{ id TWc syntax for code while ``` is the correct one for TW5 {{{ is also TW5 syntax for filtered transclusion which might be the reason why your code calls /* Get a hashmap by tag of arrays of tiddler titles */ exports.getTagMap = function() { var self = this; return

[tw] Re: Syntax question: {{!!FieldName}}

2014-03-06 Thread Stephan Hradek
http://tiddlywiki.com/ Search for TextReferences -- 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] assign value to fields on tw-new-tiddler action or similar action when creating a new tiddler from a template

2014-03-06 Thread Stephan Hradek
Did you see http://tiddlystuff.tiddlyspot.com Search for Newtiddler Widget. -- 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: Getting field values

2014-03-05 Thread Stephan Hradek
Am Mittwoch, 5. März 2014 00:19:24 UTC+1 schrieb Alberto Molina: Hi Stephan, What made you think the search filter supports regular expressions? I don't think, I just try and see if it works :) It won't. Regular expressions and the suffix are quite new and only implemented for the

[tw] Re: [TW5] TOC in a long Tiddler

2014-03-05 Thread Stephan Hradek
There is at the moment no other way than the one you found on my tw5magick site. I also have an experimental filter called match which could be used, but that's nothing I would do yet. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To

[tw] Re: [TW5] TOC in a long Tiddler

2014-03-05 Thread Stephan Hradek
Despite the fact that I do not recommend it, I've tested it on http://tiddlystuff.com Tiddler: Lipsum -- 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) Make mailto and url links

2014-03-05 Thread Stephan Hradek
For the encoding you need a JavaScript macro. Maybe this is enough to get you started: http://tw5magick.tiddlyspot.com/ System tiddler $:/macros/skeeve/bookmarklet.js It creates a link with a javscript href. So the basic stuff is there. You just need to change it a bit. Have fun... -- You

[tw] Re: [TW5] listselect, helpenvironment and updated newtiddler

2014-03-04 Thread Stephan Hradek
At the moment I don't like the idea too much. Where should be the limit? If you have, for example, 2 temp tiddlers used for input, should I have the ability to delete 2? And what about 15? I think we need another approach for stuff like this. -- You received this message because you are

[tw] Re: Getting field values

2014-03-04 Thread Stephan Hradek
Am Dienstag, 4. März 2014 15:18:11 UTC+1 schrieb Adolfo Delorenzo: Hello, I am trying to do something similar but it is not working: $list filter=[tag[meeting]sort[meetingdate]filter:meetingdate/^{{!!year-month}}/] where field *year-month* equals 2014-02 within the tiddler but nothing

[tw] Re: Getting field values

2014-03-04 Thread Stephan Hradek
Am Dienstag, 4. März 2014 16:36:45 UTC+1 schrieb Adolfo Delorenzo: Thank you Stephan! Anything literature/links you can suggest I read to learn how to? ;) No. Example: \define filter_level2() $list filter=[field:meetingdate/^$(what)$/] $link$view field=title//$link/$list \end \define

[tw] Re: TW5 - Get a value of a current TAG and $let

2014-03-04 Thread Stephan Hradek
This won't work. 1. You can't use {{{ at that position 2. tag is a list and let (and set) only work with scalars -- 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 - Get a value of a current TAG and $let

2014-03-04 Thread Stephan Hradek
Am Dienstag, 4. März 2014 16:58:10 UTC+1 schrieb Gustavo Martins: Thanks for the reply! Is there any way to get the value of the current TAG tiddler and create a new tiddler with this TAG? I don't know yet... -- You received this message because you are subscribed to the Google

[tw] Re: TW5 - Get a value of a current TAG and $let

2014-03-04 Thread Stephan Hradek
Update: In theory something like this should work: \define mytags() $set name=open value=[[ $list filter=[is[current]tags[]]open$view field=title/]] /$list /$set \end $let tags=copia *tags1=mytags* as this seems to work: $let tags=copia *tags1=[[tag a]] [[tag b]] [[tag c]]* In practice it

[tw] Re: Getting field values

2014-03-04 Thread Stephan Hradek
Am Dienstag, 4. März 2014 20:56:02 UTC+1 schrieb Alberto Molina: Hi Stephan, I've tried your code but I get an *Internal JavaScript Error.*What I'm trying to do is to improve the search box with something like that: $list filter=[!is[system]search/$(titre)$/sort[title]limit[250]] /

[tw] Re: TW5 - Get a value of a current TAG and $let

2014-03-04 Thread Stephan Hradek
OOPS! I was thinking to complicated, I guess. This works: $set name=tag1 value={{!!tags}} $newtiddler skeleton=$:/plugins/skeeve/newtiddler/SkeletonExample title=testcreate/$newtiddler /$set That's working code from http://tiddlystuff.tiddlyspot.com/ I think you will be able to apply this to

[tw] Re: [TW5] group by field

2014-03-04 Thread Stephan Hradek
\define MyFilter() [tag[$(MyTag)$]subtopic{!!subtopic}sort[title]] \end $set name=MyTag value={{!!title}} $list filter= [is[current]tagging[]has[subtopic]each[subtopic]sort[subtopic]] div class=tw-menu-list-item $view field=subtopic/ /div $list filter=MyFilter div class=tw-menu-list-subitem $link

[tw] Re: [TW5] Adding Images within a Tiddly

2014-03-03 Thread Stephan Hradek
Am Montag, 3. März 2014 05:41:11 UTC+1 schrieb Ham: but I have no idea how to get it to work since dragging the image from my desktop only makes a new Tiddly. It creates a new tiddler. That's the way to include the image in your wiki. I gues you missed

[tw] Re: [TW5] drop-down list behaviour

2014-03-03 Thread Stephan Hradek
Feature - One I don't ike either. -- 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] drop-down list behaviour

2014-03-03 Thread Stephan Hradek
I can't remember when I read this. Maybe it wasn't in the groups but in a mail or skype call with Jeremy. -- 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] Transclusion to include titles

2014-03-03 Thread Stephan Hradek
Am Montag, 3. März 2014 22:22:25 UTC+1 schrieb Jon: Yes, I didn't understand Stephan's answer and so gave up on it. So why didn't you ask? What was unclear? You should help me help you ;) -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To

[tw] [TW5] listselect, helpenvironment and updated newtiddler

2014-03-03 Thread Stephan Hradek
Hi! I just updated http://tiddlystuff.tiddlyspot.com/ to 5.0.8 and added some new stuff. Additionally I started to add stuff in plugin packages. So now you can go to the Settings tab - Plugins and drag te plugins you're interested in. At the moment these are just the three mentioned in the

[tw] Re: [TW5] journal

2014-03-03 Thread Stephan Hradek
I've updated the newtiddler widget. See the announcement here: https://groups.google.com/d/msg/tiddlywiki/5K_tL4qkhCM/hKeZLJQX1KgJ Please note that you can now get the plugins from the Settings tiddler - Plugins tab -- You received this message because you are subscribed to the Google Groups

[tw] Re: [TW5] listselect, helpenvironment and updated newtiddler

2014-03-03 Thread Stephan Hradek
Am Dienstag, 4. März 2014 00:54:26 UTC+1 schrieb Danielo Rodríguez: What about an extra parameter to the newtiddler widget to clear certain tiddler/s? Could you explain more, please? What's the use case? -- You received this message because you are subscribed to the Google Groups

[tw] Re: [TW5] Transclusion of tiddlers filtered by tag

2014-03-02 Thread Stephan Hradek
I'm not sure whether I did understand your request correctly. Transcluding a full Tiddler on http://tw5magick.tiddlyspot.com/ will show you how to transclude a tiddler including its title. If you put that into the content of a $list widget, I think you get what you want. The $list's filter

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Stephan Hradek
Am Sonntag, 2. März 2014 01:44:32 UTC+1 schrieb Jon: Thanks, Stephan. I got that to work although I notice that altering the day eg. $list filter=[field:created/^20140(2|3*01*)/] doesn't appear to make any difference so $list filter=[field:created/^20140(2|201)/] should just

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Stephan Hradek
Am Sonntag, 2. März 2014 08:34:55 UTC+1 schrieb Jon: Also, anticipating the need to span years eg. 1st December 2013 to 1st Februrary 2014, how would you do that? Again, many thanks for your help on this. As already stated in my previous post, I've explained the regular expression I

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Stephan Hradek
Am Sonntag, 2. März 2014 09:51:45 UTC+1 schrieb Jon: You're a hard task master! give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime [Quote:

[tw] Re: [TW5] group by field

2014-03-02 Thread Stephan Hradek
Does this example help? My main tiddlers are tagged sortexample and have a field order. The subtiddlers have a field section, containing its parent's title, and a field order. http://skeeve.tiddlyspot.com/ tiddler: topic and subtopic -- You received this message because you are subscribed

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Stephan Hradek
As I said: try to understand my explanation and ask specific questions about what's unclear. I think others would learn from that too. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop receiving emails from

Re: [tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Stephan Hradek
Many thanks for jumping in Xavier. I was in the cinema with my son the last 3 hours so couldn't answer here. @Jon: You need to know that there is no numerical comparrison in filter expressions. So what I do is a text match. There are some special characters in these matches. Examples .

[tw] Re: [TW5] journal

2014-03-02 Thread Stephan Hradek
Not yet, I fear, But I'll think about it. -- 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

[tw] Re: [TW5] journal

2014-03-02 Thread Stephan Hradek
Am Sonntag, 2. März 2014 18:54:42 UTC+1 schrieb Rob Mold: Is it possible to have the created date of the new journal rather than the skeleton? Question is: Should that be the default or a switchable behaviour? -- You received this message because you are subscribed to the Google Groups

[tw] Re: [5] Questins from very first baby steps with Filters.

2014-03-02 Thread Stephan Hradek
Am Sonntag, 2. März 2014 23:12:33 UTC+1 schrieb Mat: *Filter* [tag[important]sort[title]] Ok, looks fair. Does it make sense to refer to tag as a filter, but sort rather as a modifier or is there another term, cause it's not a filter, is it? You may, if you want. All of them are

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Stephan Hradek
{{{ [field:created/^2013/] }}} {{{ [field:created/^201312/] }}} General: {{{ [field:created/^MM/] }}} -- 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] list tiddlers by month/year creation date

2014-03-01 Thread Stephan Hradek
There is no numerical comparisson. So you need to write a regular expression matching your dates. /^(201312|20140[12])/ would for example give you everything from 2013-12-01 to 2014-02-28 -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Stephan Hradek
Am Samstag, 1. März 2014 20:46:46 UTC+1 schrieb Jon: Sorry, Stephan I can't get this to work. Using, {{{ [field:created/^MM/] }}} how would I return the tiddlers created between 1/2/14 to 1/3/14? {{{ [field:created/^20140(2|301)/] }}} where I assume that you want to include

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Stephan Hradek
Am Samstag, 1. März 2014 22:59:07 UTC+1 schrieb Jon: What else am I doing wrong? Nothing. It's a parsing bug because of the |. Use the explict list widget: $list filter=[field:created/^20140(2|301)/] -- You received this message because you are subscribed to the Google Groups

[tw] Re: [TW5] Display QR code with \define

2014-02-28 Thread Stephan Hradek
Create a tiddler called QR containing: \define QR(text) img src=http://chart.apis.google.com/chart?chs=150x150cht=qrchl=$text$; \end $macrocall $name=QR text={{!!title}}/ Anywhere you need a QR code, use it like this: {{hello world||QR}} The technique is explained on

[tw] Re: [TW5] Display QR code with \define

2014-02-28 Thread Stephan Hradek
+ \n; }; })(); On Friday, February 28, 2014 3:12:23 AM UTC-8, Stephan Hradek wrote: Create a tiddler called QR containing: \define QR(text) img src= http://chart.apis.google.com/chart?chs=150x150cht=qrchl=$text$; \end $macrocall $name=QR text={{!!title}}/ Anywhere you need

Re: [tw] [TW5] Export Story as HTML?

2014-02-27 Thread Stephan Hradek
Well hidden, is it? Now I need to find out how to NOT print certain stuff (like the menu) or maybe how I could provide the list of tiddlers to print. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop

<    3   4   5   6   7   8   9   10   11   12   >