[tw5] Version 2.9.2

2019-03-29 Thread Shango
I've been using TW Classic 2.8.1 for a long time now.  I just noticed that 
there's now a version 2.9.2.  However the [[What'sNew]] of it does not have 
any mention of that version.  The last entry in [[WhatsNew]] is about the 
changes from 2.8.0 and 2.8.1.  So I really have no clue what is different 
about 2.9.2.  Does anybody know?  

-- 
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/e0cd6622-f245-4c1c-90d6-8827f272effe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] action-sendmessage create a tiddler with tag from tiddler title

2015-05-31 Thread Shango
Thank you.  I feel like I'm in first grade and learning my ABCs.  But it 
seems more and more like this new TiddlyWiki is more like a platform for 
complex applications than a simple note organizing tool.  


On Sunday, May 31, 2015 at 1:10:36 PM UTC-4, Jed Carty wrote:

 For this the easiest way is to use the action-sendmessage widget and the 
 tm-add-tag message and the fieldmangler widget. Here is an example: 

 $fieldmangler tiddler=tiddler.title 
 $buttonlabel 
 $action-sendmessage $message=tm-new-tiddler $param=ChatsTemplate 
 tags=currentTiddler title=tiddler.title/ 
 $action-sendmessage $message=tm-add-tag $param=someothertag/ 
 New Chat 
 /$button 
 /$fieldmangler 

 To add more tags just add more tm-add-tag messages. 

-- 
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/b033a393-5ee3-4e09-b135-27f7174c0c78%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] action-sendmessage create a tiddler with tag from tiddler title

2015-05-31 Thread Shango


On Sunday, May 31, 2015 at 1:10:36 PM UTC-4, Jed Carty wrote:

 For this the easiest way is to use the action-sendmessage widget and the 
 tm-add-tag message and the fieldmangler widget. Here is an example: 

 $fieldmangler tiddler=tiddler.title 
 $buttonlabel 
 $action-sendmessage $message=tm-new-tiddler $param=ChatsTemplate 
 tags=currentTiddler title=tiddler.title/ 
 $action-sendmessage $message=tm-add-tag $param=someothertag/ 
 New Chat 
 /$button 
 /$fieldmangler 

 To add more tags just add more tm-add-tag messages. 


It is adding the tags to the tiddler that has the button, not the newly 
created tiddler.  Since the new tiddler's title is created dynamically, I 
don't know the name of the new tiddler until it is created, so I don't know 
how to reference it with the fieldmangle widget.  

 

-- 
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/9da37ae7-65f7-4729-98c1-6ef7e317d582%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] action-sendmessage create a tiddler with tag from tiddler title

2015-05-31 Thread Shango


On Sunday, May 31, 2015 at 5:27:48 PM UTC-4, Shango wrote:



 On Sunday, May 31, 2015 at 1:10:36 PM UTC-4, Jed Carty wrote:

 For this the easiest way is to use the action-sendmessage widget and the 
 tm-add-tag message and the fieldmangler widget. Here is an example: 

 $fieldmangler tiddler=tiddler.title 
 $buttonlabel 
 $action-sendmessage $message=tm-new-tiddler $param=ChatsTemplate 
 tags=currentTiddler title=tiddler.title/ 
 $action-sendmessage $message=tm-add-tag $param=someothertag/ 
 New Chat 
 /$button 
 /$fieldmangler 

 To add more tags just add more tm-add-tag messages. 


 It is adding the tags to the tiddler that has the button, not the newly 
 created tiddler.  Since the new tiddler's title is created dynamically, I 
 don't know the name of the new tiddler until it is created, so I don't know 
 how to reference it with the fieldmangler widget.  


Ok I think I got it working.  What this does is (when the button is 
clicked) it creates a new tiddler with a tag of the creating tiddler's 
title, in addition, another tag (chats).  Also the newly created tiddler 
is named with the creating tiddler's title with -chat added as a suffix.  

I had expected that if more than one tiddler is created from the same 
tiddler, that it would add an incremental # at the end to create a unique 
tiddler, but it does not.  If a tiddler is created with the button and then 
it is pressed again, then the previously created tiddler is re-opened in 
edit mode.  I'm trying to see how to get it to increment so that it will 
create and additional tiddler if one already exists.  

\define chatTags() [[$(currentTiddler)$]] chats
\define chatTiddler() $(currentTiddler)$-chat

$button
$action-sendmessage $message=tm-new-tiddler $param=ChatsTemplate tags
=chatTags title=chatTiddler/
New chat
/$button


 


