Re: How to collect with mGTD

2009-09-09 Thread Javier Cuadrado

I use 3 different things to collect:

1) A ToDo folder in my lotus notes mail client. There I put emails
that take more than 2 minutes to process

2) Evernote software to take notes. It works in many platforms and is
very useful

3) I write emails from my Pocket PC or mobile phone. I send them to me
and they go directly to my ToDo folder. I regularly use the subject
field to write down one idea.

j.

On 8 sep, 23:43, Swaroop C H swaroo...@gmail.com wrote:
 I have one regular TiddlyWiki for inbox, and use mGTD for projects.

 On Tue, Sep 8, 2009 at 8:22 PM, NanetteAndrusiaknlu...@gmail.com wrote:

  I'm fairly new to using mGTD, and haven't quite figured out a way to
  handle the collect phase. I'm used to having an inbox folder where I
  could dump things as they occur to me, then process them later.
  However, I'm always afraid to just dump things into mGTD without
  processing them right then and there (what if I lose them) So I
  decided to ask the pros. How do you handle the collect phase? Do you
  collect/process at the same time (pick the projects, realms, etc)? Or
  use another method?
  Thanks!
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Restoring from backup?

2009-09-09 Thread Kentmatt

I've been using Monkey GTD for about a week. This morning I opened it
up ... and everything was gone.  It was blank like I had just
downloaded it.

So I opened up my backups.  Everything was there... whew.

But I don't know how to replace the main file with the backup.  I
tried simply saving the backup over it, but after I open it again,  I
get a popup error message:

It appears that this TiddlyWiki has been incorrectly saved. Please
see http://www.tiddlywiki.com/#DownloadSoftware for details

then in the menu bar, there is another error message:

Error in macro mgtdList which has the explanation:
   Error while executing macro mgtdList: [Exception... Component
returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER)
nsresult: 0x80004003 (NS_ERROR_INVALID_POINTER) location: JS
frame :: file:///U:/GettingThingsDone/monkeygtd.html ::
setStylesheet :: line 18376 data: no]


What am I doing wrong?

--~--~-~--~~~---~--~~
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: Opening multiple tiddlers in the edit window

2009-09-09 Thread Jakob Graulund Jørgensen

Im possibly misunderstanding what i am doing. But I basically I pasted
an endless row of
newTiddler label:1 text:ABCDEFG tag:2   tag:1 
newTiddler label:2 text:ABCDEFG tag:4   tag:3 
newTiddler label:3 text:HIJKLMNO tag:2  tag:1 
newTiddler label:4 text:HIJKLMNO tag:3  tag:2 
etc
into my master tiddler's edit window and the output was all the
tiddlers I wanted but the tags didnt seem to have registred/be active
until i had opened and closed each tiddler I had just made.

However if I understand you correctly all I had was 100+ clickable
command links, which will answer why no tags were active - they
simply hadnt been created yet.

So if your http://www.TiddlyTools.com/#ImportTiddlersPlugin actually
creates tiddlers (and not just command links) I except the problem
has been solved, which would be great.


On Sep 9, 1:06 am, Eric Shulman elsdes...@gmail.com wrote:
  I created 100+ tiddlers with the newTiddler macro and each of those
  tiddlers had 2 tags, so I was expecting about 30 tags (the tags
  overlapped) to appear in the tag section, but none did.

 Normally, the newTiddler macro creates a clickable command link
 that open a tiddler in 'edit mode'.  How is it that you created 100+
 tiddlers without editing each one and pressing 'done'?  What syntax
 are you using and how are you triggering it?

 -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: RedirectMacro - ideas for the programmer that takes over for Clint

2009-09-09 Thread 27escape

Actually its really good for putting images inline

alias smiley [img[file:%0.png]]

then
smiley sad

This could also be used for image galleries etc.

