[tw] Re: Inline Editing of tables

2012-07-05 Thread Vincent Yeh
Release of TableEdit to 1.1.0

Added a couple of new features and fixed some bugs.

Major changes:

   - Enable/disable edit mode.
  - A small button labeled E is attached to the top-right corner of 
  the table (with class editable, still).
  - Click that E button to enable/disable edit mode for that table.
  - Allow insertion and deletion of rows and columns anywhere in the 
   table.
  - Some buttons (ugly, I know) at the right side and bottom of the 
  table.
  
Please give it a try. Comments/suggestions are welcome!

Vincent

On Sunday, July 1, 2012 3:59:13 PM UTC+8, Vincent Yeh wrote:


 Fixed the FF and IE9 issues mentioned below. Hopefully it should be 
 working fine in Chrome, FireFox and IE9 on desktops.

 Problems with TWEdit on the iPad still remain...

 Vincent

 On Sunday, July 1, 2012 9:46:21 AM UTC+8, Vincent Yeh wrote:

 On my computer the only browser that works just as expected is Google 
 Chrome and no one else.

- FF doesn't respond to mouse clicking so no way to start editing.
- IE9 doesn't respond correctly to Enter and Cancel so the edit 
box won't go away. Looks like it has problems saving the file.
- TWEdit on the iPad gives me the rendered HTML codes instead of 
wikitext. For example, the TableEdit plugin receives span 
style=color:red;text in red/span instead of the expected 
@@color:red;text in red@@.

 Hm, I have no idea about these at all! I shall need a lot of time 
 to fix them. If some has any idea to fix one of those, please help to speed 
 up!. Thanks a lot!

 Vincent

 On Tuesday, June 26, 2012 9:09:22 AM UTC+8, Vincent Yeh wrote:


 Anthony, thank you for trying the plugin and giving feedbacks. And for 
 your last question on uploading, I have no idea how to do that currently (I 
 have experiences in programming but not much in javascript and the web 
 things.) It will take me sometime to figure out. If someone has answers and 
 would like to contribute, it will be highly appreciated.

 Eric, thank you for pointing out the key point which I never knew myself.

 I have been using Google Chrome for the development of this plugin 
 (inspired by and modified from TableSortingPlugin v2.0.2 by Saq Imtiaz 
 and GridPlugin v2.0.7 by Eric Shulman. Many thanks to them.) It seems to 
 work just fine for me and I turned out to forget about other browsers. Next 
 time I will try them out myself but as mentioned above most likely I do not 
 have the knowledge to fix the cross-browser things. I shall be relying on 
 more experienced people to do that.

 Vincent

 On Tuesday, June 26, 2012 2:05:25 AM UTC+8, anthony wrote:

 Last question...sorry for so much spam...

 I am using this wiki as a webbased system, when I edit the table I 
 would like for it to upload to the web versus to a local file...is there 
 anyway for that to be done?

 On Monday, June 25, 2012 12:55:56 PM UTC-5, anthony wrote:

 spamming...sorry

 I fixed the issue with IE, it was a version issue. I was using IE8 
 (preferred over here) but upgraded to 9 and it is working PERFECTLY. this 
 plugin is going to make our tiddlywiki amazing in terms of what we were 
 trying to do.

 So in short I think IE8 may not work properly with this plugin.

 On Monday, June 25, 2012 12:22:23 PM UTC-5, Eric Shulman wrote:



 On Jun 25, 8:23 am, anthony i...@ufocomputerservices.com wrote: 
  Just tried your plugin...am I missing something? I loaded the 
 plugin and 
  tried your example both on my tiddly and yours and neither were 
  editable...maybe I am just missing something though. 

 The plugin works in IE, but not in FF or other browsers. 

 The reason is because IE uses a different method of processing 
 events.  In IE, all events are processed by first setting a global 
 variable event and then invoking the appropriate onclick handler to 
 process the event.  However, in other browsers, the event is *passed* 
 to the handler as a parameter. 

 The plugin problem arises due to this line of code: 

cell.onclick = function(){editInPlace(this,event);}; 

 In order to make this cross-browser compatible, it should be re- 
 written as: 

cell.onclick = function(ev){editInPlace(this,ev|event);}; 

 This allows non-IE browsers to properly use the passed in event as a 
 variable named 'ev', while IE continues to fallback to using the 
 global 'event' variable. 

 enjoy, 
 -e 
 Eric Shulman 
 TiddlyTools / ELS Design Studios 

 WAS THIS ANSWER HELPFUL?  IF SO, PLEASE MAKE A DONATION 
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/-/VWdNChzMU7QJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send 