-- 
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/c069ef70-a40b-466c-bcaa-321dfa50f305%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] action-sendmessage create a tiddler with tag from tiddler title

2015-05-31 Thread Shango
I am an experienced user of the classic TW.  I have many plugins and tweaks 
for it, all blinged out.  So I know how to do a lot with that.  Not so much 
with TW5 but I'm just getting more familiar with it or at least, trying 
to.  One of the great things about the classic TW is the forEachTiddler 
plugin so you can dynamically create content.  TW5 has the list widget as 
an equivalent, although I don't know how to get the list widget to create a 
table, like I can with the forEachTiddler, but that is for another day.  

What I'm trying to do now is create a tiddler with a button that generates 
a tiddler and tag the newly generated tiddler with the title of the tiddler 
that generated it, which is no problem, except that I also want to tag it 
with an additional tag as well.  I have not found a way to concatenate 
currentTiddler with a constant string for the tag.  The code for the 
button I'm using is:
$button
$action-sendmessage $message=tm-new-tiddler $param=ChatsTemplate 
tags=currentTiddler title=tiddler.title/
New Chat
/$button

Where I have currentTiddler I also want another tag, but don't know 
how to add the additional tag without it breaking.  As it is now, it works 
similarly to how the New Here built in widget works.  

Thanks.  

-- 
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/950a3632-afef-4d10-a351-14e8f2d23331%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: FileDropPlugin links on hosted TW

2015-05-21 Thread Shango
I'm using version 2.1.4 of the plugin and I just copied the code into my TW 
and refreshed just to make sure.  It is with the %3 (relative path) 
parameter that it is putting in backslashes to delimit the folders.  If it 
is supposed to replace the backslashes with forward slashes, is it supposed 
to do that with the relative path also?  I am using FF Portable 3.6 Legacy 
to run TW classic.  


On Thursday, May 21, 2015 at 11:53:04 AM UTC-4, Eric Shulman wrote:

 On Thursday, May 21, 2015 at 5:29:53 AM UTC-7, Shango wrote:

 This is for Classic TiddlyWiki version 2.8.1 to be specific.  I have a 
 bunch of tiddlers that link to pictures, media, etc. They were created 
 using the FileDrop Plugin.  I mainly use a local TW for myself only.  Then 
 I decided to export a few tiddlers into another TW and host it on a NAS for 
 people to connect to and view.  I noticed that all the links on the NAS's 
 TW were broken.  I discovered that the links were using the backslash \ 
 so I changed them to regular slashes / and that cleared the problem and 
 the links now work.  It seems like something is different about how the TW 
 is being served up on the NAS that it doesn't like the backslashes for 
 links.  I'd like to change the behavior of the FileDrop Plugin so that it 
 generates the links with regular slashes as opposed to backslashes but it 
 seems to be hard coded into the javascript.  I don't know enough about it 
 to change it myself.  Can anyone help me with this?  Thanks. 


 The code in that plugin already converts all \ to /, so I'm not sure 
 why your attachements have \ in them.

 Also. unless you are using a very old copy of FireFox, FileDropPlugin no 
 longer works, because it requires
 netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
 which is no longer supported by the browser.

 Thus, there is nothing to fix, since the plugin will not work anyway.

 Sorry.

 enjoy,
 -e
 Eric Shulman
 ELS Design Studios
 TiddlyTools - Small Tools for Big Ideas!
 InsideTiddlyWiki: The Missing Manuals

 YOUR DONATIONS ARE VERY IMPORTANT!
 HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY TIP JAR...
http://TiddlyTools.github.com/fundraising.html#MakeADonation

 Professional TiddlyWiki Consulting Services...
 Analysis, Design, and Custom Solutions:
http://www.TiddlyTools.com/#Contact






-- 
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/a895801f-7463-485b-9532-f808725e3ed7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: FileDropPlugin links on hosted TW

2015-05-21 Thread Shango
OK I think I figured it out and I can see the code for replacing the 
backslahes -- path.replace(/\\/g,'/');
But it is only doing it for when its assigning the URL parameter.  I had to 
add these two lines:
var relpath=relpath.replace(/\\/g,'/');  
// added line
var path=path.replace(/\\/g,'/');  
// added line

Hopefully I didn't break anything but it seems to be working correctly 
now.  



