[tw] Re: Losing focus after first key input but ok after that

2015-03-28 Thread Jed Carty
Assuming that the actual text editing part is inside <$transclude 
tiddler="$table$" mode="block"/>, than the problem is probably that 
whatever you are editing changes the value of oldtags or oldtext, if you 
can you should put the transclude outside of the set widgets, if you can't 
than how you would fix it depends on what is in the transcluded tiddler.

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Losing focus after first key input but ok after that

2015-03-28 Thread James Mars
Hi,

Jed, I had a look at your example, but I am not sure that it is relevant to 
my case. Below is the code that am having problems with. It is a tiddler 
that creates a new lexeme entry.

\define def_tags() $(oldtags)$ $(newtags)$
\define def_text() $(newtext)$ $(oldtext)$
\define main(skeleton:"$:/_skl/lexeme",table:"$:/_tbl/lexeme")
<$set name="oldtags" value={{$skeleton$!!tags}}>
<$set name="oldtext" value={{$skeleton$!!text}}>
<$transclude tiddler="$table$" mode="block"/>

<$set name="antonym" value={{!!antonym}}>
<$set name="category" value={{!!category}}>
<$set name="language" value={{!!language}}>
<$set name="title" value={{!!newtitle}}>
<$set name="synonym" value={{!!synonym}}>
<$set name="newtags" value={{!!tags}}>
<$set name="newtext" value={{!!text}}>
<$set name="tags" value=<>>
<$set name="text" value=<>>
<$button>
<$action-setfield antonym="" category="" language="" newtitle="" synonym="" 
tags="" text=""/>
<$action-setfield $tiddler="$skeleton$" $field="title" 
$value=<>/><$action-setfield $tiddler=<> antonym=<> 
category=<> language=<> synonym=<> 
tags=<> text=<>/>
<$action-navigate $to=<>/>
Create

\end
<$tiddler tiddler="$:/temp/new/lexeme"><>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Losing focus after first key input but ok after that

2015-03-28 Thread Jed Carty
I am not sure, I tend to forget things like this until I use them again.
I think this was what fixed it. I used a set widget to make a variable 
holding the filter string, then make a macro that uses that variable. 
Something like:

\define thisListMacro()
<$list filter="$(SomeFilterString)$">


\end

<$set name=SomeFilterString value=<>>
<>


It is something to do with the parsing, but I am not sure what.

If you look at the Table Macros tiddler here there are examples:

http://ooktech.com/jed/ExampleWikis/DynamicTables/

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] creating new tiddlers silently?

2015-03-28 Thread James Mars
Hi Jed,

Thanks for the explanation.. it makes sense.

James.

On Sunday, 29 March 2015 15:41:00 UTC+11, Jed Carty wrote:
>
> I couldn't make it work using one line. If I understand correctly this is 
> consistent with how action-setfield works.
> The action-setfield widget uses the wiki.setText function to overwrite the 
> old tiddler by creating a new tiddler with the same name as the old 
> tiddler, just with the new field appended to the tiddler data. When you set 
> the value of an existing field the new value takes the place of the the old 
> one in the created tiddler, so when you change the title field the new 
> tiddler is created, but since the title of the new tiddler is different, 
> the old tiddler isn't affected.
> When you set multiple fields using a single set widget this process is 
> repeated once for each field in sequence, but each time it is starting out 
> with the tiddler given by the $tiddler input. So you can do this in one 
> line IF you have the order of the inputs such that the title field is given 
> last, AND you want the changes to affect the original template tiddler as 
> well, because the fields are added to the template tiddler one by one, and 
> then a new tiddler is created. If you have 'title=newtitle' first than none 
> of the changes after that are applied to the new tiddler, but they are 
> applied to the template. Unless you want to change the template this 
> probably isn't a good way to do it.
>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] creating new tiddlers silently?

