[tw] Re: Export each tiddler plugin?

2017-06-27 Thread 'Mark S.' via TiddlyWiki

Ok, here we go. If you have your browser set with a default download 
directory, then this code can export a bunch of tiddlers all at once:

\define quotedCurrent() $(currentTiddler)$
\define filename() $(currentTiddler)$.html

List
 tiddlers to export with this tag: <$edit-text tag="input" width="50"
 placeholder="Tag name" tiddler="$:/temp/myfavtag"/>

---

<$button>Save the following tiddlers
<$list filter="[tag{$:/temp/myfavtag}]">
<$action-sendmessage
 $message="tm-download-file" 
$param="$:/core/templates/exporters/StaticRiver" 
exportFilter=<> 
filename=<>/>



<$list filter="[tag{$:/temp/myfavtag}]">
<>


HTH
Mark

-- 
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/39d86efb-3e0c-46ae-8d6f-051b91690fcc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Sort tiddlers tittles chronologically

2017-06-27 Thread PMario
On Wednesday, June 28, 2017 at 4:32:56 AM UTC+2, Mark S. wrote:
>
> You're overworking the title field. Ideally any data field in a database 
> system should only contain one type of data. By embedding the date in the 
> title, the field is actually doing 3 jobs (id, title, and date). Consider 
> adding a date field. Then you can use the nsort filter operator to sort by 
> that field.
>

+1 ... not much more to say. ...

You can play with this: <>
and 
create several tiddlers name: -300BC or whateverdate: -300
name -200  date: -200.02.28 

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/1d601493-30ba-4a10-9803-00d057cf6193%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Hide groups of fields in the EditTemplate based on prefix?

2017-06-27 Thread PMario
Hi Joshua,

IMO you just need to place your custom fields: contact.*, character.*, 
ruleset.* into your own namespace. 
eg: rpg.character.something, rpg.ruleset.*, rpg.* ... Can you see it?

Now your filter can be: [all[current]fields[]!prefix[rpg.]] +[sort[title]]

short test: <>

you can have / hide as many custom fields as you want. ... and ... you can 
have several namespaces too!

If you want to make it as short as possible you can use "_." or even "." as 
prefixes. ... but I'd go with a 3 letter prefix. It works nicely and has 
many possibilities. 

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/5b0eb312-5705-4b49-9867-a1af938173a9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Sort tiddlers tittles chronologically

2017-06-27 Thread 'Mark S.' via TiddlyWiki
You're overworking the title field. Ideally any data field in a database 
system should only contain one type of data. By embedding the date in the 
title, the field is actually doing 3 jobs (id, title, and date). Consider 
adding a date field. Then you can use the nsort filter operator to sort by 
that field.

Good luck,
Mark

