[twdev] Re: Should TiddlyWiki consider moving to GitLab?

2018-06-06 Thread Stephan Hradek
Am Montag, 4. Juni 2018 08:50:56 UTC+2 schrieb Simon Huber: > > Hi, with the rumors or facts about MS buying GitHub I've seen projects > discussing moving over to GitLab > For the records: "13,000 Projects Ditched GitHub for GitLab Monday Morning"

Re: [twdev] How to define a plugin as required for other plugins?

2018-03-02 Thread Stephan Hradek
That's a good idea. Thanks! -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikidev+unsubscr...@googlegroups.com. To post to this group, send email to

[twdev] Re: Plugins and documentation

2018-03-02 Thread Stephan Hradek
Thanks thomas… My question was badly worded: Can I have one and the same icon for all my plugins - without having to include it into each plugin. I guess the answer is "no". -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe

Re: [twdev] How to define a plugin as required for other plugins?

2018-02-27 Thread Stephan Hradek
Am Dienstag, 27. Februar 2018 12:33:58 UTC+1 schrieb Jeremy Ruston: > > The best next step would be for someone to experiment with an > implementation, and then open an issue referencing it. > > Agreed. But I do not feel capable of being that someone. ;) Stephan -- You received this

Re: [twdev] How to define a plugin as required for other plugins?

2018-02-26 Thread Stephan Hradek
Am Montag, 26. Februar 2018 13:51:14 UTC+1 schrieb Jeremy Ruston: > > the approach that is taken is to have a startup module that checks for the > required dependencies, and displays an alert if any are missing. Have a > look at the text-slicer plugin for an example of this. > Hmmm… Okay. I

[twdev] Re: /icon - why is it not displayed?

2018-02-23 Thread Stephan Hradek
Am Freitag, 23. Februar 2018 18:26:46 UTC+1 schrieb Matthew Lauber: > > Shows up for me, once I installed the plugin. > Strange… I think then it was just a caching issue on my side… -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To

[twdev] Re: !each - a good idea?

2018-02-23 Thread Stephan Hradek
No reply? So not a stupid idea? -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikidev+unsubscr...@googlegroups.com. To post to this group, send email

[twdev] /icon - why is it not displayed?

2018-02-23 Thread Stephan Hradek
In my first plugin I have an icon as $:/plugins/action-increment/icon but it's not displayed when viewing installed plugins. What did I do wrong? http://skeeve.github.io/tw5-plugins -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To

[twdev] Re: Plugins and documentation

2018-02-22 Thread Stephan Hradek
Thanks Matt. I'm wondering thogh what the icon, which is described in the tiddler you linked, is for. And can I have one icon for each plugin? Will experiment a bit. -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this

[twdev] Re: How to change SiteTitle when building with node

2018-02-22 Thread Stephan Hradek
Problem solved by swapping the sequence in how the library and the index.html is built. I don't quite understand, but it seems to be working now. https://Skeeve.github.io/tw5-plugins -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To

[twdev] How to change SiteTitle when building with node

2018-02-22 Thread Stephan Hradek
In my tiddlywiki.info I have "build": { "gui": ["--load","gui/", "--rendertiddler","$:/core/save/all","index.html","text/plain"] } and in the gui directory (--load gui/) I have 5 files: $__DefaultTiddlers.tid $__SiteSubtitle.tid $__SiteTitle.tid About_Skeeve_s_Plugins_Library.tid

[twdev] Plugins and documentation

2018-02-21 Thread Stephan Hradek
Thanks to Matthew Lauber I've managed to put my first action widget plugin online https://skeeve.github.io/tw5-plugins More will come. But now how would I put the documentation into the plugin? Is there any standard yet? Just if you're curious. The widget is called like this:

[twdev] !each - a good idea?

2018-02-19 Thread Stephan Hradek
Do you think it's a good idea to define what happens for ! each? Currently "each" will put for each input value exactly just one output value into the list of the results, effectivly deleting duplicates. Currently "!" is not defined for each. So why not use it for finding duplicates? Stupid

Re: [twdev] Re: Bug? each[] and each[title] only work for existing tiddlers

