[tw] Announcing TWWFI, a file for TiddlyWiki and Workflowy integration

2016-05-06 Thread David Gifford
Hi all,

I mentioned a week or so ago about integrating TW and Workflowy. As I 
continue to play with it, the more excited I am about it. This has 
revolutionized my note-taking and bookmarking.

Today I uploaded a customized TiddlyWiki called TWWFI to my website. 
http://www.giffmex.org/twwfi/twwfi.html. A proper introduction and 
instructions can be found there.

Please let me know what you think if you play with it for a while.

Dave


-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/fdfb3024-64bc-49fd-b4c2-47c3f8f2288a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: print file system file?

2016-05-06 Thread Dave
Nevermind, I found that if you just drag a pdf into the TW and go to that 
imported tiddler there's a handy print button that appears right there. 

Very nice!!

TW is so awesome! :)

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d36a3c55-bf17-4709-b4e2-cf9f86047586%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] print file system file?

2016-05-06 Thread Dave
Hi,

I know you can open a file from the file system from TW, but is there any 
way to make a link that will cause a particular file (e.g. a pdf) to be 
printed immediately from the default printer?

Thanks,
Dave

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/95ed6965-5a33-4eda-953e-5d71dbb620a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: List of fields in a different tiddler

2016-05-06 Thread Eric Shulman
On Friday, May 6, 2016 at 10:21:43 AM UTC-7, Stephen Kimmel wrote:
>
> What I want to do is produce a list of fields and values for a tiddler 
> that isn't the current tiddler but whose name is contained in a temporary 
> tiddler. 
>
> Given that this code produces a list of fields and values for the current 
> tiddler
>
> 
> <$list filter="[is[current]fields[]] -[[text]]" variable="fieldname">
> <$text text=<>/>
> <$view field=<>/>
> 
> 
>
> can someone explain to me what it takes to produce a similar result?
>

Method #1:
* replace "is[current]" with "title{$:/temp/old}"
* add tiddler={{$:/temp/old}} to the $view widget


<$list filter="[title{$:/temp/old}fields[]] -[[text]]" variable="fieldname">
<$text text=<>/>
<$view tiddler={{$:/temp/old}} field=<>/>



Method #2:
* set the currentTiddler context to the desired tiddler title by 
surrounding the code with <$tiddler tiddler={{$:/temp/old}}>

<$tiddler tiddler={{$:/temp/old}}>

<$list filter="[is[current]fields[]] -[[text]]" variable="fieldname">
<$text text=<>/>
<$view field=<>/>




enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
InsideTiddlyWiki: The Missing Manuals

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b9211689-bfa3-4c4b-b929-df885cf5265b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: List of fields in a different tiddler

2016-05-06 Thread 'Stephen Kimmel' via TiddlyWiki
Thanks. That certainly does it. I'm still trying to understand the use of a 
text reference in a filter... which is why I was pursuing the {$:/temp/old} 
approach. But in any case, this gets me past my difficulty. Thanks again.

On Friday, May 6, 2016 at 1:48:17 PM UTC-5, Mark S. wrote:
>
> Is this what you want?
>
> <$set name=tid value={{$:/temp/old}}>
> 
> <$list filter="[fields[]] -[[text]]" variable="fieldname">
> <$text text=<>/>
> <$view tiddler=<> field=<>/>
> 
> 
> 
>
>
>
>
> On Friday, May 6, 2016 at 10:21:43 AM UTC-7, Stephen Kimmel wrote:
>>
>> What I want to do is produce a list of fields and values for a tiddler 
>> that isn't the current tiddler but whose name is contained in a temporary 
>> tiddler. 
>>
>> Given that this code produces a list of fields and values for the current 
>> tiddler
>>
>> 
>> <$list filter="[is[current]fields[]] -[[text]]" variable="fieldname">
>> <$text text=<>/>
>> <$view field=<>/>
>> 
>> 
>>
>> can someone explain to me what it takes to produce a similar result?
>>
>> None of the combinations I've tried with {$:/temp/old} have brought me 
>> any luck.
>>
>>
>>
>>
>>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/47aa3111-7b32-49ce-8b82-31efdb9b3237%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: List of fields in a different tiddler

2016-05-06 Thread 'Mark S.' via TiddlyWiki
Is this what you want?