On Tuesday, June 27, 2017 at 5:28:19 PM UTC-7, Eneko Gotzon wrote:
>
> Hi Code Masters.
>
> Well, I'm here once again asking another very basic question; please, 
> excuse me about that.
>
> I want the tiddlers (from a history book I'm writing) to be sorted 
> chronologically by the date displayed inside their tittle, in order to show 
> them as a list of tittles ordered from ancient times (using negative 
> numbers?) to contemporary ones (using positive numbers?).
>
> By default, TW5 can display the tiddlers as an alphabetic list. I don't 
> know if it also can display them as a chronological one.
>
> On the matter, I have not found information on the Internet. Maybe someone 
> has enough knowledge, and time, to assist me.
>
> ​Thank you very much for all your wonderful work.​
>
> ​Take care.​
>
> -- 
> Eneko Gotzon Ares
> eneko...@gmail.com 
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post 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/79a4d372-37df-41e0-8fbb-8a4b39ade63a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Export each tiddler plugin?

2017-06-27 Thread 'Mark S.' via TiddlyWiki
Oh, I just realized. If your browser isn't set to ask you how to save, the 
workflow will be *very* fast but (1) the files will be saved without an 
.html extension (2) the files will be saved with the sanitized name by 
default (3) the files will be in your designated download directory.  The 
code can be changed to fix (1) and you can set your preferred download 
directory to fix (3). But (2) means that you might need to go back to 
change the filenames.  If each tiddler had a safe "filename" field (a name 
that meets system requirements and won't be sanitized) then the code could 
be changed to use that field, so that future updates would be relatively 
painless.

Mark

On Tuesday, June 27, 2017 at 5:20:51 PM UTC-7, Mark S. wrote:
>
> Hi Dave,
>
> The rendertiddlers process doesn't put the styles into individual tiddlers 
> like the ones on your articles page. Possibly a batch file could be made 
> that would create a usable exported tiddler, but I decided to concentrate 
> on your original request.
>
> Here's what I got so far. TW was doing all sorts of weird things that I've 
> never seen before but at the last I came across an approach that seems to 
> work. Code:
>
> \define quotedCurrent() """$(currentTiddler)$"""
>
> <$list filter="[tag{$:/temp/myfavtag}]">
> <$button>Save: <>
> <$action-sendmessage $message="tm-download-file" $param=
> "$:/core/templates/exporters/StaticRiver" exportFilter=<> 
> filename=<>/>
> 
> 
>
> ---
>
> List tiddlers to export with this tag: <$edit-text tag="input" width="50" 
> placeholder="Tag name" tiddler="$:/temp/myfavtag"/>
>
> ---
>
>
> Copy and paste into an empty tiddler.
>
> Just put in the name of the tag representing the tiddlers you want to 
> export. Click on each button of each tiddler that you want to export. It 
> will offer you a sanitized file name to save under. Click and save. Since 
> you don't have to open, click on export, and select export type I think 
> you'll find the process fairly efficient.
>
> You can change the filter if you don't want to filter by tags, of course.
>
> Of course, always have backups.
>
> Mark
>
> On Tuesday, June 27, 2017 at 12:01:40 PM UTC-7, Dave Gifford - 
> http://www.giffmex.org/ wrote:
>>
>> Hi Mark
>>
>> Doesn't look like my email sent, so let me do this directly in Google 
>> groups.
>>
>> I use a number of documents, one per major topic. I have attached one to 
>> the present message.
>>
>> I have also put the Exporter macro in there so you can get at it, in the 
>> system tiddlers tab.
>>
>> On Tuesday, June 27, 2017 at 12:46:53 PM UTC-5, Mark S. wrote:
>>>
>>> It's de ja vu all over again. We had this same discussion in March!
>>>
>>> What is the exporter macro you mention? Maybe it would be possible to 
>>> put it in a loop so a single click could do an export. Hmm 1300 clicks = 
>>> 1300 seconds =~ 1/2 hours.
>>>
>>> Also, do you have the all-up version of your document somewhere?
>>>
>>> Thanks,
>>> Mark
>>>
>>> On Tuesday, June 27, 2017 at 10:33:22 AM UTC-7, David Gifford wrote:

 Yeah I would prefer something for standalone, not for node.js.

 I found the Exporter macro I was referring to, but it exports the 
 entire river of tiddlers...

 Dave

 David Gifford
 Resonate Global Mission, Mexico City


 On Tue, Jun 27, 2017 at 12:17 PM, 'Mark S.' via TiddlyWiki <
 tiddl...@googlegroups.com> wrote:

> It looks like node.js and the --rendertiddlers option is made for 
> something like that. I wonder how the linking works after the exporting?
>
> Mark
>
> On Tuesday, June 27, 2017 at 6:13:37 AM UTC-7, Dave Gifford - 
> http://www.giffmex.org/ wrote:
>>
>> Hi all
>>
>> I can't remember if there is a plugin that allows you to export all 
>> tiddlers at once as *separate* static html's, one for each tiddler. 
>> That would be helpful for me at times when I update the Stylesheet for 
>> TiddlyWiki files I use to generate statics, but don't want to export 
>> each 
>> tiddler separately to update the online version. I seem to remember once 
>> trying out a plugin that even operated by tags, but I can't remember now 
>> a) 
>> where it is or b) whether it opened a river of tiddlers and exported the 
>> whole river, or if it exported each tiddler separately.
>>
>> Does anyone know if it exists and where to find it? Or if it doesn't 
>> exist, if such a thing is possible?
>>
>> FYI at http://articulos.giffmex.org/ I have over 1300 statics 
>> generated from TW5s.
>>
>> Dave
>>
> -- 
> 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/qUTYW1knPXo/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> tiddlywiki+...@googlegroups.com.
> To post 

[tw] Sort tiddlers tittles chronologically

2017-06-27 Thread Eneko Gotzon
Hi Code Masters.

Well, I'm here once again asking another very basic question; please,
excuse me about that.

