[tw] Re: TW5 danish translation

2014-10-28 Thread Måns
Hi Birthe

Here's a happy Dane :-)

Good job. Thank you very much Birthe.

Cheers Måns Mårtensson

Den mandag den 27. oktober 2014 14.32.17 UTC+1 skrev Birthe C:
>
> Hi danes!
>
> Having seen the new tool 
> http://tiddlywiki.com/prerelease/editions/translators/index.html I had to 
> try it out.
>
> Here is the link to my danish translation:
> https://dl.dropboxusercontent.com/s/kt8fxwn2zpqnup9/MyTranslation.html?dl=0
>
> Other danish speaking people present? 
> Please have a look! You might want to change some of the translations.
>
>
> Birthe
>

-- 
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: pass currenttiddler title to widget

2014-10-28 Thread James Anderson
Sorry I mean I do understand how to achieve what I was originally asked 
for, I was half asleep when posting that.

Thanks again,
James 

On Tuesday, 28 October 2014 06:30:30 UTC, James Anderson wrote:
>
> Apologies, I guess I meant a macro. Though i am still not sure from your 
> replies how to achieve this
>
> Thanks for your help
>
> James
>
> On Tuesday, 28 October 2014 13:17:12 UTC+9, Stephan Hradek wrote:
>>
>> As it is a macro:
>>
>>
>> \define mysamplemacro(name:"Bugs Bunny",address:"Rabbit Hole Hill")
>> Hi, I'm $name$ and I live in $address$
>> \end
>>
>> <$macrocall $name="mysamplemacro" name="test" address={{!!title}}/>
>>
>>
>>

-- 
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: pass currenttiddler title to widget

2014-10-28 Thread Stephan Hradek
You need to know the names of the parameters (unfortunately)

So you can replace (reusing your wrongly named example):

<>

with

<$macrocall $name="widget" *parameter1*="strA" *parameter2*="strB" 
*parameter3*={{!!title}}/>

But you need to find, from the macro definition, the real names for 
*parameterN*

-- 
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] More than one color field.

2014-10-28 Thread Stephan Hradek
I think IF the tiddlers frames, currently having the css classes 
"tc-tiddler-frame tc-tiddler-view-frame tc-tiddler-exists" would also have 
a UNIQUE class, like "tc-uniq<>", one could achieve this very 
easily by, for example creating a pagetemplate "freestyle.css" along these 
lines:


[tw] Re: [TWC] Updating image preview when URL to image in textarea changes

2014-10-28 Thread whatever
Hi!
I moved the code to a separate function and tried getting the element by ID 
and then using direct assignment, but it didn't rerender the picture:

config.macros.infobox.changePreview = function (textarea, imageID) {
textarea.defaultValue = textarea.value;
var value = textarea.value;
var image = document.getElementById(imageID);
image.src = value; //This doesn't refresh the image, although console.log 
correctly reports the new src
//textarea.nextSibling.firstChild.src = value; //This refreshes the image
textarea.nextSibling.firstChild.title = value;
textarea.nextSibling.firstChild.alt = value;
};

Am I missing something?

w

On Tuesday, October 28, 2014 1:44:06 AM UTC+1, Eric Shulman wrote:

> On Monday, October 27, 2014 12:33:33 PM UTC-7, whatever wrote:
>>
>> Hi!
>> I figured it out, in case anyone is interested. Instead of using 
>> setAttribute on the element, I had to use this.nextSibling.firstChild.src, 
>> because the image is the first child of the next sibling of the textarea. 
>> Same for title and alt. The setAttribute approach worked in pure HTML file 
>> though.
>>
>
> The browser's javascript engine overloads the assignment operator so that 
> *directly* setting certain attributes will have side effects.  Although 
> using setAttribute() will store the value in the element, it does not 
> trigger the side effect processing.  You can see this when setting 
> "innerHTML" on an element.  It not only sets the attribute, but it also 
> removes any previously rendered DOM 'sub-tree', and then generates an 
> entirely new DOM sub-tree based on the new attribute value.  Similarly, 
> setting the 'src' of an image element needs to use direct assignment to 
> trigger the re-rendering of the image.  Thus,
>image_element.setAttribute('src','URL');
> will not update the image display, while
>image_element.src='URL';
> will cause the image to change.
>
> -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.