On Thursday, May 21, 2015 at 11:53:04 AM UTC-4, Eric Shulman wrote:

 On Thursday, May 21, 2015 at 5:29:53 AM UTC-7, Shango wrote:

 This is for Classic TiddlyWiki version 2.8.1 to be specific.  I have a 
 bunch of tiddlers that link to pictures, media, etc. They were created 
 using the FileDrop Plugin.  I mainly use a local TW for myself only.  Then 
 I decided to export a few tiddlers into another TW and host it on a NAS for 
 people to connect to and view.  I noticed that all the links on the NAS's 
 TW were broken.  I discovered that the links were using the backslash \ 
 so I changed them to regular slashes / and that cleared the problem and 
 the links now work.  It seems like something is different about how the TW 
 is being served up on the NAS that it doesn't like the backslashes for 
 links.  I'd like to change the behavior of the FileDrop Plugin so that it 
 generates the links with regular slashes as opposed to backslashes but it 
 seems to be hard coded into the javascript.  I don't know enough about it 
 to change it myself.  Can anyone help me with this?  Thanks. 


 The code in that plugin already converts all \ to /, so I'm not sure 
 why your attachements have \ in them.

 Also. unless you are using a very old copy of FireFox, FileDropPlugin no 
 longer works, because it requires
 netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
 which is no longer supported by the browser.

 Thus, there is nothing to fix, since the plugin will not work anyway.

 Sorry.

 enjoy,
 -e
 Eric Shulman
 ELS Design Studios
 TiddlyTools - Small Tools for Big Ideas!
 InsideTiddlyWiki: The Missing Manuals

 YOUR DONATIONS ARE VERY IMPORTANT!
 HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY TIP JAR...
http://TiddlyTools.github.com/fundraising.html#MakeADonation

 Professional TiddlyWiki Consulting Services...
 Analysis, Design, and Custom Solutions:
http://www.TiddlyTools.com/#Contact






-- 
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/aecc31bc-3485-430c-bb1f-a5231f3ffbec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] FileDropPlugin links on hosted TW

2015-05-21 Thread Shango
This is for Classic TiddlyWiki version 2.8.1 to be specific.  I have a 
bunch of tiddlers that link to pictures, media, etc. They were created 
using the FileDrop Plugin.  I mainly use a local TW for myself only.  Then 
I decided to export a few tiddlers into another TW and host it on a NAS for 
people to connect to and view.  I noticed that all the links on the NAS's 
TW were broken.  I discovered that the links were using the backslash \ 
so I changed them to regular slashes / and that cleared the problem and 
the links now work.  It seems like something is different about how the TW 
is being served up on the NAS that it doesn't like the backslashes for 
links.  I'd like to change the behavior of the FileDrop Plugin so that it 
generates the links with regular slashes as opposed to backslashes but it 
seems to be hard coded into the javascript.  I don't know enough about it 
to change it myself.  Can anyone help me with this?  Thanks. 

-- 
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/4ce3ec2f-02b6-4847-81ae-df1f71aaaf42%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: FileDropPlugin links on hosted TW

2015-05-21 Thread Shango
Thank you very much!!

On Thursday, May 21, 2015 at 3:08:31 PM UTC-4, Eric Shulman wrote:

 On Thursday, May 21, 2015 at 11:37:57 AM UTC-7, Shango wrote:

 OK I think I figured it out and I can see the code for replacing the 
 backslahes -- path.replace(/\\/g,'/');
 But it is only doing it for when its assigning the URL parameter.  I had 
 to add these two lines:
 var relpath=relpath.replace(/\\/g,'/');  
 // added line
 var path=path.replace(/\\/g,'/');  
 // added line

 Hopefully I didn't break anything but it seems to be working correctly 
 now.


 After your follow-up message, I took another look through my code, 
 specifically looking at the DropLink handling, which uses path and 
 relpath.

 Your fix is pretty much what I was going to recommend.  However, changing 
 the slashes in the path variable *might* break dropping of file *content* 
 or creating of attachment tiddlers.  That's why you see a lot of 
 path.replace(/\\/g,'/') usage in the code.  It ensures that the fixup for 
 path doesn't break any other logic that relies on the unaltered value.

 I suggest that you leave the contents of the path and relpath variables 
 unchanged, but fixup the backslashes on *output* only, by changing this 
 line:
 if (co.chkFileDropLink) txt+=fmt.format([name,url,path,relpath,size,when,
 now,who]);
 to
 if (co.chkFileDropLink) txt+=fmt.format([name,url,path.replace(/\\/g,'/'),
 relpath.replace(/\\/g,'/'),size,when,now,who]);
 That should fix your problem without affecting anything else.

 enjoy,
 -e
 Eric Shulman
 ELS Design Studios
 TiddlyTools - Small Tools for Big Ideas!
 InsideTiddlyWiki: The Missing Manuals

 YOUR DONATIONS ARE VERY IMPORTANT!
 HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY TIP JAR...