On Sep 8, 9:01 am, 27escape kevin.27esc...@googlemail.com wrote:
 Thanks Eric, this is just what I need, brilliant!

 On Sep 7, 8:32 am, Eric Shulman elsdes...@gmail.com wrote:

   redirect TWhttp://www.tiddlywiki.org
   redirect 'ISBN(\w+)\s'http://link-about-isbn-numbers.org/isbn=$1

  You can do something similar, but with macro syntax, by installing
  this plugin:
     http://www.TiddlyTools.com/#AliasPlugin

  First, define the alias (embed in MainMenu or any other 'startup'
  tiddler):
     alias TW http://www.tiddlywiki.com;
  Then, to use it, write:
     TW

  You can also create alias that insert one or more parameters into the
  output by using %0 through %9 as 'substitution markers'.  Thus, if you
  define this alias:
     alias ISBN http://link-about-isbn-numbers.org/isbn=%0;
  you can write:
     ISBN 12345
  to create a link to:
     http://link-about-isbn-numbers.org/isbn=12345

  or, if you define the alias this way:
     alias ISBN [[%1|http://link-about-isbn-numbers.org/isbn=%0]];
  you could write:
     ISBN 12345 click me
  which renders as if you had typed:
     [[click me|http://link-about-isbn-numbers.org/isbn=12345]]

  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] Re: RedirectMacro - ideas for the programmer that takes over for Clint

2009-09-09 Thread Eric Shulman

 Actually its really good for putting images inline
 alias smiley [img[file:%0.png]]
 then
 smiley sad
 This could also be used for image galleries etc.

In addition to AliasPlugin, there are several other TiddlyTools
plugins that can be used to generate dynamic content:

http://www.TiddlyTools.com/#WikifyPlugin
Similar to AliasPlugin, in that it does %n substitution, but doesn't
create an alias macro, and parameter reference syntax
fieldn...@tiddlername and tiddlername::slicename to retrieve and
output values from custom fields or tiddler slices, respectively.

http://www.TiddlyTools.com/#InlineJavascriptPlugin
A power-tool for anyone with even just a little programming ability...
embed inline script.../script blocks within tiddler content, and
use virtually any javascript-based logic you want to assemble and
return the desired output text, which is automatically passed to the
core's wikify() function for rendering into the tiddler. For example:
   script
  var hour=new Date().getHour();
  var out=Good evening;
  if (hour18) out=Good afternoon;
  if (hour12) out=Good morning;
  if (hour6) out=Why aren't you asleep?;
  return out;
   /script

The plugin can also be used to create 'onclick' scripts that embed a
'command link' into the output and invoke the script action only when
that link is clicked:
   script label=what time is it?
  return br+new Date().toString();
   /script

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] Re: RedirectMacro - ideas for the programmer that takes over for Clint

2009-09-09 Thread poof65

nice, it's exactly what i wanted to do few time before, i didn't know
the plugin was already written.
thank you eric, i'll pick you this one too :-)

On Wed, Sep 9, 2009 at 10:21 AM, 27escapekevin.27esc...@googlemail.com wrote:

 Actually its really good for putting images inline

 alias smiley [img[file:%0.png]]

 then
 smiley sad

 This could also be used for image galleries etc.

 On Sep 8, 9:01 am, 27escape kevin.27esc...@googlemail.com wrote:
 Thanks Eric, this is just what I need, brilliant!

 On Sep 7, 8:32 am, Eric Shulman elsdes...@gmail.com wrote:

   redirect TWhttp://www.tiddlywiki.org
   redirect 'ISBN(\w+)\s'http://link-about-isbn-numbers.org/isbn=$1

  You can do something similar, but with macro syntax, by installing
  this plugin:
     http://www.TiddlyTools.com/#AliasPlugin

  First, define the alias (embed in MainMenu or any other 'startup'
  tiddler):
     alias TW http://www.tiddlywiki.com;
  Then, to use it, write:
     TW

  You can also create alias that insert one or more parameters into the
  output by using %0 through %9 as 'substitution markers'.  Thus, if you
  define this alias:
     alias ISBN http://link-about-isbn-numbers.org/isbn=%0;
  you can write:
     ISBN 12345
  to create a link to:
     http://link-about-isbn-numbers.org/isbn=12345

  or, if you define the alias this way:
     alias ISBN [[%1|http://link-about-isbn-numbers.org/isbn=%0]];
  you could write:
     ISBN 12345 click me
  which renders as if you had typed:
     [[click me|http://link-about-isbn-numbers.org/isbn=12345]]

  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] How to allow multiple people to edit the tiddlywiki

2009-09-09 Thread Ashish Sheth

Hi all,

I have setup tiddlywiki on my local machine as a website. We want to
use this out project documentation/discussion. How I allow other
people to edit the tiddlers I created and how others in my team can
create new tiddlers on the same tiddly wiki?

thanks and regards,
Ashish Sheth

--~--~-~--~~~---~--~~
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] Searching a way to add and update a tiddler with an external application (powershel)

2009-09-09 Thread UnclePhil

I'm using Powershell to document some system infrastructure.
I'm using TW to collate all my information
So naturally, i try to write directly in TW with Powershell

With a patched version of TW, i can add tiddler without problem but
i cannot update it

Did someone have already done this with powershell or any other non-
javascript languages ??

Many thanks'
Ph Koenig
Aka UnclePhil

--~--~-~--~~~---~--~~
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: Ok, here we go agian...different color on display area and background

2009-09-09 Thread shavinder

Well here is my attempt to sound interesting:
 A knot is and should be kept much more higher in importance due to
its complexity and creatively. What can a poor Nut do but to move in
either of the two direction? Now the knot is so much fluid, it is
rhythmical, its flowing and has a personality. The poor nut only has a
bolt to hang on to, whereas a knot can stand on its own.
In Punjabi there is a saying which points out the strength of a knot,
'that which you put with your hands, have to be opened with your
teeth'. Meaning that a knot is easy to tie but is quite difficult to
open when it tightens up!

Sorry for being off topic but couldn't resist to jump in


On Sep 8, 12:32 pm, Måns humam...@gmail.com wrote:
 LumpyMilk is a great blogspot - thanks for sharing!

 Btw - Danish has also the crazy expressions: noses that run and
 feet that smell.
 I don't know the etymological explanation - but I  know for certain
 that Danes believe that they are of old Danish origin... and not
 loanwords (if that is an English word?)...

 YS Måns Mårtensson

 On 8 Sep., 00:35, Eric Shulman elsdes...@gmail.com wrote:

   Yes the English language is knots :-)

  English is Tuff 
  Stoughhttp://lumpymilk.tiddlyspot.com/#%5B%5BEnglish%20is%20Tuff%20Stough%5...

  This Crazy 
  Languagehttp://lumpymilk.tiddlyspot.com/#%5B%5BThis%20Crazy%20Language%5D%5D

  -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] TiddlyHub beta online (searchable listing of plugins)

2009-09-09 Thread Saq Imtiaz
The beta release of TiddlyHub is now online and ready for use:
http://plugins.tiddlywiki.org
TiddlyHub is an automatically generated and searchable listing of TiddlyWiki
plugins.

For more background on TiddlyHub, please see the following thread:
http://groups.google.com/group/tiddlywiki/browse_thread/thread/9c5d6acb27ee957b/81b1b2959fc73652

The beginnings of an FAQ can be found here:
http://tiddlyhub.projects.unamesa.org/FAQ
I'll be working on that over the course of the day but in the meantime
please feel free to ask any questions that you might have.

Regards,
Saq

--~--~-~--~~~---~--~~
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: Ok, here we go agian...different color on display area and background

2009-09-09 Thread wolfgang

 Can I set the display area where I edit/add a new tiddler to be, let's
 say light yellow and have the rest (background) in other color?

 ...i'm learning slowly and slowly :)


For leaning what already has been defined with a plain TiddlyWiki also
take a look at StyleSheetLayout and StyleSheetColors tiddler. Although
you don't add your definitions to these tiddlers, but the StyleSheet
or any systemTheme tiddlers instead ('cos otherwise they'll be
overwritten with the next upgrade again).

You could try to write one of the following to your StyleSheet tiddler
to have a different color for your tiddler display area (untested):

#displayArea{background:#eff3fa}

or:

#displayArea{background:[[ColorPalette::TertiaryPale]]}

or:

#displayArea{background:url{http://any.server.com/img.png}

or:

#displayArea{background:url{url(data:image/jpeg;base64,...)

also, to see what already has been done, you could take a look at the
following collection of themes:

http://change.tiddlyspot.com/download

Regards..
--~--~-~--~~~---~--~~
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: TiddlyHub beta online (searchable listing of plugins)

2009-09-09 Thread wolfgang

Great!

many thanks for setting it up, Saq.

Would be nice if InlineJavascriptPlugin dependend script also would be
listed, since the often provide much additional functionality too.

regards..

--~--~-~--~~~---~--~~
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: How to allow multiple people to edit the tiddlywiki

2009-09-09 Thread wolfgang

You mean making it accessible on a web server?

see here:
http://tiddlywiki.org/wiki/Can_I_use_TiddlyWiki_as_a_multi-user/collaborative/server_based_wiki%3F

Regards..
--~--~-~--~~~---~--~~
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: Need help with Java Script coding for fixing broken wikibar plugin

2009-09-09 Thread wolfgang

 To my sorrow, the plugin stopped working somewhere from TW core
 version 2.4.1
 It is only half broken, and half functioning, the half that doesn't
 work, includes a 'preview' function, which to me was critical. (since
 using server side ccTiddly, all revisions are saved on the server, so
 it causes exessive store of not needed versions, which can be avoided
 by using 'preview').


Sorry for not being able to help with correcting the code. I find it
sad too, that such great plugins stop to work correctly after an
upgrade. (maybe a CombabilityModePlugin - for switching to the
workings of different versions of TiddlyWiki, would be of great help
here?)

Meanwhile, till someone else comes up with a solution for wikibar, you
could use PreviewPlugin:

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

Regards..
--~--~-~--~~~---~--~~
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] How to overcome z-index of sidebar tabs?

2009-09-09 Thread wolfgang

Hi Everyone,

when using tiddlyDesktop it appears that no increase of the z-index
can overcome the overlay of sidebar tabs.

I tried for example here - where I use tabs in the main menu - by
adding a higher z-index to the .tiddler .selected definition (for
easy access, scroll the appearing configuration tiddler down and click
'tiddlyDesktopStyle'):

http://aid.tiddlyspot.com/

- whenever a MainMenu tab is opened and a tiddler moved above.

Any help would be highly appreciated.
--~--~-~--~~~---~--~~
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] wikify code in LoadTiddlersMacro??