[tw] Re: Highlighted search results possible?

2014-10-28 Thread Danielo Rodríguez
Let me know some context:

In which TW version are you using it?
Please note that the default configuration is to do nothing unless the 
search string is at least 4 characters long.
How did you install the plugin? It is not displaying anything or it is just 
not highlighting ? Did you "rebooted" your TW after installing?

Try to copy the example tiddler from braintest and see if it works there.

Regards.

El martes, 28 de octubre de 2014 01:05:21 UTC+1, DaComboMan escribió:
>
> Danielo,
>
> Finally got to try you plugin but it's not doing anything.
> Did change as you suggested.
>
> Thanks!
>
> On Sunday, October 26, 2014 1:07:33 PM UTC-5, Danielo Rodríguez wrote:
>>
>> There is a plugin. Context search at braintest.tiddlyspot.com. You have 
>> to edit the tag of the styles tiddler to make it work in the latest version 
>> of tiddlywiky. Just change tags/stylesheet for tags/Stylesheet. 
>>
>> I'm the developer so make me know if you have any suggestions. 
>>
>

-- 
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] More than one color field.

2014-10-28 Thread Danielo Rodríguez
Hello,

My suggestion has nothing to do about tiddler frames or any other 
particular use of the color field. What I want is to have the color-picker 
for all those fields that I want to use as a color value.
I'm not saying your suggestions are not cool, since having the border 
colored could be cool, but I think is not related to what I'm talking 
about. Akex, I don't understand your problem, you can hide the tags if you 
want, you only need them to give the tiddler the required class.

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] More than one color field.

2014-10-28 Thread Stephan Hradek
Create a plugin setting this:

$tw.Tiddler.fieldModules["color-border"]={
name:"color-border",
editTag:"input",
editType:"color"
}

for every color-* you want.

-- 
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: Highlighted search results possible?

2014-10-28 Thread DaComboMan
Danielo,

I'm not a TW expert...
Have been dragging my file over to latest TW 5.1.4, it asks for password 
which i give then click save but still get:
5.0.10-beta
Using Firefox latest stable 33.1 and have "rebooted" many times.
Have to go!
Will look at your last suggestion later on in the day.

Thanks again!

On Tuesday, October 28, 2014 5:15:51 AM UTC-5, Danielo Rodríguez wrote:
>
> Let me know some context:
>
> In which TW version are you using it?
> Please note that the default configuration is to do nothing unless the 
> search string is at least 4 characters long.
> How did you install the plugin? It is not displaying anything or it is 
> just not highlighting ? Did you "rebooted" your TW after installing?
>
> Try to copy the example tiddler from braintest and see if it works there.
>
> Regards.
>
> El martes, 28 de octubre de 2014 01:05:21 UTC+1, DaComboMan escribió:
>>
>> Danielo,
>>
>> Finally got to try you plugin but it's not doing anything.
>> Did change as you suggested.
>>
>> Thanks!
>>
>> On Sunday, October 26, 2014 1:07:33 PM UTC-5, Danielo Rodríguez wrote:
>>>
>>> There is a plugin. Context search at braintest.tiddlyspot.com. You have 
>>> to edit the tag of the styles tiddler to make it work in the latest version 
>>> of tiddlywiky. Just change tags/stylesheet for tags/Stylesheet. 
>>>
>>> I'm the developer so make me know if you have any suggestions. 
>>>
>>

-- 
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] More than one color field.

2014-10-28 Thread Danielo Rodríguez
El martes, 28 de octubre de 2014 12:54:56 UTC+1, Stephan Hradek escribió:
>
> Create a plugin setting this:
>
> $tw.Tiddler.fieldModules["color-border"]={
> name:"color-border",
> editTag:"input",
> editType:"color"
> }
>
> for every color-* you want.
>

