integration with launchy?

2010-08-09 Thread dmic
Hi all,

I've been playing around with various GTD systems every since a friend
of mine introduced me to basic principles a couple of years ago.  So
far, I've used ones which are more geared towards the masses, in that
they allow every task to have a due date.  For a while, this stopped
me using mGSD as I couldn't comprehend stepping outside a framework
where everything had a due date for motivation.  However, I have now,
and both mGSD and GTD have come into their own in terms of not just
clearing my head, but actually completing actions.

I have two questions, but one seems to be the commonly asked one about
having mGSD on my android.  However, the other has to do with launchy
(http://www.launchy.net/).  Is there any way of setting up a plugin in
launchy so that I can just type a recognised code then the action and
have it entered into the system?

cheers,
dan

-- 
You received this message because you are subscribed to the Google Groups GTD 
TiddlyWiki group.
To post to this group, send email to gtd-tiddlyw...@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.



Re: Is there a way to look at all upcoming ticklers within the next week?

2010-08-09 Thread Michael Scherer

Glad to hear it's working for you.

BTW, i found a little bug causing the list to show one day more than
specified. In the following lines, the comparator '=' should be a '':

//BEGIN
  return (startTime.convertToMMDDHHMM() = this.fields.mgtd_date
endTime.convertToMMDDHHMM() = this.fields.mgtd_date);
//END

The correct version is (Note the modified second comparison):

//BEGIN
  return (startTime.convertToMMDDHHMM() = this.fields.mgtd_date
endTime.convertToMMDDHHMM()  this.fields.mgtd_date);
//END

Bye,
Michael

Am 09.08.2010 05:44, schrieb Gary Buckley:

Worked like a charm, thanks.

It was interesting to see the method for adding function calls into
the system too.

Cheers,
Gary

On 6 Aug, 15:42, Michael Scherermisc0...@googlemail.com  wrote:

I wrote a function that can be used instead of
tiddler.tiddlerisActive().

Create a new tiddler named 'TicklerWillBeActiveWithin' with the two
tags 'systemConfig' and 'exludeSearch' (all without quotes, of
course). Copy all the text between the BEGIN and END lines into the
content field:

//BEGIN
merge(Tiddler.prototype,{
 ticklerWillBeActiveWithin: function(numDays) {
 // Ignore ticklers without date
 if (!this.fields.mgtd_date)
 return false;

 var nowTime = new Date();

 // Respect user settings (see ticker.isActive())
 var defaultHourToActivate = 5; // fixme put elsewhere
 var hourToActivate = 
config.mGTD.getOptTxt('tickleractivatehour') ||
defaultHourToActivate;
 if (nowTime.getHours()  hourToActivate) {
 // Too early in the morning, go back one day.
 nowTime.setDate(nowTime.getDate() - 1);
 }

 // Start tomorrow
 startTime = new Date(nowTime.getFullYear(), nowTime.getMonth(),
nowTime.getDate() + 1);
 // End in numDays days
 endTime = new Date(nowTime.getFullYear(), nowTime.getMonth(),
nowTime.getDate() + 1 + numDays);

 return (startTime.convertToMMDDHHMM()= 
this.fields.mgtd_date
  endTime.convertToMMDDHHMM()= this.fields.mgtd_date);
 }

});

//END

Save your wiki and reload it. Now, you can use the function in your
mgtdList as follows: (Note the changed 'where' clause)

//BEGIN
mgtdList title:'Upcoming Ticklers'
 startTag:Tickler
 tags:'!Actioned'
 view:Tickler
 mode:global
 newButtonTags:'Tickler Once'
 where:'tiddler.ticklerWillBeActiveWithin(7)'
 sort:'tickleDate'
 ignoreRealm:
{{config.mGTD.getOptChk('AlertsIgnoreRealm')?'yes':''}}



//END

This will show all future ticklers for the next 7 days. Of course, by
replacing the '7' in the list's where clause with another number, you
can define any other period.

HTH,
Michael




--
You received this message because you are subscribed to the Google Groups GTD 
TiddlyWiki group.
To post to this group, send email to gtd-tiddlyw...@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: Bar/Pie/Line Charts in TiddlyWiki using g.raphael

2010-08-09 Thread rakugo
Thanks Mans and Alex.

Alex:
It seems someone has done radar charts here:
http://www.tnzk.org/devel/Raphael-Radar/example/

I'll check the code quality and the license to see if I can knock
something up...

Jon
On Aug 9, 9:02 am, Alex Hough r.a.ho...@gmail.com wrote:
 Hi Jon,

 These look great.
 Any chance of a Radar diagram?

 Alex
 [1]http://en.wikipedia.org/wiki/Radar_chart

 On 8 August 2010 22:04, Måns humam...@gmail.com wrote:

  Hi Jon
   I did a bit of a hack on Friday to take tables of data and put them
   into useful charts.
   I'm hoping this well help convert lots of Excel users to using
  Simply brilliant and very beautiful indeed!!
  I really like the different graphical representations - and the simple
  animations are awesome.
  I will try to put it my TW with Paul S's slideShowPlugin - and see if
  this combination eventually will end the need for powerpoint once and
  for all :-)

  Great job - and thanks for sharing!!

  Regards 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 tiddlyw...@googlegroups.com.
  To unsubscribe from this group, send email to
  tiddlywiki+unsubscr...@googlegroups.comtiddlywiki%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/tiddlywiki?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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] TSpace faq: How include only individual tiddlers?

