ToggleTag List

2011-05-05 Thread Javix
Hi, 

just want to make a small contribution to this great tool.

Using the plugins ForEachTiddler and ToggleTag you can create a
checkbox list. ToggleTag comes by default in mGSD (this is the one I
use).

This was already done with Checkboxplugin, but, as you may know, has
some bugs and breaks the code (cannot be used in mGSD).

This works pretty straight forward. 

I have it on my sidebar, making a checkbox list of tag TasksForToday,
the checkbox toggles the Done tag, so they disappear from the list.

Just have to simply put it inside a tiddler, changing the tag
TasksForToday for whatever you like.

forEachTiddler
 where
 'tiddler.tags.contains(TasksForToday)
 !tiddler.tags.contains(Done)' script '
function writeChkBoxTiddler(tiddler) {
 myTitle = tiddler.title;
 outTiddler = \\toggleTag Done +\'+tiddler.title+\'+
\'\[\[+myTitle+\]\]\'\\\n; return outTiddler;
 };'
write 'writeChkBoxTiddler(tiddler)'



I hope you find it useful, for me
this has been a great help.

Regards,

Javix

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



[tw] Re: I think I can finally state what is missing from TiddlyWiki

2011-05-05 Thread Eric Shulman


On May 4, 10:08 pm, TonyM anthony.mus...@gmail.com wrote:
 Can anyone prove me wrong ? Please

 The showwhen (hide when) plugin allows for the selective display within the
 edit and view templates of tiddlers. These are not so sophisticated with
 complex logic missing such as and or not and multiple tags. Unfortunately
 these do not work within the content of a tiddler.

 If such a facility was available within a tiddler sophisticated logic could
 be embeded and would assist in codding users observed algorithms.

see
   http://www.TiddlyTools.com/#CoreTweaks
specifically, tweak #890, which adds conditional transclusion to the
tiddler macro by using an *evaluated parameter value* to calculate
a true/false for a new if:... parameter, like this:

   tiddler TiddlerName if:{{...conditional logic here...}}

If the value of the if:... is true, then the transclusion is performed
as usual.  If the value is false, then the transclusion is skipped and
no output is rendered.

 A simple example would be;

 A set of questions that would toggle tags on the current tiddler
 The selective display of content within the tiddler according to the tags
 selected.

Examples:
tiddler ThisTiddler##somesection
   if:{{tiddler.isTagged('foo')}}

tiddler ThisTiddler##somesection
   if:{{tiddler.tags.containsAny(['foo','bar','baz'])}}


    - Add a tags (if already or not)
    - Toggle a tag between existing or not
    - Remove a tag no matter what
    - Do this with multiple tags at once

See
   http://www.TiddlyTools.com/#CheckboxPlugin
   http://www.TiddlyTools.com/#CheckboxPluginInfo
   http://www.TiddlyTools.com/#CheckboxToggleTag
   http://www.TiddlyTools.com/#DailyChecklist

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--
Was this answer useful? If so, please help support TiddlyTools:

   TiddlyTools direct contributions: (paypal)
  http://www.TiddlyTools.com/#Donate
   UnaMesa tax-deductible contributions:
  http://about.unamesa.org/Participate (paypal)
   TiddlyWiki consulting:
  http://www.TiddlyTools.com/#ELSDesignStudios
  http://www.TiddlyTools.com/#Contact

-- 
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: content organization: the advantage of hierarchy that tags lack, and a cure for this problem

