[tw] Re: Import a jQuery Plugin to my TW?

2009-08-21 Thread Markk S.

Thanks, Eric. That seems to have done the trick. Probably don't even
need the "#contentWrapper" with the code you set up. Hmm, haven't
tried it in CSS, so maybe that's when a different selector might be
needed.

The last little bit was the shim -- a transparent gif. Apparently the
GIF that Rakugo linked to is corrupt. In any event, it didn't work for
me. So I created my own 1x1 pixel transparent graphic called "x.gif",
and put it in the same directory.

Presto! Basic transparency works, and its no longer ugly!

-- Mark

On Aug 21, 11:09 am, Eric Shulman  wrote:
> > That technique only works when the tiddler is part of the permaview.
> > That is, if I click on my sample tiddler, the images come up with the
> > opaque background. But, if I make a permaview, and refresh the screen,
> > then the sample tiddler displays correctly. The technique I mentioned
> > previously, where the script is at the bottom of the tiddler, works
> > whenever a tiddler is opened.
>
> You're right.  Instead of changing the PageTemplate, add this to the
> bottom of the ViewTemplate:
>
> 
>
> The first line gets the DOM element ID for the tiddler being rendered,
> so that the enhanced supersleight PNG features are only applied to the
> current tiddler element.  (Note: 'place' is an 'environment variable'
> defined by InlineJavascriptPlugin, and refers to the location where
> the script's output, if any, will be 'wikified' and rendered.  See
> InlineJavascriptPluginInfo for details)
>
> > But one more issue. Is there an id# or mechanism to avoid using
> > 'body' ? Just the supersleight (ss) documentation recommends against
> > using 'body'.
>
> TW encloses the layout inside a DIV named #contentWrapper, which
> includes everything defined by the PageTemplate HTML, but *not* the
> 'backstage' area, thus, you could write:
>
>  jQuery('#contentWrapper').supersleight(); 
>
> 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: Size of tiddlywiki folder.

2009-08-21 Thread Ken Girard

There are plugins intended to keep the number of backup copies down.
My personal favorite is AlternateBackupPlugin. I keep an online copy
of it at
http://no-sin.com/wiki/WorkTracker.html
Basically it lets you tell it how many backup copies to keep, and then
when it hits the top number it starts copying over the earlier copies
(1 through 10, and then starts over at 1 again).

Also Simon has a plugin over at http://mptw.tiddlyspot.com that is
more time based.

Ken Girard

On Aug 21, 2:27 am, Monty  wrote:
> Eric,
>
> That solves my problem.
>
> Thank You!
> Monty
>
> On Aug 21, 8:11 am, Eric Shulman  wrote:
>
>
>
> > > Have recently discovered tiddlywiki and have started using it for
> > > notes, as a journal and for a todo list.  Question is though how large
> > > can this folder get.  I have about 8 tiddlers and one journal entry
> > > and the folder is about twenty megs.  Is this normal? Will the folder
> > > keep growing at this rate?
>
> > Each time you save your TiddlyWiki document, the current file is first
> > renamed by adding a 'timestamp' to the filename; then a new file
> > containing the revised tiddler content is created using the original
> > filename.  For example, if your document is named "foobar.html", then
> > the backup files will be named something like "foobar.
> > 20090819.2306250123.html", with the updated tiddlers written into a
> > new copy of "foobar.html"
>
> > Of course, as you have noted, this approach leads to an accumulation
> > of old revisions of your document.  Fortunately, while it is good to
> > keep a few backups around, just in case you make a mistake when
> > editing your document, these backup files are *not* required, so you
> > can delete them any time you need to make more room.
>
> > enjoy,
> > -e
> > Eric Shulman
> > TiddlyTools / ELS Design Studios- Hide quoted text -
>
> - Show quoted 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: Help/Question: compositing multiple tiddlers

2009-08-21 Thread Ken Girard

Depending on the data you are looking to show you could also look at
using ForEachTiddlerPlugin and custom fields.
To see what I mean take a look at
http://no-sin.com/wiki/WorkTracker.html#Assigned to see how I have
ForEach displaying data, and then click on anythink in the 'Request'
column to see the tiddler where that row's data is coming from.

Ken Girard

