[tw] Re: TiddlyWiki5 password protection

2015-06-05 Thread Steve Meacham
Thank you all.  I now see what I was missing.  In order to add the 
username/password to the command line, I needed to add all the preceding 
parameters, even though they have default parameters.  Thanks!

As for how I set up Nginx to forward, here's the config for it, below.  I'm 
sure it could be simplified, though.
For this to work, you need to create (or buy) the SSL cert and key. 
 There's lots of guides and ways to do that on the web.  Also, I created 
the dhparam.pem file to increase security, but it isn't necessary.  Again, 
there are guides on how.

server {

listen  80;

server_name my.domain.name;

return  301 https://$host$request_uri;

}


server {

listen  443;

server_name my.domain.name;


ssl_certificate /etc/nginx/ssl/my.domain.name.crt;

ssl_certificate_key /etc/nginx/ssl/my.domain.name.key;


ssl on;

ssl_session_cache   builtin:1000  shared:SSL:10m;

ssl_protocols   TLSv1 TLSv1.1 TLSv1.2;

ssl_ciphers 
'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA';

ssl_prefer_server_ciphers   on;

ssl_dhparam /etc/nginx/ssl/dhparam.pem;


access_log  /var/log/nginx/my.domain.name.log;


location / {

proxy_set_headerHost $host;

proxy_set_headerX-Real-IP $remote_addr;

proxy_set_headerX-Forwarded-For 
$proxy_add_x_forwarded_for;

proxy_set_headerX-Forwarded-Proto $scheme;


# Fix the “It appears that your reverse proxy set up is 
broken" error.

proxy_pass  http://localhost:8080;

proxy_read_timeout  90;


proxy_redirect  http://localhost:8080 
https://my.domain.name;

}

}

On Friday, June 5, 2015 at 12:38:17 PM UTC-5, Steve Meacham wrote:
>
> My goal is to have a private but web-accessible TiddlyWiki5.  So far, I 
> have it running on Debian using node.js.  Nginx is a reverse proxy, making 
> it accessible only by using HTTPS (SSL).  All of this works.
>
> What remains is to prevent others from seeing or modifying it's content. 
>  I don't understand how the TiddlyWiki5's password feature(s) work.  Can 
> they put it behind a password wall?  Or maybe there is some form of 
> authentication that nginx can add?
>
> Please advise.  Several days of searching here and through Google have 
> left me still empty-handed.
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9fdaa23b-7b38-4f36-bc0f-9acd440c8b6f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: TiddlyWiki5 password protection

2015-06-05 Thread Jeremy Ruston
Hi Steve




The best approach here is probably to add a username and password to the 
--server command:





http://tiddlywiki.com/#ServerCommand





Best wishes




Jeremy



—
jeremy.rus...@gmail.com

On Fri, Jun 5, 2015 at 9:58 PM, 'c pa' via TiddlyWiki
 wrote:

> Password access is configured on the "Saving"  tab of $:/ControlPanel 
> (Accessible from the little gear icon above the menu)
> Once you set a password and save the tiddlywiki is protected so you need 
> the password to edit it. You can still read it. So give the password to 
> anyone you want to edit and don't to the rest.
> -- 
> 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 http://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/8bc86a97-d59a-4be0-a8e6-d7dbe730a37f%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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1433538066523.f27f9dc8%40Nodemailer.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5 Workflow] Presenting the SideEditor plugin!

2015-06-05 Thread Andreas Hahn

Am 05.06.2015 um 22:28 schrieb Sylvain Naudin:


Very interesting Andreas ! I like Undo Redo button for example,  and 
color choice :)


Thanks, the implementation is very basic and when using it, you should 
consider putting "$:/temp" on the list of tiddler-prefix that aren't 
saved, since it will make several copies of your original tiddler. It is 
possible to use a more elegant algorithm, that only uses one full copy 
of the tiddler you are editing.


By the way, nearly everything you see is implemented with action widgets 
(except the change-tracking logic) and is located in 
"$:/plugins/ahahn/unibar/FNT/action-logic" (changeTracking and story 
logic) and "$:/plugins/ahahn/unibar/FNT/buttons" (for the actual buttons).


/Andreas

--
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/55720D98.3080908%40googlemail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki5 password protection