[tw] Re: Displaying text conditionally like in Twine

2012-07-05 Thread Sonda


 As you found out, Twine uses several plugins to get things going. It 
 would be needed, to add all of them to a vanilla TW, to get the same 
 behaviour. IMO interactive stories are quite complex. So the Twine 
 program abstracts this complexity away and exports to TW. 

Yes, I see that doing it with Twine is much easier, but I'd like to keep my 
stories inside a bigger TW, which Twine currently can't. Also, it crashes 
when I try to generate TW files (I reported this to their discussion group).

Anyway, after reading this guide 
How_To/Display_a_variable_within_a_tiddlerhttp://oldwiki.tiddlywiki.org/wiki/How_To/Display_a_variable_within_a_tiddler
 I've 
learnt how to set variables and I almost came to an acceptable conclusion. 
Now, all I need is the javascript equivalent of

*if variableXX is X, show **(return?)** tiddlerX --- else, show tiddlerY*
*
*
Also, I may need some more complex scripts like 

*if variableXX is X and variableZZ is Z show** tiddlerX --- else, show 
tiddlerY* 
and
*if variableXX is X, show **tiddlerX --- if variableYY is Y show tiddlerY 
--- if variableZZ is Z show tiddlerZ * 

Can anybody help me translate this ideas into working javascripts?
Thanks a lot 
 



-- 
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/-/Tu7HtjxCn3EJ.
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: forEachTiddler with partTiddler

2012-07-05 Thread Shango
Oh ok.  I thought since it is enclosed in quotes as a string, it would not 
be confused.  

I have another question.  How do I prevent tiddlers that do not have any 
Summary part from showing at all in the output?  I just need a way to 
test for a null value of the partTiddler in the where clause.  I'm not sure 
how to do that.  

Thanks.  

On Wednesday, July 4, 2012 8:16:17 PM UTC-5, TonyM wrote:

 Why can't it just be the closing  ?

 Because it would prematurely close the matching  on the ForEachTiddler 
 macro itself ! in the calling tiddler !

 TonyM

 On Thursday, 5 July 2012 03:46:04 UTC+10, Shango wrote:

 Ah Ha!!!  I knew the method but I didn't know the correct syntax.  The 
 \ is what I needed.  Is that a quirk of html syntax?  I don't 
 understand the \  Why can't it just be the closing ?  

   (Also, should be tiddler.title not tiddler.name).  

 Thanks!


 On Wednesday, July 4, 2012 12:09:56 PM UTC-5, whatever wrote:

 Hi! 

 in the write parameter use: 
 'tiddler +tiddler.name+/Summary\' 

 w 

 On 4 jul., 16:54, Shango shango3...@gmail.com wrote: 
  How can I use forEachTiddler to show specifically named parts?  I want 
 to 
  display the tidder name and contents of a specifically named part of a 
  tiddler if it exists.  For example, if I have a part named Summary 
 in 
  several different tiddlers, I want to use forEachTiddler where the 
  part=Summary and display that tiddler title and the contents of the 
  part.  I haven't found any way to do this.  Thanks.



-- 
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/-/90XtRschWTgJ.
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: forEachTiddler with partTiddler

2012-07-05 Thread twgrp
I recall recommendations *against* using parts and instead use either
slices or, hm what's it called, headings?
Not quite sure why, though... ?

Examples of this are:

|Here|is a slice value|

!And here
is a heading value


You pull out the values via:

tiddlername::Here

and