<$set name=tid value={{$:/temp/old}}>

<$list filter="[fields[]] -[[text]]" variable="fieldname">
<$text text=<>/>
<$view tiddler=<> field=<>/>







On Friday, May 6, 2016 at 10:21:43 AM UTC-7, Stephen Kimmel wrote:
>
> What I want to do is produce a list of fields and values for a tiddler 
> that isn't the current tiddler but whose name is contained in a temporary 
> tiddler. 
>
> Given that this code produces a list of fields and values for the current 
> tiddler
>
> 
> <$list filter="[is[current]fields[]] -[[text]]" variable="fieldname">
> <$text text=<>/>
> <$view field=<>/>
> 
> 
>
> can someone explain to me what it takes to produce a similar result?
>
> None of the combinations I've tried with {$:/temp/old} have brought me any 
> luck.
>
>
>
>
>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ede52cf4-15fb-4f37-a387-9fd49c7d8505%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] List of fields in a different tiddler

2016-05-06 Thread 'Stephen Kimmel' via TiddlyWiki
What I want to do is produce a list of fields and values for a tiddler that 
isn't the current tiddler but whose name is contained in a temporary 
tiddler. 

Given that this code produces a list of fields and values for the current 
tiddler


<$list filter="[is[current]fields[]] -[[text]]" variable="fieldname">
<$text text=<>/>
<$view field=<>/>



can someone explain to me what it takes to produce a similar result?

None of the combinations I've tried with {$:/temp/old} have brought me any 
luck.




-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/93c600c4-14bd-46e7-a1f9-659b35a3cf38%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [NOOB] Transclusion, Templates, Filters and Tags vs Fields

2016-05-06 Thread 'Mark S.' via TiddlyWiki
I think we would need to know more about your use case. For instance, what 
will all these articles have in common that might benefit from a template? 
How do you imagine using the sub-sections?

Personally, I don't like solutions that clutter tag-space with single-use 
tags. To me tags seem better to apply semantic meaning to entire categories 
of tiddlers. But maybe that's just me. I would use links to organize 
sub-sections.
 
The next version of TW5, 5.1.12 is coming out pretty soon . It will have a 
tool that will let you quickly cut (excise) your article into relevant 
sub-tiddlers. This might be the ticket for what you want to accomplish.

Good luck,
Mark 

On Thursday, May 5, 2016 at 11:18:56 AM UTC-7, wolfsong wrote:
>
> I'm looking through the documentation and trying to grasp a few concepts 
> but I think I need more information.
>
> I want to setup a knowledge base with articles on a variety of subjects. 
> I'd like to put together a template for each type of article. Each article 
> will have subsections with information that might appear in different types 
> of articles. This way, as content needs to be updated, I can update the 
> relevant tiddler and have the corresponding articles be current. It seems 
> like TiddlyWiki is built around this very idea. Where I'm stumbling though 
> is how to approach the process.
>
>- Do I create the subsections first and pull them together with a 
>template or create a template that creates the necessary subsections?
>- How do I link the subsections back to the article? Should I use a 
>tag or a custom field (I'm entirely unclear on the advantages of using one 
>versus the other)?
>- Are the some examples that are easy to follow? What I'm finding on 
>the main website seems lite and what I'm finding in the community examples 
>has elements that I can't figure out what's being done.
>
> One other thing, because the articles will be lengthy in some cases, I'd 
> love to take advantage of having the subsections appear as tabs.
>
> Any guidance would really be appreciated. Thanks.
>
> Cristov
>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/68d3a61e-e044-46d1-a9c8-a2f79afe9bf9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] creating new tiddler with title of storyTiddler as tag (TW5)

2016-05-06 Thread infurnoape


Cool. I completely missed this little jewel. Thanks.


Happy Connecting. Sent from my Sprint Samsung Galaxy S® 5

 Original message 
From: Jeremy Ruston  
Date: 5/6/16  3:46 AM  (GMT-07:00) 
To: tiddlywiki@googlegroups.com 
Subject: Re: [tw] creating new tiddler with title of storyTiddler as tag (TW5) 

Hi Erik
thank you so much for your quick reply. I’m sorry that I bother you with such 
„dumb“ questions but I just couldn’t figure it out.
No worries, there are no dumb questions here! Asking any question in public is 
really a service to the community as it creates an opportunity for others to 
learn.