2010-08-09 Thread FND

Unless I misunderstand something, including a space resets the 'local
layout' to the layout of that last included space.


That might be a side-effect if the included space contains tiddlers with 
customizations or a theme overriding the default TiddlySpace theme 
(though the current space's customizations take precedence).



more generally, various undesired tiddlers are included also
Is there a way to include only individual tiddlers? Or sets of
tiddlers?


That is not currently part of the design - space inclusion takes an all 
or nothing approach at the moment.
This is an intentional constraint to ensure simplicity, as managing more 
fine-grained inclusions would inevitably become rather complex.


Of course TiddlySpace is still young and evolving, so your feedback is 
much appreciated!


The upshot, for now, is that the onus is on the respective space members 
to provide sufficient granularity to avoid undesired side-effects when 
the space is included - usually, this means using separate spaces for 
plugins, themes and content.


Having said that, advanced users can leverage TiddlyWeb's underlying API 
to gain more control - however, there are no UIs for that yet, so it 
takes some fiddling. We're happy to get you started on the TiddlyWeb 
mailing list if you're interested.



-- F.

--
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: Sandbox or similar for tiddlyspace/faq/... (att: psd)

2010-08-09 Thread Paul Downey (psd)
On Aug 7, 11:59 am, twgrp matiasg...@gmail.com wrote:
 psd (whom I believe it associated with UnaMesa or at least core
 developmen, yes?)

Hi, I work for Osmosoft, and have contributed to the core..

has generously put 
uphttp://faq.tiddlyspace.comhttp://tiddlyspace.tiddlyspace.com/http://glossary.tiddlyspace.com/
 ...and maybe even more of public interest.

I've seeded a few documentation spaces which we're including into a
single, umbrella space:

http://docs.tiddlyspace.com

 For psd - and/or whomever does something similar - may I suggest some
 possibility for visitors to give comments. (Or do I misunderstand
 something - maybe this is already possible?)

I guess we could add the comments plugin, but I'm reluctant to do that
as of now, because:

1) these spaces are designed to be included into other spaces
2) there are social features which go beyond commenting coming soon
for TiddlySpace which I'd prefer to use, notably following where you
can create a tiddler with the same title and others visiting the space
will be able to selectively block/see comments on the basis of
individuals, or possibly spaces.

 Could be a sandbox but I
 guess the very best thing would be a way to comment individual
 tiddlers and some kind of tag or something so all such comments can be
 found easily. But really any possibility is better than none. IMO.

Indeed!

--
Paul (psd)
http://blog.whatfettle.com

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: Bar/Pie/Line Charts in TiddlyWiki using g.raphael

2010-08-09 Thread Tobias Beer
Hi Jon,

Quick question, did you wrap the macro code of TiddlyChartsPlugin
with...

(function($) {
})(jQuery);

...so that you could use jQuery commands inside it?

Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: Extending TiddlerName##Section Header to support html anchors

2010-08-09 Thread Tobias Beer
Hi rouiji,

I guess you can't just break the html code the way you did by
splitting the opening tag and the closing tag into different html
sections. I would guess that whatever tag you open in one html section
must be closed in the same... or, if not, this automatically happens.

Tobias

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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] Re: Bar/Pie/Line Charts in TiddlyWiki using g.raphael

2010-08-09 Thread FND

Quick question, did you wrap the macro code of TiddlyChartsPlugin
with...
(function($) {
})(jQuery);
...so that you could use jQuery commands inside it?


That closure is used to provide a local alias (i.e. shortcut):
http://tiddlywiki.org/wiki/Dev:Best_Practices#Creating_Aliases
http://docs.jquery.com/Plugins/Authoring#Custom_Alias

--
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: Extending TiddlerName##Section Header to support html anchors

2010-08-09 Thread Eric Shulman
 I guess you can't just break the html code the way you did by
 splitting the opening tag and the closing tag into different html
 sections. I would guess that whatever tag you open in one html section
 must be closed in the same... or, if not, this automatically happens.