[[tiddlername##And here]]


:-)

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



[tw] Re: forEachTiddler with partTiddler

2012-07-05 Thread whatever
@twgrp: The beauty of parts is that you can use them within the text.
For example:
Blah blah blah means part def1whatever it means/part blah blah.

@Shango: yeah, it's tiddler.title, not name. I was tired when I wrote
that:D

w

On Jul 5, 3:26 pm, twgrp matiasg...@gmail.com wrote:
 I recall recommendations *against* using parts and instead use either
 slices or, hm what's it called, headings?
 Not quite sure why, though... ?

 Examples of this are:

 |Here|is a slice value|

 !And here
 is a heading value

 You pull out the values via:

 tiddlername::Here

 and

 [[tiddlername##And here]]

 :-)

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



[tw] Re: Inline Editing of tables

2012-07-05 Thread Craig in Calgary
Where is the sum... definition used in your example tiddler?

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



Re: [tw] Re: Inline Editing of tables

2012-07-05 Thread Vincent Yeh
Craig,

Do you mean my TableEdit--Example tiddler? I though I made it private!
Well, I just removed the sum... macro and made it public, you can try
it again.

The sum... macro is defined in another TableCalculator plugin which is
under development and not yet released.

Vincent

2012/7/5 Craig in Calgary craig.prich...@gmail.com

 Where is the sum... definition used in your example tiddler?

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




-- 
Wang-Chi Vincent Yeh, Assistant Professor
Department of Physics, National Dong Hwa University
Tel: 8633719 (O)8633723 (Lab)

-- 
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-style categories in TiddlyWiki

2012-07-05 Thread Andy Green
Is it possible to put one category into another category in TiddlyWiki?

On Saturday, January 14, 2012 12:33:18 AM UTC-5, Andy Green wrote:

 Are there any plugins for TiddlyWiki that make it possible to use 
 categories in a similar way to how they are used in MediaWiki? I want to 
 organize tiddlers using categories and subcategories.

-- 
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/-/8Ai-rXY_2wEJ.
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] INTRO: Part Of Speech tagger TiddlyWiki/TiddlySpace

2012-07-05 Thread PMario
Inspired by html javascript not working in TW [1] conversation, I
did create the postagger space http://postagger.tiddlyspace.com/.

I think, it's allready quite usefull but improvement can allway
happen :)
It can be used, if you include the postagger space into your own
space.

The functions itself are implemented as tiddler ...
transclusions.

helpTag [3] tiddler contains functions to tag sentenses and add some
help information on mouse over.

StyleSheet tiddler contains some tag coloring and editor CSS.

posTag [4] has the same function, but doesn't create the mouse over
stuff.

Usage
=
! Input
some text to tag.

! Output
tiddler helpTag##tag with: Input

where Input is a section within the same tiddler, that contains the
stuff, to be tagged. There are several other examples tagged
example

have fun!
-mario

[1] 
http://groups.google.com/group/tiddlywiki/browse_thread/thread/bdf28fdece2b4aa0
[2] http://postagger.tiddlyspace.com/
[3] http://postagger.tiddlyspace.com/#helpTag
[4] http://postagger.tiddlyspace.com/#posTag


If you want to improve this project, feedback and contribution is very
welcome.
A motivation donation is also welcome at:
http://pmario.tiddlyspace.com/#Motivation

-- 
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: html javascript not working in TW?

2012-07-05 Thread PMario
Hi Andrew,
It's up for testing :)

INTRO post:
http://groups.google.com/group/tiddlywiki/browse_thread/thread/8b7705e9545ef63a

For feedback you can use the INTRO thread

have fun!
mario

-- 
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] Introducing TiddlyNoteThingy!

2012-07-05 Thread David Gifford
Yeah yeah I know, I am obsessed with tweaking TiddlyWiki for note-taking - 
NoteStorm, etc.

Here is my latest brainchild, TiddlyNoteThingy. Features not found in 
NoteStorm:
1. No need to title or tag tiddlers, just add content to topical indexes. 
Nice for quickly adding content on the go.
2. What appears in the indexes is not the tiddler title link but the actual 
content of the tiddler, with an unobtrusive link to the tiddler at the end. 
So you don't need to open tiddlers to see them.
3. RandomTiddler button to see random notes you have added.
4. Some note-taking tips for TiddlyNoteThingy.

If you download it, read the instructions and tips, and play with it for 
about 15 minutes, you may get hooked. Totally new way of using TiddlyWiki.

Link:
http://www.giffmex.org/tiddlynotethingy.html

I would love your feedback, and may incorporate your suggestions.

Dave

-- 
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/-/_zX5k1XeqrcJ.
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] SearchOptionsPlugin tweak possible?

2012-07-05 Thread David Gifford
Hi all,