I want the tiddlers (from a history book I'm writing) to be sorted
chronologically by the date displayed inside their tittle, in order to show
them as a list of tittles ordered from ancient times (using negative
numbers?) to contemporary ones (using positive numbers?).

By default, TW5 can display the tiddlers as an alphabetic list. I don't
know if it also can display them as a chronological one.

On the matter, I have not found information on the Internet. Maybe someone
has enough knowledge, and time, to assist me.

​Thank you very much for all your wonderful work.​

​Take care.​

-- 
Eneko Gotzon Ares
enekogot...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post 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/CAEV4i4VjTh9TX-SazzrdyDqeCPQpSF34h0DpxVuEWtv_pAhy_w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Export each tiddler plugin?

2017-06-27 Thread 'Mark S.' via TiddlyWiki
Hi Dave,

The rendertiddlers process doesn't put the styles into individual tiddlers 
like the ones on your articles page. Possibly a batch file could be made 
that would create a usable exported tiddler, but I decided to concentrate 
on your original request.

Here's what I got so far. TW was doing all sorts of weird things that I've 
never seen before but at the last I came across an approach that seems to 
work. Code:

\define quotedCurrent() """$(currentTiddler)$"""

<$list filter="[tag{$:/temp/myfavtag}]">
<$button>Save: <>
<$action-sendmessage $message="tm-download-file" $param=
"$:/core/templates/exporters/StaticRiver" exportFilter=<> 
filename=<>/>



---

List tiddlers to export with this tag: <$edit-text tag="input" width="50" 
placeholder="Tag name" tiddler="$:/temp/myfavtag"/>

---


Copy and paste into an empty tiddler.

Just put in the name of the tag representing the tiddlers you want to 
export. Click on each button of each tiddler that you want to export. It 
will offer you a sanitized file name to save under. Click and save. Since 
you don't have to open, click on export, and select export type I think 
you'll find the process fairly efficient.

You can change the filter if you don't want to filter by tags, of course.

Of course, always have backups.

Mark

On Tuesday, June 27, 2017 at 12:01:40 PM UTC-7, Dave Gifford - 
http://www.giffmex.org/ wrote:
>
> Hi Mark
>
> Doesn't look like my email sent, so let me do this directly in Google 
> groups.
>
> I use a number of documents, one per major topic. I have attached one to 
> the present message.
>
> I have also put the Exporter macro in there so you can get at it, in the 
> system tiddlers tab.
>
> On Tuesday, June 27, 2017 at 12:46:53 PM UTC-5, Mark S. wrote:
>>
>> It's de ja vu all over again. We had this same discussion in March!
>>
>> What is the exporter macro you mention? Maybe it would be possible to put 
>> it in a loop so a single click could do an export. Hmm 1300 clicks = 1300 
>> seconds =~ 1/2 hours.
>>
>> Also, do you have the all-up version of your document somewhere?
>>
>> Thanks,
>> Mark
>>
>> On Tuesday, June 27, 2017 at 10:33:22 AM UTC-7, David Gifford wrote:
>>>
>>> Yeah I would prefer something for standalone, not for node.js.
>>>
>>> I found the Exporter macro I was referring to, but it exports the entire 
>>> river of tiddlers...
>>>
>>> Dave
>>>
>>> David Gifford
>>> Resonate Global Mission, Mexico City
>>>
>>>
>>> On Tue, Jun 27, 2017 at 12:17 PM, 'Mark S.' via TiddlyWiki <
>>> tiddl...@googlegroups.com> wrote:
>>>
 It looks like node.js and the --rendertiddlers option is made for 
 something like that. I wonder how the linking works after the exporting?

 Mark

 On Tuesday, June 27, 2017 at 6:13:37 AM UTC-7, Dave Gifford - 
 http://www.giffmex.org/ wrote:
>
> Hi all
>
> I can't remember if there is a plugin that allows you to export all 
> tiddlers at once as *separate* static html's, one for each tiddler. 
> That would be helpful for me at times when I update the Stylesheet for 
> TiddlyWiki files I use to generate statics, but don't want to export each 
> tiddler separately to update the online version. I seem to remember once 
> trying out a plugin that even operated by tags, but I can't remember now 
> a) 
> where it is or b) whether it opened a river of tiddlers and exported the 
> whole river, or if it exported each tiddler separately.
>
> Does anyone know if it exists and where to find it? Or if it doesn't 
> exist, if such a thing is possible?
>
> FYI at http://articulos.giffmex.org/ I have over 1300 statics 
> generated from TW5s.
>
> Dave
>
 -- 
 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/qUTYW1knPXo/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com.
 To post to this group, send email to tiddl...@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/79be6f64-0592-480c-ba78-f423de9451f3%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 

[tw] [TW5] List indirectly-related Tiddlers

2017-06-27 Thread Fei-Ling Tseng
Hi all,

I'm in the process of building the ultimate CV generator for the company I 
work for.
Just started using TiddlyWiki and am incredibly excited to utilize the 
tagging system - a feature I've looked everywhere for.

My current problem is this: I want to get a list of Tiddlers that are 
indirectly related to the current Tiddler via tagging. The relationship:

   - There is a Tiddler with the team member's name (John Doe) where I want 
   a dynamic list of their Products and Awards to appear.
   - There are Tiddlers with the name of the Product (Thingy) tagged with 
   the team member's name.
   - Then there are Tiddlers with the name of the Award (2017 Best Product 
   in the World) tagged with the product name.
   - Basically, I want all team members who worked on a Product to also get 
   the corresponding Awards that are related to that Product.

How would I go on about formulating this? I've tried to figure out where to 
start but every example I've read up on only goes one relationship deep - 
not two.

Thanks in advance for any thoughts or input you might have on this.

Cheers,

Fei

-- 
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/35a9a7d4-921d-4d75-817a-27a63e90ecc0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Hide groups of fields in the EditTemplate based on prefix?

2017-06-27 Thread Joshua Fontany
Hi everyone,

I'm back hacking at my RPG Tiddlywiki, and I have a few things figured out 
(conditional ViewTemplate and EditTemplate stuff).

I'm stuck on how to implement the following:

I have a ton of tiddler fields that are specific to a tiddler type (Player, 
Character, Location, etc). I have made custom UI to display in a tiddler's 
ViewTemplate and EditTemplate if it is tagged with one of these core 
types. The conditional EditTemplate allows editing a formatted set of 
fields (hiding their field names for more friendly names). These are fields 
that start like contact.*, character.*, ruleset.*. I would like to hide 
these specific fields from being displayed at the bottom of the normal 
EditTemplate.

I understand that the usual way of doing this would be to create a bunch of 
tiddlers in the namespace:
$:/config/EditTemplateFields/Visibility/ 

*

But, I want to avoid having to track individual tiddlers for fields like 
that (I intend to have a lot of fields).

So! How can I edit the *$:/core/ui/EditTemplate/fields* tiddler so that 
those fields with prefixes in my list are not displayed? Ideally, with a 
way to toggle that function so that you can hide or show the "duplaicate" 
fields in the EditTemplate.