2018-02-15 Thread Stephan Hradek
Am Donnerstag, 15. Februar 2018 15:12:47 UTC+1 schrieb PMario: > > On Thursday, February 15, 2018 at 2:45:31 PM UTC+1, Jeremy Ruston wrote: >> >> Perhaps here we could say that the existing behaviour is equivalent to >> "each:tiddler", and the new behaviour is "each:value" >> > > I would be OK

Re: [twdev] Re: Bug? each[] and each[title] only work for existing tiddlers

2018-02-15 Thread Stephan Hradek
Am Donnerstag, 15. Februar 2018 11:54:12 UTC+1 schrieb PMario: > > I'm not really happy with that name: uniq. IMO uniq has a completely > different meaning > . > > It removes

Re: [twdev] Re: Bug? each[] and each[title] only work for existing tiddlers

2018-02-15 Thread Stephan Hradek
Am Donnerstag, 15. Februar 2018 09:03:39 UTC+1 schrieb Jeremy Ruston: > > Hi Stephan > > I'll respond to the GitHub PRs, but wanted to give a bit of context here. > > The trouble we have now is, as ever, backwards compatibility. We've got > nearly a decade of wikis in the wild that depend on

[twdev] Re: Bug? each[] and each[title] only work for existing tiddlers

2018-02-14 Thread Stephan Hradek
Please check #3117 / PR #3122 as I do not think this proposal is matching how other operators work. Discussion in this thread should stop (or better: not start) but go to https://groups.google.com/forum/#!topic/tiddlywikidev/-GYFcugEoHQ -- You received this message because you are subscribed

[twdev] Re: Bug? each[] and each[title] only work for existing tiddlers

