[tw] OmniRedirect - will either of these ideas speed up load time?

2009-06-05 Thread M)

The OmniRedirect (the "self-weaving" concept using
ForEachTiddlerPlugin and the RedirectMacro) by Elise Springer is a
fantastic concept though I don't use it because the load time is too
much for me.

Maybe the <> becomes tied into the view template (if
that's the right one) so that it becomes coded naturally and deleted
naturally as tiddlers are created or deleted.

If the previous is not possible, then Eric Shulman's CookieSaverPlugin
that might inspire.

This is way beyond me so the best I can do is present my thoughts and
see if something comes out of it.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: how do you transclude a custom field?

2009-06-05 Thread cmari

One (somewhat inelegant) method for viewing and editiing the fields of
Tiddler1 from inside Tiddler2 (i.e., in transclusion):
1. Get the FieldsEditorPlugin (http://visualtw.ouvaton.org/
VisualTW.html)
2. In the text of Tiddler1 (which contains the field[s] that you will
want to view in transclusion), add the macro:
<>
3. Once you've done that, if you put the macro <> inside Tiddler2, you'll be able to click the "fields" button to
display and change the fields in Tiddler1.

There are at least three different ways to show the contents of custom
fields if you're using fET (though this is obviously not transclusion
anymore):
1
write '"<\>"'
2
write 'store.getValue(tiddler,"myfieldname")'
3
write '(tiddler.fields["myfieldname"])'

cmari

On Jun 5, 6:28 pm, Dave Parker  wrote:
> Can I assume that you can write a <> macro by FET?  (I'll
> try it anyway, but that's the first question that comes to mind)
>
> Thanks very much!
> Dave
>
> p.s.  just curious - is this ability likely to be written into the
> core like the slice and section transclusions?  It seems like it
> should be, but what do I know?
>
> On Jun 5, 5:15 pm, Eric Shulman  wrote:
>
> > > I tried <> but that didn't work...
>
> >    http://www.TiddlyTools.com/#WikifyPlugin
> > allows you to easily produce formatted output from values stored in
> > tiddler fields, tiddler slices, internal variables, literal constants,
> > and/or computed macro parameters
>
> > For your given use-case, you could write:
> >    <>
>
> > The first macro param defines the desired output format, and can
> > contain any text you want, along with embedded "substitution markers":
> > %0, %1, %2, , %9.  The remaining macro params specify the
> > corresponding values to be inserted in place of the markers.  In this
> > particular case, the format is just "%0", meaning that the first
> > parameter value (fieldn...@tiddlername) will simply be output by
> > itself without any other static text.
>
> > Note: the implementation of the "fieldn...@tiddlername" syntax is
> > provided directly by WikifyPlugin, and therefore cannot be used in any
> > of the standard TW core macros where simple fieldnames are expected
> > (e.g., <>, <>, etc.).  However, you
> > *can* use this enhanced syntax within the <> macro that is
> > defined by TiddlyTools' ListboxPlugin, so that it can also set/use
> > values stored as custom fields in other tiddlers.
>
> > enjoy,
> > -e
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Congratulations with TWT-notes Treeview

2009-06-05 Thread Måns

Morris Gray

You have made the most beautiful TiddlyWiki of them all.
The ability to change themes (all your own creations) has made it even
easier for a beginner to get involved with the 'thing' called
TiddlyWiki- I just wanted to congratulate you with your stunning work
which indeed shows that it is possible to set a css-standard for TWs
that is true eycandy combined with the very best (and cutting edge)
navigational systems available..

If you and Wolfgang (Menuflex) made a hybrid 'TwT-flex' - With
changable treeview-mainmenus (+ optional starttidlders) then I believe
we would have a system that could make anyone loose their breath for a
while :-)

It's great to see so much welldocumented work take place from the
pages of this thread - and the results speak for themselves - they are
also very welldocumented.

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



[tw] Re: how do you transclude a custom field?

2009-06-05 Thread Dave Parker