2015-03-28 Thread Jed Carty
I couldn't make it work using one line. If I understand correctly this is 
consistent with how action-setfield works.
The action-setfield widget uses the wiki.setText function to overwrite the 
old tiddler by creating a new tiddler with the same name as the old 
tiddler, just with the new field appended to the tiddler data. When you set 
the value of an existing field the new value takes the place of the the old 
one in the created tiddler, so when you change the title field the new 
tiddler is created, but since the title of the new tiddler is different, 
the old tiddler isn't affected.
When you set multiple fields using a single set widget this process is 
repeated once for each field in sequence, but each time it is starting out 
with the tiddler given by the $tiddler input. So you can do this in one 
line IF you have the order of the inputs such that the title field is given 
last, AND you want the changes to affect the original template tiddler as 
well, because the fields are added to the template tiddler one by one, and 
then a new tiddler is created. If you have 'title=newtitle' first than none 
of the changes after that are applied to the new tiddler, but they are 
applied to the template. Unless you want to change the template this 
probably isn't a good way to do it.

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Losing focus after first key input but ok after that

2015-03-28 Thread James Mars
Hi Jed,

I think that's exactly the problem am having. How did you solve it in your 
case?

If necessary, I'll look into posting the wiki online... not sure how/where 
to do that.




On Sunday, 29 March 2015 15:17:01 UTC+11, Jed Carty wrote:
>
> That same thing happened to me when I was making the inline editable 
> tables. The reason was that editing the field created a tiddler if one 
> didn't already exist, which forced a refresh of the list widget that 
> contained the edit widget. But like Richard said, there isn't much we can 
> do without something more specific.
>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] creating new tiddlers silently?

2015-03-28 Thread James Mars
Hi Richard,

I did try that one too, and I've just tried it again: the behaviour is 
identical to the problem I mentioned above, it modifies both the template 
tiddler and creates a new tiddler. Might be a bug :)



On Sunday, 29 March 2015 14:25:19 UTC+11, Richard Smith wrote:
>
> I think you *can* combine those two lines, like this
>
> <$action-setfield $tiddler="MyTemplate" 
> title=< firstname=<> lastname=<>/>
>
> Regards,
> Richard
>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Losing focus after first key input but ok after that

2015-03-28 Thread Jed Carty
That same thing happened to me when I was making the inline editable 
tables. The reason was that editing the field created a tiddler if one 
didn't already exist, which forced a refresh of the list widget that 
contained the edit widget. But like Richard said, there isn't much we can 
do without something more specific.

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] creating new tiddlers silently?

2015-03-28 Thread Richard Smith
I think you *can* combine those two lines, like this

<$action-setfield $tiddler="MyTemplate" 
title=< firstname=<> lastname=<>/>

Regards,
Richard

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Losing focus after first key input but ok after that

2015-03-28 Thread Richard Smith
Hi,

Can you post an example or a link to your wiki? Which fields are you 
editing? It sounds, obviously, as though the first key-press is causing a 
re-rendering of the page and subsequent ones aren't but it's difficult to 
try and replicate the issue without more info.

Regards,
Richard

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: "tc-vertical" not working

2015-03-28 Thread Richard Smith
Hi,

I suspect you have something like this - note the space between the quotes

<>

This names "  " as the tiddler in which state should be stored and so you 
get your *--1202157337 *when the qualifier is added.

The issue with pdfs not being displayed inline on your G4 is, I think, a 
browser issue - t might be that the browser can't render them inline or 
that in needs to be enabled (I suspect the former)

The tab not being set correctly to begin with could be related to the issue 
above or, as Eric said, a conflict between different nestings of the tabs 
macro, which you should also be able to fix by setting a name for the state 
tiddler. If I was you, I'd make a test tiddler with a very simple name and 
content and try to set that as the default to begin with.

Regards,
Richard

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Losing focus after first key input but ok after that

2015-03-28 Thread James Mars
Hi,

Does anyone have a clue to what's going on here:

I have an input form/table transcluded in my createNewEntry page. When I 
press a key to insert to first character in the first input field, the 
field loses its focus. Then I have to click back in it to type the rest 
(everything works after that first re-focusing, all the rest of the input 
fields work fine). My input form is creating a temp file, and it seems that 
as soon as it is created, my browser window refreshes to "accommodate" the 
new temp file (to be precise, the browser scrollbar quickly appears then 
disappears on the right), and it is at this point that the focus is being 
lost.


-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: New search behaviour demo

2015-03-28 Thread Felix Küppers
A public space, not multi-user though, is hosted on tiddlyspot: 
http://tiddlywikipublic.tiddlyspot.com
Everyone can modify and improve it...

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Calendar plugin

2015-03-28 Thread Jed Carty
 Huh, so it does. I will try to track down the error when I get home later. 
Thanks for pointing it out! 

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] creating new tiddlers silently?

2015-03-28 Thread James Mars
Thanks very much Jed.. I've been waiting for a good number of months for 
this solution :). I experimented a little with your code and this is what I 
found out. In my case, I needed not only to create a new tiddler based on a 
template, but also populate its fields. I had:

<$action-setfield $tiddler="MyTemplate" $field="title" 
$value=<> firstname=<> lastname=<>/>

The result was a bit weird: it both modified the actual template itself to 
include the firstname and lastname inputs, as well as created a separate 
tiddler (MyNewTitle) based on the template but with the firstname and 
lastname fields left unmodified.

However the following code gave the desired behaviour; It left the template 
tiddler untouched and created a new tiddler based on the template and 
populated its fields.

<$action-setfield $tiddler="MyTemplate" $field="title" 
$value=<>/>
<$action-setfield $tiddler=<> firstname=<> 
lastname=<>/>

Thanks again.








On Sunday, 29 March 2015 04:26:35 UTC+11, Jed Carty wrote:
>
> If you use:
>
> <$button>Make Tiddler
> <$action-setfield $tiddler='TemplateTiddler' $field='title' 
> $value='NewTiddlerName'/>
> 
>
> where you replace TemplateTiddler with the templates name, and 
> NewTiddlerName with the desired name the button will make a copy of 
> TemplateTiddler called NewTiddlerName without affecting TemplateTiddler.
>
> I put some stuff on inmysocks.tiddlyspot.com 
> 
>  
> about this.
>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Static tidlers / alltiddlers Q (request to complete documentation)

2015-03-28 Thread David Gifford
Thanks for the tip, Eric! This is all turning out wonderfully.

Dave

On Sat, Mar 28, 2015 at 2:58 PM, Eric Shulman  wrote:

> On Saturday, March 28, 2015 at 10:38:12 AM UTC-7, David Gifford wrote:
>>
>> Never mind, Eric, I played around and discovered that adding it to the
>> top of the tiddler to be rendered as static works great. (I am using this
>> to render single tiddlers as webpages).
>>
>>> Now, if I wanted to add  to the
>>> static file, where would I put it?
>>> Dave
>>>
>>
> The output template for rendering a "static river of tiddlers" is located
> in this shadow tiddler:
>$:/core/templates/exporters/StaticRiver
>
> If you add your  syntax to that tiddler (within the
> ... markers), then it will automatically be included in every
> export, without having to put it into each tiddler individually.
>
> -e
>
>
>
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/tiddlywiki/kZBBS9Lv89E/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at http://groups.google.com/group/tiddlywiki.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] New search behaviour demo

2015-03-28 Thread Felix Küppers
Hi Everybody,

There is a new way of searching currently discussed at 
https://github.com/Jermolene/TiddlyWiki5/issues/1066.

Please see the demo:

http://spangenhelm.tiddlyspot.com/

   - Searching does not hide default tabs
   - Search tab is not visible per default
   - If search is started, tw will change to the search tab and backup the 
   old tab
   - if search is empty, the old tab (if existed) is restored and search 
   tab is hidden
   
