[tw5] Shiraz Plugin 2.6.6

2022-10-13 Thread Ken Gray
Say, I have a wiki on TiddlyHost and installed the Shiraz Plugin via the 
'drag and drop' method.  I have some of the functions but in the Control 
Panel in Settings, there's no Shiraz tab to make settings changes.  

Also, I exported the Shiraz Tutorial and imported it but it didn't show any 
of the examples just the raw code that populates it on the Shiraz site.

Has anyone had this issue or got any ideas on how to fix?  I did try a 
reinstall but didn't help.

thanks.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b21bc261-961d-4820-be25-c8aa88fcacf9n%40googlegroups.com.


Re: [tw5] Strange usage of refnotes

2021-05-12 Thread Ken

This works exactly as I want! Thank you!

You mention that this usage is fragile. Is it because the footnote 
information is actually being accessed twice - once while being transcluded 
in the data values, and again, for showfnotes, in the data tiddlers 
themselves? 

Pardon if my questions are mislead. I'm at the point of understanding where 
I can't easily tell the difference between dangerous or fragile usage and 
standard expected behavior. Waiting anxiously for the Grok Tiddlywiki book!

Thanks again for the solution. Since it's only being used in a private, 
personal wiki, I'm willing to take a chance with the fragility until I 
figure out another way to provide the functionality..

Take care,

Ken
On Tuesday, May 11, 2021 at 9:21:09 PM UTC-7 Mohammad wrote:

> See the attached example!
> Drag and drop into https://kookma.github.io/TW-Refnotes/#
> and see the result!
>
> I am not sure if this is what you want!
>
> Sidenote: I do not recommend this kind of use! It will break simply!
>
>
> Best wishes
> Mohammad
>
>
> On Wed, May 12, 2021 at 12:55 AM Ken  wrote:
>
>> I'm using refnotes version 1.6.4.
>>
>> I have a tiddler which lists data values from data tiddlers identified by 
>> a tag:
>>
>> -
>> 
>> F1F2F3
>> <$list filter="[tag[Data Tiddlers]]">
>> {{##F1}}{{##F2}}{{##F3}}
>> 
>> 
>>
>> This sentence is footnoted. <>
>>
>> <>
>> -
>>
>> A data dictionary tiddler tagged as "Data Tiddlers" has the following 
>> names and values:
>>
>> -
>> F1: V1 
>> F2: V2 <> 
>> F3: V3
>> -
>>
>> When the listing tiddler is shown, a footnote number appears after V2. If 
>> you hover over it, the text of the footnote is correctly displayed. 
>> However, the footnote doesn't appear in the <>, although the 
>> one "hard coded" in the listing tittler 's body does (although it has the 
>> wrong number).
>>
>> Does anyone know how I can make this work? Maybe a special filter in the 
>> <> macro? Or is this a result of the very complicated syntax 
>> needed in TW to get things to work?
>>
>> Any help is appreciated. Thanks!
>>
>> Ken
>>
>> -- 
>>
> 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+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/2c5811e9-477f-4c28-a5f5-caae4ac67762n%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/tiddlywiki/2c5811e9-477f-4c28-a5f5-caae4ac67762n%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d368bb8b-3dbe-4e6e-8cff-1b5632f6c069n%40googlegroups.com.


[tw5] Strange usage of refnotes

2021-05-11 Thread Ken
I'm using refnotes version 1.6.4.

I have a tiddler which lists data values from data tiddlers identified by a 
tag:

-

F1F2F3
<$list filter="[tag[Data Tiddlers]]">
{{##F1}}{{##F2}}{{##F3}}



This sentence is footnoted. <>

<>
-

A data dictionary tiddler tagged as "Data Tiddlers" has the following names 
and values:

-
F1: V1 
F2: V2 <> 
F3: V3
-

When the listing tiddler is shown, a footnote number appears after V2. If 
you hover over it, the text of the footnote is correctly displayed. 
However, the footnote doesn't appear in the <>, although the 
one "hard coded" in the listing tittler 's body does (although it has the 
wrong number).

Does anyone know how I can make this work? Maybe a special filter in the 
<> macro? Or is this a result of the very complicated syntax 
needed in TW to get things to work?

Any help is appreciated. Thanks!

Ken

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2c5811e9-477f-4c28-a5f5-caae4ac67762n%40googlegroups.com.


[tw5] Re: Problem with tm-remove-tag message

2021-04-26 Thread Ken
Thank you Mark S.!

I believe I understand now. 

The widgets within the body of the $button widget happen as part of the 
button definition only - nothing actually happens until the button is 
pressed. Since the tiddler has not yet been created, the tiddler 
$:/temp/create has not been created and therefore the new title is not 
available in this context.

When the button is pressed, the action-createtiddler is executed as 
defined, thus creating the new tiddler and saving the actual title in 
$:/temp/create as requested.

Once the button has finished doing its job, the actions in the actions 
attribute are executed. At this point the new title is available for the 
$fieldmangler widget to access, and the tm-remove-tag message can work as 
expected.

Pardon my detailed explanation, but I needed to work through it and thought 
it might be helpful for others.

It makes total sense to me now. I just wish I was more comfortable with all 
the subtleties of widgets, macros and messages. Sometimes I get totally 
lost when trying to do something very simple! 

Thank you again for taking the time to help me.

Ken

On Monday, April 26, 2021 at 1:54:53 PM UTC-7 Mark S. wrote:

> By using the actions attribute, you can add the things that have to happen 
> AFTER the creation -- otherwise the button widget doesn't see the new 
> tiddler.
>
> \define myactions() 
> <$fieldmangler tiddler={{x:/temp/create}} >
> <$action-sendmessage 
>  $message="tm-remove-tag"
>  $param="Templates"/>
> 
>
> <$action-deletetiddler $tiddler="x:/temp/create"/>
> \end
>
> <$button actions=<> >
> <$action-createtiddler
>  $basetitle="Created Tiddler"
>  $savetitle = "x:/temp/create"
>  $template="Source Tiddler"/>
>
> Create New Tiddler
>  
>
> I changed your savetitle tiddler name while testing. Also, I kept things 
> simple by not using a field since you were going to delete the tiddler 
> anyway.
>
> On Monday, April 26, 2021 at 1:28:56 PM UTC-7 Ken wrote:
>
>> I am having a problem getting a fairly simple process working in 
>> TiddlyWiki.
>>
>> I want to create a new tiddler based on a template. The template includes 
>> a Templates tag so I can see all my templates in my TOC. When I create a 
>> new tiddler using the template, I want to remove the Templates tag.
>>
>> The name of the template tiddler is "Source Tiddler". In a button, I use 
>> $action-createtiddler. Because the title of the created tiddler may be 
>> different from what's specified in the $basetitle attribute, I supply the 
>> $savetitle attribute with a place to store the actual title. In the code 
>> below I used a field in a temporary tiddler ($:/temp/create!!actual-title). 
>> I then try to remove the Templates tag from the newly created tiddler, as 
>> show in the $fieldmangler widget in the code. 
>>
>> <$button>
>> <$action-createtiddler
>>  $basetitle="Created Tiddler"
>>  $savetitle = "$:/temp/create!!actual-title"
>>  $template="Source Tiddler"/>
>>
>> <$fieldmangler tiddler={{$:/temp/create!!actual-title}}>
>> <$action-sendmessage 
>>  $message="tm-remove-tag"
>>  $param="Templates"/>
>> 
>>
>> <$action-deletetiddler $tiddler="$:/temp/create"/>
>> Create New Tiddler
>>  
>>
>> This creates the new tiddler, and stores the correct value in the field 
>> (which I verified by commenting out the action-deletetiddler code). 
>> However, the tag does not get removed. I have tried storing the actual 
>> title in a field in the tiddler containing the button and in the text of a 
>> new tiddler, but cannot seem to figure out the correct syntax to use so the 
>> $fieldmangler widget correctly sets the currentTiddler. 
>>
>> Note that if I hard code the $fieldmangler widget as follows, the tag is 
>> correctly removed!
>>
>> <$fieldmangler tiddler="Created Tiddler">
>>
>> So I would like advice on 1) Where should I store the savetitle and 2) 
>> what is the appropriate syntax to use for the tiddler attribute in the 
>> $fieldmangler widget?
>>
>> Thank you.
>>
>> Ken
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8c0f50aa-a2f1-4d28-845c-f97abb25d4e9n%40googlegroups.com.


[tw5] Problem with tm-remove-tag message

2021-04-26 Thread Ken
I am having a problem getting a fairly simple process working in TiddlyWiki.

I want to create a new tiddler based on a template. The template includes a 
Templates tag so I can see all my templates in my TOC. When I create a new 
tiddler using the template, I want to remove the Templates tag.

The name of the template tiddler is "Source Tiddler". In a button, I use 
$action-createtiddler. Because the title of the created tiddler may be 
different from what's specified in the $basetitle attribute, I supply the 
$savetitle attribute with a place to store the actual title. In the code 
below I used a field in a temporary tiddler ($:/temp/create!!actual-title). 
I then try to remove the Templates tag from the newly created tiddler, as 
show in the $fieldmangler widget in the code. 

<$button>
<$action-createtiddler
 $basetitle="Created Tiddler"
 $savetitle = "$:/temp/create!!actual-title"
 $template="Source Tiddler"/>

<$fieldmangler tiddler={{$:/temp/create!!actual-title}}>
<$action-sendmessage 
 $message="tm-remove-tag"
 $param="Templates"/>


<$action-deletetiddler $tiddler="$:/temp/create"/>
Create New Tiddler
 

This creates the new tiddler, and stores the correct value in the field 
(which I verified by commenting out the action-deletetiddler code). 
However, the tag does not get removed. I have tried storing the actual 
title in a field in the tiddler containing the button and in the text of a 
new tiddler, but cannot seem to figure out the correct syntax to use so the 
$fieldmangler widget correctly sets the currentTiddler. 

Note that if I hard code the $fieldmangler widget as follows, the tag is 
correctly removed!

<$fieldmangler tiddler="Created Tiddler">

So I would like advice on 1) Where should I store the savetitle and 2) what 
is the appropriate syntax to use for the tiddler attribute in the 
$fieldmangler widget?

Thank you.

Ken

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bce25bb9-3d5f-463d-8764-bcef527db84dn%40googlegroups.com.


[tw5] Re: Keyboard Shortcut to Save

2020-10-12 Thread Ken Gray
I actually changed it to ctl-alt-s and it works perfectly! 
thanks.

On Thursday, October 8, 2020 at 2:28:28 PM UTC-4 Ken Gray wrote:

> Awesome!  Thanks.
> odd, though.  when hit it, it opens the 'import' tiddler.  That's not 
> supposed to happen is it?
>
> On Thursday, October 8, 2020 at 1:54:00 PM UTC-4 Eric Shulman wrote:
>
>> On Thursday, October 8, 2020 at 8:31:05 AM UTC-7, Ken Gray wrote:
>>>
>>> Is there a keyboard shortcut that would do a manual save (the 'Save" 
>>> icon)?
>>>
>>
>> There isn't a pre-defined shortcut, but it is easy to add one:
>>
>> 1) Create tiddler *$:/MyShortcuts/save-file*, tagged with 
>> *$:/tags/KeyboardShortcut*, containing:
>> <$action-sendmessage $message="tm-save-wiki" />
>>
>> 2) add a field named "key", with a field value of:
>> ((save-file))
>>
>> 3) Create another tiddler, *$:/config/shortcuts/save-file*, containing:
>> ctrl-shift-S
>>
>> 4) Create another tiddler, *$:/config/ShortcutInfo/save-file*, 
>> containing:
>> {{$:/language/Buttons/SaveWiki/Hint}}
>>
>> Notes:
>> * step (1) defines the action to perform
>> * step (2) defines the binding to the keystroke definition in step (3)
>> * step (3) defines the keystroke combination to use
>> * step (4) defines the description of the shortcut
>>
>> That's it.  You can then use ctrl-shift-S to save the file.
>>
>> enjoy,
>> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a2f868f8-66c3-457d-a580-46c430132588n%40googlegroups.com.


[tw5] Re: Keyboard Shortcut to Save

2020-10-08 Thread Ken Gray
Awesome!  Thanks.
odd, though.  when hit it, it opens the 'import' tiddler.  That's not 
supposed to happen is it?

On Thursday, October 8, 2020 at 1:54:00 PM UTC-4 Eric Shulman wrote:

> On Thursday, October 8, 2020 at 8:31:05 AM UTC-7, Ken Gray wrote:
>>
>> Is there a keyboard shortcut that would do a manual save (the 'Save" 
>> icon)?
>>
>
> There isn't a pre-defined shortcut, but it is easy to add one:
>
> 1) Create tiddler *$:/MyShortcuts/save-file*, tagged with 
> *$:/tags/KeyboardShortcut*, containing:
> <$action-sendmessage $message="tm-save-wiki" />
>
> 2) add a field named "key", with a field value of:
> ((save-file))
>
> 3) Create another tiddler, *$:/config/shortcuts/save-file*, containing:
> ctrl-shift-S
>
> 4) Create another tiddler, *$:/config/ShortcutInfo/save-file*, containing:
> {{$:/language/Buttons/SaveWiki/Hint}}
>
> Notes:
> * step (1) defines the action to perform
> * step (2) defines the binding to the keystroke definition in step (3)
> * step (3) defines the keystroke combination to use
> * step (4) defines the description of the shortcut
>
> That's it.  You can then use ctrl-shift-S to save the file.
>
> enjoy,
> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/823d46d3-5f1d-4067-9030-21d2d774a0d8n%40googlegroups.com.


[tw5] Keyboard Shortcut to Save