Nice!  And maybe I can allow the user to set that up with some kind of 
config tiddler.
Where did you get that information? I never saw any reference to editors 
types on fields.

-- 
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: Highlighted search results possible?

2014-10-28 Thread Danielo Rodríguez
Hello DaComboMan,

This is definitively a weird situation, Why is it asking you for a 
password? Please, try first in an empty TW and if it works, then import 
your tiddlers into it.

Regards.

El martes, 28 de octubre de 2014 14:47:39 UTC+1, DaComboMan escribió:
>
> Danielo,
>
> I'm not a TW expert...
> Have been dragging my file over to latest TW 5.1.4, it asks for password 
> which i give then click save but still get:
> 5.0.10-beta
> Using Firefox latest stable 33.1 and have "rebooted" many times.
> Have to go!
> Will look at your last suggestion later on in the day.
>
> Thanks again!
>
> On Tuesday, October 28, 2014 5:15:51 AM UTC-5, Danielo Rodríguez wrote:
>>
>> Let me know some context:
>>
>> In which TW version are you using it?
>> Please note that the default configuration is to do nothing unless the 
>> search string is at least 4 characters long.
>> How did you install the plugin? It is not displaying anything or it is 
>> just not highlighting ? Did you "rebooted" your TW after installing?
>>
>> Try to copy the example tiddler from braintest and see if it works there.
>>
>> Regards.
>>
>> El martes, 28 de octubre de 2014 01:05:21 UTC+1, DaComboMan escribió:
>>>
>>> Danielo,
>>>
>>> Finally got to try you plugin but it's not doing anything.
>>> Did change as you suggested.
>>>
>>> Thanks!
>>>
>>> On Sunday, October 26, 2014 1:07:33 PM UTC-5, Danielo Rodríguez wrote:

 There is a plugin. Context search at braintest.tiddlyspot.com. You 
 have to edit the tag of the styles tiddler to make it work in the latest 
 version of tiddlywiky. Just change tags/stylesheet for tags/Stylesheet. 

 I'm the developer so make me know if you have any suggestions. 

>>>

-- 
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: TiddlyWiki Hangout #66 on Tuesday 28th October at 4pm GMT

2014-10-28 Thread Jeremy Ruston
TiddlyWiki Hangout #66 is just starting.

Watch or post questions at:

https://plus.google.com/events/cou1l99mf4j9uomjg9kkcn5ug20

Or join in at:

https://plus.google.com/hangouts/_/hoaevent/AP36tYcfHgIM6JaUUvBoPsQEA6W7LCG2Aq9pCRr_EHr4yLvm-PZYqA

Best wishes

Jeremy

On Fri, Oct 24, 2014 at 12:23 PM, Jeremy Ruston 
wrote:

> TiddlyWiki Hangout #66 will be on Tuesday 28th October at 4pm GMT. More
> details:
>
> https://plus.google.com/events/cou1l99mf4j9uomjg9kkcn5ug20
>
> Note that British Summer Time ends on October 26th, so the hangout will be
> 1 hour earlier than last week (unless your local summer time has also
> ended).
>
> As usual, please post questions with the Q&A button at the above link, or
> leave a reply here.
>
> Best wishes
>
> Jeremy.
>
>
> --
> Jeremy Ruston
> mailto:jeremy.rus...@gmail.com
>



-- 
Jeremy Ruston
mailto:jeremy.rus...@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.


[tw] Re: [TW5] More than one color field.

2014-10-28 Thread Stephan Hradek


Am Dienstag, 28. Oktober 2014 15:27:52 UTC+1 schrieb Danielo Rodríguez:
>
> Where did you get that information? I never saw any reference to editors 
> types on fields.
>

May the source be with you, young padawan ;) 

-- 
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: Extendable calendar