2009-09-09 Thread skye riquelme

Hi All

Hope someone can correct this code for me -

loadTiddlers tag:{{config.options.txtUserName}}
{{config.options.txtURL}}

the macro correctly looks to URL defined in txtURL, and txtUserName is
correct and there are tiddlers in the target URL with the same
tags..but it doesnt read the tiddlers...!

Thanks
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] Re: TiddlyHub beta online (searchable listing of plugins)

2009-09-09 Thread Måns

This is beyond great - it's super magnificent!!!
Thanks a lot for making a searchable repository based on links.
I will use it as my startpage for at least a month ;-)

I second Wolfgangn in his point regarding scripts and I would like to
have an overview of all types of plugins, not only systemConfig'ed
ones...

I just discovered that YourSearch had been updated 2.1.4 (2009-09-04)
- and I had this: 2.1.0 (2006-10-12) in most of my TWs!!
I even had: 2.1.4 (2008-10-28) - in one TW, which isn't listed in the
history of the plugin of 2.1.4 (2009-09-04)??

Great to be able to find updates on TiddlyHub - Thanks a lot!!

An idea for future devellopment - :
Toggle all plugins, which you want to update on TiddlyHub - drag a
bookmarklet to your TW-document, and the plugins you toggled will be
upgraded/updated directly from the sources - via TiddlyHub -
Or:
An extension of Erics ImportTiddlersPlugin, copy TiddlyHub's Url -
ImportTiddlersPlugin searches for updates through TiddlyHub - presents
a list of all available plugins (fetching them from different urls at
once) choose to sort by tags, titles or updates (based on which
plugins you already have installed in your TW) tick those you want to
be updated/upgraded - Import..

