[tw] ExternalTiddlersPlugin with sections?

2010-08-01 Thread Dave Parker
Is it possible to view specific sections from an external text file
using ExternalTiddlersPlugin from tiddlytools.com?

I tried

tiddler file##section.txt and tiddler file.txt##section but to
no avail.

Is this even possible?


thanks,
Dave

-- 
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] TreeViewPlugin - how put newHere next to each menu item

2010-08-01 Thread twgrp
[posted on TW Dev some time ago, but no response. Hoping for better
luck here.]

I like the TreeViewPlugin [1] for a hierarchical tree structure menu,
but would like for  a newTiddler type button to appear next to each
item in the tree menu, to easily create new correctly tagged items.

I've located where to put it, but I don't know how to 'phrase' the
macro there so it works - about 3 inches / 1 decimeter up from the
bottom at:
http://treeview.tiddlyspot.com/#TreeviewPluginPlugin2
...is the line:
rtn = rtn +/ul\n ;

Q1) Various attempts to insert a the macro call do not work. I don't
know how to phrase a macro call there or if that is somply the wrong
way all together.

Q2) Actually, it's not the core newTiddler macro I wish to use but
newHere macro from the NewHerePlugin [2]. This creates a new tiddler
but tagged with the name of the tiddler from where the macro was
invoked, thus resulting in it being correctly presented in the tree
menu. I'm guessing this affects how the macro should be called,
containing the name of the menu item to be rendered. There are no
instructions in the plugin itself so I don't know how to do this.

Thank you!

[1] http://treeview.tiddlyspot.com/
...or, my pref. layout: http://twt-treeview-executive.tiddlyspot.com/
[2] http://twt-treeview-executive.tiddlyspot.com/#NewHerePlugin
...or originally; http://mptw.tiddlyspot.com/#NewHerePlugin

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



Re: [tw] Tiddlyspace - Why only lowercase for space name?

2010-08-01 Thread FND

When registering for a new profile, with the intention of creating a
blog, I wanted to use my name... but apparently it must be all lower
case. Can't really see why?


The primary reason is that we need spaces to be valid hostnames (for the 
subdomain; e.g. foo.tiddlyspace.com), and we don't want to have to deal 
with the trouble of having both uppercase and lowercase letters.

This might change in the future, but it's not currently a priority


Also, detail suggestion: Instead of using the word Register, I
suggest e.g Create profile or Desired space name or some such. IMO
the word register is associated with giving out private info.


Good point, actually - thanks.


-- F.

--
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: Unable to get SetTiddlerColums transclusion working

2010-08-01 Thread TonG
Thanks Eric for the elaborate explanation.
Not reproducible results are always difficult to live with. Now I
understand.

The noPreParse fix - as expected - does work.

Tnx again,

Ton

On Jul 31, 10:20 pm, Eric Shulman elsdes...@gmail.com wrote:
  So, I can use the *old* script version but I am curious about why the
  transclusion version does not work (always).

 Transclusions use evaluated parameters in the tiddler macro to
 invoke code.  However, the handler for the tiddler macro has a subtle
 side-effect:

 parseParams() -- the function that processes the evaluated parameters
 -- is being called TWICE for each tiddler macro once by the
 core invokeMacro() function (this is done for ALL macros), and again
 by the tiddler macro's handler (so it can retrieve *named* parameter
 values).

 Unfortunately, because of the way SetTiddlerColumn (and other similar
 transclusions) operate, the doubled processing results in an error
 (too much recursion) that stops the code from working as intended.

 Fortunately, the good news is that I reported this issue quite some
 time ago, and that my suggested *support* for a fix was added to the
 core, starting with TW 2.5.x.  The solution involves switching off
 the pre-parsing done by invokeMacro(), so that only the
 tiddler.handler() parses the parameters and the evaluated params are
 invoked only once.

 The core fix is to look for a special flag, 'noPreParse', associated
 with a given macro, that signals it to bypass the default parsing and
 allow the specific macro handler to do all the parsing itself.

 Note: for backward-compatibility purposes, the 'noPreParse' flag is
 NOT set by default for any core macros, including the tiddler
 macro.  This means that the current behavior, including the double-
 processing side effect, is still  in effect, and ensures that existing
 documents won't have any problems after upgrading to the current TW
 core.

 Nonetheless, it is of course, 100% completely safe to activate the fix
 when writing NEW content, since nothing would be relying upon the old,
 buggy behavior.

 To activate the noPreParse fix for the tiddler macro, you should
 put the following into a tiddler, tagged with 'systemConfig':

 //{{{
 // prevents double processing of tiddler macro
 config.macros.tiddler.noPreParse=true;
 //}}}

 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: Tiddlyspace - Why only lowercase for space name?