-Felix

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Calendar plugin

2015-03-28 Thread cmari
Hi Jed,
I really like the clickable calendar, so I did some experimenting with the 
calendar plugin. Looking ahead to April, I discovered that 
if I create a tiddler at http://inmysocks.tiddlyspot.com with the content:

<$calendar-month year=2015 month=4 />
I get a calendar in which the month starts (correctly) on a Wednesday.

However, if I use the name of the month instead:
<$calendar-month year=2015 month=April /> 
I get a calendar in which the month starts on a Sunday.  

If I understand things correctly, this is relevant for the Calendar 
Archives on your other site (which I think use month names rather than 
numbers)?
cmari

On Thursday, March 5, 2015 at 11:40:01 AM UTC-8, Jed Carty wrote:
>
> For the moment look at what I made here 
> , clicking on 
> a day will bring you to a tiddler for that day (and create the tiddler if 
> it doesn't already exist), which sounds like part of what you want. 
> Eventually I will get around to packaging it into a simple macro to include 
> in the plugin. For now, editing the thisBuildDayTiddlerText macro will 
> change what the created tiddler looks like. Or you can just take out 
> everything inside the second reveal widget in the thisBlogArchiveMacro 
> macro, and remove the first reveal widget (just the widget) and it will 
> only open the tiddler, not create one if no tiddler exists.
>
> For the checkbox part that would be possible. What I have in part of the 
> prototype for the widget is similar to what you are describing, but using a 
> button. What you describe is a much better interface, but you could modify 
> what I made to fit it. Once again I will hopefully get around to making a 
> macro for this to put into the calendar plugin.
>
> An yes, I would like to see what you are doing. I have never seen anything 
> where someone is using anything I have put together.
>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Static tidlers / alltiddlers Q (request to complete documentation)

2015-03-28 Thread Eric Shulman
On Saturday, March 28, 2015 at 10:38:12 AM UTC-7, David Gifford wrote:
>
> Never mind, Eric, I played around and discovered that adding it to the top 
> of the tiddler to be rendered as static works great. (I am using this to 
> render single tiddlers as webpages).
>
>> Now, if I wanted to add > type='text/css'> to the static file, where would I put it?
>> Dave
>>
>
The output template for rendering a "static river of tiddlers" is located 
in this shadow tiddler:
   $:/core/templates/exporters/StaticRiver

If you add your  syntax to that tiddler (within the 
... markers), then it will automatically be included in every 
export, without having to put it into each tiddler individually.

-e


 

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-28 Thread Eric Shulman
On Saturday, March 28, 2015 at 10:37:22 AM UTC-7, Danielo Rodríguez wrote:
>
> I'm curious about how the plugin library works. It does not work properly 
> on any mobile browser that I tried. On chrome it directly kills the 
> browser, Firefox slows down significantly and the scrolling is nearly 
> unresponsive. On Galaxy s6 default browser it is not even possible to see 
> the library. I think that you all are forgetting about mobile world,and I 
> think Jeremy that you are interested on that particular scenario. The help 
> plugin, for example, is not very helpful while on mobile. 
>

Here's my quick test results:

Platform: Samsung Galaxy Tab Pro 10.1
Android 4.4 KitKat

steps to reproduce:
1) open tiddlywiki.com/prerelease
2) open control panel
3) select "plugins" tab
4) press "Get more plugins" button
5) press "open plugin library" button (in modal popup)
6) tabs appear: plugins (18) themes(6) languages(19)
7) scroll up and down

using Chrome: works OK
using Dolphin: works OK
using default "Internet" browser:  very slow, scrolling "nearly 
nonresponsive"

-e

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: "tc-vertical" not working