2018-02-14 Thread Stephan Hradek
I just created a pull request (#3116) which will fix the issue. Please use at your own discretion… with my example above the output will be: test New Tiddler -- test

[twdev] Bug? each[] and each[title] only work for existing tiddlers

2018-02-14 Thread Stephan Hradek
Create a "New Tiddler" on tiddlywiki.com Paste this content <$list filter="[[test]] [[New Tiddler]]"> --- <$list filter="[[test]] [[New Tiddler]] +[each[]]"> --- <$list filter="[[test]] [[New Tiddler]] +[each[title]]"> You will get test New Tiddler

Re: [twdev] Re: TiddlyWiki 5 Dev Hangout #105 will be on Friday 9th February 2018 at 3pm GMT

2018-02-13 Thread Stephan Hradek
Am Dienstag, 13. Februar 2018 16:11:17 UTC+1 schrieb Stephan Hradek: > > My Safari won't let me join. No way to activate the plugin :( > And now I get "You're not authorized to start this video call." -- You received this message because you are subscribed to the Google Gro

Re: [twdev] Re: TiddlyWiki 5 Dev Hangout #105 will be on Friday 9th February 2018 at 3pm GMT

2018-02-13 Thread Stephan Hradek
My Safari won't let me join. No way to activate the plugin :( -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikidev+unsubscr...@googlegroups.com. To

[twdev] Re: TiddlyWiki 5 Dev Hangout #105 will be on Friday 9th February 2018 at 3pm GMT

2018-02-13 Thread Stephan Hradek
Am Montag, 12. Februar 2018 11:55:38 UTC+1 schrieb PMario: > > >- Many PR are better off as plugins. > > As far as I can see / understood, plugins (official ones) are part of the core. There seems to be no separate plugins site. If there were, and if it had an "experimental" section,

Re: [twdev] Re: TiddlyWiki 5 Dev Hangout #105 will be on Friday 9th February 2018 at 3pm GMT

2018-02-13 Thread Stephan Hradek
Am Sonntag, 11. Februar 2018 14:42:52 UTC+1 schrieb Jeremy Ruston: > > The rescheduled hangout will be on Tuesday 13th February 2018 at 3pm GMT. > That sounds awesome… Just out of curiosity I clicked this thread just to see a new hangout will start today. I will try to join if you don't mind.

[twdev] Re: [TW5] How would I register a new tiddler type?

2015-04-26 Thread Stephan Hradek
Am Donnerstag, 23. April 2015 13:18:51 UTC+2 schrieb PMario: On Thursday, April 23, 2015 at 1:00:44 PM UTC+2, Stephan Hradek wrote: So I'd go for text/x.perl as described in http://tools.ietf.org/html/rfc6838#section-3.4 or the personal tree: http://tools.ietf.org/html/rfc6838#section

[twdev] [TW5] How would I register a new tiddler type?

2015-04-23 Thread Stephan Hradek
For documentation purposes I've put some Perl code in tiddlers. At the moment I'm using text/plain as the tiddler type, but I'm wondering how I could register a new type text/perl. First it wouldn't be different from text/plain, but maybe it's possible then, to change, for example, the font

[twdev] Re: [TW5] How would I register a new tiddler type?

2015-04-23 Thread Stephan Hradek
So I'd go for text/x.perl as described in http://tools.ietf.org/html/rfc6838#section-3.4 -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

[twdev] Re: [TW5] How would I register a new tiddler type?

2015-04-23 Thread Stephan Hradek
Thanks, Eric, but: Am Donnerstag, 23. April 2015 11:00:03 UTC+2 schrieb Eric Shulman: Here's how you find the right place: First, search by filter for [tag[$:/tags/EditTemplate]] and you will find this tiddler: [[$:/core/ui/EditTemplate/type] Try this on tiddlywiki.com and it

[twdev] Re: Using tags and transclusion to build larger text documents. TW5

2015-03-16 Thread Stephan Hradek
Hi Eric! While your solution isn'twrong, I do not fully get the advantage of using a list field over transcluding the tiddlers directly. Okay... When you want not-listed tiddlers to appear after the listed ones, it's helpful. But it seems to me as if this would seldom be the case. The usual

[twdev] Re: New Google Group Settings

2015-01-28 Thread Stephan Hradek
me too. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikidev+unsubscr...@googlegroups.com. To post to this group, send email to

[twdev] Re: Filter quirk 1

2015-01-08 Thread Stephan Hradek
Am Freitag, 9. Januar 2015 00:26:51 UTC+1 schrieb aelo...@gmail.com: Consider the following filter: [title[HelloThere]title[GettingStarted]] I would have thought this would return nothing. There can't be a tiddler whose title is both HelloThere and GettingStarted at the same time. I

[twdev] Re: How do you diagnose and troubleshoot Macros?

2014-12-28 Thread Stephan Hradek
Am Mittwoch, 24. Dezember 2014 01:19:34 UTC+1 schrieb RichShumaker: I am trying to troubleshoot Macros that have been built and that I will be building. How do you guys troubleshoot them. console.log(...whatever I want to seee...); -- You received this message because you are

[twdev] Re: [TW5] Bug in reveal widget?

2014-11-24 Thread Stephan Hradek
Jeremy merged my pull request. So reveal can soon be used with variables too. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

[twdev] Re: [TW5] Bug in reveal widget?

2014-11-24 Thread Stephan Hradek
Am Montag, 24. November 2014 16:16:50 UTC+1 schrieb Tobias Beer: Jeremy merged my pull request. So reveal can soon be used with variables too. Which pull request was that? #1131... Mentioned somewhere here in the thread. -- You received this message because you are subscribed to the

[twdev] Re: [TW5] Bug in reveal widget?

2014-11-23 Thread Stephan Hradek
Am Sonntag, 23. November 2014 20:49:01 UTC+1 schrieb Tobias Beer: I see the if else exercise did have it's fruits. :) Best wishes, Tobias. So it is. With the default you could easily create your comparison with different values: $reveal type=match text=$foo$ default=myValue do this

Re: [twdev] Re: [TW5] Bug in reveal widget?

2014-11-23 Thread Stephan Hradek
Am Sonntag, 23. November 2014 21:01:48 UTC+1 schrieb Jeremy Ruston: Hi Stephan The reason why these examples don't work is because the state attribute isn't specified. I understand why it does not work and simply putting state=qulify helps. But the state attribute isn't documented as

Re: [twdev] Re: [TW5] Bug in reveal widget?

2014-11-23 Thread Stephan Hradek
Am Sonntag, 23. November 2014 21:12:00 UTC+1 schrieb Jeremy Ruston: Did you also consider the poor man's switch? I think the logic is at the wrong layer. I disagree The reveal widgets that are generated by the macro are redundant, Just this one example is using a macro. You

Re: [twdev] Re: [TW5] Bug in reveal widget?

2014-11-23 Thread Stephan Hradek
You already check for the existance of the state attribute: if(this.stateTitle) { var state = this.wiki.getTextReference(this.stateTitle,this[default],this.getVariable(currentTiddler)); if this is changed to (broken for readability): var state = this.stateTitle ?

Re: [twdev] Re: [TW5] Bug in reveal widget?

2014-11-23 Thread Stephan Hradek
Am Sonntag, 23. November 2014 21:01:48 UTC+1 schrieb Jeremy Ruston: The reason why these examples don't work is because the state attribute isn't specified. Just nitpicking and kidding you a bit: This doesn't work either: $reveal type=match state= default=def text=def matchbr/ /$reveal

Re: [twdev] Re: [TW5] Bug in reveal widget?

2014-11-23 Thread Stephan Hradek
Am Sonntag, 23. November 2014 21:26:04 UTC+1 schrieb Stephan Hradek: You already check for the existance of the state attribute: if(this.stateTitle) { var state = this.wiki.getTextReference(this.stateTitle,this[default],this.getVariable(currentTiddler

Re: [twdev] [TW5]Proposed new behaviour for Cancel and Delete

2014-11-09 Thread Stephan Hradek
Am Sonntag, 9. November 2014 22:51:12 UTC+1 schrieb Jeremy Ruston: You should be able to click new tiddler and then cancel without seeing a confirmation. The confirmation when deleting a new, empty tiddler is still intended? So cancelling a new tiddler will delete it without

Re: [twdev] [TW5]Proposed new behaviour for Cancel and Delete

2014-11-09 Thread Stephan Hradek
I just noticed: Clicking New Tiddler - Cancel will leave the wiki in state unsaved. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

[twdev] Re: [TW5] Edit preview misaligned

2014-11-05 Thread Stephan Hradek
It's not shifted down a line it's just a 1em margin at the top and at the bottom, set by body.tc-body You can get rid of it by adding this CSS: div.tc-tiddler-preview-preview * { margin-top: 0; margin-bottom: 0; } -- You received this message because you are subscribed to the Google

[twdev] Re: [TW5] Edit preview misaligned

2014-11-05 Thread Stephan Hradek
It's not shifted down a line it's just a 1em margin at the top and at the bottom, set by body.tc-body You can get rid of it by adding this CSS: div.tc-tiddler-preview-preview *:first-child { margin-top: 0; } div.tc-tiddler-preview-preview *:last-child { margin-bottom: 0; } -- You

[twdev] [TW5] Proposal to allow creating a field and setting its value in one go

2014-11-05 Thread Stephan Hradek
Hi Jeremy! Seen pull request #1063? I always find it very tedious to first enter a field name, click add (could you add Return here as a shortcut?) and then to click the newly created field to enter the value. Especially when an instruction shows field and value like this: field: value.

Re: [twdev] [TW5] Idea for hard line breaks

2014-11-03 Thread Stephan Hradek
Am Montag, 3. November 2014 14:12:10 UTC+1 schrieb infernoape: I've adopted br as newline but it would be nice if I had a plugin that converts double space+return to br. Is that possible? Here is a parserrule I've hacked for you. It's not a proper plugin though: /*\ title:

[twdev] Re: [TW5] Idea for hard line breaks

2014-11-03 Thread Stephan Hradek
Remove the line var br = br/\n; it doesn't hurt but is unrequired. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [twdev] [TW5] Idea for hard line breaks

2014-11-03 Thread Stephan Hradek
Am Montag, 3. November 2014 23:22:51 UTC+1 schrieb Danielo Rodríguez: This is very nice! Did you get from the official development documentation or straight from github? I took dash.js straight from github and modified it. -- You received this message because you are subscribed to the

[twdev] Re: [TW5] Idea for hard line breaks

2014-10-31 Thread Stephan Hradek
Question: If I want the following to appear: This is a sentence. That I want to end with a dot and a newline. what would (newline follows) I have to enter? To my current understanding, this wouldn't work This is a sentence... That I want to end with a dot and a newline... what would (newline

[twdev] Re: [TW5] Problem with TextReferences and Buttons

2014-10-31 Thread Stephan Hradek
I think it should work when you define a macro for the button and pass your values in the $macrocall. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [twdev] [TW5] Idea for hard line breaks

2014-10-31 Thread Stephan Hradek
Sure it would break every tiddlywiki where the user uses - for whatever reason - 2 commas at the end of a line. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

[twdev] [TW5] Bug in 5.1.4

2014-10-28 Thread Stephan Hradek
https://lh5.googleusercontent.com/-Wy1O1oNiRgg/VE9Gfx_qmTI/APU/lz0h_TSmfI4/s1600/TiddlyWiki%2B%E2%80%94%2Ba%2Bnon-linear%2Bpersonal%2Bweb%2Bnotebook_2014-10-28_08-27-15.png You get the sjown result with this code: !Pre |A |frs://test | !Post |A |frs://test2 | So there seems

Re: [twdev] Re: [TW5] Bug in 5.1.4

2014-10-28 Thread Stephan Hradek
Am Dienstag, 28. Oktober 2014 09:38:48 UTC+1 schrieb Jeremy Ruston: Hi Stephan Just to be clear, the issue here is that frs://test is not recognised as a URI, and so the double slash is interpreted as the start of an italic run. The parser then looks for the closing double slash before

[twdev] Re: [TW5] Bug in 5.1.4

2014-10-28 Thread Stephan Hradek
Am Dienstag, 28. Oktober 2014 08:48:13 UTC+1 schrieb PMario: It searches for the end of italic: frs://test . // italilc start ... frs://test2 italic stop. AH! Good hint! I simply removed the frs:// part as it was not really required. -- You received this message because you

[twdev] Re: [TW5] javascript macro as widget parametter

2014-10-23 Thread Stephan Hradek
Have you considered using variables in between? -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikidev+unsubscr...@googlegroups.com. To post to this

[twdev] Re: [TW5] javascript macro as widget parametter

2014-10-23 Thread Stephan Hradek
Try to set the output of getASjson, executed with $macrocall to a variable. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

[twdev] Re: [TW5] javascript macro as widget parametter

2014-10-23 Thread Stephan Hradek
Am Donnerstag, 23. Oktober 2014 21:17:37 UTC+2 schrieb Danielo Rodríguez: How?? My mistake :( Sorry! forget the idea :( -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send

[twdev] Re: [TW5] javascript macro as widget parametter

2014-10-23 Thread Stephan Hradek
Am Donnerstag, 23. Oktober 2014 21:17:37 UTC+2 schrieb Danielo Rodríguez: How?? I tried with $set name=output value=$macrocall ... Is that correct? I also did some experiments. This seems to get me somewher, but not exactly where we want to be: \define Donald() Donald \end \define

[twdev] Re: [TW5] filter by date field and current time

2014-10-13 Thread Stephan Hradek
Am Sonntag, 12. Oktober 2014 11:47:46 UTC+2 schrieb James Anderson: https://gist.github.com/welford/63cd1b6ab7d4db1ed54b https://www.google.com/url?q=https%3A%2F%2Fgist.github.com%2Fwelford%2F63cd1b6ab7d4db1ed54bsa=Dsntz=1usg=AFQjCNGIU6y3xt4ZL-nsQc9h8pJgS-8ThA I think this is the way to

Re: [twdev] Re: [TW5] filter by date field and current time

2014-10-13 Thread Stephan Hradek
BTW: I still think it's a good idea to have my proposed filters https://github.com/Jermolene/TiddlyWiki5/issues/624 as well. 1. They will work explicitly on date fields 2. They could be created in a way to support different date formats 3. They won't break should the date field ever be be

[twdev] Re: [TW5] filter by date field and current time

2014-10-10 Thread Stephan Hradek
As far as I know there is just a proposal for a new filter: https://github.com/Jermolene/TiddlyWiki5/issues/624 -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

[twdev] Is it a bug or a feature - $list not changing the currentTiddler

2014-09-28 Thread Stephan Hradek
I recently noticed that $list, when used with variable=… is not changing the currentTiddler. I think this should be called a feature, because it allows you to keep the info of the currentTiddler while in a loop. On the other hand, looking at the $:/core/macros/tabs, one can see that it was

[twdev] Re: Is it a bug or a feature - $list not changing the currentTiddler

2014-09-28 Thread Stephan Hradek
Opened #917 https://github.com/Jermolene/TiddlyWiki5/issues/917 for it -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [twdev] Re: Is it a bug or a feature - $list not changing the currentTiddler

2014-09-28 Thread Stephan Hradek
Am Sonntag, 28. September 2014 11:17:11 UTC+2 schrieb Jeremy Ruston: I've replied to the GitHub bug, but in short this is the intended behaviour. Glad to read that. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this

[twdev] Re: TiddlySpot TW version

2014-09-08 Thread Stephan Hradek
I think it should still be possible to host TWc. Simply upload a TWc to your newly created TW5 instance. At least that was the way to get a TW5 when TWc was standard. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this

[twdev] Re: [TW5] Guide to creating a filter plugin?

2014-06-17 Thread Stephan Hradek
Search for the sameday tiddler and learn from that. So you need to set the application type and the module type. Choose an appropriate name. Save and reload. If everything worked okay, you should be able to use your new filter. But with some luck we might have the 4 described filters anyway

[twdev] Re: [TW5] Guide to creating a filter plugin?

2014-06-15 Thread Stephan Hradek
See: https://github.com/Jermolene/TiddlyWiki5/issues/624 -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikidev+unsubscr...@googlegroups.com. To post to

Re: [twdev] Re: [TW5] TiddlerLinksIdea for discussion

2014-06-13 Thread Stephan Hradek
Sounds got - but I need to fully understand it first :D -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikidev+unsubscr...@googlegroups.com. To post to

[twdev] Re: [TW5] TiddlerLinksIdea for discussion

2014-06-11 Thread Stephan Hradek
Am Mittwoch, 11. Juni 2014 13:52:05 UTC+2 schrieb PMario: I think, Jeremy will never, ever change the TW title behaviour It need not be changed. The title still remains the one and only identifying field which *must* be unique. It's just a matter of displaying something better readable.

[twdev] Re: [TW5] TiddlerLinksIdea for discussion

2014-06-11 Thread Stephan Hradek
Am Mittwoch, 11. Juni 2014 13:52:05 UTC+2 schrieb PMario: I'm using your TOC concept to achieve this. see: https://tweb.at The problem is, that using this mechanism isn't convenient at the moment. I think it would be a bit more convenient with my proposal. Take for example your tiddler

Re: [twdev] Re: Best way to import IPTC tags to tiddlywiki?

2014-06-03 Thread Stephan Hradek
Great feedback and description. Did you think about publishing it on (e.g.) TiddlySpot? Or maybe on the new-to-com tiddlywikiguides.org? It might be interesting for many. Maybe you'll also like to join one of the weekly hangouts (#48 happens to take place today at 4p.m. BST). -- You received

[twdev] Re: Best way to import IPTC tags to tiddlywiki?

2014-05-26 Thread Stephan Hradek
Would be a simple perl Some-Liner to create from CSV (or directly using exiftool) the proper tiddlers. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

[twdev] Re: Best way to import IPTC tags to tiddlywiki?

2014-05-26 Thread Stephan Hradek
Am Dienstag, 27. Mai 2014 01:06:42 UTC+2 schrieb david...: Also, one question on the 'created'/'modified' data (2014041421061): what are the last three digits for? Microseconds. Use whatever you want there. Usually I'd put 000. -- You received this message because you are

[twdev] Re: [TW5] How can I start creating my own TW5 edition? (using PMario's vagrant)

2014-05-24 Thread Stephan Hradek
Ah! Thanks for explaining. In the end my stuff might become a contribution and all of the stuff should be for TW5. I don't want to create a seperate fork of TW. I'll check #531. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe

[twdev] [TW5] How can I start creating my own TW5 edition? (using PMario's vagrant)

2014-05-23 Thread Stephan Hradek
Hi! After some time I want to start and cleanly update my tiddlystuff to 5.0.12. For this I just sat up a local git clone of my tiddlywiki fork. Now when I start my vagrant box, I get the full TW5 5.0.12 server edition. What I want to have is a copy of my current tiddlystuff tiddlyspot, so I

[twdev] Re: transcluson question - how to concatenate the name of tiddler to be transcluded from a field plus a static string

2014-05-06 Thread Stephan Hradek
How do you like propsal 4? Create a tiddlert transcludeFromList containing: \define trans(append) $transclude tiddler=$(base)$ $append$/ \end $set name=base value={{!!title}} $list filter=[list[]] $macrocall $name=trans append={{!!title}}/ /$list /$set Then add a field called list to your

[twdev] Re: transcluson question - how to concatenate the name of tiddler to be transcluded from a field plus a static string

2014-05-05 Thread Stephan Hradek
3 Possibilities: 1. Make your TiddlernameX be: \define trans(append) $transclude tiddler=$(base)$ $append$/ \end $set name=base value={{!!title}} trans partA trans partB trans partC /$set 2. (Building on that) Create a tiddler trans: \define trans(append) $transclude tiddler=$(base)$ $append$/

[twdev] Re: Adding a class to tiddlers

2014-04-29 Thread Stephan Hradek
Am Montag, 21. April 2014 13:10:48 UTC+2 schrieb Danielo Rodríguez: That is what the let widget does. I don't understand why the set widget is so limited. Jeremy is a very skilled programmer so I don't understand the limitation of this widget. The let widget lacks one thing, the set

[twdev] Re: A little monad in your plugin

2014-04-28 Thread Stephan Hradek
Am Sonntag, 20. April 2014 15:45:35 UTC+2 schrieb Devin Weaver: I was recently working on a macro for handling the creation of links to our ticket system. Instead of copy pasting the whole URL I can place the ticket number in the TiddlyWiki http://localhost:8080/#TiddlyWiki text and the

[twdev] Re: A little monad in your plugin

2014-04-28 Thread Stephan Hradek
P.S. Or like this {{AnotherTiddler||jira}} - if you want AnotherTiddler's ticket field to be used. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

[twdev] Re: $edit-text subtiddler [TW5]

2014-04-13 Thread Stephan Hradek
You will have to use a macro and some variable replacements. If you assign your title with the $set widget to a variable, a macro can easily concatenat: \define myNewTitle() $(myOldTitle)$_args \end $set name=myOldTitle value={{!!title}} $edit-text tiddler=myNewTitle default= tag=input/ /$set

Re: [twdev] Re: [TW5] Is anyone able to turn jscolor into a plugin?

2014-04-09 Thread Stephan Hradek
Tested with a fresh download and it works as expected. It did not work with the node.js version. I'm going to update that and test again. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails

Re: [twdev] Re: [TW5] Is anyone able to turn jscolor into a plugin?

2014-04-09 Thread Stephan Hradek
Updated to 5.0.9prerelease and No! No EditTextWidget PostRender Called message at all :( -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [twdev] Re: [TW5] Is anyone able to turn jscolor into a plugin?

2014-04-09 Thread Stephan Hradek
So I've managed to get jscolor to display the picker for the color fields now. The disadvantage is: The changes are not reflected in TW as jscolor is (of course) overwriting the focus and input events and I'm not understanding how I could solve that issue properly :( -- You received this

Re: [twdev] Re: [TW5] Is anyone able to turn jscolor into a plugin?

2014-04-09 Thread Stephan Hradek
I tried to call handleInputEvent alas I have no idea how to get it. I tried this: jscolor.color( domNode, { hash : true, onImmediateChange : EditTextWidget.prototype.handleInputEvent } ); But this gives me JavaScript errors. I gues I need to get the handler somehow from my domNode…

Re: [twdev] Re: [TW5] Is anyone able to turn jscolor into a plugin?

2014-04-09 Thread Stephan Hradek
I think I have it: EditTextWidget.prototype.postRender = function() { var domNode = this.domNodes[0]; var self = this; if($tw.browser this.document !== $tw.fakeDocument domNode.getAttribute(type) === color) { jscolor.color( domNode, { hash : true, onImmediateChange :

[twdev] [TW5] Is anyone able to turn jscolor into a plugin?

2014-04-07 Thread Stephan Hradek
Hi! As FireFox does not (seem to) have a colorpicker for (for example the) color fields of tiddlers, I searched a bit and found jscolorhttp://jscolor.comwhich I think is really useful. My problem in converting it is that I have no idea: a) where to patch/modify code so that jscolor.color(

[twdev] Re: [TW5] Is anyone able to turn jscolor into a plugin?

2014-04-07 Thread Stephan Hradek
The nightly FF won't run on my old OS X :( -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikidev+unsubscr...@googlegroups.com. To post to this group,

Re: [twdev] Re: [TW5] Is anyone able to turn jscolor into a plugin?

2014-04-07 Thread Stephan Hradek
Am Montag, 7. April 2014 18:53:22 UTC+2 schrieb Jeremy Ruston: Hi Stephan The edit-text widget has a postRender method that is called immediately after the DOM nodes for the text input have been created. So if you subclass it you can define that method and have it call jscolor to

[twdev] Re: TW5 create a widget that captures message events

2014-04-06 Thread Stephan Hradek
Am Sonntag, 6. April 2014 00:52:14 UTC+2 schrieb Danielo Rodríguez: But if I enclose the button inside a popup reveal widget it launch the event with the tiddlerTitle as the source tiddler. How can I hidde the button but make it think it is in that tiddler? My cristall ball

Re: [twdev] TW5 The inmutable tiddler object

2014-04-05 Thread Stephan Hradek
You could add a comment to the tiddler's text. Would be a Property of the tiddler but not a field. !--MyOwnProperty:my propertie's value-- -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails

[twdev] Re: TW5 creating a widget SyntaxError: Unexpected token {

2014-04-05 Thread Stephan Hradek
You could as well use comments, but otherwise: No: That's the only way if you do not fnd your syntax error just by reading the code. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from

Re: [twdev] [TW5] Transclusion: {{tiddler||template}} - Why || and not |?

2014-04-03 Thread Stephan Hradek
Am Donnerstag, 3. April 2014 19:22:47 UTC+2 schrieb Jeremy Ruston: Hi Stephan Why do we have double pipes for seperating the tiddler title from the template in the transclusion rule? Because I used the single pipe to separate ??? Is there something missing? This sentence does not

Re: [twdev] [TW5] Transclusion: {{tiddler||template}} - Why || and not |?

2014-04-03 Thread Stephan Hradek
Am Donnerstag, 3. April 2014 19:33:14 UTC+2 schrieb Jeremy Ruston: Given that the tiddler you're transcluding is a macro definition and associated macro call, this looks a lot like a use-case for global macros. The rough plan there is to allow macros to be included with an `\include

[twdev] Re: [TW5] Transclusion: {{tiddler||template}} - Why || and not |?

2014-04-02 Thread Stephan Hradek
Ochmario! You know that I know that. But you also know that (up to 5.0.9beta) macros are not global. The main question is: Why is it || and not| in transclusion. In Linking we have just have one |. So I got the idea of putting stuff between those 2 pipes. -- You received this message

[twdev] Re: [TW5] Transclusion: {{tiddler||template}} - Why || and not |?

2014-04-02 Thread Stephan Hradek
Am Mittwoch, 2. April 2014 20:00:56 UTC+2 schrieb PMario: do I? I thought so. Javascript macros are global and the macro syntax is well known by users. I did not want a javascript macro. I want something the user can easily change, so templates are, for me, a nice means to achieve

Re: [twdev] Re: Showing you my most intimate TW

2014-03-30 Thread Stephan Hradek
I was not asked, but… Am Samstag, 29. März 2014 23:46:45 UTC+1 schrieb Mat: Are you saying you don't use another menu than the default sidebar? I just have the default sidebar in all my TWs And surely you have non-standard toolbar commands, no? I just had, for a few days, a non-standard

[twdev] Re: Showing you my most intimate TW

2014-03-29 Thread Stephan Hradek
Just join a tuesday hangout and show it. You wouldn't be the first one. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to

[twdev] [TW5] Server Edition - (ISO) Timestamps please

2014-03-25 Thread Stephan Hradek
Hi Jeremy! As you know, I'm experimenting with the server edition of TW5. I know it's not (yet?) intended for production use, but nevertheless I think, that the log messages that are produced should have a timestamp. Preferably in ISO8601 format or at least similar. var strftime =

Re: [twdev] [TW5] Server Edition - (ISO) Timestamps please

2014-03-25 Thread Stephan Hradek
Right now I can't. Later maybe, but I do not know yet where to put that code. So which functions to patch so that we get timestamps. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from

[twdev] Re: [TW5] patch feature request

2014-03-25 Thread Stephan Hradek
could you simply write a wrapper around them? -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywikidev+unsubscr...@googlegroups.com. To post to this group,

  1   2   3   4   >