YS Måns Mårtensson

On 9 Sep., 16:10, Saq Imtiaz lew...@gmail.com wrote:
 The beta release of TiddlyHub is now online and ready for 
 use:http://plugins.tiddlywiki.org
 TiddlyHub is an automatically generated and searchable listing of TiddlyWiki
 plugins.

 For more background on TiddlyHub, please see the following 
 thread:http://groups.google.com/group/tiddlywiki/browse_thread/thread/9c5d6a...

 The beginnings of an FAQ can be found 
 here:http://tiddlyhub.projects.unamesa.org/FAQ
 I'll be working on that over the course of the day but in the meantime
 please feel free to ask any questions that you might have.

 Regards,
 Saq
--~--~-~--~~~---~--~~
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: How to allow multiple people to edit the tiddlywiki

2009-09-09 Thread skye riquelme

The iddlywiki.org address given refers to a plugin/service written by
BidiX called GroupAuthoringPluginand yet I have never been able
to find it on the BidiX webpage.does it still exist If so,
where???

Thanks
Skye

On 9 Set, 11:27, wolfgang wolfgangl...@gmail.com wrote:
 You mean making it accessible on a web server?

 see 
 here:http://tiddlywiki.org/wiki/Can_I_use_TiddlyWiki_as_a_multi-user/colla...

 Regards..