2011-05-05 Thread Tobias Beer
+1 on all of PMario's suggestions, especially when it comes to NewHere
+ TagglyTagging (and it's sitemap view!). Those pretty much are always
the starting point in any of my TiddlyWiki's, as they simply
incredibly empower the tagging experience.

You could also have a look at a plugin of mine called x-plore...

http://tbgtd.tiddlyspot.com/#x-plore

...which allows you to explore tag or link relations of any tiddler.
For example... imagine a car tiddler while clicking on x-plore in
the toolbar. You could test that with the action tiddler in the wiki
linked above. The plugin's (code) is derived from and hence works
similar to Eric's RelatedTiddlersPlugin.

All in all, with all your specific idea's and your background I
definitely suggest you keep on defining clear goals and implementation
details while eventually setting out to develop the exact TiddlyWiki
adaptation you have in mind, quite probably coding or adjusting a few
macro's and plugins along the road.

For example, my http://tagsearch.tiddlyspot.com hooks with the search
abilities of GotoPlugin. Such a kind of hook might be a good
starting point to allow for a tag based search. Starting to type the
listbox returns any tags found while selecting one will render a
tagging tree for the selected tag like the ones generated by
RelatedTiddlersPlugin. This takes a bit of coding, but it's sure not
over the top.

Cheers, Tobias.

-- 
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: content organization: the advantage of hierarchy that tags lack, and a cure for this problem

2011-05-05 Thread Tobias Beer
+1 on all of PMario's suggestions, especially when it comes to NewHere
+ TagglyTagging (and it's sitemap view!). Those pretty much are always
the starting point in any of my TiddlyWiki's, as they simply
incredibly empower the tagging experience.

You could also have a look at a plugin of mine called x-plore...

http://tbgtd.tiddlyspot.com/#x-plore

...which allows you to explore tag or link relations of any tiddler.
For example... imagine a car tiddler while clicking on x-plore in
the toolbar. You could test that with the action tiddler in the wiki
linked above. The plugin's (code) is derived from and hence works
similar to Eric's RelatedTiddlersPlugin.

All in all, with all your specific idea's and your background I
definitely suggest you keep on defining clear goals and implementation
details while eventually setting out to develop the exact TiddlyWiki
adaptation you have in mind, quite probably coding or adjusting a few
macro's and plugins along the road.

For example, my http://tagsearch.tiddlyspot.com hooks with the search
abilities of GotoPlugin. Such a kind of hook might be a good
starting point to allow for a tag based search. Starting to type the
listbox returns any tags found while selecting one will render a
tagging tree for the selected tag like the ones generated by
RelatedTiddlersPlugin. This takes a bit of coding, but it's sure not
over the top.

Cheers, Tobias.

-- 
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: I think I can finally state what is missing from TiddlyWiki

2011-05-05 Thread Tobias Beer
Could you please correct my thinking as I believe I might have missed
your point.

I have a feeling that what you're stating about HideWhenPlugin is
rather falsy. No matter how complex that boolean expression or
evaluation might be (of course allowing you to use OR AND NOT etc.),
eventually you either want to show or hide some content based on
whether or not some expression turns out to be true or false ...which
is what HideWhenPlugin allows you to do.

Of course, that still leaves you up for the task of having to possibly
figure out the exact, possibly complex, boolean expression you want to
use.

Cheers, Tobias.

-- 
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.



Re: [tw] I think I can finally state what is missing from TiddlyWiki

2011-05-05 Thread Alex Hough
 I can give some real world examples if anyone is interested.

I am interested

ALex

-- 
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: Firefox doesn't remember my script warning OK

2011-05-05 Thread Negirno
It works! Thanks!

On máj. 5, 01:34, Mike eris...@gmail.com wrote:
 This works great for me. . .http://firefoxprivileges.tiddlyspot.com/

 Mike

 On May 4, 8:12 am, Negirno negi...@gmail.com wrote:







  I have the same problem. I click OK for the script warning, and then I can
  save as much as I want, but if I close and re-open Firefox with my
  TiddlyWiki and try to save, the script warning dialog appears again.

  I looked into my prefs.js (on my Firefox profiles folder) and have found a
  bunch of UniversalXPConnect lines where the id is only file://. It doesn't
  store the path to my TiddlyWiki, but oddly it works until I close Firefox.
  I tried to edit one of those entries (I gave the full path of my
  TiddlyWiki), which solved the problem for a while, but some time later it
  got mysteriously deleted, and the annoying script warnings appeared again.

  Oh, and if I choose to click Ok button without ticking the 'remember this'
  option, the browser just immediately shows the dialog again.

  I use Firefox 4.0 with TiddlyWiki 2.6.1.

-- 
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] Collaboration using Dropbox - looking for investigators

2011-05-05 Thread Alex Hough
Hello There,

For a while now it seems like there are a lot of people raving about
Dropbox and TiddlyWiki.
I'd like to investigate collaboration in a small group.

Anyone interested / got any ideas?

Alex

-- 
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: Collaboration using Dropbox - looking for investigators

2011-05-05 Thread Alex Hough
I was thinking about revisiting Udos include plugin

http://tiddlywiki.abego-software.de/#[[IncludePlugin%20Documentation]]

Each user includes the other and share a dropbox.

Alex

On 5 May 2011 21:41, Alex Hough r.a.ho...@gmail.com wrote:
 Hello There,

 For a while now it seems like there are a lot of people raving about
 Dropbox and TiddlyWiki.
 I'd like to investigate collaboration in a small group.

 Anyone interested / got any ideas?

 Alex


-- 
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] simile timeline

