[tw] is there a way to preload WikiWord non-existent tiddlers?

2009-01-18 Thread M)

It's possible with the <> macro, but what about when using
WikiWords?
--~--~-~--~~~---~--~~
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: if tagged A and B, then auto add tag C

2009-01-18 Thread cmari

OK, try this, which should give you a checkbox that will add the tag
"foobar" to any tiddler already tagged with both "foo" and "bar":
<"+">|[["+tiddler.title+"]]|[["+tiddler.tags.join
("]], [[")+"]]|\n"' begin '"|Add the tag foobar|Tiddler Title|Tiddler
Tags|h\n"' end 'count+" tiddlers\n"'
>>
cmari
--~--~-~--~~~---~--~~
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: Can't edit any pages

2009-01-18 Thread Amzg

Please explain a little more background to your problem.

Are you new to TW? Maybe you're actually trying to edit a TW that is
on a server that you don't have access to? Is there a "View" option
where the Edit option normally is?

/Mat



On Jan 19, 2:17 am, Siddharth Patil  wrote:
> I can't edit any of the pages. The Edit option is missing from the
> menu, and if I double-click on the tiddler, it won't let me edit any
> of the text.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: Footer for all tiddlers?

2009-01-18 Thread Dave Gifford - http://www.giffmex.org/

Thanks Morris that worked great! I passed on the tip to my
correspondent. Blessings

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



[tw] Can't edit any pages

2009-01-18 Thread Siddharth Patil

I can't edit any of the pages. The Edit option is missing from the
menu, and if I double-click on the tiddler, it won't let me edit any
of the text.

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



[tw] Re: if tagged A and B, then auto add tag C

2009-01-18 Thread Amzg

Nope.
Also tried with
'store.setTiddlerTag(tiddler.title,true,"bar")+" "'
and with
'" "+store.setTiddlerTag(tiddler.title,true,"bar")'

Neither putting it in the bigger forEach context suggested by cmari
works (results in 'undefined' in the middle of the rendered table)
i.e;

<>


While at this (a question that perhaps better is asked Mr.Borkowski?);
Is everything in the 'write' executed for each found matching tiddler?
I.e is the setTiddlerTag executed multiple times from this? Maybe it
is more economical to run the setTiddlerTag as a separate forEach?...


/Mat



On Jan 19, 12:57 am, Eric Shulman  wrote:
> > But, it also leaves an "undefined" in the tiddler where the script is.
>
> store.setTiddlerTag() does not return a value, so you get "undefined"
> as output when it occurs in the 'write' clause.  To return a blank
> string instead of undefined, try adding an extra ""; following the
> call to setTiddlerTag(), like this:
>
> <         where
>         'tiddler.tags.containsAll(["foo"])'
>         write
>         'store.setTiddlerTag(tiddler.title,true,"bar");"";'
>
> -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: if tagged A and B, then auto add tag C

2009-01-18 Thread Eric Shulman

> But, it also leaves an "undefined" in the tiddler where the script is.

store.setTiddlerTag() does not return a value, so you get "undefined"
as output when it occurs in the 'write' clause.  To return a blank
string instead of undefined, try adding an extra ""; following the
call to setTiddlerTag(), like this:



[tw] Re: if tagged A and B, then auto add tag C

2009-01-18 Thread Amzg

I tried around a bit and the best result I get does insert a 'bar'
tag !  :-D
But, it also leaves an "undefined" in the tiddler where the script is.
The script reads;

<>

Is this something I 'undefined' something I should care about? It is
not a big deal aesthetically, I'm just worried it is not good for some
other reason.

Almost there :-)

/Mat


On Jan 19, 12:08 am, Eric Shulman  wrote:
> > < >         where
> >         'tiddler.tags.containsAll(["foo"])'
> >         write
> >         'tiddler.tags.XXX("bar")'
> > XXX is 'supposed to' be some magic word resulting in adding 'bar' as a
> > tag to all the relevant tiddlers.
>
> Try this:
>    store.setTiddlerTag(tiddler.title,true,"bar")
>
> The three function parameters are:
>  * title of tiddler
>  * true=set tag, false=clear tag
>  * tag value
>
> 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: if tagged A and B, then auto add tag C

2009-01-18 Thread Eric Shulman

> <         where
>         'tiddler.tags.containsAll(["foo"])'
>         write
>         'tiddler.tags.XXX("bar")'
> XXX is 'supposed to' be some magic word resulting in adding 'bar' as a
> tag to all the relevant tiddlers.

Try this:
   store.setTiddlerTag(tiddler.title,true,"bar")

The three function parameters are:
 * title of tiddler
 * true=set tag, false=clear tag
 * tag value

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: if tagged A and B, then auto add tag C

2009-01-18 Thread Amzg

Maybe I should clarify that a little. Here's what I'm attempting;

<>

XXX is 'supposed to' be some magic word resulting in adding 'bar' as a
tag to all the relevant tiddlers.
(I even tried tiddler.tags.c'monyouknowwhatIwant("bar") ...but no
cigar!)

Thanks

/Mat



On Jan 18, 11:36 pm, Amzg  wrote:
> I really appreciate everyones help! I'm fooling around with all the
> great suggestions and will report how it works out.
>
> - Meanwhile; how do Iinserta tag directly (via forEachPlugin)? What
> is the command? (and without erasing all existingtags but if
> there's an option to overwrite a specific tag, that would be good
> actually)
>
> I've tried;
> tiddler.tags.X("foo")  with X as 'insert', 'add', 'write' but nope...
> or maybe ("foo") is syntactically wrong... or maybe it's not
> possible...?
>
> Thanks
>
> /Mat
>
> On Jan 18, 4:31 am, cmari  wrote:
>
> > Hi Mat!
> > It sounds to me as though you're looking for two separate, though
> > related, things (but possibly more!):
> > 1. (Retroactively) addtagsto existing tiddlers.
> > 2. From now on, automatically add certaintagswhen creating new
> > tiddlers
> > If you'd prefer (manual) checkboxes to the more automatic AutoTagger,
> > I can think of a couple of other options:
>
> > For the first task: the script you found (I recognized it because I
> > was the one who requested it) was one that Eric offered for changing/
> > adding custom fields to existing tiddlers. It was extremely useful for
> > making one-time, global changes, and it certainly could be tweaked so
> > that it would affecttagsinstead of fields.  But you could also use
> > the CheckboxPlugin and a forEachTiddler macro and check the boxes
> > yourself, as in:
> > < > "MyStuff"])'
> > write '"|< > [["+tiddler.title+"]]|[["+tiddler.tags.join("]], [[")+"]]|\n"' begin
> > '"|Add Encrypt(foo)|Title|Tags|h\n"'>>
>
> > For the second part: if you're using mptw, you could take advantage of
> > the ToggleTag and HideWhen plugins and add something to your
> > ViewTemplateToolbar like:
> >   > macro="toggleTag Encrypt(foo)">
> >   > macro="toggleTag Encrypt(bar)">
> > cmari
--~--~-~--~~~---~--~~
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: if tagged A and B, then auto add tag C

