[tw] Re: Create tiddler with multiple tags, included transcluded and selected values

2017-02-17 Thread BJ
like this: \define new(user,newtag) <$action-sendmessage $message="tm-new-tiddler" title="This is newly created tiddler" tags=" [[$user$]] [[$newtag$]]" text=<>/> \end 1 Make sure there is a username: {{$:/status/UserName}} 2 Select tag: <$select tiddler='$:/newtag'> A Tale of Two Cities A New

[tw] Re: Blank display on TW5

2017-02-17 Thread BJ
this tiddlywiki works on my system (ff on ubuntu), the display is blank because the sidebar is closed, clicking on the arrow in the top righthand of the page opens the sidebar... all the best BJ On Friday, February 17, 2017 at 7:46:27 PM UTC+1, kurtbu...@gmail.com wrote: > > I have been using

[tw] Re: [TW5] Applying Styles to list-filter results while avoiding the line wrap problem

2017-02-17 Thread Douglas Counts
Awesome, that works well and is more comprehensible as to why and how it works. Thank you very much for your time and gift of knowledge, -Doug On Friday, February 17, 2017 at 4:31:31 PM UTC-6, Eric Shulman wrote: > > On Friday, February 17, 2017 at 12:37:14 PM UTC-8, Douglas Counts wrote: >> >>

[tw] Create tiddler with multiple tags, included transcluded and selected values

2017-02-17 Thread Steven Schneider
Hi folks, I'm interested in creating new tiddlers with multiple tags, some transcluded and others established by a select widget. Here is my code: 1 Make sure there is a username: {{$:/status/UserName}} 2 Select tag: <$select tiddler='$:/newtag'> A Tale of Two Cities A New Kind of Science The Di

[tw] Re: Javascript Macro Does Not Seem to Work

2017-02-17 Thread Patrick Aquilone
I am open to alternative methods. I had originally tried the window.open(url) but it didn't like the command line parameters that I need to send. So I researched and found this way. On Friday, February 17, 2017 at 5:48:45 PM UTC-6, PMario wrote: > > Hi Patrick, > > This is IE only and if it w

[tw] Re: Javascript Macro Does Not Seem to Work

2017-02-17 Thread PMario
Hi Patrick, This is IE only and if it works, imo, it's super dangerous. see: https://msdn.microsoft.com/ro-ro/library/7sw4ddf8(v=vs.94).aspx JavaScript is run in a sandboxed VM for a reason. Having full access to the underlying OS only hurts. -mario -- You received this message because you a

[tw] Javascript Macro Does Not Seem to Work