2014-10-28 Thread BJ

There is a new version at http://bjtools.tiddlyspot.com to work with 5.1.3 
and above. I have also added support for journal tiddlers.

Cheers

BJ

On Monday, October 27, 2014 5:07:38 PM UTC, RickL wrote:
>
> Any news on the updated macro? I use this calendar daily!
> Thanks.
>
> On Thursday, October 23, 2014 2:36:22 PM UTC-4, BJ wrote:
>>
>> Hi Rick,
>> the implementation of dates as changed inside tiddlywiki (probably to 
>> support different languages) - I will update the macro. I will post a 
>> message here when It is available (should be either tonight or tomorrow).
>>
>> cheers
>>
>> BJ
>>
>> On Thursday, October 23, 2014 6:34:58 PM UTC+1, RickL wrote:
>>>
>>> I have been using the Extendable Calendar plugin from buggyj, but when I 
>>> try to upgrade the TW it breaks the macro
>>>
>>> This is TW5 using the plugin from bjtools.tiddlyspot.com
>>>
>>> Any help is appreciated.
>>>
>>> Thanks
>>> Rick
>>>
>>

-- 
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: Extendable calendar

2014-10-28 Thread Danielo Rodríguez
Very nice!

I find much more useful how is right now, where you only have links for 
those days that have an entry.

COOL

-- 
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] Updated Calendar plugin for Journal tiddler

2014-10-28 Thread BJ
Hi all,
I have updated my calendar plugin to support journal tiddlers, and to 
provide a calendar in a tab in the sidebar, see

http://bjtools.tiddlyspot.com/

Cheers

BJ

-- 
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: Highlighted search results possible?

2014-10-28 Thread DaComboMan
It's cause my file was password protected.

For the money, i've opened a new wiki and when i drag your link to the new 
one all i get is:

The following tiddlers were imported:

# [[$:/plugins/danielo/context]]

It shows up in the plugins but there is no text.

BTW, your hyperlink here on opening page "Tested under Tiddlywiky 5.0.7: 
tiddlywiki" 
points to www.tiddlywiky.com - no "y" but "i" at the end correct? 




On Tuesday, October 28, 2014 9:49:50 AM UTC-5, Danielo Rodríguez wrote:
>
> Hello DaComboMan,
>
> This is definitively a weird situation, Why is it asking you for a 
> password? Please, try first in an empty TW and if it works, then import 
> your tiddlers into it.
>
> Regards.
>
> El martes, 28 de octubre de 2014 14:47:39 UTC+1, DaComboMan escribió:
>>
>> Danielo,
>>
>> I'm not a TW expert...
>> Have been dragging my file over to latest TW 5.1.4, it asks for password 
>> which i give then click save but still get:
>> 5.0.10-beta
>> Using Firefox latest stable 33.1 and have "rebooted" many times.
>> Have to go!
>> Will look at your last suggestion later on in the day.
>>
>> Thanks again!
>>
>> On Tuesday, October 28, 2014 5:15:51 AM UTC-5, Danielo Rodríguez wrote:
>>>
>>> Let me know some context:
>>>
>>> In which TW version are you using it?
>>> Please note that the default configuration is to do nothing unless the 
>>> search string is at least 4 characters long.
>>> How did you install the plugin? It is not displaying anything or it is 
>>> just not highlighting ? Did you "rebooted" your TW after installing?
>>>
>>> Try to copy the example tiddler from braintest and see if it works there.
>>>
>>> Regards.
>>>
>>> El martes, 28 de octubre de 2014 01:05:21 UTC+1, DaComboMan escribió:

 Danielo,

 Finally got to try you plugin but it's not doing anything.
 Did change as you suggested.

 Thanks!

 On Sunday, October 26, 2014 1:07:33 PM UTC-5, Danielo Rodríguez wrote:
