[tw] Playing with custom fields

2010-02-04 Thread Jakob Graulund Jørgensen
I want to search through a specific tiddler's custom fields and if I
match a specific value, have a specific custom field's value output.

My thinking is along the lines of (two easy steps):

1. Creating a tiddler named MyList with the following content:
___

%
!out
$1
!end
%/tiddler ShowNewerList##out with: {{
var out=[];
var target=$1;
var tids= store.getTiddler('title') == $2;
for (var i=0;itids.length;i++) {

   var a=tids[i].fields.somefield1;
   var b=tids[i].fields.somefield2;
   var c=tids[i].fields.somefield3;


   if (a  a.contains(target))
 out.push( tiddler somefield1Link with: [[+tids
[i].title+]]\));

  if (b  b.contains(target))
  out.push( tiddler somefield2Link with: [[+tids
[i].title+]]\));

  if (c  c.contains(target))
  out.push( tiddler somefield3Link with: [[+tids
[i].title+]]\));

 }

out.join(\n);}}
___

somefield1Link contains (and the other somefieldLinks contains
something similar)r:
___

/%
!out
[[$1|$2]]
!end
%/tiddler somefield1Link ##out with:
   {{store.getValue('$1','fieldvalueiwant')}} [[$1]]

___

2. Inputting the following into the tiddler:

___

tiddler MyList out with: OneTiddler AnotherTiddler

 ___

I am hoping for 'fieldvalueiwant' s value in AnotherTiddler if and
only if, AnotherTiddler contains OneTiddler in somefield1,
somefield2 or somefield3.

---

But the whole thing doesn't work and I cant figure quite figure it out

Testing I created a tiddler; TestList containing:
 ___

Target: $1 Tiddler: $2

 ___

And this works like I want it to work (using tiddler TestList out
with: OneTiddler AnotherTiddler the result is Target: OneTiddler
Tiddler:AnotherTiddler, so I am guessing that the line: var tids=
store.getTiddler('title') == $2; is the problem but the only way i
can make it work is by searching through every tiddler
( store.getTiddlers(); ) which returns results I am not interested in.

(the whole thing is an attempt to link certain tiddlers with other
tiddlers displaying different precentals of ownership - cf.
http://tinyurl.com/yctnr49)


-- 
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: TiddlySpot Download

2010-02-04 Thread DrCory
Thanks Mark,
Just clicking on 'save as' didn't work but your suggestion of using
the 'download' string did. (the file opened when accessed locally) I
haven't edited it yet, but I'm confident. (now if I can remember my
password) 8-)

Thanks again.

DrCory
http://drcory.tiddlyspot.com

On Feb 2, 6:41 am, Mark S. throa...@yahoo.com wrote:
 If its not a private tw, perhaps you could share the address?

 Usually just clicking on the link, download, is enough for the
 browser to bring up a dialog asking where you want the file to be
 saved. Is that not happening with you?

 Good luck!
 Mark

 On Feb 2, 5:07 am, DrCory drc...@clearwire.net wrote:

  After suffering a catastrophic loss of my Hard drive data, I'm trying
  to reconstitute a working file of my TiddlySpot site. I know I should
  be able to download it directly and work with it. I'm embarrassed to
  say I haven't been able to download a working copy.

  Could someone please hold my hand so I can get a working copy and
  update my TiddlySpot?!

  DrCory

-- 
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] copytoClipboard

2010-02-04 Thread infernoape
I am trying to write a macro that when called with text in quotes will
display that text as a hyperlink that when clicked copies that text
into the clipboard. It needs to have a title so it will display
information when you hover over it. I want to be able to use the macro
several times with different pieces of text. All my efforts have
failed except for using InlineJavascriptPlugin and changing the
holdtext variable. I know there is a simpler way but I am not very
good at programming in Javascript or plugins for that matter. I know I
have to be careful because of inclusion because the functionality
breaks if the variables are listed anywhere twice. I would really
appreciate some help with this. Here is what I have so far:

script label=this text is what you can click title=clicking this
link will copy this phone number into the clipboard
Copied = holdtext.createTextRange();
Copied.execCommand(Copy);
/script
htmlTEXTAREA id=holdtext style=display:none; rows=1
cols=204803104600/TEXTAREA/html

-- 
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] Link with Custom Title to Section Heading Inside Tiddler

2010-02-04 Thread gigajosh
Hi, I'd start by telling you what version of TW I have, but after a
vigourous search I can't figure that out! so any help on how I
determine the version would be great, but that's not what this
question is about..

I'm trying to link from inside a tiddler to a section further down the
tiddler, BUT note that I'm also trying to add a custom title.

E.G.

My tiddler is called MyNotes.. and there's a heading at the bottom of
this tiddler called !Bottom
Now imagine in the body of my tiddler (between the dashed lines) I
have the following:

---

See the section below called [[MyNotes##Bottom]]

---

This gives me a local link. If I click that link it successfully takes
me to the heading at the bottom of the tiddler called !Bottom -
Success!



HOWEVER, if I then try to add a custom title to this local link, it
breaks, and tries to link me externally.. e.g.



See the section below called [[Title|MyNotes##Bottom]]



This doesn't work! The mouse-ver already tells me it's an external
link, and therefore clicking it obviously fails. It tries to open a
local file called MyNotes##Bottom in my tiddlywiki's path.


Is this supposed to work? Can anyone assist?

-- 
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] William Wardlaw Rogers - True Story - New User working on Community development use case

2010-02-04 Thread TrueStory
Making an introduction.

I'm organising a hack day with Jeremy currently and have been told to
make contact with Paul.

I've been playing with ProjectCecily
and am also very interested in the visualisations of the Tiddlywiki
(the one that looks like a form of fractal/mindmap).

I am having absolute novice issues - e.g Getting a URL so others can
see the TiddlyWiki file once I've edited on my PC.

Going to look through the various resources I can find
but would appreciate some links to guide me to induction guides for
use of each of the products.

Thanks in advance for your patience.

W.

-- 
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] Index on the Right Side

2010-02-04 Thread GeoJono
I have noticed that some TiddlyWikis have an Index link on the right
to have the list of tiddlers displayed or not.  I have also seen some
without that Index link.  Here are examples:

http://www.tiddlywiki.com/ - There's the Index link on the right.
http://tiddlyvault.tiddlyspot.com/ - There's no Index link to close
the list of tiddlers.

What's the difference in these?  How can I get the Index link on
mine (it's not there)?

Thanks,
Jono

-- 
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] Private Tiddlers

2010-02-04 Thread Evan
I looked around, but might have just been looking in the wrong place.

Basically, while I'd like my TiddlyWiki to be public as a whole, I'd
like some Tiddlers to be viewable only by me. Is there anything out
there that can facilitate this?

-- 
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: Index on the Right Side

2010-02-04 Thread PMario
Hi,
have a look at the TiddlyWiki PageTemplate. It is directly inside the
sidebar definition

see: http://www.tiddlywiki.com/#PageTemplate

There are some divs like this

(1)div id='sidebar'
(2)div id='sidebarOptions' refresh='content'
tiddler='SideBarOptions'/div
(3)div id='sidebarTabs' refresh='macro' force='true' macro='slider
chkSideBarTabs SideBarTabs index » display lists of tiddlers'/
div
(4)/div

There are 4 lines. it is the 3rd line that you need. The group will
break the lines. You have to put them together again.
At your TW it should look similar. Take care about (1) and (4). They
belong together!

regards mario
PS: if you have problems. post your code.

On Feb 4, 8:31 pm, GeoJono geoj...@gmail.com wrote:
 I have noticed that some TiddlyWikis have an Index link on the right
 to have the list of tiddlers displayed or not.  I have also seen some
 without that Index link.  Here are examples:

 http://www.tiddlywiki.com/- There's the Index link on the 
 right.http://tiddlyvault.tiddlyspot.com/- There's no Index link to close
 the list of tiddlers.

 What's the difference in these?  How can I get the Index link on
 mine (it's not there)?

 Thanks,
 Jono

-- 
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] TiddlyWiki on Android

2010-02-04 Thread AlanBCohen
I can confirm the following thread from the Android Forums:
http://androidforums.com/android-applications/40809-no-java-javascript-android-browsers.html#post320865
Adroid devices are not currently able to save TiddlyWiki files,
although they seem to display properly.
The following is the error message as linked on the Android forums:
http://www.flickr.com/photos/tinymars/4331044354/

-- 
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: Link with Custom Title to Section Heading Inside Tiddler

2010-02-04 Thread Morris Gray
On Feb 5, 2:41 am, gigajosh gigaj...@gmail.com wrote:

 See the section below called [[Title|MyNotes##Bottom]]

 This doesn't work! The mouse-ver already tells me it's an external
 link, and therefore clicking it obviously fails. It tries to open a
 local file called MyNotes##Bottom in my tiddlywiki's path.

 Is this supposed to work? Can anyone assist?

You need http://www.tiddlytools.com/#SectionLinksPlugin

Morris

On Feb 5, 2:41 am, gigajosh gigaj...@gmail.com wrote:
 Hi, I'd start by telling you what version of TW I have, but after a
 vigourous search I can't figure that out! so any help on how I
 determine the version would be great, but that's not what this
 question is about..

 I'm trying to link from inside a tiddler to a section further down the
 tiddler, BUT note that I'm also trying to add a custom title.

 E.G.

 My tiddler is called MyNotes.. and there's a heading at the bottom of
 this tiddler called !Bottom
 Now imagine in the body of my tiddler (between the dashed lines) I
 have the following:

 ---

 See the section below called [[MyNotes##Bottom]]

 ---

 This gives me a local link. If I click that link it successfully takes
 me to the heading at the bottom of the tiddler called !Bottom -
 Success!

 HOWEVER, if I then try to add a custom title to this local link, it
 breaks, and tries to link me externally.. e.g.

 

 See the section below called [[Title|MyNotes##Bottom]]

 

 This doesn't work! The mouse-ver already tells me it's an external
 link, and therefore clicking it obviously fails. It tries to open a
 local file called MyNotes##Bottom in my tiddlywiki's path.

 Is this supposed to work? Can anyone assist?

-- 
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: Private Tiddlers

2010-02-04 Thread Eric Shulman
 Basically, while I'd like my TiddlyWiki to be public as a whole, I'd
 like some Tiddlers to be viewable only by me. Is there anything out
 there that can facilitate this?

Try this:
http://www.TiddlyTools.com/#TiddlerPasswordPlugin

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 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: Private Tiddlers

2010-02-04 Thread Evan
Thanks. Loving TiddlyWiki so far... just wading through the sea of
plugins.

On Feb 4, 6:30 pm, Eric Shulman elsdes...@gmail.com wrote:
  Basically, while I'd like my TiddlyWiki to be public as a whole, I'd
  like some Tiddlers to be viewable only by me. Is there anything out
  there that can facilitate this?

 Try this:http://www.TiddlyTools.com/#TiddlerPasswordPlugin

 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 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: TiddlyWiki on Android

2010-02-04 Thread Mark S.
Unless its running in a Firefox browser, it probably needs java (not
to be confused with javascript) in order to save. Per the thread, java
doesn't run on Android, so no saving.

I see an announcement from yesterday (Feb 4, 2010) that someone has
Firefox working on Android. Maybe it would be possible to run TW on FF
on Android. But I wouldn't be surprised if it still wasn't able to
save.

Mark

On Feb 4, 3:19 pm, AlanBCohen alanbco...@gmail.com wrote:
 I can confirm the following thread from the Android 
 Forums:http://androidforums.com/android-applications/40809-no-java-javascrip...
 Adroid devices are not currently able to save TiddlyWiki files,
 although they seem to display properly.
 The following is the error message as linked on the Android 
 forums:http://www.flickr.com/photos/tinymars/4331044354/

-- 
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: Comments Plugin

2010-02-04 Thread Linck Atlanta, Ga
It had been a while and was wondering if any one had any thoughts...
thanks.

On Feb 1, 6:58 pm, Linck Atlanta, Ga lschl...@gmail.com wrote:
 yikes! sorry for the miss-communication... lets see If I can bring
 this all together...
 I have many TW files, which have many tiddlers which are particular
 topics, all of these topics have 5 fields which are consistent in all
 tiddlers.

 I capture the comments field like this.:

  htmlTEXTAREA name=Comments rows=3 cols=30 /TEXTAREA/html

 Then, in a separate file, I include each of the other tw files, (I use
 this as a reporting mechanism for all of the TW files), using a For
 Each Tiddler like this:
 forEachTiddler
  where
  'tiddler.tags.contains($1)  tiddler.tags.contains($2)'
 sortBy 'tiddler.data(Field C)' descending
  write
  '|+tiddler.title+|+++^10em^[More Information][hide] [X
 (+tiddler.data(Field A)+)===|+tiddler.data(Field B)+|+++^10em^
 [Comments][hide] [(+tiddler.data(Comments)+)===|+tiddler.data
 (Field D)+|\n'

 So, It works nicely in that it produces a nice neat little table, but
 when one wants to read the comments about this particular thing (and
 the comments could be paragraphs), they can click on the nested button
 of Comments.  The problem, is that the comment field now is just a
 text box, it can be easily overwritten and it does not capture the
 users name or the time or date, so i am trying to find an alternative
 way to capture these comments (like comment plugin), but having it in
 something that can be referenced by the forEachTiddler above.  I hope
 this helps and is clearer.  Thank you so much for taking the time to
 help.

 On Feb 1, 5:39 pm, cmari cema...@gmail.com wrote:



  rats, that's the second time I thought you were talking about tiddler
  fields when you're actually talking about form fields.  Never mind
  ListboxPlugin, then.

  I think it would be pretty hard to do what you're describing as part
  of a form.  But it would be easy enough to have your tiddlers contain
  both a form and a comments section.  Then, if the comments were
  preceded by, e.g.,
  !comments
  you could display all the comments from a given tiddler using
  tiddler [[mytiddler##comments]]

  It would be easier to make suggestions for how to make this work if
  you could post an example.  It sounds as though what you're looking
  for is something very like a blog and that's something I'm pretty sure
  other people have done.
  cmari

  On Feb 1, 3:32 pm, LinckAtlanta, Ga lschl...@gmail.com wrote:

   Ok, I am going on another route... but cant quite get it...

   there is a line:

   fmt: __''%subject%''__\n^^posted by %who% on %when%^^\n\n%message%
   \n\n,

   which make the comment write into the tiddler thusly:

   __comment subject__linck12:55pm Monday, 2010 this is my
   message

   So, I figure maybe I can rewrite it so it spits out:

   data{testfield:comment subject and comment message}/data

   Something like this:

   fmt: data{testfield:+''%subject%''}+ posted by %who% on %when
   %^^\n\n%message%\n\n+/data

   but I am not having much luck

   On Feb 1, 3:48 pm, LinckAtlanta, Ga lschl...@gmail.com wrote:

I don't know if this helps, but the field I am referring to will
always bee the same.  So the comment added should just be come field
X in whichever tiddler  the comment originated.

On Jan 31, 6:43 pm,LinckSchlich lschl...@gmail.com wrote:

 Cmari,

 I appreciate the thought, but I dont think it will accomplish what I 
 want.
  Part of the issue is that I really did not explain well what I was 
 trying
 to accomplish:

 I want users of my TW to be able to make a comment on a tiddler, much 
 like
 DiscussionPlugin allows, however, in another TW which includes the 
 first, I
 want to reference those comments by referencing a field.  I have a 
 large
 amount of TW flies that are referenced.

 I reference them with ForEachTiddler and list time in a table with
 tiddler.title, and several fields, then I have a field that I 
 currently
 define with a simple text box and which is nested so as to allow the 
 list to
 be neat but allow the user to click for more information, which 
 reveals the
 sometimes large text associated with with my comments field.  It 
 works.
  However, I would like there to be a track of comments made and to
 automatically indicate the time and ID of the person that made them.  
 And
 also to prevent users from accidentally overwriting the previous 
 comment.
  Basically the Comment/ or Discussion plugin's defined... save the 
 saving
 them as data fields, rather than as separate tiddlers, or text with 
 in a
 tiddler that is not a defined field.

 Does this explain?  Thank you for your time.

 On Sun, Jan 31, 2010 at 5:29 PM, cmari cema...@gmail.com wrote:
  Do you absolutely have to use the CommentPlugin?  It seems as though
  it would be a lot easier to 

[tw] Re: Comments Plugin

2010-02-04 Thread cmari
I was working on trying to rip out the pieces of my own implementation
of comments and using them to reconstruct an example of one way you
might be able to do things.  I haven't gotten as far as I had hoped,
but you could take a look: http://comments.tiddlyspot.com/
cmari

On Feb 4, 8:12 pm, Linck Atlanta, Ga lschl...@gmail.com wrote:
 It had been a while and was wondering if any one had any thoughts...
 thanks.

 On Feb 1, 6:58 pm, Linck Atlanta, Ga lschl...@gmail.com wrote:

  yikes! sorry for the miss-communication... lets see If I can bring
  this all together...
  I have many TW files, which have many tiddlers which are particular
  topics, all of these topics have 5 fields which are consistent in all
  tiddlers.

  I capture the comments field like this.:

   htmlTEXTAREA name=Comments rows=3 cols=30 /TEXTAREA/html

  Then, in a separate file, I include each of the other tw files, (I use
  this as a reporting mechanism for all of the TW files), using a For
  Each Tiddler like this:
  forEachTiddler
   where
   'tiddler.tags.contains($1)  tiddler.tags.contains($2)'
  sortBy 'tiddler.data(Field C)' descending
   write
   '|+tiddler.title+|+++^10em^[More Information][hide] [X
  (+tiddler.data(Field A)+)===|+tiddler.data(Field B)+|+++^10em^
  [Comments][hide] [(+tiddler.data(Comments)+)===|+tiddler.data
  (Field D)+|\n'

  So, It works nicely in that it produces a nice neat little table, but
  when one wants to read the comments about this particular thing (and
  the comments could be paragraphs), they can click on the nested button
  of Comments.  The problem, is that the comment field now is just a
  text box, it can be easily overwritten and it does not capture the
  users name or the time or date, so i am trying to find an alternative
  way to capture these comments (like comment plugin), but having it in
  something that can be referenced by the forEachTiddler above.  I hope
  this helps and is clearer.  Thank you so much for taking the time to
  help.

  On Feb 1, 5:39 pm, cmari cema...@gmail.com wrote:

   rats, that's the second time I thought you were talking about tiddler
   fields when you're actually talking about form fields.  Never mind
   ListboxPlugin, then.

   I think it would be pretty hard to do what you're describing as part
   of a form.  But it would be easy enough to have your tiddlers contain
   both a form and a comments section.  Then, if the comments were
   preceded by, e.g.,
   !comments
   you could display all the comments from a given tiddler using
   tiddler [[mytiddler##comments]]

   It would be easier to make suggestions for how to make this work if
   you could post an example.  It sounds as though what you're looking
   for is something very like a blog and that's something I'm pretty sure
   other people have done.
   cmari

   On Feb 1, 3:32 pm, LinckAtlanta, Ga lschl...@gmail.com wrote:

Ok, I am going on another route... but cant quite get it...

there is a line:

fmt: __''%subject%''__\n^^posted by %who% on %when%^^\n\n%message%
\n\n,

which make the comment write into the tiddler thusly:

__comment subject__linck12:55pm Monday, 2010 this is my
message

So, I figure maybe I can rewrite it so it spits out:

data{testfield:comment subject and comment message}/data

Something like this:

fmt: data{testfield:+''%subject%''}+ posted by %who% on %when
%^^\n\n%message%\n\n+/data

but I am not having much luck

On Feb 1, 3:48 pm, LinckAtlanta, Ga lschl...@gmail.com wrote:

 I don't know if this helps, but the field I am referring to will
 always bee the same.  So the comment added should just be come field
 X in whichever tiddler  the comment originated.

 On Jan 31, 6:43 pm,LinckSchlich lschl...@gmail.com wrote:

  Cmari,

  I appreciate the thought, but I dont think it will accomplish what 
  I want.
   Part of the issue is that I really did not explain well what I was 
  trying
  to accomplish:

  I want users of my TW to be able to make a comment on a tiddler, 
  much like
  DiscussionPlugin allows, however, in another TW which includes the 
  first, I
  want to reference those comments by referencing a field.  I have a 
  large
  amount of TW flies that are referenced.

  I reference them with ForEachTiddler and list time in a table with
  tiddler.title, and several fields, then I have a field that I 
  currently
  define with a simple text box and which is nested so as to allow 
  the list to
  be neat but allow the user to click for more information, which 
  reveals the
  sometimes large text associated with with my comments field.  It 
  works.
   However, I would like there to be a track of comments made and to
  automatically indicate the time and ID of the person that made 
  them.  And
  also to prevent users from accidentally overwriting the previous 
  comment.
   

Re: [tw] copytoClipboard

2010-02-04 Thread Anthony Muscio
Why are you not just using r-Click copy on the text you want in the
clipboard ?, FireFox has greate addons such as TiddlySNip (Snip to a
tiddlywiki) and all kinds of great tools such as open the text in an editor
of your choice (Its all Text - addon) and much more.

I don't mean to question your approach just cant see what advantage your
effort will bring you.

TonyM

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



On Fri, Feb 5, 2010 at 00:22, infernoape inferno...@hotmail.com wrote:

 I am trying to write a macro that when called with text in quotes will
 display that text as a hyperlink that when clicked copies that text
 into the clipboard. It needs to have a title so it will display
 information when you hover over it. I want to be able to use the macro
 several times with different pieces of text. All my efforts have
 failed except for using InlineJavascriptPlugin and changing the
 holdtext variable. I know there is a simpler way but I am not very
 good at programming in Javascript or plugins for that matter. I know I
 have to be careful because of inclusion because the functionality
 breaks if the variables are listed anywhere twice. I would really
 appreciate some help with this. Here is what I have so far:

 script label=this text is what you can click title=clicking this
 link will copy this phone number into the clipboard
Copied = holdtext.createTextRange();
Copied.execCommand(Copy);
 /script
 htmlTEXTAREA id=holdtext style=display:none; rows=1
 cols=204803104600/TEXTAREA/html

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



-- 
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: [tw] Re: Index on the Right Side

2010-02-04 Thread Anthony Muscio
All the index is, is a slider to hide the sidebar tabs. It is good to do
this when you have lots of tiddlers because it needs to repaint the details
every time you update a tiddler.

All the information is available in both examples you gave you just need to
open it in on the tiddlyWiki.com version.

Just for Clarity

TonyM

TonyM

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



On Fri, Feb 5, 2010 at 09:01, PMario pmari...@gmail.com wrote:

 Hi,
 have a look at the TiddlyWiki PageTemplate. It is directly inside the
 sidebar definition

 see: http://www.tiddlywiki.com/#PageTemplate

 There are some divs like this

 (1)div id='sidebar'
 (2)div id='sidebarOptions' refresh='content'
 tiddler='SideBarOptions'/div
 (3)div id='sidebarTabs' refresh='macro' force='true' macro='slider
 chkSideBarTabs SideBarTabs index » display lists of tiddlers'/
 div
 (4)/div

 There are 4 lines. it is the 3rd line that you need. The group will
 break the lines. You have to put them together again.
 At your TW it should look similar. Take care about (1) and (4). They
 belong together!

 regards mario
 PS: if you have problems. post your code.

 On Feb 4, 8:31 pm, GeoJono geoj...@gmail.com wrote:
  I have noticed that some TiddlyWikis have an Index link on the right
  to have the list of tiddlers displayed or not.  I have also seen some
  without that Index link.  Here are examples:
 
  http://www.tiddlywiki.com/- There's the Index link on the right.
 http://tiddlyvault.tiddlyspot.com/- There's no Index link to close
  the list of tiddlers.
 
  What's the difference in these?  How can I get the Index link on
  mine (it's not there)?
 
  Thanks,
  Jono

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



-- 
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: [tw] Re: Link with Custom Title to Section Heading Inside Tiddler

2010-02-04 Thread Anthony Muscio
Oh and  put
version

In a tiddler and save it and it will tell you. Of course each plugin can
have it's own version.

And Using the sections links plugin I favor using the TOC feature to
automatically generate a Table of contents for each tiddler from it's
sections.

Regards Tony

TonyM

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



On Fri, Feb 5, 2010 at 10:19, Morris Gray msg...@symbex.net.au wrote:

 On Feb 5, 2:41 am, gigajosh gigaj...@gmail.com wrote:

  See the section below called [[Title|MyNotes##Bottom]]
 
  This doesn't work! The mouse-ver already tells me it's an external
  link, and therefore clicking it obviously fails. It tries to open a
  local file called MyNotes##Bottom in my tiddlywiki's path.
 
  Is this supposed to work? Can anyone assist?

 You need http://www.tiddlytools.com/#SectionLinksPlugin

 Morris

 On Feb 5, 2:41 am, gigajosh gigaj...@gmail.com wrote:
  Hi, I'd start by telling you what version of TW I have, but after a
  vigourous search I can't figure that out! so any help on how I
  determine the version would be great, but that's not what this
  question is about..
 
  I'm trying to link from inside a tiddler to a section further down the
  tiddler, BUT note that I'm also trying to add a custom title.
 
  E.G.
 
  My tiddler is called MyNotes.. and there's a heading at the bottom of
  this tiddler called !Bottom
  Now imagine in the body of my tiddler (between the dashed lines) I
  have the following:
 
  ---
 
  See the section below called [[MyNotes##Bottom]]
 
  ---
 
  This gives me a local link. If I click that link it successfully takes
  me to the heading at the bottom of the tiddler called !Bottom -
  Success!
 
  HOWEVER, if I then try to add a custom title to this local link, it
  breaks, and tries to link me externally.. e.g.
 
  
 
  See the section below called [[Title|MyNotes##Bottom]]
 
  
 
  This doesn't work! The mouse-ver already tells me it's an external
  link, and therefore clicking it obviously fails. It tries to open a
  local file called MyNotes##Bottom in my tiddlywiki's path.
 
  Is this supposed to work? Can anyone assist?

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



-- 
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: Unhappy plugin pair

2010-02-04 Thread WEB
Anyone?  -- WEB


On Jan 30, 1:45 am, WEB newopa...@gmail.com wrote:
 I have discovered two plugins that seem not to play together nicely
 when installed, and wonder whether anyone can offer suggestions to
 improve their cooperation.

 To reproduce the problem (using FireFox 3.5.7 on a Snow Leopard Mac),
 I start with a freshly-downloaded empty tiddlywiki, then install
 TiddlerAliasPlugin followed by PartTiddlerPlugin.  Save and reload.

 At this point, I observe two symptoms:
   1) the backstage button is no longer visible, and
   2) the GettingStarted tiddler is not displayed.

 Advice would be appreciated.  Thank you.

 -- WEB

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