2015-03-28 Thread Eric Shulman
On Saturday, March 28, 2015 at 10:43:35 AM UTC-7, Ed wrote:
>
> Another "strange" thing happended by the way; all of a sudden there is 
> tiddler called "*--1202157337*" (without the " "
> of course. And the text of the tiddler is, you guessed it already, "
> *20150326b-AntwOverlapDeadLine*".
> Double-Huh!? It appeared out of thin air, autogenerated. so to say.
>

That is most likely the result of using tabs to display the content.  To 
track which tab is currently open, the <> macro stores the title of 
the tiddler shown that tab into a "state" tiddler.  To uniquely identify 
which tabset is being tracked, a "qualifier" number is generated (based on 
the location of the tabset in the "parse tree") and appended to the state 
tracking tiddler's name.  Generally, the state tiddler has a name like 
"$:/state/tab--1231231231".  However, on the tiddler you found in your 
document, there is no "$:/state/tab" prefix, and that seems quite odd.

one thought: perhaps that state tiddler is not being generated from the 
<> macro.. but from Tobi's PDFMacro

Hope this provides some clues for where to look

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios

"Inside TiddlyWiki: The Missing Manual"
https://www.indiegogo.com/projects/inside-tiddlywiki-the-missing-manual/x/8816263
Note: the IndieGogo funding campaign has ended,
but direct fundraising continues below...

YOUR DONATIONS ARE VERY IMPORTANT!
HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
   http://TiddlyTools.github.com/fundraising.html#MakeADonation

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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-28 Thread Duarte Farrajota Ramos
Hey Jeremy
Sorry to bother again but I've been trying to upgrade my prerelease 
tiddlywikis to the latest 5.1.8 pre-releases and I am having trouble with 
an encrypted one.
After upgrading through Upgrade.html whenever I am promtped to insert the 
password I get an in-browser tiddlywiki error message which disappears too 
fast to be able to read and I can't see the contents of the wiki, I am 
repeatedly prompted again for the password.
One weird thing that I noticed happen is that the browser adress bar then 
shows the following:
file:///C:/Path/To/My/Database/TiddlyWiki.html?password=MyPassword

with my password in plain sight. I am using Firefox 36.0.6 under Windows 7 
64bits

On Wednesday, 18 March 2015 18:12:54 UTC, Jeremy Ruston wrote:
>
> Version 5.1.8 is turning out to be the most significant upgrade to 
> TiddlyWiki since 5.1.0 was released in September. Notable new features 
> include:
>
> * Integrated online plugin library - see here for a brief screencast: 
> https://www.youtube.com/watch?v=yLJn_0QgJ6U
> * New banner warning when plugins have been modified and a restart is 
> needed
> * Seven new translations: Czech, Interlingua, Portuguese, Punjabi, Hindu, 
> Slovak and Spanish
> * Much improved documentation, including filter documentation using the 
> new RailroadPlugin to produce dynamic syntax diagrams
> * Upgrade to KaTeX 2.0, with better symbol support
> * New overlay help panel
> * Improved scrolling behaviour, including fixing the problem with unneeded 
> scrolling at startup
> * Many minor and internal improvements
>
> With such a big release, there are bound to be wrinkles. For example, it's 
> harder than usual to make sure that backwards compatibility isn't 
> accidentally broken.
>
> So, I'd appreciate your help in kicking the tyres of the new release. 
> Don't switch over to it for everyday use, but please do try upgrading your 
> existing wikis, and verifying that they work OK.
>
> The prerelease is available at:
>
> http://tiddlywiki.com/prerelease
>
> You can upgrade at:
>
> http://tiddlywiki.com/prerelease/upgrade.html
>
> The things that remain on my todo list for 5.1.8 include:
>
> * Include help plugin in empty.html, or gettingstarted.html
> * Re-establish "Configurations" docs section
> * Fixing propogation of action widgets
>
> Apart from those issues I intend to now freeze the features for 5.1.8, and 
> focus on getting it ready for release. As ever, any comments or questions 
> are welcome.
>
> Best wishes
>
> Jeremy.
>
> -- 
> Jeremy Ruston
> mailto:jeremy...@gmail.com 
>  

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: "tc-vertical" not working

2015-03-28 Thread Ed V.O. K.
Hi Felix,

I followed your advice to do the "Advanced Seach", although I knew that the
"renegade" tiddler existed. 8-))
Always try to listen to my betters. Indeed a fine way to check things out.
In this way I saw that all the relevant
PDF-containing tiddlers were there. Great way to look for errors.
Misspelllings are easily done.