I have something working by storing some Regex in my 
*$:/config/EditTemplateFields/Hidden/prefixes* tiddler's text field and 
editing the Filter in the EditTemplate tiddler from:
[all[current]fields[]] +[sort[title]]
to:
[all[current]fields[]!regexp{$:/config/EditTemplateFields/Hidden/prefixes}] 
+[sort[title]]


But this means that I have to manage that Regex string myself, which will 
get unwieldy when that list grows. Currently, for 2 prefixes the Regex 
looks like:
^contact\.|^ed4\.

And that successfully hides all fields that start with "Contact." or "ed4." 
But I'm stuck on how to toggle this or manage it going forward.

Any ideas?

-- 
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/04315eb6-6b09-4176-95f8-043d7c86b9a9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Introducing my Plugin Library

2017-06-27 Thread wimm
the colorfull background image is stored in :
$:/plugins/ajh/randombackground/background0 


-- 
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/f7250856-e941-44f5-a1a8-2fa54139b861%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Performance comparision between [is[current]] and

2017-06-27 Thread Evolena
Maybe the name is not the more intuitive, but the Javascript code is clear 
: [all[current]] doesn't iterate each tiddler (as all[missing] or 
all[orphans] do), it simply returns the currentTiddler variable if it 
exists, and an empty list if it doesn't. While [is[current]] without any 
selector implicitely iterates over all[tiddlers] (and so, the selection of 
tiddlers will become empty if the currentTiddler happens to be a pure 
shadow tiddler).
I think is[current] only remains for backward compatibility, I've never 
seen it used where all[current] wouldn't do the job.

But  is clear, and can be used instead of all[current] with 
similar performances (maybe only a difference if there is no tiddler in the 
currentTiddler variable, but I don't think so), so pick the one you prefer 
:)



Le mardi 27 juin 2017 19:23:14 UTC+2, Danielo Rodríguez a écrit :
>
> To be honest, for me the current API is quite confusing.
>
> all[current]  seems odd to me. Makes me think I am going to iterate all 
> the tiddlers just to get the current one. Which is more or less what I 
> though is[current] does.
> In the documentation we should make clearer that is[current] to select the 
> current tiddler is discouraged.
>
> Regards
>

-- 
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/3f7b8efc-6c06-4e86-97cb-ace8682d4142%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Export each tiddler plugin?

2017-06-27 Thread 'Mark S.' via TiddlyWiki
It's de ja vu all over again. We had this same discussion in March!

What is the exporter macro you mention? Maybe it would be possible to put 
it in a loop so a single click could do an export. Hmm 1300 clicks = 1300 
seconds =~ 1/2 hours.

Also, do you have the all-up version of your document somewhere?

Thanks,
Mark

On Tuesday, June 27, 2017 at 10:33:22 AM UTC-7, David Gifford wrote:
>
> Yeah I would prefer something for standalone, not for node.js.
>
> I found the Exporter macro I was referring to, but it exports the entire 
> river of tiddlers...
>
> Dave
>
> David Gifford
> Resonate Global Mission, Mexico City
>
>
> On Tue, Jun 27, 2017 at 12:17 PM, 'Mark S.' via TiddlyWiki <
> tiddl...@googlegroups.com > wrote:
>
>> It looks like node.js and the --rendertiddlers option is made for 
>> something like that. I wonder how the linking works after the exporting?
>>
>> Mark
>>
>> On Tuesday, June 27, 2017 at 6:13:37 AM UTC-7, Dave Gifford - 
>> http://www.giffmex.org/ wrote:
>>>
>>> Hi all
>>>
>>> I can't remember if there is a plugin that allows you to export all 
>>> tiddlers at once as *separate* static html's, one for each tiddler. 
>>> That would be helpful for me at times when I update the Stylesheet for 
>>> TiddlyWiki files I use to generate statics, but don't want to export each 
>>> tiddler separately to update the online version. I seem to remember once 
>>> trying out a plugin that even operated by tags, but I can't remember now a) 
>>> where it is or b) whether it opened a river of tiddlers and exported the 
>>> whole river, or if it exported each tiddler separately.
>>>
>>> Does anyone know if it exists and where to find it? Or if it doesn't 
>>> exist, if such a thing is possible?
>>>
>>> FYI at http://articulos.giffmex.org/ I have over 1300 statics generated 
>>> from TW5s.
>>>
>>> Dave
>>>
>> -- 
>> 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/qUTYW1knPXo/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> tiddlywiki+...@googlegroups.com .
>> To post to this group, send email to tiddl...@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/79be6f64-0592-480c-ba78-f423de9451f3%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/dfc39e89-af20-4741-bf6b-441bcaa447c3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Introducing my Plugin Library

2017-06-27 Thread Jed Carty
Someone else has made a plugin library!! Now I just need to actually update 
mine more often.

I would love to take a look at it but I can't actually read anything on the 
site. That background makes it almost impossible for me to read anything 
and now I have a headache.

As a note for the future, that background is almost exactly what not to do 
to make something readable for someone who is dyslexic.

-- 
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/81ae4196-9147-4b12-9c5f-8bdead2947f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Export each tiddler plugin?