As an aside, I’ve learned that the best way for a software developer to think 
of their users is not that they are stupid, but just that they are very busy.

Best wishes

Jeremy.


Am 06.05.2016 um 12:10 schrieb Jeremy Ruston :
Hi Erik
There’s a “New here” button under the “More” down-arrow at the top right of a 
tiddler that creates a new tiddler tagged with the title of the current 
tiddler. Does that do what you want?
To include the button elsewhere in the body of a tiddler, try this:
{{||$:/core/ui/Buttons/new-here}}
Best wishes
Jeremy.
On 6 May 2016, at 10:57, Erik Homann  wrote:
Hello,

I would like to create a button in my tiddlers that automatically creates a new 
tiddler with the title of my origin-tiddler as a tag. 

This is what I have so far:

<$set name="myTag" value=<>>
<$button>

<$action-sendmessage $message="tm-new-tiddler" title="This is newly created 
tiddler" tag=<> text=<>/>
Neue Besprechungsnotiz




My problem is, that the title of my storyTiddler is space separated and 
therefore my newly created tiddler has two tags and not one tag. I hope you can 
unterstand my problem and can give me a hint.
Thank you very much in advance!

Erik

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/57f77477-101e-4f4e-90fe-09b48f7303c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to a topic in the Google 
Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/tiddlywiki/OWncMvTEZXE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5882E44F-2D7F-4E33-A56B-9F697650FB31%40gmail.com.
For more options, visit https://groups.google.com/d/optout.



-- 

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 tiddlywiki@googlegroups.com.

Visit this group at https://groups.google.com/group/tiddlywiki.

To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7D24C975-BA0B-4E3C-B0ED-4A335E8B6CCF%40gmail.com.

For more options, visit https://groups.google.com/d/optout.


-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/je99xiw2lnqj1oir6v9hmtml.1462542447548%40email.android.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Removeprefix syntax

2016-05-06 Thread 'Stuart Amor' via TiddlyWiki
Reading the documentation I thought this would work? But it doesn't...

<$list filter="[is[system]] [is[shadow]] +[search[Door Status Monitoring: X]] 
+[tag[$:/tags/sectec/office-location-data]]" +[removeprefix[$:/]] 
template="$:/core/ui/ListItemTemplate"/>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6d3eadaf-4c1d-4d14-926f-db1572fdcdc6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Removeprefix syntax

2016-05-06 Thread 'Stuart Amor' via TiddlyWiki
I have a question which is hopefully easily solved.  I have the following 
list filter:-

<$list filter="[is[system]] [is[shadow]] +[search]+[tag[Hidden 
Data]]" template="$:/core/ui/ListItemTemplate"/>

This search produces a list of my custom hidden tiddlers that contain a 
particular search phrase, eg

$:/Tiddler A
$:/Tiddler B

I have been trying to use the removeprefix to omit the $/ part and thus 
return a link to the non-hidden version of the tiddler, eg

Tiddler A
Tiddler B

I am not sure if I have my bracket wrong or if it's because I am using a 
search rather than a tag filter, but I can't get any removeprefix example 
to work in this context?

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7e30489c-6eaf-47b1-a8a6-24d7085ccbc6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Colour Pallete Options

2016-05-06 Thread Ste Wilson
Yes it's just the tiddler back ground as that's where the majority of the 
reading is.  I've set up a couple of custom pallets where I have just 
changed the 'tiddler background' colour ad told the relevent student where 
to find those when they use the wiki.  The results aren't massively 
aesthetically pleasing when taken with the rest of the theme but they are 
functional. There are just too many options to tweak different colours of. 
 I'd only end up creating a garish mess.  A cut down palette editor with 
the ability to change just the key 7(?) colours shown in the pallette 
selection would be good. 
 
On Friday, 6 May 2016 08:58:25 UTC+1, Mat wrote:
>
> Ste - would it be enough if all tiddlers are coloured with this custom 
> background or is there a way to specifically identify all the relevant 
> tiddlers? Perhaps they are tagged with a common tag?
>
> <:-)
>

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cdfc3910-7b2a-48be-8f75-d0032b710be7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] creating new tiddler with title of storyTiddler as tag (TW5)