2015-06-05 Thread 'c pa' via TiddlyWiki
Password access is configured on the "Saving"  tab of $:/ControlPanel 
(Accessible from the little gear icon above the menu)

Once you set a password and save the tiddlywiki is protected so you need 
the password to edit it. You can still read it. So give the password to 
anyone you want to edit and don't to the rest.

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8bc86a97-d59a-4be0-a8e6-d7dbe730a37f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki5 password protection

2015-06-05 Thread Sylvain Naudin
Hi Steve,

Le vendredi 5 juin 2015 19:38:17 UTC+2, Steve Meacham a écrit :
>
> My goal is to have a private but web-accessible TiddlyWiki5.  So far, I 
> have it running on Debian using node.js.  Nginx is a reverse proxy, making 
> it accessible only by using HTTPS (SSL).  All of this works.
>

Do you have followed howto and/or have you a link, just be curious :) I 
play with Node.js since 2 days, and SSL sound great (I've PI 2).

 

> What remains is to prevent others from seeing or modifying it's content. 
>  I don't understand how the TiddlyWiki5's password feature(s) work.  Can 
> they put it behind a password wall?  Or maybe there is some form of 
> authentication that nginx can add?
>

Did you notice that with Node.js you can configure your login/password on 
command line ? Do you see this :  http://tiddlywiki.com/#ServerCommand
With this, you have to complete login/password modal before you can access 
your tiddlywiki.
Is that you want ?

(If you want read access only, I don't have the answer, so I'm interesting 
too ^^')

Cheers,
Sylvain

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cce08490-3548-4978-aa42-5eaefda13a3c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5 Workflow] Presenting the SideEditor plugin!

2015-06-05 Thread Sylvain Naudin


Le mardi 2 juin 2015 20:14:23 UTC+2, Andreas Hahn a écrit :
>
> Hi Mat, 
>
> I like it, nice work ! I experimented with a similiar concept, but I 
> failed to come up with anything significant. 
> Still you might like to take a look and steal some features, you can use 
> for your editor. (Feel free to copy&paste) 
> You can find that here: http://twguides.org/wiki/unibar.html 
>


Very interesting Andreas ! I like Undo Redo button for example,  and color 
choice :)

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/db9e0491-c1e0-4550-8bc1-aa5a06915aea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] Help Sorting a treeview

2015-06-05 Thread Arc Acorn
I finally figured it out!

Though it's probably the most duck tape way I could have done it. XD
Since I have gotten in trouble for sharing question core mods before I 
won't post the copy/past details.

I did core modification to add my own:
sortTiddlers & reverseLookup functions

I named them sortTiddlersNS & reverseLookupNS

So that way they are only used by the treeviewplugin and shouldn't effect 
anything else.

in the end I wound up using a slightly modfired version of this natural 
sorting script:
https://raw.githubusercontent.com/Bill4Time/javascript-natural-sort/master/naturalSort.js

After spending hours figuring out what didn't work I actually learned that 
as I suspected it was actually super easy to get things to work.



-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f7059cb4-b730-4c55-8faa-8c27731c020a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] TiddlyWiki5 password protection

2015-06-05 Thread Steve Meacham
My goal is to have a private but web-accessible TiddlyWiki5.  So far, I 
have it running on Debian using node.js.  Nginx is a reverse proxy, making 
it accessible only by using HTTPS (SSL).  All of this works.

What remains is to prevent others from seeing or modifying it's content.  I 
don't understand how the TiddlyWiki5's password feature(s) work.  Can they 
put it behind a password wall?  Or maybe there is some form of 
authentication that nginx can add?

Please advise.  Several days of searching here and through Google have left 
me still empty-handed.

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/41f1c1f1-bba5-4513-95cb-4340d33b71bf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Classic colorpalette

2015-06-05 Thread Birthe C
http://jotter.tiddlyspace.com/ Go to tiddler Help, tab Colours.



Birthe

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ce17b7da-adf4-41b3-823e-c78b315c54e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Field as a parameter of aa filter

2015-06-05 Thread Eduardo P. Klein
Wow Jed!

Thanks for the prompt response, that's exactly what I needed!

I'm certainly going deeper in the references you posted. I'm sure it is 
going to make things even easier for me!

Cheers!
Eduardo