2020-10-08 Thread Ken Gray
Is there a keyboard shortcut that would do a manual save (the 'Save" icon)?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/accb7a43-93f8-4551-b45c-d4e25e0aff54n%40googlegroups.com.


[tw5] Re: [ Streams ] : feedback and issues

2020-10-07 Thread Ken Gray
I'm using TWEXE, so maybe it's because of that. 
Does yours save as expected?

On Wednesday, October 7, 2020 at 9:48:20 AM UTC-4 saq.i...@gmail.com wrote:

> Ken, Streams does't change the default behaviour of autosave in any manner.
>
> Are you using the single file version of TiddlyWiki, or node.js?
>
>
> On Wednesday, October 7, 2020 at 3:16:21 PM UTC+2, Ken Gray wrote:
>>
>> I have 1.1.15 but my 'autosave' still doesn't work.  when I create a new 
>> item in a tiddler, it doesn't save.  however, when I create a new tiddler, 
>> it autosaves as expected. 
>> if not a way at this time, is there a keyboard shortcut to do this while 
>> I work?
>>
>> Thanks!
>>
>> On Friday, July 3, 2020 at 11:29:53 AM UTC-4 saq.i...@gmail.com wrote:
>>
>>> Please post your feedback and any issues for Streams here or on github: 
>>> https://github.com/saqimtiaz/streams
>>>
>>> Demo: https://saqimtiaz.github.io/sq-tw/streams.html
>>> Before posting a bug report please make sure you have the latest version 
>>> of the plugin from the above link.
>>>
>>> Previous thread and background: 
>>> https://groups.google.com/forum/?oldui=1#!topic/tiddlywiki/KeVDndcnY0g%5B1-25%5D
>>>
>>> I am focusing only on bug reports for now until I have greater 
>>> availability. However, all feedback will be considered when further 
>>> development takes places. 
>>>
>>> The code needs a full review for consistency after the last major 
>>> refactoring in which fields were renamed among other changes, before new 
>>> features can be added.
>>>
>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a3e7d2df-f1fd-4d33-b001-f8d8460f7c7bn%40googlegroups.com.


[tw5] Re: [ Streams ] : feedback and issues

2020-10-07 Thread Ken Gray
I have 1.1.15 but my 'autosave' still doesn't work.  when I create a new 
item in a tiddler, it doesn't save.  however, when I create a new tiddler, 
it autosaves as expected. 
if not a way at this time, is there a keyboard shortcut to do this while I 
work?

Thanks!

On Friday, July 3, 2020 at 11:29:53 AM UTC-4 saq.i...@gmail.com wrote:

> Please post your feedback and any issues for Streams here or on github: 
> https://github.com/saqimtiaz/streams
>
> Demo: https://saqimtiaz.github.io/sq-tw/streams.html
> Before posting a bug report please make sure you have the latest version 
> of the plugin from the above link.
>
> Previous thread and background: 
> https://groups.google.com/forum/?oldui=1#!topic/tiddlywiki/KeVDndcnY0g%5B1-25%5D
>
> I am focusing only on bug reports for now until I have greater 
> availability. However, all feedback will be considered when further 
> development takes places. 
>
> The code needs a full review for consistency after the last major 
> refactoring in which fields were renamed among other changes, before new 
> features can be added.
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2c07b745-3a03-4217-aedc-8b51a69bcb33n%40googlegroups.com.


Re: [tw5] Re: TW File Not Saving

2020-08-27 Thread Ken Gray
BOOM! that works!
Thanks.

On Thu, Aug 27, 2020, 4:39 PM 'Mark S.' via TiddlyWiki <
tiddlywiki@googlegroups.com> wrote:

> The backup from twexe seems to be slightly defective. What worked for me
> was to delete two tiddlers
>
> $:/UploadUrl
> $:/UploadName
>
> After that the default mechanism would work again.
>
> On Thursday, August 27, 2020 at 12:33:19 PM UTC-7, Ken Gray wrote:
>>
>> it's an export backup from twexe.
>>
>> On Thursday, August 27, 2020 at 1:32:16 PM UTC-4 Mark S. wrote:
>>
>>> How did you download or obtain the file?
>>>
>>>>
>>>>>> --
> 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/-Jz0pPeRF0Q/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/a6242f06-b47b-4685-9f3e-b4b4157d5bcao%40googlegroups.com
> <https://groups.google.com/d/msgid/tiddlywiki/a6242f06-b47b-4685-9f3e-b4b4157d5bcao%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAF%2Bjip%3DFu_j8bDOJnYCHUZy_6kLJhq39frXR6cPCE3q18BbG3g%40mail.gmail.com.


[tw5] Re: TW File Not Saving

2020-08-27 Thread Ken Gray
it's an export backup from twexe.

On Thursday, August 27, 2020 at 1:32:16 PM UTC-4 Mark S. wrote:

> How did you download or obtain the file?
>
>>


-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c7dd6abb-8107-4406-9762-db818417f158n%40googlegroups.com.


[tw5] Re: [ Streams ] : feedback and issues

2020-08-27 Thread Ken Gray
I really like this.  I'm wondering though, if it is possible to get some 
editor toolbar to show up so that I can do some things like what I do with 
Code Mirror.  Not the general wiki formatting stuff (!  *  -  etc.) but the 
more complicated stuff like @@color:black;background-color:goldenrod;  Test 
Text@@  stuff.

On Friday, July 3, 2020 at 11:29:53 AM UTC-4 saq.i...@gmail.com wrote:

> Please post your feedback and any issues for Streams here or on github: 
> https://github.com/saqimtiaz/streams
>
> Demo: https://saqimtiaz.github.io/sq-tw/streams.html
> Before posting a bug report please make sure you have the latest version 
> of the plugin from the above link.
>
> Previous thread and background: 
> https://groups.google.com/forum/?oldui=1#!topic/tiddlywiki/KeVDndcnY0g%5B1-25%5D
>
> I am focusing only on bug reports for now until I have greater 
> availability. However, all feedback will be considered when further 
> development takes places. 
>
> The code needs a full review for consistency after the last major 
> refactoring in which fields were renamed among other changes, before new 
> features can be added.
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/27106b2e-2a2a-4279-8772-a5c1c0b53277n%40googlegroups.com.


[tw5] Re: TW File Not Saving

2020-08-27 Thread Ken Gray
Currently, I'm using Firefox on Windows 10 and am using the standard out of 
the box saving solutions (i.e. the "save" button).  Single file btw.
It doesn't save at all anywhere and doesn't even register that it was saved 
(thus the save icon not returning to standard colour).

On Thursday, August 27, 2020 at 12:05:51 PM UTC-4 Mark S. wrote:

> You're not telling us any of the information that would help diagnose your 
> situation.
>
> What browser are you using?
> What platform are you on?
> Are you using node.js or single-file TW?
> What saving mechanism are you using?
>
> If you don't know what I mean by "saving mechanism", then you are probably 
> using the default save mechanism. Each time you clicked the icon a copy of 
> your file was downloaded to your download directory. Unfortunately, without 
> a mechanism, each download will have it's own unique file name.
>
> Good luck!
>
>
>
>
> On Thursday, August 27, 2020 at 8:18:33 AM UTC-7, Ken Gray wrote:
>>
>> Dang but I can't get get this thing to either Save or AutoSave.  It says 
>> it's saving when I click the icon but the 'red' doesn't clear and it 
>> doesn't save.
>>
>> Any ideas on how I can trouble shoot this and/or fix it?
>>
>> Thanks.
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0f6a02ee-6a0d-4d4c-be3a-4473d1ddcd6cn%40googlegroups.com.


[tw5] TW File Not Saving

2020-08-27 Thread Ken Gray
Dang but I can't get get this thing to either Save or AutoSave.  It says 
it's saving when I click the icon but the 'red' doesn't clear and it 
doesn't save.

Any ideas on how I can trouble shoot this and/or fix it?

Thanks.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5cf10bf3-8d68-4c01-b709-ae5da9104d6bn%40googlegroups.com.


[tw5] Re: [ Streams ] : feedback and issues

2020-08-11 Thread Ken Gray
A few observations from a newbie.

   - I didn't realize I could edit the nodes at first but then got to them 
   by accident by hitting the bullet. 
   - it may not be the way it was designed to be used so I may be off label 
  use.
  - it may already be your plan, but if you can put the sub-tiddler's 
  name where you have the warning about it being "This is in active 
  development..." message.  Highlighting would be helpful as well. 
  - my eye keeps going to the title and that's not useful but that may 
 just come in time.
  - i'd like it to go directly into editing the tiddler when 
  double-clicking.
   -  The 'fold the body' doesn't fold as much as i'd expect (it doesn't 
   fold the stream).
   - I don't see how to set those options above.


Looking forward to getting this into gold master so I can really start to 
use it.  I'm thinking meetings and brainstorming is where this is really 
going to take off.

On Monday, July 6, 2020 at 1:31:42 PM UTC-4 saq.i...@gmail.com wrote:

> Version 0.1.10
>
> https://saqimtiaz.github.io/sq-tw/streams.html
>
>- added option to disable breadcrumbs
>- added feature to add commands to context menu via tagged tiddlers
>
>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ea1a25d8-d413-4b5a-a895-eec09fab8a53n%40googlegroups.com.


[tw5] Re: TW-Shiraz plugin 2.1.0: Stable release

2020-08-04 Thread Ken Gray
Perfect Thanks!

On Tuesday, August 4, 2020 at 11:22:46 AM UTC-4 Mark S. wrote:

> It looks like if you click on the "doc" tag pill, you can drag and drop it 
> into your own TW file (drag and hover over top of TW until green bar 
> appears. Release. From resulting import tiddler, click "Import"). There 
> will be a lot of tiddlers.
>
>
> On Tuesday, August 4, 2020 at 7:30:14 AM UTC-7, Ken Gray wrote:
>>
>> This is amazing!  is there anyway I can get the tutorial to my local 
>> system?
>>
>> On Monday, March 23, 2020 at 10:11:53 AM UTC-4 Mohammad wrote:
>>
>>> *Announcement:Shiraz plugin*
>>> *Date: Mar 23rd, 2020*
>>> *Release: 2.1.0*
>>>
>>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4195e628-c9a9-4dc6-85c0-d783894b48bcn%40googlegroups.com.


[tw5] Re: TW-Shiraz plugin 2.1.0: Stable release

2020-08-04 Thread Ken Gray
This is amazing!  is there anyway I can get the tutorial to my local system?

On Monday, March 23, 2020 at 10:11:53 AM UTC-4 Mohammad wrote:

> *Announcement:Shiraz plugin*
> *Date: Mar 23rd, 2020*
> *Release: 2.1.0*
> *Status: Stable*
>
>
> Shiraz is now a mature and quite powerful plugin and it can be used as a 
> useful addition to Tiddlywiki empty edition.
>
> This *stable release* focuses on dynamic tables, documentation 
> improvement and distributing under Kookma Plugin Library.
>
> For easy installation drag and drop the attached .tid and use the plugin 
> library as described below.
>
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
>
> --Mohammad
>
>
>
> Shiraz Plugin
> 23rd March 2020 at 6:16pm
> start
>
> Tiddlywiki5.1.21+
>  
> LicenseMIT
>  
> Release2.1.0
>  
> Statusstable
>
> What is Shiraz plugin?
>
> Shiraz Shiraz is a small framework including stylesheets, templates and 
> macros to create stylish contents in Tiddlywiki. It uses modified CSS 
> classes from Bootstrap  4.3.1. Shiraz has 
> customized elements like alerts, cards, panels, images, static tables, 
> dynamic tables, badges, texts, ...
>
> Shiraz release 2 is a rewrite of Shiraz 1.2 and aims to be a micro TW 
> (CSS+macro) framework
>
> Tutorials
>
> The Shiraz Tutorial 
>  is the starting 
> point to learn more about plugin features, help, demo and examples. See 
> below for online pages.
>
> Install
>
> From the below three methods for installing shiraz plugin, select any 
> suitable method you like.
> I. Use plugin library
>
> The simplest method is to have the Kookma Plugin Library which acts 
> exactly like Official Plugin Library
>
>1. Drag and drop $:/config/KookmaPluginLibrary 
>
>  
> into 
>your wiki
>2. Open $:/ControlPanel 
>, Plugins tab 
>and the click on big button Get more plugins
>3. Click open library under Kookma Plugin Library
>4. Find shiraz and click install, or reinstall if you update shiraz
>5. Save and reload your wiki
>
> II. Standalone configuration
>
> Follow these instructions when using Tiddlywiki as a standalone HTML file:
>
>1. Drag and drop $:/plugins/kookma/shiraz 
> 
> into 
>your wiki
>2. Save and reload your wiki
>
> III. Client-Server configuration
>
> Follow these instructions when using Tiddlywiki under Node.js:
>
>1. Download the shiraz folder and put it in your Tiddlywiki plugins
> folder
>   - To download you can go to https://github.com/kookma/TW-Shiraz, 
>   and click on *Clone or download*
>   - After downloaing the source code, take the plugin from source folder 
>   and copy and paste it into your Tiddlywiki plugins folder
>2. Quit the server if it is running
>3. Add it to your wiki of choice
>   1. Edit the tiddlywiki.info file (it is in JSON format) and locate 
>   the plugins section (see below)
>   2. Add entries corresponding to the plugins you wish to add. Here 
>   add shiraz
>   3. Take care to retain commas to separate items, but do not 
>   terminate the last item in a list with a comma
>4. Restart the server
>
> {
>   "plugins": [
>   "tiddlywiki/codemirror",
>   "shiraz"
>   ],
>   "themes": [
>   "tiddlywiki/vanilla",
>   "tiddlywiki/snowwhite"
>   ],
> "languages": [
> "en-EN"
> ]
> }
>
> For local installation under Node.js,
> i. quit the server if it is runing,
> ii. put the shiraz folder into your local plugins folder under your wiki 
> folder,
> iii. restart the server.
>
> Code and demo
>
>- Demo: https://kookma.github.io/TW-Shiraz
>- Code: https://github.com/kookma/TW-Shiraz
>
> *It is highly recommended to backup your data before trying any new 
> plugin! Do it before installing shiraz*.
> More information
>
>- Installing a plugin from the plugin library 
>
> 
>- Installing custom plugins on Node.js 
>
>- Uninstalling a plugin 
>
>
> History
>
> Revision 2.1.0
>
>- Date: [23rd Mar 2020]
>- [NEW] updated to TW 5.1.22pre
>- [FIXED] documentation improved
>
> For all changes see ChangeLog 
> 
>
> Acknowledgement
>
>
>- The images for avatars have beeg taken from 
>https://www.w3schools.com/
>- Many of CSS are courtesy from Bootstrp 4.3.1 
>
>- 

[tw5] Re: Time Tracking in TiddlyWiki?

2020-07-29 Thread Ken Gray
Thanks!

On Wednesday, July 29, 2020 at 11:52:20 AM UTC-4 Eric Shulman wrote:

> On Wednesday, July 29, 2020 at 8:20:46 AM UTC-7, Ken Gray wrote:
>>
>> Silly question: How do I install this?
>>
>
> It's not packaged as a plugin, so you just need to copy all the 
> TiddlyTools/Timer tiddler into your TiddlyWiki.
>
> You can do this by dragging each tiddler title, one at a time, from the 
> SideBar list and dropping it into your
> TiddlyWiki.  This will create a temporary $:/Import tiddler. When you have 
> dropped all the tiddlers, you
> can then press the "import" button in the $:/Import tiddler to actually 
> install those tiddlers.  Note that
> after importing, you will need to save-and-reload since 
> TiddlyTools/Timer/action-timeout.js uses javascript
> code to define a new widget.
>
> Another way to import the whole bunch is to use the $:/AdvancedSearch 
> Filter tab with this filter:
>[all[]!prefix[$:/]]
> This should result in a list of all the tiddlers in the document 
> (excluding system tiddlers).
> Then, use the "Export tiddlers" button (the "half box with arrow" next to 
> the filter input field), and
> choose "JSON file".  This will save a "tiddlers.json" file on your 
> system.  Note: if you have your
> browser set to "Always ask where to save downloads", it will give you a 
> dialog box to enter the
> filename/location.  If you browser is not set to "ask", then then look in 
> your Downloads folder.
> Then, drag-n-drop this file onto your TW to do the same $:/Import process 
> as described above.
>
> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4cab2053-2a9a-4b68-9d60-6373cdf99ac0n%40googlegroups.com.


[tw5] Re: Time Tracking in TiddlyWiki?

2020-07-29 Thread Ken Gray
Silly question: How do I install this?


On Tuesday, July 28, 2020 at 3:36:54 PM UTC-4 Eric Shulman wrote:

> On Monday, July 27, 2020 at 12:18:42 PM UTC-7, Mat wrote:
>>
>> Eric Shulman wrote:
>>>
>>> There is *currently* no easy syntax for setting up a repeating pattern 
>>> of countdowns.
>>> That is something I will be adding soon.
>>>
>>
> updated http://TiddlyTools.com/timer.html
>
> * SampleCountdownSequence now does cycles!
>
> Demo is 10 minutes work session followed by 2 minutes break time, repeated 
> 5 times
> (1 hour total).
>
> There's still more customization and optimization to come:
>
> * Interface for entering worksession/breaktime durations (currently coded 
> into the demo)
> * Option for triggering other actions (e.g., "play a sound") (currently 
> just shows modal notifications)
>
> Let me know what else it should do...
>
> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/900c4268-cbc2-4bbc-b8f8-1578c002ea54n%40googlegroups.com.


[tw5] Draggable List Problems

2020-07-24 Thread Ken Gray
Dang but I'm having problems with that draggable list function.

I'm using the below code and it activates the drag outline when I grab a 
title but it doesn't re-order the list.  It does, however, work when I 
remove the tag[ABC].  Doesn't the macro allow for that?

any help would be appriciated.


<>


-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f052f6d1-3ccf-4f3e-8988-5cc5a167699fn%40googlegroups.com.


[tw5] Re: left-hand column Container

2020-07-22 Thread Ken Gray
You guys are awesome!!!  
Thanks.  Went with leftbar because easy and don't use mobile for this.

On Wednesday, July 22, 2020 at 12:41:37 AM UTC-4 Eric Shulman wrote:

> On Tuesday, July 21, 2020 at 8:47:02 PM UTC-7, Ken Gray wrote:
>>
>> In tw2, I had a tiddler that was expressly for the  left-hand column of 
>> the page.  it ran the full length and gave the page three vertical 
>> containers.  Is that available for tw5?
>>
>
> In TWClassic (aka TW2), the was a default (shadow) tiddler called 
> "MainMenu" that appeared on the left.
>
> In TW5, the default layout doesn't have a  MainMenu, but  you can create 
> one relatively easily, like this:
>
> 1) Create a tiddler named "MainMenu"
> 2) Tag it with "$:/tags/PageTemplate"
> 3) Create a field named "list-before" (leave the value blank)
> 4) Enter the following content:
> 
>
> Stuff Here
>
> More stuff here
> 
> 5) In the $:/ControlPanel, Appearance, ThemeTweaks, set the "Story left 
> position" to leave room for the desired width of the MainMenu (e.g., "20em")
> (note: you can also directly set this value 
> in $:/themes/tiddlywiki/vanilla/metrics/storyleft)
>
> That's it.  You can now edit the MainMenu tiddler to show whatever content 
> you like.
>
> Notes:
> * If you want the MainMenu to NOT scroll with the page, use 
> "position:fixed" instead of "position:absolute"
> * If you want the MainMenu to wrap its contents to fit the width, add 
> "width:20em;"
> * Adjust the "margin-top:1em" to suit your taste
>
> enjoy,
> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/848e1a92-79ee-4442-bdfe-068d568b0dfcn%40googlegroups.com.