2016-05-06 Thread Jeremy Ruston
Hi Erik

> thank you so much for your quick reply. I’m sorry that I bother you with such 
> „dumb“ questions but I just couldn’t figure it out.

No worries, there are no dumb questions here! Asking any question in public is 
really a service to the community as it creates an opportunity for others to 
learn.

As an aside, I’ve learned that the best way for a software developer to think 
of their users is not that they are stupid, but just that they are very busy.

Best wishes

Jeremy.

> 
> 
>> Am 06.05.2016 um 12:10 schrieb Jeremy Ruston > >:
>> 
>> Hi Erik
>> 
>> There’s a “New here” button under the “More” down-arrow at the top right of 
>> a tiddler that creates a new tiddler tagged with the title of the current 
>> tiddler. Does that do what you want?
>> 
>> To include the button elsewhere in the body of a tiddler, try this:
>> 
>> {{||$:/core/ui/Buttons/new-here}}
>> 
>> Best wishes
>> 
>> Jeremy.
>> 
>>> On 6 May 2016, at 10:57, Erik Homann >> > wrote:
>>> 
>>> Hello,
>>> 
>>> I would like to create a button in my tiddlers that automatically creates a 
>>> new tiddler with the title of my origin-tiddler as a tag. 
>>> 
>>> This is what I have so far:
>>> 
>>> <$set name="myTag" value=<>>
>>> <$button>
>>> 
>>> <$action-sendmessage $message="tm-new-tiddler" title="This is newly created 
>>> tiddler" tag=<> text=<>/>
>>> Neue Besprechungsnotiz
>>> 
>>> 
>>> 
>>> 
>>> My problem is, that the title of my storyTiddler is space separated and 
>>> therefore my newly created tiddler has two tags and not one tag. I hope you 
>>> can unterstand my problem and can give me a hint.
>>> Thank you very much in advance!
>>> 
>>> Erik
>>> 
>>> -- 
>>> 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 tiddlywiki@googlegroups.com 
>>> .
>>> Visit this group at https://groups.google.com/group/tiddlywiki 
>>> .
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/tiddlywiki/57f77477-101e-4f4e-90fe-09b48f7303c9%40googlegroups.com
>>>  
>>> .
>>> For more options, visit https://groups.google.com/d/optout 
>>> .
>> 
>> 
>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/tiddlywiki/OWncMvTEZXE/unsubscribe 
>> .
>> To unsubscribe from this group and all its topics, send an email to 
>> tiddlywiki+unsubscr...@googlegroups.com 
>> .
>> To post to this group, send email to tiddlywiki@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/tiddlywiki 
>> .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/5882E44F-2D7F-4E33-A56B-9F697650FB31%40gmail.com
>>  
>> .
>> For more options, visit https://groups.google.com/d/optout 
>> .
> 
> 
> -- 
> 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 tiddlywiki@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/7D24C975-BA0B-4E3C-B0ED-4A335E8B6CCF%40gmail.com
>  
> .
> For more options, visit https://groups.google.com/d/optout 
> .

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki

Re: [tw] creating new tiddler with title of storyTiddler as tag (TW5)

2016-05-06 Thread Erik Homann
Hi Jeremy

thank you so much for your quick reply. I’m sorry that I bother you with such 
„dumb“ questions but I just couldn’t figure it out.


