[tw] CheckboxPlugin with javascript

2009-03-27 Thread RA

Eric,

could you kindly check if this is me doing something wrong, or the
CheckboxPlugin reg exp needs fixing.

I can't get this checkbox to work:

[_{}{place.checked?removeStyleSheet(fixedSideBarStyle):setStylesheet
(@media screen { #contentWrapper  #sidebar { position:fixed !
important; } } \n\n,fixedSideBarStyle)}]

Also, what's the difference between [x{}{javascript}] and [x{}{}
{javascript}]?

Thanks

--R
--~--~-~--~~~---~--~~
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: CheckboxPlugin with javascript

2009-03-27 Thread RA

This works (put it right in your SideBar):

script label=loz; title=fix the sidebar
var s=fixedSideBarStyle;
if (null==document.getElementById(s))
setStylesheet(@media screen { #contentWrapper  #sidebar
{ position:fixed !important; } } \n\n,s)
else
removeStyleSheet(s);
return false;
/script

--R

On Mar 27, 3:42 am, RA nameany...@gmail.com wrote:
 Eric,

 could you kindly check if this is me doing something wrong, or the
 CheckboxPlugin reg exp needs fixing.

 I can't get this checkbox to work:

 [_{}{place.checked?removeStyleSheet(fixedSideBarStyle):setStylesheet
 (@media screen { #contentWrapper  #sidebar { position:fixed !
 important; } } \n\n,fixedSideBarStyle)}]

 Also, what's the difference between [x{}{javascript}] and [x{}{}
 {javascript}]?

 Thanks

 --R
--~--~-~--~~~---~--~~
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: MonkeyGTD and ExportTiddlersPlugin

2009-03-27 Thread Simon Baird
I sounds like a good solution. Personally I don't worry about keeping old
stuff once they're done. But it's certainly a useful idea especially in a
professional environment. How is it working for you so far?

Simon.

On Sun, Mar 1, 2009 at 4:22 PM, steeef ste...@gmail.com wrote:


 I've only just started using MGTD, but I wanted to head off the html's
 growth in size by figuring out a good method to archive completed
 tasks and projects. I found this:

 http://www.tiddlytools.com/#ExportTiddlersPlugin

 I added the macro exportTiddlers inline to MGTD's Cleanup panel. I
 can search for tiddlers that match the tag Done, export them to a
 separate html file, and then delete them. I tested this, and also
 tested importing them back, and it seems to work fine.

 Is this worth incorporating this method into MGTD's code? Does anyone
 else have any tips for archiving and cleaning up old tasks/projects?

 



-- 
simon.ba...@gmail.com

--~--~-~--~~~---~--~~
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] getting the tiddler.title into a macro in a view template

2009-03-27 Thread Stephen Phillips

Hi,
I have a tiddlywiki containing some tiddlers tagged as
Organisations and some tagged as Projects.  Each organisation
tiddler is tagged with the projects that that organisation
participates in.
I have written a tiddler called ListPartners:

forEachTiddler
 where
 'tiddler.tags.contains($1)  tiddler.tags.contains
(Organisations)'
 sortBy
 'tiddler.title'
 write
 '((index == 0) ?  : , ) + [[ + tiddler.title + ]]'


If I use this in one of the partners tiddlers as:

tiddler ListPartners with: SomeProject

then I get a comma-separated list of all the project partners.  So far
so good!

  I have my own theme tiddler and in the view template I would like to
have various project-specific stuff displayed for project tiddlers.
So I wrote:

div macro=showWhenTagged Projects
divbStart Date:/b span macro=view startdate/span/div
divbEnd Date:/b span macro=view enddate/span/div
divbPartners:/b span macro=tiddler ListPartners
with:'{{title}}'/span/div
/div

The start and end dates of the project appear fine but I cannot work
out how to get the partner list to appear - the problem is how to pass
the title of the tiddler being viewed into the ListPartners macro?  I
have tried various refactorisations and quoting strategies but I
cannot find the right solution.

Can anyone help me?

Thank you.

Stephen Phillips.

--~--~-~--~~~---~--~~
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: getting the tiddler.title into a macro in a view template