2017-06-27 Thread David Gifford
Yeah I would prefer something for standalone, not for node.js.

I found the Exporter macro I was referring to, but it exports the entire
river of tiddlers...

Dave

David Gifford
Resonate Global Mission, Mexico City


On Tue, Jun 27, 2017 at 12:17 PM, 'Mark S.' via TiddlyWiki <
tiddlywiki@googlegroups.com> wrote:

> It looks like node.js and the --rendertiddlers option is made for
> something like that. I wonder how the linking works after the exporting?
>
> Mark
>
> On Tuesday, June 27, 2017 at 6:13:37 AM UTC-7, Dave Gifford -
> http://www.giffmex.org/ wrote:
>>
>> Hi all
>>
>> I can't remember if there is a plugin that allows you to export all
>> tiddlers at once as *separate* static html's, one for each tiddler. That
>> would be helpful for me at times when I update the Stylesheet for
>> TiddlyWiki files I use to generate statics, but don't want to export each
>> tiddler separately to update the online version. I seem to remember once
>> trying out a plugin that even operated by tags, but I can't remember now a)
>> where it is or b) whether it opened a river of tiddlers and exported the
>> whole river, or if it exported each tiddler separately.
>>
>> Does anyone know if it exists and where to find it? Or if it doesn't
>> exist, if such a thing is possible?
>>
>> FYI at http://articulos.giffmex.org/ I have over 1300 statics generated
>> from TW5s.
>>
>> Dave
>>
> --
> 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/qUTYW1knPXo/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/79be6f64-0592-480c-ba78-f423de9451f3%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/CANE%3DBFJ7KOGpNzeo4AObg_Wvvnr6dZLWiu%2BPThDUjX--MFpWYA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Performance comparision between [is[current]] and

2017-06-27 Thread Danielo Rodríguez
To be honest, for me the current API is quite confusing.

all[current]  seems odd to me. Makes me think I am going to iterate all the 
tiddlers just to get the current one. Which is more or less what I though 
is[current] does.
In the documentation we should make clearer that is[current] to select the 
current tiddler is discouraged.

Regards

-- 
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/adea83d3-935e-47ad-a7ae-a3c5d6e82f71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Export each tiddler plugin?

2017-06-27 Thread 'Mark S.' via TiddlyWiki
It looks like node.js and the --rendertiddlers option is made for something 
like that. I wonder how the linking works after the exporting?

Mark

On Tuesday, June 27, 2017 at 6:13:37 AM UTC-7, Dave Gifford - 
http://www.giffmex.org/ wrote:
>
> Hi all
>
> I can't remember if there is a plugin that allows you to export all 
> tiddlers at once as *separate* static html's, one for each tiddler. That 
> would be helpful for me at times when I update the Stylesheet for 
> TiddlyWiki files I use to generate statics, but don't want to export each 
> tiddler separately to update the online version. I seem to remember once 
> trying out a plugin that even operated by tags, but I can't remember now a) 
> where it is or b) whether it opened a river of tiddlers and exported the 
> whole river, or if it exported each tiddler separately.
>
> Does anyone know if it exists and where to find it? Or if it doesn't 
> exist, if such a thing is possible?
>
> FYI at http://articulos.giffmex.org/ I have over 1300 statics generated 
> from TW5s.
>
> 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/79be6f64-0592-480c-ba78-f423de9451f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [OffTopic] Anyone going to FrOSCon this year

2017-06-27 Thread Stephan Hradek
Hi,

will anyone of you come to FrOSCon this year? https://www.froscon.de/en/

I will be there the third time now this year and it was each time very 
interesting. My son will be a tutor for the FrogLabs, so if you want to 
bring your kids, make sure to book FrogLabs for them ;) 
https://www.teckids.org/froglabs_2017_froscon.htm <- Shameless ad-link ;)

Hope to see some of you at FrOSCon 2017

-- Stephan




-- 
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/832d1847-18c6-42a7-b0a3-a04f53bd75fb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How do I center an image?

2017-06-27 Thread Mat
@charlyc..

If it is just horizontal centering you want, then it should be enough to do 
this

your image

<:-)

-- 
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/f5b2a3b5-b35b-4f8f-a283-c71ff20565f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: w5.com-docs plugin

2017-06-27 Thread Sergei Gerasenko
Awesome, Ton. You rock.

On Tue, Jun 27, 2017 at 10:20 AM, Ton Gerner  wrote:

> Hi Sergei,
>
>>
>> Worked like a charm.
>>
>> One thing that I didn't like about the doc plugin is that it showed this
>> ribbon even when I was trying to edit my own tiddlers:
>>
>> "Can you help us improve this documentation? Find out how
>>  to edit this
>> tiddler on GitHub
>> 
>> "
>>
>> Is that a bug or a feature?
>>
>
> That is the Contribution banner ($:/ContributionBanner tagged with
> $:/tags/EditTemplate) as used at http://tiddlywiki.com/ to ease improving
> documentation at Github.
> If you see it with normal tiddlers as well it looks like like a bug to me.
>
> Anyhow you can get rid of the banner by removing the tag
> $:/tags/EditTemplate from $:/ContributionBanner which means the shadow
> tiddler $:/ContributionBanner has been overridden by your version of
> $:/ContributionBanner without the tag.
>
> Cheers,
>
> Ton
>
> --
> 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/nAZ_fyOMz_M/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/fb91d9e6-a646-439e-96b0-af5caf78049e%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/CADM1pVzx7CGUZhYz2jA%2BbTajisvqQ0Y6jGM_25yjoD_1WCHyjA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: w5.com-docs plugin