> Am 06.05.2016 um 12:10 schrieb Jeremy Ruston :
> 
> Hi Erik
> 
> There’s a “New here” button under the “More” down-arrow at the top right of a 
> tiddler that creates a new tiddler tagged with the title of the current 
> tiddler. Does that do what you want?
> 
> To include the button elsewhere in the body of a tiddler, try this:
> 
> {{||$:/core/ui/Buttons/new-here}}
> 
> Best wishes
> 
> Jeremy.
> 
>> On 6 May 2016, at 10:57, Erik Homann > > wrote:
>> 
>> Hello,
>> 
>> I would like to create a button in my tiddlers that automatically creates a 
>> new tiddler with the title of my origin-tiddler as a tag. 
>> 
>> This is what I have so far:
>> 
>> <$set name="myTag" value=<>>
>> <$button>
>> 
>> <$action-sendmessage $message="tm-new-tiddler" title="This is newly created 
>> tiddler" tag=<> text=<>/>
>> Neue Besprechungsnotiz
>> 
>> 
>> 
>> 
>> My problem is, that the title of my storyTiddler is space separated and 
>> therefore my newly created tiddler has two tags and not one tag. I hope you 
>> can unterstand my problem and can give me a hint.
>> Thank you very much in advance!
>> 
>> Erik
>> 
>> -- 
>> 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 tiddlywiki@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/tiddlywiki 
>> .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/57f77477-101e-4f4e-90fe-09b48f7303c9%40googlegroups.com
>>  
>> .
>> For more options, visit https://groups.google.com/d/optout 
>> .
> 
> 
> -- 
> You received this message because you are subscribed to a topic in the Google 
> Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/tiddlywiki/OWncMvTEZXE/unsubscribe 
> .
> To unsubscribe from this group and all its topics, send an email to 
> tiddlywiki+unsubscr...@googlegroups.com 
> .
> To post to this group, send email to tiddlywiki@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/5882E44F-2D7F-4E33-A56B-9F697650FB31%40gmail.com
>  
> .
> For more options, visit https://groups.google.com/d/optout 
> .

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7D24C975-BA0B-4E3C-B0ED-4A335E8B6CCF%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] creating new tiddler with title of storyTiddler as tag (TW5)

2016-05-06 Thread Jeremy Ruston
Hi Erik

There’s a “New here” button under the “More” down-arrow at the top right of a 
tiddler that creates a new tiddler tagged with the title of the current 
tiddler. Does that do what you want?

To include the button elsewhere in the body of a tiddler, try this:

{{||$:/core/ui/Buttons/new-here}}

Best wishes

Jeremy.

> On 6 May 2016, at 10:57, Erik Homann  wrote:
> 
> Hello,
> 
> I would like to create a button in my tiddlers that automatically creates a 
> new tiddler with the title of my origin-tiddler as a tag. 
> 
> This is what I have so far:
> 
> <$set name="myTag" value=<>>
> <$button>
> 
> <$action-sendmessage $message="tm-new-tiddler" title="This is newly created 
> tiddler" tag=<> text=<>/>
> Neue Besprechungsnotiz
> 
> 
> 
> 
> My problem is, that the title of my storyTiddler is space separated and 
> therefore my newly created tiddler has two tags and not one tag. I hope you 
> can unterstand my problem and can give me a hint.
> Thank you very much in advance!
> 
> Erik
> 
> -- 
> 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 tiddlywiki@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/57f77477-101e-4f4e-90fe-09b48f7303c9%40googlegroups.com
>  
> .
> For more options, visit https://groups.google.com/d/optout 
> .

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5882E44F-2D7F-4E33-A56B-9F697650FB31%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] creating new tiddler with title of storyTiddler as tag (TW5)

2016-05-06 Thread Erik Homann
Hello,

I would like to create a button in my tiddlers that automatically creates a 
new tiddler with the title of my origin-tiddler as a tag. 

This is what I have so far:

<$set name="myTag" value=<>>
<$button>

<$action-sendmessage $message="tm-new-tiddler" title="This is newly created 
tiddler" tag=<> text=<>/>
Neue Besprechungsnotiz




My problem is, that the title of my storyTiddler is space separated and 
therefore my newly created tiddler has two tags and not one tag. I hope you 
can unterstand my problem and can give me a hint.
Thank you very much in advance!

Erik

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/57f77477-101e-4f4e-90fe-09b48f7303c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Planning a TiddlyWiki Meetup in 2016

2016-05-06 Thread Jeremy Ruston
So it looks like the 15th/16th July is the popular choice.

Thinking about a rough schedule of things we might do:

* Friday 15th
** All day hackathon focussed on committing code and collaborating with the 
people who can’t make it to Oxford. For example, with Mario I have a backlog of 
work to get tiddlywiki.com automatically updating when editors commit changes 
to tw5.com (or the translations). Perhaps live broadcast with 
https://www.livecoding.tv/
** Evening group meal
* Saturday 16th
** All day unconference style presentations/talks/discussions, with a live 
broadcast as a Google Hangout. We’d do a bit of planning in advance but also 
leave some of it to the day

There’s also lots of things to do as a group in the summer in Oxford that might 
be fun, particularly punting or rowing.