On Aug 21, 2:21 pm, wolfgang  wrote:
> > How much is "only a few ..." here?  Is the time it takes to pull in
> > data from all constituent tiddlers the issue here?
>
> I only meant the time for typing too many tiddler transclusion macros..
--~--~-~--~~~---~--~~
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: Help/Question: compositing multiple tiddlers

2009-08-21 Thread wolfgang

> How much is "only a few ..." here?  Is the time it takes to pull in
> data from all constituent tiddlers the issue here?
>

I only meant the time for typing too many tiddler transclusion macros..
--~--~-~--~~~---~--~~
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: New tiddler added to menu

2009-08-21 Thread DollyP

Eric, you are the man!!  These further changes achieve exactly what I
wanted.

Respect!
David
--~--~-~--~~~---~--~~
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: Import a jQuery Plugin to my TW?

2009-08-21 Thread Eric Shulman

> That technique only works when the tiddler is part of the permaview.
> That is, if I click on my sample tiddler, the images come up with the
> opaque background. But, if I make a permaview, and refresh the screen,
> then the sample tiddler displays correctly. The technique I mentioned
> previously, where the script is at the bottom of the tiddler, works
> whenever a tiddler is opened.

You're right.  Instead of changing the PageTemplate, add this to the
bottom of the ViewTemplate:



The first line gets the DOM element ID for the tiddler being rendered,
so that the enhanced supersleight PNG features are only applied to the
current tiddler element.  (Note: 'place' is an 'environment variable'
defined by InlineJavascriptPlugin, and refers to the location where
the script's output, if any, will be 'wikified' and rendered.  See
InlineJavascriptPluginInfo for details)

> But one more issue. Is there an id# or mechanism to avoid using
> 'body' ? Just the supersleight (ss) documentation recommends against
> using 'body'.

TW encloses the layout inside a DIV named #contentWrapper, which
includes everything defined by the PageTemplate HTML, but *not* the
'backstage' area, thus, you could write:

 jQuery('#contentWrapper').supersleight(); 

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: Help/Question: compositing multiple tiddlers

2009-08-21 Thread Shankar

Wolfgang,

Thanks - works like a charm!

But ...
>
> The easiest way with only a few tiddlers is to transclude them, to
> embed their actual content like this:
>
> <><><>
>

How much is "only a few ..." here?  Is the time it takes to pull in
data from all constituent tiddlers the issue here?

Thanks!

Cheers; 'best,

shankar
--~--~-~--~~~---~--~~
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: Import a jQuery Plugin to my TW?

2009-08-21 Thread Mark S.

Hi Eric,

That technique only works when the tiddler is part of the permaview.
That is, if I click on my sample tiddler, the images come up with the
opaque background. But, if I make a permaview, and refresh the screen,
then the sample tiddler displays correctly. The technique I mentioned
previously, where the script is at the bottom of the tiddler, works
whenever a tiddler is opened.

Whether it works or not, the result is still a bit ugly, showing the
graphic but with a slight border and the little "no image" mark
(despite there being an image). Maybe that's what the shim is
about ... I'll have to read more.

But one more issue. Is there an id# or mechanism to avoid using
'body' ? Just the supersleight (ss) documentation recommends against
using 'body'. My first experiment with ss I used 'body', and ... maybe
just by coincidence ... ended up with a corrupt TW file.

Thanks!
Mark

On Aug 21, 7:55 am, Eric Shulman  wrote:
> > The easiest way to do this would be to add the jquery plugin to your
> > MarkupPrehead tiddler.
>
> > eg.
> > 
>
> or, copy the source code from supersleight.js and paste it into a
> tiddler tagged with systemConfig (i.e., make it a plugin)
>
> > Then you'd need to make sure everytime your page is refreshed the
> > function is called
> > try something like this:
> > var oldrestart = restart;
> > restart = function(){
> >   jQuery('body').supersleight();
> >   oldrestart();};
>
> There is another way that you can invoke this function whenever the
> page is refreshed...
>
> Rather than hijacking the core's restart() function, you could create
> a tiddler called, for example, [[SiteStartup]], that would contain a
> tiny inline script [1] that calls the supersleight() initialization,
> like this:
>     jQuery('body').supersleight(); 
> Then, transclude this tiddler at the end of the PageTemplate, like
> this:
>    
> Each time the PageTemplate is rendered (i.e., when the whole TW page
> is drawn), the inline script in SiteStartup will be processed, and the
> supersleight() init function will be invoked.
>
> Alternatively, if you don't want to have a separate tiddler to hold
> the inline script, you could use a 'hidden section' in the
> PageTemplate itself, so that everything is in one place, like this:
>
> 
>
> Note: there is an important (and useful) difference between using this
> inline script technique and using a standard 'systemConfig' tiddler
> (i.e., a plugin) to invoke custom code during startup: plugins get
> loaded in *before* the initial page content has been rendered, while
> the 'SiteStartup' scripts, being triggered at the end of the
> PageTemplate, are processed *after* the initial rendering has been
> completed.  Thus, startup *scripts* can be used to manipulate the
> rendered DOM elements, while plugins cannot.
>
> 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: Formatting the SlideShowPlugin

