[tw] Re: TW5 show list of values in a field

2016-11-26 Thread Jon

>
> It would produce a select widget populated with the values contained in 
> the keyword field


Sorry Mark, but that's not what I want! 

I need the values of the keyword field outside the widget, in the body of 
the tiddler (which contains the select widget)


Thanks
Jon

On Saturday, 26 November 2016 23:48:05 UTC, Mark S. wrote:
>
> That sounds exactly like what Riz gave you. It would produce a select 
> widget populated with the values contained in the keyword field. What do 
> you want beyond that?
>
> Good luck,
> Mark
>
> On Saturday, November 26, 2016 at 2:53:14 PM UTC-8, Jon wrote:
>>
>> Hi Mark,
>>
>> The select would show the list of tiddlers tagged with "family" and the 
>> field values (for the field "keyword") would be in the same tiddler as the 
>> select widget, so there would be a drop down box and the field values are 
>> underneath it - sorry if it wasn't clear before.
>>
>> Thanks
>> Jon
>>
>> On Saturday, 26 November 2016 22:08:42 UTC, Mark S. wrote:
>>>
>>> Can you lay out a few tiddlers with the data the way you want?
>>>
>>> What do you expect to see in the select? Just a list of values? 
>>>
>>> When you say, "field values would be shown in the body of the tiddler" 
>>> do you mean in the tiddler with the select widget, or in each tiddler that 
>>> has been tagged with "family" ? If the latter, then what you want is set up 
>>> a view template. Search the forum for references to template.
>>>
>>> Good luck!
>>> Mark
>>>
>>>
>>>
>>> On Saturday, November 26, 2016 at 10:39:30 AM UTC-8, Jon wrote:

 Hi Mark,

 Sorry, I couldn't get that to work - no doubt it's something my end!

 This is my use case:

 I have a list of tiddlers tagged with "family" and I also want to 
 associate various keywords with each of  them but I'd rather not add them 
 as tags because there would be too many and they aren't tags I'd use 
 elsewhere, so I thought I could enter them as fields instead.

 Therefore, I'd like to select a particular tiddler tagged with "family" 
 which would then show the associated keywords (field values).

 Ideally this would be using a drop down for the list and the field 
 values would be shown in the body of the tiddler.

 Hope that makes sense.

 Thanks
 Jon



 On Thursday, 24 November 2016 17:14:28 UTC, Jon wrote:
>
> Hi,
>
> I'd like to have a drop down which selects from a list of tiddlers 
> tagged with "A" and simultaneously shows the values of the field "B" 
> associated with each tiddler.
>
> This does the first bit:
>
> <$select tiddler="$:/temp/tag1">
>
><$list filter="[tag[A]tags[]sort[]]">
>   >><>
>
> 
>
>
> (cobbled together from something else so some elements could be 
> unnecessary) 
>
> But I can't figure out the rest of it.
>
> I'm guessing that <$view field="B"/> would be incorporated somehow.
>
>
> Thanks
> Jon
>


-- 
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/3edc25e5-b02a-4277-a9a4-bb99dfedd2d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Conditional view template Q

2016-11-26 Thread David Gifford
Hey, I got it to work! Just changed "[is[current]tag[foo]]"  to
"[is[current]]" and added the list filter on the inside one. I thought Jed
was saying my list filter needed to go in place of tag[foo].

See
http://giffmex.org/experiments/daves.dumpster.static.html#Notetaking%20tools
for the results.

Thanks Jed and Mark!

On Sat, Nov 26, 2016 at 6:25 PM, 'Mark S.' via TiddlyWiki <
tiddlywiki@googlegroups.com> wrote:

> Hi Dave,
>
> I think you need to explain what's not working for you. I stuck Jed's code
> into a template, added in your code and stylesheet, created a tiddler
> tagged "foo" and another tiddler that linked to it, and got the results as
> attached. Everything seems to be working.
>
> In Jed's code, the first filter makes sure that the template is only being
> applied inside tiddlers tagged "foo". The second filter makes sure that
> there are backlinks to display. If there are no backlinks to the tiddler,
> nothing is displayed. The inner list (which I substituted with your code)
> displays the list of backlinks.
>
> Good luck!
> Mark
>
>
>
>
> On Saturday, November 26, 2016 at 3:23:35 PM UTC-8, David Gifford wrote:
>>
>> Hi Jed
>>
>> Thank you, though I confess I am too ignorant to understand your example.
>> I tried experimenting with it for a while but I am obviously doing
>> something wrong.
>>
>> Also, I forgot to mention that the title will not be on a separate line.
>> Below is what I created originally to make it look like I want. It consists
>> of two list filters that will all flow together on the same line. The alt
>> arrows are the 'titles' I am talking about.
>>
>> <$list filter="[all[current]tags[]sort[title]]"> ↑ <$link>> class="giffbuttonsgreen"><$view field="title"/>
>> <$list filter="[all[current]backlinks[]sort[title]]
>> -[all[current]tags[]] -[all[current]links[]]"> ↔ <$link>> class="giffbuttonsblue"><$view field="title"/>
>>
>> CSS:
>>
>> .giffbuttonsblue 
>> {padding:2px;background-color:#DDF;padding-left:8px;padding-right:8px;line-height:25px;margin-right:8px;font-size:10pt;}
>>
>> .giffbuttonsgreen 
>> {padding:2px;margin-top:30px;background-color:#DFB;padding-left:8px;padding-right:8px;line-height:25px;margin-right:8px;font-size:10pt;}
>>
>> html body.tc-body a.tc-tiddlylink .giffbuttonsgreen {color:#694;}
>>
>> What do I need to tweak in your example? It looked like a filter in a filter 
>> in a filter, and it wasn't clear to me what each part does. Sorry for my 
>> ignorance!
>>
>>
>>
>> On Saturday, November 26, 2016 at 4:36:25 PM UTC-6, Jed Carty wrote:
>>>
>>> You just put your test inside the conditional part of the template.
>>> Something like:
>>>
>>> <$list filter='[is[current]tag[foo]]'>
>>> <$list filter='[is[current]backlinks[]limit[1]]' variable=dummy>
>>>
>>>
>>> !Look at me! I am a title!
>>>
>>>
>>> <$list filter='[backlinks[]]'>
>>>
>>>
>>> 
>>>
>>>
>>> 
>>> 
>>>
>>> note that the variable=dummy is needed in the second list widget. It
>>> doesn't have to be dummy, but it has to be something. Also replace
>>>  [is[current]tag[foo]] with whatever filter you want for your conditional
>>> part.
>>>
>> --
> 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/NuE37lXQGfA/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/865e30e9-9d18-41cf-a965-c49750b9da58%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
David Gifford
Christian Reformed World Missions, Mexico City

-- 
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/CANE%3DBFKY4qwcAgzn6fqmiDohB4bHQUE6i%2BXJhVGd0pZ96ZSjPg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Conditional view template Q

2016-11-26 Thread 'Mark S.' via TiddlyWiki
Hi Dave,

I think you need to explain what's not working for you. I stuck Jed's code 
into a template, added in your code and stylesheet, created a tiddler 
tagged "foo" and another tiddler that linked to it, and got the results as 
attached. Everything seems to be working.

In Jed's code, the first filter makes sure that the template is only being 
applied inside tiddlers tagged "foo". The second filter makes sure that 
there are backlinks to display. If there are no backlinks to the tiddler, 
nothing is displayed. The inner list (which I substituted with your code) 
displays the list of backlinks.

Good luck!
Mark




On Saturday, November 26, 2016 at 3:23:35 PM UTC-8, David Gifford wrote:
>
> Hi Jed
>
> Thank you, though I confess I am too ignorant to understand your example. 
> I tried experimenting with it for a while but I am obviously doing 
> something wrong. 
>
> Also, I forgot to mention that the title will not be on a separate line. 
> Below is what I created originally to make it look like I want. It consists 
> of two list filters that will all flow together on the same line. The alt 
> arrows are the 'titles' I am talking about.
>
> <$list filter="[all[current]tags[]sort[title]]"> ↑ <$link> class="giffbuttonsgreen"><$view field="title"/> 
> <$list filter="[all[current]backlinks[]sort[title]] -[all[current]tags[]] 
> -[all[current]links[]]"> ↔ <$link><$view 
> field="title"/>
>
> CSS:
>
> .giffbuttonsblue 
> {padding:2px;background-color:#DDF;padding-left:8px;padding-right:8px;line-height:25px;margin-right:8px;font-size:10pt;}
>
> .giffbuttonsgreen 
> {padding:2px;margin-top:30px;background-color:#DFB;padding-left:8px;padding-right:8px;line-height:25px;margin-right:8px;font-size:10pt;}
>
> html body.tc-body a.tc-tiddlylink .giffbuttonsgreen {color:#694;}
>
> What do I need to tweak in your example? It looked like a filter in a filter 
> in a filter, and it wasn't clear to me what each part does. Sorry for my 
> ignorance!
>
>
>
> On Saturday, November 26, 2016 at 4:36:25 PM UTC-6, Jed Carty wrote:
>>
>> You just put your test inside the conditional part of the template. 
>> Something like:
>>
>> <$list filter='[is[current]tag[foo]]'>
>> <$list filter='[is[current]backlinks[]limit[1]]' variable=dummy>
>>
>>
>> !Look at me! I am a title!
>>
>>
>> <$list filter='[backlinks[]]'>
>>
>>
>> 
>>
>>
>> 
>> 
>>
>> note that the variable=dummy is needed in the second list widget. It 
>> doesn't have to be dummy, but it has to be something. Also replace 
>>  [is[current]tag[foo]] with whatever filter you want for your conditional 
>> part.
>>
>

-- 
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/865e30e9-9d18-41cf-a965-c49750b9da58%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] ByeBye pancake, hello..... Git?

2016-11-26 Thread Ste Wilson
As advised by many on here I put my images external to my tiddlywiki. This took 
the form of serving the images from Dropbox via pancake.io

e.g.[img[http://pancakeuser.pancakeapps.com/Tiddly/Uploads/Vector.svg]]

Pancake however now seems to have flipped and is giving a 503 error. I fear 
this could be time I get out the lemon and sugar and look for an alternative.
Any suggestions? Can I do it with git?
My tiddly wiki is hosted on tiddyspot.
Cheers

Stephen

-- 
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/ddd43b37-c517-4a2f-96c9-0e3b2980670b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 show list of values in a field

2016-11-26 Thread 'Mark S.' via TiddlyWiki
That sounds exactly like what Riz gave you. It would produce a select 
widget populated with the values contained in the keyword field. What do 
you want beyond that?

Good luck,
Mark

On Saturday, November 26, 2016 at 2:53:14 PM UTC-8, Jon wrote:
>
> Hi Mark,
>
> The select would show the list of tiddlers tagged with "family" and the 
> field values (for the field "keyword") would be in the same tiddler as the 
> select widget, so there would be a drop down box and the field values are 
> underneath it - sorry if it wasn't clear before.
>
> Thanks
> Jon
>
> On Saturday, 26 November 2016 22:08:42 UTC, Mark S. wrote:
>>
>> Can you lay out a few tiddlers with the data the way you want?
>>
>> What do you expect to see in the select? Just a list of values? 
>>
>> When you say, "field values would be shown in the body of the tiddler" do 
>> you mean in the tiddler with the select widget, or in each tiddler that has 
>> been tagged with "family" ? If the latter, then what you want is set up a 
>> view template. Search the forum for references to template.
>>
>> Good luck!
>> Mark
>>
>>
>>
>> On Saturday, November 26, 2016 at 10:39:30 AM UTC-8, Jon wrote:
>>>
>>> Hi Mark,
>>>
>>> Sorry, I couldn't get that to work - no doubt it's something my end!
>>>
>>> This is my use case:
>>>
>>> I have a list of tiddlers tagged with "family" and I also want to 
>>> associate various keywords with each of  them but I'd rather not add them 
>>> as tags because there would be too many and they aren't tags I'd use 
>>> elsewhere, so I thought I could enter them as fields instead.
>>>
>>> Therefore, I'd like to select a particular tiddler tagged with "family" 
>>> which would then show the associated keywords (field values).
>>>
>>> Ideally this would be using a drop down for the list and the field 
>>> values would be shown in the body of the tiddler.
>>>
>>> Hope that makes sense.
>>>
>>> Thanks
>>> Jon
>>>
>>>
>>>
>>> On Thursday, 24 November 2016 17:14:28 UTC, Jon wrote:

 Hi,

 I'd like to have a drop down which selects from a list of tiddlers 
 tagged with "A" and simultaneously shows the values of the field "B" 
 associated with each tiddler.

 This does the first bit:

 <$select tiddler="$:/temp/tag1">

<$list filter="[tag[A]tags[]sort[]]">
   >><>

 


 (cobbled together from something else so some elements could be 
 unnecessary) 

 But I can't figure out the rest of it.

 I'm guessing that <$view field="B"/> would be incorporated somehow.


 Thanks
 Jon

>>>

-- 
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/6a0df528-27b7-4bb8-b38e-69163b153d10%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Conditional view template Q

2016-11-26 Thread David Gifford
Hi Jed

Thank you, though I confess I am too ignorant to understand your example. I 
tried experimenting with it for a while but I am obviously doing something 
wrong. 

Also, I forgot to mention that the title will not be on a separate line. 
Below is what I created originally to make it look like I want. It consists 
of two list filters that will all flow together on the same line. The alt 
arrows are the 'titles' I am talking about.

<$list filter="[all[current]tags[]sort[title]]"> ↑ <$link><$view field="title"/> 
<$list filter="[all[current]backlinks[]sort[title]] -[all[current]tags[]] 
-[all[current]links[]]"> ↔ <$link><$view 
field="title"/>

CSS:

.giffbuttonsblue 
{padding:2px;background-color:#DDF;padding-left:8px;padding-right:8px;line-height:25px;margin-right:8px;font-size:10pt;}

.giffbuttonsgreen 
{padding:2px;margin-top:30px;background-color:#DFB;padding-left:8px;padding-right:8px;line-height:25px;margin-right:8px;font-size:10pt;}

html body.tc-body a.tc-tiddlylink .giffbuttonsgreen {color:#694;}

What do I need to tweak in your example? It looked like a filter in a filter in 
a filter, and it wasn't clear to me what each part does. Sorry for my ignorance!



On Saturday, November 26, 2016 at 4:36:25 PM UTC-6, Jed Carty wrote:
>
> You just put your test inside the conditional part of the template. 
> Something like:
>
> <$list filter='[is[current]tag[foo]]'>
> <$list filter='[is[current]backlinks[]limit[1]]' variable=dummy>
>
>
> !Look at me! I am a title!
>
>
> <$list filter='[backlinks[]]'>
>
>
> 
>
>
> 
> 
>
> note that the variable=dummy is needed in the second list widget. It 
> doesn't have to be dummy, but it has to be something. Also replace 
>  [is[current]tag[foo]] with whatever filter you want for your conditional 
> part.
>

-- 
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/e2618895-2629-4afd-af48-91bbd8247a06%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [Theme] Moments: A little color won't hurt

2016-11-26 Thread Riz

Hi Jan

Thank you!!

Searchresults are a little in the way in mobile view.

Can I trouble you for a screenshot? I had configured in such that under the 
breakpoint(960px), it would switch over to the classic sidebar (as shown in 
ghostwriter theme.). If it doesn't work, I might have to check my CSS.

This might be a good opportunity to ask this. As somebody suggested in the 
hangouts -do you think it will be good idea to get rid of drop dwons 
completely in the mobile view?The initial plan was to set it so that search 
will be triggered only when the search button is clicked and the results 
will be shown in a new tiddler. I was hesistant because it might confuse 
those who are expecting the familiar workflow.

Selectionfields in the tools are invisible.


Yeah -sorry, my fault. I intented to set shadows for them, but forgot to. I 
am setting out on a small journey right now, will get to it as soon as I 
get back at night.

  Clear theme for presentations


Assuming that you are already familiar with the  
http://tiddlywiki.com/talkytalky/ I have always wanted to try twine, given 
that it gives output in TW format. May be it will work for you
 

-- 
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/a4db8693-bd24-408c-a0d2-cc48ab19f126%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki Hangout #100 will be on Monday 2nd May 2016 at midday BST/UTC+1

2016-11-26 Thread PMario
Hi, 

annotation: http://hangouts.tiddlyspace.com/#HangOut_100
video: https://www.youtube.com/watch?v=Jx7PM2w9E1Y
agenda: http://hangout-100.tiddlyspot.com/

have fun!
mario

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from 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/0f6ae918-0b9b-4808-9179-5ce96857f4fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 show list of values in a field

2016-11-26 Thread Jon
Hi Mark,

The select would show the list of tiddlers tagged with "family" and the 
field values (for the field "keyword") would be in the same tiddler as the 
select widget, so there would be a drop down box and the field values are 
underneath it - sorry if it wasn't clear before.

Thanks
Jon

On Saturday, 26 November 2016 22:08:42 UTC, Mark S. wrote:
>
> Can you lay out a few tiddlers with the data the way you want?
>
> What do you expect to see in the select? Just a list of values? 
>
> When you say, "field values would be shown in the body of the tiddler" do 
> you mean in the tiddler with the select widget, or in each tiddler that has 
> been tagged with "family" ? If the latter, then what you want is set up a 
> view template. Search the forum for references to template.
>
> Good luck!
> Mark
>
>
>
> On Saturday, November 26, 2016 at 10:39:30 AM UTC-8, Jon wrote:
>>
>> Hi Mark,
>>
>> Sorry, I couldn't get that to work - no doubt it's something my end!
>>
>> This is my use case:
>>
>> I have a list of tiddlers tagged with "family" and I also want to 
>> associate various keywords with each of  them but I'd rather not add them 
>> as tags because there would be too many and they aren't tags I'd use 
>> elsewhere, so I thought I could enter them as fields instead.
>>
>> Therefore, I'd like to select a particular tiddler tagged with "family" 
>> which would then show the associated keywords (field values).
>>
>> Ideally this would be using a drop down for the list and the field values 
>> would be shown in the body of the tiddler.
>>
>> Hope that makes sense.
>>
>> Thanks
>> Jon
>>
>>
>>
>> On Thursday, 24 November 2016 17:14:28 UTC, Jon wrote:
>>>
>>> Hi,
>>>
>>> I'd like to have a drop down which selects from a list of tiddlers 
>>> tagged with "A" and simultaneously shows the values of the field "B" 
>>> associated with each tiddler.
>>>
>>> This does the first bit:
>>>
>>> <$select tiddler="$:/temp/tag1">
>>>
>>><$list filter="[tag[A]tags[]sort[]]">
>>>   >><>
>>>
>>> 
>>>
>>>
>>> (cobbled together from something else so some elements could be 
>>> unnecessary) 
>>>
>>> But I can't figure out the rest of it.
>>>
>>> I'm guessing that <$view field="B"/> would be incorporated somehow.
>>>
>>>
>>> Thanks
>>> Jon
>>>
>>

-- 
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/fe80ba25-b2d7-4949-83cf-8f26abb585ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Conditional view template Q

2016-11-26 Thread Jed Carty
You just put your test inside the conditional part of the template. 
Something like:

<$list filter='[is[current]tag[foo]]'>
<$list filter='[is[current]backlinks[]limit[1]]' variable=dummy>


!Look at me! I am a title!


<$list filter='[backlinks[]]'>








note that the variable=dummy is needed in the second list widget. It 
doesn't have to be dummy, but it has to be something. Also replace 
 [is[current]tag[foo]] with whatever filter you want for your conditional 
part.

-- 
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/9d4b9e45-cd25-481a-baf7-196ff98c1fc6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 show list of values in a field

2016-11-26 Thread 'Mark S.' via TiddlyWiki
Can you lay out a few tiddlers with the data the way you want?

What do you expect to see in the select? Just a list of values? 

When you say, "field values would be shown in the body of the tiddler" do 
you mean in the tiddler with the select widget, or in each tiddler that has 
been tagged with "family" ? If the latter, then what you want is set up a 
view template. Search the forum for references to template.

Good luck!
Mark



On Saturday, November 26, 2016 at 10:39:30 AM UTC-8, Jon wrote:
>
> Hi Mark,
>
> Sorry, I couldn't get that to work - no doubt it's something my end!
>
> This is my use case:
>
> I have a list of tiddlers tagged with "family" and I also want to 
> associate various keywords with each of  them but I'd rather not add them 
> as tags because there would be too many and they aren't tags I'd use 
> elsewhere, so I thought I could enter them as fields instead.
>
> Therefore, I'd like to select a particular tiddler tagged with "family" 
> which would then show the associated keywords (field values).
>
> Ideally this would be using a drop down for the list and the field values 
> would be shown in the body of the tiddler.
>
> Hope that makes sense.
>
> Thanks
> Jon
>
>
>
> On Thursday, 24 November 2016 17:14:28 UTC, Jon wrote:
>>
>> Hi,
>>
>> I'd like to have a drop down which selects from a list of tiddlers tagged 
>> with "A" and simultaneously shows the values of the field "B" associated 
>> with each tiddler.
>>
>> This does the first bit:
>>
>> <$select tiddler="$:/temp/tag1">
>>
>><$list filter="[tag[A]tags[]sort[]]">
>>   >><>
>>
>> 
>>
>>
>> (cobbled together from something else so some elements could be 
>> unnecessary) 
>>
>> But I can't figure out the rest of it.
>>
>> I'm guessing that <$view field="B"/> would be incorporated somehow.
>>
>>
>> Thanks
>> Jon
>>
>

-- 
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/2a8c7228-3421-4cb5-82ba-09e25353cd44%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Where to download store.php

2016-11-26 Thread 'Alex' via TiddlyWiki
Ok, found the solution myself:

1. Download from TiddlyHome-Package from 
https://code.google.com/archive/p/bidix/downloads. Extract. Copy store.php 
from lib-folder

2. Follow Instructions from 
http://www.instructables.com/id/TiddlyWiki-5-on-Raspberry-Pi-Server-in-15-minutes/?ALLSTEPS

3. User your own Home-Server-TW =)

Am Samstag, 26. November 2016 13:56:10 UTC+1 schrieb Alex:
>
> I'm looking for store.php to create a tiddlywiki-instance on my 
> home-server, but I cant download store.php from 
> https://code.google.com/p/bidix/source/browse/trunk/TiddlyHome/_th/lib/store.php.
>  
> Where can I download store.php or is it not needed anymore?
>
> Regards Alex
>

-- 
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/b2413854-5a3d-401c-80f0-6660b841c62b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [Theme] Moments: A little color won't hurt

2016-11-26 Thread Jan

Hi Riz!
This is your secound theme now which is absolutely sleek.
Bravo and Thanks a lot.
There's only tiny problems I remarked when testing: The Searchresults 
are a little in the way in mobile view. The fonts of the Selectionfields 
in the tools are invisible.

 Thanks again
Jan


PS: A big necessity for me would be a cool and clear theme for 
presentations - that means something for the Zoomin' StoryView with a 
switch forward and backward. Do you have any Ideas for that?





Am 26.11.2016 um 18:05 schrieb Riz:
Moments is a beautiful free and responsive theme available for 
wordpress. This is an adaptation of the same for TW5 platform. All the 
design credits goes to the site and the original designer.


Screenshots: http://imgur.com/a/IgzJo

To see demo and download the plugin, go to: 
http://tesseractmoments.surge.sh/


If you cannot see the left sidebar as shown in the screenshots, try 
zooming out a bit.

--
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/46e8bc61-34aa-494a-9266-3742fba19035%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/5839F57A.90406%40googlemail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Select content of TOC using multiple tags.

2016-11-26 Thread Penguinlay

>
> 
> <>
> 


Right now, I use a single tag in place of "Contents". What if the list I 
want to display as TOC has more than one tags? 

-- 
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/a55533a4-f827-4a38-886d-a7221207961e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 show list of values in a field

2016-11-26 Thread Jon
Hi Mark,

Sorry, I couldn't get that to work - no doubt its something my end!

My use case is as follows:

I have a list of tiddlers tagged with "family" and I also want to associate 
various keywords with each of  them but I'd rather not add them as tags 
because there would be too many and they aren't tags I'd use elsewhere, so 
I thought I could enter them as fields instead.

Therefore, I'd like to select a particular tiddler tagged with "family" 
which would then show the associated keywords (field values).

Ideally this would be using a drop down for the list and the field values 
would be shown in the body of the tiddler.

Hope that makes sense.

Thanks
Jon



On Thursday, 24 November 2016 17:14:28 UTC, Jon wrote:
>
> Hi,
>
> I'd like to have a drop down which selects from a list of tiddlers tagged 
> with "A" and simultaneously shows the values of the field "B" associated 
> with each tiddler.
>
> This does the first bit:
>
> <$select tiddler="$:/temp/tag1">
>
><$list filter="[tag[A]tags[]sort[]]">
>   >><>
>
> 
>
>
> (cobbled together from something else so some elements could be 
> unnecessary) 
>
> But I can't figure out the rest of it.
>
> I'm guessing that <$view field="B"/> would be incorporated somehow.
>
>
> Thanks
> Jon
>

-- 
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/9d591d95-97c8-4d0e-9c21-c4296beaf3e0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [Theme] Moments: A little color won't hurt

2016-11-26 Thread Riz
Moments is a beautiful free and responsive theme available for wordpress. 
This is an adaptation of the same for TW5 platform. All the design credits 
goes to the site and the original designer.

Screenshots: http://imgur.com/a/IgzJo

To see demo and download the plugin, go to: 
http://tesseractmoments.surge.sh/

If you cannot see the left sidebar as shown in the screenshots, try zooming 
out a bit. 

-- 
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/46e8bc61-34aa-494a-9266-3742fba19035%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Conditional view template Q

2016-11-26 Thread David Gifford
Hi all

I know how to create a conditional view template that includes a list 
widget or list-links macro. My question has to do with titles for the list. 
I would like a title before the list ("Related topics"). But I would only 
like the title to appear conditionally, if there are items in the list. So 
if, in this instance, there are no backlinks to this tiddler, the title 
"Related topics" will not show.

In TW classic terminology, "if backlinks, show list title and show list of 
links to tiddlers backlinking here." And if no backlinks, nothing appears 
in the tiddler.

Any way to do this?

-- 
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/862df4ea-0afd-49eb-b5fd-d2ef357964b7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: TiddlyWiki Hangout #101 will be on Saturday 26th November 2016 at 2pm GMT

2016-11-26 Thread Mat
The usual confusion for me: How do I join. Where's the link? :-/

<:-)

-- 
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/d12c6e87-0603-4cb5-b265-5f23d5aa6d17%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: TiddlyWiki Hangout #101 will be on Saturday 26th November 2016 at 2pm GMT

2016-11-26 Thread Rizwan Ishak
Absolutely. Thanks  From:jeremy.rus...@gmail.comSent:26 November 2016 7:26 PMTo:tiddlywiki@googlegroups.comReply to:tiddlywiki@googlegroups.comSubject:Re: [tw] Re: TiddlyWiki Hangout #101 will be on Saturday 26th November 2016 at 2pm GMT  TiddlyWiki Hangout #101 is about to startWatch at https://www.youtube.com/watch?v=nXwCm794O6MOr join in at https://hangouts.google.com/hangouts/_/ytl/EviA_wCkGF_uDl32zT2-_f0hL927oF5-SKPLnd_nBlY=Let me know if you have any trouble joiningBest wishesJeremy.On 26 Nov 2016, at 13:34, Rizwan Ishak  wrote:Is there any way to join the hangout from keyboard?
On 26-Nov-2016 6:47 PM, "PMario"  wrote:Hi,I'd suggest to talk a little bit about  - FireFox WebExtensions vs the existing mechanism, which affects TiddlyFox. It will stop working with FF51 (the next version) - The future of "active" file saving in browsers, in general. - Why it's so damned hard to do "simple things" with the browser. -m

-- 
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscribe@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/a62afb1c-416b-4478-b97a-505695cc91f7%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/CAO0b0pHW0UDJFk8RoqOtXDReZ%2Bq8hABNgciAxCa4ii%3DeoeKjZg%40mail.gmail.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/ABEE0272-294D-445B-B229-C9253D4EE439%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/583994d2.550d620a.d2c76.782e%40mx.google.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: TiddlyWiki Hangout #101 will be on Saturday 26th November 2016 at 2pm GMT

2016-11-26 Thread Jeremy Ruston
TiddlyWiki Hangout #101 is about to start

Watch at https://www.youtube.com/watch?v=nXwCm794O6M

Or join in at 
https://hangouts.google.com/hangouts/_/ytl/EviA_wCkGF_uDl32zT2-_f0hL927oF5-SKPLnd_nBlY=
 


Let me know if you have any trouble joining

Best wishes

Jeremy.

> On 26 Nov 2016, at 13:34, Rizwan Ishak  wrote:
> 
> Is there any way to join the hangout from keyboard?
> 
> 
> On 26-Nov-2016 6:47 PM, "PMario"  > wrote:
> Hi,
> 
> I'd suggest to talk a little bit about 
> 
>  - FireFox WebExtensions vs the existing mechanism, which affects TiddlyFox. 
> It will stop working with FF51 (the next version)
>  - The future of "active" file saving in browsers, in general.
>  - Why it's so damned hard 
>  to do 
> "simple things" with the browser. 
> 
> -m
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, 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/a62afb1c-416b-4478-b97a-505695cc91f7%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/CAO0b0pHW0UDJFk8RoqOtXDReZ%2Bq8hABNgciAxCa4ii%3DeoeKjZg%40mail.gmail.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/ABEE0272-294D-445B-B229-C9253D4EE439%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: TiddlyWiki Hangout #101 will be on Saturday 26th November 2016 at 2pm GMT

2016-11-26 Thread Jeremy Ruston
Hi Riz
> Is there any way to join the hangout from keyboard?
> 
Yes, you can join without a microphone or camera, and use the chat window to 
talk to others. I hope you can make it,

Best wishes

Jeremy


> 
> On 26-Nov-2016 6:47 PM, "PMario"  > wrote:
> Hi,
> 
> I'd suggest to talk a little bit about 
> 
>  - FireFox WebExtensions vs the existing mechanism, which affects TiddlyFox. 
> It will stop working with FF51 (the next version)
>  - The future of "active" file saving in browsers, in general.
>  - Why it's so damned hard 
>  to do 
> "simple things" with the browser. 
> 
> -m
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, 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/a62afb1c-416b-4478-b97a-505695cc91f7%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/CAO0b0pHW0UDJFk8RoqOtXDReZ%2Bq8hABNgciAxCa4ii%3DeoeKjZg%40mail.gmail.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/4E11C644-5A57-46D4-B135-86779236BCAC%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: TiddlyWiki Hangout #101 will be on Saturday 26th November 2016 at 2pm GMT

2016-11-26 Thread Rizwan Ishak
Is there any way to join the hangout from keyboard?

On 26-Nov-2016 6:47 PM, "PMario"  wrote:

> Hi,
>
> I'd suggest to talk a little bit about
>
>  - FireFox WebExtensions vs the existing mechanism, which affects
> TiddlyFox. It will stop working with FF51 (the next version)
>  - The future of "active" file saving in browsers, in general.
>  - Why it's so damned hard
>  to
> do "simple things" with the browser.
>
> -m
>
> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, 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/a62afb1c-416b-4478-b97a-505695cc91f7%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/CAO0b0pHW0UDJFk8RoqOtXDReZ%2Bq8hABNgciAxCa4ii%3DeoeKjZg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki Hangout #101 will be on Saturday 26th November 2016 at 2pm GMT

2016-11-26 Thread Jeremy Ruston
Hi Mario

>  - FireFox WebExtensions vs the existing mechanism, which affects TiddlyFox. 
> It will stop working with FF51 (the next version)
>  - The future of "active" file saving in browsers, in general.
>  - Why it's so damned hard 
>  to do 
> "simple things" with the browser. 

Great, I’ve updated the wiki:

http://hangout-101.tiddlyspot.com/

>  - Only about 2 weeks left, till TiddlySpace shuts down. 

The closure is already on the agenda :)

Best wishes

Jeremy.


> 
> -m
> 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, 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/E404C9F3-0D7D-4ECB-BA59-2CD9A4FC34E7%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki Hangout #101 will be on Saturday 26th November 2016 at 2pm GMT

2016-11-26 Thread PMario
one more thing: 

 - Only about 2 weeks left, till TiddlySpace shuts down. 

-m

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, 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/b96f81a6-6d01-4dbd-a8fd-1b918e29db1a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki Hangout #101 will be on Saturday 26th November 2016 at 2pm GMT

2016-11-26 Thread PMario
Hi,

I'd suggest to talk a little bit about 

 - FireFox WebExtensions vs the existing mechanism, which affects 
TiddlyFox. It will stop working with FF51 (the next version)
 - The future of "active" file saving in browsers, in general.
 - Why it's so damned hard 
 to do 
"simple things" with the browser. 

-m

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, 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/a62afb1c-416b-4478-b97a-505695cc91f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Where to download store.php

2016-11-26 Thread 'Alex' via TiddlyWiki
I'm looking for store.php to create a tiddlywiki-instance on my 
home-server, but I cant download store.php from 
https://code.google.com/p/bidix/source/browse/trunk/TiddlyHome/_th/lib/store.php.
 
Where can I download store.php or is it not needed anymore?

Regards Alex

-- 
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/3556f21f-bb55-4613-b3fe-29b338d4cde5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki Hangout #98 will be on Saturday 20th February at 3pm GMT/UTC

2016-11-26 Thread Jeremy Ruston
Great, thanks Mario, I’ve updated the YouTube description,

Best wishes

Jeremy.

> On 26 Nov 2016, at 12:08, PMario  wrote:
> 
> I know. It's late, but anyway :)
> 
> Summary: http://hangouts.tiddlyspace.com/#HangOut_098
> Video: https://www.youtube.com/watch?v=rBQkNizqZIE 
> 
> 
> have fun!
> mario

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from 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/CAB5D52D-6E01-4945-8E5D-C6C6519BFC85%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki Hangout #98 will be on Saturday 20th February at 3pm GMT/UTC

2016-11-26 Thread PMario
I know. It's late, but anyway :)

Summary: http://hangouts.tiddlyspace.com/#HangOut_098
Video: https://www.youtube.com/watch?v=rBQkNizqZIE

have fun!
mario

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from 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/0f4c7ec1-c142-40e0-bfad-b7e5767566b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.