What do you think? What sort of events or activities would make it worth while 
for you to travel?

I’ll start to investigate potential venues…

Best wishes

Jeremy.



> On 6 May 2016, at 08:58, Sylvain Naudin  wrote:
> 
> Hi Jeremy,
> 
> It's impossible for me on 22nd & 23rd, and at the moment maybe for 15th & 
> 16th July.
> I'll start a new job monday, so I don't know if I could take one or two 
> holidays.
> 
> But if I can, I would be happy to be with all of you !
> 
> Cheers,
> Sylvain
> 
> 
> Le mercredi 4 mai 2016 08:44:54 UTC+2, Jeremy Ruston a écrit :
> At Mario’s suggestion, I’d like to explore holding a TiddlyWiki Meetup in 
> Oxford, UK this summer. 
> 
> We have two proposed dates: 
> 
> * Friday 15th and/or Saturday 16th July 
> * Friday 22nd and/or Saturday 23rd July 
> 
> I’m pretty sure I can beg some space in Oxford for us to meet. There’s a 
> fairly good supply of cheap-ish accommodation in Oxford (as long as one books 
> early enough), or it’s close enough to London to be able to stay there. 
> 
> If you think you might be interested in coming along, please let me know 
> which dates would work best for you. 
> 
> Best wishes 
> 
> 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 tiddlywiki+unsubscr...@googlegroups.com 
> .
> To post to this group, send email to tiddlywiki@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/f86caa4d-e1de-4abc-a1bd-c34b71684807%40googlegroups.com
>  
> .
> For more options, visit https://groups.google.com/d/optout 
> .

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/AFD02A55-14AD-4785-AE89-7D30C001861B%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Colour Pallete Options

2016-05-06 Thread Mat
Ste - would it be enough if all tiddlers are coloured with this custom 
background or is there a way to specifically identify all the relevant 
tiddlers? Perhaps they are tagged with a common tag?

<:-)

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/633f4a6b-74ee-490b-ad00-0d304bfd7cdb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Planning a TiddlyWiki Meetup in 2016

2016-05-06 Thread Sylvain Naudin
Hi Jeremy,

It's impossible for me on 22nd & 23rd, and at the moment maybe for 15th & 
16th July.
I'll start a new job monday, so I don't know if I could take one or two 
holidays.

But if I can, I would be happy to be with all of you !

Cheers,
Sylvain


Le mercredi 4 mai 2016 08:44:54 UTC+2, Jeremy Ruston a écrit :
>
> At Mario’s suggestion, I’d like to explore holding a TiddlyWiki Meetup in 
> Oxford, UK this summer. 
>
> We have two proposed dates: 
>
> * Friday 15th and/or Saturday 16th July 
> * Friday 22nd and/or Saturday 23rd July 
>
> I’m pretty sure I can beg some space in Oxford for us to meet. There’s a 
> fairly good supply of cheap-ish accommodation in Oxford (as long as one 
> books early enough), or it’s close enough to London to be able to stay 
> there. 
>
> If you think you might be interested in coming along, please let me know 
> which dates would work best for you. 
>
> Best wishes 
>
> 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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f86caa4d-e1de-4abc-a1bd-c34b71684807%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [NOOB] Transclusion, Templates, Filters and Tags vs Fields

2016-05-06 Thread Mat
Hi wolfsong - I think you'll like TW

What pmario says is (of course) correct but here's for a perhaps smaller 
first piecemeal start:

What you want to do is pretty simple;

What you do is to create a separate tiddler per each article and per each 
subsection. Tag the subsections with the name of the articles they belong 
to. The use the tabs macro  to filter 
out (i.e "collect") these subsections and to get them presented as tabs.

You'll probably need a bit more guidance but this is a good start and maybe 
it'll be enough.

Good luck!

<:-)

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/edd0fdd3-e21a-4c48-a0c6-69632f612e2b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Some Plugins for the new Editor Toolbar

2016-05-06 Thread Mat
HOORAY for fellow STEPHEN!!!

Thank you so much for this (and that's quite a lot!!) - and for setting a 
good example of the TW spirit!

This is really an incredible community we have!

<:-)

-- 
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 tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/eb865b75-d35d-458e-bb4c-5f9b4a941790%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.