You are correct.  Each html.../html block is processed separately
by the browser's rendering engine, so that any matched open/close
HTML tags syntax must occur within the same block.

-e

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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] A request for the FamilyTreePlugin TW (autofields)

2010-08-09 Thread Tobbe
Hi Jon,

May I come with another request regarding your FamliyTreePlugin. I
wanna be able to store the livingplaces for a person and what period
that person lived there. One person could move around alot back in
those days, anyway they did so here in Sweden. It's almost like having
more than one spouse issue I requested earlier.

And then one more thing, instead of typing every town/village in the
actual field can it be done that it's stored automatically. I mean
when I start typing the name it should be a dropdown list with choices
like autofield or what I should call it.

Thanks in advance

//Tobbe

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: A request for the FamilyTreePlugin TW (autofields)

2010-08-09 Thread rakugo
Add
living places:div class='editor' macro='niceTagger
field:homelocations'/div

to your ViewTemplate
and
living places: span macro='view homelocations bracketedlist'/span

This should be enough todo what you want...
Jon

On Aug 9, 6:10 pm, Tobbe torbjorn.tornqv...@gmail.com wrote:
 Hi Jon,

 May I come with another request regarding your FamliyTreePlugin. I
 wanna be able to store the livingplaces for a person and what period
 that person lived there. One person could move around alot back in
 those days, anyway they did so here in Sweden. It's almost like having
 more than one spouse issue I requested earlier.

 And then one more thing, instead of typing every town/village in the
 actual field can it be done that it's stored automatically. I mean
 when I start typing the name it should be a dropdown list with choices
 like autofield or what I should call it.

 Thanks in advance

 //Tobbe

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: A request for the FamilyTreePlugin TW (autofields)

2010-08-09 Thread Tobbe
 Add
 living places:div class='editor' macro='niceTagger
 field:homelocations'/div

 to your ViewTemplate
 and
 living places: span macro='view homelocations bracketedlist'/span
goes where? EditTemplate?

//Tobbe

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: A request for the FamilyTreePlugin TW (autofields)

2010-08-09 Thread Tobbe
Never mind. I figured it out

Thanks alot

//Tobbe

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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] TiddlyChat #3

2010-08-09 Thread Matt Lucht
Hi.
On September 7th Osmosoft will be holding the third TiddlyWiki open
projector evening – TiddlyChat.  It'll run in a similar format to
previous events with a strong focus on discussion rather than
individual presentations.

The purpose of TiddlyChat is to bring together people who use or have
an interest in TiddlyWiki, TiddlyWeb or TiddlySpace so that they can
meet other members of the community, find out what developments are
currently underway and what's in store for the future.

We'll be starting around 6pm at Osmosoft's Westminster office and
after a couple of hours relocate to a nearby pub for further
discussion.

If you'd like to come along please register here: 
http://tiddlychat3.eventbrite.com/

Many thanks,

Matt

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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] TiddlyWiki contributor badges

2010-08-09 Thread Matt Lucht
Hi.

We've had made some rather cool, limited edition TiddlyWiki badges.
We'd like to send one to the leading contributors within the
TiddlyWiki community and we're looking for your help in deciding who
they should be.

If you could let me know via email (matt[at]osmosoft[dot]com) the
names of the people you'd like to nominate as having provided the best
Tiddly* plugins or the most helpful support that'd be great.  We'll
announce who the recipients are via the group!

Many thanks,

Matt

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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] K-Meleon

2010-08-09 Thread Alison
I just started using TiddlyWiki with k-meleon browser (http://
kmeleon.sourceforge.net/) running Windows XP. Seems to be running
well.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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: Extending TiddlerName##Section Header to support html anchors

2010-08-09 Thread rouilj
On Aug 9, 10:58 am, Eric Shulman elsdes...@gmail.com wrote:
 Tobias Beer:
  I guess you can't just break the html code the way you did by
  splitting the opening tag and the closing tag into different html
  sections. I would guess that whatever tag you open in one html section
  must be closed in the same... or, if not, this automatically happens.

 You are correct.  Each html.../html block is processed separately
 by the browser's rendering engine, so that any matched open/close
 HTML tags syntax must occur within the same block.

Yeah I sort of figured. It makes sense, just wish it worked some other
way.

Eric, what do you think of extending the ## syntax to match name=
anchors (and I
guess in newer browsers arbitrary id= can also be targeted using the
fragment:
http://en.wikipedia.org/wiki/Fragment_identifier).

With the caveat that it works only for links and not for
tiddler ... calls.
Unless there is a tiddlywiki way to add an id attribute to a div/span
in which case
the html/html hack isn't needed and including text with an id is
reasonable.

-- rouilj

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@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.