>
> There is a plugin. Context search at braintest.tiddlyspot.com. You 
> have to edit the tag of the styles tiddler to make it work in the latest 
> version of tiddlywiky. Just change tags/stylesheet for tags/Stylesheet. 
>
> I'm the developer so make me know if you have any suggestions. 
>


-- 
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 v5.0.10 plugin updates - visualeditor and editboost

2014-10-28 Thread 'Stephen Kimmel' via TiddlyWiki
As I was picking up a copy of your extendable calendar, I noted that you 
had VisualEditor working with 5.1.4 as well. When I imported the files 
obviously associated with it, VisualEditor 
 and 
$:/plugins/bj/visualeditor into my
 wiki, the editor didn't work. Did I miss a file or some aspect of the 
installation?

-- 
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.013 no contents tab on sidebar

2014-10-28 Thread Mitchell Swan
As a *complete* newbie, I'm not understanding how to do this.

Help an idiot out?



On Wednesday, June 25, 2014 12:21:52 AM UTC-5, Jon wrote:
>
> Hi Raymond,
> I wondered the same thing before dragging the TableOfContents tiddler to 
> my wiki which can then be amended to your own purposes.
> Jon
> On Wednesday, 25 June 2014 05:35:21 UTC+1, Raymond McDowell wrote:
>>
>> Maybe I'm doing something wrong, but when I download TW 5.0.13 I don't 
>> see the contents tab. I tried it both with a migrated version (importing my 
>> wiki) and then an empty version. In both cases I see no contents tab. I've 
>> tried on two separate computers. Both using FireFox.  When I check out the 
>> core tiddler I see it listed, but there's none in the actual version. Any 
>> way I can correct 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 v5.0.10 plugin updates - visualeditor and editboost

2014-10-28 Thread BJ
Hi Stephen,
I think what is lacking is some documentation!

The widget uses the ckeditor lib - the 'command' to load it is in the 
tiddler $:/plugin/bj/visualeditor/includelib - and it needs to point to a 
new location, change it to 

http://cdnjs.cloudflare.com/ajax/libs/ckeditor/4.4.1/ckeditor.js";>

then reload your tiddlywiki.

It is probably  better to download a version of ckeditor to your computer 
if you are going to use it often.

Also be aware that the editor strips newline characters, this means it 
cannot  be used with some wiki text (it is probably a bad idea to try and 
mix wiki text with text produced in the visualeditor).

The editor can always  be used to edit tiddlers of type text/html.  - to 
make it more useful you need to create a new type:
create a tiddler called 
$:/config/EditorTypeMappings/text/x-htmlpand give as its contents the 
string 'html'  (make sure that there is no whitespace).

create a new tiddler and give it the type 'text/x-htmlp', save it then 
re-edit it.


On Tuesday, October 28, 2014 8:06:09 PM UTC, Stephen Kimmel wrote:
>
> As I was picking up a copy of your extendable calendar, I noted that you 
> had VisualEditor working with 5.1.4 as well. When I imported the files 
> obviously associated with it, VisualEditor 
>  and 
> $:/plugins/bj/visualeditor into my
>  wiki, the editor didn't work. Did I miss a file or some aspect of the 
> installation?
>

-- 
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: Extendable calendar

2014-10-28 Thread BJ
Thanks!

On Tuesday, October 28, 2014 6:53:54 PM UTC, Danielo Rodríguez wrote:
>
> Very nice!
>
> I find much more useful how is right now, where you only have links for 
> those days that have an entry.
>
> COOL
>

-- 
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: Tiddlywiki en Español

2014-10-28 Thread Francisco Páez Larios
Saludos Danielo, es cierto, habemos varios que hablamos español incluso 
como lengua madre.

-- 
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] Need help with action-sendmessage code

2014-10-28 Thread James Mars
Hi,

I have the following code in a tiddler  called "new entity":

