[tw] Re: Make TW5 read-only?

2017-06-23 Thread Ken Girard
As Mark said, my version is for the Classic version of TW. I haven't really 
tried messing around with version 5 stuff. 
You can learn about installing plugins in TW5 from this:
http://tiddlywiki.com/#Manually%20installing%20a%20plugin

A quick look over the plugins listed there leads me to think this might be 
the closest thing to the old HideWhenPlugin
http://tiddlywiki.com/#RevealWidget

Do a search for 'plugin' on that site to see what ones they have available. 

And, yes, UserName is the name specified within TW. Used to be there was a 
spot you entered who you are, and then when you edited a tiddler it would 
put your name on it. Kind of a pointless thing if you are the only person 
using that TW, but if multiple people had access to it... nice to see that 
Joe is the one who made the last changes on that tiddler. 

On Friday, June 23, 2017 at 9:34:53 PM UTC-5, JWHoneycutt wrote:
>
>
> And a followup question:
>
> Used http://mptw.tiddlyspot.com/#HideWhenPlugin 
> 
>  All kinds of fun stuff from that.. 
>
>
> I like several things in there but must be missing crucial information. 
> For example, I love the idea of InstantTimestampPlugin
>
> All the code is right there - do I copy/paste that into the bodytext of a 
> new tiddler in my tiddlywiki5? Do I have to assign a specific systemconfig 
> tag?
>
> Thanks again -  
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cfef294c-5371-43a8-ab70-7d4cd9d72445%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Make TW5 read-only?

2017-06-23 Thread Ken Girard
Years ago I made a TW that showed one toolbar if the right username was 
typed in, and a different toolbar (No edit features) if anything else was 
in there. Still using it here at work. 

 
  



  



Used http://mptw.tiddlyspot.com/#HideWhenPlugin All kinds of fun stuff from 
that.. 


Now, that will not stop anyone who really knows what they are doing, but it 
keeps the clueless out. 

On Wednesday, June 21, 2017 at 6:14:18 PM UTC-5, JWHoneycutt wrote:
>
> I would like to share a TW5 file from Dropbox, but have it be read-only.
>
> Does this have an easy answer?
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/220170fd-55bf-4df0-a365-a3c90583b48c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Backstage on Android

2012-06-19 Thread Ken Girard
I am running AndTidWiki (
https://play.google.com/store/apps/details?id=de.mgsimon.android.andtidwikihl=en)
 
to get TW to work on my Galaxy SII phone.
Whenever I open a TW it ask me if I want to open it with the browser or 
AndTidWiki. 
Not having any issues with the backstage other than things being small, and 
hence hard to click on the write stuff. 
I also keep my TW in DropBox, so it is always uploaded, and availble 
anywhere. 
 
Ken Girard

On Friday, June 8, 2012 6:32:19 PM UTC-5, Jon wrote:

 Hi, 

 I have a new Android tablet, and of course using TW is a priority! 
 Everything seems to display pretty well from either the default 
 browser (essentially Chrome) or Firefox, and Firefox appears to save 
 OK, as well. 

 But, there's no backstage, and on my customized TWs, I've moved a lot 
 of things like Tabs up there. Does the backstage work for anyone else, 
 or any ideas about how to get it back?? 

 Thanks, 
 Jon

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/ZjJFQTsdB8UJ.
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: Calling macro from 1 tiddler and viewing in a table in another tiddler?

2012-06-05 Thread Ken Girard
Thanks! Has taken me a while to get back to say it worked. 
Even in IE!
Ken Girard 

On Wednesday, May 23, 2012 9:17:40 PM UTC-5, Eric Shulman wrote:



 On May 23, 8:14 am, Ken Girard ken.gir...@gmail.com wrote: 
  I am using WordCountMacro to see how long each story/chapter I write is. 
  I've got another tiddler that uses forEachTiddlerPlugin to create a 
 table 
  of all tiddlers tagged 'Story' showing the title, plus various custom 
  fields. 
  Now I am trying to add in a column to show the word count of that story. 
  Any idea of how I call the WordCountMacro up in the table? 

 Rather than using WordCountMacro to get the word count, the easiest 
 way to get the word count for the tiddler is to calculate it 
 yourself.  Take a look at the code for the WordCountMacro plugin.  It 
 is actually just a wrapper around a single call to the .match(pattern) 
 method: 

tiddler.text.match(/\w+/g).length 

 where /\w+/g is a regular expression (text pattern) that matches one 
 or more word boundary characters.  The .match() method returns an 
 array containing all the matching text.  The .length attribute returns 
 the number of items in the array, which is, of course, the word count 
 for the tiddler text. 

 Since your fET loop is currently accessing values from the current 
 tiddler (e.g., tiddler.title), you must have already mastered the use 
 of variables and string expressions to assemble your desired fET 
 output.  You should be able to add the above code snippet into your 
 output relatively easily. 

  Also, how can I get a total word count of tiddlers tagged story, which 
  might be useful for those doing Write 50k words in a month type 
 events. 
  This part doesn't need to be in the table, but would be in the same 
  tiddler. 

 Here's a solution using an inline script (requires 
 InlineJavascriptPlugin [1]) 

 script 
 var total=0; 
 var tids=store.getTaggedTiddlers(Story); 
 for (var i=0; itids.length; i++) 
total += tids[i].text.match(/\w+/g).length; 
 return There are +total+ words in +tids.length+ tiddlers.; 
 /script 

 enjoy, 
 -e 
 Eric Shulman 
 TiddlyTools / ELS Design Studios 
http://www.TiddlyTools.com/#Donations 

 Professional TiddlyWiki Consulting Services 
 Analysis, Design, and Custom Solutions 
http://www.TiddlyTools.com/#Contact

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/5beaeoTdEpoJ.
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] Calling macro from 1 tiddler and viewing in a table in another tiddler?

2012-05-23 Thread Ken Girard
I am using WordCountMacro to see how long each story/chapter I write is. 
I've got another tiddler that uses forEachTiddlerPlugin to create a table 
of all tiddlers tagged 'Story' showing the title, plus various custom 
fields.
Now I am trying to add in a column to show the word count of that story.
Any idea of how I call the WordCountMacro up in the table?
Also, how can I get a total word count of tiddlers tagged story, which 
might be useful for those doing Write 50k words in a month type events. 
This part doesn't need to be in the table, but would be in the same 
tiddler. 
 
Thanks,
Ken Girard
 
http://wordcountmacro.tiddlyspot.com/#WordCountMacro 
*http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin*http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin
 
 

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/DIvqE_1of_8J.
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: BackupOptionsPlugin

2011-12-13 Thread Ken Girard
Yes and no.
I have something that does what I think you are looking for sitting
online at: http://no-sin.com/wiki/WorkTracker.html#AlternateBackupPlugin
That TW is old, but the plugin also works in my daily use copy running
the latest version TW.
Ken Girard

On Dec 13, 10:34 am, ./.michaeolo i...@michaelob.co.uk wrote:
 Hello (is there anybody out there) who has got BackupOptionsPlugin's
 %N-
 %(5).html setting to work, i.e. to make 5 as opposed to an infinite
 number of backups?

 Any advice would be very appreciated,

 MO

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



[tw] Re: content organization: the advantage of hierarchy that tags lack, and a cure for this problem

2011-05-11 Thread Ken Girard
Check out IntelliTaggerPlugin
http://tiddlywiki.abego-software.de/#IntelliTaggerPlugin
It suggest tags based on what is already common in your TW.
For example tagging something Contact would offer up Friend, Work,
Service.
Also uses Alt-1 through 0 for likely suggestions.

Ken Girard

On May 11, 2:48 pm, Yakov yakov.litvin.publi...@gmail.com wrote:
 PS I missed the Claudio's post and actually he said something similar
 about the unstructured data. Probably we should admit that TW, great
 WYSIWYM system doesn't do much with highly unstructured data. But
 perhaps we should not :)

 Anyway, this shows that we should be watchful of this mind greed
 which sometimes provides chaotic loads of contents.

-- 
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: Idea - Running a TiddlyWiki as a HTML Application (.hta)

2010-12-19 Thread Ken Girard
Works fine on Windows, but not on anything else, which was my only
issue with it.
Mozilla has Prism which works much the same using Firefox as it's
base.
http://prism.mozillalabs.com/

Ken Girard


On Dec 19, 1:57 pm, Robin rpgm...@gmail.com wrote:
 Just thought I would share the idea I came up with when I was
 designing my TiddlyWiki. As I was using it for one purpose, I wanted
 it to be less like a webpage I visited and more like an application in
 its own right. So I thought of the .hta extension on Windows. For
 those who don't know, a hta is simply a html page that opens in a
 chromeless, buttonless window of internet explorer as a separate
 application. I renamed the extension to .hta and it works great,
 running fullscreen if I choose, not needing the java applet to save.
 Wasn't sure if this was the best place to share it but figured why not.

-- 
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: Unable to add a custom field

2010-09-23 Thread Ken Girard
Where are you trying to add it?

Ken Girard

On Sep 17, 10:57 am, Hans hdett...@gmail.com wrote:
 I have been trying for while to add a custom field.

 All the solutions that I have found run along the lines of:

 (1) adding to the ViewTemplate tiddler:
 divMy Thing: span macro=view mything/span/div
 and
 (2) adding to the EditTemplate tiddler:
 divMy Thing: span macro=edit mything/span/div

 with no luck.

-- 
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: Getting D3 to work on chrome in ubuntu Linux

2010-07-16 Thread Ken Girard
The jar file is a java file, so you need to have java on your computer
to be able to save with Chrome.

Ken Girard

On Jul 16, 6:39 am, jonas thomas jonasthomas...@gmail.com wrote:
 That looks so promising
 #$^(@#%^ doesn't seem to work with D3.
 Hmm. The test file doesn't work with the cookies either, but something seems
 to be happening with D3 but I still get the messages.
 (It looks like some gtd cookies are getting through)
 I need to look at this later after work (and blow another evening later on)

 Is anyone getting chrome to work and d3, tiddlywiki in either Linux or
 Windows??

 JT



 On Fri, Jul 16, 2010 at 3:26 AM, rock srbo...@gmail.com wrote:
  Have you tried the command line options when starting Chrome:
   --allow-file-access-from-files --enable-file-cookies

  It worked for me using Chrome on linux (Ubuntu) when I tried it a
  couple of months ago.

  Stein Roald

-- 
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: tiddler array sorted by field

2010-07-15 Thread Ken Girard
Using ForEachTiddler, TableSortingPlugin and custom fields you can
create most anything.
http://no-sin.com/wiki/WorkTracker.html#%5B%5BNeed%20TM%5D%5D

for example.

forEachTiddler
 where
 'tiddler.tags.contains(needTM)'
 sortBy
 'store.getValue(tiddler,traindate)'
 write
 '|+store.getValue(tiddler,traindate)+ |[[+ tiddler.title+]]
|+store.getValue(tiddler,programcode)
+|+store.getValue(tiddler,agreepackdate)
+|+store.getValue(tiddler,trainmaterialdate)
+|+store.getValue(tiddler,participantmaterialdate)+|\n'
 begin '|sortable|k\n|Date|Request|Code|Agree|TM|PM|h\n'
 end '!+count+ sets of Trainer Materials needed to be sent\n'
 none '!No Trainer Materials needed to be sent\n'


Figure it might give you some ideas.

Ken Girard

On Jul 15, 9:55 am, PMario pmari...@gmail.com wrote:
 uups,
 sry Jazz. The test was too short :)
 reverse lookup only looks for the default fields. title, modified,
 modifier ... not for custom fields. My match was an accident.

 Before I forget, is there a way to adapt the sort to numerical values.

 1) is your number a real number like: 000123456
 2) or does it have delimiters like: 0012.34.56

 Some time ago, I made a list macro extension NoCaseListPlugin [1]. At
 the very end of the code is the sort algorithm.

 I used a[sortField].toLowerCase() to get a case insensitive sorting.
 May be something like  a.fields[sortField].parseInt('1234') does the
 trick.
 ===
 some more 
 pointers:http://www.tiddlytools.com/insideTW/#config.macros.view.handler
 view fieldName can access a custom 
 fieldhttp://www.tiddlytools.com/insideTW/#TiddlyWiki.prototype.getValue
 gets the field value.

 hope this helps
 have 
 fun!http://hoster.peermore.com/recipes/ListPlugins/tiddlers.wiki#NoCaseLi...

 On Jul 15, 10:24 am, Jazz gery.duca...@gmail.com wrote:



  Is it me?

  I tried the same, I expect the order in the display message to be
  sorted... It is not.

 http://xmobile.labs.osmosoft.com/recipes/default/tiddlers.wiki#[[Test%20Order]]%20TestOrderMacro

  @PMario, sorry, I cannot see your example (could be a firewall/proxy
  issue, I am not sure...).- Hide quoted text -

 - Show quoted text -

-- 
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: Disable SaveBackups

2010-07-09 Thread Ken Girard
Another backup option;
http://no-sin.com/wiki/WorkTracker.html#AlternateBackupPlugin

Saves filename.1.html the first time, then 2, then 3, etc, up to 10,
then it over writes 1.
It is great for folks like me who only save at the end of the work
day, as that gives me 2 weeks of back history. And if you needed more
or less history, just change the code that says 'backupFolder = 10'
to whatever number you want.

Also, I recommend putting: option chkSaveBackups Backups option
chkAutoSave AutoSave into some section that is always visible, like
the top of the main menu. Lets you quickly toggle them on/off as
needed, like when I know I am going to make changes to 10 tiddlers in
a row. No need to auto save after each change, and no need for a
backup till I am done.

Ken Girard

On Jul 8, 6:14 pm, Anthony Muscio anthony.mus...@gmail.com wrote:
 The whole backup process can be further improved 
 withhttp://mptw.tiddlyspot.com/#LessBackupsPlugin

 Tony

 TonyM

 If you have not found an easy way to do it with TiddlyWiki, you have missed
 something.www.tiddlywiki.com



 On Fri, Jul 9, 2010 at 04:53, Mike eris...@gmail.com wrote:
  A few examples:
 http://tiddlywiki.org/wiki/Persistent_Options
 http://www.strm.us/tw/newlayout#zConfig

  HTH,

  Mike

  On Jul 8, 1:24 pm, Vincent vsw.w...@gmail.com wrote:
   Using tiddlywiki (saved on local disk) on firefox 3.6.6 and on IE6.

   Have to disable savebackups everytime I open the tiddly. Anyway of
  setting
   it so backup is disabled by default?

  --
  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...@googlegrou­ps.com
  .
  For more options, visit this group at
 http://groups.google.com/group/tiddlywiki?hl=en.- Hide quoted text -

 - Show quoted text -

-- 
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: Customer CSS based on browser orientation.

2010-07-09 Thread Ken Girard
So, which worked? Example 1 or 2?

Ken Girard

On Jul 9, 10:06 am, Matt Lucht mattlu...@gmail.com wrote:
 D'oh!

 User error, should have been:

 #mainMenu

 and not,

 .mainMenu

 [Thanking Colm for the pointer!]

 On Jul 9, 4:03 pm, Matt Lucht mattlu...@gmail.com wrote:



  Hi there.

  I was wondering whether anyone could give me some pointers.  I'm
  playing around with the layout of TiddlyWiki with a view of having one
  page layout when the browser is in landscape and a different layout
  when in portrait - this is primarily for using TiddlySpace on the
  iPad.

  I've tried a couple of things including*

  1 - including in the StyleSheet tiddler:

  @media all and (orientation:portrait) {
      .mainMenu {
      border: 1px solid red;

  }
  }

  @media all and (orientation:landscape) {
      .mainMenu {
      border: 1px solid blue;

  }
  }

  
  2 - adding to the MarkupPostHead tiddler:

  link type=text/css rel=stylesheet media=all and
  (orientation:portrait) href=[[portraitStyleSheet]]
  link type=text/css rel=stylesheet media=all and
  (orientation:landscape) href=[[landscapeStyleSheet]]

  [[portraitStyleSheet]]  [[landscapeStyleSheet]] both contain custom
  CSS.

  
  *note: the style change is just something very basic to prove it's
  working!

  Any suggestions would be gratefully recieved!

  Thanks,

  Matt- Hide quoted text -

 - Show quoted text -

-- 
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: TW in Moodle

2010-06-25 Thread Ken Girard
http://morfeo.upc.es/crom/mod/wiki/view.php?id=22page=Tiddlywiki+integration+with+New+Moodle+Wikigid=0uid=0
This will likely give you the info your looking for.

But then I also found this: http://moodle.tiddlyspot.com/ which says
Expected this week (Jul 2007) to come up with a new implementation of
the server files compatible with Moodle 1.7 and above

Ken Girard



On Jun 25, 7:09 pm, moodler mektoub4...@gmail.com wrote:
 Could some of you tell me if it is possible to use TW in a Moodle
 1.9.x, in a server side version to be able to edit and store files
 online.
 Moodle is on a server running with Apache and mysql.
 If possible, explanations and a how to make it work would be greatly
 appreciated (how to modify TW or which server side plugin to
 install...)
 By the way, is it possible to download somewhere a package to install
 TW on a website or in a Wordpress blog ?

 Thanks
 PC

-- 
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: Implement [[hyperlink]] within {{{pre}}}

2010-01-19 Thread Ken Girard
Hello Tony,
Take a look at:
http://tiddlywiki.org/wiki/Plugin_Installation

It will tell you how to either Import the plugin, or install it via
cut and paste.

Ken Girard