2017-06-27 Thread Ton Gerner
Hi Sergei,

>
> Worked like a charm.
>
> One thing that I didn't like about the doc plugin is that it showed this 
> ribbon even when I was trying to edit my own tiddlers:
>
> "Can you help us improve this documentation? Find out how 
>  to edit this 
> tiddler on GitHub 
> 
> "
>
> Is that a bug or a feature? 
>

That is the Contribution banner ($:/ContributionBanner tagged with 
$:/tags/EditTemplate) as used at http://tiddlywiki.com/ to ease improving 
documentation at Github.
If you see it with normal tiddlers as well it looks like like a bug to me.

Anyhow you can get rid of the banner by removing the tag 
$:/tags/EditTemplate from $:/ContributionBanner which means the shadow 
tiddler $:/ContributionBanner has been overridden by your version of 
$:/ContributionBanner without the tag.

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 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/fb91d9e6-a646-439e-96b0-af5caf78049e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: w5.com-docs plugin

2017-06-27 Thread Sergei Gerasenko
Hi Ton,

Worked like a charm.

One thing that I didn't like about the doc plugin is that it showed this
ribbon even when I was trying to edit my own tiddlers:

"Can you help us improve this documentation? Find out how
 to edit this
tiddler on GitHub

"

Is that a bug or a feature?

Sergei

On Tue, Jun 27, 2017 at 8:02 AM, Ton Gerner  wrote:

> Hi Sergei,
>
> I created an issue at Github
>  about the Dos
> plugin and searching.
>
> The .tip macro and associated classes can be found in $:/editions/
> tw5.com/doc-macros:
> The classes itself can be found in $:/editions/tw5.com/doc-styles
>
> Cheers,
>
> Ton
>
>
> --
> 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/nAZ_fyOMz_M/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/b49dec7c-7fbf-4650-bbba-935b23afd14f%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/CADM1pVyBZjdui__AAkErNLWsupwP9Ntebvpv3Q%3DYA26avx%3DFQg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Export each tiddler plugin?

2017-06-27 Thread Dave Gifford - http://www.giffmex.org/
Hi all

I can't remember if there is a plugin that allows you to export all 
tiddlers at once as *separate* static html's, one for each tiddler. That 
would be helpful for me at times when I update the Stylesheet for 
TiddlyWiki files I use to generate statics, but don't want to export each 
tiddler separately to update the online version. I seem to remember once 
trying out a plugin that even operated by tags, but I can't remember now a) 
where it is or b) whether it opened a river of tiddlers and exported the 
whole river, or if it exported each tiddler separately.

Does anyone know if it exists and where to find it? Or if it doesn't exist, 
if such a thing is possible?

FYI at http://articulos.giffmex.org/ I have over 1300 statics generated 
from TW5s.

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/3941b8f6-1fd8-497d-a1a0-7e1ab46ce45a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Zotero

2017-06-27 Thread Jan Johannpeter
Hi Steve,
I had a Zotero-Workflow ( which was posted here about two Years ago). But
seeing the actual development I have switched to using Zoteros
bibtex-Export and the Bibtex-plugin.
It would be great if someone integrated a macro to make the links to
Bibtex-tiddlers show a quotable title.

Yours Jan
stevesuny  schrieb am Di. 27. Juni 2017 um 14:30:

> Hello everyone, I'm re=starting this thread to see if anyone has developed
> a technique to integrate Zotero with TiddlyWiki...//steve.
>
>
> On Thursday, September 24, 2015 at 3:30:20 PM UTC+2, Camille Hamon wrote:
>>
>> Hello,
>>
>> I was wondering if there is any update on this? According to
>> https://forums.zotero.org/discussion/24241/linking-to-zotero-items-via-zoteroselect/,
>> the zotero:// links did not work from a local HTML document, which is why,
>> I believe, the links don't work from a local tiddlywiki. Is there a
>> workaround?
>>
>> Kind regards
>> Camille
>>
>> Le mardi 29 juillet 2014 00:05:47 UTC+2, Daniel Riggins a écrit :
>>>
>>> Thanks for the info Alberto. Since there isn't straight-forward way to
>>> connect the apps to each other yet, I've started dragging and dropping
>>> citations into relevant tiddlers.
>>>
>>> Also, I thought it might be useful to direct people in a Zotero forum
>>> thread to this discussion:
>>> https://forums.zotero.org/discussion/2628/tiddlywiki-as-a-zotero-database-presentation-layer/
>>> On Thursday, June 19, 2014 12:53:40 PM UTC-4, Alberto Molina wrote:

 Hi Dan,


