[tw] [TW5] feature request: dedect location through PageTemplate hierarchy

2014-09-10 Thread Eucaly J

Dear all:

Please comment if you support the below idea

   - Using the variable *listItem*, one might be able to detect the 
   location of PageTemplate elements
   - While, down to the hierarchy, *listItem* will be assigned again, so 
   that cannot trace back the hierarchy
   - Is it possible to assign the variable with different name? as 
   listItemPageTemplate, listItemTopRightBar


   - or, to make a variable to indicate the hierarchy ? For example,

listItemAll = $:/core/ui/PageTemplate/story  ...  $:/core/ui/ViewTemplate  
$:/core/ui/ViewTemplate/body, or

listItemAll = $:/core/ui/PageTemplate/toprightbar  MyTopBarItem


$:/core/ui/PageTemplate
$list 
filter=[all[shadows+tiddlers]tag[$:/tags/PageTemplate]!has[draft.of]] 
variable=listItem

$transclude tiddler=listItem/

/$list


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [tw5] Tiddlyclip plugin release - create clips of webpages

2014-09-10 Thread Matabele
Hi

Works for me (Firefox in Ubuntu Trusty) -- many thanks. I can now retire my 
last remaining copies of TWC!

regards

On Tuesday, September 9, 2014 3:16:24 PM UTC+2, BJ wrote:

 I am creating a plugin and browser addon that allows clips of web pages to 
 be collected into a tiddlywiki. It is now functional but still in 
 development. 
 As it is still in development, and it modifies the contents of 
 tiddlywikis, it is possible that the data within a tiddlywiki could be 
 destroyed if there is a bug - it is therefore RECOMMENDED at present that 
 tiddlyclip is only used  for experimentation in a separate tiddlywiki. The 
 plugin along with its documentation can be found here:

 Note that I have only used the plugin and firefox addon  on ubuntu 12.04.
 Feedback always welcomed!
 Cheers

 BJ


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] feature request: dedect location through PageTemplate hierarchy

2014-09-10 Thread Eucaly J
Dear all:

I found this can be done by some javascript macro.
So, there's no need for feature request

I will post the full macro later

exports.run = function(variable_name) {
var output = ;
var p = this;
var v0 = ;
while (p)
{
var v = p.getVariable(variable_name);
if ( v  v!=v0)
{
output = output + [[ + v + ]] ;
v0 = v;
}
p = p.parentWidget;
}
return output;
};


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] feature request: dedect location through PageTemplate hierarchy

2014-09-10 Thread Jeremy Ruston
Hi Eucaly

The function you've ended up with is very similar to
Widget.getStateQualifier():

/*
Construct a qualifying string based on a hash of concatenating the values
of a given variable in the parent chain
*/
Widget.prototype.getStateQualifier = function(name) {
name = name || transclusion;
var output = [],
node = this;
while(node  node.parentWidget) {
if($tw.utils.hop(node.parentWidget.variables,name)) {
output.push(node.getVariable(name));
}
node = node.parentWidget;
}
return { + $tw.utils.hashString(output.join()) + };
};

https://github.com/Jermolene/TiddlyWiki5/blob/master/core%2Fmodules%2Fwidgets%2Fwidget.js#L197

There's also a JavaScript qualify macro. We could extend it so that there
is an additional parameter to specify the variable name to use (which would
default to transclusion).

Could this meet your needs?

Best wishes

Jeremy


On Wed, Sep 10, 2014 at 9:22 AM, Eucaly J byjan...@gmail.com wrote:

 Dear all:

 I found this can be done by some javascript macro.
 So, there's no need for feature request

 I will post the full macro later

 exports.run = function(variable_name) {
 var output = ;
 var p = this;
 var v0 = ;
 while (p)
 {
 var v = p.getVariable(variable_name);
 if ( v  v!=v0)
 {
 output = output + [[ + v + ]] ;
 v0 = v;
 }
 p = p.parentWidget;
 }
 return output;
 };


  --
 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 http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




-- 
Jeremy Ruston
mailto:jeremy.rus...@gmail.com

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw]