2009-08-21 Thread skye riquelme

Hi All

Thanks Mans.if the TW only had the slide show stuff that would be
a simple solution.I could even set the width of the whole TWor
I guess you are meaning that the iframe accesses ..url/
TW.html#slideshowtiddler - that would work and maybe my out 

What I have found since  my request is that setting the width of the
display area sets the slideshow width as well. So, with forcing the
slideshow toolbar to the left I now have the slideshow funcioning at
the left 800px of the laptop displaywhich is perfect for the
datashow. The only strange thing is that a background image in a slide
show theme gets repeated across the whole screennot a problem when
connected to a datashow (the screen is only 800px anyway)
...but a bit distacting while still in laptop mode.

..I also thought of putting the slideshow into a popup or nested
window...but couldn't get that to work for now

...so for now I have a wrok around.and would welcome other
ideas...

Thanks

Skye
On 20 Ago, 16:57, Måns  wrote:
> Hi Skye
>
> I resolved a similar problem simply by iframing the tw-slideshow into
> another tw...
> You can set your with within the iframe and a slideshow runs
> "fullscreen" inside the iframe...
>
> Simple but effective.
>
> Regards Måns Mårtensson
>
> On 20 Aug., 17:07, skye riquelme  wrote:
>
> > Hi All
>
> > I am wanting to use TW as a presentation system.and then I can
> > disinstall PowerPoint --- yeah!!
>
> > This has the advantage that I can use the TW to do the research, keep
> > track of my notes...(I use TiddlySnip heavily in this regard) and then
> > just select the items of most interest and stick them into the
> > slideshow tiddler. After the presentation I can give participants a
> > single file...which is a copy of the presentation and all the backup
> > references...all in one great efficient package - only TiddlyWiki
> > could do all that !!!
>
> > Anyway...the issue is that I love working with my laptop at its
> > maximum resolution (1366*768).but most datshow projectors only get
> > to 800*600so my nice presentations get all stuffed up when I
> > connect to a datashow. Rather than have to change the whole TW
> > StyleSheet to suit the datashow resolution...a real painmy
> > idea is to force Paulo Soures's SlideShowPlugin.so that the theme
> > is set to 800px. That way even if the TW looks a bit stange when I
> > first open it...the presentation is already made for 800px.
>
> > But can't seem to get it to work!!!
>
> > The SlideShowStyleSheet now starts with the code -
>
> > .header, #mainMenu, #sidebar, #backstageButton,
> > #backstageArea, .toolbar, .title, .subtitle, .tagging, .tagged, .tagClear, 
> > .comment
> > {
> >  display:none !important
>
> > }
>
> > #slideBlanker{
> >  position: center;
> >  top: 43px;
> >  width: 800px;
> >  height: 100%;
> >  z-index: 90;
> >  background-color: #000;
> >  opacity: 0.8;
> >  filter: alpha(opacity=80)
>
> > }
>
> > but the <> still occupies the whole width of my screen.
>
> > I tried putting this above code into the Conference theme template
> > that Paulo offers
>
> > again the width does not change. I can change the background image etc
> > in the template and it worksthe one thing I can't get it to do is
> > change the width of the presentation.
>
> > Any Ideas?
>
> > 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: Import a jQuery Plugin to my TW?

2009-08-21 Thread rakugo

The easiest way to do this would be to add the jquery plugin to your
MarkupPrehead tiddler.

eg.


