Great, glad to hear it. But a shame that Firefox doesn't work anymore. In
due course TiddlySpot can integrate TW5 directly, and this issue won't
matter anyhow.

Best wishes

Jeremy



On Sun, Nov 10, 2013 at 7:10 PM, Ton Gerner <[email protected]> wrote:

> Hi Jeremy,
>
> You are right, I forgot to re-enter my password. Now it is working.
>
> Thanks,
>
> Ton
>
>
> On Sunday, November 10, 2013 8:04:38 PM UTC+1, Jeremy Ruston wrote:
>
>> I CANNOT save in FF to my newly made TiddlySpot site uploaded in Chrome.
>>> I get a window to open or save a file with a "strange" name (2eccb161....).
>>>
>>
>> It sounds like it's falling back to the download saver. Have you
>> re-entered your password in the TiddlySpot tiddler? The password is stored
>> locally in the browser, and so will need to be re-entered when you move.
>>
>> Best wishes
>>
>> Jeremy
>>
>>
>>> I CAN save in FF to my TiddlySpot site made with alpha10; after a few
>>> seconds I get the familiar "0 - Fileindex.html" message.
>>>
>>> Cheers,
>>>
>>> Ton
>>>
>>>
>>> On Sunday, November 10, 2013 7:49:38 PM UTC+1, Jeremy Ruston wrote:
>>>
>>>> Hi Ton
>>>>
>>>> I'm seeing the same error in Firefox. The error suggests that the
>>>> problem is that the XMLhttprequest is disallowed by Firefox for security
>>>> reasons. Once you've got the wiki saved to TiddlySpot in Chrome you should
>>>> be able to visit it at x.tiddlyspot.com in Firefox and save OK - can
>>>> you verify that?
>>>>
>>>> Best wishes
>>>>
>>>> Jeremy
>>>>
>>>>
>>>>
>>>> On Sun, Nov 10, 2013 at 6:42 PM, Ton Gerner <[email protected]> wrote:
>>>>
>>>>> Hi Jeremy,
>>>>>
>>>>> Firefox 25, Windows 7 64-bit.
>>>>> That combination I used with alpha10 also.
>>>>>
>>>>> I just tested with Chrome 30 and I succeeded in uploading.
>>>>> Repeated with FF but got the mentioned Javascript error again
>>>>>
>>>>> Cheers,
>>>>>
>>>>> Ton
>>>>>
>>>>>
>>>>> On Sunday, November 10, 2013 7:33:28 PM UTC+1, Jeremy Ruston wrote:
>>>>>
>>>>>> Hi Ton
>>>>>>
>>>>>> I've just successfully tested saving to TiddlySpot with alpha-13.
>>>>>> What browser/OS are you using?
>>>>>>
>>>>>> Best wishes
>>>>>>
>>>>>> Jeremy
>>>>>>
>>>>>>
>>>>>> On Sun, Nov 10, 2013 at 5:52 PM, Ton Gerner <[email protected]>wrote:
>>>>>>
>>>>>>> Hi Jeremy,
>>>>>>>
>>>>>>> Thanks for the help.
>>>>>>> My top menu with toolbar is now working again in TW5alpha13 and the
>>>>>>> updated guide is available in my Dropbox (links to it from TW5 & Dave's
>>>>>>> mall).
>>>>>>>
>>>>>>> I had to "repair" my Hidden sidebar theme by replacing 'storyriver
>>>>>>> width' by 'tw-tiddler-frame width' to increase the width of the story 
>>>>>>> river
>>>>>>> when the sidebar is hidden.
>>>>>>>
>>>>>>> I thought it may be wise to upload it to TiddlySpot but - after
>>>>>>> filling in the TiddlySpot details in TW5 (after creating a TiddlySpot 
>>>>>>> site)
>>>>>>> - saving produced a Javasript error:
>>>>>>>
>>>>>>> NS_ERROR_DOM_BAD_URI: Access to restricted URI denied
>>>>>>>
>>>>>>> N.B.:
>>>>>>> * A few days ago (with alpha10) I was able to upload TW5.
>>>>>>> * Glad there is a real versioning system now.
>>>>>>>
>>>>>>> Cheers,
>>>>>>>
>>>>>>> Ton
>>>>>>>
>>>>>>>
>>>>>>> On Sunday, November 10, 2013 10:17:50 AM UTC+1, Jeremy Ruston wrote:
>>>>>>>
>>>>>>>> Hi Ton
>>>>>>>>
>>>>>>>> It must be nice to have the refactoring done.
>>>>>>>>>
>>>>>>>>
>>>>>>>> Great relief. And lovely to be able to return to working across the
>>>>>>>> whole codebase.
>>>>>>>>
>>>>>>>>
>>>>>>>>> I am very pleased with the clone tiddler possibility and the tabs
>>>>>>>>> macro. I hope to make much use of it.
>>>>>>>>>
>>>>>>>>
>>>>>>>> Great, glad they're looking good.
>>>>>>>>
>>>>>>>>
>>>>>>>>> But first I have to look at the new documentation; especially
>>>>>>>>> about the widgets. Up till now I just copied/pasted code; I hope to 
>>>>>>>>> be able
>>>>>>>>> to things myself.
>>>>>>>>>
>>>>>>>>> At the moment I am busy updating my "Toolbar in top menu" guide.
>>>>>>>>> Almost everything works again, only the width of the story river is 
>>>>>>>>> not
>>>>>>>>> controlled anymore by my 'Hidden sidebar' theme. I noticed some 
>>>>>>>>> changes in
>>>>>>>>> the @media (position absolute => relative) and in ThemeTweaks (Tiddler
>>>>>>>>> width 686px).
>>>>>>>>> With the by Raj Curwen found ThemeTweak bug I'll wait for alpha13
>>>>>>>>> before going further.
>>>>>>>>>
>>>>>>>>
>>>>>>>> It sounds like your copy of the metrics tiddler is missing the new
>>>>>>>> entry for the width of the story.
>>>>>>>>
>>>>>>>>
>>>>>>>>> There remain a few styling problems.
>>>>>>>>> With the advice you gave Dave I could manage most style problems,
>>>>>>>>> but 2 items remain:
>>>>>>>>>
>>>>>>>>> 1) My 'Tags' button opens a tiddler $:/Tags which contains:
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> @@.threecolumns
>>>>>>>>> <$list filter="[tags[]sort[title]]" itemClass="tw-menu-list-item">
>>>>>>>>> <$transclude title="$:/core/ui/TagTemplate"/> <small class=
>>>>>>>>> "tw-menu-list-count"><$count filter="[is[current]tagging[]]"/></
>>>>>>>>> small>
>>>>>>>>> </$list>
>>>>>>>>> @@
>>>>>>>>> ---
>>>>>>>>>
>>>>>>>>> {{$:/core/ui/UntaggedTemplate}} <small class="tw-menu-list-count"
>>>>>>>>> ><$count filter="[untagged[]!is[system]] -[tags[]]"/></small>
>>>>>>>>>
>>>>>>>>> by changing 'title' to 'tiddler' it worked again but the 3 column
>>>>>>>>> display (stylesheet code below) does not work anymore.
>>>>>>>>>
>>>>>>>>
>>>>>>>> The @@ is trying to apply the class to the <$list> widget itself,
>>>>>>>> which ignores it. The solution is to apply the class to a wrapping div
>>>>>>>> instead.
>>>>>>>>
>>>>>>>>>
>>>>>>>>> 2) Bulleted list
>>>>>>>>> In the intro "Top menu with toolbar buttons" I used:
>>>>>>>>>
>>>>>>>>> <$list filter="[tag[topmenu]sort[title]]" type="ul"/>
>>>>>>>>>
>>>>>>>>> Since type="ul" and type="ol" do not exist anymore it must be done
>>>>>>>>> otherwise.
>>>>>>>>> Via a template?
>>>>>>>>>
>>>>>>>>
>>>>>>>> Yes. Something like this:
>>>>>>>>
>>>>>>>> <ul>
>>>>>>>> <$list filter="[tag[topmenu]sort[title]]">
>>>>>>>> <li><$view field="title"/></li>
>>>>>>>> </$list>
>>>>>>>> </ul>
>>>>>>>>
>>>>>>>>
>>>>>>>>> No idea how to add a template when using the list widget and what
>>>>>>>>> must be in.
>>>>>>>>>
>>>>>>>>> With transclusion a template can also be added:
>>>>>>>>>
>>>>>>>>> {{{ [tag[topmenu]sort[title]] ||TemplateTitle}}}
>>>>>>>>>
>>>>>>>>> but I do not have an idea what must be in such a template.
>>>>>>>>>
>>>>>>>>
>>>>>>>> The template is rendered with the current tiddler set to the
>>>>>>>> tiddler being transcluded. That means that the <$view> widgets in the
>>>>>>>> template will render the fields of the tiddler being transcluded not 
>>>>>>>> the
>>>>>>>> template. It's the same mechanism that is used to view the current 
>>>>>>>> tiddler
>>>>>>>> "through" the ViewTemplate.
>>>>>>>>
>>>>>>>>
>>>>>>>>>
>>>>>>>>> Can you give examples for using templates in combination with the
>>>>>>>>> list widget and when using transclusion?
>>>>>>>>>
>>>>>>>>
>>>>>>>> I will be doing more docs updates over the next few days.
>>>>>>>>
>>>>>>>> Best wishes
>>>>>>>>
>>>>>>>> Jeremy
>>>>>>>>
>>>>>>>>
>>>>>>>>>
>>>>>>>>> Cheers,
>>>>>>>>>
>>>>>>>>> Ton
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>  --
>>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>>> Groups "TiddlyWiki" group.
>>>>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>>>>> send an email to [email protected].
>>>>>>>>> To post to this group, send email to [email protected].
>>>>>>>>>
>>>>>>>>> Visit this group at http://groups.google.com/group/tiddlywiki.
>>>>>>>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> --
>>>>>>>> Jeremy Ruston
>>>>>>>> mailto:[email protected]
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Jeremy Ruston
>>>>>> mailto:[email protected]
>>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>> Jeremy Ruston
>>>> mailto:[email protected]
>>>>
>>>
>>
>>
>> --
>> Jeremy Ruston
>> mailto:[email protected]
>>
>


-- 
Jeremy Ruston
mailto:[email protected]

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to