--~--~-~--~~~---~--~~
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] How do I list a collection of tiddlers by the creation date

2009-09-09 Thread M)

What I want to do is sort all tiddlers linked from a tiddler by the
creation date (maybe even by the modified date). I imagine I would
have to tag all of these tiddlers then use something like timeline
created ?tag? to present them all.  Does anyone know how to
achieve this?
--~--~-~--~~~---~--~~
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: How to allow multiple people to edit the tiddlywiki

2009-09-09 Thread wolfgang

 The iddlywiki.org address given refers to a plugin/service written by
 BidiX called GroupAuthoringPluginand yet I have never been able
 to find it on the BidiX webpage.does it still exist If so,
 where???


it was written Aug 20, 2006 and it's description slice said:

Lock/unlock a TiddlyWiki

Would you like to test it, if it still works?
--~--~-~--~~~---~--~~
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: TiddlyHub beta online (searchable listing of plugins)

2009-09-09 Thread wolfgang

 a list of all available plugins (fetching them from different urls at
 once) choose to sort by tags, titles or updates (based on which
 plugins you already have installed in your TW) tick those you want to
 be updated/upgraded - Import..


Mayby Saq's pluginUpdatesManager would already help?

http://svn.tiddlywiki.org/Trunk/contributors/SaqImtiaz/plugins/PluginUpdatesManager/pluginUpdatesManager.js

Saq, what happened to http://tw.lewcid.org/ ?

Regards..
--~--~-~--~~~---~--~~
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: TiddlyHub beta online (searchable listing of plugins)

2009-09-09 Thread Alex Hough
09/09/09: Beatles, Apple, TiddlyHub.

Alex

2009/9/9 Måns humam...@gmail.com


 This is beyond great - it's super magnificent!!!
 Thanks a lot for making a searchable repository based on links.
 I will use it as my startpage for at least a month ;-)

 I second Wolfgangn in his point regarding scripts and I would like to
 have an overview of all types of plugins, not only systemConfig'ed
 ones...

 I just discovered that YourSearch had been updated 2.1.4 (2009-09-04)
 - and I had this: 2.1.0 (2006-10-12) in most of my TWs!!
 I even had: 2.1.4 (2008-10-28) - in one TW, which isn't listed in the
 history of the plugin of 2.1.4 (2009-09-04)??

 Great to be able to find updates on TiddlyHub - Thanks a lot!!

 An idea for future devellopment - :
 Toggle all plugins, which you want to update on TiddlyHub - drag a
 bookmarklet to your TW-document, and the plugins you toggled will be
 upgraded/updated directly from the sources - via TiddlyHub -
 Or:
 An extension of Erics ImportTiddlersPlugin, copy TiddlyHub's Url -
 ImportTiddlersPlugin searches for updates through TiddlyHub - presents
 a list of all available plugins (fetching them from different urls at
 once) choose to sort by tags, titles or updates (based on which
 plugins you already have installed in your TW) tick those you want to
 be updated/upgraded - Import..

 YS Måns Mårtensson

 On 9 Sep., 16:10, Saq Imtiaz lew...@gmail.com wrote:
  The beta release of TiddlyHub is now online and ready for use:
 http://plugins.tiddlywiki.org
  TiddlyHub is an automatically generated and searchable listing of
 TiddlyWiki
  plugins.
 
  For more background on TiddlyHub, please see the following thread:
 http://groups.google.com/group/tiddlywiki/browse_thread/thread/9c5d6a...
 
  The beginnings of an FAQ can be found here:
 http://tiddlyhub.projects.unamesa.org/FAQ
  I'll be working on that over the course of the day but in the meantime
  please feel free to ask any questions that you might have.
 
  Regards,
  Saq
 



-- 
http://www.multiurl.com/g/64

--~--~-~--~~~---~--~~
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: Ok, here we go agian...different color on display area and background

2009-09-09 Thread Tobbe

Wow, thanks alot :) some really nice GUI :)

http://change.tiddlyspot.com/download

//T...
--~--~-~--~~~---~--~~
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] What happened to the SEOTiddlyWikiPlugin ?

2009-09-09 Thread FrD

Hello,