[tw5] Re: Link to directly edit tiddler

2020-07-22 Thread Ken Gray
Brilliant!
Thanks all...perfect solution.

On Wednesday, July 22, 2020 at 12:31:09 AM UTC-4 TW Tones wrote:

> Ken,
>
> Eric solution is more open to additional settings etc... However any 
> button can be transcluded like the edit button below to operate on the 
> currentTiddler including when listing tiddler names
> {{||$:/core/ui/Buttons/edit}}
>
> But then if you have a fixed tiddlername
> {{tiddlername||$:/core/ui/Buttons/edit}}
> If it exists or not.
>
> Regards
> Tony
>
>
>
> On Wednesday, July 22, 2020 at 1:41:28 PM UTC+10, Ken Gray wrote:
>>
>> Isn't there a way to create a link in a tiddler that will take you to 
>> another tiddler already open for editing?
>>  I thought there was.
>>
>> thanks.
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d6dbf879-3805-4202-bb1d-f91736dce24fn%40googlegroups.com.


[tw5] left-hand column Container

2020-07-21 Thread Ken Gray
In tw2, I had a tiddler that was expressly for the  left-hand column of the 
page.  it ran the full length and gave the page three vertical containers.  
Is that available for tw5?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8b12160c-8fdf-4a9e-a817-ec93e18ee447n%40googlegroups.com.


[tw5] Link to directly edit tiddler

2020-07-21 Thread Ken Gray
Isn't there a way to create a link in a tiddler that will take you to 
another tiddler already open for editing?
 I thought there was.

thanks.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/29a059aa-3a35-4853-99b5-5d4209b44327n%40googlegroups.com.


[tw] Re: Make TW5 read-only?

2017-06-23 Thread Ken Girard
As Mark said, my version is for the Classic version of TW. I haven't really 
tried messing around with version 5 stuff. 
You can learn about installing plugins in TW5 from this:
http://tiddlywiki.com/#Manually%20installing%20a%20plugin

A quick look over the plugins listed there leads me to think this might be 
the closest thing to the old HideWhenPlugin
http://tiddlywiki.com/#RevealWidget

Do a search for 'plugin' on that site to see what ones they have available. 

And, yes, UserName is the name specified within TW. Used to be there was a 
spot you entered who you are, and then when you edited a tiddler it would 
put your name on it. Kind of a pointless thing if you are the only person 
using that TW, but if multiple people had access to it... nice to see that 
Joe is the one who made the last changes on that tiddler. 

On Friday, June 23, 2017 at 9:34:53 PM UTC-5, JWHoneycutt wrote:
>
>
> And a followup question:
>
> Used http://mptw.tiddlyspot.com/#HideWhenPlugin 
> 
>  All kinds of fun stuff from that.. 
>
>
> I like several things in there but must be missing crucial information. 
> For example, I love the idea of InstantTimestampPlugin
>
> All the code is right there - do I copy/paste that into the bodytext of a 
> new tiddler in my tiddlywiki5? Do I have to assign a specific systemconfig 
> tag?
>
> Thanks again -  
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cfef294c-5371-43a8-ab70-7d4cd9d72445%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Make TW5 read-only?

2017-06-23 Thread Ken Girard
Years ago I made a TW that showed one toolbar if the right username was 
typed in, and a different toolbar (No edit features) if anything else was 
in there. Still using it here at work. 

 
  



  



Used http://mptw.tiddlyspot.com/#HideWhenPlugin All kinds of fun stuff from 
that.. 


Now, that will not stop anyone who really knows what they are doing, but it 
keeps the clueless out. 

On Wednesday, June 21, 2017 at 6:14:18 PM UTC-5, JWHoneycutt wrote:
>
> I would like to share a TW5 file from Dropbox, but have it be read-only.
>
> Does this have an easy answer?
>

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/220170fd-55bf-4df0-a365-a3c90583b48c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Tiddly not saving to the link

2017-05-21 Thread ken robertson
G'day,
Do you perhaps use Firefox and Tiddlyfox? Tiddlyfox was updated a few weeks
ago. You have to re-instruct Tiddlyfox to allow saving of each of your
files. Toddlyfox now shows a somewhat difficult-to-discern toolbar icon of
a grey cat on a ball (globe?). Blue ball will not save the file, green ball
will (but I find them pretty hard to tell apart).

Good luck.
--
Regards
Ken

On 21 May 2017 at 22:57, Joanna Przewrocka <j.przewro...@gmail.com> wrote:

> Hi There,
>
> I have been using Tiddly for over a year now but my problems with not
> being able to save new versions only started a week ago. My link to Tiddly
> is saved in my dropbox folder and bookmarked in my browser. Every time I
> try to save any changes it downloads file to my hard disk and when I reopen
> my link saved in Dropbox I see an old version of Tiddly.
>
> I hope it is a common problem easily fixed... Any suggestions would be
> much much much appreciated as most of my PhD notes are saved here and I
> want to continue using it as my Notes hub.
>
> Thanks in advance!
> Aśka
>
> --
> 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 https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/tiddlywiki/d6be07fe-b154-47cc-954f-f83119703a9c%40googlegroups.com
> <https://groups.google.com/d/msgid/tiddlywiki/d6be07fe-b154-47cc-954f-f83119703a9c%40googlegroups.com?utm_medium=email_source=footer>
> .
> 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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAHsiRxMVhS3Z0koad%3Dwh%3DmL%2BKZPEkeDpwvzpSG%3DdLvg2gQiR-g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] TiddlyClip install in FF 46

2016-05-23 Thread ken robertson
Thank you all good people, we have lift-off!

--
Regards
Ken

On 23 May 2016 at 19:33, BJ <buggy...@gmail.com> wrote:

> Hi Ken,
> currently you will have to download the file
>
> https://github.com/buggyj/tiddlyclip/blob/master/tiddlyclip-0.0.9-fx%2Ban.xpi
>
> click on the 'raw' button and download the file, then drag and drop it
> onto the ff addons window.
>
> all the best
>
> BJ
>
>
> On Sunday, May 22, 2016 at 4:46:41 PM UTC+1, kenrob wrote:
>>
>> Questions for BJ.
>>
>> G'day BJ,
>>
>> I went to give TiddlyClip a try but struck a couple of problems.
>>
>> Firefox (46.0.1) complains that the XPI (linked from
>> tiddlyclip.tiddlyspot.com) isn't signed.  (Although there's a workaround
>> by fiddling about:config.)  However once the XPI does install FF disables
>> it stating "tiddlyclip could not be verified for use in Firefox and has
>> been disabled."
>>
>> It's obvious that plenty other people are successfully using TC, but I
>> can't see how to get past the installation issue.  Can you advise?
>>
>> --
>> Regards
>> Ken
>>
> --
> 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 https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/f3531312-4120-406f-a9ca-f529b8396812%40googlegroups.com
> <https://groups.google.com/d/msgid/tiddlywiki/f3531312-4120-406f-a9ca-f529b8396812%40googlegroups.com?utm_medium=email_source=footer>
> .
>
> 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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAHsiRxNfEoK3gkt_Dm2v4NUZ_N11DmwXAb0oLGiqwuKBhaKXeg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] TiddlyClip install in FF 46

2016-05-22 Thread ken robertson
Questions for BJ.

G'day BJ,

I went to give TiddlyClip a try but struck a couple of problems.

Firefox (46.0.1) complains that the XPI (linked from
tiddlyclip.tiddlyspot.com) isn't signed.  (Although there's a workaround by
fiddling about:config.)  However once the XPI does install FF disables it
stating "tiddlyclip could not be verified for use in Firefox and has been
disabled."

It's obvious that plenty other people are successfully using TC, but I
can't see how to get past the installation issue.  Can you advise?

--
Regards
Ken

-- 
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAHsiRxP0hfpX%3DvbGrzrv5z%3D6Yeg9qcW71RDUtTFQ7Tz37UbNCw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] How can I change the 'Recent' list

2015-01-07 Thread Ken Gray
PERFECT!!!
thanks.

On Monday, January 5, 2015 5:31:27 PM UTC-6, Tobias Beer wrote:

 Hi Ken,
  

 I opened $:/core/Filters/RecentTiddlers 
 http://tiddlywiki.com/#%24%3A%2Fcore%2FFilters%2FRecentTiddlers and 
 put the above code into filter field of the tiddler.


 Looking at $:/core/macros/timeline 
 http://tiddlywiki.com/#%24%3A%2Fcore%2Fmacros%2Ftimeline and not 
 finding any reference for the above.
 I am inclined to think you are trying to modify some artefact that is no 
 longer in use.

 Instead, try using the subfilter parameter of the timeline macro 
 http://tiddlywiki.com/#TimelineMacro in...

 $:/core/ui/SideBar/Recent 
 http://tiddlywiki.com/#%24%3A%2Fcore%2Fui%2FSideBar%2FRecent

 $macrocall $name=timeline
 format={{$:/language/RecentChanges/DateFormat}}
 subfilter=!tag[foo]/

 Best wishes, Tobias.


-- 
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] [TW5] How can I change the 'Recent' list

2015-01-05 Thread Ken Gray
I opened $:/core/Filters/RecentTiddlers and put the above code into 
filter field of the tiddler. I thought it would have modified what showed 
up in the Recent tab in the sidebar but maybe I'm doing the mod on the 
wrong 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] [TW5] How can I change the 'Recent' list

2014-12-30 Thread Ken Gray
I'd like to mod the tiddlers showing up in the Recent tab
[!is[system]has[modified]!sort[modified]limit[50]!tag[zj]]
this works in an advanced filter search but doesn't when I mod the shadow 
tiddler.  there was some talk about changing the Recent behavior last May 
but I haven't seen how to do this lately.

any ideas? 

-- 
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] [TW5] Bulk Rename of Tag

2014-12-08 Thread Ken Gray
Is there a way to rename a tag and have it change on all the tids?

-- 
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] Bulk Rename of Tag

2014-12-08 Thread Ken Gray
Perfect!  thanks all!

-- 
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] Quoting formatting characters

2014-11-25 Thread Ken
This accomplishes what I wanted. Thanks!

On Monday, November 24, 2014 12:17:17 AM UTC-8, Stephan Hradek wrote:

 You could also escape one of the /s with #47;


-- 
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] Quoting formatting characters