2009-01-18 Thread Amzg

I really appreciate everyones help! I'm fooling around with all the
great suggestions and will report how it works out.

- Meanwhile; how do I insert a tag directly (via forEachPlugin)? What
is the command? (and without erasing all existing tags but if
there's an option to overwrite a specific tag, that would be good
actually)

I've tried;
tiddler.tags.X("foo")  with X as 'insert', 'add', 'write' but nope...
or maybe ("foo") is syntactically wrong... or maybe it's not
possible...?

Thanks

/Mat



On Jan 18, 4:31 am, cmari  wrote:
> Hi Mat!
> It sounds to me as though you're looking for two separate, though
> related, things (but possibly more!):
> 1. (Retroactively) add tags to existing tiddlers.
> 2. From now on, automatically add certain tags when creating new
> tiddlers
> If you'd prefer (manual) checkboxes to the more automatic AutoTagger,
> I can think of a couple of other options:
>
> For the first task: the script you found (I recognized it because I
> was the one who requested it) was one that Eric offered for changing/
> adding custom fields to existing tiddlers. It was extremely useful for
> making one-time, global changes, and it certainly could be tweaked so
> that it would affect tags instead of fields.  But you could also use
> the CheckboxPlugin and a forEachTiddler macro and check the boxes
> yourself, as in:
> < "MyStuff"])'
> write '"|< [["+tiddler.title+"]]|[["+tiddler.tags.join("]], [[")+"]]|\n"' begin
> '"|Add Encrypt(foo)|Title|Tags|h\n"'>>
>
> For the second part: if you're using mptw, you could take advantage of
> the ToggleTag and HideWhen plugins and add something to your
> ViewTemplateToolbar like:
>   macro="toggleTag Encrypt(foo)">
>   macro="toggleTag Encrypt(bar)">
> cmari
--~--~-~--~~~---~--~~
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: That UploadPlugin again!!!