http://TiddlyTools.github.com/fundraising.html#MakeADonation

 Professional TiddlyWiki Consulting Services...
 Analysis, Design, and Custom Solutions:
http://www.TiddlyTools.com/#Contact


-- 
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/42b655d1-9ff8-4cef-8b67-3ffcce300a5f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: lost encryption password to decrypt wiki

2014-02-19 Thread Shango
Just some ideas for you in securing a TiddlyWiki document for future 
reference.  I use Truecrypt (http://www.truecrypt.org/) to create an 
encrypted storage area that can be mounted as a drive letter.  I just put 
anything I want secured there.  That way you only have one password for all 
of the contents you have there, including a TiddlyWiki document.  Also, I 
suggest you use a password manager like LastPass or KeyPass 
(http://keepass.info/) where you only need to remember one password for all 
of your other passwords.  You can store your Truecrypt password there so if 
you forget it, you can go to your password manager and view it.  (So long 
as you don't forget the master password to the password manager software!)  

On Tuesday, February 18, 2014 10:53:27 AM UTC-6, kalli benetos wrote:

 I set an encryption password and have lost it )ok, forgotten it). How can 
 I retrieve or reset this password?
 many thanks
 :) K


-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: Migration helpers: adaptor(s), importer, converter

2014-02-19 Thread Shango
Since TW5 is still in development, I suppose working on some kind of 
importer or conversion tool from classic to five is not a high priority. 
 But after TW5 comes online out of Beta I'm sure there will be some sort of 
conversion or importer from classic, at least I would hope so.  But it may 
take some time even after it comes out of Beta. 


On Tuesday, July 2, 2013 3:39:27 PM UTC-5, Yakov wrote:

 Hello,

 here's one more ([1]) suggestion that will ease migration from TW classic 
 to TW5. A great deal of difference there is the difference in formatters. 
 So I think what can help users to move their documents from TWc to TW5 is a 
 plugin which implements formatters of TWc in TW5 or vice versa (usually 
 this is called an adaptor). Probably, this would be especially helpful in 
 TiddlySpace.. Of'course, another useful migratioin tool would be an 
 importer -- a plugin for TW5 which allows to import contents of a TWc. And 
 finally, the third tool that can help is a converter of wikitext -- from 
 the TWc syntax to TW5 syntax, which does things automatically where 
 possible and points tiddlers that need some additional manual work.

 I'd say that I would prefer an adaptor for TW5 syntax in TWc since my TWs 
 contain a number of plugins/tweaks, so for gradual migration I can change 
 the wikitext first, and then think about the extensions business.

 Best regards,
 Yakov.

 [1] 
 https://groups.google.com/forum/?fromgroups#!topic/tiddlywiki/cYTDJoMd1H4

 PS If there's any fundamental problems about adapting/converting, I'm 
 interested in comments on 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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: Plugin to delete tag across all tiddlers

2013-11-02 Thread Shango
Found out what the problem was.  I have AutoTaggerPlugin and it was set to 
automatically tag my tiddlers.  I had to disable it because the instant 
TiddlerTweakerPlugin attempted to remove existing tags, AutoTaggerPlugin 
would but them right back in.  

On Sunday, October 20, 2013 9:48:30 AM UTC-5, Shango wrote:

 This is a standalone TW.  

 On Saturday, October 19, 2013 5:36:06 PM UTC-5, Tobias Beer wrote:

 Are you trying this on TiddlySpace or in a standalone TW?



-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: Plugin to delete tag across all tiddlers

2013-10-20 Thread Shango
This is a standalone TW.  

On Saturday, October 19, 2013 5:36:06 PM UTC-5, Tobias Beer wrote:

 Are you trying this on TiddlySpace or in a standalone TW?


-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Plugin to delete tag across all tiddlers

2013-10-19 Thread Shango
Is there a plugin to delete a tag across all tiddlers?  I can't seem to 
find one and searching on those keywords doesn't turn up anything specific. 
 Thanks.  

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: Plugin to delete tag across all tiddlers

2013-10-19 Thread Shango
It doesn't seem to be working.  After it processes, the tags are still in 
the tiddlers.  I even did a filter on that tag to only select the ones with 
that tag and then put -mytag to remove them but after it is done they are 
still in the tiddlers.  Don't know what I'm doing wrong.  

