[tw] Re: using excludeLinks to de-clutter Tiddler menu

2010-12-09 Thread Kolya33
On Dec 7, 10:07 pm, Smandoli themanthurs...@gmail.com wrote:
 I'm happy with this solution, but I ask:  is there a better method?

I went about it the other way and tagged my content (with c for
content).
Not sure that's better. I mainly did it to keep system tiddlers easily
available and still be able to have plugins only display/act on
content items.

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



[tw] Re: How to create a tiddly link in HTML

2010-12-04 Thread Kolya33
I managed to fix this by using jQuery instead of $ in the script,
unlinking an external jQuery library and instead updating the one
integrated in TiddlyWiki with the current jQuery 1.4.4. (Upgrade
instructions:
http://groups.google.com/group/tiddlywiki/browse_thread/thread/9ce2f7abab3acc82/d7bc7890c07fabf0?lnk=gstq=jquery#d7bc7890c07fabf0)


On Dec 4, 5:00 pm, rakugo jdlrob...@gmail.com wrote:
 I'm using Safari, which is most similar to Chrome so if you fix it in
 Chrome it should fix for Safari too. Good luck solving.

 Jon

 On Dec 4, 3:55 am, Kolya33 koly...@googlemail.com wrote:

  Huh, that's interesting. It works fine in Firefox and IE but Chrome
  throws an error message on a few items which is similar to the one you
  wrote, but not the same. What browser do you use?
  Thanks for the heads-up anyway.

  Kolya

  On Dec 3, 12:30 pm, rakugo jdlrob...@gmail.com wrote:

   Very nice.

   Just to let you know I see this error message several times when I
   view it:
   TypeError: Result of expression '$(id_img).before' [undefined] is not
   a function

   Jon

   On Dec 3, 12:04 am, Kolya33 koly...@googlemail.com wrote:

Wow! Thank you. I can't believe I got this working with your help and
my non-existent JS skills.
Now all thumbnails are linked to their respective tiddlers. 
(http://www.schwarzsilber.de/#Video)
The thumbnails are pulled from 3 different video sites (Youtube,
Vimeo, Dailymotion). That didn't make it too easy.
I also used your (Eric's) ImageSizePlugin to size some of them. I had
to change it a bit because the SHIFT-CLICK and CTRL-CLICK message and
move-cursor came in the way of the link.
Anyway, I'm glad it works now. Thanks again.

Regards, Kolya

On Dec 2, 9:00 pm, Eric Shulman elsdes...@gmail.com wrote:

  Is there a Javascript function that I can pass the name of a 
  tiddler,
  which will then open that tiddler, like clicking on a wikified link?

 story.displayTiddler(after,title,template)

 where:

 after = tiddler DOM element or null or top or bottom
    the location in which the tiddler will be displayed
 title = tiddler title
    the name of the tiddler to be displayed
 template = template title or NULL or DEFAULT_VIEW_TEMPLATE or
 DEFAULT_EDIT_TEMPLATE
    the name of the tiddler defining the template to be used when
 rendering

 Thus, the following will open SomeTiddler at the top of the story
 column:
    story.displayTiddler(null,'SomeTiddler')

 To open a tiddler immediately following the current one (the usual TW
 core behavior for a TiddlyLink), you can also *find the current
 containing tiddler element* and pass it along, like this:

 story.displayTiddler(story.findContainingTiddler(this),'SomeTiddler')

 To open a tiddler for *editing* using a standard core TW editor, you
 can write:
    story.displayTiddler(null,'SomeTiddler',DEFAULT_EDIT_TEMPLATE)

 To open a tiddler for viewing with a custom template:
    story.displayTiddler(null,'SomeTiddler','SomeViewTemplate');

 enjoy,
 -e
 Eric Shulman
 TiddlyTools / ELS Design Studios

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



[tw] Re: How to create a tiddly link in HTML

2010-12-03 Thread Kolya33
Huh, that's interesting. It works fine in Firefox and IE but Chrome
throws an error message on a few items which is similar to the one you
wrote, but not the same. What browser do you use?
Thanks for the heads-up anyway.

Kolya


On Dec 3, 12:30 pm, rakugo jdlrob...@gmail.com wrote:
 Very nice.

 Just to let you know I see this error message several times when I
 view it:
 TypeError: Result of expression '$(id_img).before' [undefined] is not
 a function

 Jon

 On Dec 3, 12:04 am, Kolya33 koly...@googlemail.com wrote:

  Wow! Thank you. I can't believe I got this working with your help and
  my non-existent JS skills.
  Now all thumbnails are linked to their respective tiddlers. 
  (http://www.schwarzsilber.de/#Video)
  The thumbnails are pulled from 3 different video sites (Youtube,
  Vimeo, Dailymotion). That didn't make it too easy.
  I also used your (Eric's) ImageSizePlugin to size some of them. I had
  to change it a bit because the SHIFT-CLICK and CTRL-CLICK message and
  move-cursor came in the way of the link.
  Anyway, I'm glad it works now. Thanks again.

  Regards, Kolya

  On Dec 2, 9:00 pm, Eric Shulman elsdes...@gmail.com wrote:

Is there a Javascript function that I can pass the name of a tiddler,
which will then open that tiddler, like clicking on a wikified link?

   story.displayTiddler(after,title,template)

   where:

   after = tiddler DOM element or null or top or bottom
      the location in which the tiddler will be displayed
   title = tiddler title
      the name of the tiddler to be displayed
   template = template title or NULL or DEFAULT_VIEW_TEMPLATE or
   DEFAULT_EDIT_TEMPLATE
      the name of the tiddler defining the template to be used when
   rendering

   Thus, the following will open SomeTiddler at the top of the story
   column:
      story.displayTiddler(null,'SomeTiddler')

   To open a tiddler immediately following the current one (the usual TW
   core behavior for a TiddlyLink), you can also *find the current
   containing tiddler element* and pass it along, like this:

   story.displayTiddler(story.findContainingTiddler(this),'SomeTiddler')

   To open a tiddler for *editing* using a standard core TW editor, you
   can write:
      story.displayTiddler(null,'SomeTiddler',DEFAULT_EDIT_TEMPLATE)

   To open a tiddler for viewing with a custom template:
      story.displayTiddler(null,'SomeTiddler','SomeViewTemplate');

   enjoy,
   -e
   Eric Shulman
   TiddlyTools / ELS Design Studios

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



[tw] How to create a tiddly link in HTML

2010-12-02 Thread Kolya33
I need to create a tiddly link in HTML, that is a link from one
tiddler to another. The reason for the HTML is that the link will
embrace a thumbnail image which will be loaded via another script into
an IMG element that has to be marked with a CSS ID. So I tried
something like this:

function getVIMNail(id, title) {
if (id != ) { return htmla href=\%23%5B
%5B+encodeURIComponent(title)+%5D%5D\img id=\vimeo-+id+\ src=
\\ //htmlscriptvimeoLoadingThumb(+id+);/script ;  } else
return ;}


The above function gets passed a video-ID and the according
tiddler.title and correctly writes a linked thumbnail-image, for
example linking to:
http://www.schwarzsilber.de#[[James Blake - The Limit To Your Love]]
But clicking this link of course opens a new instance of the TW in
another tab/window. So how do I write a tiddly link in HTML?

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



[tw] Re: How to create a tiddly link in HTML

2010-12-02 Thread Kolya33
I realise I may not have been very precise in my question, because I'm
not looking for a *pure* HTML solution of course. But one that will
work inside HTML tags, inside a tiddler. I'll try to be more specific:

Is there a Javascript function that I can pass the name of a tiddler,
which will then open that tiddler, like clicking on a wikified link?

Regards, Kolya


On Dec 2, 1:52 pm, Kolya33 koly...@googlemail.com wrote:
 I need to create a tiddly link in HTML, that is a link from one
 tiddler to another. The reason for the HTML is that the link will
 embrace a thumbnail image which will be loaded via another script into
 an IMG element that has to be marked with a CSS ID. So I tried
 something like this:

 function getVIMNail(id, title) {
 if (id != ) { return htmla href=\%23%5B
 %5B+encodeURIComponent(title)+%5D%5D\img id=\vimeo-+id+\ src=
 \\ //htmlscriptvimeoLoadingThumb(+id+);/script ;  } else
 return ;}

 The above function gets passed a video-ID and the according
 tiddler.title and correctly writes a linked thumbnail-image, for
 example linking to:http://www.schwarzsilber.de#[[James Blake - The Limit To 
 Your Love]]
 But clicking this link of course opens a new instance of the TW in
 another tab/window. So how do I write a tiddly link in HTML?

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



[tw] Re: How to create a tiddly link in HTML

2010-12-02 Thread Kolya33
Wow! Thank you. I can't believe I got this working with your help and
my non-existent JS skills.
Now all thumbnails are linked to their respective tiddlers. (http://
www.schwarzsilber.de/#Video)
The thumbnails are pulled from 3 different video sites (Youtube,
Vimeo, Dailymotion). That didn't make it too easy.
I also used your (Eric's) ImageSizePlugin to size some of them. I had
to change it a bit because the SHIFT-CLICK and CTRL-CLICK message and
move-cursor came in the way of the link.
Anyway, I'm glad it works now. Thanks again.

Regards, Kolya

On Dec 2, 9:00 pm, Eric Shulman elsdes...@gmail.com wrote:
  Is there a Javascript function that I can pass the name of a tiddler,
  which will then open that tiddler, like clicking on a wikified link?

 story.displayTiddler(after,title,template)

 where:

 after = tiddler DOM element or null or top or bottom
    the location in which the tiddler will be displayed
 title = tiddler title
    the name of the tiddler to be displayed
 template = template title or NULL or DEFAULT_VIEW_TEMPLATE or
 DEFAULT_EDIT_TEMPLATE
    the name of the tiddler defining the template to be used when
 rendering

 Thus, the following will open SomeTiddler at the top of the story
 column:
    story.displayTiddler(null,'SomeTiddler')

 To open a tiddler immediately following the current one (the usual TW
 core behavior for a TiddlyLink), you can also *find the current
 containing tiddler element* and pass it along, like this:

 story.displayTiddler(story.findContainingTiddler(this),'SomeTiddler')

 To open a tiddler for *editing* using a standard core TW editor, you
 can write:
    story.displayTiddler(null,'SomeTiddler',DEFAULT_EDIT_TEMPLATE)

 To open a tiddler for viewing with a custom template:
    story.displayTiddler(null,'SomeTiddler','SomeViewTemplate');

 enjoy,
 -e
 Eric Shulman
 TiddlyTools / ELS Design Studios

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



[tw] Re: Facebook Like button for individual tiddlers

2010-11-21 Thread Kolya33


On Nov 17, 11:58 pm, bengillies bengill...@gmail.com wrote:
 Hi

 I've been looking at this myself today and, 
 ifhttp://efreedom.com/Question/1-3467296/Facebook-Like-Buttons-URL-Strings
 is correct, it doesn't look like Facebook supports the hash fragment
 of URLs at all.

 I'm not entirely sure what you're running on, but TiddlySpace (and
 TiddlyWeb) at least supports non-hash based links for each tiddler, so
 all is not lost.

 With that in mind, I've created a facebook 
 spacehttp://facebook.tiddlyspace.com
 that allows you to like the non-hash based url using the macro:

 fbLike

 within a tiddler, or

 fbLike space

 to like an individual tiddler, or a space as a whole.

 Ben

I'm running a plain TiddlyWiki. The statement that FB doesn't support
the hash-sign is consistent with what I found out about FB only
supporting items that have their own page. (http://stackoverflow.com/
questions/2754077/multiple-facebook-like-buttons-different-activities-
on-one-page)
With the iframe version of the button, just a SEO friendly URL might
do the job. So I'll see if I can get SEO URLs into TW. Bet there's a
plugin for that too.

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



[tw] Re: Facebook Like button for individual tiddlers

2010-11-15 Thread Kolya33
Even if replacing # for _ or ? would work to separate URLs on
Facebook, it breaks the link.


On Nov 15, 4:54 pm, rakugo jdlrob...@gmail.com wrote:
 Try
 var fu=url+_+permalink;
 or
 var fu=url+?+permalink;

 I would hope it would recognise the url even if it is not real

 Let us know how you get on. I would be interested in your results.
 Jon

 On Nov 15, 3:32 pm, Kolya33 koly...@googlemail.com wrote:

  I've got a tiddler named facebookLike with this content:
  script
  if (!window.story) window.story=window;
  var url=store.getTiddlerText(SiteUrl);
  var title=story.findContainingTiddler(place).id.substr(7);
  var permalink=encodeURIComponent(String.encodeTiddlyLink(title));
  var fu=url+#+permalink;
  return htmliframe src='http://www.facebook.com/plugins/like.php?
  href=+fu
  +amp;layout=button_countamp;show_faces=falseamp;width=400amp;action=li 
  keamp;font=tahomaamp;colorscheme=lightamp;height=21'
  scrolling=no frameborder=0 style='border:none; overflow:hidden; width:
  400px; height:21px;' allowTransparency='true'/iframe/html;
  /script

  facebookLike then gets called in ViewTemplate: div macro='tiddler
  facebookLike'/div
  All fine. Except that Facebook apparently does not accept anchors as
  separate URLs, so the Like button is always for the complete site
  and not individual tiddlers.

  Any ideas on how to fool Facebook into accepting anchors would be
  appreciated.

  I based the code on a href=http://twhelp.tiddlyspot.com/
  #TiddlerBookmarkTiddlerBookmark /a and the a href=http://
  developers.facebook.com/docs/reference/plugins/like#Facebook button
  generator/a.



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



[tw] Re: Facebook Like button for individual tiddlers

2010-11-15 Thread Kolya33
I've basically figured this out now. The likes on the Facebook.com
profile still show up as the tiddlywiki-title but the links there
work. I'll see if I can fix it, but for today I've had enough of this.

script
if (!window.story) window.story=window;
var url=store.getTiddlerText(SiteUrl);
var title=story.findContainingTiddler(place).id.substr(7);
var permalink=encodeURIComponent(String.encodeTiddlyLink(title));
var fu=url+'%23'+permalink;

return htmliframe src='http://www.facebook.com/plugins/like.php?
href=+fu+amp;ref=+fu
+amp;layout=button_countamp;show_faces=falseamp;width=90amp;action=likeamp;font=tahomaamp;colorscheme=lightamp;height=21'
scrolling=no frameborder=0 style='border:none;overflow:hidden;width:
90px;height:21px;float:left;' allowTransparency='true'/iframe/
html;
/script





On Nov 15, 5:27 pm, Kolya33 koly...@googlemail.com wrote:
 Even if replacing # for _ or ? would work to separate URLs on
 Facebook, it breaks the link.

 On Nov 15, 4:54 pm, rakugo jdlrob...@gmail.com wrote:

  Try
  var fu=url+_+permalink;
  or
  var fu=url+?+permalink;

  I would hope it would recognise the url even if it is not real

  Let us know how you get on. I would be interested in your results.
  Jon

  On Nov 15, 3:32 pm, Kolya33 koly...@googlemail.com wrote:

   I've got a tiddler named facebookLike with this content:
   script
   if (!window.story) window.story=window;
   var url=store.getTiddlerText(SiteUrl);
   var title=story.findContainingTiddler(place).id.substr(7);
   var permalink=encodeURIComponent(String.encodeTiddlyLink(title));
   var fu=url+#+permalink;
   return htmliframe src='http://www.facebook.com/plugins/like.php?
   href=+fu
   +amp;layout=button_countamp;show_faces=falseamp;width=400amp;action=li
keamp;font=tahomaamp;colorscheme=lightamp;height=21'
   scrolling=no frameborder=0 style='border:none; overflow:hidden; width:
   400px; height:21px;' allowTransparency='true'/iframe/html;
   /script

   facebookLike then gets called in ViewTemplate: div macro='tiddler
   facebookLike'/div
   All fine. Except that Facebook apparently does not accept anchors as
   separate URLs, so the Like button is always for the complete site
   and not individual tiddlers.

   Any ideas on how to fool Facebook into accepting anchors would be
   appreciated.

   I based the code on a href=http://twhelp.tiddlyspot.com/
   #TiddlerBookmarkTiddlerBookmark /a and the a href=http://
   developers.facebook.com/docs/reference/plugins/like#Facebook button
   generator/a.



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



[tw] Re: Facebook Like button for individual tiddlers

2010-11-15 Thread Kolya33
Nope, actually this still isn't solved.

Although the full URL including tiddler is passed to facebook,
facebook got stuck on one tiddler. Every like-action counted towards
that tiddler then and accordingly showed that tiddler's link on
Facebook.

Apparently Facebook has some problems dealing with several buttons on
one page correctly.



On Nov 15, 6:43 pm, Kolya33 koly...@googlemail.com wrote:
 I've basically figured this out now. The likes on the Facebook.com
 profile still show up as the tiddlywiki-title but the links there
 work. I'll see if I can fix it, but for today I've had enough of this.

 script
 if (!window.story) window.story=window;
 var url=store.getTiddlerText(SiteUrl);
 var title=story.findContainingTiddler(place).id.substr(7);
 var permalink=encodeURIComponent(String.encodeTiddlyLink(title));
 var fu=url+'%23'+permalink;

 return htmliframe src='http://www.facebook.com/plugins/like.php?
 href=+fu+amp;ref=+fu
 +amp;layout=button_countamp;show_faces=falseamp;width=90amp;action=likeamp;font=tahomaamp;colorscheme=lightamp;height=21'
 scrolling=no frameborder=0 style='border:none;overflow:hidden;width:
 90px;height:21px;float:left;' allowTransparency='true'/iframe/
 html;
 /script

 On Nov 15, 5:27 pm, Kolya33 koly...@googlemail.com wrote:

  Even if replacing # for _ or ? would work to separate URLs on
  Facebook, it breaks the link.

  On Nov 15, 4:54 pm, rakugo jdlrob...@gmail.com wrote:

   Try
   var fu=url+_+permalink;
   or
   var fu=url+?+permalink;

   I would hope it would recognise the url even if it is not real

   Let us know how you get on. I would be interested in your results.
   Jon

   On Nov 15, 3:32 pm, Kolya33 koly...@googlemail.com wrote:

I've got a tiddler named facebookLike with this content:
script
if (!window.story) window.story=window;
var url=store.getTiddlerText(SiteUrl);
var title=story.findContainingTiddler(place).id.substr(7);
var permalink=encodeURIComponent(String.encodeTiddlyLink(title));
var fu=url+#+permalink;
return htmliframe src='http://www.facebook.com/plugins/like.php?
href=+fu
+amp;layout=button_countamp;show_faces=falseamp;width=400amp;action=li
 keamp;font=tahomaamp;colorscheme=lightamp;height=21'
scrolling=no frameborder=0 style='border:none; overflow:hidden; width:
400px; height:21px;' allowTransparency='true'/iframe/html;
/script

facebookLike then gets called in ViewTemplate: div macro='tiddler
facebookLike'/div
All fine. Except that Facebook apparently does not accept anchors as
separate URLs, so the Like button is always for the complete site
and not individual tiddlers.

Any ideas on how to fool Facebook into accepting anchors would be
appreciated.

I based the code on a href=http://twhelp.tiddlyspot.com/
#TiddlerBookmarkTiddlerBookmark /a and the a href=http://
developers.facebook.com/docs/reference/plugins/like#Facebook button
generator/a.



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



[tw] Re: How to fold/unfold filter tipped lists by date

2010-10-19 Thread Kolya33
How about a timeframe-parameter then?
eg. from September 2008 - Today
For me it's fine if there are a few empty months because I haven't
written anything in that time.
But right now the plugin displays empty months in the future of the
current year. And it also shows months  years that are older than any
of the tiddlers that I have the navigation restricted to by tag. (I
guess that is because there are tiddlers from plugins that are way
older.)

If you want to go through with hiding or greying-out empty buttons
instead, they should probably be hidden or greyed-out by default and
only get active if there are results - that is, reverse the check.

Anyway, thanks for your work. It is appreciated.

Regards, Kolya



On Oct 16, 12:28 am, Tobias Beer beertob...@googlemail.com wrote:
 Hi Kolya,

 Thanks for the feedback. As for hiding those buttons for which the
 results are empty... that might have quite a negative impact on
 performance as I would have to precalculate for all displayed filter
 buttons if results exist if one were to click them.

 It gets rather complicated and might even be confusing to a user: If I
 click on a username to filter the results by that user... that would
 mean that also the date ranges and available tags might change as
 there might not be tiddlers for that user in a given range.

 Well, I want to refactor the plugin anyways and redesign it to use
 jQuery data to store parameters. Maybe, while at it, I can figure out
 a way that doesn't require tons of code to conditionally hide those
 buttons.

 As for that bug, I have fixed it and will upload an update soon.

 However, I cannot reproduce what you've written about the dates always
 being modified dates, that seems incorrect.

 Cheers, Tobias.

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



[tw] Re: How to fold/unfold filter tipped lists by date

2010-10-15 Thread Kolya33
Some more bugs/problems:
- When sortField:created, tiddlers older than a year don't show, nor
do the buttons for these years
- And as mentioned above, when sortField:-created, empty years show
- The dates shown in the results (fmtDate:0DD.0MM.) are always
Modfied dates, even when sorted by created.

Kolya



On Oct 10, 3:48 am, Kolya33 koly...@googlemail.com wrote:
 Oh, I thought you were joking when you said: Just created one... ;o)
 Thank you a lot, especially for fixing that one-tag-problem.

 I'm using it on my video page 
 now:http://www.schwarzsilber.de/#[[Music%20Videos]]

 Is there a way to hide buttons that won't yield a result? Or restrict
 the whole navigation to a certain time-frame?
 It's not so bad when I have things sorted by created, where it only
 shows the last year, although with several empty months when I hadn't
 started the site yet.
 However when I reverse the sorting (-created) as I'd like to, for some
 reason several years show up that are all empty (2005-2009).

 Kolya

 On Oct 8, 12:54 pm, Tobias Beer beertob...@googlemail.com wrote:

  Hi Kolya,

  I have added that missing functionality to hide the tags filter.

  So you can define tags by which to filter, yet not have to click any.
  Note that they are combined using OR logic... meaning the list will
  show all items tagged with any of said tags. To remove some, take any
  excludeTag you want and define it as such.

  By the way... I developped the macro the minute I read your post... so
  it's not like it existed before... and it only started with the date
  filter... but I figured there would be other filters people would want
  to be able to use.

  I also have renamed it to FiltrPlugin [1] to sound snappier and to
  avoid confusion with another plugin that sounded much similar
  beforehand ...and because I am working on exciting new stuff which
  will sound somewhat similar.

  Cheers, Tobias.

  [1]http://tobibeer.tiddlyspace.com/#Filtr

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



[tw] Re: How to fold/unfold filter tipped lists by date

2010-10-09 Thread Kolya33
Oh, I thought you were joking when you said: Just created one... ;o)
Thank you a lot, especially for fixing that one-tag-problem.

I'm using it on my video page now: 
http://www.schwarzsilber.de/#[[Music%20Videos]]

Is there a way to hide buttons that won't yield a result? Or restrict
the whole navigation to a certain time-frame?
It's not so bad when I have things sorted by created, where it only
shows the last year, although with several empty months when I hadn't
started the site yet.
However when I reverse the sorting (-created) as I'd like to, for some
reason several years show up that are all empty (2005-2009).

Kolya


On Oct 8, 12:54 pm, Tobias Beer beertob...@googlemail.com wrote:
 Hi Kolya,

 I have added that missing functionality to hide the tags filter.

 So you can define tags by which to filter, yet not have to click any.
 Note that they are combined using OR logic... meaning the list will
 show all items tagged with any of said tags. To remove some, take any
 excludeTag you want and define it as such.

 By the way... I developped the macro the minute I read your post... so
 it's not like it existed before... and it only started with the date
 filter... but I figured there would be other filters people would want
 to be able to use.

 I also have renamed it to FiltrPlugin [1] to sound snappier and to
 avoid confusion with another plugin that sounded much similar
 beforehand ...and because I am working on exciting new stuff which
 will sound somewhat similar.

 Cheers, Tobias.

 [1]http://tobibeer.tiddlyspace.com/#Filtr

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



[tw] Re: How to fold/unfold filter tipped lists by date

2010-10-06 Thread Kolya33
This macro does provide provide buttons for a date ordered list. And
it does provide another button row for tag restriction.
However I have just 1 tag that the tiddlers are supposed to be
implicitly restricted by, not via another button.

If I have just one tag-button the results are not automatically
restricted to this tag. Instead the macro ignores the tag restriction
by default and just shows all tiddlers. Then you have to click the
already selected(!) button to bring the restriction into effect.
Basically it doesn't work with just one tag.

Thank you for your help anyway. It is a versatile macro, but it
doesn't seem to be able to achieve what I wanted.

Regards, Kolya


On Sep 27, 2:01 pm, Tobias Beer beertob...@googlemail.com wrote:
 Just created one... ;o)

 http://tobibeer.tiddlyspace.com/#FilterTiddlers

 Cheers, Tobias.

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



[tw] Re: How to fold/unfold filter tipped lists by date

2010-09-26 Thread Kolya33
Well how would I create a date-range filter like that?


On Sep 24, 2:34 am, Tobias Beer beertob...@googlemail.com wrote:
 Hi Kolya,

 That's a neat site. I like those gifs!

 On the other hand, I find trees pretty annoying.

 What would you think of a kind of filter? The first row would provide
 year-buttons, when - if clicked - only those results of that year are
 being displayed. The second row would be an equivalent month filter.
 One more button to reset the lot and you're set.

 The buttons could actually have two functions...
 1) single select
 2) range select

 What do you think? Other than that, you could try and implement
 something like 
 this...http://bassistance.de/jquery-plugins/jquery-plugin-treeview

 ...provided that you have a macro that outputs the lists in the
 required format and loaded
 * jquery.treeview.min.js (tagged systemConfig)
 * jquery.treeview.css (included by your StyleSheet)

 ...into TiddlyWiki.

 Cheers, Tobias.

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



[tw] How to fold/unfold filter tipped lists by date

2010-09-23 Thread Kolya33
I'm using filter-tipped lists on my site to present content types by
tags, eg all tiddlers containing a music-video, ordered by creation
date. (see: http://www.schwarzsilber.de/#[[Music%20Videos]])

Now this list is bound to get very long and I would like to see it
fold and indented by years and months. Like this:

- 2011
  - February
 tiddler
  + January
+ 2010
+ 2009

So you would click on a year node to unfold the months, then a month
to unfold the tiddlers from that period, then the tiddler you actually
want to open.
Preferably it emulate the windows explorer behaviour of closing sister
nodes when opening a node but that's not too important.

Maybe  you can point me in the direction of a plugin, or better yet:
How to integrate this function with the filter-tipped lists I have?

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



[tw] Re: I just wrote this small beginners manual, any comments?

2010-08-11 Thread Kolya33
Yes, link-shorteners are bad. I want to see where I'm sailing and the
actual link wasn't too long anyway.

Your article contains quite a lot of grammar and spelling mistakes. I
just stopped reading when I ran across this gem:
 In order to be able to modify every browser will have to be able to modify 
 it. In general is a simple click, but some browsers IE will have this option 
 a little modre hidden.

What I personally would put first when explaining TW is that it's a //
single user local note-keeping application//.
The wiki moniker is misleading in my opinion because most people
expect a collaborative online software a la Wikipedia.
And the official site makes no attempts to correct these expectations
([...] has all the characteristics of a wiki [...])

Regards,
Kolya




On Aug 11, 12:06 am, Miguel Esquirol miguelesqui...@gmail.com wrote:
 This is a small manual for TiddlyWiki I just wrote. Thanks everybody
 for thishttp://is.gd/ec2d6

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



[tw] Bug report: Tiddler CSS ID containing spaces

2010-08-01 Thread Kolya33
It seems to be impossible to create specific CSS rules for a tiddler
that has spaces in the title.
While an ID gets generated for the tiddler and contains the title, the
spaces are not removed or replaced.
Since spaces function as selectors in CSS, the tiddler cannot be
accessed with CSS.

Example: Name of the tiddler: Wendy Rene Forever
Generated Code:
div template=ViewTemplate tiddler=Wendy Rene Forever tags=music
Wendy Rene refresh=tiddler id=tiddlerWendy Rene Forever
class=tiddler selected

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



[tw] Re: HTML form not rendered in IE (Error in macro view)

2010-07-09 Thread Kolya33
Figured it out. But it might be something for you developers to look
at:

Any HTML code containing P-tags will break the macro view in
Internet Explorer.



On Jul 9, 4:03 am, Kolya33 koly...@googlemail.com wrote:
 The HTML in this tiddler (a contact form) is rendered fine in Firefox
 and Chrome, but in Internet Explorer I get a macro 
 error:http://www.schwarzsilber.de/#Kontakt

 I'm not sure how that macro can work in one browser and not in
 another. Any help would be appreciated.

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