2009-03-27 Thread Eric Shulman

 tiddler ListPartners with: SomeProject
 then I get a comma-separated list of all the project partners.  So far
 so good!
 span macro=tiddler ListPartners with:'{{title}}'/span
 The start and end dates of the project appear fine but I cannot work
 out how to get the partner list to appear - the problem is how to pass
 the title of the tiddler being viewed into the ListPartners macro?

Try this:
span macro=tiddler ListPartners with:{{tiddler.title}}/span

note: in order to use the tiddler.title reference, you need to be
using TW2.4.3 or above (or have TiddlyTools CoreTweaks installed...
specifically core tweak #444).

enjoy,
-e
Eric Shulman
--~--~-~--~~~---~--~~
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: Filtering dates with mgtdlist?

2009-03-27 Thread Simon Baird
mgtdList
title:'Done'
mode:global
startTag:Action
tags:'Done'
view:DoneAction
group:day
gView:DoneAction
gSort:-title
newButtonTags:'Action Next Done'
sort:-modified
where:'tiddler.modified  (new Date()).setDate((new Date()).getDate() -
7)'



The last bit is the important part. For a specific date you could do this:

where:'tiddler.modified  Date.convertFromMMDDHHMM(20090320)'

timeline is a TiddlyWiki built in macro.

On Tue, Mar 3, 2009 at 12:45 AM, acodring @gmail.com wrote:


 Hi there,
 I'm trying to cook up a reporting view that includes completed actions
 and/or projects from last week.
 where or gwhere from mgtdlist smell like they might be able to filter
 by date, but I haven't found a reference saying what's available in
 them.
 In a perfect world the filter would 'just know' when last week was,
 but I'd be very willing to edit the tiddler and put in the date range
 I want.

 The timeline part of 'Last 30 Modifications' from the Mankoff Dash
 looks interesting too:
 timeline modified 30 ddd, -0MM-0DD
 Where does 'timeline' come from?

 Any pointers that will speed my googling appreciated!
 Andrew



--~--~-~--~~~---~--~~
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: FNDs eMailMacro fetching a field (emailadress) how to?

2009-03-27 Thread Måns

hmm - this didn't work either(trying to fetch the field from the
titletiddler):
/spanspan macro='email to:{{store.getTiddlerValue(tiddler,email)
+}} permalink:true'/span