2009-01-18 Thread Alexander Tsvetkov

I also have a problem with UploadPlugin but since I'm trying it for
the first time it's probably a newbie thing.

1. I've imported the UploadPlugin and PasswordOption plugin.
2. I've edited store.php with my user/pass and uploaded it my the
server along with the tiddlywiki file.
3. I open upload options and enter the same user / pass.
When I try to use my wiki from internet I see it and I can edit it but
when I click save to web it first says that it is about to upload a
file but then it pops up empty windows with only an OK button and then
it says that it failed to save it.

I'm trying this from FireFox and IE. store.php is in the same folder
as the tiddlywiki file and it executes fine when pointed from
internet. So what could be the problem?

--~--~-~--~~~---~--~~
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: Table of Contents

2009-01-18 Thread overett1

On Jan 18, 2:06 pm, cmari  wrote:
> It works for me as it is (and I just tested it in brand new, version
> 2.4.3, standard and mGTD tiddlywikis).  Possibly some of the confusion

It worked for me in Chrome and Firefox, but IE6 seems to cause
problems.
--~--~-~--~~~---~--~~
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] That UploadPlugin again!!!

2009-01-18 Thread c.skye

Hi All

I thought I had this UploadPlugin stuff sorted out...guess not.

OK, a TW on my laptop, is set to automatically save with backup, and
has chkUploadTiddler and chkUploadTiddlerFromFile checkd as true. In
the upload options, the file names and dirctories seem all correct.

Now, when working from the file locally, every edit correctly updates
to the server and displays a polite message about that. Great!!

When I view this file from the server, an edit gives me the message
thats its about to remotely saveand sits there spinning to
wheels.If I open Upload (backstage -where the data seems right)
its showing "Save to Web" (? and not upload??) and then when I try
that I get the message -

About to upload on http://www.unigaia-brasil.org/PDC21_Plantio/ /
index.html ...
[Exception... "Access to restricted URI denied" code: "1012" nsresult:
"0x805303f4 (NS_ERROR_DOM_BAD_URI)" location: "http://unigaia-
brasil.org/PDC21_Plantio/ Line: 15796"]

Is this a problem with my server, or what have I done wrong ?

Thanks
Skye

PS (UploadPlugin 4.1.4, UploadTiddlerPlugin 1.2.2 and Core 2.4.1 - to
help me out, I have included a temporary user called "Test", password
"test" }
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: TiddlyWiki on a CyBook?

2009-01-18 Thread Mark S.

If this is the Bookeen Cybook, then the specifications indicate that
it does not support javascript. TiddlyWiki needs javascript to
function.

Cybook is based on a linux core, so maybe someone out there has
figured out a hack to let it run FireFox. But that would be a
different discussion, and a different forum.

HTH
Mark

On Jan 18, 10:01 am, YGG-  wrote:
> Would there be a possibility to have a TiddlyWiki on a CyBook? How?
--~--~-~--~~~---~--~~
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] Text Color in SideBarOptions