Can I assume that you can write a <> macro by FET?  (I'll
try it anyway, but that's the first question that comes to mind)

Thanks very much!
Dave


p.s.  just curious - is this ability likely to be written into the
core like the slice and section transclusions?  It seems like it
should be, but what do I know?

On Jun 5, 5:15 pm, Eric Shulman  wrote:
> > I tried <> but that didn't work...
>
>    http://www.TiddlyTools.com/#WikifyPlugin
> allows you to easily produce formatted output from values stored in
> tiddler fields, tiddler slices, internal variables, literal constants,
> and/or computed macro parameters
>
> For your given use-case, you could write:
>    <>
>
> The first macro param defines the desired output format, and can
> contain any text you want, along with embedded "substitution markers":
> %0, %1, %2, , %9.  The remaining macro params specify the
> corresponding values to be inserted in place of the markers.  In this
> particular case, the format is just "%0", meaning that the first
> parameter value (fieldn...@tiddlername) will simply be output by
> itself without any other static text.
>
> Note: the implementation of the "fieldn...@tiddlername" syntax is
> provided directly by WikifyPlugin, and therefore cannot be used in any
> of the standard TW core macros where simple fieldnames are expected
> (e.g., <>, <>, etc.).  However, you
> *can* use this enhanced syntax within the <> macro that is
> defined by TiddlyTools' ListboxPlugin, so that it can also set/use
> values stored as custom fields in other tiddlers.
>
> enjoy,
> -e
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: how do you transclude a custom field?

2009-06-05 Thread Eric Shulman

> I tried <> but that didn't work...

   http://www.TiddlyTools.com/#WikifyPlugin
allows you to easily produce formatted output from values stored in
tiddler fields, tiddler slices, internal variables, literal constants,
and/or computed macro parameters

For your given use-case, you could write:
   <>

The first macro param defines the desired output format, and can
contain any text you want, along with embedded "substitution markers":
%0, %1, %2, , %9.  The remaining macro params specify the
corresponding values to be inserted in place of the markers.  In this
particular case, the format is just "%0", meaning that the first
parameter value (fieldn...@tiddlername) will simply be output by
itself without any other static text.

Note: the implementation of the "fieldn...@tiddlername" syntax is
provided directly by WikifyPlugin, and therefore cannot be used in any
of the standard TW core macros where simple fieldnames are expected
(e.g., <>, <>, etc.).  However, you
*can* use this enhanced syntax within the <> macro that is
defined by TiddlyTools' ListboxPlugin, so that it can also set/use
values stored as custom fields in other tiddlers.

enjoy,
-e

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



[tw] how do you transclude a custom field?

2009-06-05 Thread Dave Parker

I see on tiddlywiki.org how to transclude slices and sections, but not
fields.

I tried <> but that didn't work...

I'm sure this ability must exist, but I just can't find it.


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



[tw] Re: Foldable / extendable MainMenu possible?

2009-06-05 Thread Eric Weir


On Jun 5, 2009, at 12:31 PM, Morris Gray wrote:

> I highly recommend NestedSlidersPlugin for its versatility.  There is
> also a brand new plugin from http://treeview.tiddlyspot.com/ that has
> an Explorer look to it.
>
> You can see a full implementation of it here 
> http://twt-treeview.tiddlyspot.com/
> it has a few switchable themes as a demo.

I feel guilty asking, this Morris, since I'm capable of contributing  
next-to-nothing to enhancements of TiddlyWiki, but I wonder if you  
could create a color theme for TWT/TWT-Treeview modeled on that of  
Blackicity? < http://tiddlythemes.com/empties/Blackicity.html >

Thanks -- either way, i.e., even for just entertaining the idea.

Sincerely,
--
Eric Weir
Decatur, GA  USA
eew...@bellsouth.net





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



[tw] TiddlyWiki examples Tiddler - correction needed

2009-06-05 Thread christianhauck

just recommended Tiddlywiki to a former colleague for building his own
website. On that occasion I noticed that on the examples tiddler
http://tiddlywiki.com/#Examples the link to the body-building club in
paris http://www.superphysique.net/ is still valid, but the site has
been taken over, and is no longer a Tiddlywiki.
--~--~-~--~~~---~--~~
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: Foldable / extendable MainMenu possible?

2009-06-05 Thread Morris Gray

I highly recommend NestedSlidersPlugin for its versatility.  There is
also a brand new plugin from http://treeview.tiddlyspot.com/ that has
an Explorer look to it.

You can see a full implementation of it here http://twt-treeview.tiddlyspot.com/
it has a few switchable themes as a demo.

Morris Gray
http://twhelp.tiddlyspot.com
A TiddlyWiki help file for beginners

On Jun 5, 5:32 pm, Frank  wrote:
> Hello,
>
> I have a lot of Tiddlers which I want to show in the MainMenu.
>
> To avaoid a long and confusing MainMenu I would like to shorten this
> MainMenu by using a kind of foldable /extendable structure, similar to
> Windows Explorer, where you can unfold clicking + and fold clicking -
>
> Is there any solution / plugin out there, which extends TiddlyWiki
> with a foldable MainMenu?
>
> Many thanks for any hint!
>
> Regards.
>
> Frank
--~--~-~--~~~---~--~~
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: Way to tweak menumore?

2009-06-05 Thread wolfgang

> Now, as it is possible to make a menu switch without opening a tiddler
> in the display area of MenuMore - together with dynamically widening
> main menus - the problem arises that the display area does not
> refresh. Therefore leaving gaps with varied width main menus
> switched.
>
> I tried it with pasting different code snippets, for example:
> story.refreshDisplay(); return false;}">$1 - but it didn't
> work to cause a refresh. What would be the right way?
>