On Saturday, October 19, 2013 10:26:24 AM UTC-5, Shango wrote:

 Is there a plugin to delete a tag across all tiddlers?  I can't seem to 
 find one and searching on those keywords doesn't turn up anything specific. 
  Thanks.  


-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: Local only TiddlyWiki on Tablet

2013-07-16 Thread Shango
Awesome.  Thanks!  

On Tuesday, July 16, 2013 3:21:13 AM UTC-5, FrD wrote:

 Hi,

 My browser is firefox 22.0 (latest version on google play) with the 
 tiddlyfox extension :
  https://github.com/TiddlyWiki/TiddlyFox/blob/master/tiddlyfox.xpi

 FrD

 Le mardi 16 juillet 2013 07:56:55 UTC+2, Shango a écrit :

 Thanks for that info.  Do you have to use a special app to use the TW on 
 the tablet, or do you use a browser app?  Do you have plugins that work on 
 the TW?  Thanks.

 On Monday, July 15, 2013 9:29:38 AM UTC-5, FrD wrote:

 Hi Shango,

 I'm using some local TWs with a lot a linked files in subdirectories 
 (mostly videos and some pdfs) on an android tablet and it works just fine.
 I have an Asus TF300T tablet with android 4.2.1, firefox 22.0 and the 
 tiddlyfox extension (I.0alpha11 which is not the latest).
 The TWs and the files are on the SD card.

 FrD

 Le lundi 15 juillet 2013 16:15:16 UTC+2, Shango a écrit :

 I use TiddlyWiki from a USB flash drive on my laptop and home PC as a 
 local only TiddlyWiki.  I have a lot of images and other media that are in 
 subfolders below where my TiddlyWiki resides on the flash drive.  And I 
 have tiddlers that link to that content.  I'd like to know if TW will work 
 on a tablet this way.  I have quite a few plugins so I don't know if those 
 would all work correctly either.  Since I import image files, etc, I'm 
 thinking an Android tablet might be better since you can plug in an SD 
 card 
 into it.  The posts that I've looked at here concerning TW on a tablet I 
 am 
 not sure are about using the tablet as an interface to access a remote TW 
 in the cloud.  I just want to have all my content local to the tablet 
 itself.  Just wondering if anyone has any knowledge or experience with 
 that.  Thanks!  



-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Local only TiddlyWiki on Tablet

2013-07-15 Thread Shango
I use TiddlyWiki from a USB flash drive on my laptop and home PC as a local 
only TiddlyWiki.  I have a lot of images and other media that are in 
subfolders below where my TiddlyWiki resides on the flash drive.  And I 
have tiddlers that link to that content.  I'd like to know if TW will work 
on a tablet this way.  I have quite a few plugins so I don't know if those 
would all work correctly either.  Since I import image files, etc, I'm 
thinking an Android tablet might be better since you can plug in an SD card 
into it.  The posts that I've looked at here concerning TW on a tablet I am 
not sure are about using the tablet as an interface to access a remote TW 
in the cloud.  I just want to have all my content local to the tablet 
itself.  Just wondering if anyone has any knowledge or experience with 
that.  Thanks!  

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Local only TiddlyWiki on Tablet

2013-07-15 Thread Shango
I use TiddlyWiki from a USB flash drive on my laptop and home PC as a local 
only TiddlyWiki.  I have a lot of images and other media that are in 
subfolders below where my TiddlyWiki resides on the flash drive.  And I 
have tiddlers that link to that content.  I'd like to know if TW will work 
on a tablet this way.  I have quite a few plugins so I don't know if those 
would all work correctly either.  Since I import image files, etc, I'm 
thinking an Android tablet might be better since you can plug in an SD card 
into it.  The posts that I've looked at here concerning TW on a tablet I am 
not sure are about using the tablet as an interface to access a remote TW 
in the cloud.  I just want to have all my content local to the tablet 
itself.  Just wondering if anyone has any knowledge or experience with 
that.  Thanks!  

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Local only TiddlyWiki on Tablet

2013-07-15 Thread Shango
Thanks for that info.  Do you have to use a special app to use the TW on 
the tablet, or do you use a browser app?  Do you have plugins that work on 
the TW?  Thanks.