2014-11-25 Thread Ken
I just started using the new version a few days ago so at this point this 
seems like an advanced solution. I do need to play around with the 
templates though so I understand how they work. Thanks for the suggestion - 
it will give me a good starting point for learning about them.

On Monday, November 24, 2014 12:20:24 AM UTC-8, Stephan Hradek wrote:

 Or create your own nowiki-template:

 title: nowiki
 content: $view field=title/

 Usage: {{//hostname/folder||nowiki}}


-- 
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] [TW5] Quoting formatting characters

2014-11-25 Thread Ken
Thanks for the suggestion! However, this renders it in code format which, 
in the context I'm using it, isn't what I want.

On Monday, November 24, 2014 1:25:27 AM UTC-8, Jeremy Ruston wrote:

 Hi Ken

 The solution that I use is to wrap the pathname in backticks, which causes 
 it to be displayed as literal monospaced text: `//hostname/folder`

 Would that work for you?

 Best wishes

 Jeremy


 On Sun, Nov 23, 2014 at 9:58 PM, Ken kenneth...@gmail.com javascript: 
 wrote:

 I am trying to include a URL  in the format '//hostname/folder' in a 
 Tiddler. Tiddlywiki sees the '//' as a request to format the text in 
 italics. How do I quote the '//' so they appear as part of the rendered 
 text rather than as formatting characters? 

 In V2, I would use triple double quotes, or the nowiki tag, but neither 
 of these appears to work in V5. The triple backtick quotes the characters, 
 but I really don't want to display the URL in code format.

 Thanks.


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




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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] [TW5] Quoting formatting characters

2014-11-23 Thread Ken
I am trying to include a URL  in the format '//hostname/folder' in a 
Tiddler. Tiddlywiki sees the '//' as a request to format the text in 
italics. How do I quote the '//' so they appear as part of the rendered 
text rather than as formatting characters? 

In V2, I would use triple double quotes, or the nowiki tag, but neither 
of these appears to work in V5. The triple backtick quotes the characters, 
but I really don't want to display the URL in code format.

Thanks.


-- 
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] Hopefully NOT for the next 25 years!

2014-11-20 Thread Ken Gray
wow...do you have ANY idea how software is developed?  Documentation?!  
Seriously, you judge a products viability by its documentation?  FB will 
never take off cuz it's not documented?  No 'quality assurance of 
add-ons'?!!  Does any platform do that (eg Mac, Windows, Unix) ?!



On Wednesday, November 19, 2014 4:28:08 PM UTC-6, Mat wrote:

 @Jeremy, here are some what I consider major difficulties for us / TW - 
 but hopefully not so for the next 25 years. So, if(!) you have time, I'd 
 love to hear your thoughts/opinions on how we might deal with them.


- Add-ons (plugins, tweaks, themes...) - difficult to find or (more 
likely) even know they exist
- No quality assurance of add-ons
- Lacking documentation
- The aggregated knowledge from discussions relies on 3d part system 
not optimized for us
- Little insight into what attracts new users
- Little insight of user needs, tw applications, behaviors etc
- Challenging to get tiddlyverse overview (resources, applications, 
options, services, people...)
- Demanding learning curve for customization
- Too few developers (I'm just assuming this is always an issue)


 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.


[tw] Table Header Background Colour Change

2014-11-07 Thread Ken Gray
How can I change the header color on a table?  I was thinking css but I'm 
not sure, one, how to do it or two, if that's the best way to do it.

thanks.

-- 
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] Table Header Background Colour Change

2014-11-07 Thread Ken Gray
Perfect!
thanks!! 

-- 
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-30 Thread Ken Gray
 thanks.  
I thought I could put them next to each other and manually put in the 
months I want but it puts them in vertically.  is there a way I can get 
them side by side?

calendar 2014 9calendar calendar 2014 11

-- 
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-30 Thread Ken Gray
Perfect...thanks...

do you get a weird display when doing November of this year?
calendar 2014 11
vs. 
calendar 2015 11

On Thursday, October 30, 2014 10:05:44 AM UTC-5, BJ wrote:


 you should do this
 table
   tr
 tdcalendar 2014 9/td
 tdcalendar  /td
 tdcalendar 2014 11/td
   /tr
 /table

 I have noted that this show a bug in the macro

 BJ
 On Thursday, October 30, 2014 1:55:03 PM UTC, Ken Gray wrote:

  thanks.  
 I thought I could put them next to each other and manually put in the 
 months I want but it puts them in vertically.  is there a way I can get 
 them side by side?

 calendar 2014 9calendar calendar 2014 11



-- 
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-29 Thread Ken Gray
wow!!!  nice!
I have a tiddler that is always at the top and I have room to put three 
months side by side.  last month/this month/next month is there a way for 
it to figure current month -/+ 1?

-- 
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] Announcing the release of TiddlyWiki version 5.1.4

2014-10-24 Thread Ken Gray
how did you get those awesome icons in there?!

On Thursday, October 23, 2014 7:13:11 PM UTC-5, infernoape wrote:

 I just wanted to sing kodos to Jeremy and all supporters to let you know 
 how happy I am. Today, I complete an upgrade to my wiki (
 t3d.tiddlyspot.com) using only my android phone and google chrome and es 
 file explorer with no problems. I wasn't even using AndTidwiki. It was 
 awesome. Jeremy is awesome. Thank you for TW5.




 Sent from my Samsung Epic™ 4G Touch

 Jeremy Ruston jeremy...@gmail.com javascript: wrote:
 I'm delighted to announce that TiddlyWiki version 5.1.4 has been released 
 to:

 http://tiddlywiki.com/

 Remember to keep careful backups before upgrading existing wikis at:

 http://tiddlywiki.com/upgrade.html

 There's a few bug fixes, a couple of new features, and some more work on 
 the documentation:

 * Added a toolbar button for advanced search
 * Changed dragging behaviour so that you can drag a tiddler title into an 
 edit box to insert the title, making link creation easier. (This change 
 doesn't affect the behaviour of dragging tiddler links between TiddlyWiki 
 windows)
 * Added additional theme tweaks for the body text size and line height
 * Extended the ViewWidget to work with subtiddlers
 * Fixed problem with search counts
 * Fixed problem with missing wiki folder warnings under Node.js
 * Added coloured warnings and errors under Node.js

 See the release note at http://tiddlywiki.com/#Release%205.1.3 for more 
 details.

 Thanks to danielo515 and gernert for their contributions to this release.

 As usual, feedback is gratefully received!

 Best wishes

 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  
 -- 
 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+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 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: [TW 5.0.16]Footnote Popup Not Working

2014-09-15 Thread Ken Gray
I tried to un-edit my PageMacros (as per Jeremy's note below) but that got 
real ugly real quick so I copied the below code into a new tiddler with the 
tag $:/tags/Macros.  it stopped being real ugly but it didn't change the 
popup.

I copied the code above to the stylesheet tiddler popupStyle you mentioned 
as well.

did I do this wrong or is there something else I missed?

thanks.






On Monday, September 15, 2014 4:48:12 AM UTC-5, Danielo Rodríguez wrote:

 Probably is because the line:

 tw-drop-down


 try changing it to tc-drop-down. 

 So the full code should look like:

 define ref(label)
 $button popup=$:/state/$label$ class=btn-invisible tw-slidersup 
 style=color:green$label$/sup/$button
 \end

 \define definition(label,text)
 $reveal type=popup state=$:/state/$label$ animate=yes
 div class=tc-drop-down
 dl
 dt$label$/dt
 dd$text$/dd
 /dl
 /div
 /$reveal
 \end

 \define footnote(label,text)
 ref $label$
 definition $label$ $text$
 \end

 \define footnotes(label,text)
 definition $label$ $text$
 subspan style=color:green$label$ : /span $text$/sub
 \end


 You should change the CSS also.It is contained on the popupStyle tiddler 
 to look like:

 .tc-drop-down dd { max-width:300px; word-break: break; white-space:normal; 
 padding :0;}

 tc-drop-down a {display:inline;padding:0}


 Let me know about the experience.

 El jueves, 11 de septiembre de 2014 19:49:54 UTC+2, Ken Gray escribió:

 so I've been working with Danielo's PopupFootnotes and have them working 
 except that the popup window doesn't work; it just puts the text right over 
 whatever is there.  
 anyone else figure this out with B16?
 Thanks.


 http://braintest.tiddlyspot.com/#PopupFootnotes:[[Welcome%20to%20my%20testing%20Brain!]]%20Index%20PopupFootnotes
  



-- 
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: [TW 5.0.16]Footnote Popup Not Working

2014-09-15 Thread Ken Gray
worked after I put in a leading \ in your code above.

THANKS!  really like the popups!

On Monday, September 15, 2014 4:48:12 AM UTC-5, Danielo Rodríguez wrote:

 Probably is because the line:

 tw-drop-down


 try changing it to tc-drop-down. 

 So the full code should look like:

 define ref(label)
 $button popup=$:/state/$label$ class=btn-invisible tw-slidersup 
 style=color:green$label$/sup/$button
 \end

 \define definition(label,text)
 $reveal type=popup state=$:/state/$label$ animate=yes
 div class=tc-drop-down
 dl
 dt$label$/dt
 dd$text$/dd
 /dl
 /div
 /$reveal
 \end

 \define footnote(label,text)
 ref $label$
 definition $label$ $text$
 \end

 \define footnotes(label,text)
 definition $label$ $text$
 subspan style=color:green$label$ : /span $text$/sub
 \end


 You should change the CSS also.It is contained on the popupStyle tiddler 
 to look like:

 .tc-drop-down dd { max-width:300px; word-break: break; white-space:normal; 
 padding :0;}

 tc-drop-down a {display:inline;padding:0}


 Let me know about the experience.

 El jueves, 11 de septiembre de 2014 19:49:54 UTC+2, Ken Gray escribió:

 so I've been working with Danielo's PopupFootnotes and have them working 
 except that the popup window doesn't work; it just puts the text right over 
 whatever is there.  
 anyone else figure this out with B16?
 Thanks.


 http://braintest.tiddlyspot.com/#PopupFootnotes:[[Welcome%20to%20my%20testing%20Brain!]]%20Index%20PopupFootnotes
  



-- 
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] [TW 5.0.16]Footnote Popup Not Working

2014-09-11 Thread Ken Gray
so I've been working with Danielo's PopupFootnotes and have them working 
except that the popup window doesn't work; it just puts the text right over 
whatever is there.  
anyone else figure this out with B16?
Thanks.

http://braintest.tiddlyspot.com/#PopupFootnotes:[[Welcome%20to%20my%20testing%20Brain!]]%20Index%20PopupFootnotes
 

-- 
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] Call for improving localisation on tiddlywiki.com

2014-09-04 Thread Ken Gray
Agreed.  we should do one in English too.

On Thursday, September 4, 2014 10:17:54 AM UTC-5, Xavier wrote:

 Hello everyone,

 As you know, you are very welcome to help localising TiddyWiki 5 in any 
 languages you happen to be fluent in. Either by completing existing 
 translations or discussing existing translation choices for your language, 
 or start a new language from scratch.

 If you think you can help, please have a look here : 
 http://tiddlywiki.com/#How%20to%20create%20a%20translation%20for%20TiddlyWiki.
  


 If you are not familiar with the command line on your computer, you may 
 not meet the prerequisites (install node.js and use an account on Github) 
 won't be easy, but if you are motivated enough to spend a few hours 
 translating strings of text into your language *before Saturday the 20th*, 
 I'm willing to help you with the technical side (you will still need to 
 create an account on Github, in order to add your name on this list 
 https://github.com/Jermolene/TiddlyWiki5/blob/master/licenses/cla-individual.md,
  
 though).

 Just let me know.

 -- Xavier Cazin
  

-- 
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] Macro in Macro Call

2014-09-04 Thread Ken Gray
So Ton built this really neat macro to colour text.  but I'd like to colour 
the output from another macro (skeeve's datetime macro for instance).
how can I do this?

\define red(color,text)
 @@color:$color$;
 $text$
 @@
 \end

 and use it like this:

 clr red This is red


-- 
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] [TW5 beta 16]Button Code no longer working

2014-09-03 Thread Ken Gray
I have a button to create a new tiddler with a specific tag (using a 
skeleton) but it seems to have stopped working in beta 16.  I know it 
worked in beta 14.
did the upgrade break this or did I somehow?


$set name=tag1 value=Meeting Notes$newtiddler title=dateTime 
 MM/DD/ skeleton=MeetingNoteSkeletonclr black New Meeting 
 Note/$newtiddler/$set


-- 
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: My wiki is not working after save

2014-08-22 Thread Ken Gray
to be honest, it looks like it's completely corrupted and there may be no 
fix but I'm kind of new to this new version of TW.
can you get an older version back?  with windows, it may have a 'previous 
version' if you look into the file properties of the html file.


On Thursday, August 21, 2014 5:40:17 PM UTC-5, anna wrote:

 Hi,

 I am new to TiddlerWiki.  Downloaded it several days ago and loved it. I 
 added a LOT of new content today but looks like I somehow messed it up and 
 lost it all.  

 Everything looked really nice all day and worked perfectly well!  I saved 
 the wiki. When I re-open it, I am getting a completely blank browser 
 screen.  When I look atthe source for the html and scroll down, source code 
 first looks fine but then changes to all symbols inside one of my tiddlers 
 (see below).  Symbols keep going all the way down until the end of the file.

 I will REALLY REALLY appreciate any help / tips on how to fix this and 
 download my content - it's been  12 hours of work!  


 https://lh6.googleusercontent.com/-5eXCDcN8xnI/U_ZzszPw8OI/BDw/k0EwaoC0eTY/s1600/Screen%2BShot%2B2014-08-21%2Bat%2B6.28.31%2BPM.png



-- 
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] How to automate Table of Content?

2014-08-21 Thread Ken Gray
note as of 5.0.15 beta you can use the tableofcontentsmacro to do 
thisyeah!