2017-02-17 Thread Patrick Aquilone
Hello, So I created the following macro: /*\ title: $:/macros/runProgram type: application/javascript module-type: macro <> Example: <> <> \*/ (function(){ /*jslint node: true, browser: true */ /*global $tw: false */ "use strict"; /* Information about this macro This is written to have a jav

[tw] Re: [TW5] Applying Styles to list-filter results while avoiding the line wrap problem

2017-02-17 Thread Eric Shulman
On Friday, February 17, 2017 at 12:37:14 PM UTC-8, Douglas Counts wrote: > > Eric, > > While Ton Gerner's advice worked great, I'm always looking to see what > other techniques work and why. So I gave your advice several failed > attempts and could not get a single attempt to work properly. > H

[tw] Re: [TW5] Applying Styles to list-filter results while avoiding the line wrap problem

2017-02-17 Thread Douglas Counts
Eric, While Ton Gerner's advice worked great, I'm always looking to see what other techniques work and why. So I gave your advice several failed attempts and could not get a single attempt to work properly. Adding a closing tag like you seem to suggest as shown below doesn't line wrap either

[tw] Re: Blank display on TW5

2017-02-17 Thread kurtbutfrank
Thanks guys! I was able to import and recover my data. The last time I performed an edit there was nothing special in particular that I had not done many times previously. It is a mystery. On Friday, February 17, 2017 at 11:31:12 AM UTC-8, PMario wrote: > > Hi Kurt, > > As Ton pointed out. Ju

Re: [tw] Re: TiddlerWidget - formulate what it does!

2017-02-17 Thread PMario
On Friday, February 17, 2017 at 8:31:15 PM UTC+1, Arlen Beiler wrote: > > That and no easy way to share macros... besides...WikiBooks, GitHub gists, > GitHub wikis, Reddit wikis etc, Shared Dropbox pages, federation etc. And > pretty much everything else we haven't used yet. > > What if Jeremy wo

Re: [tw] Re: TiddlerWidget - formulate what it does!

2017-02-17 Thread Arlen Beiler
That and no easy way to share macros... besides...WikiBooks, GitHub gists, GitHub wikis, Reddit wikis etc, Shared Dropbox pages, federation etc. And pretty much everything else we haven't used yet. What if Jeremy would enable the wiki feature on the TiddlyWiki Five GitHub repo and let anyone edit

[tw] Re: Blank display on TW5

2017-02-17 Thread PMario
Hi Kurt, As Ton pointed out. Just drag and drop import your TW into empty.hmtl and you stuff will show up again. Do you know, what you did last? It's strange. There is no error message in the dev-console. ... -m -- You received this message because you are subscribed to the Google Groups "T

[tw] Re: [TW5] Applying Styles to list-filter results while avoiding the line wrap problem

2017-02-17 Thread Eric Shulman
On Friday, February 17, 2017 at 10:14:27 AM UTC-8, Douglas Counts wrote: > > I can successfully display the shadow tiddlers in a list like so: > > <$list filter="[all[shadows]sort[title]]"/> > > The <> *macro* can be used to quickly display filter results, one per line, with bullets. The <$links

[tw] Re: [TW5] Applying Styles to list-filter results while avoiding the line wrap problem

2017-02-17 Thread Douglas Counts
Sweet, Adding the divs and the blank lines fixed the issue entirely. Thank you so much, -Doug On Friday, February 17, 2017 at 12:47:35 PM UTC-6, Ton Gerner wrote: > > Hi Douglas, > > Try: > > > .my-class .tc-tiddlylink.tc-tiddlylink-resolves { > background-color: yellow; > } > > > >

[tw] Re: Blank display on TW5

2017-02-17 Thread Ton Gerner
Hi Kurt, I don't know what is wrong. Try to import KurtWiki2.html into an empty TW5. I get a 'normal' TW doing this. Cheers, Ton -- 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, s

[tw] Re: [TW5] Applying Styles to list-filter results while avoiding the line wrap problem

2017-02-17 Thread Ton Gerner
Hi Douglas, Try: .my-class .tc-tiddlylink.tc-tiddlylink-resolves { background-color: yellow; } @@.my-class <$list filter="[all[shadows]sort[title]]"/> @@ Cheers, Ton -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscri

[tw] [TW5] Applying Styles to list-filter results while avoiding the line wrap problem

2017-02-17 Thread Douglas Counts
Hey everyone, I'm trying to apply a yellow background to all listed shadow tiddlers that have been altered in the list. This way I can quickly scroll down the very lengthy list of shadow tiddlers and quickly discern which ones are defaults and which ones are not. I can successfully display the

[tw] How can i PRINT out all my PROJECTS and TASKS that i have in my GSD5? (Getting Things Done Tool for TW5)

2017-02-17 Thread Gesundelehre
Is there an easy way to accomplish that? Note, i speak of this GSD5 TW5: http://gsd5.tiddlyspot.com/ Because to manually by hand all write them out is like a really time-consuming task to do. Any ideas? Looking forward to your answers and thanks for your help, Greetings -- You received this

[tw] Re: [TW5] Tiddler editor background color

2017-02-17 Thread Ton Gerner
Hi Chinny, Since 'Tiddler editor border' in the Color palette does not behave as expected, I opened an issue . Cheers, Ton -- 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 a

[tw] Re: TiddlerWidget - formulate what it does!

2017-02-17 Thread PMario
On Friday, February 17, 2017 at 3:23:17 PM UTC+1, Lost Admin wrote: > > On Thursday, February 16, 2017 at 5:53:13 PM UTC-5, PMario wrote: >> >> On Thursday, February 16, 2017 at 11:41:36 PM UTC+1, Mat wrote: >>> >>> >>> The TiddlerWidget is used to set a

[tw] Re: TiddlerWidget - formulate what it does!

2017-02-17 Thread Riz
This discussion might be relevant here: https://github.com/Arlen22/TW5Docs/issues/1 -- 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...@googl

[tw] Re: TiddlerWidget - formulate what it does!

2017-02-17 Thread Lost Admin
On Thursday, February 16, 2017 at 5:53:13 PM UTC-5, PMario wrote: > > On Thursday, February 16, 2017 at 11:41:36 PM UTC+1, Mat wrote: >> >> >> The TiddlerWidget is used to set >>> a value for the current tiddler >>>

[tw] Re: Different actions to different tiddlers with one click/button possible?

2017-02-17 Thread The Bo
Hey Mario, thanks for your suggestions and I will have a look at your plugin. Yes it's a bit sad but it was the best workaround I could find so far. ;-) @Mark That won't work because I use the !is[tag] filter. For the example in my second post the "toggle" for the tiddler *"01110*" would work w

[tw] Re: TiddlerWidget - formulate what it does!

2017-02-17 Thread Douglas Counts
Descriptions like what PMario just included should be what one finds within the introductory developer documentation, that is currently lacking in useful examples and basic insights. Doing a Google search on most TiddlyWiki Widgets normally leads you to a Google Groups post and not to the form