On Monday, July 15, 2013 9:29:38 AM UTC-5, FrD wrote:

 Hi Shango,

 I'm using some local TWs with a lot a linked files in subdirectories 
 (mostly videos and some pdfs) on an android tablet and it works just fine.
 I have an Asus TF300T tablet with android 4.2.1, firefox 22.0 and the 
 tiddlyfox extension (I.0alpha11 which is not the latest).
 The TWs and the files are on the SD card.

 FrD

 Le lundi 15 juillet 2013 16:15:16 UTC+2, Shango a écrit :

 I use TiddlyWiki from a USB flash drive on my laptop and home PC as a 
 local only TiddlyWiki.  I have a lot of images and other media that are in 
 subfolders below where my TiddlyWiki resides on the flash drive.  And I 
 have tiddlers that link to that content.  I'd like to know if TW will work 
 on a tablet this way.  I have quite a few plugins so I don't know if those 
 would all work correctly either.  Since I import image files, etc, I'm 
 thinking an Android tablet might be better since you can plug in an SD card 
 into it.  The posts that I've looked at here concerning TW on a tablet I am 
 not sure are about using the tablet as an interface to access a remote TW 
 in the cloud.  I just want to have all my content local to the tablet 
 itself.  Just wondering if anyone has any knowledge or experience with 
 that.  Thanks!  



-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Username : not saved...

2013-03-07 Thread Shango
You might want to take a look at CookieManagerPlugin so you can store and 
load the cookies within your Tiddlywiki file. 
http://www.tiddlytools.com/#CookieManagerPluginConfig


On Thursday, March 7, 2013 9:32:39 AM UTC-6, Frederic ALBOU wrote:

 Hi,
 I have a problem with the save of username. All is ok for SiteTitle and 
 SiteSubtitle but not with username : it always write YourName after 
 reboot of the html
 I work with firefox v19 and windows xp.
 Thanks a lot for your help.


-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Username : not saved...

2013-03-07 Thread Shango
Oops, link should be http://www.tiddlytools.com/#CookieManagerPlugin for 
the plugin itself.  

On Thursday, March 7, 2013 9:26:33 PM UTC-6, Shango wrote:

 You might want to take a look at CookieManagerPlugin so you can store and 
 load the cookies within your Tiddlywiki file. 
 http://www.tiddlytools.com/#CookieManagerPluginConfig


 On Thursday, March 7, 2013 9:32:39 AM UTC-6, Frederic ALBOU wrote:

 Hi,
 I have a problem with the save of username. All is ok for SiteTitle and 
 SiteSubtitle but not with username : it always write YourName after 
 reboot of the html
 I work with firefox v19 and windows xp.
 Thanks a lot for your help.



-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Announcing TiddlyWiki version 2.7.1 BETA 1

2013-03-07 Thread Shango
Thanks!  So I guess Classic TiddlyWiki is being worked on in parallel with 
TiddlyWiki5 then?  Please excuse my ignorance.  I haven't tried to use 5 
because it is only in Alpha and since no existing plugins work with it, it 
looks like I'd be starting over from scratch with it.  Thanks.  

On Thursday, March 7, 2013 1:28:55 AM UTC-6, Eric Shulman wrote:

 Greetings All, 

 I'm pleased to announce that a new revision of TiddlyWiki Classic -- 
 v2.7.1 BETA 1 -- is now available for pre-release download here: 

http://www.TiddlyWiki.com/beta 

 This revision includes only ONE significant change: the internal 
 embedded copy of the jQuery library has been updated from v1.8.1 to 
 v1.8.3 in order to correct a Unicode/UTF-8 character encoding error 
 that was present within TW2.7.0. 

 This update should allow documents containing UTF-8 encoded characters 
 (e.g., content in a non-Latin language) to be more consistently 
 recognized and saved/loaded without 'mangling' those UTF-8 encoded 
 characters. 

 IMPORTANT NOTICE: Due to the minimal change in this revision, the beta 
 period for this release has been dramatically reduced so that this fix 
 can be made available for general use as quickly as possible.  You can 
 expect that, barring any unforseen show stopper problems, TW2.7.1 
 will advance to FULL RELEASE in approximately 1-2 DAYS FROM NOW. 

 enjoy, 
 -e 
 Eric Shulman 
 TiddlyWiki Classic Lead Developer 


-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] FileDropPlugin not working in Firefox 17.0.1

2012-12-05 Thread Shango
My FileDropPlugin is not working in the latest release of Firefox.  I 
downgraded to 16.0.2 to test and it it worked in that version.  Is there 
something I can do to make it work in the the latest version?  Thanks.  

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/8j2mEet34XAJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Losing settings for plugins

