> tiddlywiki = new v2.4.3 plus the SectionLinksPlugin: v1.1.0 / Firefox v3.
>       - [[ Notes - misc test |  file:./notes.html#misc%20test  ]]
>    - I want it to open [[misc test]] in the notes.html file.
>    - Both produce the same result  ...
>       - Open "misc" tiddler (which exists)
>       - Open prototype "test" tiddler, that "doesn't exist yet"
>       - I want it to only open the tiddler "misc test" (which exists), that
>    is indicated by the uri
>    - HOW can I jump to a new file with the tiddler:  "misc test"??

The problem you described has *nothing* to do with SectionLinkPlugin,
and is simply an incorrect understanding of TiddlyWiki's URL
'paramifier' syntax.

TiddlyWiki can use the "#..." hash-string to pass in multiple
"paramifiers" on the same URL.  Paramifiers are separated from each
other spaces (using standard URL-encoded value of %20), and have the
format "function:value".  For example
   "open:TiddlerName"
   "search:keyword"
   "tag:tagValue", etc.
If you omit the "function:" portion from a paramifier, "open" is
assumed.

In your link, you wrote: "#misc%20test".  However, as noted above, due
to the %20 (space) character this will be processed as "open:misc
open:test", which produces exactly the results you describe (i.e., two
incorrect tiddlers being opened instead of the one intended).

To use a paramifier with a TiddlerName that includes spaces (e.g.,
"Tiddler with spaces"), you must enclose the tiddlername within
doubled square-brackets, like this:
   [[Tiddler with spaces]]
... and, because this occurs within a URL, the brackets themselves
need to be URL-encoded (use %5B for "[" and %5D for "]"), like this:
   #%5B%5BTiddler%20with%20spaces%5D%5D

Thus, your link attempt was *almost* correct, and simply needs the
addition of the encoded brackets in order for it to work as you
expect, like this:

   [[Notes - misc test|file:./notes.html#%5B%5Bmisc%20test%5D%5D]]

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 [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to