:-(

On 27 Mar., 12:25, Måns humam...@gmail.com wrote:
 Or something like this??:
 span classmacro='email subject:Hello World to::
 {{store.getTiddlerText(email,)}}/span

 Where I put the emailfieldcatcher into a tiddler:
 Tiddlername: email
 TiddlerBody: +tiddler.fields[email]+

 The idea is to use emailMacro as a button in viewtemplates on teacher-
 studentcards - with emailfields predefined.

 Any pointer - also to alternative methods-  would be appreciated..

 YS Måns Mårtensson

 On 26 Mar., 23:22, Måns humam...@gmail.com wrote:

  Hi
  I would like to make my emailbutton - in the customViewTemplate - to
  fetch the tiddlers custom field (email) and put it in the address..
  Is this somehow possible??

  Examples (not working!!):

  In tiddler textbody:
  email subject:Hello World to:+tiddler.fields[email]+
  label:mail to Foo tooltip:send this tiddler to Foo
  permalink:true

  or in ViewTemplate

  span macro='email subject:Hello World to:+store.getValue
  (tiddler,email)+ label:mail to Foo tooltip:send this tiddler to
  Foo permalink:true'/span

  YS 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
-~--~~~~--~~--~--~---



Re: MGTD: Setting Realm with cookie

2009-03-27 Thread Simon Baird
That's a good idea. Thanks for the suggestion.

Regards,

Simon.

On Tue, Mar 3, 2009 at 10:14 AM, steeef ste...@gmail.com wrote:


 Is there an easy way to set active realm(s) based on the browser's
 cookie. I'm looking through the code but I can't seem to find exactly
 how this works. It'd be nice to have the Personal realm active by
 default when I'm at home, but have both realms active when I'm at work.
 



-- 
simon.ba...@gmail.com

--~--~-~--~~~---~--~~
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: action dependencies

2009-03-27 Thread Simon Baird
It's been requested frequently. It's on my list of desirable features but I
can't say when it will happen.

On Mon, Mar 9, 2009 at 6:40 PM, jdunham jwdun...@gmail.com wrote:


 I think this is a common problem.

 Check out these other threads for two different approaches:

 http://groups.google.com/group/GTD-TiddlyWiki/browse_thread/thread/923a998109fbdf0f?hl=en

 http://groups.google.com/group/GTD-TiddlyWiki/browse_thread/thread/bd1d4179a211ae06?hl=en

 If you're looking for something totally simple, you should make sure
 you know how to link tiddlers (use double square brackets [[My
 Tiddler]] if there are spaces, otherwise just type it).  For each task
 that is dependent, you can just put this task has to wait for [[My
 Tiddler]] in the Content area of that dependent Action.

 - Jason

 On Mar 7, 2:26 pm, GammaStar polyg...@mac.com wrote:
  I have just started using MonkeyGTD and so far it seems to be just the
  ticket for organising my multi-project, short-term-memory-impaired
  work life.
 
  Within GTD it is possible to have an action be in a wait state, but it
  seems that it must be waiting for a //person//.  Is it possible to
  have an action wait for the completion of another action instead?
 



-- 
simon.ba...@gmail.com

--~--~-~--~~~---~--~~
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: getting the tiddler.title into a macro in a view template

2009-03-27 Thread Stephen Phillips

 Try this:
 span macro=tiddler ListPartners with:{{tiddler.title}}/span

 note: in order to use the tiddler.title reference, you need to be
 using TW2.4.3 or above (or have TiddlyTools CoreTweaks installed...
 specifically core tweak #444).

Thank you Eric.
Unfortunately your suggestion still just gives me a blank.  I am using
the latest MPTW:  v2.5.2.  Looking in the header of the file it seems
to be based on TW 2.4.1 so I have installed CoreTweaks and reloaded -
still no luck!

Stephen.
--~--~-~--~~~---~--~~
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: getting the tiddler.title into a macro in a view template

2009-03-27 Thread Eric Shulman

  note: in order to use the tiddler.title reference, you need to be
  using TW2.4.3 or above (or have TiddlyTools CoreTweaks installed...
  specifically core tweak #444).

 Thank you Eric.
 Unfortunately your suggestion still just gives me a blank.  I am using
 the latest MPTW:  v2.5.2.  Looking in the header of the file it seems
 to be based on TW 2.4.1 so I have installed CoreTweaks and reloaded -
 still no luck!

oops!   Because you are using a version earlier than 2.4.3, you need:
   http://www.TiddlyTools.com/#CoreTweaksArchive
which contains tweaks that have already been fixed in the core, and
thus are no longer needed if you are using an up-to-date TW, but can
still be applied to patch somewhat older versions of TW that don't
have those fixes.

enjoy,
-e


--~--~-~--~~~---~--~~
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: getting the tiddler.title into a macro in a view template

2009-03-27 Thread Stephen Phillips

 oops!   Because you are using a version earlier than 2.4.3, you need:
    http://www.TiddlyTools.com/#CoreTweaksArchive
 which contains tweaks that have already been fixed in the core, and
 thus are no longer needed if you are using an up-to-date TW, but can
 still be applied to patch somewhat older versions of TW that don't
 have those fixes.

Fantastic!  All works now.  Thank you very much.

Stephen.
--~--~-~--~~~---~--~~
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: Project/Task

2009-03-27 Thread Simon Baird
On Mon, Mar 9, 2009 at 6:19 PM, jdunham jwdun...@gmail.com wrote:


 What I chose was a new ProjectStatus I call pending which is really
 pending my availability to work on it.
 I also have a new ActionStatus called queued which basically means
 the same thing.

 It wasn't too difficult to update my favorite views, and I also
 created a new dashboard view which works well for me.



 I am happy to share what I did, but I'm not quite sure the best way to
 do that.


Firstly, I'm thrilled that you guys are figuring out how to do this stuff.

Secondly, let me express gratitude to those who have been responding to
requests for help on this list. And to everyone who cares enough to post
some ideas and thoughts, it is much appreciated.

Thirdly, regarding a good way to share what you did, it would be great to
include something like this in the documentation. Especially if you know
your way around MediaWiki (or even if you don't it's not hard to get
started)... Okay I made a stub of sorts here:
http://tiddlywiki.org/wiki/MonkeyGTD/Customization_Guide/Custom_Project_Classifications

Simon.

-- 
simon.ba...@gmail.com

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



Listing Next Actions by creation date in MonkeyGTD?

2009-03-27 Thread marcwomm

Hi,
I am using MonkeyGTD for about 7-8 months now and I am very happy with
it.
I just completed my weekly review and I am wondering if it is possible
to get the Next Actions (or any other lists) sorted by Creation Date,
rather than in alphabetical order?

Any ideas anyone?

Best regards
Marcus
--~--~-~--~~~---~--~~
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: FNDs eMailMacro fetching a field (emailadress) how to?

2009-03-27 Thread FND

 I would like to make my emailbutton - in the customViewTemplate - to
 fetch the tiddlers custom field (email) and put it in the address..

You need to use evaluated parameters* - like so:
 email to:{{tiddler.fields.email}}
(untested)

HTH.


-- F.


* http://tiddlywiki.org/wiki/Macros#Evaluated_Parameters


--~--~-~--~~~---~--~~
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] file:/// protocool and chkGenerateAnRssFeed

2009-03-27 Thread prestomation

Hi everybody.

I am a fairly new user of TW and I love it. I am using a TW file on a
network share. I just turned on the chkGenerateAnRssFeed option
yesterday and it generates an xml file just fine.

When I open the file in firefox, I get a This XML file does not
appear to have any style information associated with it. The document
tree is shown below and the straight, formatted XML. Same thing in
IE.

If I stick that xml file on a local apache server and browse to it,
the RSS feed works as expected, so apparently IE and Firefox are just
weird about RSS and the file:// protocool.
I can see where this would be an IE/Firefox issue and not a TW issue,
but I'm sure others have run into this. How are you adjusting to this
behavior?

Thanks in advance

--~--~-~--~~~---~--~~
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: FNDs eMailMacro fetching a field (emailadress) how to?

2009-03-27 Thread Måns

Hi FND

It does'nt work for me.

I tried this in my viewtemplate: span macro='email to:
{{tiddler.fields.email}} permalink:true'
And created a field called email - with some emailaddress value in a
tiddler.
But it only returned an empty addressfield...
It works fine - just entering text - so it's not the emailclient
making trouble..

YS Måns Mårtensson


On 27 Mar., 09:21, FND f...@gmx.net wrote:
  I would like to make my emailbutton - in the customViewTemplate - to
  fetch the tiddlers custom field (email) and put it in the address..

 You need to use evaluated parameters* - like so:
      email to:{{tiddler.fields.email}}
 (untested)

 HTH.

 -- F.

 *http://tiddlywiki.org/wiki/Macros#Evaluated_Parameters
--~--~-~--~~~---~--~~
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: FNDs eMailMacro fetching a field (emailadress) how to?

2009-03-27 Thread FND

 It does'nt work for me.

Could you provide a minimal test case:
 http://www.tiddlywiki.org/wiki/Troubleshooting


-- F.

--~--~-~--~~~---~--~~
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] Refreshing PDFs

2009-03-27 Thread skye riquelme

Hi All

I am using an iframe to view a pdf document.only problem is that
if I go open a different tiddler and then go back to th pdf
tiddler...the pdf is not showing.I have to edit and done to force
it to refresh the pdf again.

Any quick solution, to have the display...or refresh
automaticallythere is the refresh pluginbut can I activate it
for specific tiddlers (by tag?)..

Thanks

Skye

PS I am using TiddlerBar Plugin!
--~--~-~--~~~---~--~~
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: Print multiple tiddlers (groups) simultaneously

2009-03-27 Thread prash

Thanks a lot for the response. I will give it a try.

On Mar 26, 11:17 am, Måns humam...@gmail.com wrote:
 Story saverplugin:in addition to automatic cookie-based story
 tracking, the plugin also provides saveStory and openStory
 macros that allow you to quickly save the current story definition to
 a tiddler, and then re-display saved stories using simple, one-click
 command links or droplists.
 SnapShotplugin: when invoked via toolbar commands, the id:ask
 option is automatically applied, and a droplist of elements to choose
 from is displayed. Example:snapshot print id:story

 On 26 Mar., 18:09, Måns humam...@gmail.com wrote:

  Hi Prash

  I would use StorySaverPluginhttp://www.TiddlyTools.com/#StorySaverPlugin
  To save my tiddlers in groups -
  and
  snapshotPluginhttp://www.TiddlyTools.com/#SnapshotPluginandselect
  story columns..
  You could even make it a button in the first tiddler with the print
  story column as action!!

  Regards Måns Mårtensson

  On 26 Mar., 16:36, prash pacificpri...@gmail.com wrote:

   Anybody?
--~--~-~--~~~---~--~~
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: Listing Next Actions by creation date in MonkeyGTD?

2009-03-27 Thread refortin

Add the 'sort' attribute to the mgtdList command.  For example, edit
the 'Next Actions by Context' tiddler to look like this:

mgtdList title:'Next Actions by Context' startTag:Action tags:'Next
 !Done' view:ActionProj mode:global
group:Context
newButtonTags:'Action Next'
where:tiddler.hasActiveProject()
sort:created


On Mar 27, 8:21 am, marcwomm marcw...@123mail.org wrote:
 Hi,
 I am using MonkeyGTD for about 7-8 months now and I am very happy with
 it.
 I just completed my weekly review and I am wondering if it is possible
 to get the Next Actions (or any other lists) sorted by Creation Date,
 rather than in alphabetical order?

 Any ideas anyone?

 Best regards
 Marcus

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



Syntax mgtdList

2009-03-27 Thread Blazeguru

mgtdList is used many times in MonkeyGTD. In this newsgroup I also
read sometimes about this command. It seems very interesting (sort of
SQL for querying tiddlers ?). I could not find how to use this
command. Can someone tell me where I can find the syntax of this
command ?
--~--~-~--~~~---~--~~
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] Fire Baggr