> I'm intrigued by how Alberto Molina uses Zotero with his wiki, but I
> can't find any documentation on how to use them together. There's 
> obviously
> been some modifications, but I don't see any obvious plugins listed or 
> that
> kind of thing. Any help would be appreciated.
>

 In tiddlywiki classic, under Firefox, I used to have links like that:

 Open with [[Zotero|zotero://select/items/2807]]

 On click, it opens the zotero panel and shows the item number 2807.

 You can also show a report for that item with:

 zotero://report/items/2807_FPWJVDDZ/html/report.html

 Unfortunately, the protocol zotero:// is not suported by TW5 (at the
 moment). And I don't know if it will be. Maybe Jeremy or another TW guru
 could answer.

 Thus, currently, I use zotero to store and manage my bibliography, and
 I use TW5 to manage quotes, notes, ideas, etc., related with those
 documents. But with no inter-relation between one and the other :(

 Regards,
 Alberto



 --
> 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/39158ad0-a60a-42da-b944-f6ef927e4923%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/CALdpFy2iH%3DO7ccKPNRz%2B5N3%2BAKmmnf8c%2BuBx8rMR8KR%3Dy8jk2g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: w5.com-docs plugin

2017-06-27 Thread Ton Gerner
Hi Sergei,

I created an issue at Github 
 about the Dos plugin 
and searching.

The .tip macro and associated classes can be found in 
$:/editions/tw5.com/doc-macros:
The classes itself can be found in $:/editions/tw5.com/doc-styles

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 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/b49dec7c-7fbf-4650-bbba-935b23afd14f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Request, if possible: Export all tiddlers as separate html

2017-06-27 Thread Dave Gifford - http://www.giffmex.org/
Hi all

I continue to use TW5 everyday for generating static htmls (over 1300, 
found at http://articulos.giffmex.org/). 

There are times when I wish there were a button plugin that allowed me the 
possibility of exporting all non-system tiddlers, not as one long rive

-- 
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/419a092f-e433-464e-ad31-d49d6e112d14%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: w5.com-docs plugin

2017-06-27 Thread Sergei Gerasenko
Hi Ton,

Curious if you know. There's a *.tip* macro in the documentation wiki that
I really like. I shows a white lightbulb on a blue background. The empty
wiki does include the tip image itself (white on black), but not the macro
and associated css. What's the easiest way to duplicate that without
installing the documentation plugin?

Thanks,
  Sergei

On Mon, Jun 26, 2017 at 9:53 AM, Ton Gerner  wrote:

> Hi Sergei,
>
> Thank you much for your time and expertise.
>>
>> You're welcome.
>
> Using Advanced search gives results with many "real" shadow tiddlers
> (starting with $:/).
> Yo can create a special Docs search tab:
>
> 1) Clone $:/core/ui/AdvancedSearch/Shadows and name it e.g.
> $:/core/ui/AdvancedSearch/Docs
> 2) Search for the part
>
> <$list 
> filter="[all[shadows]search{$:/temp/advancedsearch}sort[title]limit[250]]
> -[[$:/temp/advancedsearch]]" template="$:/core/ui/ListItemTemplate"/>
>
> 3) Add `!prefix[$:/]` as follows:
>
> <$list filter="[all[shadows]!prefix[$:/]search{$:/temp/
> advancedsearch}sort[title]limit[250]] -[[$:/temp/advancedsearch]]"
> template="$:/core/ui/ListItemTemplate"/>
>
> 4) Replace the contents of the caption field with e.g. Docs
> 5) Save
>
> This will give you an extra tab Docs in Advanced search which gives
> results without tiddlers starting with `$:/`
>
> Hope that helps.
>
> Cheers,
>
> Ton
>
> --
> 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/nAZ_fyOMz_M/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/11a30306-1a01-42a7-a03a-ae585cb9a5ad%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/CADM1pVx74jnvrdLd6_SiN9%2B%2BPnWd%3DFhQsXQw2u-J1hf%2BuhSCgw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Zotero

2017-06-27 Thread stevesuny
Hello everyone, I'm re=starting this thread to see if anyone has developed 
a technique to integrate Zotero with TiddlyWiki...//steve.

On Thursday, September 24, 2015 at 3:30:20 PM UTC+2, Camille Hamon wrote:
>
> Hello,
>
> I was wondering if there is any update on this? According to 
> https://forums.zotero.org/discussion/24241/linking-to-zotero-items-via-zoteroselect/,
>  
> the zotero:// links did not work from a local HTML document, which is why, 
> I believe, the links don't work from a local tiddlywiki. Is there a 
> workaround?
>
> Kind regards
> Camille
>
> Le mardi 29 juillet 2014 00:05:47 UTC+2, Daniel Riggins a écrit :
>>
>> Thanks for the info Alberto. Since there isn't straight-forward way to 
>> connect the apps to each other yet, I've started dragging and dropping 
>> citations into relevant tiddlers. 
>>
>> Also, I thought it might be useful to direct people in a Zotero forum 
>> thread to this discussion: 
>> https://forums.zotero.org/discussion/2628/tiddlywiki-as-a-zotero-database-presentation-layer/
>> On Thursday, June 19, 2014 12:53:40 PM UTC-4, Alberto Molina wrote:
>>>
>>> Hi Dan,
>>>  
>>>
 I'm intrigued by how Alberto Molina uses Zotero with his wiki, but I 
 can't find any documentation on how to use them together. There's 
 obviously 
 been some modifications, but I don't see any obvious plugins listed or 
 that 
 kind of thing. Any help would be appreciated.