On Monday, August 18, 2014 11:14:15 AM UTC-5, Ken Gray wrote:

 this is really awesome.  I was wondering if there was a way of making 
 netsted categories based on tags.  for instance, if a tiddler was tagged as 
 a Meeting and had a tag Scrum it would go there.  This would have the 
 benefit of making it easier to skim through all the notes and I wouldn't 
 have to maintain the sub-categories because it would build them 
 automatically.

 **Meetings
 ** Scrum
 ** Admin
 ** Support

 On Sunday, August 17, 2014 10:18:09 PM UTC-5, Matthew DeAbreu wrote:

 Make sure you include the macro definition so the full code would look 
 something like this:

 \define toc-heading(caption,body)
 $reveal type=nomatch state=qualify $:/state/toc/$caption$ 
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=show 
 class=btn-invisible{{$:/core/images/right-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$ 
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=hide 
 class=btn-invisible{{$:/core/images/down-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$ 
 text=show retain=yes animate=yes

 $body$

 /$reveal
 \end

 toc-heading Games 
 ol
 $list filter='[!is[system]tag[Game]]'
 liolli$link$view field='title'//$link/li/ol/li
 /$list
 /ol
 

 Hope this helps



-- 
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] [TW5] dateTimeMacro

2014-08-21 Thread Ken Gray
I got dateTimeMacro from Stephan Hradek's site 
http://tiddlystuff.tiddlyspot.com/ but it seems to have stopped working in 
5.0.15 beta.
can anyone else confirm that?

thanks.

-- 
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] [TW5] Sidebar Text

2014-08-20 Thread Ken Gray
I pulled off a bunch of the keyboard shortcuts for the wikitext plugin and 
put them into a tid with a bunch of other formating information.  but what 
I've found is that the none formatted text is a sort of subdued silver and 
is hard to read.

I've search through trying to find where that text is being set but can't 
find it.  I also tried to do a css setting like in the highlight.css but it 
broke the table layout for the shortcut list.

is there a way to do this?

thanks.

-- 
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] [TW5] Urgent Tiddler Always at Top of Page

2014-08-20 Thread Ken Gray
one of the things I'm using TW5 for is to track ongoing issues easily, a 
dashboard of problems if you will.  so, I need that tiddler with the list 
of urgent broken things to always be at the top of the page.

I think if it grabbed a tag (like the sidebar does) and just have the 
tiddlers with that tag line themselves up and stay at the top like a page 
header that would be perfection.  

I tried to mod the 'Topmenu' from Ton Gerner but couldnt get it to come out 
right (trying a transclude in block and a quick and dirty way of doing it).

Does anyone know how to do this already?
thanks.

-- 
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] [TW5] Urgent Tiddler Always at Top of Page

2014-08-20 Thread Ken Gray
that does it! 
thanks.


On Wednesday, August 20, 2014 1:15:25 PM UTC-5, Jeremy Ruston wrote:

 Hi Ken

  one of the things I'm using TW5 for is to track ongoing issues easily, 
 a dashboard of problems if you will.  so, I need that tiddler with the list 
 of urgent broken things to always be at the top of the page.

 The easiest way to accomplish this is to create a Dashboard tiddler and 
 then tag it $:/tags/AboveStory. You'll then have a copy of the body of that 
 tiddler permanently fixed to the top of the story river. You could also use 
 $:/tags/BelowStory to get the dashboard below the story river.

 Best wishes

 Jeremy


 On Wed, Aug 20, 2014 at 5:32 PM, Ken Gray kene...@gmail.com javascript:
  wrote:

 one of the things I'm using TW5 for is to track ongoing issues easily, a 
 dashboard of problems if you will.  so, I need that tiddler with the list 
 of urgent broken things to always be at the top of the page.

 I think if it grabbed a tag (like the sidebar does) and just have the 
 tiddlers with that tag line themselves up and stay at the top like a page 
 header that would be perfection.  

 I tried to mod the 'Topmenu' from Ton Gerner but couldnt get it to come 
 out right (trying a transclude in block and a quick and dirty way of doing 
 it).

 Does anyone know how to do this already?
 thanks.

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




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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] [TW5] Sidebar Text

2014-08-20 Thread Ken Gray
Again...perfect!
thanks!

On Wednesday, August 20, 2014 1:29:49 PM UTC-5, Jeremy Ruston wrote:

 Hi Ken

 The easiest way to address this is to create a custom palette that uses 
 different colours for the sidebar:

 1. Open Control Panel/Appearance/Palette
 2. Select Vanilla if it's not already selected
 3. Click show editor at the bottom of the list of palettes
 4. Click the clone button that is revealed
 5. Change the title of the newly created tiddler to MyPalette (or 
 something)
 6. Scroll down and change the description and name fields appropriately
 7. Click done to finish editing the tiddler
 8. Close the newly created tiddler
 9. Back in Control Panel, select your new palette from the list
 10. Scroll down and change the following colours:
 sidebar-foreground: #000
 sidebar-foreground-shadow: rgba(255,255,255, 0)
 sidebar-tiddler-link-foreground: #444
 11. Save changes

 Let me know how you get on,

 Best wishes

 Jeremy




 On Wed, Aug 20, 2014 at 4:30 PM, Ken Gray kene...@gmail.com javascript:
  wrote:

 I pulled off a bunch of the keyboard shortcuts for the wikitext plugin 
 and put them into a tid with a bunch of other formating information.  but 
 what I've found is that the none formatted text is a sort of subdued silver 
 and is hard to read.

 I've search through trying to find where that text is being set but can't 
 find it.  I also tried to do a css setting like in the highlight.css but it 
 broke the table layout for the shortcut list.

 is there a way to do this?

 thanks.

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




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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] Macro Rojo

2014-08-19 Thread Ken Gray
so  Danielo Rodríguez made this really nice 'Red Text' macro and it got me 
to wondering if I could make one for each of the other colors I want.

so I made a macro called $:/macros/danielo/rojo-blue.js
with this text.  note the changes highlighted but it doesn't work when I 
call it from a tiddler with this even after a save and reload.

can someone point me in the right direction here?

tharks.

rojo-blue test



/*\
title: $:/macros/skeeve/rojo-blue.js
type: application/javascript
module-type: macro

\*/
(function(){

/*jslint node: true, browser: true */
/*global $tw: false */
use strict;

/*
Information about this macro
This is developed to put some text in blue.
*/

exports.name = rojo-blue;

exports.params = [
{ name: textToColorize }
];

/*
Run the macro
*/
exports.run = function(textToColorize) {
if( !textToColorize) textToColorize = IMPORTANT;
return spanize(textToColorize,blue);

function spanize(texto,color){
return span style='color: + color + ' + texto + /span;
}

};

})();



-- 
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] How to automate Table of Content?

2014-08-19 Thread Ken Gray
could you do it in the order it's coded?  the first being the parent and
then the children would just fall into place after that?



Ken