Then you'd need to make sure everytime your page is refreshed the
function is called
try something like this:
var oldrestart = restart;
restart = function(){
  jQuery('body').supersleight();
  oldrestart();
};
Might work.
If I remember correctly the way supersleight works is you put a
transparent gif in the same folder as the page.
like this one: http://www.jonrobson.me.uk/x.gif

Note if you targetting users in in IE6 environment, my recommendation
would be to try to resort to using gifs where-ever possible, possibly
using conditional if css statements. Javascript is not really the
right way to do these sort of things in my opinion, but the code above
should do the trick for you.

Jon

On Aug 21, 12:59 pm, MikeS  wrote:
> Per this:
>
> http://homepage.ntlworld.com/bobosola/
>
> and this:
>
> http://24ways.org/2007/supersleight-transparent-png-in-ie6
>
> it is a problem.  I just found out myself when I put my first PNG
> image in my TW.
>
> So are you saying you were to install the plugin?
>
> On Aug 20, 4:09 pm, "Mark S."  wrote:
>
> > Can you give an example of what you want to do?
>
> > I went through all the motions, and thought it was great because a
> > transparent PNG displayed fine (showing the background color I had
> > set). But it still displayed fine, after I turned off the plugin. So,
> > now I'm puzzled. I'm using IE 6.0.2900.2180...
>
> > Are you sure transparent PNG's don't display in IE 6 ?
>
> > -- Mark
>
> > On Aug 20, 8:54 am, MikeS  wrote:
>
> > > I read about this jQuery plugin here:
>
> > >http://allinthehead.com/retro/338/supersleight-jquery-plugin
>
> > > I've heard that TW uses the jQuery engine (or something).
>
> > > Anyone know how I would import this?
>
> > > I need it so transparent PNGs display correctly in IE6.  While I use
> > > Firefox, most of the audience that will see my TW uses IE6 (corporate
> > > environment).
--~--~-~--~~~---~--~~
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] Is TiddlyWiki Timeless?

2009-08-21 Thread skye riquelme

Hi All

I know there are few plugins that display simple clocks etc...but can
TW work with time?

For example, is it possible to have a tiddler that activates another
tiddler (that has a LoadTiddlersPlugin command for example - thus
refreshing the information from the external TW !) every 10
minutesa sort of internal CRON !!!

I recall that the old RippleRap application used CRON to periodically
send items to people connected with their TWsis that a simpler
option If so how to do it???

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: Import a jQuery Plugin to my TW?

2009-08-21 Thread Mark S.

BTW, it appears to me that IE6 will handle *straight*, gif-like
transparent PNG's OK. Its only if you want the newer, levels-of-
transparency in PNG that you have the problems.

-- Mark

