[tw] Re: Is this possible?

2011-07-26 Thread rakugo
 > I have 3 tiddlers open (A, B, and C)
> Is it possible to add tags to tiddler D with the names of all open tiddlers?
> So tiddler D would then have the tags A, B, C

Glad you have solved your problem. However I would love to know the
context of this problem and what this solves. Very curious!

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
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: Is this possible?

2011-07-26 Thread Måns
Hi axelm

> How do I tell it which tiddler it should add the tags, to?

The script should be run in the tiddler which is to be tagged - just
like Mario's script - except my example needs InlineJavascriptPlugin
(sorry forgot to say...) - get it here: 
http://www.tiddlytools.com/#InlineJavascriptPlugin.
Eric has also made http://www.tiddlytools.com/#AutoTaggerPlugin:
"If you enter auto as a tiddler tag value, AutoTagger scans the
tiddler content (including title) for text that matches any existing
tags, and automatically adds any embedded tags that it finds."
and
"You can also create a tiddler that defines a set of AutoTaggerAliases
to replace a single tag with one or more alternative tags."

@PMario
Nice work  :-) Thumbs up!!

Cheers Måns Mårtensson

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
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: Is this possible?

2011-07-26 Thread axelm
Thank you so much, PMario

That works great!!!

That will save me so much work.

axelm


-- 
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/-/5l8sa-2Zr8IJ.
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: Is this possible?

2011-07-26 Thread PMario
Try this [1] :)

have fun!
- mario

[1] 
http://hoster.peermore.com/recipes/TeamWork/tiddlers.wiki#%5B%5BTagTiddler%20with%20Story%5D%5D%20%5B%5BTagTiddler%20test%5D%5D

On Jul 26, 12:13 am, axelm  wrote:
> Hello All,
>
> I have 3 tiddlers open (A, B, and C)
> Is it possible to add tags to tiddler D with the names of all open tiddlers?
> So tiddler D would then have the tags A, B, C
>
> Thank's for any help,
>
> axelm

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
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: Is this possible?

2011-07-26 Thread axelm
Hello Måns,

this is probably what I need. Except it doesn't want to work.
It asks me for the name of the tiddler with the links from the StorySaver in 
it, and then it does nothing!
How do I tell it which tiddler it should add the tags, to?

help,

axelm


-- 
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/-/_HFRLacUtdAJ.
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: Is this possible?

2011-07-26 Thread Måns
Hi Axelm

> I have 3 tiddlers open (A, B, and C)
> Is it possible to add tags to tiddler D with the names of all open tiddlers?
> So tiddler D would then have the tags A, B, C

In two steps:
1) Save story to a tiddler with http://www.tiddlytools.com/#StorySaverPlugin
2) Save tiddlerlist (storytiddler) as the collected tiddlertitles as
tags to a tiddler with:


var tid=prompt("title of the tiddler with the list");
if (!tid) return; /* cancelled by user */
var txt=store.getTiddlerText(tid);
if (!txt) { alert(tid+" not found"); return; }
var titles=txt.readBracketedList();
for (var i=0; i

[tw] Re: Is this possible?

2011-07-26 Thread axelm
Yes, I have that plugin, but it won't do what I need:

I have 3 tiddlers open named: "A" "B" and "C"
I need to add the names of the open tiddlers to tiddler "D" as tags.
So tiddler "D" would then have the tags A, B, C  added to it's tag list.

TiddlerTweakerPlugin can't do that.

axelm

-- 
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/-/Sw52KNL3wcIJ.
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: Is this possible?

2011-07-26 Thread PMario
Do you know TiddlerTweakerPlugin [1]?
It can be used as a browser bookmarklet [2]. So you don't need to
include it into your production TW. Just load on demand.

Adding or removing tags is quite easy
eg:
tagfield is empty .. remove all tags from marked tiddlers
tagfield = +newTag .. will add the tag "newTag" to tiddlers
tagfield = -newTag .. will remove the tag "newTag" from existing
tiddlers

IMPORTANT:
I highly recomend to create a backup prior to messing around with this
tool :)

-m

[1] http://www.tiddlytools.com/#TiddlerTweakerPlugin
[2] http://www.tiddlytools.com/#InstantBookmarklets


On Jul 26, 8:06 pm, axelm  wrote:
> Could this script be modified to do what I want?
>
> 
> var t,i,
> tids=store.getTaggedTiddlers('UPDATE'),
> txt=store.getTiddlerText('NEWTEXT')||'';
> if(!confirm("Really add to the contents of:\n"+
> tids.map(function(t){return t.title;})))return;
> for(i=0;i t=tids[i];
> store.saveTiddler(
> t.title,
> t.title,
> store.getTiddlerText(t.title)+'\n'+txt,
> config.options.txtUserName,
> new Date(),
> t.tags,
> t.fields,
> t.created
> );};
>
> 
>
> Any help is greatly appreciated,
>
> axelm

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
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: Is this possible?

2011-07-26 Thread axelm
Could this script be modified to do what I want?


var t,i,
tids=store.getTaggedTiddlers('UPDATE'),
txt=store.getTiddlerText('NEWTEXT')||'';
if(!confirm("Really add to the contents of:\n"+
tids.map(function(t){return t.title;})))return;
for(i=0;i

Re: [tw] Re: History of Tiddlywiki

2011-07-26 Thread Jeremy Ruston
Hiya

Sorry to be late to this thread - perhaps you've already had to hand
in your project?

There are a few notes in my TiddlySpace that might be helpful:

http://jermolene.tiddlyspace.com/#%5B%5BHistory%20of%20TiddlyWiki%20serversides%5D%5D%20%5B%5BHistory%20of%20the%20TiddlyWiki%20user%20interface%5D%5D

short link - http://bit.ly/r1bUVx

I'm reliably terrible at writing things down; feel free to ask any questions

Best wishes

Jeremy

On Sun, Jul 24, 2011 at 2:57 AM, Scott Simmons  wrote:
> There's an Osmo video on YouTube worth a watch as well:
>
> http://www.youtube.com/watch?v=uEdvShiZFMM
>
> --
> 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/-/T4fureFmX4AJ.
> 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.
>



-- 
Jeremy Ruston
mailto:jer...@osmosoft.com
http://www.tiddlywiki.com

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
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: TiddlyWiki 2.6.3

2011-07-26 Thread rakugo
> Homeware I Noticed a little problem with TiddlyWiki: It does not
> update
> on Firefox 5 but on Firefox 4 it does.

This is a known problem: https://github.com/TiddlyWiki/tiddlywiki/issues/38

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
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: MPTW features in TiddlySpace?

2011-07-26 Thread Crys Foab
> 2)
> If you included your template space to a "newSpace".
> Afterwards include neui-toolbar into the template space, Your
> "newSpace" doesn't include neui-toolbar space, since includes are only
> inherited with an initial include.

Thanks! I didn't know that. I thought that *every* mod
to the included spaces were propagated to the including one.

So, as a note for other users working with a template space…
If you ever include a new spaces to your template space,
just remove and re-include this space to all your other spaces
so the new inclusion is propagated.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
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.