On Jan 19, 3:22 pm, Tony Kelly tonykelly...@gmail.com wrote:
 That would be the problem.  I did not install the HTMLFormattingPlugin.

 I have since followed the link to tiddlytools.com and found the said
 plugin, but cant manage to download it.

 I expected to find a download link or something but no luck.

 It was the end of the day when I visited the sight and perhaps i could
 not see the obvious, will try again today.  If you have any hints on
 how to download the plugin, that would be helpful.

 Thank you all for the assistance so far.

 Tony



 On Tue, Jan 19, 2010 at 1:30 PM, Morris Gray msg...@symbex.net.au wrote:
  On Jan 19, 12:52 pm, Mark S. throa...@yahoo.com wrote:
  Just to be sure ... you did install the HTMLFormattingPlugin from
  tiddlytools.com, right?

  I confirm that this example does work with the HTML plugin installed
  (Was the TiddlyWiki saved and reloaded?)

  htmlprecode [[link]] code/pre/html

  However I think we need to know what the content of the script is that
  Tony is using.

  From HTMLFormattingPluginInfo

  :Similarly, you can't use InlineJavascript within the HTML because the
  script.../script syntax will also be consumed by the browser and
  there will be nothing left to process afterward. Note: unfortunately,
  even though the browser removes the script.../script sequence, it
  doesn't actually execute the embedded javascript code that it removes,
  so any scripts contained inside of blocks in TW are currently being
  ignored. :-(

  It appears from my experiments that this limitation also applies when
  the script is inside pre/pre tags.

  Whether it applies to the script Tony is trying to use inside pre or
  not we don't know.

  The browser certainly eats this;
  htmlprescript type=text/javascript[[ATiddler]]/pre/html

  Morris

  On Jan 19, 12:52 pm, Mark S. throa...@yahoo.com wrote:
  Just to be sure ... you did install the HTMLFormattingPlugin from
  tiddlytools.com, right?

  On Jan 18, 2:52 pm, TK tonykelly...@gmail.com wrote:

   Ken, thanks for your reply.

   I did the following

   html
           precode [[link]] code/pre
   /html

   but it does not work.

   The [[link]] does not create a hyperlink to another tiddler.

   Tony

   On Jan 18, 7:27 am, Ken Girard ken.gir...@gmail.com wrote:

Insert the html inside htmlpre.../pre/html tags.
You can find out more about the HTMLFormattingPlugin 
athttp://tiddlytools.com/#HTMLFormattingPluginInfo

Ken Girard

On Jan 17, 3:02 pm, TK tonykelly...@gmail.com wrote:

 G'day Mark

 Thanks for your reply.

 You say use HTML to create your pre structure.

 Being new to TW, perhaps i am missing something.  The
 {{{preformatting}}} structure seems to come standard with TW.  If 
 this
 can be modified, could you give me an example of how this is done.

 Would you include a link to Eric Shulman's HTMLFormattingPlugin  if
 you have one.

 Thanks

 TK

 On Jan 17, 4:12 pm, Mark S. throa...@yahoo.com wrote:

  I believe the standard suggestion is to use HTML to create your pre
  structure. Then use Eric Shulman's HTMLFormattingPlugin to allow 
  you
  to use wiki links inside of the the html.

  Mark

  On Jan 16, 8:12 pm, TK tonykelly...@gmail.com wrote:

   Is it possible to implement a [[hyperlink]] within the {{{pre}}} 
   tag
   and if so, how?

   In a new job i have inherited a complex set of UNIX shell 
   scripts.
   Script 1 call script 2 which call script 3 etc (an
   oversimplification).

   I want to import the shell scripts into TW and where one script 
   call
   another, I want to implement a [[hyperllink]] to jump to the 
   called
   script.

   Because of all the 'special' characters used in a unix shell 
   script,
   the scripts need to be placed with {{{  }}} but doing so stops 
   the
   [[[ hyperlink]] from working.

   Any suggestions on how to overcome this problem would be 
   appreciated.

   TK

  --
  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 
  athttp://groups.google.com/group/tiddlywiki?hl=en.- Hide quoted text -

 - Show quoted text -
-- 
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: MonkeyGTD on Symbian (S60 Nokia N97) - saving changes not working

2010-01-08 Thread Ken Girard
Do you have the tiddlysaver.jar file installed? It is needed for
Opera.
http://tiddlywiki.com/#TiddlySaver will give you some more info on
this.

Ken Girard

On Jan 3, 7:05 am, s60 stefanovic...@gmail.com wrote:
 MonkeyGTD works fine with my N97, apart from a bit of a lag and some
 formatting issues (that can be handled by using a different theme).
 However, there are two things:

 1. There is an ugly red bar with warning message - how to get rid of
 this?

 http://i50.tinypic.com/1zmntab.jpg

 2. This is a biggy. I can't save changes:

 http://i50.tinypic.com/2ekubdd.jpg

 How do I configure browser to enable saving? (Opera on S60 has the
 same issue). Is this because of the colons in the pathname? If so, how
 to get around this?

 i.e. ///file:/E:/monkeygtd.html

 If this can be fixed mGTD would be a perfect thing for me. When I have
 access to a computer, I'd hook up my Nokia and do all the work by
 editing the html on the phone - but I can also use it directly on the
 phone which is perfect.

 Cheers,
 Steve
-- 
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: Research citations questions

2010-01-08 Thread Ken Girard
Another option for question 1:
Take a look at:
http://no-sin.com/wiki/WorkTracker.html#%5B%5BSearch%20-%20Assigned%20to%5D%5D

Basically, I have it set up to show me a custom field when I am in
edit mode, and then it does the fet search when I close it.

Only issue I have with it is you have to get every thing right. I
can't search for Elizabeth and get Elizabeth Donald and Elizabeth
Strout.

Ken Girard

On Jan 7, 1:20 pm, Mark mckel...@gmail.com wrote:
 Here's some options for  question 1:

 The YourSearchPlugin enables you to search the extended fields
 (Metadata) introduced with TiddlyWiki 2.1, e.g. use priority:1 to
 find all tiddlers with the priority field set to 1.

 You could then serach: author:Gardner

 To generate a list of all the books by Gardner

 http://tiddlywiki.abego-software.de/#YourSearchPlugin

 Eric's SearchOptionsPlugin provides more options:

 Adds extra options to core search function including selecting which
 data items to search, enabling/disabling incremental key-by-key
 searches, and generating a list of matching tiddlers instead of
 immediately displaying all matches. This plugin also adds syntax for
 rendering 'search links' within tiddler content to embed one-click
 searches using pre-defined 'hard-coded' search terms.

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

 mck

 On Jan 7, 10:08 am, David davidconne...@gmail.com wrote:



  I am really finding TW useful in organizing my academic research for
  my residency project and thinking forward to my dissertation. I have
  checked out BibblyWiki and some other TW tools, but I think rolling my
  own is going to be the best path. I have a few questions:

  1. I have already figured out to add Extended Fields to my view and
  edit templates, and have begun experimenting with FET to find tiddlers
  based on those fields. I also have the plugin that lets me view
  different templates based on tags. I have been following some of the
  FET examples provided, and can set up something like this:

  forEachTiddler
     where
        ' store.getValue(tiddler,author) == Gardner '

  I put this in a tiddler, open the tiddler, and the list of books by
  Gardner shows up magically. But now if I want to search for books by
  another author, or by some other field, I have to make a new tiddler
  with those changes or edit this tiddler. Is there any way to create
  some kind of search form where I select the field and enter the search
  criteria and it gets passed to this tiddler macro so that I only need
  one search tiddler for basic searches? Also, is there any way to
  integrate searching on tiddler content and on extended fields at the
  same time?

  2. Wikipedia

  I remembered Wikipedia has templates for making citations, that allow
  you to enter the data in a structured but flexible way (fields are
  optional), and the display is a well-formatted citation. Would there
  be any way to do something similar in TW either with a macro/plugin or
  with transclusion of tiddler slices?

 http://en.wikipedia.org/wiki/Wikipedia:CIT

  Example wiki markup

  {{Cite book
    | last1 = Cordell | first1 = Bruce R.
    | first2 = Jeff | last2 = Grubb
    | first3 =David | last3 = Noonan
    | title = [[Manual of the Planes]]
    | location = Berlin
    | publisher = [[Wizards of the Coast]]
    | year= 2001
    | pages = 198-203
    | month = September
    | isbn = 0-7869-1850-8 }}

  Displyed result:

  Cordell, Bruce R.; Grubb, Jeff; Noonan, David (September 2001). Manual
  of the Planes. Berlin: Wizards of the Coast. pp. 198-203. ISBN
  0-7869-1850-8.

  3. context variable

  I have seen a few references to the context variable, but I have not
  found any doc that explains exactly what it is or how to use it. I'm
  guessing it has something to do with div ids to either locate parts of
  a tiddler, or the location of the tiddler in the display. Could
  someone point me in the direction of a definition and an example of
  use?

  I guess that's enough questions for today. Thanks!

  David- Hide quoted text -

 - Show quoted text -
-- 
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: Bump

2009-12-27 Thread Ken Girard
Bump of what?

Ken Girard

On Dec 26, 9:48 am, skye riquelme riquelme.s...@gmail.com wrote:
 bump!!

--

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: Read only per Tiddler

2009-12-22 Thread Ken Girard
Even more choices:
I have several TWs I distribute at work that are intended to give
people access to information, but they have no need to edit them. So I
set about making it easy for me, but hard for them, to be able to edit
things.

First I started with a version of TW that has a top menu and the
search in the header.
Then I installed the HideWhenPlugin (http://mptw.tiddlyspot.com/
#HideWhenPlugin)
and put this into my ViewTemplate:
div class='toolbar' macro=showWhen config.options.txtUserName ==
'KenGirard' 
  span macro='toolbar editTiddler closeOthers closeTiddler'/
span
/div

div class='toolbar'  macro=showWhen config.options.txtUserName !==
'KenGirard' 
  span macro='toolbar closeTiddler'/span
/div

Now if the signin name is KenGirard, I can edit, otherwise all I get
is a way to close the tiddler. Less confusion for folks.

Having gone even further in my efforts to keep accidents from
happening, I hid my sidebar like so in the PageTemplate:
!---
div id='sidebar'
   div id='sidebarOptions' refresh='content'
tiddler='SideBarOptions'/div
   div id='sidebarTabs' refresh='content' force='true'
tiddler='SideBarTabsSlider'/div
/div
---

And then added the following to my systemTweak tiddler (tagged
systemConfig)
config.tasks.extraTab = {
   text: Extras,
   tooltip: Additional stuff I wanted to hide,
   content: tiddler contentFooter
};
config.backstageTasks.push(extraTab);

The contentFooter tiddler contains:
Name:option txtUserName :: newTiddler :: newTiddler
label:Add program title:New Program tag:Program text:Type the
description in this section :: SaveBackups option
chkSaveBackups :: AutoSave option chkAutoSave :: [[Tabs|
SideBarTabs]] :: [[Options|SideBarOptions]]

and can be easily accessed from the Backstage button.

I've thought that if I need to make it even less likely that anyone
might edit things, I could remove the Name:option txtUserName
section, as I can open any other TW and sign in to set the cookie for
this one.

Ken Girard


On Dec 22, 12:00 pm, Linck Atlanta, Ga lschl...@gmail.com wrote:
 This... even better.  Thank you for your reply.

 On Dec 22, 12:02 am, Eric Shulman elsdes...@gmail.com wrote:



  On Dec 21, 8:58 am, Linck Atlanta, Ga lschl...@gmail.com wrote:

   Is there a way to have some tiddlers read only while others are able
   to be edited?

  These plugins:
     http://www.TiddlyTools.com/#TiddlerPasswordPlugin
     http://www.TiddlyTools.com/#TaggedTemplateTweak
  will let you define a custom [[LockedEditTemplate]] that includes
     span macro=getTiddlerPassword/span
  to automatically prompt for a password when attempting to edit a
  tiddler tagged with locked.  If the correct password is not entered,
  the tiddler is closed to prevent editing.

  enjoy,
  -e
  Eric Shulman
  TiddlyTools / ELS Design Studios- Hide quoted text -

 - Show quoted text -

--

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: Introduction 2 new macros SelectStoryMacro and StoryGlueMacro

2009-12-15 Thread Ken Girard
I am sure you will not be all that suprised to learn that it is not
working in IE6.
On the PluginManager it shows: Error: Expected identifier, string or
number

Ken Girard

On Dec 15, 12:38 pm, PMario pmari...@gmail.com wrote:
 Hi,

 On Dec 15, 5:20 pm, Eric Shulman elsdes...@gmail.com wrote:

  see
 http://www.TiddlyTools.com/#StorySaverPlugin

 I know StorySaverPlugin I use it with my presentation manager. I also
 like breadcrumbs to generate stories.

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

 That's cool stuff and very well documented, too. May be I will
 StoryGlue it two :)

 Since one can use varDisplay
 {{config.options.txtSelectStoryACTIVESTORY}} 'CSSclass' to get
 Information which story is the active one, it can be displayed
 everywhere and is not linked to the place where the macro lives.

 StoryGlue displays a set of stories that contain the active tiddler,
 if it is not part of the active story. StoryGlue usese
 SelectStoryMacro to switch to the new story by user interaction.

 SelectStory is not limited to switch between stories. It can be used
 wherever you need a very minimalistic (and I think beautiful)
 interface to load a value (cookie) with a tiddler title.

 With this value you can do what ever you want: 
 seehttp://a-pm.tiddlyspot.com/#SelectStoryTest

 regards Mario

--

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: Img tag not working properly

2009-12-15 Thread Ken Girard
Which flavor of GTD - TiddlyWiki are you using?
D3, MGTD, the old GTD TW, or something else?

Also which version of TW are you using? Put version in a tiddler
to find out.

Ken Girard

On Dec 11, 3:32 pm, eden eileen.d...@gmail.com wrote:
 I'm trying to use the [img[URL]] in reference tidders and the notes
 section of task tiddlers. For some reason the images don't show up.
 They do, however, show up in my regular non-GTD tiddlywiki.

 I'm using Firefox.

 Thanks,
 -eden

--

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: InlineExpenseTrackingPlugin

2009-11-25 Thread Ken Girard
Nice. And it even works in IE6.
Someone has a plugin that gets tweets off twitter.
Just wondering the possiblity of getting that to hook up with what you
have so one could tweet expense as they happen.

Ken Girard

On Nov 25, 4:08 pm, Alex Marin alex19...@gmail.com wrote:
 Hello,

 I've implemented a plugin for expense tracking. You can find a demo
 and the plugin documentation here:http://seneka.ro/alex/tiddlyDev/

 Here is a short overview excerpt:

 This plugin allows you to keep track of your expenses (or, more generally, 
 financial transactions).
 The key feature is that you can specify expenses within regular tiddlers.
 You can also perform 'freezes', so that the expense report refers only to 
 recent transactions.
 The plugin also provides 'linkback' functionality to the tidddlers from 
 which each expense was collected from

 I am open to any comments or suggestions [alex at seneka dot ro].

 Regards,
     Alex Marin

--

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: is tiddlyspot down?

2009-11-21 Thread Ken Girard
Seems to be working for me.

Ken Girard

On Nov 21, 6:15 am, sklpns skl...@gmail.com wrote:
 Please help!
 I get an Error! 404 Not Found message when trying to access my sites
 hosted over at tiddlyspot.com

 Is tiddlyspot down at the moment?

--

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




[tw] Re: Using TW to build a simple homepage

2009-11-16 Thread Ken Girard

A slightly differnt twist on using HideWhen is placing something like
the following in the ViewTemplate:

div class='toolbar' macro=showWhen config.options.txtUserName ==
'KenGirard' 
  span macro='toolbar editTiddler closeOthers closeTiddler'/
span
/div

div class='toolbar'  macro=showWhen config.options.txtUserName !==
'KenGirard' 
  span macro='toolbar closeTiddler'/span
/div

When KenGirard is signed in the top toolbar shows, when anyone else
is they see the bottom toolbar which only contains close.

I've also put the following into my PageTemplate, inside displayArea,
and below the tiddlerDisplay so it is always at the below anything
that is open:
div class='toolbar' macro=showWhen config.options.txtUserName ==
'KenGirard' 
   div id='contentFooter' refresh='content'
tiddler='contentFooter'   /div
/div

Inside the contentFooter tiddler I have:
Name:option txtUserName :: newTiddler :: newTiddler
label:Add program title:New Program tag:Program text:Type the
description in this section :: SaveBackups option
chkSaveBackups :: AutoSave option chkAutoSave :: [[Tabs|
SideBarTabs]] :: [[Options|SideBarOptions]]

I've also hidden the sideBar and moved the MainMenu to being on the
top, plus use a combonation of BreadcrumbsPlugin  TiddlersBarPlugin,
plus limit the number of open tiddlers to 5.

I use this setup for the files I share with coworkers on network
drives, or that I send them via e-mail. The hope is that if they can't
edit, they can't mess things up.

Ken Girard

On Nov 16, 3:35 pm, elnoi elnoi...@gmail.com wrote:
 You can create it and tag systemConfig.
 Normaly people uses this tiddler to put configuration stuffs to force
 certain options of tiddlywiki:

 Example:
 config.options.chkInsertTabs = true;
 config.options.txtSelectedTiddlerTabButton = none;
 config.options.chkAnimate = false;
 config.options.chkSaveBackups = false;
--~--~-~--~~~---~--~~
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: Chaning height and width on SiteTitle

2009-10-22 Thread Ken Girard

.header, .headerShadow  .headerForeground will also affect the site
title and site subtitle.

See the PageTemplate for more insight as to why.

Ken Girard

On Oct 22, 4:04 am, Tobbe torbjorn.tornqv...@gmail.com wrote:
 Hi,

 Isn't it these 2 lines I need to change for the siteTitle to move up a
 bit? I've tried padding and margin but the text only moves left or
 right, not up or down. Help! :)

 I want the SiteTitel text in the middle of the header area, and to the
 left, not at the bottom of that area.

 .siteTitle {font-size:2em;font-variant:small-caps;}
 .siteSubtitle {font-size:1em;}

 http://www.getdropbox.com/gallery/2620451/1/Dumps?h=3d2ca2
--~--~-~--~~~---~--~~
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: Struggling with #GTD Capture and Retrieval

2009-10-20 Thread Ken Girard

The things I have to take offline (@errands), I print. Then of course
I have to mark it as done/delete it later, but it works for me.

As to parallel systems - make an action like list as completed in
other system to remind you to do it.

At the same time I know that I run things a little different then most
as I use a Work GTD, and a Personal GTD.

Ken Girard

On Oct 16, 12:03 pm, Scott Kingery techlifeblog...@gmail.com wrote:
 Here are the things I am struggling with at the moment:
 1. Ubiquitous capture and retrieval -  I want to get everything into my
 trusted system and, just as importantly if not more, be able to retrieve
 that info when I am in context (e.g., what was the wattage and part number
 of some light bulb I need while I am standing in Home Depot)
 2. Dealing with work systems in parallel - So you have MS Project or some
 other system that your work relies on. These tasks kind of run in parallel
 with your personal system. Struggling with making sure I mark something
 complete in both places.

 How are you handling things like this?
--~--~-~--~~~---~--~~
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: Search macro, script or plugin?

2009-09-23 Thread Ken Girard

Take a look at this and see if it gives you some ideas:
http://groups.google.com/group/tiddlywiki/browse_thread/thread/e1ec74a3feef9069?hl=en

Rather then have it create a new tiddler have it create a link to that
tiddler title. This is to avoid the possibility of having it create a
new tiddler with the title of an already existing tiddler. Click on
the link and it will make that tiddler appear.

Ken Girard

On Sep 23, 12:24 pm, Tobbe torbjorn.tornqv...@gmail.com wrote:
 Hi,

 Sorry if this has been asked in the past.

 Is there a possiblity to make a macro, script or a plugin that looks
 in every tiddler for let's say a year-month-day (1855-02-22) and when
 it's done it makes a new tiddler with that year-month-year as the
 title?

 And this macro, script or a plugin should be easy to modify to search
 for a county/neighbourhood or whatever in every tiddler. The result
 makes a new tiddler with the title County, Neighbourhood or
 something like that.

 If it's already made, what's the macro/script/plugin called?

 TIA
 //Tobbe
--~--~-~--~~~---~--~~
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: IntraEmail

2009-09-16 Thread Ken Girard

There are plugins to make TW into a RSS reader, but I don't think
Tbird creates RSS out of e-mails.
If you were using an online mail system you could put the e-mail
hompage into an iframe in a tiddler.
Eric has some good stuff put together for that over at http://tiddlytools.com

Ken Girard

On Sep 12, 4:31 pm, skye riquelme riquelme.s...@gmail.com wrote:
 Hi All

 Is it possible to have an internal IntraEmail system within a TW.

 Erics EmailScript lets me send emails directly from within a
 TW...but then to read incoming emails I need to use another
 program (thunderbird in my case)..can TW become a mini email-
 client.picking up emails sent to a specific address.for xample
 in a coe.the course has an email address within my serverwhich
 participants can email to ...and then receive them within the course
 TW???

 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: Title field picks up extra value in Edit Template

2009-08-03 Thread Ken Girard

Interesting.
As soon as I added div class='editor' macro='edit tags'/div to it
it worked fine.
But that doesn't explain why it is doing it.
It's like the system feels it needs to write the tag somewhere
visible, and can only put it in the visible edit title field.
This same limitation is not carried over to custom fields as I added
one, and it didn't show in the title.

Ken Girard


On Aug 3, 12:51 pm, shavinder shavinderpalsi...@gmail.com wrote:
 Please have a look herehttp://fnd.lewcid.org/tmp/testcase_editTemplate.html

 When a new tiddler is created by clicking the link 'myLabel' in the
 GettingStarted tiddler, the title field in edit mode shows the value
 'myTitle myTag' whereas it should contain ONLY 'myTitle' (the string
 'myTag' is being passed as a tag in the newTiddler macro). Also note
 that the title being shown in view mode is just as it should be i.e.
 'myTitle'.

 black magic?
--~--~-~--~~~---~--~~
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: Editing section-by-section

2009-07-26 Thread Ken Girard

I think http://tiddlytools.com/#EditTiddlerPlugin will do what you
want if used in conjunction with tiddler tiddlerTitle.
Just put editTiddler TiddlerName linktext in the other tiddlers.
Maybe even hook it up with HideWhen.

Ken Girard

On Jul 26, 2:42 pm, jarble jar...@gmail.com wrote:
 The tiddler macro works fine, but it is different from MediaWiki's
 layout because it doesn't place an edit button at the top of each
 section. I'm trying to find a version of TiddlyWiki that allows
 sections of pages to be edited in the same way as MediaWiki pages.

 On Jul 26, 1:23 pm, Mark S. throa...@yahoo.com wrote:

  You could put each section in a separate tiddler, and then view them
  together using the tiddler ... macro.

  -- Mark

  On Jul 26, 7:50 am, jarble jar...@gmail.com wrote:

   Is there a plugin that makes it possible to edit TddlyWiki tiddlers
   section-by-section, like a MediaWiki website?
   -Jarble
--~--~-~--~~~---~--~~
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: position of wenly opened tiddlers

2009-07-24 Thread Ken Girard

Another possibility is using TiddlersBarPlugin (http://
visualtw.ouvaton.org/VisualTW.html) and splitting the default tiddler
into smaller one-screen-length chunks (Intro1, Intro2, Intro3, etc.).
Put the link to the next tiddler at the bottom so that it starts to
feel like turning pages, rather then endless scrolling.

Also another idea is to put the chunks into seperate tiddlers and then
have them show up in the default tiddler in tabs:
tabs txtIntroTabCookie
[[Show on tab 1 ]] [[pop up description]] IntroTiddler1
[[Show on tab 2 ]] [[pop up description of t2]] IntroTiddler2
[[Show on tab 3 ]] [[pop up description of t3]] IntroTiddler3


These may not be the answer that you seek, but they might give you
ideas for other things.

Ken Girard

On Jul 24, 9:51 am, Eric Shulman elsdes...@gmail.com wrote:
  Please remind me where to put this script.
  tiddler ShowPopup with: TiddlerName label tooltip

 Embed the above syntax directly into your content, like this:
 -
 This is some content with a tiddler ShowPopup with: [[AboutLinks]]
 link click to learn more about links that you can click on to
 view popup help.
 -

 When the tiddler is rendered and the macro is processed, the result
 looks like:
 -
 This is some content with a link that you can click on to view popup
 help.
 -

 Clicking the label, 'link', will show a popup using the contents of
 the [[AboutLinks]] tiddler.

 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: Ann: Script to split text esp. for TiddlyPocketBook

2009-07-18 Thread Ken Girard

Can I ask for one small addition? A way to give the created tiddlers
tags (default would either be blank or maybe the Tiddler Stem name so
they are grouped together).

Ken Girard

On Jul 16, 11:38 pm, Mark S. throa...@yahoo.com wrote:
 Realizing that there are often situations where I can be sure of the
 line width (especially items like grocery lists, long todos, etc),
 I've added the ability to divide up the text by number of lines as
 well.

 Thanks
 Mark
--~--~-~--~~~---~--~~
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: Announcing Tiddlywiki 2.5.2

2009-07-13 Thread Ken Girard

I think part of the problem with documentation is that the people who
really understand it all are the folks who are busy creating new and
fun stuff. And since that is the fun part, documentation gets pushed
to the bottom of the pile. Plus half the time people are asking these
really amazing questions that no one really had thought about before.

Actually the bigest problem I always hit is that I don't know what
something is called, or it is called something so generic that I can't
look it up. Like doing a search for... well you know that area that
you type all the text into ummm... I know it has a name, but what
is it?

Oh, and the info on standard fields: http://tiddlywiki.org/wiki/Tiddler_Fields
Which tells me that the thing I couldn't remember the name of is
Tiddler Body

Maybe a good way to document it all would be having a picture of a TW,
and then as you click on each piece it zooms in (opening different
page/tiddler), showing you more detail, but also explaining more of
what you are looking at does, and how it interacts with the rest of
the system.
Example: A full TW  Tiddler  Title  standard field, must be unique,
can be transcluded by using tiddler {tiddler title}, see
ViewTemplate  EditTemplate, etc,etc, etc.

Ken Girard



On Jul 11, 3:32 pm, Eric Weir eew...@bellsouth.net wrote:
 On Jul 9, 2009, at 6:25 AM, wolfgang wrote:

  I think this assessment isn't fair Eric.

 I was aware of the respects in which my comment about documentation  
 was inadequate -- should I say, inaccurate? -- Wolfgang. Of course,  
 I'm aware, too, that it is an open source project.

 There is a lot of documentation, a great deal of it actually. Another  
 manifestation of the generosity of the TiddlyWiki community. But when  
 you're at work and run into a problem, it's not always easy to know  
 where to go looking -- to what site, or in what location at that site.  
 It would be handy to have a manual, a compilation of components,  
 commands, tweaks, applications, FAQs, solutions to common problems.  
 Something with a table of contents and index. Not not necessarily  
 polished and edited for publication. Almost certainly everything  
 anyone would want to know has already been written up somewhere. If it  
 were organized and made more accessible, it would probably more than  
 suffice.

 Another example. And again, I've been around at least a couple years.  
 I know vaguely that TiddlyWiki has standard fields. Maybe some -- or  
 all? -- are associated with tiddlers. Looking at a TiddlyWiki, using a  
 TiddlyWiki, you'd never know it. I still don't know what they are or  
 what they're for. Maybe as a naive user who'll never gravitate to  
 developer, I don't need to know. Or, maybe it would be really helpful.  
 It would be nice to have a book I could pore over and learn about  
 things like that. Develop some sense of what kind of animal this  
 TiddlyWiki is. What it's made of. How it works.

 As for being open source, TiddlyWiki is not exactly a struggling open  
 source project. In spite of the concerns that have been expressed on  
 this thread, it seems to be on relatively solid ground. It's a proven,  
 highly adaptable application in relatively wide use. It's got a solid  
 community of developers and users.

 Other open source projects that make it this far develop a literature  
 directed at novices. Perhaps, as in some of those case, it will have  
 to come from outside the TiddlyWiki community.

 Regards,
 ---­---
 Eric Weir
 Decatur, GA  USA
 eew...@bellsouth.net
--~--~-~--~~~---~--~~
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: excel spread sheet that runs in a tiddler ????

2009-07-08 Thread Ken Girard

So in the case of IE6 it would open another browser window. Later
versions of IE have tabs.
And in some cases this is prefered as I can put two windows next to
each other, so I can see the data I am copying from one window to the
other. I can't do that with tabs (Actually I think there is a plugin
that allows this...but is that for Firefox, Opera, Chrome, IE7-8 or
Safari?)