2010-08-01 Thread twgrp
Ok, I understand now. Thanks.


On Aug 1, 9:47 am, FND f...@gmx.net wrote:
  When registering for a new profile, with the intention of creating a
  blog, I wanted to use my name... but apparently it must be all lower
  case. Can't really see why?

 The primary reason is that we need spaces to be valid hostnames (for the
 subdomain; e.g. foo.tiddlyspace.com), and we don't want to have to deal
 with the trouble of having both uppercase and lowercase letters.
 This might change in the future, but it's not currently a priority

  Also, detail suggestion: Instead of using the word Register, I
  suggest e.g Create profile or Desired space name or some such. IMO
  the word register is associated with giving out private info.

 Good point, actually - thanks.

 -- F.

-- 
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: Announcing: readCount plugin, for knowing how much of a TW you've read

2010-08-01 Thread twgrp
On Jul 22, 6:56 pm, jnthnlstr jnthnl...@gmail.com wrote:
  Any feedback welcome.

Hey, great plugin! Feedback;
1) Would be good if n UNREAD was a clickable link giving a list of
those unread tiddlers.
2) ...and, deluxe version, if they could be sorted by tags so that you
can tell what subject or such that they belong to.
3) ...also, if #1 is implemented, it'd be good with a count only if
tagged X feature - i.e I send off a TW to a friend and I want him to
know how many of those X-tagged tiddlers he is supposed to read.
4) I take it that this plugin is of particular relevance when others
are reading your TW. Thus, how does the count deal with public and
private tiddlers?
5) The headline over the counting reads Progress throu... and is
cut. I tried enlarging and diminishing the font size (Crtl and + or -)
but can't get it proper.

Thank you again. In deed a problem to know how much you've read in a
TW.


-- 
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] JQSorterPlugin request(s)

2010-08-01 Thread Måns
Hi TwWizards - PMario in particular

I really like the JQSorterPlugin 
http://a-pm-experimental.tiddlyspot.com/#JQSorter.

request#1
I'd like the plugin to be scaled down to 1 or 2 files, instead of
needing to import (was it 10 individual tiddlers??) many tiddlers, not
all documented in the plugin itself..

The ability to sort tiddlerlists of tiddlerlinks with drag'n drop is
something that I believe would be much more widespread if the plugin
is more easily implemented...

This plugin might be a nice replacement for Paul Downey's
DragSortPlugin http://tiddlyslidy.com/#MainMenuOrderPlugin

request#2
Now the plugin works best as a secondlevel-sorter - it takes a
tiddlers list of tiddlers which constitutes a story and lets you
change the order as well as watching what's inside each tiddler. If
you use it as a firstlevel-sorter on a tiddler, which isn't merely a
tiddlerlinkslist, it will reformat each line to tiddlerlinks - and
create all sorts of random links..
I would like it to be able to ignore everything *not* beeing
tiddlerlinks on a single line, when sorting - *or* create a new
JQSortSectionsPlugin, which in conjunction with Eric's
editSectionPlugin would make it a breeze to edit and rearrange large
tiddlers...