I may have some concerns with SEO (search engine optimization).
So I wanted to try SEOTiddlyWikiPlugin  from superphysique.net.

But this site doesn't seem to be online anymore or at least the TW I
was looking for.

Does anybody know where I could find SEOTiddlyWikiPlugin  ?
Or is there a more recent plugin in that area ?

Thanks

FrD
--~--~-~--~~~---~--~~
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: wikify code in LoadTiddlersMacro??

2009-09-09 Thread Eric Shulman

 loadTiddlers tag:{{config.options.txtUserName}}
 {{config.options.txtURL}}

 the macro correctly looks to URL defined in txtURL, and txtUserName is
 correct and there are tiddlers in the target URL with the same
 tags..but it doesnt read the tiddlers...!

The loadTiddlers macro handling for tag:tagvalue pre-dates the
core's support for 'named params', including the name:
{{computedvalue}} syntax.  In order to use a named, computed tag
param with loadTiddlers, you have to compute the entire param,
including the tag: prefix, as a single text string, like this:

loadTiddlers {{tag:+config.options.txtUserName}}
{{config.options.txtURL}}

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: Lewcid TW status

2009-09-09 Thread wolfgang

 .. with being a new father ..


Congratulations!

The very best..
--~--~-~--~~~---~--~~
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] Lewcid TW status

2009-09-09 Thread Saq Imtiaz
As some of you may have noticed Lewcid TW has been down for the past two
weeks. I was in the process of updating my TiddlyWiki to make available an
extra 20 plugins which have not previously been published; but ran into
problems with the saving code in the previous release of TiddlyWiki and had
to abort the process. That combined with being a new father means I haven't
had the chance to get Lewcid TW working again. However I'll try to get it
back up - including the new plugins - during the next week. My apologies for
leaving you stranded in the meantime.
Cheers,
Saq
PS: I can confirm that the saving bug in TiddlyWiki has been resolved.

--~--~-~--~~~---~--~~
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: TiddlyHub beta online (searchable listing of plugins)

2009-09-09 Thread Måns

Thanks for telling me about Saq's pluginUpdatesManager.
I tried to install it - but I don't get any options? -
If you wan't to have a look at it:
http://dl.getdropbox.com/u/1064531/ESL/el0910.html#PluginUpdatesManager

Does it depend on http://tw.lewcid.org/ ? (It seems to be down at the
moment..)

YS Måns Mårtensson

On 9 Sep., 18:30, wolfgang wolfgangl...@gmail.com wrote:
  a list of all available plugins (fetching them from different urls at
  once) choose to sort by tags, titles or updates (based on which
  plugins you already have installed in your TW) tick those you want to
  be updated/upgraded - Import..

 Mayby Saq's pluginUpdatesManager would already help?

 http://svn.tiddlywiki.org/Trunk/contributors/SaqImtiaz/plugins/Plugin...

 Saq, what happened tohttp://tw.lewcid.org/?

 Regards..
--~--~-~--~~~---~--~~
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: Lewcid TW status

2009-09-09 Thread Måns

 being a new father  :-)

Congratulations - Best wishes...

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



[tw] Remove/Hide YourName and/or Date from all tiddlers?

2009-09-09 Thread UsmanB

Is there a way to hide or remove the date and user line from all
tiddlers?

YourName, 1 September 2009(created 20 July 2009
--~--~-~--~~~---~--~~
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: Remove/Hide YourName and/or Date from all tiddlers?

2009-09-09 Thread Eric Shulman

 Is there a way to hide or remove the date and user line from all
 tiddlers?

In the [[ViewTemplate]], simply remove the following:

div class='subtitle'span macro='view modifier link'/span, span
macro='view modified date'/span (span macro='message
views.wikified.createdPrompt'/span span macro='view created
date'/span)/div

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: How do I list a collection of tiddlers by the creation date

2009-09-09 Thread M)

 If the tagging tag macro could be tweaked to tagging tag
 created or tagging tag modified so that the listing presents the
 date and is sorted by date, then I'd be off to the races.  Is there a
 way to do this?

I see if http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin is
used, then something like this can be used:
forEachTiddler where 'tiddler.tags.contains(systemConfig)' where
'tiddler.created' sortBy 'tiddler.created' descending   I now have
to figure the tweaking of existing tiddlers.
--~--~-~--~~~---~--~~
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] Firefox: requesting enhanced abilities ... message - disabling it?