Em sexta-feira, 5 de junho de 2015 11:59:49 UTC-3, Jed Carty escreveu:
>
> The quick answer is you use tag{!!title} instead. And for reusing it you 
> want to use a macro.
>
> To make the macro make a new tiddler and give it whatever name you want, 
> then put this as the text of the tiddler:
>
> \define someUsefulMacroName()
> <$list filter="[tag[Book]tag{!!title}sort[title]]">
>   <$link to={{!!title}}><$view field="title"/>
>   * Library: <$view field="library"/>
> 
> \end
>
> and tag the tiddler with $:/tags/Macro
>
> Then anywhere you put <> will display the same thing 
> as if you had put all of the code there.
>
> It is more advanced, but you can have this happen automatically in certain 
> tiddlers using conditional view templates described here: 
> https://tobibeer.github.io/tb5/#Conditional%20ViewTemplate%20Section
>
> Some more about using fields and variables:
>
> https://tobibeer.github.io/tb5/#Variables%20vs.%20Parameters
>
> More about macros:
>
> http://tiddlywiki.com/#Macros
> http://inmysocks.tiddlyspot.com/#How%20to%20make%20macros
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8b6f04f5-6e81-437f-9629-21e6f77ed744%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Field as a parameter of aa filter

2015-06-05 Thread Jed Carty
The quick answer is you use tag{!!title} instead. And for reusing it you 
want to use a macro.

To make the macro make a new tiddler and give it whatever name you want, 
then put this as the text of the tiddler:

\define someUsefulMacroName()
<$list filter="[tag[Book]tag{!!title}sort[title]]">
  <$link to={{!!title}}><$view field="title"/>
  * Library: <$view field="library"/>

\end

and tag the tiddler with $:/tags/Macro

Then anywhere you put <> will display the same thing 
as if you had put all of the code there.

It is more advanced, but you can have this happen automatically in certain 
tiddlers using conditional view templates described here: 
https://tobibeer.github.io/tb5/#Conditional%20ViewTemplate%20Section

Some more about using fields and variables:

https://tobibeer.github.io/tb5/#Variables%20vs.%20Parameters

More about macros:

http://tiddlywiki.com/#Macros
http://inmysocks.tiddlyspot.com/#How%20to%20make%20macros

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6d3213d5-81d3-40a0-9b59-385ff010842e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Field as a parameter of aa filter

2015-06-05 Thread Eduardo P. Klein
Hi all!

Very happy to use TiddlyWiki. I'm able to classify my information far 
better than in Evernote or OneNote.

I'm trying to filter a list based on the Tiddlers title, but not successful 
so far.

Here is my code snippet:

<$list filter="[tag[Book]tag[Napoleon Hill]sort[title]]">
  <$link to={{!!title}}><$view field="title"/>
  * Library: <$view field="library"/>


I tried tag[{{!!title}}] but that didn't work. Is there a way to insert the 
title as a parameter of my filter?


And if possible, is there a way also to reuse this snippet in many 
tiddlers, without copying and pasting?

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/098af50f-738b-400b-92ec-5736866045ed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] An Easy Way to Create and Modify Plugins

2015-06-05 Thread Pit.W.

Am 29.04.2015 um 22:22 schrieb Andreas Hahn:

a small GUI extension


Comment:
in my opinion a brilliant piece of work, especially for people who work 
with mutiple tiddlywikis. Its a real game changer, because it allows to 
put all the tiddlers for a specific solution (like a person directory, a 
reading list of travel guides, geographic definitions, historic 
events) into one plugin each.


Then I want to plan a travel and I create a dedicated new TW, drag in 
the plugins I need, do the research on the contents, put it on the 
usb-stick around my neck and after I return - I dump it into my main TW 
under node and everything falls into place.


"A small extension to the GUI a giant leap for the user community."

Thank You!

It can be found herehttp://twguides.org/wiki/tinka.html

--
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5571B0A9.8020103%40eclipso.ch.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Tiddlywiki 5 saving

2015-06-05 Thread BJ
It is possible to use the old style wiki text in tw5 via the TW classic 
wiki text plugin
 http://tiddlywiki.com/plugins/tiddlywiki/tw2parser/ 
cheers

BJ

On Friday, June 5, 2015 at 10:36:16 AM UTC+1, Daniel Lawson wrote:
>
> Thanks all, very interesting, I feel the older one may suit my 
> requirements better then, despite the new one looking very modern and swish!
>
> On Friday, June 5, 2015 at 12:28:52 AM UTC+1, RichardWilliamSmith wrote:
>>
>> Then use the old one.
>>
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/68aee293-76c8-4536-a497-e69ea6e88ff2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: $taglist broken under 5.1.8