Is it possible to tweak SearchOptionsPlugin in a way that displays the 
contents of the tiddlers found after the link to the title of the tiddler? 
That would make my TiddlyNoteThingy (*
http://www.giffmex.org/tiddlynotethingy.html*) work even better, since most 
of the tiddler titles would be time and date stamps...Just curious...

Dave

-- 
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/-/W2HC4tdyikgJ.
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 TiddlyNoteThingy!

2012-07-05 Thread David Gifford
Update: I had a change of heart about how to handle tiddler titles. The 
link is the same, but the indexes now show the tiddler title for the note 
directly above the note content. The instructions in the file will explain 
why.

Also, I created a separate file with several examples of how TNT can be 
used: http://www.giffmex.org/tiddlynotethingyexamples.html

Dave

On Thursday, July 5, 2012 5:58:31 PM UTC-5, David Gifford wrote:

 Yeah yeah I know, I am obsessed with tweaking TiddlyWiki for note-taking - 
 NoteStorm, etc.

 Here is my latest brainchild, TiddlyNoteThingy. Features not found in 
 NoteStorm:
 1. No need to title or tag tiddlers, just add content to topical indexes. 
 Nice for quickly adding content on the go.
 2. What appears in the indexes is not the tiddler title link but the 
 actual content of the tiddler, with an unobtrusive link to the tiddler at 
 the end. So you don't need to open tiddlers to see them.
 3. RandomTiddler button to see random notes you have added.
 4. Some note-taking tips for TiddlyNoteThingy.

 If you download it, read the instructions and tips, and play with it for 
 about 15 minutes, you may get hooked. Totally new way of using TiddlyWiki.

 Link:
 http://www.giffmex.org/tiddlynotethingy.html

 I would love your feedback, and may incorporate your suggestions.

 Dave


-- 
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/-/4cm8FbzKL0MJ.
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] Display Server Side Includes (SSI) Variable, LAST_MODIFIED

2012-07-05 Thread PF
I want to make a Tiddler that displays the page last modified timestamp of 
the enclosing TiddlyWiki.  Is it possible to do this with the Server Side 
Includes (SSI) variable, LAST_MODIFIED?

I don't get consistent results across browsers with this JavaScript program 
(I installed the InlineJavascriptPlugin) when I paste it into a Tiddler.

script

 var days = new Array(8);
 days[1] = Sunday;
 days[2] = Monday;
 days[3] = Tuesday;
 days[4] = Wednesday;
 days[5] = Thursday;
 days[6] = Friday;
 days[7] = Saturday;
 var months = new Array(13);
 months[1] = January;
 months[2] = February;
 months[3] = March;
 months[4] = April;
 months[5] = May;
 months[6] = June;
 months[7] = July;
 months[8] = August;
 months[9] = September;
 months[10] = October;
 months[11] = November;
 months[12] = December;
 var dateObj = new Date(document.lastModified);
 var hours = dateObj.getHours();
 if (hours  10) {hours = 0 + hours;};
 var minutes = dateObj.getMinutes();
 if (minutes  10) {minutes = 0 + minutes;};
 var seconds = dateObj.getSeconds();
 if (seconds  10) {seconds = 0 + seconds;};
 var wday = days[dateObj.getDay() + 1];
 var lmonth = months[dateObj.getMonth() + 1];
 var day = dateObj.getDate();
 var fyear = dateObj.getYear();
 if (fyear  2000) {fyear = fyear + 1900;};

 var msg=Last Modifiednbsp;nbsp;#91; + wday + ,nbsp; + lmonth + 
 nbsp; + day + ,nbsp; + fyear + nbsp;ndash;nbsp; + hours + : + 
 minutes + : + seconds + nbsp;PST#93;;

 return(msg);

 /script

 
 My webhost supports SSI.  The script I found on 
http://www.javascriptkit.com/script/cut8.shtml works in a plain HTML file.

html
 body
 !--#config timefmt=[%H:%M:%S %Z - %A, %B %d, %Y] --
 script type=text/javascript

 //Page Last Modified Date script- By JavaScriptKit.com
 //Visit http://www.javascriptkit.com for full source code
 //This notice must stay intact for use

 var docmodified='!--#echo var=LAST_MODIFIED --'
 document.write('Last modified: ' + docmodified);
 /script
 /body
 /html


Thanks.
---Pam 



 

-- 
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/-/uJ-PYJIZMYUJ.
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: Rounded Corners in FF13

2012-07-05 Thread PF
I never knew about Firefox CSS extensions until just yesterday, when I was 
researching how to create the Windows key button.  I found the CSS for 
the buttons here,

http://en.wikipedia.org/wiki/Windows_key

which sets each of -moz-border-radius and border-radius to 2px;

On Friday, June 15, 2012 2:36:14 PM UTC-7, skye riquelme wrote:

 Just a quick note to inform people that when you update to FF13, the 
 old CSS -moz-border-radius no longer works. All those nice rounded 
 corners disappear. You need to get into the CSS code and remove the - 
 moz-   part. the code fopr rounded corners is now just border- 
 radius. 

 Thanks 
 Skye

-- 
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/-/8xNiTIobke8J.
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 TiddlyNoteThingy!