On Tue, Aug 19, 2014 at 8:43 AM, Danielo Rodríguez rdani...@gmail.com
wrote:

 The problem is, how do you determine which tag should be the parent and
 which should be the child?

 El lunes, 18 de agosto de 2014 18:14:15 UTC+2, Ken Gray escribió:

 this is really awesome.  I was wondering if there was a way of making
 netsted categories based on tags.  for instance, if a tiddler was tagged as
 a Meeting and had a tag Scrum it would go there.  This would have the
 benefit of making it easier to skim through all the notes and I wouldn't
 have to maintain the sub-categories because it would build them
 automatically.

 **Meetings
 ** Scrum
 ** Admin
 ** Support

 On Sunday, August 17, 2014 10:18:09 PM UTC-5, Matthew DeAbreu wrote:

 Make sure you include the macro definition so the full code would look
 something like this:

 \define toc-heading(caption,body)
 $reveal type=nomatch state=qualify $:/state/toc/$caption$
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=show
 class=btn-invisible{{$:/core/images/right-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=hide
 class=btn-invisible{{$:/core/images/down-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$
 text=show retain=yes animate=yes

 $body$

 /$reveal
 \end

 toc-heading Games 
 ol
 $list filter='[!is[system]tag[Game]]'
 liolli$link$view field='title'//$link/li/ol/li
 /$list
 /ol
 

 Hope this helps

  --
 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/-cLtPJoqG2E/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] Font Colour

2014-08-19 Thread Ken Gray
I was doing some work with Danielo Rodríguez's work with the rojo macro and 
since it's pretty easy to build a bunch of scripts for a bunch of different 
colours, couldnt we modify this to pass along colour as a parameter?  
here's his rojo code and how it's called.

rojo text to put in red color




/*\
title: $:/macros/skeeve/rojo.js
type: application/javascript
module-type: macro

\*/
(function(){

/*jslint node: true, browser: true */
/*global $tw: false */
use strict;

/*
Information about this macro
This is developed to put some text in red.
*/

exports.name = rojo;

exports.params = [
{ name: textToColorize }
];

/*
Run the macro
*/
exports.run = function(textToColorize) {
if( !textToColorize) textToColorize = IMPORTANT;
return spanize(textToColorize,red);

function spanize(texto,color){
return span style='color: + color + ' + texto + /span;
}

};

})();



-- 
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] How to automate Table of Content?

2014-08-19 Thread Ken Gray
in the same what you assign levels in non-ordered lists.  if you have 3 
tids with 'parent' tag assigned and each of them have one tag with 
'child0', 'child1', 'child2' respectively but the 1st tid has 'child2' AND 
'child3' like this.


   - parent
  - child0
 - tid0
  - child1
 - tid1
  - child2
 - tid2
  - child3
 - tid0
  

On Tuesday, August 19, 2014 10:39:13 AM UTC-5, Danielo Rodríguez wrote:

 What do you mean with:


 *could you do it in the order it's coded?*
 El martes, 19 de agosto de 2014 16:16:24 UTC+2, Ken Gray escribió:

 could you do it in the order it's coded?  the first being the parent and 
 then the children would just fall into place after that?

  
  
 Ken


 On Tue, Aug 19, 2014 at 8:43 AM, Danielo Rodríguez rdan...@gmail.com 
 wrote:

 The problem is, how do you determine which tag should be the parent and 
 which should be the child?

 El lunes, 18 de agosto de 2014 18:14:15 UTC+2, Ken Gray escribió:

 this is really awesome.  I was wondering if there was a way of making 
 netsted categories based on tags.  for instance, if a tiddler was tagged 
 as 
 a Meeting and had a tag Scrum it would go there.  This would have the 
 benefit of making it easier to skim through all the notes and I wouldn't 
 have to maintain the sub-categories because it would build them 
 automatically.

 **Meetings
 ** Scrum
 ** Admin
 ** Support

 On Sunday, August 17, 2014 10:18:09 PM UTC-5, Matthew DeAbreu wrote:

 Make sure you include the macro definition so the full code would look 
 something like this:

 \define toc-heading(caption,body)
 $reveal type=nomatch state=qualify $:/state/toc/$caption$ 
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=show 
 class=btn-invisible{{$:/core/images/right-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$ 
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=hide 
 class=btn-invisible{{$:/core/images/down-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$ 
 text=show retain=yes animate=yes

 $body$

 /$reveal
 \end

 toc-heading Games 
 ol
 $list filter='[!is[system]tag[Game]]'
 liolli$link$view field='title'//$link/li/ol/li
 /$list
 /ol
 

 Hope this helps

  -- 
 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/-cLtPJoqG2E/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com.
 To post to this group, send email to tiddl...@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] How to automate Table of Content?

2014-08-19 Thread Ken Gray
the html would look likej this

liparent/liullichild0/liullitid0/li/ullichild1/liullitid1/li/ullichild2/liullitid2/li/ullichild3/liullitid0/li



On Tuesday, August 19, 2014 10:51:19 AM UTC-5, Ken Gray wrote:

 in the same what you assign levels in non-ordered lists.  if you have 3 
 tids with 'parent' tag assigned and each of them have one tag with 
 'child0', 'child1', 'child2' respectively but the 1st tid has 'child2' AND 
 'child3' like this.


- parent
   - child0
  - tid0
   - child1
  - tid1
   - child2
  - tid2
   - child3
  - tid0
   

 On Tuesday, August 19, 2014 10:39:13 AM UTC-5, Danielo Rodríguez wrote:

 What do you mean with:


 *could you do it in the order it's coded?*
 El martes, 19 de agosto de 2014 16:16:24 UTC+2, Ken Gray escribió:

 could you do it in the order it's coded?  the first being the parent and 
 then the children would just fall into place after that?

  
  
 Ken


 On Tue, Aug 19, 2014 at 8:43 AM, Danielo Rodríguez rdan...@gmail.com 
 wrote:

 The problem is, how do you determine which tag should be the parent and 
 which should be the child?

 El lunes, 18 de agosto de 2014 18:14:15 UTC+2, Ken Gray escribió:

 this is really awesome.  I was wondering if there was a way of making 
 netsted categories based on tags.  for instance, if a tiddler was tagged 
 as 
 a Meeting and had a tag Scrum it would go there.  This would have the 
 benefit of making it easier to skim through all the notes and I wouldn't 
 have to maintain the sub-categories because it would build them 
 automatically.

 **Meetings
 ** Scrum
 ** Admin
 ** Support

 On Sunday, August 17, 2014 10:18:09 PM UTC-5, Matthew DeAbreu wrote:

 Make sure you include the macro definition so the full code would 
 look something like this:

 \define toc-heading(caption,body)
 $reveal type=nomatch state=qualify $:/state/toc/$caption$ 
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=show 
 class=btn-invisible{{$:/core/images/right-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$ 
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=hide 
 class=btn-invisible{{$:/core/images/down-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$ 
 text=show retain=yes animate=yes

 $body$

 /$reveal
 \end

 toc-heading Games 
 ol
 $list filter='[!is[system]tag[Game]]'
 liolli$link$view field='title'//$link/li/ol/li
 /$list
 /ol
 

 Hope this helps

  -- 
 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/-cLtPJoqG2E/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com.
 To post to this group, send email to tiddl...@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: Font Colour

2014-08-19 Thread Ken Gray
that's perfect!!!  however, I'm getting 'illegal character' JS error.  did 
it mess up your copy/paste?

On Tuesday, August 19, 2014 1:23:10 PM UTC-5, Ton Gerner wrote:

 Hi Ken,

 Why not do it in WikiText?

 Create a macro tiddler, tagged with $:/tags/Macro, containing:

 \define red(color,text)
 @@color:$color$;
 $text$
 @@
 \end

 and use it like this:

 clr red This is red

 Cheers,

 Ton

 On Tuesday, August 19, 2014 5:44:38 PM UTC+2, Ken Gray wrote:

 I was doing some work with Danielo Rodríguez's work with the rojo macro 
 and since it's pretty easy to build a bunch of scripts for a bunch of 
 different colours, couldnt we modify this to pass along colour as a 
 parameter?  
 here's his rojo code and how it's called.

 rojo text to put in red color




 /*\
 title: $:/macros/skeeve/rojo.js
 type: application/javascript
 module-type: macro

 \*/
 (function(){

 /*jslint node: true, browser: true */
 /*global $tw: false */
 use strict;

 /*
 Information about this macro
 This is developed to put some text in red.
 */

 exports.name = rojo;

 exports.params = [
 { name: textToColorize }
 ];

 /*
 Run the macro
 */
 exports.run = function(textToColorize) {
 if( !textToColorize) textToColorize = IMPORTANT;
 return spanize(textToColorize,red);
 
 function spanize(texto,color){
 return span style='color: + color + ' + texto + /span;
 }

 };

 })();





-- 
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: Font Colour

2014-08-19 Thread Ken Gray


I'm using the standard version with firefox v31.0
it's a popup message for me; you shoulb be able to read my pasted code as 
well.


On Tuesday, August 19, 2014 2:40:38 PM UTC-5, Ton Gerner wrote:

 Hi Ken,

 It just works here with Firefox and Chrome.
 Where do you get that error. In the console of the developer tools?
 Are you using the node.js version? I am using a standalone version on 
 Windows 7.

 Cheers,

 Ton

 On Tuesday, August 19, 2014 9:28:53 PM UTC+2, Ken Gray wrote:

 thanks.  I'm still getting an error with the code or is firefox just 
 messing it up with its JS engine?

 On Tuesday, August 19, 2014 2:19:15 PM UTC-5, Ton Gerner wrote:

 Hi Ken,

 Sorry, too fast I started with a red macro and forgot to rename the 
 red macro to clr macro.

 Here the revised version:

 Create a macro tiddler, tagged with $:/tags/Macro, containing:

 \define clr(color,text)
 @@color:$color$;
 $text$
 @@
 \end

 and use it like this:

 clr red This is red

 Cheers,

 Ton


 On Tuesday, August 19, 2014 8:34:14 PM UTC+2, Ken Gray wrote:

 that's perfect!!!  however, I'm getting 'illegal character' JS error.  
 did it mess up your copy/paste?

 On Tuesday, August 19, 2014 1:23:10 PM UTC-5, Ton Gerner wrote:

 Hi Ken,

 Why not do it in WikiText?

 Create a macro tiddler, tagged with $:/tags/Macro, containing:

 \define red(color,text)
 @@color:$color$;
 $text$
 @@
 \end

 and use it like this:

 clr red This is red

 Cheers,

 Ton

 On Tuesday, August 19, 2014 5:44:38 PM UTC+2, Ken Gray wrote:

 I was doing some work with Danielo Rodríguez's work with the rojo 
 macro and since it's pretty easy to build a bunch of scripts for a bunch 
 of 
 different colours, couldnt we modify this to pass along colour as a 
 parameter?  
 here's his rojo code and how it's called.

 rojo text to put in red color




 /*\
 title: $:/macros/skeeve/rojo.js
 type: application/javascript
 module-type: macro

 \*/
 (function(){

 /*jslint node: true, browser: true */
 /*global $tw: false */
 use strict;

 /*
 Information about this macro
 This is developed to put some text in red.
 */

 exports.name = rojo;

 exports.params = [
 { name: textToColorize }
 ];

 /*
 Run the macro
 */
 exports.run = function(textToColorize) {
 if( !textToColorize) textToColorize = IMPORTANT;
 return spanize(textToColorize,red);
 
 function spanize(texto,color){
 return span style='color: + color + ' + texto + /span;
 }

 };

 })();





-- 
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: Font Colour

2014-08-19 Thread Ken Gray
nevermind.  when it didn't work the first time I thought I setup the macro 
tid wrong and added the type as javascript...which it isn't.  so now that I 
pulled that off it works great!!!

thanks.

On Tuesday, August 19, 2014 2:40:38 PM UTC-5, Ton Gerner wrote:

 Hi Ken,

 It just works here with Firefox and Chrome.
 Where do you get that error. In the console of the developer tools?
 Are you using the node.js version? I am using a standalone version on 
 Windows 7.

 Cheers,

 Ton

 On Tuesday, August 19, 2014 9:28:53 PM UTC+2, Ken Gray wrote:

 thanks.  I'm still getting an error with the code or is firefox just 
 messing it up with its JS engine?

 On Tuesday, August 19, 2014 2:19:15 PM UTC-5, Ton Gerner wrote:

 Hi Ken,

 Sorry, too fast I started with a red macro and forgot to rename the 
 red macro to clr macro.

 Here the revised version:

 Create a macro tiddler, tagged with $:/tags/Macro, containing:

 \define clr(color,text)
 @@color:$color$;
 $text$
 @@
 \end

 and use it like this:

 clr red This is red

 Cheers,

 Ton


 On Tuesday, August 19, 2014 8:34:14 PM UTC+2, Ken Gray wrote:

 that's perfect!!!  however, I'm getting 'illegal character' JS error.  
 did it mess up your copy/paste?

 On Tuesday, August 19, 2014 1:23:10 PM UTC-5, Ton Gerner wrote:

 Hi Ken,

 Why not do it in WikiText?

 Create a macro tiddler, tagged with $:/tags/Macro, containing:

 \define red(color,text)
 @@color:$color$;
 $text$
 @@
 \end

 and use it like this:

 clr red This is red

 Cheers,

 Ton

 On Tuesday, August 19, 2014 5:44:38 PM UTC+2, Ken Gray wrote:

 I was doing some work with Danielo Rodríguez's work with the rojo 
 macro and since it's pretty easy to build a bunch of scripts for a bunch 
 of 
 different colours, couldnt we modify this to pass along colour as a 
 parameter?  
 here's his rojo code and how it's called.

 rojo text to put in red color




 /*\
 title: $:/macros/skeeve/rojo.js
 type: application/javascript
 module-type: macro

 \*/
 (function(){

 /*jslint node: true, browser: true */
 /*global $tw: false */
 use strict;

 /*
 Information about this macro
 This is developed to put some text in red.
 */

 exports.name = rojo;

 exports.params = [
 { name: textToColorize }
 ];

 /*
 Run the macro
 */
 exports.run = function(textToColorize) {
 if( !textToColorize) textToColorize = IMPORTANT;
 return spanize(textToColorize,red);
 
 function spanize(texto,color){
 return span style='color: + color + ' + texto + /span;
 }

 };

 })();





-- 
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] How to automate Table of Content?

2014-08-18 Thread Ken Gray
this is really awesome.  I was wondering if there was a way of making 
netsted categories based on tags.  for instance, if a tiddler was tagged as 
a Meeting and had a tag Scrum it would go there.  This would have the 
benefit of making it easier to skim through all the notes and I wouldn't 
have to maintain the sub-categories because it would build them 
automatically.

**Meetings
** Scrum
** Admin
** Support

On Sunday, August 17, 2014 10:18:09 PM UTC-5, Matthew DeAbreu wrote:

 Make sure you include the macro definition so the full code would look 
 something like this:

 \define toc-heading(caption,body)
 $reveal type=nomatch state=qualify $:/state/toc/$caption$ 
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=show 
 class=btn-invisible{{$:/core/images/right-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$ 
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=hide 
 class=btn-invisible{{$:/core/images/down-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$ 
 text=show retain=yes animate=yes

 $body$

 /$reveal
 \end

 toc-heading Games 
 ol
 $list filter='[!is[system]tag[Game]]'
 liolli$link$view field='title'//$link/li/ol/li
 /$list
 /ol
 

 Hope this helps



-- 
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] How to automate Table of Content?

2014-08-17 Thread Ken Gray
wow this works great.  I made a little tweak to the last part of the code 
to straighten out the numbers.
I just open up the tiddlywiki site and made a new tiddler.

toc-heading examples 
ol
$list filter='[!is[system]tag[examples]]'
   li$link$view field='title'//$link/li
/$list
/ol


On Sunday, August 17, 2014 10:18:09 PM UTC-5, Matthew DeAbreu wrote:

 Make sure you include the macro definition so the full code would look 
 something like this:

 \define toc-heading(caption,body)
 $reveal type=nomatch state=qualify $:/state/toc/$caption$ 
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=show 
 class=btn-invisible{{$:/core/images/right-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$ 
 text=show
 $button set=qualify $:/state/toc/$caption$ setTo=hide 
 class=btn-invisible{{$:/core/images/down-arrow}} $caption$
 /$button
 /$reveal
 $reveal type=match state=qualify $:/state/toc/$caption$ 
 text=show retain=yes animate=yes

 $body$

 /$reveal
 \end

 toc-heading Games 
 ol
 $list filter='[!is[system]tag[Game]]'
 liolli$link$view field='title'//$link/li/ol/li
 /$list
 /ol
 

 Hope this helps



-- 
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] [TW5] 5.0.13 footnote broken?

2014-08-15 Thread Ken Gray
shouldnt this code work natively?
footnote label text here
http://braintest.tiddlyspot.com/#PopupFootnotes:[[Welcome%20to%20my%20testing%20Brain!]]%20Index%20PopupFootnotes

-- 
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] Uninstall Tri-State Sidebar

2014-08-15 Thread Ken Gray
odd.  it is still putting all the icons across the sidebar instead of just 
the ones I have checked.  did I install it correctly by just dragging the 
link from this line in http://tw5tristate.tiddlyspot.com/? 

is it a theme thing?  I'm using snow white if that matters.

This functionality is available as a plugin ($:/plugins/tongerner/tristate 
http://tw5tristate.tiddlyspot.com/#%24%3A%2Fplugins%2Ftongerner%2Ftristate) 
which you 



On Friday, August 15, 2014 10:50:09 AM UTC-5, Ton Gerner wrote:

 Hi Ken,

 'Tristate' toggle Sidebar plugin upgraded to TW5.0.14-beta, see [1] and 
 [2].

 Have fun,

 Ton

 [1] http://tongerner.tiddlyspot.com/
 [2] http://tw5tristate.tiddlyspot.com/

 On Thursday, August 14, 2014 7:44:04 PM UTC+2, Ken Gray wrote:

 thanks.  I figured it was an update thing but wasn't sure if just 
 deleting that tiddler would delete all the code it put in as well.

 can't wait for the update!

 On Thursday, August 14, 2014 12:35:41 PM UTC-5, Ton Gerner wrote:

 Hi Ken,

 The 'tristate' toggle Sidebar plugin is only three days old and did work 
 with TW5.0.13. I can confirm it does not work in TW5.0.14.
 To delete the plugin go to the Control panel (cog wheel), tab Plugins. 
 Open the plugin and delete it. Save and reload.

 I have to update all my guides after upgrading to TW5.0.14, so I need 
 some time to do that.

 Check [1] (or [2]) to see the progress of upgrading my guides.

 Cheers,

 Ton

 [1] http://tongerner.tiddlyspot.com/
 [2] http://tw5tristate.tiddlyspot.com/



 On Thursday, August 14, 2014 6:18:42 PM UTC+2, Ken Gray wrote:

 I think the Tri-state may have messed up the 5.0.14 sidebar menu; I was 
 going to test that hypothesis out but I'm not sure how to cleanly disable 
 the Tri-State Sidebar (which is AWESOME btw) or uninstall it temporarily.

 does anyone have any ideas for that?

 thanks.



-- 
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] Uninstall Tri-State Sidebar

2014-08-15 Thread Ken Gray
Nevermind.  I reinstalled it to check the 'classic' setting and now it 
works great!!  thanks.

On Friday, August 15, 2014 11:02:00 AM UTC-5, Ken Gray wrote:

 odd.  it is still putting all the icons across the sidebar instead of just 
 the ones I have checked.  did I install it correctly by just dragging the 
 link from this line in http://tw5tristate.tiddlyspot.com/? 

 is it a theme thing?  I'm using snow white if that matters.

 This functionality is available as a plugin (
 $:/plugins/tongerner/tristate 
 http://tw5tristate.tiddlyspot.com/#%24%3A%2Fplugins%2Ftongerner%2Ftristate) 
 which you 



 On Friday, August 15, 2014 10:50:09 AM UTC-5, Ton Gerner wrote:

 Hi Ken,

 'Tristate' toggle Sidebar plugin upgraded to TW5.0.14-beta, see [1] and 
 [2].

 Have fun,

 Ton

 [1] http://tongerner.tiddlyspot.com/
 [2] http://tw5tristate.tiddlyspot.com/

 On Thursday, August 14, 2014 7:44:04 PM UTC+2, Ken Gray wrote:

 thanks.  I figured it was an update thing but wasn't sure if just 
 deleting that tiddler would delete all the code it put in as well.

 can't wait for the update!

 On Thursday, August 14, 2014 12:35:41 PM UTC-5, Ton Gerner wrote:

 Hi Ken,

 The 'tristate' toggle Sidebar plugin is only three days old and did 
 work with TW5.0.13. I can confirm it does not work in TW5.0.14.
 To delete the plugin go to the Control panel (cog wheel), tab Plugins. 
 Open the plugin and delete it. Save and reload.

 I have to update all my guides after upgrading to TW5.0.14, so I need 
 some time to do that.

 Check [1] (or [2]) to see the progress of upgrading my guides.

 Cheers,

 Ton

 [1] http://tongerner.tiddlyspot.com/
 [2] http://tw5tristate.tiddlyspot.com/



 On Thursday, August 14, 2014 6:18:42 PM UTC+2, Ken Gray wrote:

 I think the Tri-state may have messed up the 5.0.14 sidebar menu; I 
 was going to test that hypothesis out but I'm not sure how to cleanly 
 disable the Tri-State Sidebar (which is AWESOME btw) or uninstall it 
 temporarily.

 does anyone have any ideas for that?

 thanks.



-- 
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] [TW5] Uninstall Tri-State Sidebar

2014-08-14 Thread Ken Gray
I think the Tri-state may have messed up the 5.0.14 sidebar menu; I was 
going to test that hypothesis out but I'm not sure how to cleanly disable 
the Tri-State Sidebar (which is AWESOME btw) or uninstall it temporarily.

does anyone have any ideas for that?

thanks.

-- 
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] Uninstall Tri-State Sidebar

2014-08-14 Thread Ken Gray
thanks.  I figured it was an update thing but wasn't sure if just deleting 
that tiddler would delete all the code it put in as well.

can't wait for the update!

On Thursday, August 14, 2014 12:35:41 PM UTC-5, Ton Gerner wrote:

 Hi Ken,

 The 'tristate' toggle Sidebar plugin is only three days old and did work 
 with TW5.0.13. I can confirm it does not work in TW5.0.14.
 To delete the plugin go to the Control panel (cog wheel), tab Plugins. 
 Open the plugin and delete it. Save and reload.

 I have to update all my guides after upgrading to TW5.0.14, so I need some 
 time to do that.

 Check [1] (or [2]) to see the progress of upgrading my guides.

 Cheers,

 Ton

 [1] http://tongerner.tiddlyspot.com/
 [2] http://tw5tristate.tiddlyspot.com/



 On Thursday, August 14, 2014 6:18:42 PM UTC+2, Ken Gray wrote:

 I think the Tri-state may have messed up the 5.0.14 sidebar menu; I was 
 going to test that hypothesis out but I'm not sure how to cleanly disable 
 the Tri-State Sidebar (which is AWESOME btw) or uninstall it temporarily.

 does anyone have any ideas for that?

 thanks.



-- 
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] Pre-Formatted Tiddler

2014-08-13 Thread Ken Gray
I have 5.0.13-beta and I need to have it populate the date in the tittle 
and set the cursor into the body to receive text.
I've tried getting Magik http://tw5magick.tiddlyspot.com/'s Journal 
function to do this but I just can't get it to work.  

Can anyone give me some pointers to do this?
Thanks.

-- 
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: Importing plugins

2014-08-12 Thread Ken Gray
Wow...I'm just not grokking this.  when I drag links over and drop them on 
the file in File Manager it just creates a shortcut to the webpage.  when I 
drop it on the page of the browser that has my wiki open it just creates a 
new tiddler with the tittle of Untittled and the body of it contains a 
hyperlirked url text.

what am I missing here?

On Thursday, June 5, 2014 4:16:51 PM UTC-5, Jay Frase wrote:

 I just upgraded from Classic to TW5 and I can't figure out how to import 
 plugins from other sites.  What's the trick?



-- 
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: Importing plugins

2014-08-12 Thread Ken Gray
version is 5.0.13-beta
what I did was grab the link above and drag it around.  I went to the page 
and it opened up the tiddler.  I grabbed the link under the 'open' tab and 
pulled it to my tw and it made a new tiddler.  I saved and reloaded but the 
shortcuts don't work for me because I don't think I actually have the 
plugin just the tiddler.

any thoughts on what I'm doing wrong?


On Tuesday, August 12, 2014 12:28:37 PM UTC-5, PMario wrote:

 Hi Ken,

 Which TW version do you use? 
 You can use the version macro to see the TW version.

 It depends on the type of links, that you drag and drop. .. If you drag 
 a tiddler, it should create a new tiddler. If you drag content from other 
 web pages, it depends on the type of the content you selected. So it may be 
 a text tiddler, an image link or even the image content. 

 -mario




-- 
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: Importing plugins

2014-08-12 Thread Ken Gray
ok wait I figured it out!  I need to click the link and go to his tw.  then 
INSIDE his tiddler is the link that I drag.

thanks!

On Tuesday, August 12, 2014 12:42:21 PM UTC-5, Ken Gray wrote:

 version is 5.0.13-beta
 what I did was grab the link above and drag it around.  I went to the page 
 and it opened up the tiddler.  I grabbed the link under the 'open' tab and 
 pulled it to my tw and it made a new tiddler.  I saved and reloaded but the 
 shortcuts don't work for me because I don't think I actually have the 
 plugin just the tiddler.

 any thoughts on what I'm doing wrong?


 On Tuesday, August 12, 2014 12:28:37 PM UTC-5, PMario wrote:

 Hi Ken,

 Which TW version do you use? 
 You can use the version macro to see the TW version.

 It depends on the type of links, that you drag and drop. .. If you drag 
 a tiddler, it should create a new tiddler. If you drag content from other 
 web pages, it depends on the type of the content you selected. So it may be 
 a text tiddler, an image link or even the image content. 

 -mario




-- 
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: Importing plugins

2014-08-12 Thread Ken Gray
PERFECT!!  THANKS.

The easiest place to find all the plugins installed in a particular TW is
 from the plugins tab of the control panel, from where you can drag them
 across.



Ken


On Tue, Aug 12, 2014 at 8:27 PM, Richard Smith 
richardwilliamsmit...@gmail.com wrote:

 Hi Ken,

 The slight confusion is semantic, I think. By tiddler we refer to the
 individual wiki entries, not to the document as a whole. Practically
 everything in TiddlyWiki is a Tiddler, including plugins.

 The easiest place to find all the plugins installed in a particular TW is
 from the plugins tab of the control panel, from where you can drag them
 across.

 Regards,
 Richard

 On Wednesday, August 13, 2014 3:45:52 AM UTC+10, Ken Gray wrote:

 ok wait I figured it out!  I need to click the link and go to his tw.
 then INSIDE his tiddler is the link that I drag.

 thanks!

 On Tuesday, August 12, 2014 12:42:21 PM UTC-5, Ken Gray wrote:

 version is 5.0.13-beta
 what I did was grab the link above and drag it around.  I went to the
 page and it opened up the tiddler.  I grabbed the link under the 'open' tab
 and pulled it to my tw and it made a new tiddler.  I saved and reloaded but
 the shortcuts don't work for me because I don't think I actually have the
 plugin just the tiddler.

 any thoughts on what I'm doing wrong?


 On Tuesday, August 12, 2014 12:28:37 PM UTC-5, PMario wrote:

 Hi Ken,

 Which TW version do you use?
 You can use the version macro to see the TW version.

 It depends on the type of links, that you drag and drop. .. If you
 drag a tiddler, it should create a new tiddler. If you drag content from
 other web pages, it depends on the type of the content you selected. So it
 may be a text tiddler, an image link or even the image content.

 -mario


  --
 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/Q6838jA3vwY/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: TiddlyTexter - Helps you with wikitext.

2014-06-11 Thread ken robertson
On 12 June 2014 00:44, David Gifford dgiff...@crcna.org wrote:

 trovi.com.


Google responses relating to: Browser Hijacker Removal Guide
https://www.google.com.au/search?q=trovi.com.

Many people swear by Malawarebytes for such a task.
Enjoy your vacation...

--
Regards
Ken

-- 
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] Season's Greetings

2013-12-24 Thread ken robertson
G'day,

I've been lurking around this group and using a few TWs for some years.
Having just returned from Christmas lunch I'll be a bit slow.

However it occurs to me that it's an appropriate time to acknowledge those
who give so generously of their time.  Jeremy and Eric, and so many
accomplices, are so prolific that they serve as such fine examples for
other communities to aspire to.  While talk of things TW5 may float largely
somewhere over my head, the community interaction and involvement never
ceases to amaze and hearten me.  To quote a gifted purveyor of words from
over a century ago - Yes Virginia, there is a Santa Claus.

So please, have a Merry Christmas, Happy Hanukkah, Happy Holidays -
whatever works for you.

--
Regards
Ken

-- 
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/groups/opt_out.


Re: [tw] Dealing with unwelcome visitors during Google Hangouts

2013-11-23 Thread ken robertson
Hmm, subscription counter seems stuck on 37?


On 23 November 2013 20:04, Jeremy Ruston jeremy.rus...@gmail.com wrote:

 Short version: please subscribe to my YouTube channel to to get me over
 the 100 subscribers mark:

 http://www.youtube.com/user/jermolene

 So, as some of you may know, TiddlyWiki Hangout #22 was disrupted by the
 inappropriate behaviour of an unwelcome visitor. That made it impossible to
 release the video as usual. Instead, I've had to download it and then
 laboriously locate and cut the offending parts. With Mario helping as
 another pair of eyes, I'm now done, and I shall post when the upload to
 YouTube completes.

 To avoid this happening in the future we need to set the hangout to be
 private. The catch is that I can only do that if I have over 100
 subscribers on my YouTube channel - the total is currently 36.

 I'd be very grateful therefore if you could take the time to subscribe to
 my channel, ideally as many times as possible!

 Many thanks,

 Jeremy.




 --
 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/groups/opt_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/groups/opt_out.


Re: [tw] Re: Monchis notes

2013-11-20 Thread ken robertson
G'day Dave,

Sorry, I'm not up to speed with the wily ways of TW5, but I had a little
peek in TW5 mall.

Got into Create a workstation for research on a topic, scrolled down to
the graphic. Angels Research. then just accidentally did a little left
click and drag on the page.

The result is a very noticeable error dialog stating
Internal JavaScript Error
Well, this is embarrassing. It is recommended that you restart TiddlyWiki
by refreshing your browser
TypeError: this.generateTitle is not a function

An OK dispatches the error dialog and the TW continues to run.


In Monchis' Notes, nudging the graphic in Second Sample causes the same
error dialog to appear briefly before the TW aborts, however the graphic is
now displayed in a new browser tab.

Browser was FF 25.0.1.

In Chrome 31.0.1650.57, the browser doesn't abort, but the new tab doesn't
appear either.

Forgive me if I've rediscovered something that others have already
identified and dealt with.

--
Regards
Ken



On 20 November 2013 07:20, Jeremy Ruston jeremy.rus...@gmail.com wrote:

 Looks very good, great stuff,

 Best wishes

 Jeremy


 On Tue, Nov 19, 2013 at 8:17 PM, David Gifford dgiff...@crcna.org wrote:

 Yeah Jeremy, I fixed it by doing what you said about putting the guts to
 the list filter into a template, and then by getting rid of the table stuff
 altogether and reverting to a simpler list. The note card box shadow wasn't
 working after putting position relative anyway. A neat effect, but the hrs
 do the trick nicely enough. Anybody who downloaded monchis before this
 should really download it again. Blessings


 Dave

 On Tuesday, November 19, 2013 1:06:50 PM UTC-6, David Gifford wrote:

 Hi all,

 I just created an adaptation of TiddlyWiki 5 for my friend Monserrat
 (Monchis). I have stripped away a lot of cool but technical stuff from
 TW5 to make it dead simple for new users, and have added heaps of
 instructions and a simpler to use formatting tiddler. I even added
 instructions in the edittemplate.

 Feel free to share it with non-TiddlyWiki friends to get them hooked on
 TW5. Then move them up to the real thing from there. Gosh, I am starting to
 sound like Walter White.

 http://www.giffmex.org/monchis.html

 Jeremy:

 1. Feel free to use any of the instructions and formatting stuff for
 documentation if you find it helpful. As always, my stuff is for the taking.
 2. Putting position:relative; in the tr for notecards CSS did not change
 the behavior of the tag popup for me. Not sure why.

 Blessings

 Dave


  --
 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/groups/opt_out.




 --
 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/groups/opt_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/groups/opt_out.


Re: [tw] Testing new TW5 Theme: etch

2013-11-12 Thread ken robertson
G'day Bob,
Syncer error: Error: XMLHttpRequest error: 404

That's possibly not a good thing.

--
Regards
Ken


On 12 November 2013 14:33, Bob Robison rwrobi...@gmail.com wrote:

 I've just discovered how to (mostly) get a TW5 tiddlywiki up on
 tiddlyspot, though I think I still have some issues to work out.  Anyway, I
 have been playing with creating a new theme -- mostly just to see how
 things work.  It is most assuredly not ready for prime-time, but if anyone
 wants to take a peek and see what they think, I would appreciate the
 feedback.  It is all part of the learning process.

 You can see current state at:  http://tw5gray.tiddlyspot.com

 bob
 (grayeul)

 --
 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/groups/opt_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/groups/opt_out.


[tw] TWC - Help documentation via TiddlySpace, but why TSpace details

2013-10-29 Thread ken
Let me preface my feedback…
I appreciate good support docs  try to help improve docs.
I remember when I started trying TW 5 years ago…abit of a challenge, but 
thankfully TiddlyWiki.org[1], TiddlyDU, TWHelp  others were available 
beyond TiddlyWiki.com so I managed to get 'in the groove'.

re: TiddlySpace, I expect to find it within 
http://tiddlywiki.com#[[HostedOptions]] and it is there - good.

Today, I'm perusing TW281 http://tiddlywiki.com and noticed TiddlySpace 
specific details in 8 other tiddlers!?!
Should the TiddlySpace specific details be removed? …I think so as it may 
be confusing.

1/ [[ColorPalette shadows]] …content is…
This tiddler determines the colour scheme used within the TiddlyWiki.  When 
a new space is created the random color palette macro determines the 
default, however these can be overwritten directly in the ColorPalette 
tiddler.
- The 2nd sentence seems to be TiddlySpace specific, so I think it should 
be removed?

2/ [[Link Formatting]]…see the section Links to Other Spaces
3/ [[MainMenu shadows]]
4/ [[SideBarOptions shadows]]
5/ [[SiteSubtitle shadow tiddlers]]
6/ [[SiteSubtitle shadows]] duplicate to #5 above.
7/ [[StyleSheet shadows]]
8/ [[view macro types]]

[1] I refer to MediaWiki version of TiddlyWiki.org

Ken

-- 
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/groups/opt_out.


[tw] Re: [TWC] A tiddler that automatically creates an alphabetically list of links to all tiddlers with a specific tag

2013-10-29 Thread ken
see TiddlyWiki Community Documentation (for TW = 
2.8.1)http://tiddlywiki.org/#%5B%5BCore%20Macros%5D%5D  
in the latest  developing TW Help world

On Tuesday, October 29, 2013 6:15:47 PM UTC-4, Bob Flandard wrote:

 Thanks Jason,

 That looks to be at my current level.

 Regards,

 Bob


-- 
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/groups/opt_out.


[tw] Re: [TWC] A tiddler that automatically creates an alphabetically list of links to all tiddlers with a specific tag

2013-10-29 Thread ken
also see http://tiddlywiki.org/#%5B%5BCore%20Macros%5D%5D which is the 
latest and developing TiddlyWiki support documentation site

On Tuesday, October 29, 2013 6:15:47 PM UTC-4, Bob Flandard wrote:

 Thanks Jason,

 That looks to be at my current level.

 Regards,

 Bob


-- 
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/groups/opt_out.


Re: [tw] TiddlyWikis suddenly open in Dropbox as plain text...

2013-10-27 Thread ken robertson
Damn.  I know it's no help, but I seem to have the same problem.  I'm
pretty sure iOS 6.1.3 was OK.

--
Regards
Ken


On 27 October 2013 11:05, Jan Johannpeter lasjoht...@gmail.com wrote:

 Hello Dropboxusers in the community
 I just realised my TWs are diplayed in Dropbox as text...(at least the
 ones I just tried...)
 Am I the only one to encounter this problem or is this some mischief in
 the actual Dropboxversion...? (I just upgraded my IPhone to OS7)
 Is there any remedy?

 Jan

 --
 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+unsubscribe@**googlegroups.comtiddlywiki%2bunsubscr...@googlegroups.com
 .
 To post to this group, send email to tiddlywiki@googlegroups.com.
 Visit this group at 
 http://groups.google.com/**group/tiddlywikihttp://groups.google.com/group/tiddlywiki
 .
 For more options, visit 
 https://groups.google.com/**groups/opt_outhttps://groups.google.com/groups/opt_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/groups/opt_out.


Re: [tw] Re: TiddlyFox: Removing support for old versions of Firefox (version 20)

2013-07-03 Thread ken robertson
Notwithstanding your comments about version number checking, which I can't
comment about, ESR24 should be released for user testing on 10 September,
and the overlap with ESR17.0.8 should extend until 03 December.  (Info off
the Mozilla website at the link in PMario's email).

--
Regards
Ken


On Wed, Jul 3, 2013 at 8:52 AM, Arc Acorn nuttyta...@gmail.com wrote:

 Just my 2cents of given my understanding: ESR are locked bug
 and critical fix only versions of the main Firefox so an ESR 10 is roughly
 that of FF 10 but with all the critical fixes of the current FF's or well
 kind of ESR 10 is actually pretty old and was only supported to FF 16.
 The current day ESR is actually 24 as support for ESR 17 has just very
 recently ended.

 Overall however you can put version control for both the upper and lower
 limits of a plug in in firefox and than users can always use the
 old/other/all versions  tab on firefox's addon website to get a version
 that works for their versions of firefox, or in many cases the addon manger
 will automatically give them the correct version if the plugin historically
 used a good practice min/max firefox version support info.


 On Tuesday, July 2, 2013 10:12:19 AM UTC-7, Eric Shulman wrote:

 Your proposed change could cause problems for those folks subject to
 workplace restrictions to use a different version of Firefox.  Where I
 work, we are limited to using Firefox ESR 10.0.11 (which I assume is older
 than Firefox 20).

 Prior to FireFox 15, 'privilegeManager' functions were still available,
 so direct local file I/O was possible.  If you are using FireFox 14 or
 below, you shouldn't need TiddlyFox at all.  (Note: I'm not sure if the ESR
 version numbers correspond to the main release channel versions, but
 assuming they do, ESR 10.0.11 should work fine without TiddlyFox)

 enjoy,
 -e
 Eric Shulman
 TiddlyTools / ELS Design Studios

 HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY TIP JAR...

 http://www.TiddlyTools.com/#**Donationshttp://www.TiddlyTools.com/#Donations

 Professional TiddlyWiki Consulting Services...
 Analysis, Design, and Custom Solutions:
http://www.TiddlyTools.com/#**Contacthttp://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/groups/opt_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/groups/opt_out.




[tw] Re: Backstage on Android

2012-06-19 Thread Ken Girard
I am running AndTidWiki (
https://play.google.com/store/apps/details?id=de.mgsimon.android.andtidwikihl=en)
 
to get TW to work on my Galaxy SII phone.
Whenever I open a TW it ask me if I want to open it with the browser or 
AndTidWiki. 
Not having any issues with the backstage other than things being small, and 
hence hard to click on the write stuff. 
I also keep my TW in DropBox, so it is always uploaded, and availble 
anywhere. 
 
Ken Girard

On Friday, June 8, 2012 6:32:19 PM UTC-5, Jon wrote:

 Hi, 

 I have a new Android tablet, and of course using TW is a priority! 
 Everything seems to display pretty well from either the default 
 browser (essentially Chrome) or Firefox, and Firefox appears to save 
 OK, as well. 

 But, there's no backstage, and on my customized TWs, I've moved a lot 
 of things like Tabs up there. Does the backstage work for anyone else, 
 or any ideas about how to get it back?? 

 Thanks, 
 Jon

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/ZjJFQTsdB8UJ.
To post to this group, send email to tiddlywiki@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: Calling macro from 1 tiddler and viewing in a table in another tiddler?

2012-06-05 Thread Ken Girard
Thanks! Has taken me a while to get back to say it worked. 
Even in IE!
Ken Girard 

On Wednesday, May 23, 2012 9:17:40 PM UTC-5, Eric Shulman wrote:



 On May 23, 8:14 am, Ken Girard ken.gir...@gmail.com wrote: 
  I am using WordCountMacro to see how long each story/chapter I write is. 
  I've got another tiddler that uses forEachTiddlerPlugin to create a 
 table 
  of all tiddlers tagged 'Story' showing the title, plus various custom 
  fields. 
  Now I am trying to add in a column to show the word count of that story. 
  Any idea of how I call the WordCountMacro up in the table? 

 Rather than using WordCountMacro to get the word count, the easiest 
 way to get the word count for the tiddler is to calculate it 
 yourself.  Take a look at the code for the WordCountMacro plugin.  It 
 is actually just a wrapper around a single call to the .match(pattern) 
 method: 

tiddler.text.match(/\w+/g).length 

 where /\w+/g is a regular expression (text pattern) that matches one 
 or more word boundary characters.  The .match() method returns an 
 array containing all the matching text.  The .length attribute returns 
 the number of items in the array, which is, of course, the word count 
 for the tiddler text. 

 Since your fET loop is currently accessing values from the current 
 tiddler (e.g., tiddler.title), you must have already mastered the use 
 of variables and string expressions to assemble your desired fET 
 output.  You should be able to add the above code snippet into your 
 output relatively easily. 

  Also, how can I get a total word count of tiddlers tagged story, which 
  might be useful for those doing Write 50k words in a month type 
 events. 
  This part doesn't need to be in the table, but would be in the same 
  tiddler. 

 Here's a solution using an inline script (requires 
 InlineJavascriptPlugin [1]) 

 script 
 var total=0; 
 var tids=store.getTaggedTiddlers(Story); 
 for (var i=0; itids.length; i++) 
total += tids[i].text.match(/\w+/g).length; 
 return There are +total+ words in +tids.length+ tiddlers.; 
 /script 

 enjoy, 
 -e 
 Eric Shulman 
 TiddlyTools / ELS Design Studios 
http://www.TiddlyTools.com/#Donations 

 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 view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/5beaeoTdEpoJ.
To post to this group, send email to tiddlywiki@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] Calling macro from 1 tiddler and viewing in a table in another tiddler?

2012-05-23 Thread Ken Girard
I am using WordCountMacro to see how long each story/chapter I write is. 
I've got another tiddler that uses forEachTiddlerPlugin to create a table 
of all tiddlers tagged 'Story' showing the title, plus various custom 
fields.
Now I am trying to add in a column to show the word count of that story.
Any idea of how I call the WordCountMacro up in the table?
Also, how can I get a total word count of tiddlers tagged story, which 
might be useful for those doing Write 50k words in a month type events. 
This part doesn't need to be in the table, but would be in the same 
tiddler. 
 
Thanks,
Ken Girard
 
http://wordcountmacro.tiddlyspot.com/#WordCountMacro 
*http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin*http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin
 
 

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/DIvqE_1of_8J.
To post to this group, send email to tiddlywiki@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.



Actual creation/updated dates (mGSD)

2012-02-01 Thread ken
Can we have ticker header with actual dates, rather than created
about 4 months ago? Don't know whether this is mGSD or TW core issue,
but I need to know whether notes in a tickler reflect something that
happened on a particular date (eg, the receipt of a specific email.

-- 
You received this message because you are subscribed to the Google Groups GTD 
TiddlyWiki group.
To post to this group, send email to gtd-tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
gtd-tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/gtd-tiddlywiki?hl=en.



[tw] Re: BackupOptionsPlugin

2011-12-13 Thread Ken Girard
Yes and no.
I have something that does what I think you are looking for sitting
online at: http://no-sin.com/wiki/WorkTracker.html#AlternateBackupPlugin
That TW is old, but the plugin also works in my daily use copy running
the latest version TW.
Ken Girard

On Dec 13, 10:34 am, ./.michaeolo i...@michaelob.co.uk wrote:
 Hello (is there anybody out there) who has got BackupOptionsPlugin's
 %N-
 %(5).html setting to work, i.e. to make 5 as opposed to an infinite
 number of backups?

 Any advice would be very appreciated,

 MO

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@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: contributing and other things

2011-12-03 Thread ken
as per [1] Chris made a Gg for TiddlySpace
---
…I've gone ahead and created a google group specifically
for discussing the use and improvement of TiddlySpace from the
perspective of people who use it:

 http://groups.google.com/group/tiddlyspace

(Discussion of the technical guts can carry on in the TiddlyWeb group
as TiddlySpace is basically an assemblage of TiddlyWeb plugins.)
---
[1] TiddlySpace Annual Report 2011 
https://groups.google.com/d/msg/tiddlywiki/Tpv-lvPhqAc/TkwBF_4r1hMJ

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/-3l8c6uE8xkJ.
To post to this group, send email to tiddlywiki@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] Re: Suggestions for Action Tracking in Meeting Minutes?

2011-07-18 Thread Ken Brucker
A couple votes for the checkbox plugin.  I'll have to check it out and see how 
it fits in with my desired workflow.

Really appreciate the suggestions.

On Jul 18, 2011, at 5:03 AM, Claudio wrote:

 Hi Ken,
 
 I've been using TW for keeping minutes and AIs but my solution is
 simpler, which makes use of Eric's Comment plugin, Checkbox plugin and
 QuickEdit plugin.
 
 Meeting notes are first entered into ordinary tiddlers, which are
 named in the projectcode_date_description (e.g. ProjXX 20110718
 Meeting with John). When there are AIs associated with a particular
 meeting, I will insert the Comment code comment AllTasks into the
 tiddler using the Insert button created by QuitEdit. When you save the
 tiddler, you will see a text field appears for entering the AIs. If
 you want to track open/closed status, you can include [_] in front of
 the AI description, which will create a checkbox. All AIs will be
 registered centrally in the [[AllTasks]] tiddler., where a link to the
 meeting notes tiddler will be included automatically.
 
 The drawback of this is that you cannot sort the AIs in [[AllTasks]]
 easily.  I do not need much sorting, What I'm doing is using table in
 [[AllTasks]] (you can defined it with Comment plugin). Then, the table
 data can be coverted (using QuickEdit) and sort in Excel.
 
 Hope the above help!
 
 On Jul 15, 9:50 pm, Ken Brucker ken.bruc...@action-a-day.com wrote:
 I'm working on migrating my note taking in meetings and 1:1s into a 
 TiddlyWiki and the key sticking point I have is in managing action items 
 that come out of the meetings.  What I've seen of action trackers, they all 
 seem to require that actions be setup as unique tiddlers and the state is 
 managed via tags.  That method complicates the note taking process in a 
 non-intuitive way and can lose the context (point in the meeting minutes) 
 where the action is captured.
 
 What I've been wanting is the ability to have actions captured inline in the 
 minutes, along with ability to search across meetings for any open actions 
 for display in a Summary Tiddler.  I'm not looking for one of the full-on 
 GTD type systems.
 
 Requirements:
 
 - Inline capture and display of action items (AI).
 - Ability to list AIs from tiddlers, with some limited filtering on state 
 (open, closed, all) and tiddler tags
 - AI list to include a link back to source of AI
 - Wherever an AI is displayed, provide checkbox (or functionally similar 
 element) to mark AI open/closed.
 
 Possible macros:
 
 ai aiState aiText - Captures an AI in a tiddler.  aiState would be 
 altered by the displayed checkbox
 ai_list aiState tag_list - Display list of AIs based on filter 
 parameters.  tag_list optional
 
 Anything like this exist?
 
 Thoughts on such a plugin positive or negative?
 
 Pointers on how to implement?  Are there proper ways to modify tiddler 
 content?
 
 Regards,
 Ken
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 TiddlyWiki group.
 To post to this group, send email to tiddlywiki@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.
 

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@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] Suggestions for Action Tracking in Meeting Minutes?

2011-07-15 Thread Ken Brucker
I'm working on migrating my note taking in meetings and 1:1s into a TiddlyWiki 
and the key sticking point I have is in managing action items that come out of 
the meetings.  What I've seen of action trackers, they all seem to require that 
actions be setup as unique tiddlers and the state is managed via tags.  That 
method complicates the note taking process in a non-intuitive way and can lose 
the context (point in the meeting minutes) where the action is captured.

What I've been wanting is the ability to have actions captured inline in the 
minutes, along with ability to search across meetings for any open actions for 
display in a Summary Tiddler.  I'm not looking for one of the full-on GTD type 
systems.

Requirements:

- Inline capture and display of action items (AI).
- Ability to list AIs from tiddlers, with some limited filtering on state 
(open, closed, all) and tiddler tags
- AI list to include a link back to source of AI
- Wherever an AI is displayed, provide checkbox (or functionally similar 
element) to mark AI open/closed.

Possible macros:

ai aiState aiText - Captures an AI in a tiddler.  aiState would be altered 
by the displayed checkbox
ai_list aiState tag_list - Display list of AIs based on filter parameters.  
tag_list optional

Anything like this exist?

Thoughts on such a plugin positive or negative?

Pointers on how to implement?  Are there proper ways to modify tiddler content?

Regards,
Ken

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@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: content organization: the advantage of hierarchy that tags lack, and a cure for this problem

2011-05-11 Thread Ken Girard
Check out IntelliTaggerPlugin
http://tiddlywiki.abego-software.de/#IntelliTaggerPlugin
It suggest tags based on what is already common in your TW.
For example tagging something Contact would offer up Friend, Work,
Service.
Also uses Alt-1 through 0 for likely suggestions.

Ken Girard

On May 11, 2:48 pm, Yakov yakov.litvin.publi...@gmail.com wrote:
 PS I missed the Claudio's post and actually he said something similar
 about the unstructured data. Probably we should admit that TW, great
 WYSIWYM system doesn't do much with highly unstructured data. But
 perhaps we should not :)

 Anyway, this shows that we should be watchful of this mind greed
 which sometimes provides chaotic loads of contents.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@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] variable when executing the file.

2010-12-20 Thread Ken

How do i execute an file within TW when it has optional parameters?

G:\Apps\x\.exe -x.msf

results in [[xxx|G:\Apps\x\.exe -x.msf]]

but this doesnt work in 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] Re: Idea - Running a TiddlyWiki as a HTML Application (.hta)

2010-12-19 Thread Ken Girard
Works fine on Windows, but not on anything else, which was my only
issue with it.
Mozilla has Prism which works much the same using Firefox as it's
base.
http://prism.mozillalabs.com/

Ken Girard


On Dec 19, 1:57 pm, Robin rpgm...@gmail.com wrote:
 Just thought I would share the idea I came up with when I was
 designing my TiddlyWiki. As I was using it for one purpose, I wanted
 it to be less like a webpage I visited and more like an application in
 its own right. So I thought of the .hta extension on Windows. For
 those who don't know, a hta is simply a html page that opens in a
 chromeless, buttonless window of internet explorer as a separate
 application. I renamed the extension to .hta and it works great,
 running fullscreen if I choose, not needing the java applet to save.
 Wasn't sure if this was the best place to share it but figured why not.

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



  1   2   3   >