2015-06-05 Thread BJ
Hi Richard,
there is a new version of the taglist macro which works with 5.1.8 at 
http://bjtools.tiddlyspot.com/ 


cheers
BJ

On Friday, June 5, 2015 at 10:02:39 AM UTC+1, RichardWilliamSmith wrote:
>
> Hi Mario,
>
> It's a plugin - not part of the core. It was written by BJ and is 
> available here - http://bjtools.tiddlyspot.com/ 
> 
>
> It worked for me up to 5.1.7 and doesn't appear to work in 5.1.8
>
> Regards,
> Richard
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3f5c9bf7-e41a-4b02-a230-2893b61e1881%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Classic colorpalette

2015-06-05 Thread PMario
there is a palette viewer macro: 
http://devpad.tiddlyspot.com/#PaletteViewMacro, which makes it possible to 
see the values. So you'll get a hint, what's used on your page. 

other useful resources may be: 

 - http://mptw.tiddlyspot.com/#systemPalette ... imo some nice palettes
   - the tiddler title has an apply button, so you can test them. 

 - https://color.adobe.com .. lets you create colours, that work / look 
nice together.

-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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/124eacdb-6683-4310-9fee-e3f10fbd035f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Classic colorpalette

2015-06-05 Thread Daniel Lawson
hello has anyone ever done an idiots guide to the colorpalette 
ie which statements below refer to which part ie which one refers to the 
menu at the top of the screen and what is the main bulk of screen etc?

Ie what is Primary, What is Secondary and tertiary?

Background: #fff
Foreground: #000
PrimaryPale: #000
PrimaryLight: #18f
PrimaryMid: #04b
PrimaryDark: #014
SecondaryPale: #ffc
SecondaryLight: #fe8
SecondaryMid: #db4
SecondaryDark: #841
TertiaryPale: #eee
TertiaryLight: #ccc
TertiaryMid: #999
TertiaryDark: #666
Error: #f88

Thank 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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7120d70c-7bec-42b9-a785-5c036b9b4006%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Tiddlywiki 5 saving

2015-06-05 Thread Daniel Lawson
Thanks all, very interesting, I feel the older one may suit my requirements 
better then, despite the new one looking very modern and swish!

On Friday, June 5, 2015 at 12:28:52 AM UTC+1, RichardWilliamSmith wrote:
>
> Then use the old one.
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/122807c0-81ef-459b-a9bb-783d7a75db56%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: $taglist broken under 5.1.8

2015-06-05 Thread RichardWilliamSmith
Hi Mario,

It's a plugin - not part of the core. It was written by BJ and is available 
here - http://bjtools.tiddlyspot.com/

It worked for me up to 5.1.8 and doesn't appear to work in 5.1.9

Regards,
Richard

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3ba26169-b9b4-4a36-92f5-140b42505e3b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: $taglist broken under 5.1.8

2015-06-05 Thread PMario
On Friday, June 5, 2015 at 4:38:53 AM UTC+2, Richard Smith wrote:
>
> I hadn't tried this until today but it appears that BJ's $taglist plugin 
> is broken under 5.1.8
>

IMO there is no $taglist widget in 5.1.8. But there is the tag macro. 
see; 
http://tiddlywiki.com/#tag%20Macro%20%28Examples%29:%5b%5btag%20Macro%20%28Examples%29%5d%5d%20%5b%5btag%20Macro%5d%5d

-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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/331093e4-37a9-4048-b61e-1063f1e13447%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Faulty macro?

2015-06-05 Thread Mat
Wohoo! I nailed the little b***!

This gives the correct result

\define contributionslist(contributor)
<$list filter="[creator{!!creator}]"/>
\end



<$list filter="[each[creator]!creator[]">
   
  {{!!creator}}
  <>
   



...which actually makes it possible to cut out the whole macro, thus:


<$list filter="[each[creator]!creator[]">
   
  {{!!creator}}
  <$list filter="[creator{!!creator}]"/>
   




Them syntaex iz trecky thaengs.


<:-)

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d667562e-01ef-4f3f-9c69-c5a873598ed8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.