\define main()
<$transclude tiddler="my input table/form" mode="block"/>
<$set name="tags" value={{!!tags}}>
<$set name="text" value={{!!text}}>
<$set name="skeleton" value="$:/_skl/person">
<$set name="newtitle" value=<>>
<$button param=<>>
<$action-sendmessage $message="tm-new-tiddler" title=<> 
tags=<> text=<>/>
<$action-sendmessage $message="tm-close-tiddler" param="$:/_new/entitty/>
<$action-sendmessage $message="tm-delete-tiddler" 
param="$:/temp/new/entity">Create

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

I would like to be able to:
(1) Create and save the new tiddler without entering edit mode (atm it 
enters into edit mode and I have to click on the save button).
(2) Automatically navigates to new tiddler (which it currently does) and 
then close the current tiddler ("new entity"). The close tiddler function 
does not work.
(3) Delete the temp file without the delete confirmation message.

Thank you.

James

-- 
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: Need help with action-sendmessage code

2014-10-28 Thread James Mars
Just in case it is not clear from above, I am using (it gets transcluded in 
"new entity") an input table/form file to input the tags, title, and text 
of the new tiddler.

On Wednesday, 29 October 2014 13:05:10 UTC+11, James Mars wrote:
>
> Hi,
>
> I have the following code in a tiddler  called "new entity":
>
> \define main()
> <$transclude tiddler="my input table/form" mode="block"/>
> <$set name="tags" value={{!!tags}}>
> <$set name="text" value={{!!text}}>
> <$set name="skeleton" value="$:/_skl/person">
> <$set name="newtitle" value=<>>
> <$button param=<>>
> <$action-sendmessage $message="tm-new-tiddler" title=<> 
> tags=<> text=<>/>
> <$action-sendmessage $message="tm-close-tiddler" param="$:/_new/entitty/>
> <$action-sendmessage $message="tm-delete-tiddler" 
> param="$:/temp/new/entity">Create
> 
> \end
> <$tiddler tiddler="$:/temp/new/entity"><>
>
> I would like to be able to:
> (1) Create and save the new tiddler without entering edit mode (atm it 
> enters into edit mode and I have to click on the save button).
> (2) Automatically navigates to new tiddler (which it currently does) and 
> then close the current tiddler ("new entity"). The close tiddler function 
> does not work.
> (3) Delete the temp file without the delete confirmation message.
>
> Thank you.
>
> James
>

-- 
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: Tiddlywiki en Español

2014-10-28 Thread Julio Peña
Hola/ Hi Danielo,

Aunque yo soy nacido en Estados Unidos y hablo Ingles mi lengua madre es el 
Espanol tambien.

Eventhough I was born in the U.S. and speak English my mother tongue is 
Spanish also.


Saludos/ regards
Julio


On Monday, October 27, 2014 8:55:59 AM UTC-7, Danielo Rodríguez wrote:

> Sorry for those people that are not Spanish speakers, but I would like to 
> know how many people here speaks or understands Spanish.
>
> So, for being polite, a small brief in English: How many people here 
> speaks Spanish? No matter if it is your mother tongue or not. I don't want 
> to star any kind of Spanish group or something, I just want to know who 
> shares with me tiddlywiki and Spanish.
>
> Tal como he escrito en Inglés, me gustaría saber cuanta gente de la que 
> lee este grupo habla español. Más de una vez he tenido esa impresión, pero 
> nunca se está seguro 100%. No importa si es tu lengua nativa, si eres 
> Español, Latino-Americano o simplemente un estudioso. Yo soy español, por 
> lo que también me gustaría saber si tengo por aquí algún paisano con el que 
> pudiera hablar sobre tiddlywiki localmente (face 2 face)
>
>
> Un saludo a todos.
>

-- 
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 v5.0.10 plugin updates - visualeditor and editboost

2014-10-28 Thread 'Stephen Kimmel' via TiddlyWiki
That got it. Apparently it was the type that was the critical missing piece.

Interestingly enough, I find you can switch back and forth between 
text/html and text/vnd.tiddlywiki to turn the editor on and off. Switching 
seems to do some goofy things.  At least I can experiment with it. 

Thank you.

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