So at the moment we seem stuck, can't see anything else then that it got to
do something with the tiddler using
the PDF macro.

I have written in another thread,
https://groups.google.com/forum/#!topic/tiddlywiki/lj9MvTMj9ng
how beautifully that PDF macro worked. Only to find out it did its magic on
my PC at work with latest FireFox!

At home on my PPC G4 Mac with the adapted FireFox called TenFourFox special
PPC browser, the PDF-tiddlers
were not showing their content, but made the download screen pop up. So
when I work at home I all the time,
need to cancel this download screen.
However as it is meant to be used at work, I can sort of live with this
nuisance, hoping Tobias might stop by to help out.

Another "strange" thing happended by the way; all of a sudden there is
tiddler called "*--1202157337*" (without the " "
of course. And the text of the tiddler is, you guessed it already, "
*20150326b-AntwOverlapDeadLine*".
Double-Huh!? It appeared out of thin air, autogenerated. so to say.

Well so far so... 8-))
Viele Grüße & Herzlichen Dank, Ed.



2015-03-28 17:59 GMT+01:00 Felix Küppers :

> Hi Ed,
>
>
>> Aha, Freundliche Felix-Unterstützung! 8-))
>>
>
> Well, I give it a try :)
>
> > That's good advice, as I was under the impression that you could safely
> leave the prefixes out. In most of the code that I look at to learn how to
> do it,
> almost everbody ditches them. So it's better to write class:"tc-vertical"
> then "tc-vertical" alone.
>
> The point is, macros often have many parameters and it is hard to remember
> the order so it is a potential error source, also when you look at the
> macro code it is hard to understand what "" "" "" means. ;)
>
> > < "$:/state/tab2" "tc-vertical">>
> > There being several tiddlers with the tag "Communication" and one of the
> tiddlers had the title: "20150326b-AntwOverlapDeadline"
> > Result: Tab column OK. But NO open tabs at all, everyone was grey and no
> display of the content.
>
> All correct. Are you really sure "20150326b-AntwOverlapDeadline" was
> spelled correctly and exists? Try "advanced search" and go to "Filter" and
> enter "[tag[Communication]]". If it is listed there, your setup is correct.
>
> > Correct me if I am wrong and put me please on the right footing.
>
> IMO it should work in any case but I am not familiar with pdfs in TW. But
> maybe it helps you if you know that you did everything right as far as my
> understanding goes.
>
> -Felix
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/tiddlywiki/vV0AIhuLUAI/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at http://groups.google.com/group/tiddlywiki.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Static tidlers / alltiddlers Q (request to complete documentation)

2015-03-28 Thread David Gifford
Never mind, Eric, I played around and discovered that adding it to the top 
of the tiddler to be rendered as static works great. (I am using this to 
render single tiddlers as webpages).

Dave

On Saturday, March 28, 2015 at 6:49:51 AM UTC-6, David Gifford wrote:
>
> Thanks Eric, that solves my problem! Being able to choose by filter is 
> awesome!
>
> Now, if I wanted to add  type='text/css'> to the static file, where would I put it?
>
> Dave
>
> On Fri, Mar 27, 2015 at 11:01 PM, Eric Shulman  
> wrote:
>
>> On Friday, March 27, 2015 at 10:00:28 PM UTC-7, Eric Shulman wrote:
>>>
>>> Note the "export" button (a partial box with arrow pointing upward)
>>>
>>
>> addendum: the button is next to the search input field
>>
>> -e
>>
>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/tiddlywiki/kZBBS9Lv89E/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> tiddlywiki+unsubscr...@googlegroups.com.
>> To post to this group, send email to tiddlywiki@googlegroups.com.
>> Visit this group at http://groups.google.com/group/tiddlywiki.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-28 Thread Danielo Rodríguez
Hello Jeremy, 