2012-11-12 Thread Shango
Every once in a while my tiddlywiki loses the settings for all my plugins.  
They will all suddenly revert back to default values for some reason.  It 
is really annoying because I have to go back into each one and set them all 
back.  I try to go back to a backup tiddlywiki but that doesn't seem to 
work.  I'm not sure why because where else would the plugin settings be 
saved if not the tiddlywiki file itself?  

So for example, under backstage / tweak, Username for signing your edits 
suddenly gets set back to YourName. My custom plugins, AutoTaggerPlugin, 
FileDropPlugin, etc. all lose their settings.  I keep my tiddlywiki on a 
flash drive and it is all local (nothing in the cloud).  Also, I'm using 
Firefox browser, latest version.  I don't know if that has anything to do 
with it.  I wish I could solve this issue once and for all because I'm 
getting tired of it.  

Thanks!  

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/nf2iIYnKSfoJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: ForEachTiddler and PartTiddlerPlugin

2012-11-12 Thread Shango
I had this same exact problem and solved it the same way.  The only thing I 
would add is to include the  just in case a tiddler has part 
definition it the text but is not actually a part definition ...

tiddler.text.contains(part definition)'

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/PAGcRXuW8VAJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Announcement: TiddlyWiki 2.6.6 Beta 1

2012-09-09 Thread Shango
I downloaded the new TiddlyWiki and tried to import my old one.  When I 
browse and select my old TiddlyWiki, I get this error message: Error: A 
script from file:// was denied UniversalFileRead privileges.

There is an Open button so I go ahead and click that and it says, Opening 
the workspace but it doesn't seem to be doing anything.  I waited quite a 
while and nothing happens.  I chose a small TiddlyWiki file to import in 
case it was the big one I was trying to import.  

Can anyone help?  Thanks.  

On Tuesday, August 28, 2012 10:10:49 AM UTC-5, Eric Shulman wrote:

 Greetings All! 

 I'm pleased to announce that TiddlyWiki v2.6.6 has been advanced from 
 ALPHA to BETA status, and is now available for download and testing 
 from: 
http://tiddlywiki.com/beta 

 This BETA build is identical to the ALPHA build posted last month, and 
 is merely the next step on the way towards full release.  Please 
 download the BETA build and then migrate your document content (by 
 importing into a new TW266 empty.html) to confirm that no significant 
 problems arise.  If nothing major is reported by the TW community over 
 the next few weeks, you can expect TW266 to go gold sometime around 
 mid-September. 

 The next update after TW266 will be TW270 ALPHA, which will hopefully 
 include some fixes and/or workarounds to the various file I/O (saving/ 
 loading) problems that have been caused by changes in browser 
 technology.  If all goes well, I expect to post TW270A sometime in 
 early to mid October (depending, of course, on how well the 
 development/debugging process goes). 

 enjoy, 
 -e 
 Eric Shulman 
 TiddlyWiki Classic Lead Developer 
 TiddlyWiki Community Support 


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/e-GBRG_Pu8gJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: forEachTiddler with partTiddler

2012-07-06 Thread Shango
How do I prevent tiddlers that do not have any Summary part from showing at 
all in the output?  I just need a way to test for a null value of the 
partTiddler in the where clause.  I'm not sure how to do that.  

Thanks. 

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/2mROKm-nVvEJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: forEachTiddler with partTiddler

2012-07-06 Thread Shango
If all I was displaying was the tiddlerPart, then I think blank ones would 
skip.  But since I'm displaying tiddler.title also, then all the tiddlers 
in the forEachTiddler will display.  I was hoping I wouldn't have to bother 
with using tags for checking but that may be the only way it will work :(

Thanks


On Friday, July 6, 2012 2:25:51 PM UTC-5, whatever wrote:

 Doesn't it automatically get excluded? 

 Otherwise do this in the where part: 
 'tiddler.tags.contains(YourTag)  tiddler.text.contains(part 
 Summary)' 

 w 

 On 6 jul., 21:07, Shango shango3...@gmail.com wrote: 
  How do I prevent tiddlers that do not have any Summary part from 
 showing at all in the output?  I just need a way to test for a null value 
 of the partTiddler in the where clause.  I'm not sure how to do that. 
  
  Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/Bxew1IujkO8J.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: forEachTiddler with partTiddler

2012-07-06 Thread Shango
Hey, actually I don't need to check for a tag value.   
tiddler.text.contains(part Summary) is a good enough check.  Thanks!!