story.refreshTiddler(getAttribute('tiddler'),null,true); return
false;;}">$1

- did the trick. It only doesn't always work with Shadowed tiddlers
though. Which isn't really an issue at all.


On 1 Jun., 09:37, Måns  wrote:

> Great Wolfgang - I think your MenuFlex should be announced - with it's
> own thread - so I took the liberty!
> Hope it's 
> ok.http://groups.google.com/group/TiddlyWiki/browse_thread/thread/6da158...

> > However, it still needs some more polishing.
>

Except for some of the individual menus - especially the automatic
creation of nestled popups with tags - the theme itself with the
function for switching between individual main menus is pretty
polished now.

 :-)

http://menuflex.tiddlyspot.com/
--~--~-~--~~~---~--~~
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: Converting Inline Script?

2009-06-05 Thread wolfgang

> I can't say for certain, but one thing about this script is that it
> doesn't use 'place' or generate any output that needs to be rendered.
>
> -e

I see,  thanks for the answer. Been lucky to ask for an standalone
solution for exactly the one script, where it was so easily
possible.. :-)

It works pretty well by adding it to the main menu. However, trying to
make it similiar to QuickEditToolbar with ShowPopup and
StickyPopupPlugin doesn't work. What could be the reason?

regards..

http://www.tiddlytools.com/#ShowPopup
http://www.tiddlytools.com/#StickyPopupPlugin
http://www.tiddlytools.com/#QuickEditPlugin

--~--~-~--~~~---~--~~
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: Use forEachTiddler to calculate a total from a data field

2009-06-05 Thread AndrewMc

Hi All

I have found a solution to my problem of calculating the sum of the
value in a data field that is present in many tiddlers. I was not able
to figure out a way to use fET, but instead used an inline script. The
script needs the plugin http://www.tiddlytools.com/#InlineJavascriptPlugin
and the plugin http://tiddlywiki.abego-software.de/#DataTiddlerPlugin.
I made the script by modifying code that I found posted by Måns for
creating a table from data in many tiddlers. If anyone has any
improvements to make, I would be pleased to hear any suggestions.

Here is an example script.

   var out=[];
   var sum=0;
   var tids=store.getTaggedTiddlers('timesheet');
  for (var i=0; i Hi All
>
> I have set up a form for entering timesheet information of the time
> spent working on a study project. Each timesheet record is a separate
> tiddler. I have used forEachTiddler (fET) to produce a table that
> lists all of the records. What I would like to do next is to use fET
> to calculate the total of the hours. That is, I want to sum or add up
> the values from each tiddler into a single total value that I can
> display. Does anyone have any advice on how can I do this?
>
> I can get a plain list of the hours using the following fET:
> <  where
>  'tiddler.title.startsWith("Time_test_")'
>  sortBy
>  'tiddler.created'
>  descending
>  write
>   'tiddler.data("hours")+"\n"'
>   begin '"Plain list of hours\n"'
>   none '"No timesheets found\n"'
>
>
>
> Ideally, I would like to have the information appear at the top of my
> summary tiddler and look something like:
> "45 hours completed, 55 hours remaining"
>
> Cheers
> Andrew Mc
--~--~-~--~~~---~--~~
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: Foldable / extendable MainMenu possible?

2009-06-05 Thread Eric Shulman

> To avoid a long and confusing MainMenu I would like to shorten this
> MainMenu by using a kind of foldable /extendable structure, similar to
> Windows Explorer, where you can unfold clicking + and fold clicking -

You can construct multi-level 'tree-like' expandable/collapsible menu
content using:
   http://www.TiddlyTools.com/#NestedSlidersPlugin

Example

+++[menu1]
   +++[submenu1.1]
  linkA
  linkB
  linkC
   ===
   +++[submenu1.2]
  linkX
  linkY
  linkZ
   ===
===
+++[menu2]
   +++[submenu2.1]
  linkD
  linkE
  linkF
   ===
   +++[submenu2.2]
  linkT
  linkU
  linkV
   ===
===

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios


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



[tw] Foldable / extendable MainMenu possible?

2009-06-05 Thread Frank

Hello,

I have a lot of Tiddlers which I want to show in the MainMenu.

To avaoid a long and confusing MainMenu I would like to shorten this
MainMenu by using a kind of foldable /extendable structure, similar to
Windows Explorer, where you can unfold clicking + and fold clicking -

Is there any solution / plugin out there, which extends TiddlyWiki
with a foldable MainMenu?

Many thanks for any hint!

Regards.

Frank

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