2011-05-05 Thread La raison Marc
I love the simileTimelinePlugin.
I would like to add events with the mouse.
Is it possible to add an event to the timeline by clicking on the band?
A new tiddler will open with the start and end fields already filled. It would 
then add the text.

Thank for your help

La raison

-- 
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: I think I can finally state what is missing from TiddlyWiki

2011-05-05 Thread TonyM
Thanks Eric - I will investigate this approach however I think a more user 
friendly way may be possible. I will post again soon.

-- 
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: I think I can finally state what is missing from TiddlyWiki

2011-05-05 Thread TonyM
HideWhen Plugin does not operate within the tiddler content only in 
templates as far as I can see.

There is not documentation I can find otherwise.

When someone is building something with a possibly complex, boolean 
expression that last thing you want to be doing is tackling a possibly 
complex way of implementing it.

See next example

-- 
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: Collaboration using Dropbox - looking for investigators

2011-05-05 Thread Craig in Calgary
Alex,

I am interested in using Dropbox to host my private TWs and being able
to split out the common tiddlers/plugins for reuse across all TWs
would be very good.

I'm game to help test sharing public tiddlers for the sake of helping
the community. An idea I find intriguing is the possibility of the TW
community using Dropbox as a public repository for common tiddlers. If
our TWs all pull their plugins from the same pool then the
possibilities get real interesting.

My programming skills are likely too weak to significantly impact the
development of this TiddlyDropBoxWiki idea but I have a lot of
experience with UI design, User Experience, Quality Control, and Beta
Testing. At that stage I would be willing to dive in and lend a hand.

As I sit here thinking about the possibilities I realize there are
many technical issues that will need to be solved to insure a positive
experience for end users. To get the ball rolling, so to speak, the
first tricky bit of magic I would like to see is a TW bootstrap
loader, i.e. the TWCore loads quickly and gives the end user a UI
while the lion's share of code and content loads asynchronously (or
possibly JIT). I'm envisioning something beyond just a loading,
please wait... splash screen.

The second feature that comes to mind would be the ability to search
across all public content whether loaded or not. I would accept a
performance trade-off in exchange for knowing the search is deep.

I'll stop daydreaming now. I think you are on to something, Alex, and
I hope we can get some buy in from TW Rock Stars (you know who you
are!) to move this idea forward.

Craig

-- 
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: I think I can finally state what is missing from TiddlyWiki

2011-05-05 Thread axs
Tobias is correct, HideWhenPlugin allows complex javascript boolean logic. 
Even the plugin's home page* gives a good example

div macro=showWhen tiddler.modifier == 'BartSimpson'img 
src=bart.gif//div


That's pretty powerful if you ask me. You can put it any arbitrary statement 
in there that returns either true or false and you should be all set. The 
only 'downside' is that this plugin is not wrapped in a standard macro that 
allows in-line usage. However, you might be able to use it in tiddler 
content as long as you wrap it in html/html tags. Then, to parse the 
content, you'd have to use Eric's HTML formatting plugin from 
tiddlytools.com. 


*http://mptw.tiddlyspot.com/empty.html#HideWhenPlugin


-- 
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: Collaboration using Dropbox - looking for investigators

2011-05-05 Thread Jon
 For a while now it seems like there are a lot of people raving about
 Dropbox and TiddlyWiki.
 I'd like to investigate collaboration in a small group.

I have used Dropbox and TW to share information with my research
students as a one-way communication (they don't change the TW). What's
nice about this is that there tend to be lots of files we need to
share, and using Dropbox means all I have to do is put them in a
folder system with links in the TW and voila! everyone has the files
on their own computers.

We have also used a Dropbox/TW combination quite successfully to
manage documents and information for a faculty search. The TW had a
form for basic information about each candidate and links to
electronic versions of their documents; all is in a Dropbox folder and
thus again everyone has all the files. Here, anyone in the group could
add comments, notes, rankings, etc. This works pretty well but bumps
up against the limitation that ordinary TWs really aren't designed for
multi-user editing. I did the big edits at night, and most times other
users needed to edit only briefly, so they opened, edited, saved and
Dropbox caught up quickly. But sometimes someone would leave their
copy in edit mode for a while, during which time someone else edited
and saved, or two users would just happen to be editing at the same
time. The good thing is that Dropbox tracks this and saves both
versions (one as XXX's conflicted copy). The bad thing is that
someone (me) then has to compare the files and reconcile them.

Hope that helps,
Jon

-- 
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: TW-OS a TiddlyWiki Operating System

2011-05-05 Thread axs
Mans, I like the TW logo :)

-- 
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.