>>>
>>> In tiddlywiki classic, under Firefox, I used to have links like that:
>>>
>>> Open with [[Zotero|zotero://select/items/2807]] 
>>>
>>> On click, it opens the zotero panel and shows the item number 2807.
>>>
>>> You can also show a report for that item with:
>>>
>>> zotero://report/items/2807_FPWJVDDZ/html/report.html
>>>
>>> Unfortunately, the protocol zotero:// is not suported by TW5 (at the 
>>> moment). And I don't know if it will be. Maybe Jeremy or another TW guru 
>>> could answer.
>>>
>>> Thus, currently, I use zotero to store and manage my bibliography, and I 
>>> use TW5 to manage quotes, notes, ideas, etc., related with those documents. 
>>> But with no inter-relation between one and the other :(
>>>
>>> Regards,
>>> Alberto
>>>
>>>
>>>
>>>

-- 
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/39158ad0-a60a-42da-b944-f6ef927e4923%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How do I center an image?

2017-06-27 Thread PMario
Hi
You may have a look here: 
https://groups.google.com/d/msg/tiddlywiki/Fbeo5zYZJp4/atBd8-D4AwAJ I did 
link a json file to the post, that you can drag & drop import. It contains 
a macro, that lets you float text around and image, or center it. 

have fun!
mario


On Tuesday, June 27, 2017 at 4:59:16 AM UTC+2, charleyc...@gmail.com wrote:
>
> I'm trying to bring an image to the middle of a toddler. I'm using the 
> format [img[http://image hosting.com/image.png] 
> ].
>
> How do I accomplish 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/d804aa12-2ea3-4e46-a494-c5688cb9d8d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Introducing my Plugin Library

2017-06-27 Thread PMario
Hi Andrew,

Nice work. except the background. 

Sorry to say this but IMO you have to be completely color blind, to be able 
to read anything on the page. 
-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/1832a338-c42b-44e9-b3cb-b0017b93086b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Performance comparision between [is[current]] and

2017-06-27 Thread Evolena
Hello,

is[current] is a selection modifier, so it acts on a selection of tiddlers. 
If you don't select tiddlers beforehand with a selection constructor 
 (all, title, list, ...), 
it operates on all[tiddlers] by default. So in order to select directly the 
current tiddler, the best operator is all[current]. is[current] is better 
used for checking if a tiddler amongst a tiddlers previously selected is 
the currentTiddler, it should not be used as a first step. 

If you run your test, you can see that all[current] has approximatively the 
same performances as .

NB
This commit 

 
introduced the all[current] instead of is[current] whose two roles as 
selector and modifier were misleading.
I think there has been discussions about is[current] and all[current] in 
the past years, but... "all is current operator" is not a distinctive 
search enough...

Le mardi 27 juin 2017 01:59:10 UTC+2, Mat a écrit :
>
> Had no idea one could do this! Here are my results, running it on 
> tiddlywiki.com on my win10 chrome:
>
> 49:16
> 49:27 <– 11 seconds for 
> 49:54 <– 27 seconds for is[current]
>
> switching places (no idea if that makes sense but anyway):
>
> 53:57
> 54:25 <– 28 sec for is[current]
> 54:40 <– 15 sec for 
>
> Winner:  at about half the time!
>

-- 
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/40eb0535-ccde-4bc8-a9db-126429440d08%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Introducing my Plugin Library

2017-06-27 Thread Danielo Rodríguez
Hey, I have a couple of questions:

The first and most important, because the other questions depend on this one

   1. Can I add your plugin library as part of the default distribution of 
   NoteSelf ?

Now the questions if you answer yes to the first one

   1. Does your plugin library plugin live on any github repository ? If 
   so, which one?
   2. Is there any particular build process that I can use to automatically 
   build your plugin so I can always include the latest version ?

Thanks and regards

-- 
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/7ff074eb-c575-4cf9-9576-ba2b28bc2b26%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Dungeon Game in TW : The URL

2017-06-27 Thread Jan

Ahgrrr!
I forgot the URL:
http://roguelike.tiddlyspot.com/

Am 27.06.2017 um 11:35 schrieb Jan:

Hi!
Through this year I used TW in my class to write textadvantures.
Therefore I made a wiki to explore the possibilities to use TW as a 
plattform a dungeonlike game.
There are some nice tricks in it and I made a first level to 
demonstrate what interactions are possible so far.
It has an integrated Level-Editor and most of the mechanisms are 
explained, so I would be happy if someone built a level and mailed it 
back to me.


Enjoy
Jan


--
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/5952281E.6010603%40googlemail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Dungeon Game in TW

2017-06-27 Thread Jan

Hi!
Through this year I used TW in my class to write textadvantures.
Therefore I made a wiki to explore the possibilities to use TW as a 
plattform a dungeonlike game.
There are some nice tricks in it and I made a first level to demonstrate 
what interactions are possible so far.
It has an integrated Level-Editor and most of the mechanisms are 
explained, so I would be happy if someone built a level and mailed it 
back to me.


Enjoy
Jan

--
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/595226D8.2080402%40googlemail.com.
For more options, visit https://groups.google.com/d/optout.