2012-07-05 Thread Meta
Very nice. One small bug: Clicking edit custom formats under special 
formatting returns an undefined popup in FF13 (Linux).

Some features I'd like to see:

   - Starting page shows a list of recent notes from all indexes
   - Notes within an index can be sorted in different ways (alphabetically, 
   modified, custom fields...)
   
Meta

On Friday, July 6, 2012 11:29:28 AM UTC+10, David Gifford wrote:

 Update: I had a change of heart about how to handle tiddler titles. The 
 link is the same, but the indexes now show the tiddler title for the note 
 directly above the note content. The instructions in the file will explain 
 why.

 Also, I created a separate file with several examples of how TNT can be 
 used: http://www.giffmex.org/tiddlynotethingyexamples.html

 Dave

 On Thursday, July 5, 2012 5:58:31 PM UTC-5, David Gifford wrote:

 Yeah yeah I know, I am obsessed with tweaking TiddlyWiki for note-taking 
 - NoteStorm, etc.

 Here is my latest brainchild, TiddlyNoteThingy. Features not found in 
 NoteStorm:
 1. No need to title or tag tiddlers, just add content to topical indexes. 
 Nice for quickly adding content on the go.
 2. What appears in the indexes is not the tiddler title link but the 
 actual content of the tiddler, with an unobtrusive link to the tiddler at 
 the end. So you don't need to open tiddlers to see them.
 3. RandomTiddler button to see random notes you have added.
 4. Some note-taking tips for TiddlyNoteThingy.

 If you download it, read the instructions and tips, and play with it for 
 about 15 minutes, you may get hooked. Totally new way of using TiddlyWiki.

 Link:
 http://www.giffmex.org/tiddlynotethingy.html

 I would love your feedback, and may incorporate your suggestions.

 Dave



-- 
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/-/FYX1CgsJL0oJ.
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 TiddlyNoteThingy!

2012-07-05 Thread Meta
Also, are indexes supposed to be tagged by $1 by default, or is that a 
bug?

On Friday, July 6, 2012 8:58:31 AM UTC+10, David Gifford wrote:

 Yeah yeah I know, I am obsessed with tweaking TiddlyWiki for note-taking - 
 NoteStorm, etc.

 Here is my latest brainchild, TiddlyNoteThingy. Features not found in 
 NoteStorm:
 1. No need to title or tag tiddlers, just add content to topical indexes. 
 Nice for quickly adding content on the go.
 2. What appears in the indexes is not the tiddler title link but the 
 actual content of the tiddler, with an unobtrusive link to the tiddler at 
 the end. So you don't need to open tiddlers to see them.
 3. RandomTiddler button to see random notes you have added.
 4. Some note-taking tips for TiddlyNoteThingy.

 If you download it, read the instructions and tips, and play with it for 
 about 15 minutes, you may get hooked. Totally new way of using TiddlyWiki.

 Link:
 http://www.giffmex.org/tiddlynotethingy.html

 I would love your feedback, and may incorporate your suggestions.

 Dave


-- 
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/-/L5ZVZ678GpEJ.
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: SearchOptionsPlugin tweak possible?

2012-07-05 Thread Meta
Have you tried UdoBrokowski's YourSearchPlugin? 
http://tiddlywiki.abego-software.de/#YourSearchPlugin

On Friday, July 6, 2012 9:40:05 AM UTC+10, David Gifford wrote:

 Hi all,

 Is it possible to tweak SearchOptionsPlugin in a way that displays the 
 contents of the tiddlers found after the link to the title of the tiddler? 
 That would make my TiddlyNoteThingy (*
 http://www.giffmex.org/tiddlynotethingy.html*) work even better, since 
 most of the tiddler titles would be time and date stamps...Just curious...

 Dave


-- 
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/-/yxPGQbrzrcUJ.
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] Listing a subset of the current tiddlers tags

2012-07-05 Thread TonyM
Hi everyone,

I was just wondering if anyone had found a way to list a subset of the 
current tiddlers tags using a search ?

I have some tiddlers that are tagged with a range of tags to define its 
type or status including one or more projects for which this tiddler is 
relevant.

I would like a method to search all tags in the current tiddler then test 
if the tiddlers these tags represent meet some condition such as being 
tagged project. I want a list (ideally on a single line) of the tags in 
the current tiddler that are project tags.

In this case each tag is also a tiddler with its own tags.

This would be very useful in a number of ways including providing toggle 
tags and other features for selected tags.

Thanks in advance for considering this request.

TonyM

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