What does he gain? The perception that it is all one piece.
You might as well ask why people embed videos into a blog post, rather
then just have it take you to the site that is hosting the file
(YouTube, etc)? It is a matter of looks, perception and keeping people
on the task at hand (or in some cases, on the website)

Ken Girard

On Jul 8, 1:10 pm, Mark S. throa...@yahoo.com wrote:
 You can also get this functionality via Eric Shuman's mini browser:

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

 Including various controls.

 The question is, either way, what do you gain over simply opening a
 separate browser tab? Oh wait, IE doesn't have tabs, right?

 -- Mark

 On Jul 7, 10:17 pm, Anthony Muscio anthony.mus...@gmail.com wrote:



  I think you may need something to get inline HTML to work;

  Than put this in your tiddler

  htmldiv align=centeriframe src=http://url; frameborder=0
  width=100% height=600/iframe/div/html

  Now go to a Google Docs document and open it. Then Copy its address from the
  browser address line and place it in the place above http://url;.

  This may have problems but it looks good, test fully. Closing and exiting
  the GoogleDoc seems to break out of tiddlywiki.

  However it may be a lead.

  TonyM

  If you have not found an easy way to do it with TiddlyWiki, you have missed
  something.www.tiddlywiki.com

  On Sun, Jul 5, 2009 at 15:50, Greg drcodeal...@gmail.com wrote:

    I have a spread sheet that does some statistical calculations for
   educationl researchers. I want user to actaully be able to run the
   spreadsheet in the tiddler. I have the spreadsheet located in my
   google docs directory. I am able to embed it and it is static, but I
   want to find out how users can actaully run it. Is this possible?

    thanks

   Dr.Code- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
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: ViewTemplate recursive

2009-07-08 Thread Ken Girard

HideWhen does work in 2.5.2
I think there is something else in the code in your ViewTemplate
causing the issue.
Post us a copy of all the code in it, please.

Ken Girard


On Jul 8, 2:10 pm, RA nameany...@gmail.com wrote:
 Not sure if this is 2.5.2 issue, but I used to see my ViewTemplate as
 preformatted text, and now if I try to open it Firefox goes into an
 infinite recursion, trying to render ViewTemplate within ViewTemplate,
 until it times out with Stop Script dialog.

 I have this in my ViewTemplate. Does this mean hideWhen/showWhen don't
 work in 2.5.2?

     div macro=hideWhen tiddler.tags.containsAny
 (['CSS','css','html','pre','systemConfig'])  !tiddler.text.match
 ('{{'+'{')!--▐▌(4)--
         div class='viewer' macro='view text wikified'/div
     /div
     div macro=showWhen tiddler.tags.containsAny
 (['CSS','css','html','pre','systemConfig'])  !tiddler.text.match
 ('{{'+'{')!--▐▌(4)--
         div class='viewer'pre macro='view text'/pre/div
     /div
--~--~-~--~~~---~--~~
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: jQuery: little applications as demonstration models for people to try and see some of the advantages of jQuery

2009-07-08 Thread Ken Girard

Oddness found.
I tried out the Example1 demo, closed all tiddlers, and then couldn't
get any tiddlers to open after that. The screen just shimmied a
little, but no tiddlers showed up.
Once I refreshed it was working just fine, so then I duplicated what i
had done the last time with the same results.
This was in Firefox 3.5b4pre on Ubuntu.

Ken Girard

On Jul 8, 7:44 pm, Morris Gray msg...@symbex.net.au wrote:
 On Jul 8, 11:35 pm, Alex Hough r.a.ho...@googlemail.com wrote:

  Mark,

  I looked at your tree plugin to work out where to include the plugin
  (PostbodyMarkup)

 Another step:

 https://files.getdropbox.com/u/1316865/DragSortTW.html

 I was thinking that MarkupPostBody could get pretty crowded after a
 while.  Why not take the script tags off of it and run it as a
 systemConfig plugin.

 Cut the code from MarkupPostBody create a tiddler called
 DragSortPlugin and tag it systemConfig - save and reload.

 Now it's not such a drag on MarkupPostBody;-)

 Morris

 On Jul 8, 11:35 pm, Alex Hough r.a.ho...@googlemail.com wrote:

  Mark,

  I looked at your tree plugin to work out where to include the plugin
  (PostbodyMarkup)
  I this plugin, there is an external link to make it persistent.
  Perhaps something similar for this one?

  Alex

  2009/7/8 Mark S. throa...@yahoo.com:

   Interesting, and with only one line of code!

   Is there a way to make the effect permanent? It seems to disappear the
   moment the tiddler is open. Even if you save the file and reload, it
   disappears. I think to be useful, the effect would need to stick
   around.

   -- Mark

   On Jul 8, 1:17 am, Alex Hough r.a.ho...@googlemail.com wrote:
   Following Moris's suggestion [1] here is a small  a demonstration [2]
   using a jQuery plugin - DropSort.

   Alex

   [1]http://groups.google.com/group/TiddlyWiki/msg/a9139b194e7f2139
   [2]https://files.getdropbox.com/u/1316865/DragSortTW.html

  --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: trying to use ListBoxPlugin like formTiddler... on wrong track?

2009-07-07 Thread Ken Girard

Are you looking for something like this:
http://no-sin.com/wiki/WorkTracker.html#%5B%5B33600-Fakeco%20Inc-Miami%20FL%5D%5D

Also take a look at:
http://www.hawksworx.com/playground/TeamTasks/#HighPriorityTask%20ValueSwitcherPlugin%20

If either of those are in the line of what you are looking for I can
discuss them in more detail.

Ken Girard

On Jul 7, 10:24 am, Dave Parker cedar...@telus.net wrote:
 Hi,

 I was hoping to somehow get a really minimal amount of stuff to show
 up in the tiddler body when editing a tiddler that has a lot of
 ListBoxPlugin elements - you know, like when you edit a formTiddler
 tiddler and see just formTiddler templateTiddler and the data
 stuff here /data

 I have a ShowWhen thing happening in the edit template
 (ProblemTemplateEdit) and that works great, but I have another
 template tiddler to view the fields with and I was hoping to not see
 much of that when I open the tiddler to edit the fields.  I tried
 tiddler ProblemTemplate and it just showed blank fields, and I
 tried a ShowWhen thing in the viewTemplate and that also just showed
 empty fields.

 Is there another way of doing this, or should I just drop this line of
 thinking?  (I was possibly going to contruct a table with a FET
 statement, but wanted to see if there's any way of getting the
 ShowWhen to work...)

 thanks,
 Dave Parker
--~--~-~--~~~---~--~~
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 best to use TiddlyWiki for educational resource.

2009-07-06 Thread Ken Girard

I've noticed that I get a lot more out of the content if I limit the
amount of text in a tiddler to being about what I'd expect from a page
of text. It also helps alot in narrowing searchs.