2014-09-10 Thread Jeremy Ruston
TiddlyWiki Hangout #61 will be on Tuesday 16th September at 4pm BST (which
is UTC+01:00). More details:

https://plus.google.com/events/cmgu0r720nf1ckn7nlbq01d8oj0

Feel free to post questions with the QA button on the video preview above,
or by posting here,

Best wishes

Jeremy

-- 
Jeremy Ruston
mailto:jeremy.rus...@gmail.com

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] TiddlyWiki Hangout #61 on Tuesday 16th September at 4pm BST

2014-09-10 Thread Jeremy Ruston
TiddlyWiki Hangout #61 will be on Tuesday 16th September at 4pm BST (which
is UTC+01:00). More details:

https://plus.google.com/events/cmgu0r720nf1ckn7nlbq01d8oj0

Feel free to post questions with the QA button on the video preview above,
or by posting here,

Best wishes

Jeremy

-- 
Jeremy Ruston
mailto:jeremy.rus...@gmail.com

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] feature request: dedect location through PageTemplate hierarchy

2014-09-10 Thread Eucaly J
Hi Jemery:

My target is to tweak same macro (within tiddler [[QuickJump Example]] as 
below) to have different behavior, so that I would like to know *the name 
of page element*, rather then a condensed hash.

For example, by tracing *listItem*, I can identify *toprightbar *from 
*$:/tags/ViewToolbar*
[[QuickJump Example]] [[$:/core/ui/ViewTemplate/*title*]] 
[[$:/core/ui/PageTemplate/story]]

[[QuickJump Example]] [[$:/core/ui/PageTemplate/*toprightbar*]]

b.r.
Eucaly J

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] feature request: dedect location through PageTemplate hierarchy

2014-09-10 Thread Jeremy Ruston
Hi Eucaly


 My target is to tweak same macro (within tiddler [[QuickJump Example]] as
 below) to have different behavior, so that I would like to know *the name
 of page element*, rather then a condensed hash.


OK, so perhaps that could be accomplished by moving the hashing into the
qualify macro, and then introduce a new macro that doesn't do the hashing.

By the way, I'm interested to understand the specific use case here?

Best wishes

Jeremy




 For example, by tracing *listItem*, I can identify *toprightbar *from
 *$:/tags/ViewToolbar*
 [[QuickJump Example]] [[$:/core/ui/ViewTemplate/*title*]]
 [[$:/core/ui/PageTemplate/story]]

 [[QuickJump Example]] [[$:/core/ui/PageTemplate/*toprightbar*]]

 b.r.
 Eucaly J




-- 
Jeremy Ruston
mailto:jeremy.rus...@gmail.com

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [tw5] Tiddlyclip plugin release - create clips of webpages

2014-09-10 Thread Ton Gerner
Hi BJ,

A very welcome addition (I am a long-time user of TiddlySnip with TWc).

My first test with TiddlyClip was discouraging : besides the text I got a 
lot of CSS. Try to 'Snip' the following from [1] and see what you get. I 
got more CSS than text ;-)

Definition of INCONSISTENCY

1 :  an instance of being inconsistent
2 :  the quality or state of being inconsistent
 See inconsistency defined for English-language learners »
 See inconsistency defined for kids »

I tried a few other websites and 'Snipped' and 'Pinned' without the 
problems at [1].

I now need to explore all the possibilities of TiddlyClip.

Thanks a lot for this plugin and Firefox add-on.

Cheers,

Ton

[1] http://www.merriam-webster.com/dictionary/inconsistency


On Tuesday, September 9, 2014 3:16:24 PM UTC+2, BJ wrote:

 I am creating a plugin and browser addon that allows clips of web pages to 
 be collected into a tiddlywiki. It is now functional but still in 
 development. 
 As it is still in development, and it modifies the contents of 
 tiddlywikis, it is possible that the data within a tiddlywiki could be 
 destroyed if there is a bug - it is therefore RECOMMENDED at present that 
 tiddlyclip is only used  for experimentation in a separate tiddlywiki. The 
 plugin along with its documentation can be found here:

 Note that I have only used the plugin and firefox addon  on ubuntu 12.04.
 Feedback always welcomed!
 Cheers

 BJ


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] On the fly completions/suggestions

2014-09-10 Thread Alain Dutech

I have tried to search this forum but found no mention of feature that I 
would find awesome.

So, is it possible, when you are editing a tiddler (for exemple its body 
field) to monitor what the user is typing and suggest some completion 
based on the current word.

For example, I already have a tiddler HolidayLocation and I'm editing the 
content of another tiddler.
I'm typing When we arrive at Hol
the editor suggests [[HolidayLocation]] based on the existing tiddlers.
I type ENTER to validate and keep typing, or wave it out by keeping typing 
lyday Inn :o)

The suggestion could be shown in a popup, with several choices if any. 
Selection with arrow ? ENTER to validate ? ESC to wave out...

Well, I hope I'm clear.

Has it be done? How? Could it be done ?

Cheers,
Alain

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [tw5] Tiddlyclip plugin release - create clips of webpages

2014-09-10 Thread BJ

Hi Ton,
thanks for trying tiddlyclip, and thanks very much for such an accurate bug 
report. I have now fixed this issue and will  release a new version of the 
firefox addon shortly,

cheers

BJ

On Wednesday, September 10, 2014 12:11:37 PM UTC+2, Ton Gerner wrote:

 Hi BJ,

 A very welcome addition (I am a long-time user of TiddlySnip with TWc).

 My first test with TiddlyClip was discouraging : besides the text I got a 
 lot of CSS. Try to 'Snip' the following from [1] and see what you get. I 
 got more CSS than text ;-)

 Definition of INCONSISTENCY

 1 :  an instance of being inconsistent
 2 :  the quality or state of being inconsistent
  See inconsistency defined for English-language learners »
  See inconsistency defined for kids »

 I tried a few other websites and 'Snipped' and 'Pinned' without the 
 problems at [1].

 I now need to explore all the possibilities of TiddlyClip.

 Thanks a lot for this plugin and Firefox add-on.

 Cheers,

 Ton

 [1] http://www.merriam-webster.com/dictionary/inconsistency


 On Tuesday, September 9, 2014 3:16:24 PM UTC+2, BJ wrote:

 I am creating a plugin and browser addon that allows clips of web pages 
 to be collected into a tiddlywiki. It is now functional but still in 
 development. 
 As it is still in development, and it modifies the contents of 
 tiddlywikis, it is possible that the data within a tiddlywiki could be 
 destroyed if there is a bug - it is therefore RECOMMENDED at present that 
 tiddlyclip is only used  for experimentation in a separate tiddlywiki. The 
 plugin along with its documentation can be found here:

 Note that I have only used the plugin and firefox addon  on ubuntu 12.04.
 Feedback always welcomed!
 Cheers

 BJ



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [tw5] Tiddlyclip plugin release - create clips of webpages

2014-09-10 Thread BJ
I have released a new version of the firefox addon 0.0.4-alpha. The 
installation of the updated is the same as installing the original - just 
drag and drop the link to the plugin or go to my git repository and 
download it.

the link is

https://github.com/buggyj/tiddlyclip/raw/master/tiddlyclip.xpi 

project page is

http://buggyj.github.io/tiddlyclip/

On Tuesday, September 9, 2014 3:16:24 PM UTC+2, BJ wrote:

 I am creating a plugin and browser addon that allows clips of web pages to 
 be collected into a tiddlywiki. It is now functional but still in 
 development. 
 As it is still in development, and it modifies the contents of 
 tiddlywikis, it is possible that the data within a tiddlywiki could be 
 destroyed if there is a bug - it is therefore RECOMMENDED at present that 
 tiddlyclip is only used  for experimentation in a separate tiddlywiki. The 
 plugin along with its documentation can be found here:

 Note that I have only used the plugin and firefox addon  on ubuntu 12.04.
 Feedback always welcomed!
 Cheers

 BJ


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [tw5] Tiddlyclip plugin release - create clips of webpages

2014-09-10 Thread BJ
I have released a new version of the firefox addon 0.0.4-alpha. The 
installation of the updated is the same as installing the original - just 
drag and drop the link to the plugin or go to my git repository and 
download it.  If you have not already installed the plugin you need only 
follow the instructions given at 

http://tiddlyclip.tiddlyspot.com

the link is

https://github.com/buggyj/tiddlyclip/raw/master/tiddlyclip.xpi 

project page is

http://buggyj.github.io/tiddlyclip/ 
http://www.google.com/url?q=http%3A%2F%2Fbuggyj.github.io%2Ftiddlyclip%2Fsa=Dsntz=1usg=AFQjCNFpoMrJGJ0AEw8o2tLUbfCjTXiMdQ

cheers

BJ

On Tuesday, September 9, 2014 3:16:24 PM UTC+2, BJ wrote:

 I am creating a plugin and browser addon that allows clips of web pages to 
 be collected into a tiddlywiki. It is now functional but still in 
 development. 
 As it is still in development, and it modifies the contents of 
 tiddlywikis, it is possible that the data within a tiddlywiki could be 
 destroyed if there is a bug - it is therefore RECOMMENDED at present that 
 tiddlyclip is only used  for experimentation in a separate tiddlywiki. The 
 plugin along with its documentation can be found here:

 Note that I have only used the plugin and firefox addon  on ubuntu 12.04.
 Feedback always welcomed!
 Cheers

 BJ


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [tw5] Tiddlyclip plugin release - create clips of webpages

2014-09-10 Thread BJ
thanks Matabele, 
and you can use tiddlyclip to move your tiddlers from twc to tw5,

cheers 

BJ

On Wednesday, September 10, 2014 9:36:27 AM UTC+2, Matabele wrote:

 Hi

 Works for me (Firefox in Ubuntu Trusty) -- many thanks. I can now retire 
 my last remaining copies of TWC!

 regards

 On Tuesday, September 9, 2014 3:16:24 PM UTC+2, BJ wrote:

 I am creating a plugin and browser addon that allows clips of web pages 
 to be collected into a tiddlywiki. It is now functional but still in 
 development. 
 As it is still in development, and it modifies the contents of 
 tiddlywikis, it is possible that the data within a tiddlywiki could be 
 destroyed if there is a bug - it is therefore RECOMMENDED at present that 
 tiddlyclip is only used  for experimentation in a separate tiddlywiki. The 
 plugin along with its documentation can be found here:

 Note that I have only used the plugin and firefox addon  on ubuntu 12.04.
 Feedback always welcomed!
 Cheers

 BJ



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [tw5] How to change the background color of each cell in TW5

2014-09-10 Thread Shash
Hi All,

As the question goes I wish to know how to change the background color of 
each cell in TW5. 

Many Thanks!
Shash

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [tw5] How to change the background color of each cell in TW5

2014-09-10 Thread Ton Gerner
Hi Shash,

Have a look at [1]

Cheers,

Ton

[1] https://groups.google.com/d/msg/tiddlywiki/-VAUumD1y1w/OkyEVo4FATcJ

On Wednesday, September 10, 2014 6:37:27 PM UTC+2, Shash wrote:

 Hi All,

 As the question goes I wish to know how to change the background color of 
 each cell in TW5. 

 Many Thanks!
 Shash


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: NotestormTW experimental template / two questions about it

2014-09-10 Thread Atul Grover


Hi David, 

love your template. I use your notestorm from my mobile phone (android). 

Now, is it possible to have the image-note-card open the phone's camera, 
allow the user to take a photo,save it, and insert the image link or 
filepath between the double quotes and save the tiddler. 

This could be widely used for live  self learning (the direction in which 
the modern pedagogy is moving). 

I think there are html5 tags that can call the android APIs etc.

Regards Atul Grover


On Tuesday, September 9, 2014 9:02:43 AM UTC+5:30, David Gifford wrote:

 Hi all

 TiddlyWiki is getting close to full release, and tonight I almost finished 
 my note-taking template called NoteStormTW, the TW5 successor to the old 
 NoteStorm. I have been playing around with a cruder version of this and it 
 has revolutionized my note-taking. Seriously. I think I can finally stop 
 tweaking TiddlyWiki and use this for my purposes until Jeremy finds some 
 reason to break it. Would love your feedback.

 The URL  for now while it is in experimental stage is 
 http://giffmex.org/experiments/notestormtw.html

 It has two glitches in it that I am aware of, and maybe some of you can 
 help me overcome them:

 1. In my StyleSheet I have it so that #gifftoolbar does not print. But it 
 prints anyway. Any idea what I did wrong?

 2. When the tagging area is open, editing and saving tiddlers doesn't 
 happen automatically. I need to manually save. Seems to be something to do 
 with the state tiddler being qualified. Again, any ideas on how to overcome 
 that?

 Blessings, Dave


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: NotestormTW experimental template / two questions about it

2014-09-10 Thread David Gifford
Hi Atul

I think that would be great! But, as I am not actually a developer but
simply a user who shares his own user editions with others, what you are
asking for is far beyond my abilities. I recommend you start a separate
thread asking if someone knows how to do this.

Blessings!

On Wed, Sep 10, 2014 at 2:42 PM, Atul Grover atulgrov...@gmail.com wrote:

 Hi David,

 love your template. I use your notestorm from my mobile phone (android).

 Now, is it possible to have the image-note-card open the phone's camera,
 allow the user to take a photo,save it, and insert the image link or
 filepath between the double quotes and save the tiddler.

 This could be widely used for live  self learning (the direction in which
 the modern pedagogy is moving).

 I think there are html5 tags that can call the android APIs etc.

 Regards Atul Grover


 On Tuesday, September 9, 2014 9:02:43 AM UTC+5:30, David Gifford wrote:

 Hi all

 TiddlyWiki is getting close to full release, and tonight I almost
 finished my note-taking template called NoteStormTW, the TW5 successor to
 the old NoteStorm. I have been playing around with a cruder version of this
 and it has revolutionized my note-taking. Seriously. I think I can finally
 stop tweaking TiddlyWiki and use this for my purposes until Jeremy finds
 some reason to break it. Would love your feedback.

 The URL  for now while it is in experimental stage is http://giffmex.org/
 experiments/notestormtw.html

 It has two glitches in it that I am aware of, and maybe some of you can
 help me overcome them:

 1. In my StyleSheet I have it so that #gifftoolbar does not print. But it
 prints anyway. Any idea what I did wrong?

 2. When the tagging area is open, editing and saving tiddlers doesn't
 happen automatically. I need to manually save. Seems to be something to do
 with the state tiddler being qualified. Again, any ideas on how to overcome
 that?

 Blessings, Dave

  --
 You received this message because you are subscribed to a topic in the
 Google Groups TiddlyWiki group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/tiddlywiki/gh82zXSM3QI/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 tiddlywiki+unsubscr...@googlegroups.com.
 To post to this group, send email to tiddlywiki@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




-- 
David Gifford
Christian Reformed World Missions, Mexico City

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Contact Manager

2014-09-10 Thread RickL
One of the things I like most about TW is the ability to maintain plain 
text formatting, or very close.

I have created a Contact Manager in TW5 that I want to use also as a 
journal for each contact. With this setup I can past all my contacts into 
TW with little or no changes.

Each contact is a tiddler with a link to a journal for that specific 
contact.
My goal is to have a button on each contact journal that will create a new 
Journal Entry with the date and time as the title, tagged with the contact 
name.

I am still new to this so will need some help here.
Next step is to get the date and time as the tiddler title from the button. 
Not having much luck so hope someone can take a look and give some pointers.


http://contactmanager.tiddlyspot.com/

Please let me know if the above link works!


Thanks

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Linking to a tiddler inside an html space.

2014-09-10 Thread Kriss
It worked for Sticky Notes, but I am probably not smart enough to 
understand Eric's answer  :-(

I have added this part to my PageTemplate tiddler  (TWC 2.6.1)
marquee behavior=scroll scrollamount=3 direction=left 
class='screenonly'
 a href=javascript:; class=tiddlyLink tiddlyLinkExisting refresh=link
 tiddlylink=Sponsors onclick=return onclickTiddlerLink(); 
 img src=sponsor.jpg width=72px height=72px //a
/marquee

which correctly scrolls a bitmap from right to left.
When the image is clicked I would like the sponsors tiddler to open. What 
am I missing?



On Monday, January 28, 2013 11:21:20 PM UTC+1, Eric Shulman wrote:


 Firebug isn't showing you the onclick=... handler that is also 
 assigned to the tiddlyLink.  Try adding: 
 onclick=return onclickTiddlerLink(event) 

 onClickTiddlerLink() does the actual work of accessing the tiddler 
 specified by the tiddlylink=... HTML attribute and then renders that 
 tiddler in the story column.  The onclick handler then finishes with 
 return false, which causes the browser to bypass the 
 href=javascript:; (which is a null operation anyway), preventing 
 the unwanted page transition. 


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: NotestormTW experimental template / two questions about it

2014-09-10 Thread David Gifford
Hi all

I made some improvements to the NoteStormTW file. Now there is a contents 
tab, and Instructions is the default, and there is a 'new toc entry 
tiddler' button in pagecontrols. I also fixed a problem with the subtitle 
count formulas.

Dave

On Monday, September 8, 2014 10:32:43 PM UTC-5, David Gifford wrote:

 Hi all

 TiddlyWiki is getting close to full release, and tonight I almost finished 
 my note-taking template called NoteStormTW, the TW5 successor to the old 
 NoteStorm. I have been playing around with a cruder version of this and it 
 has revolutionized my note-taking. Seriously. I think I can finally stop 
 tweaking TiddlyWiki and use this for my purposes until Jeremy finds some 
 reason to break it. Would love your feedback.

 The URL  for now while it is in experimental stage is 
 http://giffmex.org/experiments/notestormtw.html

 It has two glitches in it that I am aware of, and maybe some of you can 
 help me overcome them:

 1. In my StyleSheet I have it so that #gifftoolbar does not print. But it 
 prints anyway. Any idea what I did wrong?

 2. When the tagging area is open, editing and saving tiddlers doesn't 
 happen automatically. I need to manually save. Seems to be something to do 
 with the state tiddler being qualified. Again, any ideas on how to overcome 
 that?

 Blessings, Dave


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: NotestormTW experimental template / two questions about it

2014-09-10 Thread David Gifford
Also, still haven't gotten answers to my original questions regarding the 
two glitches I am encountering.

Dave

On Monday, September 8, 2014 10:32:43 PM UTC-5, David Gifford wrote:

 Hi all

 TiddlyWiki is getting close to full release, and tonight I almost finished 
 my note-taking template called NoteStormTW, the TW5 successor to the old 
 NoteStorm. I have been playing around with a cruder version of this and it 
 has revolutionized my note-taking. Seriously. I think I can finally stop 
 tweaking TiddlyWiki and use this for my purposes until Jeremy finds some 
 reason to break it. Would love your feedback.

 The URL  for now while it is in experimental stage is 
 http://giffmex.org/experiments/notestormtw.html

 It has two glitches in it that I am aware of, and maybe some of you can 
 help me overcome them:

 1. In my StyleSheet I have it so that #gifftoolbar does not print. But it 
 prints anyway. Any idea what I did wrong?

 2. When the tagging area is open, editing and saving tiddlers doesn't 
 happen automatically. I need to manually save. Seems to be something to do 
 with the state tiddler being qualified. Again, any ideas on how to overcome 
 that?

 Blessings, Dave


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: On the fly completions/suggestions

2014-09-10 Thread 'c pa' via TiddlyWiki
Alain,

(From the Tiddlywiki roadmap)

Some important features were deferred to be added after the beta:

   - Keyboard snippet expansion in the text editor

Chime in anyone if there is a plugin out there that does this

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Linking to a tiddler inside an html space.

2014-09-10 Thread Eric Shulman
On Wednesday, September 10, 2014 2:14:37 PM UTC-7, Kriss wrote:

 It worked for Sticky Notes, but I am probably not smart enough to 
 understand Eric's answer  :-(

 I have added this part to my PageTemplate tiddler  (TWC 2.6.1)
 marquee behavior=scroll scrollamount=3 direction=left 
 class='screenonly'
  a href=javascript:; class=tiddlyLink tiddlyLinkExisting 
 refresh=link tiddlylink=Sponsors onclick=return 
 onclickTiddlerLink(); 
  img src=sponsor.jpg width=72px height=72px //a
 /marquee


The capitalization of onClickTiddlerLink is incorrect (you have a lower 
case c), and it also needs the event object, passed as an argument... 
i.e.:

onclick=return onClickTiddlerLink(event);

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios

YOUR DONATIONS ARE VERY IMPORTANT!
HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY TIP JAR...
   http://TiddlyTools.github.com/fundraising.html#MakeADonation

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 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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Implementing tag functionality in other fields

2014-09-10 Thread 'c pa' via TiddlyWiki
I've fixed several defects and posted them to http://cpashow.tiddlyspot.com/

*Is there a method to put in the following fix without directly editing the 
boot.js code?*

To fix them I had to directly edit boot.js to add the following for each 
field I wanted to use:

$tw.modules.define($:/boot/tiddlerfields/[fieldname],tiddlerfield,{
name: [fieldname],
parse: $tw.utils.parseStringArray,
stringify: $tw.utils.stringifyList
});

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Upgrading, TiddlyWiki5

2014-09-10 Thread JL_B
I've tried the suggested only way of upgrading. I have 2 TiddlyWikis that 
are version. 5.0.8. I couldn't upgrade before either so I left them. 

They're presently giving me a problem with throwing up a warning every time 
I try to shut the windows down or click away that I'm leaving the page with 
unsaved data. Which I'm not. I've repeatedly saved and re-uploaded them 
just to make sure. 

I'd like, for the sake of my web visitors, to not have that nag screen 
every time they try to leave the page. I thought upgrading might help but 
the upgrade doesn't work. I get no body or menu at all, just the icons on 
the right side.

Someone please have a look if this interests you.

http://www.jgen.ws/genealogy-add-ons.htm
http://www.jgen.ws/legacy-family-tree.htm

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Upgrading, TiddlyWiki5

2014-09-10 Thread Stephan Hradek


Am Donnerstag, 11. September 2014 06:05:57 UTC+2 schrieb JL_B:

 I've tried the suggested only way of upgrading. I have 2 TiddlyWikis that 
 are version. 5.0.8. I couldn't upgrade before either so I left them. 

 Please explain more. I downloaded one of yours and an empty TW5. I dropped 
your downloaded file on the empty TW5 and it seemed to work. 

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: NEWBIE Questions: How to modify/set up a navigation?

2014-09-10 Thread Elizabeth Blythe
Greetings,

For TW5v3.2, anyone know how to remove the tags information from the 
tiddler? I'm also interested in possibly removing or changing the color of 
the name by 'last edited time'. 

Thanks for the help!

On Sunday, August 24, 2014 1:07:29 AM UTC+10, Elizabeth Blythe wrote:

 Hi Ton,

 I meant my own content, but I have figured that item out. I now have a 
 link showing up in Contents when I click on the Contents tab in the 
 navigation.

 That means I only need to get the ordering done. I've followed your 
 directions in the Ordering (at least, I think I did), but it doesn't seem 
 to be re-ordering the items in the Sidebar menu. I AM getting the 
 Contents tiddler at the top of the list in the 'lists' info section of 
 the $:/tags/Sidebar, but it is showing up in thin italics, which implies to 
 me that it's not pointing to the Contents tiddler that I created. Any 
 idea what I might have done wrong there?

 Warm regards,
 Elizabeth

 On Sunday, August 24, 2014 12:53:05 AM UTC+10, Ton Gerner wrote:

 Hi Elizabeth,

 For reordering have a look at [1].
 See Customization  Advanced customization  Adding parts by tagging. 
 Click the 'Ordering parts' slider.

 What do you mean by the body of the 'Contents' tiddler? Do you mean the 
 TW documentation or your own content?

 Cheers, 

 Ton

 [1] http://tw5custom.tiddlyspot.com/


 On Saturday, August 23, 2014 4:37:32 PM UTC+2, Elizabeth Blythe wrote:

 Awesome - that got me most of the way there. I have the Contents tab 
 added to my sidebar tabs... how can I re-order it so that my contents tab 
 shows first in the sidebar instead of last?

 The other thing I want to do is make the body of the Contents tiddler 
 become a list of links in the sidebar.

 If you can tell me how to do these two things, I've got everything I 
 need!

 Thanks again!
 Warm regards,
 Elizabeth

 On Sunday, August 24, 2014 12:30:11 AM UTC+10, Ton Gerner wrote:

 Hi Elizabeth,

 Have a look at [1].
 See Customization  Advanced customization  Adding parts by tagging 
 where you can find information about the system tags.
 The information is not totally up to date (up to TW5.0.13-beta); I am 
 in the process of upgrading my guides.

 Cheers,

 Ton


 [1] http://tw5custom.tiddlyspot.com/


 On Saturday, August 23, 2014 4:15:49 PM UTC+2, Elizabeth Blythe wrote:

 Okay, after a break, I'm back at it.

 The experience is much better this time - no problems saving or 
 anything.

 Can I get a sentence or two about what each of these tags do?

 $:/tags/ControlPanel 
 http://giffmex.org/TiddlyQuickly.html#ControlPanel
 $:/tags/EditTemplate 
 http://giffmex.org/TiddlyQuickly.html#EditTemplate
 $:/tags/EditToolbar 
 http://giffmex.org/TiddlyQuickly.html#EditToolbar
 $:/tags/MoreSideBar 
 http://giffmex.org/TiddlyQuickly.html#MoreSideBar
 $:/tags/PageControls 
 http://giffmex.org/TiddlyQuickly.html#PageControls
 $:/tags/PageTemplate 
 http://giffmex.org/TiddlyQuickly.html#PageTemplate
 $:/tags/SideBar http://giffmex.org/TiddlyQuickly.html#SideBar
 $:/tags/TiddlerInfo 
 http://giffmex.org/TiddlyQuickly.html#TiddlerInfo
 $:/tags/ViewTemplate 
 http://giffmex.org/TiddlyQuickly.html#ViewTemplate
 $:/tags/ViewToolbar 
 http://giffmex.org/TiddlyQuickly.html#ViewToolbar 


 I ask because they're in the TiddlyQuickly link (awesome, thank you 
 for sharing it with me!) as part of the tutorial under the label 
 Adjusting 
 the appearance and layout of TiddlyWiki (slide 12 of 13). I'm not really 
 sure I understand this section, but I think I'm getting closer.

 Thanks again for the patience and help!

 Warm regards,
 Elizabeth
  
 On Wednesday, August 6, 2014 6:40:28 PM UTC+10, Richard Smith wrote:

 Hi Elizabeth,

 Your project sounds very interesting. I have thought before that TW 
 would be excellent for a choose your own adventure type book - I used 
 to 
 be obsessed with a series of books called Fighting Fantasy when I was 
 a 
 kid.

 If you decide to stick with TW classic, you should probably download 
 the latest version, check it works and then try importing the tiddlers 
 from 
 your old wiki into the new one.

 If you decide to try TW5, I'm sure everyone here would be happy to 
 help. Personally I have decided to commit to using it and trust that it 
 will eventually have all the features that I need for my project (I am 
 writing a textbook)

 I think it would be great for somebody who is completely new to TW5 
 to write a plain English guide to doing the basics without going under 
 the 
 hood. Once you've learned how it all works it's easy to forget what it 
 looks like to people who haven't.

 I hope you get it to work.

 Regards,
 Richard




 On Wednesday, August 6, 2014 5:45:41 PM UTC+10, Elizabeth Blythe 
 wrote:

 Thanks Daniel  Richard,

 I haven't seen the TiddlyQuickly site, so I'll have a read. If I can 
 figure this out before I get too frustrated, I may even write my own 
 tutorial (unless it's reinventing the wheel, since it looks like 
 there's a 
 few people