2009-09-09 Thread Shankar


Hello,

Is there a way I can permanently turn off the message:
A script from file:// is requesting enhanced abilities that are
UNSAFE and could be used to compromise your machine or data: ?

I run tiddly from my USB drive which runs firefox portable which can't
connect to the Internet.  (I use a different installation of Firefox
to connect to the Internet.)

And, if you tell me how, I promise not to do that in front of
children :-).

Thanks for your help.

Cheers; 'best,

shankar

--~--~-~--~~~---~--~~
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: How do I list a collection of tiddlers by the creation date

2009-09-09 Thread Alex Hough
You could try;


timeline created 0 ddd, -0MM-0DD


[1]http://tiddlywiki.org/wiki/Timeline_%28macro%29

ALex

[1]
http://groups.google.com/group/TiddlyWiki/browse_thread/thread/ae694362a7e3ec87#

2009/9/9 M) marc.bu...@gmail.com


  If the tagging tag macro could be tweaked to tagging tag
  created or tagging tag modified so that the listing presents the
  date and is sorted by date, then I'd be off to the races.  Is there a
  way to do this?

 I see if http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin is
 used, then something like this can be used:
 forEachTiddler where 'tiddler.tags.contains(systemConfig)' where
 'tiddler.created' sortBy 'tiddler.created' descending   I now have
 to figure the tweaking of existing tiddlers.
 



-- 
http://www.multiurl.com/g/64

--~--~-~--~~~---~--~~
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] Tag Cloud of Open Tiddlers

2009-09-09 Thread RRR

Is there a way to use Eric's TagCloudPlugin to display tags of only
open tiddlers?  I'd like the ability to display two tag clouds.  One
with all my tags and the other with only the tags of open tiddlers.
--~--~-~--~~~---~--~~
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: requesting enhanced abilities ... message - disabling it?

2009-09-09 Thread Swaroop C H
Type about:config into the URL address bar, and set the property
security.fileuri.strict_origin_policy
to false

Details at
http://tiddlywiki.org/wiki/A_script_from_%22file://%22_is_requesting_enhanced_abilities


On Thu, Sep 10, 2009 at 12:45 AM, Shankar shankar.sw...@gmail.com wrote:



 Hello,

 Is there a way I can permanently turn off the message:
 A script from file:// is requesting enhanced abilities that are
 UNSAFE and could be used to compromise your machine or data: ?

 I run tiddly from my USB drive which runs firefox portable which can't
 connect to the Internet.  (I use a different installation of Firefox
 to connect to the Internet.)

 And, if you tell me how, I promise not to do that in front of
 children :-).

 Thanks for your help.

 Cheers; 'best,

 shankar

 


--~--~-~--~~~---~--~~
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: Ok, here we go agian...different color on display area and background

2009-09-09 Thread Michael.Tarnowski

Hi Måns,

noses that run and feet that smell are not only a Danish colloquial
speaking; we in German have the same:
noses that run = laufende Nasen
feet that smell = stinkende Füsse

Cheers Michael


On Sep 8, 9:32 am, Måns humam...@gmail.com wrote:
 LumpyMilk is a great blogspot - thanks for sharing!

 Btw - Danish has also the crazy expressions: noses that run and
 feet that smell.
 I don't know the etymological explanation - but I  know for certain
 that Danes believe that they are of old Danish origin... and not
 loanwords (if that is an English word?)...

 YS Måns Mårtensson

 On 8 Sep., 00:35, Eric Shulman elsdes...@gmail.com wrote:

   Yes the English language is knots :-)

  English is Tuff 
  Stoughhttp://lumpymilk.tiddlyspot.com/#%5B%5BEnglish%20is%20Tuff%20Stough%5...

  This Crazy 
  Languagehttp://lumpymilk.tiddlyspot.com/#%5B%5BThis%20Crazy%20Language%5D%5D

  -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: How do I list a collection of tiddlers by the creation date

2009-09-09 Thread M)

 You could try;

 timeline created 0 ddd, -0MM-0DD

FYI, I want to create a timeline of selected tiddlers.

 [1]http://groups.google.com/group/TiddlyWiki/browse_thread/thread/ae6943...

This lead me to creating this: list filter [tag[systemConfig]] [sort
[created]] which means I don't need the FET plugin.  Cool.  Now, if
there were a way to tag tiddlers linked from a particular tiddler, I'd
be set.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---