Use a combo of BreadcrumbsPlugin (up it to allowing you to have 5
tiddlers open) and TiddlersBarPlugin so that you have a max of 5
tiddlers open, but can only see one at a time. Also use the
NavigationMacro (http://tw.lewcid.org/#NavigationMacro) to make it
feel more like a book. It puts next' and 'previous' buttons at the
end of tiddlers that go together.

Use a combo of the methods: A page worth of text, click next to get to
the next page, for the scripted parts, but also use standalone
tiddlers for the explanations and examples.

This way when a student does a search for rm filename they might
get:
...Chapter 1: Intro to Unix (pt6)
...rm filename command

If a student just needs to figure out what rm filename does and if
there are any options to it, he'd go to rm filename command, but if
he wants how it plays into the bigger scheme of things he look at
Chapter 1: Intro to Unix (pt6).

Also, by orginizing the chapters into pages you make it familiar to
people. We've all opened a book to scan through to find an answer, and
it doesn't mess us up that the start of the page doesn't have the info
from the earlier page. If we need that earlier info we can just flip
back to it. Same idea with tiddlers.

Ken Girard

On Jul 6, 10:36 am, rouilj rou...@cs.umb.edu wrote:
 Hi all:

 I am attempting to use a TiddlyWiki as a coursebook for a course I
 will be teaching (just got the
 acceptance last Thursday) in November. The main content is in Chapter
 tiddlers and students
 can record their notes on a chapter in a notes tiddler supplied by the
 TiddlerNotesPlugin, but I
 am at a crossroads on how to structure the tiddlers.

 As in a normal coursebook, I have a series of chapters, and I use the
 PartTiddlerPlugin to allow
 me to extract parts of chapters for reuse. This works, however, I am
 looking at a different structure
 as well.

 Rather than one long chapter with multiple sections in a tiddler with
 a table of contents generated by
 using sectionTOC (from Eric Shulmans SectionLinksPlugin), I am looking
 at splitting a long tiddler into
 multiple tiddlers (on section/subsection heads) and opening the series
 of tiddler as a story (using the
 openStory macro from Eric's StorySaverPlugin).

 Using the single large tiddler, I get a more flowing style with better
 transitions between sections since
 the tiddler continues into the next section rather than abruptly
 ending. Also the format is closer to what
 people expect from a textbook. The TOC at the top of each tiddler
 provides a nice index into the data.
 Also opening a chapter tiddler from a list in the left hand column or
 from a search displays the data instantly.

 However some of these tiddlers are kind of large. When searching it is
 sometimes difficult to tell which
 tiddler is the best choice for a given search term. Also the
 annotation section occurs at the end of the
 tiddler, so the student's notes are not visible close to the part of
 the chapter that triggered the note.

 Using multiple tiddlers and listing them in a chapter tiddler then
 using the openStory to open
 all of the referenced tiddlers with a single click makes each shorter
 tiddler annotatable and because
 they are shorter the notes are more easily viewed an used. But the
 notes blocks break up the visual
 flow that comes from one large tiddler, making it more difficult to
 scan the story for information.

 Also each tiddler has to stand on it's own so transitions between the
 tiddlers are difficult as I never know
 if the tiddler is being viewed as a story or as a standalone tiddler.
 Also there is no TOC for the story
 which makes navigation different (although the jump menu item on each
 tiddler does help somewhat with
 this).

 My students are mostly Unix system administrators who should be
 comfortable with technology.

 So has anybody got any anecdotal or other ideas about which format is
 better from a student point of view?

 Thanks for your help.

 -- rouilj
--~--~-~--~~~---~--~~
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: Excluding tags from tag box

2009-07-03 Thread Ken Girard

It was fixed and then in the rush to get 2.5.2 out it got left out.
Ticket has been reopened and will be included in the next update.

Ken Girard

On Jul 2, 9:45 pm, Ken Girard ken.gir...@gmail.com wrote:
 2.5.1 lasted less then a day before they found a major error in it and
 replaced it (They broke the upgrade ability).
 I think that is where the fix for tags got missed.
 I am going to make a post on the developer list so we know they see
 it.

 Ken Girard

 On Jul 2, 8:47 pm, Ed edmund.rog...@gmail.com wrote:

  Thanks for the research.  I updated to v2.5.2 today (from a much older
  version).  Should I go to 2.5.1?

  On Jul 2, 8:05 pm, Ken Girard ken.gir...@gmail.com wrote:

   I just noticed in the history that it is listed as a bug fix in
   version 2.5.1http://trac.tiddlywiki.org/wiki/History?version=55

   Ken Girard

   On Jul 2, 7:00 pm, Ken Girard ken.gir...@gmail.com wrote:

I believe that this issue was fixed, but got left out of the more
recent updates.http://trac.tiddlywiki.org/ticket/873saysthatitwas fixed 
inhttp://trac.tiddlywiki.org/changeset/9465#file0

But none of the updated code is contained in the 2.5.2 version of TW.

Ken Girard

On Jul 2, 1:22 pm, Ed edmund.rog...@gmail.com wrote:

 I have tiddlers that are tagged with keywords such as blog
 and Photography.  I want to prevent blog from showing up in the
 tags list (the floating box in the standard TW).
 How can I do this?  I thought that tagging the tag with excludeLists
 would work, but it doesn't seem to make a difference.

 On this particular wiki, I want the tags displayed in a small list box
 at the top right of the tiddler.  I have used Simon Baird's Taggly
 plugins and successfully hidden certain tags, but the version of that
 plugin that I had displays the tags as buttons across the top as
 opposed to a list in the corner of the tiddler.

 So either how do I exclude certain tags from appearing in the tag list
 without using the Taggly plugin, or how do I reformat the way tags are
 displayed using the Taggly 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: Excluding tags from tag box

2009-07-02 Thread Ken Girard

I believe that this issue was fixed, but got left out of the more
recent updates.
http://trac.tiddlywiki.org/ticket/873 says that it was fixed in
http://trac.tiddlywiki.org/changeset/9465#file0

But none of the updated code is contained in the 2.5.2 version of TW.

Ken Girard


On Jul 2, 1:22 pm, Ed edmund.rog...@gmail.com wrote:
 I have tiddlers that are tagged with keywords such as blog
 and Photography.  I want to prevent blog from showing up in the
 tags list (the floating box in the standard TW).
 How can I do this?  I thought that tagging the tag with excludeLists
 would work, but it doesn't seem to make a difference.

 On this particular wiki, I want the tags displayed in a small list box
 at the top right of the tiddler.  I have used Simon Baird's Taggly
 plugins and successfully hidden certain tags, but the version of that
 plugin that I had displays the tags as buttons across the top as
 opposed to a list in the corner of the tiddler.

 So either how do I exclude certain tags from appearing in the tag list
 without using the Taggly plugin, or how do I reformat the way tags are
 displayed using the Taggly 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: Excluding tags from tag box

2009-07-02 Thread Ken Girard

I just noticed in the history that it is listed as a bug fix in
version 2.5.1
http://trac.tiddlywiki.org/wiki/History?version=55

Ken Girard

On Jul 2, 7:00 pm, Ken Girard ken.gir...@gmail.com wrote:
 I believe that this issue was fixed, but got left out of the more
 recent updates.http://trac.tiddlywiki.org/ticket/873says that it was fixed 
 inhttp://trac.tiddlywiki.org/changeset/9465#file0

 But none of the updated code is contained in the 2.5.2 version of TW.

 Ken Girard

 On Jul 2, 1:22 pm, Ed edmund.rog...@gmail.com wrote:

  I have tiddlers that are tagged with keywords such as blog
  and Photography.  I want to prevent blog from showing up in the
  tags list (the floating box in the standard TW).
  How can I do this?  I thought that tagging the tag with excludeLists
  would work, but it doesn't seem to make a difference.

  On this particular wiki, I want the tags displayed in a small list box
  at the top right of the tiddler.  I have used Simon Baird's Taggly
  plugins and successfully hidden certain tags, but the version of that
  plugin that I had displays the tags as buttons across the top as
  opposed to a list in the corner of the tiddler.

  So either how do I exclude certain tags from appearing in the tag list
  without using the Taggly plugin, or how do I reformat the way tags are
  displayed using the Taggly 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: Excluding tags from tag box

2009-07-02 Thread Ken Girard

2.5.1 lasted less then a day before they found a major error in it and
replaced it (They broke the upgrade ability).
I think that is where the fix for tags got missed.
I am going to make a post on the developer list so we know they see
it.

Ken Girard

On Jul 2, 8:47 pm, Ed edmund.rog...@gmail.com wrote:
 Thanks for the research.  I updated to v2.5.2 today (from a much older
 version).  Should I go to 2.5.1?

 On Jul 2, 8:05 pm, Ken Girard ken.gir...@gmail.com wrote:

  I just noticed in the history that it is listed as a bug fix in
  version 2.5.1http://trac.tiddlywiki.org/wiki/History?version=55

  Ken Girard

  On Jul 2, 7:00 pm, Ken Girard ken.gir...@gmail.com wrote:

   I believe that this issue was fixed, but got left out of the more
   recent updates.http://trac.tiddlywiki.org/ticket/873saysthatit was fixed 
   inhttp://trac.tiddlywiki.org/changeset/9465#file0

   But none of the updated code is contained in the 2.5.2 version of TW.

   Ken Girard

   On Jul 2, 1:22 pm, Ed edmund.rog...@gmail.com wrote:

I have tiddlers that are tagged with keywords such as blog
and Photography.  I want to prevent blog from showing up in the
tags list (the floating box in the standard TW).
How can I do this?  I thought that tagging the tag with excludeLists
would work, but it doesn't seem to make a difference.

On this particular wiki, I want the tags displayed in a small list box
at the top right of the tiddler.  I have used Simon Baird's Taggly
plugins and successfully hidden certain tags, but the version of that
plugin that I had displays the tags as buttons across the top as
opposed to a list in the corner of the tiddler.

So either how do I exclude certain tags from appearing in the tag list
without using the Taggly plugin, or how do I reformat the way tags are
displayed using the Taggly 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: LastFM Player Macro

2009-06-30 Thread Ken Girard

I have it working in Firefox 3.5, Chrome, Opera10 beta, IE8.
And liking it.
Now I need to find out if it will work at work... IE6 and behind a
corporate firewall.

Ken Girard

On Jun 30, 11:19 am, Tobias Beer beertob...@googlemail.com wrote:
 I just created a macro to embed a tunable lastfm player.
 Would be nice if you'd give it a shot, test it and say what you think
 about the idea.

 http://lastfm.tiddlyspot.com

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



[tw] Re: LastFM Player Macro

2009-06-30 Thread Ken Girard

Guess I should add that was running on Windows XP.

Ken Girard

On Jun 30, 6:06 pm, Ken Girard ken.gir...@gmail.com wrote:
 I have it working in Firefox 3.5, Chrome, Opera10 beta, IE8.
 And liking it.
 Now I need to find out if it will work at work... IE6 and behind a
 corporate firewall.

 Ken Girard

 On Jun 30, 11:19 am, Tobias Beer beertob...@googlemail.com wrote:

  I just created a macro to embed a tunable lastfm player.
  Would be nice if you'd give it a shot, test it and say what you think
  about the idea.

 http://lastfm.tiddlyspot.com

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



[tw] Re: Logo inside the adress field

2009-06-29 Thread Ken Girard

You want to place that code in the MarkupPreHead tiddler.
You can find it in the sidebar (normally on the right side) under the
More tab  Shadow tab.

Ken Girard

On Jun 29, 6:26 am, Michael Johanson michael.j.johan...@gmail.com
wrote:
 I got my tiddlywiki uploaded on tiddlyspot and I want to change the
 icon which is displayed in the adress field.

 There is probably an easy answer to this question but I've googled
 around and can only find the answer for a normal website:

 LINK REL=SHORTCUT ICON
        HREF=/~your_directory/logo.ico

 How do you do it with your TW on tiddlyspot?

 /Mike
--~--~-~--~~~---~--~~
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: Linking to a tiddler with spaces with an alternate link

2009-06-26 Thread Ken Girard

The correct format is:
[[Johny Smith|Smith, John]]

Wanted to make sure you didn't think that it was a mis-typing on M)'s
part.

Ken Girard

On Jun 26, 5:47 am, AlanBCohen alanbco...@gmail.com wrote:
 Let's say I have a tiddler [[Smith, John]].  in a separate tiddler, I
 have a reference 'Johnny Smith'.  I want to link them but the context
 really doesn't allow using the 'last , first' format.  [[Johny Smith|
 [[Smith, John doesn't seem to work.
 (background; I have close to three hundred  tiddlers using the 'last ,
 first' format with the employee tag based on imported information.)
 One idea would be to create [[Johnny Smith]] as a tiddler with the
 'Macro TiddlyName:Smith, John' (without the employee tag to avoid
 double listing him).
 Is there another work-around I've missed?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: TiddlyWiki Pogoplug

2009-06-23 Thread Ken Girard

http://tiddlywiki.com/#[[Advanced%20download%20options]] has a link to
the the TiddlySaver.jar file on its own.

Ken Girard

On Jun 23, 11:19 am, Nicholas Frota nicholas.fr...@gmail.com wrote:
 Hi, I'm new to the group... I've been trying to use tiddlywiki on a
 pogoplug folder but I'm having no luck.

 Pogoplug is an app that allows access to your external HD on the
 web... My goal is to have a shared folder and allow my partners to
 edit it too.

 I tried the same trick with monkeyGTD and it works fine, but what I
 truly want is the original TiddlyWiki...

 I think the issue is the .jar file, I know older TW versions didn't
 use it, where can I find it?

 If anything, I can grant access to anyone that wants to help me, and
 we can go from there.

 Thank you a lot.

 Nicholas Frota
 UI Designer
 917-438-0867

 Portfolio,http://nonlinear.cc
 Blog,http://blog.nonlinear.cc
 Twitter,http://twitter.com/nonlinear

 =^.^=
--~--~-~--~~~---~--~~
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: 'tag chooser' for extended fields - Howto

2009-06-15 Thread Ken Girard

http://www.hawksworx.com/playground/TeamTasks/#ValueSwitcherPlugin

Description: Gather values from a definition tiddler, and present the
user with a UI for setting a value from those available options as an
extended field

Use it in the following way:
|scope |ValueSwitcher dropdown ScopeDefinitions |
with ScopeDefinitions being the tiddler that contains the values you
want to chose from.

Ken Girard

On Jun 15, 4:11 am, Alex Hough r.a.ho...@googlemail.com wrote:
 Hi Eric,

 I'm using the multiple select now and can select multiple items. I've
 amended the edit template. However I can only select ones which are
 next to each other on the list. For example if the list is

 Foo
 Bar
 Baz

 I can't select 'Foo' and 'Baz'

 Best Wishes
 Alex

 -
 EditTemplate
 div class=editor macro=showWhen tiddler.tags.contains('Q')
   span macro=select primary =archetype allowEdit allowBlank
 allowMultiple/span
   span macro=select secondary =archetype allowEdit allowBlank
 allowMultiple/span
 /div
 
--~--~-~--~~~---~--~~
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: hi all, im a new mGTD user,im looking for a plugin 'encourage myself'

2009-06-10 Thread Ken Girard

http://www.tiddlytools.com has a quote plugin.
And http://tiddlyvault.tiddlyspot.com/ is a catalog of plugins you
might want to add to your favorites.

Ken Girard

On Jun 10, 12:50 am, imi...@gmail.com imi...@gmail.com wrote:
 i need a plugin that can display a differient Proverbs(maybe slogan)
 added by myself each day, hope someone can help me out.many 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
-~--~~~~--~~--~--~---



[tw] Re: Add an image to the Tiddly-Title?

2009-06-10 Thread Ken Girard

http://tiddlywiki.org/wiki/How_can_use_my_logo_as_the_SiteTitle_but_still_have_text_in_the_html_page_title%3F

Which basically says (in one line)
@@display:none;siteName@@[img[siteName|http://udigrudi.net/imagens/
siteName-logo.png][http://siteName.net/index.html]]

@@display:none;siteName@@ is the title contained in a custom CSS class
so that it doesn't show up. Remove the @@s and display:none; if you
want the words to show.
And this
[img[siteName|http://udigrudi.net/imagens/siteName-logo.png][http://
siteName.net/index.html]]
is standard TW markup for images. More details on it here:
http://www.tiddlywiki.com/#EmbeddedImages

And all of this goes into the SiteTitle  SiteSubTitle tiddlers as
needed.

Ken Girard


On Jun 10, 6:51 am, Dirk Zemisch dzemi...@googlemail.com wrote:
 Hi,

 I'm searching for a hint to insert an image (company logo) into the
 title of a tiddly (template).

 I could not find any ready-to-use solution like for all problems before.
 Is there a solution at all?

 Thanks in advance.
 Dirk
 --
--~--~-~--~~~---~--~~
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: Add an image to the Tiddly-Title?

2009-06-10 Thread Ken Girard

And I just realized you might mean into individual tiddlers...
Which would mean putting it into the ViewTemplate... but in a
different format.

Do you want it in all tiddlers, or just specific ones (Tiddlers tagged
Logo)?

Ken Girard


On Jun 10, 7:18 am, Ken Girard ken.gir...@gmail.com wrote:
 http://tiddlywiki.org/wiki/How_can_use_my_logo_as_the_SiteTitle_but_s...

 Which basically says (in one line)
 @@display:none;siteName@@[img[siteName|http://udigrudi.net/imagens/
 siteName-logo.png][http://siteName.net/index.html]]

 @@display:none;siteName@@ is the title contained in a custom CSS class
 so that it doesn't show up. Remove the @@s and display:none; if you
 want the words to show.
 And this
 [img[siteName|http://udigrudi.net/imagens/siteName-logo.png][http://
 siteName.net/index.html]]
 is standard TW markup for images. More details on it 
 here:http://www.tiddlywiki.com/#EmbeddedImages

 And all of this goes into the SiteTitle  SiteSubTitle tiddlers as
 needed.

 Ken Girard

 On Jun 10, 6:51 am, Dirk Zemisch dzemi...@googlemail.com wrote:

  Hi,

  I'm searching for a hint to insert an image (company logo) into the
  title of a tiddly (template).

  I could not find any ready-to-use solution like for all problems before.
  Is there a solution at all?

  Thanks in advance.
  Dirk
  --
--~--~-~--~~~---~--~~
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 do a permalink on an Included tiddler?

2009-05-27 Thread Ken Girard

With a preloader, I think you are quickly going to start running into
the complaint of it taking so long to load the TW, as you
would have to get the TW to load and run all the plugins plus import
everything before displaying the first tiddler. And I don't think you
could ever get it to only do that if it is a request for a imported
tiddler.

Ken Girard

On May 27, 4:43 am, josep josep.sald...@gmail.com wrote:
 hi Måns,

 thank you for your interest and ideas about this malfunction

 for sure the easiest solution is not use IncludePlugin...  :(

 i agree with you that It would be great if someone could/would make
 a plugin with a preloader for embedded tiddlers

 perhaps udo and/or saq have a solution for this problem

 anycase, thanks again

 josep

 On May 26, 6:20 pm, Måns humam...@gmail.com wrote:

  Hi josep

  I don't know if this is a good idea - or just an extension to the
  problem  - but how about embedding included tiddlers in tiddlers that
  are present at startup?
  Like this: tiddler IncludedTiddlerName
  This way the permalink would work - and next step would be to refresh
  the tiddlerdisplay, when the IncludePlugin has done it's job..
  Maybe you can force it to do so - somehow..

  However It would be great if someone could/would make a plugin with
  a preloader for embedded tiddlers.
  Some equivalent of SplashScreen inside a tiddler - on top of a
  tiddler IncludedTiddlername this way you wouldn't feel that you
  had to wait untill forever before the TW has loaded - and the
  IncludePluginfeature loses it's effect ...

  I think that if you have to wait for the inclusion of external
  tiddlers - untill the TW opens - then you might be better of using a
  BIG TW in the first place.. Just a thought - I certainly might be
  wrong.

  YS Måns Mårtensson

  On May 26, 5:47 pm, josep josep.sald...@gmail.com wrote:

   hi,

   how to do a permalink on an included tiddler of a TiddlyWiki with
   IncludePlugin?
   the problem with this kind of TW is that if we use the permalink of
   included tiddlers, we are trying to acces a tiddler that is no yet
   loaded. so permalink don't run

   perhaps a solution can be to use SplashScreenPlugin combined with the
   results of IncludeState?
   when the state is included the SplashScreen can finish their
   function. is that possible?

   thanks in advance for your help,
   josep
--~--~-~--~~~---~--~~
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: Before I give up - database/spreadsheet features?

2009-05-20 Thread Ken Girard

Take a look at: http://no-sin.com/wiki/WorkTracker.html#Completed

I use custom templates/fields, HideWhen, ForEach, TableSorting,
ToggleTag, etc.
Try using add new request button to see how I add new entries.

Yes, it is a lot to set up at first, but once it is in there, it is
nothing to do.

Make each row in your list be a tiddler, then have them all linked
together by some common denominator, like all tiddler tagged 'book'.
Refine it further in a different tiddler by adding in more conditions
(All books where the author is Elizabeth Donald).

Also if you look at the Search - Assigned to tiddler you can see an
example of a customized search that uses a preset field to match.

Ken Girard


On May 20, 4:10 pm, Matt L. swordsma...@gmail.com wrote:
 Hi all,
    I am very close to giving up hope that TW will fit my
 requirements...

    I have various lists (books, movies, passwords, etc) that would fit
 quite well in an advanced spreadsheet or database - sortable columns,
 validated data, required fields, etc.  I cannot seem to find any
 functionality that encompasses all of these features easily.

 I have tried using the DataDB plugin, but it cannot sort on either the
 display or editing modes, so it is easy to lose track of data (new
 entries always end up on the bottom of the list).

 I am hesitant to try using a combination of DataTiddlerPlugin and
 FormTiddlerPlugin and ForEachTiddlerPlugin - it seems like it would
 take a fair bit of effort to set up.  I would need separate queries
 to look for tiddlers with missing or invalid data, different sorted
 lists, etc.

 Using extended fields would not work either - they appear on every
 tiddler, and would still require using the ForEachTiddler plugin to
 generate lists and find missing data.

 Using a plain table and the TableSortingPlugin is okay for display
 purposes, but has no validation and editing a table with a large
 number of both rows and columns quickly becomes unmanageable.

 I couldn't find anything that cleanly allows me to edit table cells
 inline (without going into edit mode).  I even looked for external
 tools and Firefox extensions.

 Does anyone have any ideas that I have not tried yet?  If I cannot
 come up with something else, I may just stick my big lists into
 Google Docs and leave everything else in TW...

 Here is an example of one of my lists:

 BOOKS:
 * Author
 * Title
 * Format (validated: ebook, audio, hardcover, softcover)
 * Owned (validated and required - y/n)
 * Year Read (blank allowed)
 * Audiobook available from library (validated and required - y/n)

 Thanks in advance for any suggestions!
     - Matt L.
--~--~-~--~~~---~--~~
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: Bad layout of this group in Firefox

2009-05-19 Thread Ken Girard

As far as I know the theme on this page is a generic Google theme. I
don't think they allow any customization to the themes.
When I was looking at this site this morning in Firefox 3.5, I did not
notice anything that was off on it.

Ken Girard

On May 18, 12:35 pm, Blazeguru gd.nijenh...@gmail.com wrote:
 Hello,

 When viewing this group the menu is on the left side over the items. I
 cannot read them. This is the only group who has this. Other google
 groups are OK. Also in IE everything is OK. I have this a few days
 now. Before this this group displayed ok. Does anybody know whats
 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: What if ? plugin

2009-05-10 Thread Ken Girard

Using the HideWhen plugin you can have different Toolbars show up
based on the user id.
Example of ViewTemplate:
div class='toolbar' macro='toolbar closeTiddler closeOthers  fields
syncing permalink references jump'/div
div macro=showWhen tiddler.modifier == 'BartSimpson' ||
tiddler.modifier == 'HomerSimpson'
   div class='toolbar'span macro='toolbar editTiddler
deleteTiddler'/span/div
/div
div macro=showWhen tiddler.modifier == 'BartSimpson'
   div class='toolbar'span macro='toolbar editTiddler
deleteTiddler'/span/div
/div

Ken Girard


On May 10, 8:18 pm, skye riquelme riquelme.s...@gmail.com wrote:
 Hi All

 Within the Simple Multi-user approach I mentioned in a previous
 posting, I have the need for a what if...go to Plugin!!!

 Ideally I´d love to have a TW that opens up (its on-line in this case)
 and is set so that editing is turned off... casual visitors don´t see
 the tiddler toolbars , or backstage etc..

 when an authorised person uses the system he opens a drop-down box
 (thats in the TopMenu), which has asimple login option (name and
 password)simplenow ...my need

 some script which checks that the typed-in name (txtUploadUserName) is
 in the authorized list (another tiddler?)...in which case it opens/
 activates some code (another tiddler!!) which turns on editing
 toolbars, and sets things like chkUploadTiddler so that editing and
 authoring are now possible.

 this check can´t be based on the password..as that means the password
 would be stored in the TW...and smart people could get to thatthe
 password is kept only in the servers' store.php file...and thats a bit
 harder to get too.so the check is on the name.obviouly if
 someone guessed a name and not the passwordthe editing features
 are turned on...but the UploadTiddlers function won't let them
 actually edit the on-line copy!!!

 So, is there some simple Is this name correct, then open this
 tiddler?Plugin???

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



Re: How do you handle identically named actions in Quick Add?

2009-05-07 Thread Ken Girard

.Make travel request for Spain|Office|N
.Make travel request for Peru|Office|N

Basically add in more details.
If it was arranging travel to the same location twice then add in the
date of the trip.

.Make travel request for Spain 06/05/09|Office|N
.Make travel request for Spain 07/08/09|Office|N

Ken Girard

On May 7, 7:00 am, Erlend Leganger elegan...@gmail.com wrote:
 Some activities (such as making a business trip) requires the same actions
 every time. I wanted to keep a text file for such actions, so that I could
 paste it into Quick Add to quickly create them. Here is a sample text file:
 Travel to SomePlace
 .Make travel request|Office|N
 .Establish itinerary|Office|F
 .Order tickets|Office|F
 .Make travel claim|Office|F

 The problem is that every action must be unique, if you try this two times
 in a row (for different values of SomePlace), the quick add will fail for
 all actions the second time around, because the actions already exist. What
 would be the best way to handle this situation?

 Best regards,
 Erlend
--~--~-~--~~~---~--~~
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: pass it on

2009-05-07 Thread Ken Girard

The first thing that comes to mind is using hidewhen to hide the edit
buttons on any tiddler that is not a newTiddler?
Or only give them one newTiddler button that uses a template that
doesn't contain anything except the close button?
Basically eliminate everything except search and a newTiddler button
in the sidebar.
Do the getting started page as a footer, rather then as a tiddler.
Take a look at http://tiddlythemes.com/empties/LewcidOrangeBlog.html
for a footer example.

Ken Girard

On May 6, 10:30 am, djinnsplace djinnspl...@googlemail.com wrote:
 I want to use a tiddlywiki to pass on. So that one user posts a note
 then this physically moves to another user who adds a note which then
 moves to yet another user who adds a note and so on... Either via
 email or USB Stick.
 It must be extremely simple and robust. No one should be able to
 delete or edit the getting started page and it should always display.
 All notes should minimise once the page is shut down and be
 searchable. Possibly password protect the setup options?

 Can any one help or pint me to tiddlywiki or possibly another app.

 Thanks
--~--~-~--~~~---~--~~
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: Introducing Image tagging for tiddlywiki

2009-04-07 Thread Ken Girard

When I opened the page none of my security went off.
When I opened ImageTaggingPlugin I got the following message:
exception in display tiddler for ImageTaggingPlugin in
visualisationdefault: TypeError: this.graph.nodes[id] is undefined

Running Windows XP, Firefox 3.1 beta 3

Ken Girard

On Apr 6, 12:52 pm, rakugo jdlrob...@gmail.com wrote:
 So it appears due to a virus somehow getting on my computer some of my
 recent uploads have been infected. I have since cleaned up the mess on
 my computer and deleting any offending files that I have located. The
 virus works by exploiting an Internet Explorer vulnerability by
 injecting an iframe into the browser, hence why I didn't notice this
 before (Firefox user), when you access the url the virus gets on your
 computer.

 Thanks for letting me know about this and fixing it. Hopefully this is
 the last we will see this on my server!
 Jon

 On Apr 6, 6:29 pm, Mike eris...@gmail.com wrote:

  Some of the sample pages still flag with a virus, I tried demo.html
  and Avast had a fit . . .

  Mike

  On Apr 6, 8:48 am, rakugo jdlrob...@gmail.com wrote:

   Thank you for letting me know, I have sent an email to my host to get
   this fixed. In the meantime I found the offending code was hardcoded
   to the bottom of my index.php file. I have since removed it.. could
   you confirm if this has removed the infection?
   Jon

   On Apr 6, 2:37 pm, Ken Girard ken.gir...@gmail.com wrote:

This is one of those setups that takes over a web server and then
writes it's own nasty code into every web page hosted on that server.
I've had this happen on one of my websites, and had to contact the
hosting web service and tell them their server was infected.

Ken Girard

On Apr 6, 8:33 am, Ken Girard ken.gir...@gmail.com wrote:

 WARNING! The page he is directing you to has been compromised by the
 Lucky Exploit Pack.

 More information on this can be found 
 athttp://www.finjan.com/MCRCblog.aspx?EntryId=2213

 The download that triggers this is contained in the iframe at the very
 bottom of the code.

 Ken Girard

 On Apr 6, 6:56 am, rakugo jdlrob...@gmail.com wrote:

  Hello,
  I've been playing around with canvas a bit more and have produced a
  new experimental plugin which allows you to pan and zoom around 
  images
  in your tiddlywiki and add annotations to them. Hopefully this blog
  post will explain all to you and many of you will find it useful.

  I would appreciate any feedback anyone on this plugin either in 
  reply
  to this post or on the blog, as it is very new and I haven't quite
  worked out how best to present this plugin - any bugs/feature 
  requests
  would be most grateful!

  Jon

  Link:http://www.jonrobson.me.uk/workspaces/tiddlers/Keeping%20your%20notes...
--~--~-~--~~~---~--~~
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: Open all articles on Startup

2009-04-07 Thread Ken Girard

You could try http://www.tiddlytools.com/#OpenTaggedTiddlers which
creates a button that opens all tiddlers tagged with a specific tag,
which you might find more useful as opening large numbers of tiddlers
at once can really slow down your initial start up.
Using this, and InlineJavascriptPlugin found at the same site, you can
have a button to open all tiddlers tagged 'ToDo', and another button
to open all tiddlers tagged 'Contact'.
If you also install the MatchTagsPlugin (same site) you can even have
buttons that will open tiddlers tagged 'ToDo  @phone  Monday but
ignore ones that are also tagged Done'

Ken Girard

On Apr 7, 5:03 am, Seb57 sebastien.n...@gmail.com wrote:
 Good morning,

 I am new to this powerful Tiddlywiki.
 I read the forum explaining DefaultTiddlers and the like
 (DefaultTiddlersTweak + tag systemConfig). But i can't find the way to
 make my will : open all my tiddlers on startup.
 Could you help me ? Be precise please i am a real beginner (it spent
 me 10 minutes to understand where I shall add the systemConfig
 tag !! ;) )
 Thank ou 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] VIRUS WARNING! Re: Introducing Image tagging for tiddlywiki

2009-04-06 Thread Ken Girard

WARNING! The page he is directing you to has been compromised by the
Lucky Exploit Pack.

More information on this can be found at 
http://www.finjan.com/MCRCblog.aspx?EntryId=2213

The download that triggers this is contained in the iframe at the very
bottom of the code.

Ken Girard

On Apr 6, 6:56 am, rakugo jdlrob...@gmail.com wrote:
 Hello,
 I've been playing around with canvas a bit more and have produced a
 new experimental plugin which allows you to pan and zoom around images
 in your tiddlywiki and add annotations to them. Hopefully this blog
 post will explain all to you and many of you will find it useful.

 I would appreciate any feedback anyone on this plugin either in reply
 to this post or on the blog, as it is very new and I haven't quite
 worked out how best to present this plugin - any bugs/feature requests
 would be most grateful!

 Jon

 Link:http://www.jonrobson.me.uk/workspaces/tiddlers/Keeping%20your%20notes...
--~--~-~--~~~---~--~~
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: VIRUS WARNING! Re: Introducing Image tagging for tiddlywiki

2009-04-06 Thread Ken Girard

This is one of those setups that takes over a web server and then
writes it's own nasty code into every web page hosted on that server.
I've had this happen on one of my websites, and had to contact the
hosting web service and tell them their server was infected.

Ken Girard

On Apr 6, 8:33 am, Ken Girard ken.gir...@gmail.com wrote:
 WARNING! The page he is directing you to has been compromised by the
 Lucky Exploit Pack.

 More information on this can be found 
 athttp://www.finjan.com/MCRCblog.aspx?EntryId=2213

 The download that triggers this is contained in the iframe at the very
 bottom of the code.

 Ken Girard

 On Apr 6, 6:56 am, rakugo jdlrob...@gmail.com wrote:

  Hello,
  I've been playing around with canvas a bit more and have produced a
  new experimental plugin which allows you to pan and zoom around images
  in your tiddlywiki and add annotations to them. Hopefully this blog
  post will explain all to you and many of you will find it useful.

  I would appreciate any feedback anyone on this plugin either in reply
  to this post or on the blog, as it is very new and I haven't quite
  worked out how best to present this plugin - any bugs/feature requests
  would be most grateful!

  Jon

  Link:http://www.jonrobson.me.uk/workspaces/tiddlers/Keeping%20your%20notes...
--~--~-~--~~~---~--~~
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: Stats on visits to tiddlers

2009-04-05 Thread Ken Girard

Take a look at this:
http://groups.google.com/group/TiddlyWiki/browse_thread/thread/58509d7210c96000/e4de6864dde838c9?hl=enlnk=gstq=Tiddler+Popularity#e4de6864dde838c9

Ken Girard

On Apr 5, 5:57 am, rakugo jdlrob...@gmail.com wrote:
 As far as I know you would need to write a new javascript function
 which overrides display tiddler and re-saves the tiddler with an
 incremented field viewcount.

 You could encode the stat value into a tiddler field eg. viewcount and
 then write macros to expose this information. Only problem with this
 method is people would need to be able to have write access to your
 tiddlywiki.

 The alternative would be to edit your view template and place a bit of
 javascript that runs a server side function.. what that might be I
 have no idea however.

 Hope that's been some help.. I'm sure other people in the group may
 have better ideas!
 Jon

 On Apr 5, 12:37 am, SteveR st...@ramsdenfamily.freeserve.co.uk
 wrote:

  Is there a way to record cumulative views of tiddlers and display as a
  percentage of total views ?  I want to be able to automatically build
  information for identifying FAQs.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: TW Infomercial: But if you act now....

2009-04-03 Thread Ken Girard

 (cut to insomiac in his hotel room: he's (or she) got his (or hers)
 laptop out and is becoming evermore happy and refreshed.

Definintly a 'she'... comfy bed clothes ... sprawled across the bed
typing on the laptop... your classic sexy librian, right down to
having her take her glasses off, and let her hair down as she sits
up  and cut to the next scene.

Hidden message: Women who use TW are sexy.

Ken Girard


On Apr 3, 4:49 am, Alex Hough r.a.ho...@googlemail.com wrote:
 It would be great to to it in this style - perhaps with hint at TV
 evangelism channel.  Are there any performers in the TW community.

 2009/4/3 Paul Downey (psd) paul.s.dow...@gmail.com:

  I'm suddenly transported to a US motel room, jet-lagged and watching
  early morning TV ..

 targeting the insominc is a good idea

 Can't Sleep?? Capture all your thoughts in the new Taggly Tagging
 then get back to bed.
 (here we need to sell TW as a dream catcher )

  But wait there is more!

 (cut to insomiac in his hotel room: he's (or she) got his (or hers)
 laptop out and is becoming evermore happy and refreshed.

  .. here comes the science bit?

 It has been proven that ordering your thoughts increase mental health
 and wellbeing

 Forget beauty sleep!! TiddlyWiki helps me sleep better and reduces
 stress, alowing my skin to Breathe

  For some reason I want to see this on YouTube.

 I'd like to see some Tomorrows World presenter presenting it.
 We would need a 'TW theme' - music i mean: now that I'd watch :-)

 Me to.

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

 --
 t: 0161 442 2202
 m: 0781 372 50 17
 skype: alexhough
 delicious: alexhough
--~--~-~--~~~---~--~~
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: Does FF3 save cookies or not?

2009-04-02 Thread Ken Girard

In my home environment I am having no problem with cookies in a 2.5.0
TW on Firefox 3.1b3.
It saves my userName and various configs, right down to having the
options panel open.
But, I just realized that this cookie might be also what is causing my
cookies to persist for 2.4.1 TW files.
Interesting as I'd never tried to think of it that way before.

Ken Girard

On Apr 1, 6:37 pm, roger roger.ma...@gmail.com wrote:
 FND,
 Yes, I've been to that link a few times just trying to make sure I
 correctly understood what was being communicated.

 Hmmm, well I guess it doesn't matter so much why FF3 is playing nice
 with our 2.2.5 files, it's the fact that I can't save the txtUserName
 cookie for the ver. 2.4.1 files that I need to fix.

 Will the localhost URL work for the situation I described?  According
 to the wiki:
 using a localhost URL (e.g. file://localhost/home/user/TiddlyWiki.html
 instead of file:///home/user/TiddlyWiki.html) - that way a cookie
 exception can be added for localhost

 But, how do I add a cookie exception for localhost?

 ~ Roger

 On Apr 1, 12:27 pm, FND f...@gmx.net wrote:

   Why does the txtUserName cookie work fine in FF3 with ver 2.2.5 of
   TW, but not 2.4.1?

  TiddlyWiki's cookie handling should not have changed between those
  versions*, so this is most likely a browser issue.

  Firefox 3 is not supposed to store cookies for local files:
       http://tiddlywiki.org/wiki/Firefox#Cookies
  However, I /believe/ I'd also noticed some inconsistencies in the past.
  However, I haven't been able to make out a reliable/reproducible
  pattern, so it's hard to analyze this...

  -- F.

  * that's just a guess, so I might be wrong
--~--~-~--~~~---~--~~
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] TW Infomercial: But if you act now....

2009-04-02 Thread Ken Girard

What would you pay for an electronic binder, with spell checking*,
unlimited pages to write on, and unlimited tabs to help you orginize
all your notes?

But wait there is more!

What if I told you that you can have the same page in multiple
different sections? That it has a built in search engine? That if you
click on someone's name in a list it can instantly show you the page
with that person's contact info on it?

And, if you act now we will enable you a way to see your schedule for
the next 2 weeks, access to over 300 different add ons, and the
ability to make backup copies of your notebook?

Now what would you pay for it? $19.95? $12.95? $5.95? $1.95?

What if we told you it was FREE! There isn't even any advertising in
it, and you don't even have to make a phone call!

Just visit http://tiddlywiki.com to download your free copy TODAY!

Not Seen on TV!

*assuming that your web browser has a built in spell checker.
-
For some reason I want to see this on YouTube.

Ken Girard
--~--~-~--~~~---~--~~
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: TimeBoxing of Actions

2009-03-31 Thread Ken Girard

I don't have a real answer, but have you seen TaskTimerPlugin
http://tiddlytools.com/#TaskTimerPlugin
Seems like it might be a good place to start.

Ken Girard

On Mar 29, 5:00 pm, Halbstein sunt...@googlemail.com wrote:
 Hi,

 what a great tool! Thanks to all developers!

 I would like to use it as a timeboxing-tool for my action items: the
 user enters an end-time and the action items will popup after a time
 slice has expired. Starred Tasks get double time.

 like in the following pseudo-code:

 // totalTime = endTime - now()

 // tasks[] = array of all active tasks (without starred tasks)

 //starredTasks[] = array of all starred tasks

 //totalTimeslices = tasks.count + 2 * starredTasks.count (starred
 Tasks get double time for timeboxing)

 //boxTime = totalTime/boxTime

 //for each starredTask (alert start with:  +  current task and wait
 2 * box time)

 //for each Task (alert start with:  + current task; and wait box
 time)

 I am not too familiar with javascript nor the inner mechanics of
 MonkeyGTD so any help would be appreciated!

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



Re: MonkeyGTDPrint3x5

2009-03-26 Thread Ken Girard

Switch the theme to MonkeyGTD.
In the tabs section got to More... MGTD  then scroll down to where
it says Theme.
Click on the current theme (Should show MonkeyGTD)
Go into edit mode.
Scroll down that tiddler to where it says Printing3x5Styles.
find where it says body {
Below that it will say font-size: 6.2pt;
change that 6.2 to make the font bigger.
All the other font types (h1, h2, etc.) are sized in proportion to
that number.

Ken Girard



On Mar 26, 5:28 am, Luffy eilval...@gmail.com wrote:
 Hello,

 I'm using MonkeyGTDPrint3x5 styleSheet.
 When I print on 3x5 card, the letter size is very too small to be
 read. I need a magnifying glass to read it.
 Is it normal ?
 How can I get bigger policy, which will be more readable ?

 Thank in advance.

 Regards

 Luffy
--~--~-~--~~~---~--~~
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: How let a macro put a macro into a tiddlers textbody???

2009-03-26 Thread Ken Girard

Måns,
I think if we ever put all your questions and the answers together in
a cleaned up format, we will have the documentation for a TW power-
users guide.
Which is not a bad thing at all.

Ken Girard

On Mar 26, 2:38 am, Måns humam...@gmail.com wrote:
 Thanks Eric..
 I knew that it had to be a common task - just coulden't figure it out
 by myself.
 I've seen it in Dave Giffords NoBrainerNotes TopMenu.
 He's made a button like this: newTiddler title: 'Enter the name for
 your new master topic here' tag: 'Topics' label: 'New Master Topic'
 text: {{store.getTiddlerText(SliderFrame)}} label: 'New Master
 Topic'
 I didn't understand how it worked... Now I do.
 Thanks.

 YS Måns Mårtensson

 On 25 Mar., 20:22, Eric Shulman elsdes...@gmail.com wrote:

   I'd like to make a newJournalHere button which produces a tiddler with
   this date a tag and a macro in the textcontent...
   Can it be done??

   My own attempt - of course it didn't work - The qoutations break the
   code - and I need at least a third type of qoutationmark to be able to
   get it right...:-(

   span class macro='newJournalHere label:SickTD tag:NoteArchive
   text:notes heading:NoteArkiv tag:NoteArkiv suffix:Note' /
   span

  First, move the desired default text content into a separate tiddler,
  e.g., [[BlankJournal]]:
  ---
  notes heading:NoteArkiv tag:NoteArkiv suffix:Note

  Then, you can retrieve that content in the template by using a
  'computed parameter', like this:

  span class macro='newJournalHere ...
     text:{{store.getTiddlerText(BlankJournal,)}}/span

  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: newTiddler with today's date in extendedField

2009-03-25 Thread Ken Girard

OK, so I just noticed that the date field doesn't show when I first
create the tiddler, and if I type something in, it gets over ridden
with today's date. This is what happens when your working on something
15 minutes at a time.
Any suggestions of how to make the field pre-filled (I am using a
template to show the field in both edit and view mode)? Even if it
just shows up with -0M-0D it would give folks the reminder of what
to put in there.

Ken Girard

On Mar 22, 9:15 pm, Ken Girard ken.gir...@gmail.com wrote:
 Thanks Eric.
 And for the pointer on clickify, although at this moment I am just
 using the duedateso that the field has something in it by default.

 Ken Girard

 On Mar 22, 12:04 pm, Eric Shulman elsdes...@gmail.com wrote:

   I am trying to make a newTiddler with today'sdateas the default a
   extended field. Here is what I have:
   newTiddler title:'NewToDo' label:'Add a new To Do' tag:'ToDo'
  fields:'duedate:{{(newDate()).formatString(-0MM-0DD)}}'
   This gives me (newDate()).formatString(-0MM-0DD) in the field.

  To initialize a field via computed parameters, you need to construct
  the entire field:value reference within the {{...}} javascript code
  block.  Thus, instead of writing:
     fields:'duedate:{{(newDate()).formatString(-0MM-0DD)}}
  you need to write:
     fields:{{duedate:+(newDate()).formatString(-0MM-0DD)}}
  (i.e., include the duedate: syntax as part of the computed text that
  will be used)

   I have installed DatePlugin, InlineJavaScript, and this (http://
   tiddlywiki.pastebin.com/f24de1652) which helps out with pre-filling
   extendedfields.

  The 'formatString()' function is provided by the TW core... thus, to
  use this computed parameter code, you do *not* need DatePlugin or
  InlineJavascriptPlugin.

  However...

  The value used by newTiddler in the duedate: custom field is
  computed when the macro is initially *rendered* into the content, not
  when it is subsequently *clicked* upon.  Thus, if you open the
  document and leave it open over night, the computed value for the
  'duedate' custom field will no longer be current.

  Fortunately, there is a way to force the computed parameter to be re-
  processed when the click event actually occurs, so that it will be re-
  calculated using the current time value:

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

  usage:
     clickify macroName param param param
  (i.e., just add 'clickify' in front of the usual macro name)

  example:
  clickify newTiddler title:'NewToDo' label:'Add a new To Do'
  tag:'ToDo'fields:{{duedate:+(newDate()).formatString
  (-0MM-0DD)}}

  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: newTiddler with today's date in extendedField

2009-03-25 Thread Ken Girard

Actually I just stumbled across
http://trey.arthur.tiddlyspot.com/#[[new%20GeoCard]]
and realized that this would work great for what I am trying to do.
Just need to do a little tweaking and get it to save some of it as a
field rather then text.

Ken Girard

On Mar 26, 12:09 am, Ken Girard ken.gir...@gmail.com wrote:
 OK, so I just noticed that the date field doesn't show when I first
 create the tiddler, and if I type something in, it gets over ridden
 with today's date. This is what happens when your working on something
 15 minutes at a time.
 Any suggestions of how to make the field pre-filled (I am using a
 template to show the field in both edit and view mode)? Even if it
 just shows up with -0M-0D it would give folks the reminder of what
 to put in there.

 Ken Girard

 On Mar 22, 9:15 pm, Ken Girard ken.gir...@gmail.com wrote:

  Thanks Eric.
  And for the pointer on clickify, although at this moment I am just
  using the duedateso that the field has something in it by default.

  Ken Girard

  On Mar 22, 12:04 pm, Eric Shulman elsdes...@gmail.com wrote:

I am trying to make a newTiddler with today'sdateas the default a
extended field. Here is what I have:
newTiddler title:'NewToDo' label:'Add a new To Do' tag:'ToDo'
   fields:'duedate:{{(newDate()).formatString(-0MM-0DD)}}'
This gives me (newDate()).formatString(-0MM-0DD) in the field.

   To initialize a field via computed parameters, you need to construct
   the entire field:value reference within the {{...}} javascript code
   block.  Thus, instead of writing:
      fields:'duedate:{{(newDate()).formatString(-0MM-0DD)}}
   you need to write:
      fields:{{duedate:+(newDate()).formatString(-0MM-0DD)}}
   (i.e., include the duedate: syntax as part of the computed text that
   will be used)

I have installed DatePlugin, InlineJavaScript, and this (http://
tiddlywiki.pastebin.com/f24de1652) which helps out with pre-filling
extendedfields.

   The 'formatString()' function is provided by the TW core... thus, to
   use this computed parameter code, you do *not* need DatePlugin or
   InlineJavascriptPlugin.

   However...

   The value used by newTiddler in the duedate: custom field is
   computed when the macro is initially *rendered* into the content, not
   when it is subsequently *clicked* upon.  Thus, if you open the
   document and leave it open over night, the computed value for the
   'duedate' custom field will no longer be current.

   Fortunately, there is a way to force the computed parameter to be re-
   processed when the click event actually occurs, so that it will be re-
   calculated using the current time value:

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

   usage:
      clickify macroName param param param
   (i.e., just add 'clickify' in front of the usual macro name)

   example:
   clickify newTiddler title:'NewToDo' label:'Add a new To Do'
   tag:'ToDo'fields:{{duedate:+(newDate()).formatString
   (-0MM-0DD)}}

   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: newTiddler with today's date in extendedField

2009-03-22 Thread Ken Girard

Thanks Eric.
And for the pointer on clickify, although at this moment I am just
using the due date so that the field has something in it by default.

Ken Girard

On Mar 22, 12:04 pm, Eric Shulman elsdes...@gmail.com wrote:
  I am trying to make a newTiddler with today's date as the default a
  extended field. Here is what I have:
  newTiddler title:'NewToDo' label:'Add a new To Do' tag:'ToDo'
  fields:'duedate:{{(newDate()).formatString(-0MM-0DD)}}'
  This gives me (newDate()).formatString(-0MM-0DD) in the field.

 To initialize a field via computed parameters, you need to construct
 the entire field:value reference within the {{...}} javascript code
 block.  Thus, instead of writing:
    fields:'duedate:{{(newDate()).formatString(-0MM-0DD)}}
 you need to write:
    fields:{{duedate:+(new Date()).formatString(-0MM-0DD)}}
 (i.e., include the duedate: syntax as part of the computed text that
 will be used)

  I have installed DatePlugin, InlineJavaScript, and this (http://
  tiddlywiki.pastebin.com/f24de1652) which helps out with pre-filling
  extended fields.

 The 'formatString()' function is provided by the TW core... thus, to
 use this computed parameter code, you do *not* need DatePlugin or
 InlineJavascriptPlugin.

 However...

 The value used by newTiddler in the duedate: custom field is
 computed when the macro is initially *rendered* into the content, not
 when it is subsequently *clicked* upon.  Thus, if you open the
 document and leave it open over night, the computed value for the
 'duedate' custom field will no longer be current.

 Fortunately, there is a way to force the computed parameter to be re-
 processed when the click event actually occurs, so that it will be re-
 calculated using the current time value:

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

 usage:
    clickify macroName param param param
 (i.e., just add 'clickify' in front of the usual macro name)

 example:
 clickify newTiddler title:'NewToDo' label:'Add a new To Do'
 tag:'ToDo' fields:{{duedate:+(new Date()).formatString
 (-0MM-0DD)}}

 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: MPTW tweaks for online version??

2009-03-22 Thread Ken Girard

You have conflicting lines in MptwConfigPlugin 
zzMptwUserConfigPlugin

config.options.chkHttpReadOnly = true;
var originalReadOnly = readOnly;

in one of them and

config.options.chkHttpReadOnly = false;
readOnly = false;

in the other one

Ken Girard

On Mar 22, 11:31 pm, johannes johann...@gmail.com wrote:
 i have managed to figure out how set one of the themes as default so
 that solves that problem
 but i am very confused about how to make the thing behave in a
 different way online than it does offline. it seems to ignore the
 hide edit features preference setting when i place the file online!
 see herehttp://truthbeauty.info/v3/
 as always any help much appreciated etc
 :)

 On Mar 23, 12:20 pm, johannes johann...@gmail.com wrote:

  i am a newbie tiddlywiki user so i apologize once again for my
  ignorance.

  i am using MPTW (which i love!) but...

  i would like to remove the theme choosing option and just set one of
  the themes as the default setting

  and also have the tabs set to off as default so visitors to my site
  don't see the list of tiddlers and i would like to remove the
  interface options and the backstage button from the online site as
  well

  any suggestions gratefully received...
  :)
--~--~-~--~~~---~--~~
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: alternative software instead of browser

2009-03-20 Thread Ken Girard

Something that might work is changing the file extension from .htm
(or .html) to .hta
That is a HTML Application. Microsoft has Windows run it as an
executible file (exe) which gives it a lot more rights, so you might
be able to save the file.

Ken Girard

On Mar 20, 9:27 am, YinYanger flaviosuarez2...@gmail.com wrote:
 Try OperaPortable 9.27 or 10 alpha fromhttp://www.kejut.com/operaportable
 (9.5x and 9.6x versions don't work with D3 :( ).
 Also, you'll need the TiddlySaver.jar in the same folder of your D3,
 to save the html file.
--~--~-~--~~~---~--~~
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: Documenting directory structures

2009-03-17 Thread Ken Girard

C:\Program Files
MyProgramme
bin
[[src]]
OtherProgramme
bin
[[src]]

And then play with the following line in your StyleSheet to get the
indents and look that you want

.viewer blockquote {line-height:1.5em; padding-left:0.8em; margin-left:
2.5em; border-left:3px solid [[ColorPalette::TertiaryDark]];}

You can even have it pull in an image before the indent.

Ken Girard

On Mar 17, 11:25 am, GrahamAddis gra...@addis.org.uk wrote:
 Eric,

 Thanks, not quite what I wanted, but thanks anyway.

 From your hint I investigated redefining the list types and using
 html, but then my WikiWords didn't work anymore within the html and it
 was ending up looking rather messy. I then tried using tables and
 colspan but the left hand columns collapsed to nothing as the spaces
 were rationalised away.

 Ho hum.

 I think I'll stick with my original format as it looked the cleanest
 solution to me for the moment.

 Graham

 On Mar 17, 1:24 pm, Eric Shulman elsdes...@gmail.com wrote:



  You can create an indented 'tree' view using custom-styled
  blockquotes, like this:

  {{dirlist{

  C:\Program Files
  My Programme
  bin
  [[src]]
  Other Programme
  bin
  [[src]]
  }}}

  Where 'dirlist' is a CSS class wrapper, defined in [[StyleSheet]],
  like this:
     .dirlist blockquote { margin-top:0; margin-bottom:0; }

  enjoy,
  -e
  Eric Shulman
  TiddlyTools / ELS Design Studios- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
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 embed wikilinking to wikified text in the viewtemplate??

2009-03-17 Thread Ken Girard

the data in a field is not a tag, so you can't refer to it the same
way as a tag. (Not that you can't have the same data in the tag field,
but comparing the two is like comparing the tire in your trunk with
the tire on the front driver side. They might be the same but they do
different jobs)
You might be able to put together a forEach contained in a slider that
looks for all tiddlers with matching data in the fieldname.

Ken Girard

On Mar 17, 11:05 pm, Ken Girard ken.gir...@gmail.com wrote:
  span macro='view genre wikified'/span

 You have to put the [[ and ]] in the actual field, or make it a
 WikiWord.

 See:http://no-sin.com/wiki/WorkTracker.html#TrainingTemplateView

 Ken Girard

 On Mar 17, 3:52 pm, Måns humam...@gmail.com wrote:

  If I should want to tagview (tag genre) the fieldvalue in viewmode
  how would the syntax look like?
  Ex:
  div
                  span class='small'i[[fieldname]]:/i/span
                  span macro='view [[genre]] wikified'/span
                  span macro='tag fieldName'/span
          /div
  Does someone know the right syntax to accomplish this?

  YS måns Mårtensson

  On 17 Mar., 21:33, Måns humam...@gmail.com wrote:

   I'd like to make a wikified field input from the EditTemplate appear
   as a link in a viewmode - without having to enclose it as a link in
   editmode.
   How do I accomplish that?

   Can I just enclose the fieldname in square brackets like this?:
   div
                   span class='small'i[[genre]]:/i/span
                   span macro='view [[genre]] wikified'/span
           /div

   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] Re: Request: Extending the ImportTiddlersPlugin with csv-importfunction...

2009-03-16 Thread Ken Girard

Thank you very much, Eric. I was looking for something like this.
I think I have a date with a spreadsheet tomorrow. 800+ rows, 35
columns each, customized templates to show it all, along with a
healthy mixture of ForEach for data mining, and 97% of it is already
up and running.

Ken Girard

On Mar 16, 11:51 am, Eric Shulman elsdes...@gmail.com wrote:
  I would like to have the ability to import(autogenerate) tiddlers from
  a csv-file containing information as: tiddlertitle, subtitle, tags,
  fields and maybe some text...

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

 Usage: Paste CSV data into textarea.  Press create tiddlers button

 CSV format (as exported from a spreadsheet):
 title,text,tags,field1,field2,field3,...
 Test1,This is [[Test1]],test one foo,mumble,gronk,frotz
 Test2,This is [[Test2]],test two bar,snork,snerfle,plurmb

 * first lines contains lower-case 'field names' and must include a
 'title' field
 * 'text' field is normal tiddler body content
 * 'tags' is a space-separated bracketed list (i.e., same as when
 entered via tiddler editor)
 * other fields (optional) are added as custom fields

 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: Macro/script to add remove tags on current tiddler

2009-03-12 Thread Ken Girard

Eric, permalinks don't seem to work on TiddlyTools anymore.
This link: http://www.TiddlyTools.com/#RetagTiddler
just opens the site to the default tiddlers.

Ken Girard

On Mar 12, 8:19 pm, Eric Shulman elsdes...@gmail.com wrote:
  Does anyone know of a macro/script to add remove tags on current
  tiddler.

 Try this *experimental* inline script:
    http://www.TiddlyTools.com/#RetagTiddler

 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: TiddlyTweets - a TiddlyWiki web app to archive your tweets

2009-03-10 Thread Ken Girard

Works in IE7, but gives the Are you sure you want to navigate away
warning when switching themes.

Ken Girard

On Mar 10, 7:46 am, jnthnlstr jnthnl...@googlemail.com wrote:
 Thanks Fred for fixing the url and to Ken for being the first to
 report a bug! ;)

 Alex, I do like the idea of a Twitter client written in TiddlyWiki...

 About your idea of tweeting [[tw stuff]] to send to your own
 TiddlyWiki, I've been trying to make that. You could do that very
 easily if you're happy to tweet in public; for privacy, I think you
 either need another Twitter account to send a dm to, or make use of a
 service that lets you dm yourself (I'm trying to make that too).

 What do you mean about Twitter becoming the first step in an
 expendable channel?

 J.

 On Mar 10, 10:49 am, Alex Hough r.a.ho...@googlemail.com wrote:

  This offers some interesting possibilities, like tweeting with [[tw
  stuff]] to send stuff to your own TW.
  Also twitter can become the first step in an expendable channel.

  Could the plugins be easily adapted for delicious?

  ALex

  2009/3/9 jnthnlstr jnthnl...@googlemail.com:

   Hello,

   I don't know if people on this list are as mental as I am about
   Twitter, but I really enjoy using it and, more recently, playing with
   it as a messaging channel... Anyhow, after prompting from Jeremy, I
   assembled this Twitter Archiver, which is a TiddlyWiki presented as a
   web app:

  http://osmosoft.com/TiddlyTweets

   I'm posting here because I think it's an interesting example of using
   a theme to hide the guts of TiddlyWiki, with a little button that
   switches you back into TiddlyWiki mode so you can get to the stored
   data and plugins, and see how it's put together.

   If anyone has any thoughts about how to make this into a better
   example of this pattern, or has any similar examples, I'd love to hear
   about that here.

   If you have any feedback or ideas about the application itself, I set
   up a UserVoice to use for that, where you can vote stuff up and track
   what's planned, development and finished.

  http://tiddlytweets.uservoice.com

   Thanks,

   J.

  --
  t: 0161 442 2202
  m: 0781 372 50 17
  skype: alexhough
  delicious: alexhough
--~--~-~--~~~---~--~~
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: TiddlyTweets - a TiddlyWiki web app to archive your tweets

2009-03-09 Thread Ken Girard

Fails to download tweets in IE6.
Manages to tell me the number of tweets, then just sits at
Downloading... for the next part.

Ken Girard

On Mar 9, 1:49 pm, FND f...@gmx.net wrote:
 http://osmosoft.com/TiddlyTweets

 Case matters; here's the correct URL:
      http://www.osmosoft.com/tiddlytweets/

 -- 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] Re: MPTW without horizontal menu

2009-03-08 Thread Ken Girard

Assuming you have the basic MPTW file:

* Under tags tab click systemConfig
* Open and edit MptwUserConfigPlugin
* Paste in this:
config.options.txtTheme = 'MptwStandardTheme';
* Save and reload

Ken Girard

On Mar 8, 10:07 am, RC ricor...@gmail.com wrote:
 Hi folks
 I'm a clomplete newbie

 I've got about thirty small tiddlers in a classic MPTW file so far; I
 would like to remove the horizontal menu bar and revert to a classic
 TiddlyWiki left-hand menu.
 I'd like to keep the rest of the MPTW (- well, essentially,
 tagglytagging).

 I have tried importing MPTW plugins into a TiddlyWiki empty.html, but
 I don't know which are important and how to manage their installation.
 It would seem easier to just change the menu in the MPTW.

 In fact, my aim is to better use screen space - I have narrow
 tiddlers, so prefer a three-column arrangement (menu, content,
 sidebar) - or even more columns if possible.

 Could you point me in the right direction?

 many thanks

 Robert
--~--~-~--~~~---~--~~
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 can I get rid of the white box?

2009-03-07 Thread Ken Girard

Put the following into the StyleSheet:

#topMenu .button {color: #999; padding: 0px 8px 0px 8px; border-right:
1px solid #444; border-left:0px solid #444; border-top:0px solid
#444;border-bottom:0px solid #444;}
#topMenu .button:hover {color:#fff; background:transparent;}
#topMenu .button:active {color:#fff; background:transparent;}

Ken Girard

On Mar 7, 11:43 am, Eric Weir eew...@bellsouth.net wrote:
 I have become fond of the Blackicity theme. 
 http://tiddlythemes.com/empties/Blackicity.html
    It's simple and clean and minimally configured, at least function-
 wise, and provides a good base for gradually developing the  
 functionality that suits my needs.

 Blackicity has a narrow black header, which displays the contents of  
 the MainMenu tiddler, which originally lists the titles of the  
 PageTemplate, StyleSheet, and other tiddlers, which appear in a fairly  
 dark shade of grey. I replaced the tiddler titles in the MainMenu  
 tiddler with the commands that normally appear in the sidebar --  
 close all, new tiddler, save changes, etc.

 However, when I do this a white box appears around each command, and  
 if the space in which I happen to be working is at all well lit, the  
 command names inside the boxes are barely visible.

 Is there any way I can prevent this box from displaying around the  
 command names?

 Thanks,
 --
 Eric Weir
 Decatur, GA  USA
 eew...@bellsouth.net
--~--~-~--~~~---~--~~
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: using ReminderPlugin to set a reminder for more than one day

2009-03-06 Thread Ken Girard

At one point I was trying to add a 'run' variable to it which would
write in a new reminder for each day listed in the run, but never
quite got it to work, and even then I was clueless as to how to get it
to wrap around the end of a month. Having it write out reminders till
Jan 34 wasn't going to be much use.

I am not a programer by any stretch, but hopefully the idea will
inspire someone to go where I could not.

One of the things I did achieve was adding in a start time and end
time field so that my reminders titles gotten written as 10:00-13:00
- Meeting with Elizabeth Donald to discuss Nocturnal Urges series to
help me figure out when to have a meeting. I always wanted to try and
get it to do an alert when it was time for something to happen.

Ken Girard

On Mar 6, 12:30 pm, Mike eris...@gmail.com wrote:
 I am currently using reminder plugin for most of my appointments,
 classes, travel ect.
 Can I set a reminder for more than just one day - IE this reminder is
 for April 15-19 ?

 What I have been doing is making a reminder for each day with the same
 message.

 I.E.
 reminder year:2009 month:4 day:15 title:Kris Arrive 
 reminder year:2009 month:4 day:16 title:Kris Visiting 
 reminder year:2009 month:4 day:17 title:Kris Visiting 
 reminder year:2009 month:4 day:18 title:Kris Visiting 
 reminder year:2009 month:4 day:19 title:Kris Leave 

 Thanks,

 Mike
--~--~-~--~~~---~--~~
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: Midstream index FET

2009-03-05 Thread Ken Girard

You might also want to look at:
http://tiddlywiki.abego-software.de/#[[%27Pagewise%27%20list%20all%20Tiddlers%20%2810%20Tiddlers%20per%20page%2C%20with%20page%20up%2Fdown%20buttons%29]]

'Pagewise' list all Tiddlers (10 Tiddlers per page, with page up/down
buttons)

Ken Girard

On Mar 5, 7:04 pm, Dave Parker cedar...@telus.net wrote:
 thank you, cmari,

 that works great!
 -Dave

 On Mar 5, 4:15 pm, cmari cema...@gmail.com wrote:

  Hi Dave,
  I'm sure there are more elegant ways to do it, but it should be
  possible to use:
  forEachTiddler
      where
          'tiddler.tags.contains(basic)'
      write
          '(index  4  index  18) ? * [[+tiddler.title+]]\n : '

  cmari

  On Mar 5, 12:25 pm, Dave Parker cedar...@telus.net wrote:

   Hello,

   another FET question here.  This example:

   forEachTiddler
       where
           'tiddler.tags.contains(basic)'
       write
           '(index  10) ? * [[+tiddler.title+]]\n : '

   from Udo's site lists the first 9 tiddlers described, but not the ones
   after that.  Is there a way to put it so that the output would be, say
   the 5th through the 17th, but not before or after?

   Thanks,
   Dave Parker
--~--~-~--~~~---~--~~
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 fetch tiddlers tagged with THIS tiddlers title - in a template...

2009-02-27 Thread Ken Girard

Dissapering backslashes problem solved in a different posting list.
http://groups.google.com/group/TiddlyWiki/browse_thread/thread/e750e67cd4a0f7f9?hl=en

Ken Girard

On Feb 25, 8:42 pm, Måns humam...@gmail.com wrote:
 Alert - Alert!!!

 I don't know what makes it happen - but when I've saved the code - and
 reload -  it looses all the backslashes (\) - and the code doesn't
 work anymore!!!

 This:
 forEachTiddler where ' tiddler.tags.contains
 (context.inTiddler.title)' write '(index  200)?

 |+(index+1)+|[[+tiddler.title+]]|[[+tiddler.data(Gang)+]] |
 [[+tiddler.data(Værelse) +]] | toggleTag HU

 [[+tiddler.title+]] nolabel \\ | toggleTag Syg [[+tiddler.title
 +]] nolabel \\ |\n : 'begin

 '|sortable|k\n|!#|Navn|Gang|Værelse|HU|Syg|h\n'
 end 'count+ K-elever\n' none 'Ingen K-elever i denne gruppe\n'



 Becomes:

 forEachTiddler where ' tiddler.tags.contains
 (context.inTiddler.title)' write '(index  200)? |+(index+1)+|
 [[+tiddler.title+]]|[[+tiddler.data(Gang)+]] | [[+tiddler.data
 (Værelse) +]] | toggleTag HU [[+tiddler.title+]] nolabel  |
 toggleTag Syg [[+tiddler.title+]] nolabel  |n : 'begin '|
 sortable|kn|!#|NavnGang|Værelse|[[HU]]|[[Syg]]|hn'
 end 'count+ K-elevern' none 'Ingen K-elever i denne gruppen'

 As You can see ALL backslashed vanish in thin air!! When I put them in
 again everything works again.

 I am using BidiX's ITw ... and I've never experienced anything like
 this before... very very weird...

 Please help me...

 YS Måns Mårtensson

 On 26 Feb., 01:03, Måns humam...@gmail.com wrote:

  Hi cmari and Ken

  NOW IT WORKS - (almost) ALL OF IT!! (The rest is just refinements)
  I'm very sorry for my outbursts and long sentences in this post - but
  this is very great news for me - and i think you should know - Read it
  or leave it ... It's just me getting excited beeing a novice and
  all...

  What you've just written makes everything fall into place. What Ken
  wrote was essential for getting toggletags into my forEachTiddler
  macro - and You made me understand why I couldn't make it work untill
  I changed == into: contains  ...

  When I asked the question, I thought that I needed the complete code
  from someone who knows how to write code - because it's way too
  complicated for me to figure out myself - but You just explained it in
  a way that makes me understand what is going on.

  Now after 3 weeks of fiddling around in the dark - it suddenly
  works :-)

  Thank You very very much -  Both of you
  Now I'm able to populate tiddlers with interactive content (toggles
  tags remotely) and I don't have to write all students names manually
  -  as I've done up till now - You've really saved my day - and
  next semester too

  Now I'm curious if I can make a template where the toggletagging works
  as it should - I've tried to include toggletags in templates before -
  and they didn't work (maybe because the toggletagmacro worked inside
  the templatetiddler instead of the actual tiddler it was copied to??).

  I will give it a try - even so - if I don't succeed I won't give up -
  I will also try to compose a newtiddler button with prefilled text to
  see if it does the trick - and again if that doesn't work - I just
  copy my code into each teachers tiddler by hand..

  Here's the actual code combining everything I wanted to list in the
  tables and IT WORKS LIKE A CHARM!!
  I really hope that you understand that this has made my day - and days
  to come!! -  Thank you again - VERY much!!
  :

  forEachTiddler where ' tiddler.tags.contains
  (context.inTiddler.title)' write '(index  200)? |+(index+1)+|
  [[+tiddler.title+]]|[[+tiddler.data(House)+]] | [[+tiddler.data
  (Room) +]] | toggleTag HereForTheWeekend [[+tiddler.title+]]
  nolabel \\ | toggleTag SickLeave [[+tiddler.title+]] nolabel \
  \ |\n : 'begin '|sortable|k\n|!#|Name|House|Room|
  HereForTheWeekend|SickLeave|h\n'
  end 'count+ students\n' none 'No students for this teacher\n'

  YS Måns Mårtensson

  On 25 Feb., 23:59, cmari cema...@gmail.com wrote:

   Hi Måns,
   I started with the most recent of your messages so I don't know
   whether this will get you any further toward your ultimate goal, but
   you can make the last version you posted work by adding back in the
   word write .

   When I tested that, I noticed that of course using a checkbox to add a
   tag to a tiddler listed on your table will have the result that the
   tiddler will have two tags - which means it won't meet the search
   criteria of 'tiddler.tags == context.inTiddler.title' anymore.  If you
   want a more inclusive approach, you could use contains instead of
   ==.  So if you were going to do that, the new version restoring the
   somehow lost write would start like this:

   forEachTiddler where ' tiddler.tags.contains
   (context.inTiddler.title)' write '(index  200) ? |+.
   cmari

   On Feb 25, 3:40 pm, Måns humam...@gmail.com wrote:

When I write this:
forEachTiddler
where
' tiddler.tags

[tw] Re: Ubiquity commands for searching tw groups , tiddywiki.org and trac.tiddlywiki

2009-02-27 Thread Ken Girard

Thanks. Haven't installed Ubiquity but your making me think I should.

Ken Girard

On Feb 25, 3:20 am, Alex Hough r.a.ho...@googlemail.com wrote:
 Hello,

 To make is easier to search for help, I have made these two Ubiquity
 commands.
 I use Ubiquity to seach, tweet, email etc from my tw.

 Any thoughts most welcome.

 ALex

 To install open Command Editor and cut and paste.

 makeSearchCommand({
 name: search-twgroup,
   url: http://groups.google.com/group/TiddlyWiki/search?
 group=TiddlyWikiq={QUERY}qt_g=Search+this+group,
 icon: http://www.google.com/favicon.ico;,
 description: Searches tw group for your words.

 });

 makeSearchCommand({
 name: search-tworg,
   url: http://www.google.com/search?q=site%3Atiddlywiki.org/wiki+-site
 %3Atrac.tiddlywiki.org+{QUERY}btnG=Search,
 icon: http://www.google.com/favicon.ico;,
 description: Searches tiddlywiki.org/wiki OR trac.tiddlywiki.org
 using Google for your words.

 });
--~--~-~--~~~---~--~~
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: tweak request

2009-02-27 Thread Ken Girard

Place the following into your system tweaks tiddler and tag it
systemConfig:

/***
AutoClearMessageMacro
***/
{{{
window.oldDisplayMessage = displayMessage;
displayMessage = function (text,linkText)
{oldDisplayMessage(text,linkText);
setTimeout( 'clearMessage()', 3000 );
}
}}}

It will automatically shut the display message after 3 seconds.

Ken Girard

On Feb 26, 3:19 pm, ike9898 ike9...@yahoo.com wrote:
 When you save changes to your locally hosted mGTD file you get the
 little yellow box Main TiddlyWiki file saved.

 I think that when you mark a task as being completed, the yellow box
 should disappear, because at that point you have unsaved changes.  If
 the box remains, you are more likely to neglect saving your changes
 before closing your browser. --ike9898
--~--~-~--~~~---~--~~
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: How to fetch tiddlers tagged with THIS tiddlers title - in a template...

2009-02-25 Thread Ken Girard

Make all of the section between 'write'  'begin' into one line.
Google Groups is adding in extra line breaks in that confuse it.

Ken Girard

On Feb 25, 1:36 pm, Måns humam...@gmail.com wrote:
 Hi Ken

 Thankyou for taking your time to answer my question.
 I'm sorry to say that I cannot make it work in my context.
 Here's what I done:

 When I put ' tiddler.tags == context.inTiddler.title ' in place of
 'tiddler.tags.contains( This tiddlers name) - then it gives me an
 error =  forEachTiddler ...:Unknown action ''.

 I need the forEachTiddler macro to sort data from the tiddlers which
 are tagged with THIS tiddlers name (as i did before) - so how do I get
 it to accept  ??

 For the second:

 On 25 Feb., 15:02, Ken Girard ken.gir...@gmail.com wrote: For your first 
 question:
  forEachTiddler
      where
          ' tiddler.tags == context.inTiddler.title '

  For the second:
  If I write this:

 forEachTiddler
     where
         ' tiddler.tags == context.inTiddler.title '
 write
 '(index  200) ? |+(index+1)+|[[+tiddler.title+]]|
 [[+tiddler.data(Gang)+]] | [[+tiddler.data(Værelse)
 +]] | toggleTag HU [[+tiddler.title+]] nolabel \\ | toggleTag
 Hjem [[+tiddler.title+]]
 nolabel \\ |\n : '
       begin '|sortable|k\n|!#|Navn|Gang|Værelse|HU|Hjem|h\n'
         end 'count+ elever i kontaktgruppen\n'
         none 'Ingen elever i kontaktgruppen\n'



 I get: forEachTiddler ...: SyntaxError: unterminated string
 literal

 Sorry If I'm doing something basically wrong - it appears to me though
 that the faults I get are because of syntax - and not because I´m
 using wrong parameters...

 YS Måns Mårtensson



  '(index  200) ? |+(index+1)+|[[+tiddler.title+]]|
  [[+tiddler.data(A)+]] | [[+tiddler.data(B)
  +]] | toggleTag A [[+tiddler.title+]] nolabel \\ | toggleTag
  B [[+tiddler.title+]]
  nolabel \\ |\n : '

  But I couldn't get it to have no label.

  Ken Girard

  On Feb 25, 4:35 am, Måns humam...@gmail.com wrote:

   Hi again - I post this bonus-question here, because it's another
   syntaxproblem in the same context...

   I would like to have 2 extra columns in the resulting table that
   toggles tags on the tiddler in the corresponding row.

   Like this: toggleTag SomeTag [[Tiddler title from corresponding
   row]] nolabel

   In full context:

   forEachTiddler
   where
   'tiddler.tags.contains(
   this tiddlers title - This is what I need - What is the correct
   syntax/word for fetching it??
   )  tiddler.data(Name)'
   sortBy 'tiddler.data(Name)'
   write
    '(index  200) ? |+(index+1)+|[[+tiddler.title+]]|
   [[+tiddler.data(A)+]]|[[+tiddler.data(B)
   +]]|+toggleTag A [[Tiddler title from corresponding row]]
   nolabel|+toggleTag B [[Tiddler title from corresponding row]]
   nolabel|\n : '
           begin '|sortable|k\n|!#|Name|A|B|ToggleTagA|ToggleTagBh\n'
           end 'count+ Tiddlers tagged with this tiddlers title\n'
           none 'No tiddlers tagged with this tiddlers title\n'

   Is this possible??

   Right now I'm doing it by hand and it's very tedious.
   The problem is to integrate the toggleTagmacro into the
   'forEachTiddler where ... macro'.
   I've tried - but putting toggleTagmacro into forEachTiddler macro
   breaks the forEachTiddler macro - when I try
   If You know how to do this - I would be very happy to know!!

   Here's my actual code for one of my 30 tiddlers  - It would be very
   nice to be able to make a template instead - then I would be able to
   use my tw as a template for a new set of data:

   |sortable|k
   |[img(25%,auto)[Name|http://xx.jpg]]|[[A]]|[[B]]|[[C]]|[[D]]|h
   | @@Remember to update!@@ |!tiddler AUpdate|!tiddler BUpdate|!
   tiddler CUpdate|!tiddler DUpdate|
   |[[1]]|toggleTag A [[1]] nolabel|toggleTag B [[1]] nolabel|
   toggleTag C [[1]] nolabel|toggleTag D [[1]] nolabel|
   |[[2]]|toggleTag A [[1]] nolabel|toggleTag B [[2]] nolabel|
   toggleTag C [[2]] nolabel|toggleTag D [[2]] nolabel|
   |[[3]]|toggleTag A [[3]] nolabel|toggleTag B [[3]] nolabel|
   toggleTag C [[3]] nolabel|toggleTag D [[3]] nolabel|
   |[[4]]|toggleTag A [[4]] nolabel|toggleTag B [[4]] nolabel|
   toggleTag C [[4]] nolabel|toggleTag D [[4]] nolabel|
   etc|etc 

   YS Måns Mårtensson

   On 25 Feb., 10:52, Måns humam...@gmail.com wrote:

I've searched the group and tw.org - trying to solve this on my own
for a long time - and I know that the solution MUST be trivial - .
Please tell me what to write to fetch tiddlers tagged with this
tiddlers title.
I'm using it in this context - wanting to make a template that changes
results depending on the tiddlers title:

Template:
forEachTiddler
where
'tiddler.tags.contains(
this tiddlers title - This is what I need - What is the correct
syntax/word for fetching it??
)  tiddler.data(Navn)'
sortBy 'tiddler.data(Navn)'
write
 '(index  200) ? |+(index+1)+|[[+tiddler.title+]]|
[[+tiddler.data(Gang)+]]|[[+tiddler.data(Værelse)
+]]|+tiddler.data(Dato

[tw] Re: TiddlyWiki Capabilities - Will It Work for My Project

2009-02-23 Thread Ken Girard

Try this:
http://monkeygtd.tiddlyspot.com/demo3.html#DatePicker
http://monkeygtd.tiddlyspot.com/demo3.html#dateChooserPlugin

Ken Girard

On Feb 19, 2:49 am, nk henk.sch...@gmail.com wrote:
 I'm following this thread with a lot of interest because I can use the
 tips for creating my own tiddler 'types' in tiddlywiki.  However, does
 anyone know how to add a datepicker in the edit template?
 Eg. something like this :
 div class='my-info'
  Date: nbsp;span macro='datepicker o-date'/span
 /div

 Thanks

 Henk

 On Feb 18, 11:20 pm, Reenen Laurie rlau...@gmail.com wrote:

  Cool! I've saved a copy locally.

  A couple of questions...

  The Cards tiddler doesn't update automatically.  If I add a card, or change
  a card's fields, then the summary page(s) should update automatically.
  There is probably another plugin to do that (add tiddler names to an
  UpdateTiddlers tiddler, for those who should be autoupdated after each
  change to tiddlers with a tag in the UpdateTags tiddler).

  Also, could I somehow populate the TW with csv file (or stream) that might
  look like this:
  {schema: amount, Cardname, Color,Type, Attack, Defense, Rarity)
  4,RedCard1,Red,Creature,2,1,rare
  4,RedCard2,Red,Creature,,,common
  20,aLand,,Land,,,common

  This CSV would create new tiddlers for Redcard1, Redcard2, aLand, Color,
  Type, and then a last one (which could be preexisting, but needs to update)
  Deck.

  Regards,
  -Reenen

  On Wed, Feb 18, 2009 at 1:45 PM, Reenen Laurie rlau...@gmail.com wrote:
   Sorry, there is a add a card button... :-D

   On Wed, Feb 18, 2009 at 1:44 PM, Reenen Laurie rlau...@gmail.com wrote:

   Awesome, I am just struggling on how to add a new card...

   Adding a new tiddler is easy, but how does it become a card?

   On Wed, Feb 18, 2009 at 9:06 AM, Ken Girard ken.gir...@gmail.com wrote:

   Played with it a little more to help you on your way to learning what
   can be done with TW.

   Ken Girard

   On Feb 17, 4:16 pm, Ken Girard ken.gir...@gmail.com wrote:
It is. Look at:

   http://tiddlywiki.abego-software.de/#WhereClauseExamples%20%5B%5BDisp.
   ..

to start you on the joys of writing forEach commands.

The second tiddler in that link does what you want, you just need to
change it from looking for a tag to looking for a field, which you can
see how to do in the Cards tiddler in my TW.

Ken Girard

On Feb 17, 2:46 pm, Reenen Laurie rlau...@gmail.com wrote:

 Wow awesome!  TW (and the community) doesn't cease to amaze me.

 Would it be possible to group without the card names?  To for
   instance get
 the amount of red cards without specifying exactly what they are...
   almost
 like a pivottable?

 On Tue, Feb 17, 2009 at 10:28 PM, Ken Girard ken.gir...@gmail.com
   wrote:

  Take a look at:
 http://cardcollection.tiddlyspot.com/

  Ken Girard

  On Feb 17, 1:23 pm, Steve stevep...@gmail.com wrote:
   After looking at your link and playing around a bit, I am
   convinced
   that TiddlyWiki will work for me.  I added the code about to
   EditTemplate and ViewTemplate, as well as creating the other
   tiddlers
   and the new card link.  However, none of it seems to be working.
    I'm
   still pretty new at this so I may be missing something very very
   obvious.  I was reading some stuff about the hideWhen plugin but
   I am
   not sure where I messed up.

   Any ideas on where I should start troubleshooting?

   Thanks,
   Steve

   On Feb 14, 1:22 pm, Ken Girard ken.gir...@gmail.com wrote:

It's been a while since I played MtG, but I think TW would be 
a
   great
Since you are gathering the same data set off each card, try
   using
hideWhen, customFields, and templates.

 You put together an edit template (CardTemplateEdit) 
something
   like:
div class='card-info'
 Color: nbsp;span macro='edit c-color'/span br /
 Type: nbsp;span macro='edit c-type'/span br /
 Rarity: nbsp;span macro='edit c-power'/span br /
 Attack: nbsp;span macro='edit c-attack'/span br /
 Defense: nbsp;span macro='edit c-defense'/span br /
 Number of: nbsp;span macro='edit c-number'/span br /
/div
Same for a viewTemplate (CardTemplateView) with all the edits
   changed
to view.

Then in your EditTemplate you put something like:
div macro=showWhen tiddler.tags.contains('Card') ||
   tiddler.title
== 'New Card' [[CardTemplateEdit]]/div

And in the ViewTemplate:
div macro=showWhenTagged Card[CardTemplateView]]/div

Now add in  the following in a convenient location:
newTiddler label:'Add a card' title:'New Card' tag:'Card'
When you click it, it opens a tiddler tagged Card, ready to
   collect
your data.

All that is left is using ForEach to gather all the data and
   display
it in a fashion you

[tw] Re: an open source version of the tiddlyspot server

2009-02-18 Thread Ken Girard

In regards to username and password, I seen some articles about
opening multiple gmail accounts at the same time. What ever that
method is should be convertible to TW as both use cookies to manage
accounts (as does my bank, social sites, etc).

OK, kind of scratch that idea: All the solutions are pretty much where
we are at. The best one I saw was a Firefox extension that lets you
use a dropdown to pick between accounts. I think it would then
autorefresh so that you got into the new account.

Ken Girard


On Feb 18, 6:29 am, Daniel Baird danielba...@gmail.com wrote:
 On Tue, Feb 17, 2009 at 7:12 PM, FND f...@gmx.net wrote:

  FWIW, this might be of interest:
     http://tinyurl.com/cfbk3f

 Wow, great link, thanks FND.  Looks like the Affero GPL 3 license does
 what I want, but I can't decide between that and the BSDish
 free-for-all that TW itself uses.

 Still open for comments...

 On Wed, Feb 18, 2009 at 2:00 AM, ybabel yba...@ideia.fr wrote:

  Hello,

  great work. I have tested it quickly on my computer !!!
  It seems pretty usable right now. I noticed that you use the Upload
  plugin.
  That leads me to some questions :
  could it possible to préconfigure the tiddlywiki with the right upload
  parameters (since the TWINE create everything, I think it's possible
  to fill theses fields).

 Yes, definitely.  Making it effortless for the user is the secret
 sauce.  Expect that to get sorted out real soon.



  I wonder if your TWINE will have the same problem that UploadPlugin
  (altough I'm wrong) : it seems that the passwords and username are
  stored inside the same cookie for all tiddlywiki on a computer, making
  impossible to handle multiple spots on a computer.

  To bypass this problem I used the CookieManagerPlugin but maybe you
  have proposed another solution (I have not tested so far).

 The tiddlyspot method is to use the parameters the upload macro lets
 you supply to specify the username.  Not sure how uploadtiddlers works
 in that regard.

 Obviously you don't want to have the password encoded in the TW...

 Cheers
 ;Daniel

 --
 Daniel Baird
 I've tried going to the XHTML bar / a few times, but it's always closed.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: TiddlyWiki Capabilities - Will It Work for My Project

2009-02-17 Thread Ken Girard

It is. Look at:

http://tiddlywiki.abego-software.de/#WhereClauseExamples%20%5B%5BDisplay%20the%20number%20of%20tiddlers%20that%20have%20the%20tag%20'basic'%5D%5D

to start you on the joys of writing forEach commands.

The second tiddler in that link does what you want, you just need to
change it from looking for a tag to looking for a field, which you can
see how to do in the Cards tiddler in my TW.

Ken Girard

On Feb 17, 2:46 pm, Reenen Laurie rlau...@gmail.com wrote:
 Wow awesome!  TW (and the community) doesn't cease to amaze me.

 Would it be possible to group without the card names?  To for instance get
 the amount of red cards without specifying exactly what they are... almost
 like a pivottable?





 On Tue, Feb 17, 2009 at 10:28 PM, Ken Girard ken.gir...@gmail.com wrote:

  Take a look at:
 http://cardcollection.tiddlyspot.com/

  Ken Girard

  On Feb 17, 1:23 pm, Steve stevep...@gmail.com wrote:
   After looking at your link and playing around a bit, I am convinced
   that TiddlyWiki will work for me.  I added the code about to
   EditTemplate and ViewTemplate, as well as creating the other tiddlers
   and the new card link.  However, none of it seems to be working.  I'm
   still pretty new at this so I may be missing something very very
   obvious.  I was reading some stuff about the hideWhen plugin but I am
   not sure where I messed up.

   Any ideas on where I should start troubleshooting?

   Thanks,
   Steve

   On Feb 14, 1:22 pm, Ken Girard ken.gir...@gmail.com wrote:

It's been a while since I played MtG, but I think TW would be a great
Since you are gathering the same data set off each card, try using
hideWhen, customFields, and templates.

 You put together an edit template (CardTemplateEdit) something like:
div class='card-info'
 Color: nbsp;span macro='edit c-color'/span br /
 Type: nbsp;span macro='edit c-type'/span br /
 Rarity: nbsp;span macro='edit c-power'/span br /
 Attack: nbsp;span macro='edit c-attack'/span br /
 Defense: nbsp;span macro='edit c-defense'/span br /
 Number of: nbsp;span macro='edit c-number'/span br /
/div
Same for a viewTemplate (CardTemplateView) with all the edits changed
to view.

Then in your EditTemplate you put something like:
div macro=showWhen tiddler.tags.contains('Card') || tiddler.title
== 'New Card' [[CardTemplateEdit]]/div

And in the ViewTemplate:
div macro=showWhenTagged Card[CardTemplateView]]/div

Now add in  the following in a convenient location:
newTiddler label:'Add a card' title:'New Card' tag:'Card'
When you click it, it opens a tiddler tagged Card, ready to collect
your data.

All that is left is using ForEach to gather all the data and display
it in a fashion you like.

For something that does a lot of this, take a look at:
 http://no-sin.com/wiki/WorkTracker.html

Just occurred to me:
Use what I wrote above to gather the data on your entire collection.
Then use tiddlerSlices (http://tiddlywiki.org/wiki/Slice) to list data
on different decks;
|Goblin Deck|3|
|Destroy It All|4|
|World Beater|0|

Write a forEach that uses the containing tiddler's title to look up
all info on the cards in that deck. So if you put it into a tiddler
titled Goblin Deck it would list the name of the card and how many to
put in to the deck.

Ken Girard

On Feb 13, 5:33 pm, Dave Gifford -http://www.giffmex.org/;

giff...@gmail.com wrote:
 Word of encouragement-

 Most of this sounds right up TiddlyWiki's alley, using
 ForEachTiddlerPlugin and maybe a couple others. The only tricky part
 is your description of the stats page. I'm sure that's doable
  somehow.
 We'll see what ideas the big guns give you...

 Dave

 On Feb 13, 2:58 pm, Steve stevep...@gmail.com wrote:

  Hi All,

  Just wanted to see if TiddlyWiki had the capabilities to handle my
  project without too much hassle.  I'm willing to do some
  programming,
  but if I have to code tremendous amounts there might be a better
  tool
  out there.

  I have used TiddlyWiki and its variants in the past for different
  tasks and organizing but it was all very surface level.  I've got a
  personal project that I was going to organize using an Excel sheet,
  but I think that tagging in TiddlyWiki will give me some better
  organization and updating ability.

  Forgive my geekiness but this project is essentially to micromanage
  a
  fixed set of collectible card game (A draft cube forMagicthe
  Gathering to be specific) cards based on several attributes as well
  as
  providing a place to comment and note on individual cards.  It's
  not
  intended to manage a large collection but rather a rotating pool of
  cards (less than 400).  Part of the need is the ability to get
  statistics.  Each card would be represented by a Tiddler

[tw] Re: Editing the background color of fields.

2009-02-16 Thread Ken Girard

flickr comes to mind.
And tiddlyspot.com works well for a lot of TW files.

On Feb 16, 6:07 am, Kashgarinn steint...@gmail.com wrote:
 I guess the extra effort in downloading the images is a barrier,
 anyone know of a easy host site I can upload and link to these images
 directly?

 On Feb 10, 6:26 pm, Kashgarinn steint...@gmail.com wrote:



  Hoping this works.

 http://www.megaupload.com/?d=MQGA23O5

  - Here you can see that the fields have a transparent background,
  title, name, tag.

 http://www.megaupload.com/?d=8QTWCM5P

  - Here you should see the normal colour of the background.  It's a
  strange phenomenon.. wondering why it's happening.

  On Feb 10, 1:35 pm, mcmanus.si...@gmail.com

  mcmanus.si...@gmail.com wrote:
   On Feb 10, 9:03 am,Kashgarinnsteint...@gmail.com wrote: Hi there.

   Hi

I'm using CCTW 1.7.6. and tried importing MPTW style to it, it's going
ok so far, but for some reason the background color of fields in the
editor mode is transparent instead of having the proper background
color.

   Could you please send over a screenshot so that we can see exactly
   what the problem is.

   Thanks

   Simon

It's also affecting the background color of popups, I'm using the
intellitagger plugin, and the popup background in there is
transparent, making the suggestions hard to read.

I'm trying to find a way to set the background color of fields, like
the tag field and name field back to normal, not going too well so
far.

Anyone have an idea what I need to add/edit to the stylesheet to test
this?

Any replies appreciated.- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
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: TabTag vs TabAllTags

2009-02-16 Thread Ken Girard

The Tag tab list all of the tags used in that TW.
The All tab shows you all the titles of tiddlers in that TW.

Tags are catagories, Titles are ummm... titles.

If you have a tiddler titled Cow that is tagged with Food then on
the Tag tab it will show Food, but it will not show Cow, unless I tag
something with Cow.
At the same time the All tab will show Cow, but will not show Food,
unless I create a tiddler titled Food. If I click on Food you will see
a temporary tiddler titled Food, but unless you click on edit and then
done it will not be saved as perment tiddler.

Ken Girard

On Feb 16, 9:37 am, dukeja puc...@gmail.com wrote:
 The tab menu at side bar has one Tag and another Tag under
 More.  The first one is TabTag and the second one
 TabAllTags.  Both has popup tooltip of All Tags, but apparently
 the TabTag does not give me all the tags(, which are tiddlers not
 tagged by other tiddlers).  The TabAllTags does give me what I look
 for.

 So the question is what is TabTag suppose to do and the difference
 from TabAllTags.

 Thanks!

 Duke
--~--~-~--~~~---~--~~
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: TWT-Notes looking on line for things

2009-02-15 Thread Ken Girard

Put the following into a tiddler tagged with systemConfig:

/***
|Name:|AutoClearMessageMacro|
|Description|It auto closes the pop-up messages after 3 seconds.
Change the 3000 to modify the time.|
***/
{{{
window.oldDisplayMessage = displayMessage;
displayMessage = function (text,linkText)
{ oldDisplayMessage(text,linkText);
setTimeout( 'clearMessage()', 3000 );
}
}}}

Ken Girard

On Feb 15, 6:07 am, bkh bogusb...@gmail.com wrote:
 Thank you so much!  I will give that a try.  I'm new at this and
 basically just experimenting with deleting things until it breaks.
 You have given me a good direction to head with confidence.

 Any thoughts on why that file saved bubble stays up?  I may post that
 question as a new message because I think it is not specific to TWT-
 notes.

 BKh
--~--~-~--~~~---~--~~
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: TWT-Notes looking on line for things

2009-02-14 Thread Ken Girard

Do a search for img as that should pull up most of the tiddlers:
[[Acknowledgements  license]]
[[How you can help]]
[[Image]]
MainMenu
MarkupPostBody (the stats code)
Silver Menu
StyleSheet
StyleSheetShortcuts
StyleSheetTiddlersBar
TWT-Notes update news
TabsCSS
TopMenuStyleOld

Ken Girard

On Feb 14, 8:15 pm, bkh bogusb...@gmail.com wrote:
 Howdy,

 I've been playing with TWT-Notes (http://twt-notes.tiddlyspot.com/).

 How can I keep it from going on to the web to look for images and
 things?  I thought I deleted every link to codecogs(I don't need the
 equation feature).  It's looking for button related things from
 creativecommons.org, I think.  And what is most curious is that it is
 sending information to some on line statistics site.  The
 creativecommons link has been trying to download for 15min now.

 I also deleted the edit equation tiddler and the codecogs image in the
 left side bar.

 Any help would be appreciated.  I have a dialup connection so I don't
 like to tie it up with extra things.

 If the author of TWT-Notes is reading: Many thanks for your work.
 It's lots of fun and I'm sure I will be able to put it to good use.

 Oh, this is a different question, but why doesn't that file saved
 bubble disappear after a second or so like in some other tiddlywikis
 I've tried.  I'm guessing it's a setting but I can't find it.

 Thanks!
--~--~-~--~~~---~--~~
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: Two viewtemplate questions

2009-02-06 Thread Ken Girard

newHere doesn't accept all the extra commands that newTidder does.
Change it to newTiddler and it works.

div class='toolbar' macro='toolbar [[ToolbarCommands::ViewToolbar]]'
span class='newbutton' macro='newTiddler label:Add project
tooltip:Add a new project within a goal tiddler tag:project text:
{{store.getTiddlerText(ProjectSliderFrame)}}'/span
/div

And then add
.toolbar .newbutton {color:#900; background:#009; padding-right:
0.5em;}
 to you stylesheet

Ken Girard

On Feb 6, 8:57 pm, Dave Gifford - http://www.giffmex.org/;
giff...@gmail.com wrote:
 Hi all,

 div class='toolbar' macro='toolbar
 [[ToolbarCommands::ViewToolbar]]'span style='padding-right: 0.5em;'
 macro='newHere label:*Add project* tooltip:Add a new project within
 a goal tiddler tag:project text:{{store.getTiddlerText
 (ProjectSliderFrame)}}'/span/div

 Question #1: The above tooltip does not show up when I view tiddlers.
 How come? What can I do to force the tooltip to show?

 Question #2: I'd like the macro to show up a different color than the
 toolbar. What would be the best way to do that?

 Thanks in advance. Someone asked me for some improvements to
 TiddlyDu2, and inspired me to have a second look at it. The above code
 is from the TiddlyDu3, in the works...

 Dave
--~--~-~--~~~---~--~~
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: Fools rush in and get pummeled

2009-02-05 Thread Ken Girard

Making a guess here, but I think that when you open the file by using
'File, 'Open..', etc. you are getting the cached version of the file,
and not the real thing.

What happens if you make a copy of the file and rename that, and then
open the renamed version?

Ken Girard

On Feb 5, 2:22 pm, mp131 mp131.ghandr...@gmail.com wrote:
 OK I have tried several times  times to get started. Not only are my
 wheels spinning backward, they are running over me!

 I started with the empty.html (Firefox is browser)

 Single  click Site Title

      Site Sitle shows-
 Double Click and a box shows. Edit Site Title (TEST TITLE) In the
 larger box add This is a test.

 At this point I decide to save changes Right hand box

 Get Internet Security warning:

 A script from file:// is requesting enhanced abilities that are
 UNSAFE and could be used to compromise your machine or data:

 Run or install software on your machine

 Allow these abilities only if you trust this source to be free of
 viruses or malicious programs.

 I say allow and message that the file has been saved appears.

 BTW, I checked the box to let it happen in the future but that seems
 to not prevent other messages but that isn't the issue.

 Look for the file in the browser and open it. Back to ground zero.

 Can someone write a TW that can be downloaded to show HOW TO GET
 STARTED and where to look for a file that is saved is saved?

 And what's this security message? At least I don't get THAT when I
 put a post it note on my monitor.

 I'm flustered and disappointed in this package that was supposed to be
 amazing.

 mp131
--~--~-~--~~~---~--~~
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: WYSIWYG

2009-01-29 Thread Ken Girard

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

ken girard

On Jan 29, 7:58 am, dukeja puc...@gmail.com wrote:
 I am not expert at all, but have not seen any wysiwyg that save in
 wiki syntax.  There are some provide quick insertion (such as
 QuickEdit from Eric) but it is not wysiwyg.  I like it a lot since you
 can install the ones you like and it is easy to custom and add
 additional format that you like.

 Duke

 On Jan 28, 10:24 am, rakugo jdlrob...@gmail.com wrote:

  Hi,
  I'm looking to use something to allow WYSIWYG editing in TiddlyWiki
  (the closest offering to what I want is FCKeditorPlugin)

  However I notice these save as html format. Is there anyway to get
  this to save as wiki text or an alternative plugin which does similar
  things but saves in wiki text?

  Not looking for anything too fancy - just something that makes it easy
  to add and see images + hyperlinks!
--~--~-~--~~~---~--~~
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: Making Wikis Work for Scholars

2009-01-27 Thread Ken Girard

I'd love to see something like Tiddlyspot where each user has their
own TW to make entries in, but when you search it looks at all the TWs
in the database. It doesn't get me to the 'truth', it gets me to the
truth as that user sees it.
A search for 'Ann Rand' should give one many different views on the
subject as there is no one correct answer on this subject.
Oh wait. I think I just recreated Google/Yahoo/Insert search engine
name here.

Ken Girard

On Jan 27, 3:23 pm, Morris Gray msg...@symbex.net.au wrote:
 On Jan 28, 4:37 am, Eric Weir eew...@bellsouth.net wrote:

  Still, might be of interest to some here.

 It is an interesting social trend worth watching.  Also it leads to
 other links where people are trying to create other wikis of more
 reliability with various success.

 On that note Google's Knol has be an abject failure and will be shut
 down at the end of 2009.

 I suggest a TiddlyPedia where all submissions must be done with a
 TiddlyWiki.  That would separate the boys and girls from the men and
 women and create a higher class of submitters.

 It may be small because TiddlyWikis are never done but that's not the
 point.  It is better to travel hopefully than to arrive:-)

 Morris

 On Jan 28, 4:37 am, Eric Weir eew...@bellsouth.net wrote:

  This is a link to an interesting article on the reception/use of wikis  
  in  higher education.

 http://insidehighered.com/news/2008/04/28/wiki

  I thought there might be mention of TiddlyWiki, but the article is not  
  about the technology per se as such. Rather it's about the tensions  
  between Wikipedia's anything goes approach to content and editing  
  and academe's interest in/concern with expertise, the extent to which  
  those have been/are being resolved [or not], and efforts to develop  
  alternative wikis that allow greater authority to expertise, make use  
  of peer review, etc.

  Still, might be of interest to some here.

  Eric Weir
  -
  Decatur, GA  USA
  eew...@bellsouth.net
--~--~-~--~~~---~--~~
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 learn - from scratch?

2009-01-26 Thread Ken Girard

The thing is that first you need a grasp of html, css, and javascript.
Once you have those, then you just start taking things apart. And how
well commented the TW source code comes in handy for this.
Mind you, I get html, a big chunk of css, and I can kind of follow
javascript. I write code the way bears dance. You are not impressed at
the quality, you just get impressed that the bear can dance.

Another big thing is just remembering what all the various plugins can
do. Then when you come up with something you want to do, you can find
something that does it, or is close to it to use as a begining.

I think part of the problem is that playing with a TW is about equal
parts art and science. Sure you can get a standard TW effect by adding
this plugin and that one (science), but to create something totally
new is where it becomes art. You need that special little spark (See
Girl Genuis comic), and that can't really be taught. Well, that and
half of the fun is just playing around until you suddenly realize that
it is 4am...

Ken Girard

On Jan 26, 10:53 am, Mark S. throa...@yahoo.com wrote:
 Tim O'Reilly, are you listening?

 The problem with the Wiki at tiddlywiki.org, and maybe all unmoderated
 wiki's, is that anyone can start a topic. Different people will think
 to put the same information under different topic categories.  Looking
 at slices for example, I see at least 3 attempts do describe them,
 all under different titles. The problem is, if the information is
 different in each of the topics, how does a beginning user know which
 one to use?

 The overall problem is that most Wiki's lack an outlining structure.
 Outlines (trees, as they are sometimes implemented)  helps people see
 where information is missing, and where it fits in.

 For my own use, that's why I've been using the TW-notes version,
 allowing you to create something of a data structure. I know it must
 be possible to create a real tree object in JSP -- I've seen them in
 some web applications.

 For now, what I'd like is a list of available TW/story methods and how
 they work. This might entail reading the TW code and compiling my own
 documentation. I suppose this is how most of the current TW plugin
 developers started.

 -- Mark

 On Jan 26, 7:23 am, Eric Weir eew...@bellsouth.net wrote:

  On Jan 26, 2009, at 9:43 AM, Merlin wrote:

   I'm wondering, is there a course I can do, or a step by step
   tutorial I can go through, rather than just picking topics more or
   less at random and trying to piece it all together in my head?

  Easy for me to say, since I am in absolutely no position to do it  
  myself, but we need a book. Much of the conversation here is about the  
  basic how-tos of TiddlyWiki. I'm very greatful that the wise and  
  creative TiddlyWiki experts here are so generous, and never loose  
  patience, with the likes of me.

  But often when I ask I know what I'm asking about is common knowledge  
  to non-newbies, and I often wish there were a book that could give me  
  an overview, and help me get ahead of the game, so that I don't have  
  to be always asking questions that must make more experienced users  
  tear their hair. [Except that they never do, so maybe they don't  
  really.]

  I know this is not an original thought with me, but I thought I'd just  
  put it out there again.

  Eric Weir
  -
  Decatur, GA  USA
  eew...@bellsouth.net
--~--~-~--~~~---~--~~
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: What's a good way of setting up an event calendar?

2009-01-19 Thread Ken Girard

TiddlyTools.com has a calendar plugin.
http://www.tiddlytools.com/#CalendarPlugin

But in reality, for what you are wanting to do, I'd look at setting up
a Google calender.

Ken Girard

On Jan 17, 3:31 pm, bwallum r...@btconnect.com wrote:
 This will be my third TW and I have the basics of how to get going and
 even used one or two plugins! I would now like to expand my knowledge
 to a tad above beginner. (latest state of knowledge can be seen 
 onhttp://www.ettrickvillagehall.org/CommunitySurvey2008.html)

 The functionality I am looking for is a calendar showing all the days
 in a month. Day's that have events would be colour differentiated,
 today's date would differentiated too. An event would be a Tiddler,
 some are quite unique but many are repetitive so it would be good to
 be able to copy and paste a tiddler directly from the calendar, or
 even have a schedule list perhaps in another tiddler for when the
 event tiddler should be displayed. To be used as a web site.

 When an event is chosen the tiddler will open up and images, booking
 contacts and the like can be included in the event tiddler.

 It would be good to display a rolling year, (possibly all at once?) so
 that others can book the venue (a village hall) when nothing is on.
 I'm not looking to do a full online booking system at the moment, just
 to identify when a day is free. The bubblier it looks the better with
 a good party atmosphere. I like to keep mainstream if possible so that
 I am not caught out by incompatibility issues when upgrading the core.

 Anybody know of something similar I can use to start with or if not
 any advice on which plugins etc to use?

 As an aside I am sure my stuff is pretty noddy but I wonder if it
 might be useful to others. A community survey is a standard thing in
 the UK if you are looking for funding, for example. Is there a
 repository anywhere for lodging examples or do I just leave the 'view'
 button on so that people can cut and past if they want to?
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



  1   2   >