Re: [tw] Re: Got it working in Chrome

2012-02-12 Thread ionobr...@gmail.com
Update on this, when I upgraded my chrome it stopped working completely.  I
have given up on getting it to work in chrome.  My only solution is to run
a firefox window in addition to chrome :/

Fingers crossed for TW5

On Thu, Feb 2, 2012 at 6:37 AM, Jeremy Ruston wrote:

> > Sure Jeremy I will get on that.
> >
> > +100,000,000 to needing a scrapbook app for chrome.  Chrome support is so
> > important, it's taking over.
> >
> > When's TW5?
>
> I hope that it will be useful for end users in the next one or two
> months. (It's already moderately useful as a command line tool, and
> Chris is experimenting with using the wikification engine within
> TiddlySpace).
>
> You can follow progress over on GitHub:
>
> https://github.com/Jermolene/cook.js
>
> From time to time I upload a build to:
>
> http://tiddlywiki.com/tiddlywiki5/
>
> Best wishes
>
> Jeremy
>
> >
> > Trey
> >
> >
> > On Mon, Jan 30, 2012 at 8:52 AM, Jeremy Ruston 
> > wrote:
> >>
> >> I'm glad it's working for you. It would be very useful if anyone were
> >> willing to volunteer to help update tiddlywiki.com with better advice
> >> for Chrome users. I think we need to rather overhaul the existing
> >> installation material. Any volunteers?
> >>
> >> Best wishes
> >>
> >> Jeremy
> >>
> >> On Mon, Jan 30, 2012 at 9:38 AM, kev  wrote:
> >> > Thanks for that too. (Actually I've gone back to Firefox as I didn't
> >> > find any speed advantages with Chrome once I'd opened up the same
> >> > number of tabs I regularly use in Friefox.Also there is no "Scrapbook"
> >> > addon - wonderful Firefox addon)
> >> >
> >> > On Jan 29, 11:26 pm, "ionobr...@gmail.com" 
> >> > wrote:
> >> >> Cool man!
> >> >> Firefox = old and busted
> >> >> Chrome = new hotness
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >> On Sun, Jan 29, 2012 at 1:14 PM, Daniel Fallon  >
> >> >> wrote:
> >> >> > OH MY GOODNESS, this was one of the only reasons I was still on
> >> >> > firefox.
> >> >>
> >> >> > These command line switches should work on windows also. (chrome
> >> >> > stores itself in your AppData folder on windows) I believe on
> windows
> >> >> > you need to modify the shortcut that you open chrome with (because
> I
> >> >> > don't believe it will save that option)
> >> >>
> >> >> > On Sun, Jan 29, 2012 at 11:28 AM, ionobr...@gmail.com
> >> >> >  wrote:
> >> >> > > I have had trouble for several months getting TW working in
> Chrome.
> >> >> > >  My
> >> >> > file
> >> >> > > would save, but after about 1/2 hour of being open something
> would
> >> >> > > go
> >> >> > wrong
> >> >> > > and I'd be told "there was a problem saving this TW"
> >> >>
> >> >> > > Happy to report I got it working, here's a copy of my post at
> >> >> > > another
> >> >> > site:
> >> >>
> >> >> > > Was able to save, but continued to have problems with this for
> >> >> > > several
> >> >> > > months. Finally I discovered I hadn't remembered to also set the
> >> >> > > flags
> >> >> > (BOTH
> >> >> > > of them, as mentioned in your other post about this topic). Once
> I
> >> >> > > did
> >> >> > that,
> >> >> > > easy, saves with no problems. So this is just a note in case
> people
> >> >> > > come
> >> >> > > looking for a chrome solution. Use sun-java6-plugin and set both
> >> >> > > flags
> >> >> > > --enable-file-cookies and --allow-file-access-from-files
> >> >>
> >> >> > > If you're running ubuntu as I am, make a new menu shortcut for
> >> >> > > chrome
> >> >> > with
> >> >> > > "command" field:
> >> >> > > /opt/google/chrome/google-chrome %U --enable-file-cookies
> >> >> > &g

Re: [tw] Re: New! Less-Frequent Autosave Plugin

2012-02-04 Thread ionobr...@gmail.com
Ahhh...good question.  I am not a javascript guy.  But I would say that it
isn't gonna take much memory, it's just a timeout function that fires the
save.

I've been using it for several days.  I think it would work GREAT with the
LessBackupsPlugin, but unfortunately that doesn't work in Chrome...so
you're going to get a ton of backup files and unnecessary saves with this.

I will try sometime soon to add IsDirty? functionality so it only saves if
there is something to save.  Also, if you're working on something and have
it open, TW doesn't save that either.

Trey

On Sat, Feb 4, 2012 at 6:18 AM, twgrp  wrote:

> This is actually a great concept.
>
> Question: If I understand this right it has some kind of timer. Does
> this mean it takes up memory continuously where a TW regularly does
> not (a loaded TW is passive regularly, no?) -?
>
> Thanx
>
> On Feb 1, 2:35 am, "ionobr...@gmail.com"  wrote:
> > I've had a little more time to work on my TW lately, and I have a
> template
> > I think some minimists will like, as well as a hotkey plugin.  After I
> post
> > what I've got for the hotkey plugin, hopefully a couple of the higher
> > powers can help me to improve it.  Look for it sooon
> >
> > =
> > Tiddler: AutoSaveTimerPlugin
> > =
> > Tags: systemConfig plugin settings dontDelete
> > =
> >
> > /***
> > |Name|AutoSaveTimerPlugin|
> > |Source|http://groups.google.com/group/tiddlywiki/browse_thread/thread/
> > b2a6375e2f5ecbab#|
> > |Documentation|http://groups.google.com/group/tiddlywiki/browse_thread/
> > thread/b2a6375e2f5ecbab#|<
> http://groups.google.com/group/tiddlywiki/browse_thread/thread/b2a637...>
> > |Version|1.0|
> > |Author|ionobr...@gmail.com|
> > |License|Public Domain|
> > |~CoreVersion|2.3|
> > |Type|plugin|
> > |Description|Save every 5 minutes (change the last digit in the
> > formula to set this)|
> > <<<
> > !Code
> >
> > saveInterval = 1000*60*5; //Change final digit on this line to the
> interval
> > (in minutes) you want to auto-save at
> >
> > saveEvent = setTimeout(autoSaveIt,saveInterval);
> >
> > function autoSaveIt(){
> > saveChanges();
> > saveEvent = setTimeout(autoSaveIt,saveInterval);
> > }
> >
> > //{{{
> >
> > On Tue, Jan 31, 2012 at 8:31 PM, ionobr...@gmail.com <
> ionobr...@gmail.com>wrote:
> >
> >
> >
> >
> >
> >
> >
> > > Hey thanks David :#
> > > Makes me feel like a pro.
> > >  Trey
> >
> > > On Mon, Jan 30, 2012 at 1:59 PM, David Szego  >wrote:
> >
> > >> Here, make it look pretty and give yourself credit:
> >
> > >> =
> > >> Tiddler: AutoSaveTimerPlugin
> > >> =
> > >> Tags: systemConfig plugin settings dontDelete
> > >> =
> >
> > >> /***
> > >> |Name|AutoSaveTimerPlugin|
> > >> |Source|
> http://groups.google.com/group/tiddlywiki/browse_thread/thread/
> > >> b2a6375e2f5ecbab#|
> > >> |Documentation|
> http://groups.google.com/group/tiddlywiki/browse_thread/
> > >> thread/b2a6375e2f5ecbab#|<
> http://groups.google.com/group/tiddlywiki/browse_thread/thread/b2a637...>
> > >> |Version|1.0|
> > >> |Author|ionobr...@gmail.com|
> > >> |License|Public Domain|
> > >> |~CoreVersion|2.3|
> > >> |Type|plugin|
> > >> |Description|Save every 5 minutes (change the last digit in the
> > >> formula to set this)|
> > >> <<<
> > >> !Code
> >
> > >> //{{{
> > >> saveInterval = 1000*60*5;
> > >> saveEvent = setTimeout(autoSaveIt,saveInterval);
> >
> > >>function autoSaveIt(){
> > >> saveChanges();
> > >>saveEvent = setTimeout(autoSaveIt,saveInterval);
> > >>}
> > >> //}}}
> >
> > >> --
> > >> 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.
>
> --
> 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.
>
>

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



Re: [tw] Re: Got it working in Chrome

2012-01-31 Thread ionobr...@gmail.com
Sure Jeremy I will get on that.

+100,000,000 to needing a scrapbook app for chrome.  Chrome support is so
important, it's taking over.

When's TW5?

Trey


On Mon, Jan 30, 2012 at 8:52 AM, Jeremy Ruston wrote:

> I'm glad it's working for you. It would be very useful if anyone were
> willing to volunteer to help update tiddlywiki.com with better advice
> for Chrome users. I think we need to rather overhaul the existing
> installation material. Any volunteers?
>
> Best wishes
>
> Jeremy
>
> On Mon, Jan 30, 2012 at 9:38 AM, kev  wrote:
> > Thanks for that too. (Actually I've gone back to Firefox as I didn't
> > find any speed advantages with Chrome once I'd opened up the same
> > number of tabs I regularly use in Friefox.Also there is no "Scrapbook"
> > addon - wonderful Firefox addon)
> >
> > On Jan 29, 11:26 pm, "ionobr...@gmail.com" 
> > wrote:
> >> Cool man!
> >> Firefox = old and busted
> >> Chrome = new hotness
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >> On Sun, Jan 29, 2012 at 1:14 PM, Daniel Fallon 
> wrote:
> >> > OH MY GOODNESS, this was one of the only reasons I was still on
> firefox.
> >>
> >> > These command line switches should work on windows also. (chrome
> >> > stores itself in your AppData folder on windows) I believe on windows
> >> > you need to modify the shortcut that you open chrome with (because I
> >> > don't believe it will save that option)
> >>
> >> > On Sun, Jan 29, 2012 at 11:28 AM, ionobr...@gmail.com
> >> >  wrote:
> >> > > I have had trouble for several months getting TW working in Chrome.
>  My
> >> > file
> >> > > would save, but after about 1/2 hour of being open something would
> go
> >> > wrong
> >> > > and I'd be told "there was a problem saving this TW"
> >>
> >> > > Happy to report I got it working, here's a copy of my post at
> another
> >> > site:
> >>
> >> > > Was able to save, but continued to have problems with this for
> several
> >> > > months. Finally I discovered I hadn't remembered to also set the
> flags
> >> > (BOTH
> >> > > of them, as mentioned in your other post about this topic). Once I
> did
> >> > that,
> >> > > easy, saves with no problems. So this is just a note in case people
> come
> >> > > looking for a chrome solution. Use sun-java6-plugin and set both
> flags
> >> > > --enable-file-cookies and --allow-file-access-from-files
> >>
> >> > > If you're running ubuntu as I am, make a new menu shortcut for
> chrome
> >> > with
> >> > > "command" field:
> >> > > /opt/google/chrome/google-chrome %U --enable-file-cookies
> >> > > --allow-file-access-from-files
> >>
> >> > > Peace, and thanks Matthias
> >>
> >> > > Here's the post that helped me:
> >>
> >> > >
> http://opennomad.com/content/google-chrome-and-tiddlywiki#comment-172
> >>
> >> > > If anyone has a problem implementing these instructions drop me a
> line!
> >>
> >> > > Trey
> >>
> >> > > --
> >> > > 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.
> >>
> >> > --
> >> > 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.
> >
> > --
> > 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.
> >
>
> --
> 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.
>
>

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



Re: [tw] Re: New! Less-Frequent Autosave Plugin

2012-01-31 Thread ionobr...@gmail.com
Hey thanks David :#
Makes me feel like a pro.
Trey

On Mon, Jan 30, 2012 at 1:59 PM, David Szego  wrote:

> Here, make it look pretty and give yourself credit:
>
> =
> Tiddler: AutoSaveTimerPlugin
> =
> Tags: systemConfig plugin settings dontDelete
> =
>
> /***
> |Name|AutoSaveTimerPlugin|
> |Source|http://groups.google.com/group/tiddlywiki/browse_thread/thread/
> b2a6375e2f5ecbab#|
> |Documentation|http://groups.google.com/group/tiddlywiki/browse_thread/
> thread/b2a6375e2f5ecbab#|
> |Version|1.0|
> |Author|ionobr...@gmail.com|
> |License|Public Domain|
> |~CoreVersion|2.3|
> |Type|plugin|
> |Description|Save every 5 minutes (change the last digit in the
> formula to set this)|
> <<<
> !Code
>
> //{{{
> saveInterval = 1000*60*5;
> saveEvent = setTimeout(autoSaveIt,saveInterval);
>
>function autoSaveIt(){
> saveChanges();
>saveEvent = setTimeout(autoSaveIt,saveInterval);
>}
> //}}}
>
> --
> 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.
>
>

-- 
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] New! Less-Frequent Autosave Plugin

2012-01-29 Thread ionobr...@gmail.com
All,
I lost a bunch of stuff in my TW today when my computer crashed, because
I'd forgotten to save. I have had to uncheck autosave because it's a
resource hog.  So I wrote this tiny, tiny plugin which I thought someone
with even less javascript ability than I might enjoy.

/

saveInterval = 1000*60*5;
saveEvent = setTimeout(autoSaveIt,saveInterval);

function autoSaveIt(){
saveChanges();
saveEvent = setTimeout(autoSaveIt,saveInterval);
}



Just put that in a tiddler tagged systemConfig, and your TW will be saved
every five minutes. Change the "5" in the variable saveInterval to however
many minutes you'd like it to save at.

Trey

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



Re: [tw] Got it working in Chrome

2012-01-29 Thread ionobr...@gmail.com
Cool man!
Firefox = old and busted
Chrome = new hotness

On Sun, Jan 29, 2012 at 1:14 PM, Daniel Fallon  wrote:

> OH MY GOODNESS, this was one of the only reasons I was still on firefox.
>
> These command line switches should work on windows also. (chrome
> stores itself in your AppData folder on windows) I believe on windows
> you need to modify the shortcut that you open chrome with (because I
> don't believe it will save that option)
>
> On Sun, Jan 29, 2012 at 11:28 AM, ionobr...@gmail.com
>  wrote:
> > I have had trouble for several months getting TW working in Chrome.  My
> file
> > would save, but after about 1/2 hour of being open something would go
> wrong
> > and I'd be told "there was a problem saving this TW"
> >
> > Happy to report I got it working, here's a copy of my post at another
> site:
> >
> > Was able to save, but continued to have problems with this for several
> > months. Finally I discovered I hadn't remembered to also set the flags
> (BOTH
> > of them, as mentioned in your other post about this topic). Once I did
> that,
> > easy, saves with no problems. So this is just a note in case people come
> > looking for a chrome solution. Use sun-java6-plugin and set both flags
> > --enable-file-cookies and --allow-file-access-from-files
> >
> > If you're running ubuntu as I am, make a new menu shortcut for chrome
> with
> > "command" field:
> > /opt/google/chrome/google-chrome %U --enable-file-cookies
> > --allow-file-access-from-files
> >
> > Peace, and thanks Matthias
> >
> >
> > Here's the post that helped me:
> >
> > http://opennomad.com/content/google-chrome-and-tiddlywiki#comment-172
> >
> > If anyone has a problem implementing these instructions drop me a line!
> >
> >
> > Trey
> >
> > --
> > 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.
>
> --
> 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.
>
>

-- 
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] Got it working in Chrome

2012-01-29 Thread ionobr...@gmail.com
I have had trouble for several months getting TW working in Chrome.  My
file would save, but after about 1/2 hour of being open something would go
wrong and I'd be told "there was a problem saving this TW"

Happy to report I got it working, here's a copy of my post at another site:

 Was able to save, but continued to have problems with this for several
months. Finally I discovered I hadn't remembered to also set the flags
(BOTH of them, as mentioned in your other post about this topic). Once I
did that, easy, saves with no problems. So this is just a note in case
people come looking for a chrome solution. Use sun-java6-plugin and set
both flags --enable-file-cookies and --allow-file-access-from-files

If you're running ubuntu as I am, make a new menu shortcut for chrome with
"command" field:
/opt/google/chrome/google-chrome %U --enable-file-cookies
--allow-file-access-from-files

Peace, and thanks Matthias


Here's the post that helped me:

http://opennomad.com/content/google-chrome-and-tiddlywiki#comment-172

If anyone has a problem implementing these instructions drop me a line!


Trey

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



Re: [tw] Re: not working properly in chrome

2011-11-21 Thread ionobr...@gmail.com
I have the same issue.  I can't save, maybe one out of ten times.  If it
gets much worse I'm going to try to set up an auto-saver that runs once
every 10 minutes if the file is dirty.  So not too much gets lost.

On Sat, Nov 19, 2011 at 7:23 AM, Yakov wrote:

> > I suggest you use Portable Firefox [for TiddlyWikis]
>
> A really proper idea, never thought about that.
>
> > The main issue in this instance is that TW relied on some none web
> > standard ways of interacting with files through a browser.
>
> > If you are *really* frustrated and have the resources, then it seems
> > right now the developers would be very happy to have a sponsor fund
> > this specific aspect of TW's development, and that would be greatly
> > appreciated by the whole community.
>
> You know, there's open source Chromium browser on which Chrome is
> based. Taking all these into account, it seems that a very useful
> solution would be take Chromium and make a portable browser with
> embedded mechanism of TW saving. Pity that I'm not a professional
> coder :)
>
> --
> 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.
>
>

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



Re: [tw] Re: Business Thought [was: Important Message from Eric]

2011-11-14 Thread ionobr...@gmail.com
I needed to find the documentation about how to put css classes in
tiddlers.  Like {{class{content}}}.  It took me something like 45min to
find this.  I'll just add my voice to the concept that TW is great, but
that the user community wouldn't have to shoulder so much of the burden if
there were a heart beating besides this group, like an organized wiki.

I tried getting started on a plugin a few months ago:
http://groups.google.com/group/tiddlywiki/browse_thread/thread/fde4c170ba8572ae/9749b9a0c96dffa8?lnk=gst&q=macro+trey+hotkey#9749b9a0c96dffa8
Got basic functionality and then been stuck on it ever since.  I appreciate
the help I've gotten, have never been part of such a responsive community,
but writing a plugin?  Forget it.  I can't use those resources, I'm not
advanced enough.

I couldn't even get good help on how to get TW working on Chrome.  If
that's not lagging behind the times, I dunno what is.

/criticism.  There is nothing like TW out there, despite the above.
Trey

On Mon, Nov 14, 2011 at 3:54 PM, Tobias Beer wrote:

> I couldn't agree more...
>
>
> http://groups.google.com/group/tiddlywiki/browse_frm/thread/7f5dd617af6f4c1f#
>
> Cheers, Tobias.
>
> --
> 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.
>
>

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



Re: [tw] Re: Keyboard shortcut to close a tiddler

2011-11-04 Thread ionobr...@gmail.com
Craig,
I've been working on a keycombo plugin that does this  sort of thing.  I
asked a question about this general topic (how to manipulate the story
using macros) about a month ago and nothing was forthcoming.  I'm working
on it but it's real slow.

Trey

On Mon, Oct 31, 2011 at 11:37 PM, Craig in Calgary  wrote:

> Bauwe,
>
> I was aware of this information but that list lacks what I need: a Ctrl
> +W or Ctrl+F4 or similar keyboard combination to close a single
> tiddler. If executed multiple times it will close any rendered
> tiddlers in the reverse order of their being opened. If not tiddlers
> are open, nothing will happen.
>
> Craig
>
> --
> 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.
>
>

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



Re: [tw] Re: Daily Aggregate question - attn: Udo Borkowski

2011-10-17 Thread ionobr...@gmail.com
Jon,
I'm going to try it, but I'm running a TW that houses pretty much all of my
stuff - journal entries, projects, ideas, notes...way more than "dozens" of
tiddlers. : )  We'll see how it goes, but at least the code is out here for
anyone with a similar problem to use.

Trey

On Mon, Oct 17, 2011 at 12:01 AM, Jon  wrote:

>
> > Thanks for your idea!  But wouldn't that run into the same issue
> mentioned
> > in the linked post - massive overhead each time the script is run?
>
> I think the problem with FET is that writing this into its code means
> it would have to parse every tiddler for parts EVERY time FET runs for
> any purpose.
>
> This code does go through the text of each tiddler once every time it
> is run (presumably, when you open an "aggregation" tiddler). But
> that's really not such a big deal, at least not with any reasonable
> number of tiddlers. I don't have any trouble with something like this
> in a TW with dozens of tiddlers to look through. The overhead could be
> reduced by using tags (maybe "project") to indicate tiddlers where the
> desired text could occur and then store.getTaggedTiddlers("project")
> to limit the collection being searched.
>
> Eric's solution does virtually the same thing (still sifts through all
> the tiddlers), but I do like it better. Since a section would work as
> well as a part for your purposes, you don't need to actually go
> through the text, and you can eliminate the RegExp search as well as
> the PartTiddlerPlugin if you don't need it elsewhere.
>
> --Jon
>
> --
> 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.
>
>

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



Re: [tw] Re: Daily Aggregate question - attn: Udo Borkowski

2011-10-16 Thread ionobr...@gmail.com
Eric, thanks very much for the code, I will give this system a try.
Tr3y

On Sun, Oct 16, 2011 at 4:37 PM, Eric Shulman  wrote:

> On Oct 15, 5:23 pm, Trey  wrote:
> > I was hoping to use FeT and PartTiddlerPlugin to create a dynamic
> > daily aggregate tiddler.  Based on it's title (say 2011.10.15) this
> > tiddler would use FeT to go looking for ... in
> > all tiddlers, and print the full text of what it finds.
> > Can anyone think of an alternate way to get the same functionality?
> > (maybe using different plugins?)
>
> Use http://www.TiddlyTools.com/#InlineJavascriptPlugin instead of FET
> Use TWCore *section* syntax instead of PartTiddlerPlugin syntax
>
> 
>   var out="";
>   var tids=store.getTiddlers();
>   for (var i=0; i  out+=store.getTiddlerText(tids[i].title+"##"+tiddler.title,"");
>   return out;
> 
>
> To define the sections in the tiddlers, write something like:
>
> !2011.10.15
> content for this section
> !end
>
> You can HIDE the section by enclosing it in TW comment markers:
>
> /%
> !2011.10.15
> content
> !end
> %/
>
> Note: because the TWCore uses the heading syntax ("!text") to signal
> the start/end of each section, you cannot use the heading syntax
> *within* the section content.  Similarly, if you are using TWCore
> comment markers ("/% ... %/") to hide the section you cannot use
> comment markers *within* that section content.  To allow comment
> markers within the content, you can use the TWCore's "CSS class
> wrapper" syntax as an alternative method of hiding the section, like
> this":
>
> {{hidden{
> !2011.10.15
> content
> /% comment %/
> !end
> }}}
>
> To display heading-format content within the section, use HTML sytnax:
>
> {{hidden{
> !2011.10.15
> This is a heading
> content
> /% comment %/
> !end
> }}}
>
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
>
> 
> TiddlyTools needs YOUR financial support...
> Help ME to continue to help YOU...
> make a generous donation today:
>   http://www.TiddlyTools.com/#Donations
>
> Professional TiddlyWiki Consulting Services...
> Analysis, Design, and Custom Solutions:
>   http://www.TiddlyTools.com/#Contact
>
> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To 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.
>
>

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



Re: [tw] Re: Daily Aggregate question - attn: Udo Borkowski

2011-10-16 Thread ionobr...@gmail.com
Thanks for your idea!  But wouldn't that run into the same issue mentioned
in the linked post - massive overhead each time the script is run?

Trey

On Sun, Oct 16, 2011 at 1:20 AM, Jon  wrote:

>
> > I was hoping to use FeT and PartTiddlerPlugin to create a dynamic
> > daily aggregate tiddler.  Based on it's title (say 2011.10.15) this
> > tiddler would use FeT to go looking for ... in
> > all tiddlers, and print the full text of what it finds.
>
> As you point out, FeT doesn't do this, but no reason a custom script
> or macro couldn't do exactly what you say: parse the text of each
> tiddler with a RegExp to look for parts matching the title of the
> current tiddler. I did something similar to look for checkboxes that
> would represent "action items" in a particular TW.
>
> For example, if you use InlineJavascriptPlugin, you could put a script
> like this in a tiddler where you want to "aggregate" parts named the
> same as the current tiddler from other tiddlers:
>
> 
>  var re = new RegExp("\\n(.+?)\\n<\\/
> part>","gm");
>  var tids = store.getTiddlers();
>  for (var i = 0; ivar text = tids[i].text;
>var getMatch = re.exec(text);
>if (getMatch) { wikify(getMatch[1]+"\n",place); }
>}
> 
>
> ...or, you could make this into a macro to make it easier to put the
> macro notation into any desired tiddler.
>
> --
> 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.
>
>

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



Re: [tw] Is it possible to keep the display area of the tiddlers in a separate frame?

2011-09-22 Thread ionobr...@gmail.com
Do you know any CSS?  You can put a property:
position: fixed;
on the sidebar element (and maybe you'd need to apply it to some others,
also) to achieve the behavior you're looking for.  You can add CSS style
rules to the StyleSheet tiddler.

Off the top of my head you'd need to paste in
#sidebar { position: fixed }
but I've modded my TW so much I'm not sure anymore.

Trey



On Thu, Sep 22, 2011 at 9:44 PM, lu  wrote:

> Hi all,
>
> Just a quick question. Is it possible to have a separate frame for the
> tiddlers, so that when scrolling down the tiddlers the side bar can be
> kept on screen? I looked through quite a few themes but none of them
> can do that.
>
> cheers, Lu
>
> --
> 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.
>
>

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



Re: [tw] Re: Calling various macros as functions

2011-09-01 Thread ionobr...@gmail.com
Thanks, PM.  I have looked through those now, but I'm still stuck on
my specific question, how to access macro-functionality through
javascript functions.  Appreciate any help.

On Thu, Sep 1, 2011 at 8:04 PM, PMario  wrote:
> No answers but some resources :)
>
> http://oldwiki.tiddlywiki.org/wiki/Dev:Core_Code_Overview
> http://www.tiddlytools.com/insideTW/
>
> have fun!
> -m
>
> --
> 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.
>
>

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



Re: [tw] Selecting input boxes with jQuery

2011-09-01 Thread ionobr...@gmail.com
All,
figured this out by doing the following:

function function1() {
var m = document.activeElement.type;
if (m == 'text' || m == 'textarea') {
   // don't do anything
} else {
   // do hotkey stuff
}

I'm still stumped as to why the :input selector method didn't work.
But this can be made equivalent.

Tr3y



On Thu, Sep 1, 2011 at 3:53 PM, Trey  wrote:
>
> Hey all,
> I'm writing my first plugin.  It will enable gmail style, non-
> simultanious hotkeys - as in, press g then i to go to your inbox.  I
> have basic functionality already working.  However, I need to stop the
> hotkeys from firing when an input box is selected.
>
> To find inputs with focus, I'm trying to use something like:
>
> $('input').focus(function() {
>    inputHasFocus = true; // Set true if a Form-Field is selected
> }).blur(function() {
>    inputHasFocus = false; // Set false if a Form-Field has left
> });
>
> But that doesn't work at all.  The official docs on :focus include
> this simple example:
>
>   $("input").focus(function () {
>         ...do something
>    });
>
> (http://api.jquery.com/focus/)
> But I can't even get that to work.  jQuery does not seem to be able to
> find the input boxes.  What am I doing wrong?
>
> --
> 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.
>

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



Re: [tw] Re: New Chrome support status update?

2011-08-31 Thread ionobr...@gmail.com
Using Ubuntu 10.04, Chrome 12.0.etc, latest TW version, saving was enabled
by 1. putting the tiddlysaver file in with the TW file, 2. downloading the
sun-java6-plugin and 3. setting it as the automatic java used.

On Wed, Aug 31, 2011 at 11:40 AM, Ben Gillies  wrote:

> Hi Trey
>
> On Mon, Aug 29, 2011 at 9:48 PM, Trey  wrote:
> > Also: is a local install of Tiddlyweb a way to solve this problem?
> > Will that work under chrome?
> > http://tiddlyweb.peermore.com/wiki/
>
> Yes, installing TiddlyWeb locally will solve the issues that you are
> having, which are due to increased security on file:// URIs in more
> recent browsers.
>
>
> Ben
>
> --
> 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.
>
>

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



Re: [tw] Multiple columns css question

2011-08-28 Thread ionobr...@gmail.com
Yes, but you're not going to like it.
The only way to make sensible columns (that I have found) is to
a.) use javascript
b.) use the -moz and -webkit css column property prefix styles.  However,
-moz did not support column-break last time I checked (4 months ago), so
you're gonna get lists and blocks of content broken across columns where
they shouldn't be.

http://kmsm.ca/2010/an-almost-complete-guide-to-css3-multi-column-layouts/
check out that page,
http://plugins.jquery.com/project/columnize
or that if you want a jquery solution.

trey

On Sun, Aug 28, 2011 at 11:37 AM, Dave Gifford - http://www.giffmex.org/ <
giff...@gmail.com> wrote:

> Hi all,
>
> I have a foreachtiddler displaying the contents of various tiddlers in
> a master tiddler, and have it wrapped in CSS so it displays in three
> columns.
>
> How could I tweak it so that tiddler contents don't get split up
> between columns? Is there a 'force tiddler column break' or something
> like that?
>
> Thanks in advance,
>
> 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.
>
>

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



Re: [tw] Re: SwitchThemePlugin

2011-08-23 Thread ionobr...@gmail.com
Thanks to both
Trey

On Tue, Aug 23, 2011 at 6:56 AM, colmjude  wrote:

>
>
> On Aug 23, 1:07 am, Måns  wrote:
> > Hi Trey
> >
> > > Using Mr. Shulman's SwitchThemePlugin, how does one set a default
> > > theme to load on startup?  I can't find it in the documentation.
> >
> > In a tiddler tagged with systemConfig write:
> > config.options.txtTheme = "MyDefaultTheme";
> >
>
> Or you can just set it in the tweaks section of the backstage.
> There is an input box about three from the bottom that sets
> config.options.txtTheme
>
> Colm
>
> --
> 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.
>
>

-- 
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] Default Theme

2011-08-22 Thread ionobr...@gmail.com
All,
Using Mr. Shulman's SwitchThemePlugin, how does one set a default theme?  I
can't find it in the documentation.  Thanks,
Trey

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



Re: [tw] How many tiddlers in your wiki?

2011-08-05 Thread ionobr...@gmail.com
did you turn off the navigation tabs?
clap off!
Trey

On Wed, Aug 3, 2011 at 12:13 PM, axelm  wrote:
> I was just wondering at which point the wiki would get slow.
> Is it the number of tiddlers (I have 1003), or is it rendering a tiddler
> with lots of scripts in it?
>
> How many tiddlers do you have, and at which point did you notice a slowdown?
>
> axelm
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/tiddlywiki/-/rj9xjO0UvZsJ.
> 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.
>

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



Re: [tw] Re: TW notepad

2011-07-18 Thread ionobr...@gmail.com
Thanks for the direction.  Those are pretty similar to my concept, might be
better.
-Trey

On Mon, Jul 18, 2011 at 2:27 PM, Måns  wrote:

> Hi ionobrian
>
> Do you know http://www.tiddlytools.com/#QuickNotePlugin ?
> Tobias has made his own version and implemented it here:
> http://tbgtd.tiddlyspot.com/#QuickNotes
>
> There's a similar feature in mgsd:
> http://mgsd.tiddlyspot.com/demo3.html#[[Quick%20Add]]
>
> Cheers Måns Mårtensson
>
> On 18 Jul., 19:30, "ionobr...@gmail.com"  wrote:
> > This is a feature idea.  My TW (which I've worked very hard on, and will
> > release some time this summer: thanks for all your help, TW Group) has a
> > panel system for commonly used "index" tiddlers.  I think a "notepad"
> would
> > be a useful feature here.  It's a tiddler that never needs to be saved,
> and
> > which never goes into 'view' mode.  This functions as kind of a
> chalkboard.
> > I often find that when I'm browsing, or doing something else, I want to
> flip
> > back to my TW and write a note.  I don't want to go to the trouble of
> > organizing it.  Often this kind of info needs to be added to an existing
> > page, or will be deleted soon.  The point is that I want to get it into
> the
> > TW as fast as possible and move on.
> >
> > This would be as simple as: for a tiddler tagged "notepad":
> >
> >- disabling the automatic "are you sure you want to close this tiddler
> >without saving" message
> >- automatically saving the tiddler if it is closed
> >- Prevent "notepad" from raising the message "sure you want to close
> this
> >TW with unsaved changes?"
> >- automatically saving the tiddler if the wiki is closed (possible?)
> >
> > Then create custom CSS classes and a template using EditTemplate with the
> > HideWhenPlugin.
> >
> > Anyone else think this would be useful?
>
> --
> 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.
>
>

-- 
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] TW notepad

2011-07-18 Thread ionobr...@gmail.com
This is a feature idea.  My TW (which I've worked very hard on, and will
release some time this summer: thanks for all your help, TW Group) has a
panel system for commonly used "index" tiddlers.  I think a "notepad" would
be a useful feature here.  It's a tiddler that never needs to be saved, and
which never goes into 'view' mode.  This functions as kind of a chalkboard.
I often find that when I'm browsing, or doing something else, I want to flip
back to my TW and write a note.  I don't want to go to the trouble of
organizing it.  Often this kind of info needs to be added to an existing
page, or will be deleted soon.  The point is that I want to get it into the
TW as fast as possible and move on.

This would be as simple as: for a tiddler tagged "notepad":

   - disabling the automatic "are you sure you want to close this tiddler
   without saving" message
   - automatically saving the tiddler if it is closed
   - Prevent "notepad" from raising the message "sure you want to close this
   TW with unsaved changes?"
   - automatically saving the tiddler if the wiki is closed (possible?)

Then create custom CSS classes and a template using EditTemplate with the
HideWhenPlugin.

Anyone else think this would be useful?

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



Re: [tw] FiddlyWiki 1.09 released

2011-06-28 Thread ionobr...@gmail.com
One way to embed fonts is like this:

@font-face {
font-family: "anthem";
src: url(fonts/anthem.ttf) format("truetype");
}

then use font-family: anthem; in your css.  This is not fully cross-browser,
you need some other definitions (sort of like -moz- and -webkit- prefixes,
there are equivalents cross-browser).  Just search @font-face and you'll
find some generators that will make the code for you.

Not sure if that's what's being used on FW though.

- Trey

On Tue, Jun 28, 2011 at 3:40 AM, Alex Hough  wrote:

> Dear Rich,
>
> I like the oblique strategies - nice you of Eric's QOTD plugin
> How do you embed the fonts?
>
>
>
> Alex
>
> On 28 June 2011 05:26, Rich  wrote:
> > FiddlyWiki 1.09, A TW instance themed and geared for humanities and
> > social science writing has just been released.
> >
> > It is available at http://way.net/FiddlyWiki
> >
> > changes in 1.09 06/11/2011
> >
> > *New fonts, which are embedded. I'll serve them on way.net unless/
> > until the server gets bombed.
> > *incorporated QuickEdit functions into edit template main toolbar
> > instead of having them separate, fixed colors.
> > *fixed border on tag box which made text jump when the mouse was
> > hovering.
> > *shadows turned off in header to make site subtitle clearer
> > *changed subtitle color
> > *subtab for shadowed, missing, and orphans added
> > *disabled OpenTopPlugin, which was bringing tab focus to the front
> > *miscellaneous cleanup of css
> >
> > --
> > 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.
> >
> >
>
> --
> 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.
>
>

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



Re: [tw] Re: ViewTemplate relying on DataTiddler or custom-fields

2011-06-27 Thread ionobr...@gmail.com
Thank you Mr. Bard, it works great.

On Sun, Jun 26, 2011 at 7:00 PM, Simon Baird  wrote:

> Thanks PMario,
>
> Will merge and do an updated release tonight.
>
> Simon.
>
>
> On Mon, Jun 27, 2011 at 1:20 AM, PMario  wrote:
>
>> Hi Trey,
>> I sent a pull request [1] to Simon. Also TagglyTagging is affected, if
>> you use the TW alpha version.
>> The second link [2] shows the differences. red = removed, green = new.
>>
>> have fun!
>> -m
>> [1] https://github.com/simonbaird/MPTW/pull/7
>> [2] https://github.com/simonbaird/MPTW/pull/7/files
>>
>> --
>> 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.
>>
>>
>
>
> --
> simon.ba...@gmail.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.
>

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



Re: [tw] Re: List of Open Tidders

2011-06-22 Thread ionobr...@gmail.com
Thanks, Tobias,
not tired of it at all!  But I will direct my efforts elsewhere because
Jon's solution works exactly as I need it to.  Making my own version, albeit
a weaker one, was a good exercise.  Thanks for your thoughts, I'm sure I
will be making a plugin at some point in the future and I will refer to
this.
I'm working on learning Python now, for a school project.
Trey

On Wed, Jun 22, 2011 at 12:40 PM, Tobias Beer wrote:

> Just in case you are not tired yet of exploring 'TiddlyCoding'...  :-D
>
> 1) Instead of using a macro, use a plugin and define a placeholder
> with a unique id in your PageTemplate.
>
> 2) Then define your "refresh" function in your plugin equivalent to
> that of your macro but w/o the need for those macro parameters and
> render your list into the DomNode of that unique Id, in case
> getElementById(YourId) actually finds anything.
>
> 3) To ensure that your refresh function and macro use the same id,
> you
> might actually use a macro to render that container box with its
> unique id as stored in the same variable used by your function.
>
> 4) For valid HTML, wrap your li elements in an outer ul.
>
> 5) So now, how do you trigger your refresh function?
>
> Well, you will have to HIJACK the core's functions for opening and
> closing tiddlers.
>
> 6) Consider implementing a global flag turning refresh off for the
> CloseAll macro so that your container wont get refreshed at every
> single tiddler being closed.
>
> Cheers, Tobias.
>
> --
> 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.
>
>

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