I'm curious about how the plugin library works. It does not work properly on 
any mobile browser that I tried. On chrome it directly kills the browser, 
Firefox slows down significantly and the scrolling is nearly unresponsive. On 
Galaxy s6 default browser it is not even possible to see the library. I think 
that you all are forgetting about mobile world,and I think Jeremy that you are 
interested on that particular scenario. The help plugin, for example, is not 
very helpful while on mobile. 

Regards. 

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] creating new tiddlers silently?

2015-03-28 Thread Jed Carty
If you use:

<$button>Make Tiddler
<$action-setfield $tiddler='TemplateTiddler' $field='title' 
$value='NewTiddlerName'/>


where you replace TemplateTiddler with the templates name, and 
NewTiddlerName with the desired name the button will make a copy of 
TemplateTiddler called NewTiddlerName without affecting TemplateTiddler.

I put some stuff on inmysocks.tiddlyspot.com 

 
about this.

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] creating new tiddlers silently?

2015-03-28 Thread Danielo Rodríguez
It is not possible to use a template at all. What Alberto does is setting each 
field individually. 

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: "tc-vertical" not working

2015-03-28 Thread Felix Küppers
Hi Ed,
 

> Aha, Freundliche Felix-Unterstützung! 8-))
>

Well, I give it a try :)

> That's good advice, as I was under the impression that you could safely 
leave the prefixes out. In most of the code that I look at to learn how to 
do it, 
almost everbody ditches them. So it's better to write class:"tc-vertical" 
then "tc-vertical" alone.

The point is, macros often have many parameters and it is hard to remember 
the order so it is a potential error source, also when you look at the 
macro code it is hard to understand what "" "" "" means. ;)

> <>
> There being several tiddlers with the tag "Communication" and one of the 
tiddlers had the title: "20150326b-AntwOverlapDeadline"
> Result: Tab column OK. But NO open tabs at all, everyone was grey and no 
display of the content.

All correct. Are you really sure "20150326b-AntwOverlapDeadline" was 
spelled correctly and exists? Try "advanced search" and go to "Filter" and 
enter "[tag[Communication]]". If it is listed there, your setup is correct.

> Correct me if I am wrong and put me please on the right footing.

IMO it should work in any case but I am not familiar with pdfs in TW. But 
maybe it helps you if you know that you did everything right as far as my 
understanding goes.

-Felix

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Static tidlers / alltiddlers Q (request to complete documentation)

2015-03-28 Thread David Gifford
Thanks Eric, that solves my problem! Being able to choose by filter is
awesome!

Now, if I wanted to add  to the static file, where would I put it?

Dave

On Fri, Mar 27, 2015 at 11:01 PM, Eric Shulman  wrote:

> On Friday, March 27, 2015 at 10:00:28 PM UTC-7, Eric Shulman wrote:
>>
>> Note the "export" button (a partial box with arrow pointing upward)
>>
>
> addendum: the button is next to the search input field
>
> -e
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/tiddlywiki/kZBBS9Lv89E/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at http://groups.google.com/group/tiddlywiki.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] creating new tiddlers silently?

2015-03-28 Thread James Mars
Hi Jed,

How exactly do you use a template with the action-setfield widget?



On Saturday, 31 January 2015 03:58:47 UTC+11, Jed Carty wrote:
>
> I haven't found a way to do it, but I haven't found a time when I couldn't 
> do the same thing using action-setfield. 
>
> If you want to silently make a tiddler using a templat, use action 
> setfield to set the name of the template, it will create a copy of the 
> template with the new name. 
>
> do you have a situation where this wouldn't work?   

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.