2009-03-27 Thread skye riquelme

Hi again

sometime there was some flurry about an application called Fire
Baggrlooked good...and I was going off in other TWirections at the
timenow come back to Baggr...and it seems it hasn´t actually
developed any furtheranyone have the latest news..

Skye
--~--~-~--~~~---~--~~
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] Beginner's guide to Yann Perrin's E.A.S.E utilities

2009-03-27 Thread Jel

As a relative tyro here (for all that I go back to the ark in computer
terms), I was wrestling to understand what Yann means when it comes to
installing his tools, because the use of the term Command is
relatively ambigous - and rare. However, by dint of burning
braincells, I eventually discovered how it's done, and felt that it's
worth adding a note here to help others along behind me, particularly
those who aren't programmers, as Yann doesn't appear to have provided
the necessary on his site.
At a superficial level, what you have to do is add format, ''slicer
or tongue (in exact lower case) to the end of the EditTemplate row
in the ToolbarCommands shadow tiddler. Be careful not to delete the |
at the end, or you'll wipe out the edit menu irrecoverably. You also
have to download the easyFormat, easySlicer, and easyTongue tiddlers,
together with their parent class in the E.A.S.E tiddler, from his
website. Close any open tiddlers, save the TW off and refresh it:
you'll then see the relevant additions to the command menu just above
the tiddler when you're editing it. The Slicer uses a rather nifty 8
scissors smiley...
Anyone who can tell me how to invoke those elsewhere, please guide my
hand and complete the job here.
--~--~-~--~~~---~--~~
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: Beginner's guide to Yann Perrin's E.A.S.E utilities

2009-03-27 Thread Eric Shulman


You might also like to take a look at this:

http://www.TiddlyTools.com/#QuickEditPackage

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--~--~-~--~~~---~--~~
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] TiddlyWiki newbie - things do not seem to be saved - I must be doing something wrong.

2009-03-27 Thread William R. Buckley

OK, I have downloaded the empty.html file, and made edits, then
clicked done, and saved the result, only to have it disappear into the
*ether*

I am generally competent around computational systems.  So, what I
really need are a few pointers, to other posts, or tutorials, etc.

My goal is to construct a Wiki that keeps track of the various class
sessions associated with a course offered via SecondLife, which course
addresses the topic of reverse engineering of the embryo.  I can
provide interested parties with copies of the TiddlyWiki already
created, should that be of value to those who offer their assistance.

I have already visited some of the other tutorials, and it has been a
few weeks since last I tried to work with TiddlyWiki, so I will return
to those tutorials.

Additional suggestions and comments by others are solicited.

William R. Buckley

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