Regards Måns Mårtensson

-- 
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] Easy formatting

2010-08-01 Thread acedepase
Hey everyone. Does anyone know of a good plugin that makes formatting
easy? I downloaded Yann Perrin's EASE and easyFormat, but it didn't
seem to work. Maybe there's a better one out there? Thanks!!!

-- 
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: Easy formatting

2010-08-01 Thread Eric Shulman
 Hey everyone. Does anyone know of a good plugin that makes formatting
 easy? I downloaded Yann Perrin's EASE and easyFormat, but it didn't
 seem to work. Maybe there's a better one out there? Thanks!!!

http://www.TiddlyTools.com/#QuickEditPackage

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: JQSorterPlugin request(s)

2010-08-01 Thread PMario
On Aug 1, 6:03 pm, Måns humam...@gmail.com wrote:
 Hi TwWizards - PMario in particular

 I really like the 
 JQSorterPluginhttp://a-pm-experimental.tiddlyspot.com/#JQSorter.
cool. I didn't expect, that someone exept of me really uses it.

 request#1
 I'd like the plugin to be scaled down to 1 or 2 files, instead of
 needing to import (was it 10 individual tiddlers??) many tiddlers, not
 all documented in the plugin itself..
me too :) I use it with tiddlyWeb hoster now, which makes things much
easier

 The ability to sort tiddlerlists of tiddlerlinks with drag'n drop is
 something that I believe would be much more widespread if the plugin
 is more easily implemented...
hmm. right

 This plugin might be a nice replacement for Paul Downey's
 DragSortPlugin http://tiddlyslidy.com/#MainMenuOrderPlugin
I did't know, that this plugin exists. thx :)

 request#2
 Now the plugin works best as a secondlevel-sorter - it takes a
 tiddlers list of tiddlers which constitutes a story and lets you
 change the order as well as watching what's inside each tiddler. If
 you use it as a firstlevel-sorter on a tiddler, which isn't merely a
 tiddlerlinkslist, it will reformat each line to tiddlerlinks - and
 create all sorts of random links..
 I would like it to be able to ignore everything *not* beeing
 tiddlerlinks on a single line, when sorting - *or* create a new
 JQSortSectionsPlugin, which in conjunction with Eric's
 editSectionPlugin would make it a breeze to edit and rearrange large
 tiddlers...
At the time, I did this plugin, I was very fascinated about the widget
implementation at jQueryUI demo site. So I couldn't see, that much
easier sorting implementaions would be possible. That's why jQSorter
is much bigger, than it could be.

 Now the plugin works best as a secondlevel-sorter - it takes a
 tiddlers list of tiddlers which constitutes a story and lets you
 change the order as well as watching what's inside each tiddler.
Is the watching feature essential, or is it a nice to have?

I'll explain some ideas in the next post.
-m

-- 
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: JQSorterPlugin request(s)

2010-08-01 Thread PMario
some ideas.
What I want to have in the main menu is: list filter
[tag[mainMenu]]
So if I tag a tiddler mainMenu it is automatically added to the main
menu. I do use this mechanism a lot. The only disadvantage is, that it
returns an alphabetically sorted list.

I will do the following. Enable a xSort plugin, to sort by custom
field value. eg: order.tagName. Create two macros, that can be
activated as bookmarks. 1) dynamically load the jQueryUI stuff. 2)
xSort generates sortable lists and write the sortorder back to the
tiddlers custom field. If everything is sorted, save and reload and
all the additional stuff is gone. Your tw stays small :)

possibilities:
list xSort [tag[mainMenue]] .. for the menue
list xSort [tag[story_1]] .. story 1 ...

regards mario

-- 
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: Bug report: Tiddler CSS ID containing spaces

2010-08-01 Thread Eric Shulman
 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.

This works:

div[tiddler=Title Of Tiddler Goes Here].tiddler .viewer
   { ... }


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.