On Aug 21, 7:52 am, "Mark S."  wrote:
> Hi Mike,
>
> What I've done so far works, but is probably too ugly to use in real
> life. I put:
>
> 
>
> in MarkupPreHead.
>
> I have Eric Shulman's InlineScriptPlugin installed. In the tiddler
> where I want the graphic to display, I put:
>
> 
> 
> 
> [img[transparent.png]]
> //
> jQuery('#tiddlerTestTransparency').supersleight({shim: '/img/
> transparent.gif'});
> ;
> 
>
> The jQuery script has to be at the *bottom* of the tiddler, because
> its re-applying supersleight to the current tiddler. There is probably
> a more intelligent way to hook the script, so that it deploys whenever
> a tiddler is displayed.
>
> Anyways, it works but ... it puts a ugly little mark on the image --
> just like it would for an image it couldn't find. There's also a
> slight framing box, but maybe some CSS would get rid of that. Try and
> you'll see.
>
> -- Mark
>
> On Aug 21, 3:59 am, MikeS  wrote:
>
> > Per this:
>
> >http://homepage.ntlworld.com/bobosola/
>
> > and this:
>
> >http://24ways.org/2007/supersleight-transparent-png-in-ie6
>
> > it is a problem.  I just found out myself when I put my first PNG
> > image in my TW.
>
> > So are you saying you were to install the plugin?
>
> > On Aug 20, 4:09 pm, "Mark S."  wrote:
>
> > > Can you give an example of what you want to do?
>
> > > I went through all the motions, and thought it was great because a
> > > transparent PNG displayed fine (showing the background color I had
> > > set). But it still displayed fine, after I turned off the plugin. So,
> > > now I'm puzzled. I'm using IE 6.0.2900.2180...
>
> > > Are you sure transparent PNG's don't display in IE 6 ?
>
> > > -- Mark
>
> > > On Aug 20, 8:54 am, MikeS  wrote:
>
> > > > I read about this jQuery plugin here:
>
> > > >http://allinthehead.com/retro/338/supersleight-jquery-plugin
>
> > > > I've heard that TW uses the jQuery engine (or something).
>
> > > > Anyone know how I would import this?
>
> > > > I need it so transparent PNGs display correctly in IE6.  While I use
> > > > Firefox, most of the audience that will see my TW uses IE6 (corporate
> > > > environment).
>
>
--~--~-~--~~~---~--~~
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: Import a jQuery Plugin to my TW?

2009-08-21 Thread Eric Shulman

> The easiest way to do this would be to add the jquery plugin to your
> MarkupPrehead tiddler.
>
> eg.
> 

or, copy the source code from supersleight.js and paste it into a
tiddler tagged with systemConfig (i.e., make it a plugin)

> Then you'd need to make sure everytime your page is refreshed the
> function is called
> try something like this:
> var oldrestart = restart;
> restart = function(){
>   jQuery('body').supersleight();
>   oldrestart();};

There is another way that you can invoke this function whenever the
page is refreshed...

Rather than hijacking the core's restart() function, you could create
a tiddler called, for example, [[SiteStartup]], that would contain a
tiny inline script [1] that calls the supersleight() initialization,
like this:
jQuery('body').supersleight(); 
Then, transclude this tiddler at the end of the PageTemplate, like
this:
   
Each time the PageTemplate is rendered (i.e., when the whole TW page
is drawn), the inline script in SiteStartup will be processed, and the
supersleight() init function will be invoked.

Alternatively, if you don't want to have a separate tiddler to hold
the inline script, you could use a 'hidden section' in the
PageTemplate itself, so that everything is in one place, like this:



Note: there is an important (and useful) difference between using this
inline script technique and using a standard 'systemConfig' tiddler
(i.e., a plugin) to invoke custom code during startup: plugins get
loaded in *before* the initial page content has been rendered, while
the 'SiteStartup' scripts, being triggered at the end of the
PageTemplate, are processed *after* the initial rendering has been
completed.  Thus, startup *scripts* can be used to manipulate the
rendered DOM elements, while plugins cannot.

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: Import a jQuery Plugin to my TW?

2009-08-21 Thread Mark S.

Hi Mike,

What I've done so far works, but is probably too ugly to use in real
life. I put:



in MarkupPreHead.

I have Eric Shulman's InlineScriptPlugin installed. In the tiddler
where I want the graphic to display, I put:




[img[transparent.png]]
//
jQuery('#tiddlerTestTransparency').supersleight({shim: '/img/
transparent.gif'});
;


The jQuery script has to be at the *bottom* of the tiddler, because
its re-applying supersleight to the current tiddler. There is probably
a more intelligent way to hook the script, so that it deploys whenever
a tiddler is displayed.

Anyways, it works but ... it puts a ugly little mark on the image --
just like it would for an image it couldn't find. There's also a
slight framing box, but maybe some CSS would get rid of that. Try and
you'll see.

-- Mark




On Aug 21, 3:59 am, MikeS  wrote:
> Per this:
>
> http://homepage.ntlworld.com/bobosola/
>
> and this:
>
> http://24ways.org/2007/supersleight-transparent-png-in-ie6
>
> it is a problem.  I just found out myself when I put my first PNG
> image in my TW.
>
> So are you saying you were to install the plugin?
>
> On Aug 20, 4:09 pm, "Mark S."  wrote:
>
> > Can you give an example of what you want to do?
>
> > I went through all the motions, and thought it was great because a
> > transparent PNG displayed fine (showing the background color I had
> > set). But it still displayed fine, after I turned off the plugin. So,
> > now I'm puzzled. I'm using IE 6.0.2900.2180...
>
> > Are you sure transparent PNG's don't display in IE 6 ?
>
> > -- Mark
>
> > On Aug 20, 8:54 am, MikeS  wrote:
>
> > > I read about this jQuery plugin here:
>
> > >http://allinthehead.com/retro/338/supersleight-jquery-plugin
>
> > > I've heard that TW uses the jQuery engine (or something).
>
> > > Anyone know how I would import this?
>
> > > I need it so transparent PNGs display correctly in IE6.  While I use
> > > Firefox, most of the audience that will see my TW uses IE6 (corporate
> > > environment).
>
>
--~--~-~--~~~---~--~~
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: Is TiddlyWiki Timeless?

2009-08-21 Thread rakugo

In theory yes..
in javascript you can get the current time using t = new Date();
and theoretically you could use window.setTimeout to run periodically.
eg.
var mycronjob = function(){
 alert("Hello! I run every 10 seconds!");
 window.setTimeout(mycronjob,1);
};
mycronjob();

Obviously your page would have to be constantly open to run like a
cron job though.

Or did I completely miss the point of what you were asking..?
On Aug 21, 4:18 pm, skye riquelme  wrote:
> Hi All
>
> I know there are few plugins that display simple clocks etc...but can
> TW work with time?
>
> For example, is it possible to have a tiddler that activates another
> tiddler (that has a LoadTiddlersPlugin command for example - thus
> refreshing the information from the external TW !) every 10
> minutesa sort of internal CRON !!!
>
> I recall that the old RippleRap application used CRON to periodically
> send items to people connected with their TWsis that a simpler
> option If so how to do it???
>
> 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: Dynamically building url - trying aliasplugin and matchtagsplugin

2009-08-21 Thread Daniel

Thanks a lot!

Daniel

On Aug 20, 10:12 am, Eric Shulman  wrote:
> On Aug 20, 12:15 am, Daniel  wrote:
>
> > I am trying to build a url dynamically with aliasplugin and
> > matchtagsplugin.
> > Also, I want the whole url to link to the Internet, but
> > now one part links to the Internet, another part links to a tiddler
> > and parts inbetween are not linked.
> > The second matchTags gets called but not the first one. What am I
> > doing wrong?
>
> It appears that you are trying to use the output from <> as
> part of the definition for the <> alias.  However, this
> use of the <>" macro syntax within the alias definition
> can *never* work as you want it to, because TiddlyWiki macros do not
> "return text" that can be glued together and then processed to render
> content as browser DOM elements... rather, each macro is responsible
> for rendering their own output directly as DOM elements.  Thus, your
> output would never be rendered as a a single external URL link.
>
> Fortunately, there is a way to achieve exactly the result you want;
> i.e., dynamically-generate a URL, based on text extracted from other
> tiddlers, and then render that URL as an external link in your
> content.
>
> First, install this plugin:
>    http://www.TiddlyTools.com/#InlineJavascriptPlugin
>
> Then, you can write something like this:
>
> 
>    var tids = store.getTaggedTiddlers("portfolj");
>    var list1=[]; for (var t=0;t [t].text);
>    var tids = store.getTaggedTiddlers("skuggportfolj");
>    var list2=[]; for (var t=0;t [t].text);
>    return "http://customer.morningstareurope.com/se/folksamweb/
> comparefund/default.aspx?cid="+list1.join('|')+","+list2.join('|')
> +"&onlyclient=1&clientattributes=127";
> 
>
> The 'return value' from the script (i.e., a text string containing the
> fully-assembled URL) is automatically 'wikified' to render the desired
> link.
>
> 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: Announcing Tiddlywiki 2.5.3

2009-08-21 Thread cmari

Further to what Wolfgang said: have you tried opening Firefox in
"Safe" mode without any extensions and then opening your MonkeyGTD
file? If that works then you'd have to start considering which of your
Add-ons/extensions might be causing the problem.

With the most recent Firefox/extension upgrades I found I had to turn
CoolPreviews off and disable ResizeableTextarea in order to get my
MonkeyGTD file to work.
cmari


On Aug 21, 4:27 am, wolfgang  wrote:
> Hi folliet:
>
> > and cannot load either that or this without errors. is there a link
> > that will help or someone who could talk me thru?
>
> Take a look here:http://tiddlywiki.org/wiki/Troubleshooting
>
> Did you install or update any Firefox addons recently?
--~--~-~--~~~---~--~~
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: Import a jQuery Plugin to my TW?

2009-08-21 Thread MikeS

Per this:

http://homepage.ntlworld.com/bobosola/

and this:

http://24ways.org/2007/supersleight-transparent-png-in-ie6

it is a problem.  I just found out myself when I put my first PNG
image in my TW.

So are you saying you were to install the plugin?

On Aug 20, 4:09 pm, "Mark S."  wrote:
> Can you give an example of what you want to do?
>
> I went through all the motions, and thought it was great because a
> transparent PNG displayed fine (showing the background color I had
> set). But it still displayed fine, after I turned off the plugin. So,
> now I'm puzzled. I'm using IE 6.0.2900.2180...
>
> Are you sure transparent PNG's don't display in IE 6 ?
>
> -- Mark
>
> On Aug 20, 8:54 am, MikeS  wrote:
>
> > I read about this jQuery plugin here:
>
> >http://allinthehead.com/retro/338/supersleight-jquery-plugin
>
> > I've heard that TW uses the jQuery engine (or something).
>
> > Anyone know how I would import this?
>
> > I need it so transparent PNGs display correctly in IE6.  While I use
> > Firefox, most of the audience that will see my TW uses IE6 (corporate
> > environment).
--~--~-~--~~~---~--~~
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: Announcing Tiddlywiki 2.5.3

2009-08-21 Thread wolfgang

Hi folliet:

> and cannot load either that or this without errors. is there a link
> that will help or someone who could talk me thru?
>

Take a look here:
http://tiddlywiki.org/wiki/Troubleshooting

Did you install or update any Firefox addons recently?
--~--~-~--~~~---~--~~
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: Announcing Tiddlywiki 2.5.3

2009-08-21 Thread ffolliet

still looking for some help here. I ultimately want to run MonkeyGTD
and cannot load either that or this without errors. is there a link
that will help or someone who could talk me thru?

previously running mGTD for over a year with no problems.

thanks
--~--~-~--~~~---~--~~
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: Is it possible to link or embed multiple images at once?

2009-08-21 Thread Anthony Muscio
Eric,

This is very cool. Can you tell me how to fileDrop only links to local
documents (images) then have the image displayed ?

I can do it from the attach inline and checking only the Local Link check
box but I dont know how to make this happen for files that are dropped.

Thanks in advance.

TonyM

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



On Fri, Aug 21, 2009 at 14:43, TiddlyTools  wrote:

>
> > I've recently noticed that the FileDropPlugin has stopped working.  I
> > think it is with the recent upgrade to FireFox 3.5.  Do you know why
> > this is and what needs to be done to fix it - it is certainty a very
> > useful plugin?
>
> It turns out that FireFox changed the keyword used to register the
> drag-and-drop event handler.  In FF3.1-, the event is called
> "dragdrop", while in FF3.5+ it is now called simply "drop".  The fix
> is to register *both* event handlers, so that either old or new FF
> browser can process the appropriate event.
>
> I've also cleaned up the plugin code and merged it with
> FileDropPluginConfig, which registers an extended drop handler for
> files *and* directories (as well as binary attachments if optional
> AttachFilePackage is installed).  The net result is that the updated
> merged tiddlers is actually smaller than the two previous tiddlers,
> even with the additional code fix.
>
> Get the update (v2.0.0) here:
>http://www.TiddlyTools.com/#FileDropPlugin
>
> 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: Size of tiddlywiki folder.

2009-08-21 Thread Monty

Eric,

That solves my problem.

Thank You!
Monty

On Aug 21, 8:11 am, Eric Shulman  wrote:
> > Have recently discovered tiddlywiki and have started using it for
> > notes, as a journal and for a todo list.  Question is though how large
> > can this folder get.  I have about 8 tiddlers and one journal entry
> > and the folder is about twenty megs.  Is this normal? Will the folder
> > keep growing at this rate?
>
> Each time you save your TiddlyWiki document, the current file is first
> renamed by adding a 'timestamp' to the filename; then a new file
> containing the revised tiddler content is created using the original
> filename.  For example, if your document is named "foobar.html", then
> the backup files will be named something like "foobar.
> 20090819.2306250123.html", with the updated tiddlers written into a
> new copy of "foobar.html"
>
> Of course, as you have noted, this approach leads to an accumulation
> of old revisions of your document.  Fortunately, while it is good to
> keep a few backups around, just in case you make a mistake when
> editing your document, these backup files are *not* required, so you
> can delete them any time you need to make more room.
>
> 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
-~--~~~~--~~--~--~---