Let me explain what I wanted to do.  I have a journal with tiddlers entered 
as dates.  They are in the format -MM-DD so I can easily query a range 
of dates (where tiddler.title = 2009-12-21  tiddler.title = 
2010-04-05).  I have a Timeline tiddler that has a series of 
forEachTiddler statements with date ranges looking for the partTiddler 
Timeline entries.  If I want to put something on the Timeline I just put 
a part Timeline in the journal tiddler.  Now it works!!

On Saturday, July 7, 2012 12:29:45 AM UTC-5, Shango wrote:

 If all I was displaying was the tiddlerPart, then I think blank ones would 
 skip.  But since I'm displaying tiddler.title also, then all the tiddlers 
 in the forEachTiddler will display.  I was hoping I wouldn't have to bother 
 with using tags for checking but that may be the only way it will work :(

 Thanks


 On Friday, July 6, 2012 2:25:51 PM UTC-5, whatever wrote:

 Doesn't it automatically get excluded? 

 Otherwise do this in the where part: 
 'tiddler.tags.contains(YourTag)  tiddler.text.contains(part 
 Summary)' 

 w 

 On 6 jul., 21:07, Shango shango3...@gmail.com wrote: 
  How do I prevent tiddlers that do not have any Summary part from 
 showing at all in the output?  I just need a way to test for a null value 
 of the partTiddler in the where clause.  I'm not sure how to do that. 
  
  Thanks.



-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/PWlE5kJV3jkJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: forEachTiddler with partTiddler

2012-07-05 Thread Shango
Oh ok.  I thought since it is enclosed in quotes as a string, it would not 
be confused.  

I have another question.  How do I prevent tiddlers that do not have any 
Summary part from showing at all in the output?  I just need a way to 
test for a null value of the partTiddler in the where clause.  I'm not sure 
how to do that.  

Thanks.  

On Wednesday, July 4, 2012 8:16:17 PM UTC-5, TonyM wrote:

 Why can't it just be the closing  ?

 Because it would prematurely close the matching  on the ForEachTiddler 
 macro itself ! in the calling tiddler !

 TonyM

 On Thursday, 5 July 2012 03:46:04 UTC+10, Shango wrote:

 Ah Ha!!!  I knew the method but I didn't know the correct syntax.  The 
 \ is what I needed.  Is that a quirk of html syntax?  I don't 
 understand the \  Why can't it just be the closing ?  

   (Also, should be tiddler.title not tiddler.name).  

 Thanks!


 On Wednesday, July 4, 2012 12:09:56 PM UTC-5, whatever wrote:

 Hi! 

 in the write parameter use: 
 'tiddler +tiddler.name+/Summary\' 

 w 

 On 4 jul., 16:54, Shango shango3...@gmail.com wrote: 
  How can I use forEachTiddler to show specifically named parts?  I want 
 to 
  display the tidder name and contents of a specifically named part of a 
  tiddler if it exists.  For example, if I have a part named Summary 
 in 
  several different tiddlers, I want to use forEachTiddler where the 
  part=Summary and display that tiddler title and the contents of the 
  part.  I haven't found any way to do this.  Thanks.



-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/90XtRschWTgJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] forEachTiddler with partTiddler

2012-07-04 Thread Shango
How can I use forEachTiddler to show specifically named parts?  I want to 
display the tidder name and contents of a specifically named part of a 
tiddler if it exists.  For example, if I have a part named Summary in 
several different tiddlers, I want to use forEachTiddler where the 
part=Summary and display that tiddler title and the contents of the 
part.  I haven't found any way to do this.  Thanks.  

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/JgyO_VECtoUJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: forEachTiddler with partTiddler

2012-07-04 Thread Shango
Ah Ha!!!  I knew the method but I didn't know the correct syntax.  The 
\ is what I needed.  Is that a quirk of html syntax?  I don't 
understand the \  Why can't it just be the closing ?  

  (Also, should be tiddler.title not tiddler.name).  

Thanks!


On Wednesday, July 4, 2012 12:09:56 PM UTC-5, whatever wrote:

 Hi! 

 in the write parameter use: 
 'tiddler +tiddler.name+/Summary\' 

 w 

 On 4 jul., 16:54, Shango shango3...@gmail.com wrote: 
  How can I use forEachTiddler to show specifically named parts?  I want 
 to 
  display the tidder name and contents of a specifically named part of a 
  tiddler if it exists.  For example, if I have a part named Summary in 
  several different tiddlers, I want to use forEachTiddler where the 
  part=Summary and display that tiddler title and the contents of the 
  part.  I haven't found any way to do this.  Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/Kx2lDL-ILuAJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.