2009-01-18 Thread c.skye

Hi All

Sorry if this is a rather basic question, but its got me beat!

If I type some simple text into SdeBarOptions...it shows up in
black...not a problem except that I am using a dark background (ala
GlassTW - a great theme by the way!!), so its hard to read. I see that
even in other dark themes the same thing happens, so I guess the color
of text here is controlled by StyleSheetLayout or
StyleSheetColorsand I can´t get the code right to put into
StyleSheet to override this..can someone show me the correct code
to make this text show up, ...white say!!.

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



[tw] Re: Error upgrading version

2009-01-18 Thread mikew

Solved.  New and old need to be in the same folder.. Firefox v3.

On Jan 16, 6:17 pm, mikew  wrote:
> Help !
> In going to the current build, when I click 'Open', I am greeted with
> this:
> [Exception... "Component returned failure code: 0x80520012
> (NS_ERROR_FILE_NOT_FOUND) [nsIXMLHttpRequest.send]" nsresult:
> "0x80520012 (NS_ERROR_FILE_NOT_FOUND)" location: "JS frame ::
> file:///C:/Downloads/empty.html :: httpReq :: line 7220" data: no]
>
> Obviously, it's looking for something in that path.. but that's where
> my knowledge ends... :-(
>
> Any ideas appreciated.
>
> Mike
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



Searching

2009-01-18 Thread Robert H.

In Monkey GTD 3, searching for tiddlers just doesn't work for me. For
example, I'm trying to figure out how to print, and many posts suggest
tweaking a tiddler called "StyleSheetPrint". Yet when I type that in
the search, I get no results. This is even true for tiddler I know
exist (because I've seen them) like MonkeyGTDTheme.

And yes, I have all the options checked in the search filter,
including title.




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



[tw] TiddlyWiki on a CyBook?

2009-01-18 Thread YGG-

Would there be a possibility to have a TiddlyWiki on a CyBook? How?
--~--~-~--~~~---~--~~
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: Table of Contents

2009-01-18 Thread Eric Shulman

> I did some digging recently and got it working in combination with the
> TiddlyTools SectionLinksPlugin.

I've just added a new <> macro to SectionLinksPlugin to
provide functionality similar to the DCTableOfContents plugin... i.e,.
automatic generation of numbered-bullet lists containing links to each
section of the tiddler in which the macro is rendered.  If you install
the latest version of SectionLinksPlugin, you might not need to even
use DCTableOfContentsPlugin... which would also avoid the need to
tweak the code of that 'orphaned' plugin.

Yo can get the update (v1.1.0) here:
   http://www.TiddlyTools.com/#SectionLinksPlugin

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



[tw] Re: Table of Contents

2009-01-18 Thread Frank

I am also using the DcTableOfContentsPlugin with TW 2.4.3 without
problem.
Got version 0.4.1 of the plugin from FND's site (http://
devpad.tiddlyspot.com/).
So basically it should work.

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: Table of Contents

2009-01-18 Thread cmari

It works for me as it is (and I just tested it in brand new, version
2.4.3, standard and mGTD tiddlywikis).  Possibly some of the confusion
stems from the fact that, inside the plugin tiddler itself, some of
what look like elements in the table of contents at the top are
actually bracketed out in the subsequent text (all the things that
start with "Heading") - so they don't work.  But other parts of the
table of contents, like "Revision History", work the way they're
supposed to.  And it will work in another tiddler.

As for the style, you can make the changes in your StyleSheet, for
example:
.dcTOC ul {
color: red;
}
.dcTOC a {
color: teal; margin-left: .5em; line-height: 2em; padding:0;
}
.dcTOC a:hover {
background: #eee;
}
.dcTOCTop {
color: teal;
}
cmari

On Jan 18, 5:23 am, overett1  wrote:
> > > The question then becomes, how can the DCToC plug be repaired to work
> > > with TW2.4.3?

--~--~-~--~~~---~--~~
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: Table of Contents

2009-01-18 Thread overett1

> > The question then becomes, how can the DCToC plug be repaired to work
> > with TW2.4.3?
>
> Since that's not my plugin (I'm just hosting it because the original
> author doesn't seem to be around anymore), I'm very hesitant to dig into
> the code trying to fix it.

I did some digging recently and got it working in combination with the
TiddlyTools SectionLinksPlugin. Mended a couple of other things too,
like the 'show/hide' button which opened a blank window in IE6, and
only showing the table when there's three or more headings in a
tiddler. I'll dig out the code tomorrow and post the changes I made.

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



[tw] Re: How do I display a long tiddler at the top?

2009-01-18 Thread bob

mmhhh! Thank you very much Eric!
Bob

On Sat, 2009-01-17 at 17:11 -0800, Eric Shulman wrote:
> 
> It turns out that updating the script to invoke a delayed
> window.scrollTo() call was easier than writing a variation of the
> displayTiddlers() processing.  Although there is still a bit of
> scrolling that can occur while the tiddlers are being rendered, after
> they are all displayed the script now automatically scrolls to the top
> of the first newly opened tiddler.
> 
> You can get the update (v1.2.1) here:
>http://www.TiddlyTools.com/#OpenTaggedTiddlers
> 
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
> 
> 
> > 


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



[tw] Re: TinyTiddly update?

2009-01-18 Thread FND

> I was looking at http://tinytiddly.tiddlywiki.org/

That URL simply redirects to http://tinytiddly.lewcid.org.
TinyTiddly was updated just this morning.


-- F.

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



[tw] Re: TinyTiddly update?

2009-01-18 Thread ken robertson

On Sun, Jan 18, 2009 at 8:42 PM, FND  wrote:
>
>> Probably a dumb question, but is there anything I can do to encourage
>> an update to TinyTiddly, other than a polite request to a busy man?
>
> TinyTiddly has now been updated:
> http://tinytiddly.lewcid.org

Ah-ha, thank you sir.  I was looking at http://tinytiddly.tiddlywiki.org/

--
Regards
Ken

--~--~-~--~~~---~--~~
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: Review or Clean Up messages

2009-01-18 Thread FND

> You know the messages I'm talking about?

You mean like on Wikipedia (which uses MediaWiki, a different wiki engine)?
What you want is templates then - meaning transclusion:
 http://www.tiddlywiki.org/wiki/Transclusion

HTH.


-- F.

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



[tw] Re: Table of Contents

2009-01-18 Thread FND

> The question then becomes, how can the DCToC plug be repaired to work
> with TW2.4.3?

Since that's not my plugin (I'm just hosting it because the original 
author doesn't seem to be around anymore), I'm very hesitant to dig into 
the code trying to fix it.

I have been thinking about a basic ToC plugin using jQuery (a JavaScript 
library, which will be included in TiddlyWiki 2.5), but I don't know 
whether or when I'll get to that.


-- F.

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



[tw] Re: TinyTiddly update?

2009-01-18 Thread FND

> Probably a dumb question, but is there anything I can do to encourage
> an update to TinyTiddly, other than a polite request to a busy man?

TinyTiddly has now been updated:
 http://tinytiddly.lewcid.org


-- F.

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



[tw] Re: Strange behavior when syncing tiddlers

2009-01-18 Thread Frank

Addon:
I just checked and found out that the non-working links are equally
created in Firefox3 and IE7.

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] TinyTiddly update?

2009-01-18 Thread ken robertson

G'day folks,

Probably a dumb question, but is there anything I can do to encourage
an update to TinyTiddly, other than a polite request to a busy man?

[major: 2, minor: 4, revision: 1, date: new Date("Aug 4, 2008")]

--
Regards
Ken

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