[tw5] Re: Combo Searchbox: search both as "standard search" and "filter search"

2019-12-18 Thread Mohammad
A little better macro

\define standardSearch()
<$set name=searchFilter 
value="[all[tiddlers]!is[system]search:title,caption,text[$(searchTerms)$]]">
//Standard search: <$count filter=<> /> 
matches//
<$list filter=<> >
<$link/>


\end

\define filterSearch()
//Filter search: <$count filter=<>/> 
matches//

<$list filter=<> >
<$link/>

\end

\define combo-search()
<$vars pattern="^\["
   stateTid="$:/temp/comboSearch">
 

combo search <$edit-text tiddler=<> tag=input/>  

<$reveal state=<> type="nomatch" text="">
<$button class="tc-btn-invisible">
<$action-setfield $tiddler=<> $field="text" $value=""/>
{{$:/core/images/close-button}}


<$set name=searchTerms tiddler=<> field=text>

<$list filter="[trim[]minlength[3]limit[1]]" 
emptyMessage="Search text too short" variable=ignore>



<$list filter="[trim[]regexp]" 
emptyMessage=<> >
 <>






\end

<>



*Question*:

   1. what is the best regexp pattern here?
   2. how to improve the performance

-- 
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/85717351-075c-41fa-94af-64a6bf240755%40googlegroups.com.


[tw5] Re: $:/StoryList on BOB

2019-12-18 Thread 'Torax Malu' via TiddlyWiki
Well - one solution ist the permalink-view or adding this to the setting of 
default title:
[all[]tag[boot]]

and tagging all for reload with the tag "boot".

As mentioned in the initial post, BOB is very handy for development of 
templates and views in combination with an external editor. ;)

In this context *a really big thanks to Ook Tech and Jed*.

Cheers.

Am Mittwoch, 18. Dezember 2019 19:58:58 UTC+1 schrieb Torax Malu:
>
> Hi Jeremy,
>
> sorry for the inconvinience I created with the editing. I completely 
> forgot the usage as a email-list.
>
> And also I forgot the multi-user-cabability of BOB. With this background 
> it would be more of a hassle to save the storylist.
>
> Thanks for the reminder.
>
> Cheers
>
> Torax
>
> Am Mittwoch, 18. Dezember 2019 10:41:46 UTC+1 schrieb Jeremy Ruston:
>>
>> Hi Torax
>>
>> Just a reminder that a number of users read this forum via email 
>> (including me), and so will never see edits made after posting. It's 
>> usually better to make a second post than make substantive edits to an 
>> existing post.
>>
>>
>>> Sorry - got the whole thing completely wrong. The 
>>> Default-Tiddler-feature works fine. It is the StoryList, which is not saved 
>>> between sessions. To add the filter "[list[$:/StoryList]]" into the setting 
>>> doesn't restore the current open tiddlers between sessions / reloads. So 
>>> how I can get back this feature?
>>>
>>
>> A simple work around if you're using a single browser is to switch the 
>> control panel setting "Navigation Address Bar" to "include the target 
>> tiddler and the current story sequence".
>>
>> Best wishes
>>
>> Jeremy
>>  
>>
>>>
>>> Thanks and cheers.
>>>
>>> ToraxMalu
>>>
>>

-- 
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/d70228f9-ad3a-4e70-8d8c-df4359a0a3fc%40googlegroups.com.


[tw5] Combo Searchbox: search both simple entry and filter entry

2019-12-18 Thread Mohammad
This may be answered already, but I could not find in in the forum


*idea*: have a search box (an $edit-text) which lets you to search both by 
filter and by simple keywords
*use case*: one search box and do both standard and filter search

*a quick proposal*

Create a tiddler in https://tiddlywiki.com/prerelease/
put the below text inside and give a try.
perform searches like standard search and then like filter search and let 
me know your feedback.

\define standardSearch()
Standard search
<$list filter="[search:title,caption,text[$(searchTerms)$]]">
<$link/>

\end

\define filterSearch()
Filter search
<$list filter=<> >
<$link/>

\end

\define combo-search()
<$vars pattern="^\["
   stateTid="$:/temp/comboSearch">
 

combo search <$edit-text tiddler=<> tag=input/>  


<$reveal state=<> type="nomatch" text="">
<$set name=searchTerms tiddler=<> field=text>
<$list filter="[minlength[3]limit[1]]" emptyMessage="Search 
text too short" variable=ignore>

<$list filter="[regexp]" 
emptyMessage=<> >
 <>





\end

<>


*Question*:

   1. what is the best regexp pattern here?
   2. how to improve the performance

--Mohammad

-- 
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/f7124e39-d19a-4df7-b09e-5084f357b6f2%40googlegroups.com.


[tw5] Re: Any idea how to collapse/expand section within a tiddler

2019-12-18 Thread InflamedSebi
Imma just leave this here:

\define fold(id, caption, content)
<$set name="controller" value={{{ 
[[$:/temp/state/]addsuffixaddsuffix[/fold/]addsuffix[$id$]] 
}}}>

<$reveal type="nomatch" state=<> text="open">
  <$button class="tc-btn-invisible" set=<> setTo="open">
''$caption$'' {{$:/core/images/unfold-button}}
  

<$reveal type="match" state=<> text="open">
  <$button class="tc-btn-invisible" set=<> setTo="close">
''$caption$'' {{$:/core/images/fold-button}}
  


<$reveal type="match" state=<> text="open">

$content$



\end

instead of folding whole transcluded tiddlers this will only fold text. 
Folds with the same id inside the same tiddler, will share their state.
To make ids global instead of tiddler wide, change line 2 to:
<$set name="controller" value={{{ [[$:/temp/state/fold/]addsuffix[$id$]] 
}}}>

and the corresponding editor button just in case:
<$action-sendmessage
$message="tm-edit-text-operation"
$param="wrap-lines"
prefix='<

and some example:
<>



-- 
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/d5632694-5b5d-44cc-baa5-58ae1f258c29%40googlegroups.com.


Re: [tw5] Re: Ipfs with TiddlyWiki v0.2.9 is available

2019-12-18 Thread Xavier Maysonnave
Hi Mark,

No issue on my side.
Did you try https://bluelightav.eth.link ?

Here is the Ipfs permanent link :
https://gateway.ipfs.io/ipfs/QmThBQeDdiu67FRo9wUYRJsLksfTY5CcX91ArvDHMtCTPi/

Thanks for your feedback.

Warmly

“Matter is Energy. Energy is Light. We are all Light Beings.” - Albert
EinsteinPudhuveedu / Xavier
PGP Fingerprint: CAE5 CE4A EFE9 134F D991 5465 081C B6FB 2EAC 6CC9



Le jeu. 19 déc. 2019 à 10:12, 'Mark S.' via TiddlyWiki <
tiddlywiki@googlegroups.com> a écrit :

>
>
> On Wednesday, December 18, 2019 at 8:24:08 PM UTC-8, Xavier Maysonnave
> wrote:
>>
>> https://bluelightav.eth
>>
>>
> Always times out for me.
>
> --
> 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/JJ3kWpwqvQA/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/73bcc181-d5f4-4334-8fc6-b777d05b1c91%40googlegroups.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAESKk_qzue4f67rQNV6eZ4PR%2BXJYCiqE%2BaazkYZpkH-uV7Teog%40mail.gmail.com.


[tw5] Re: TIP TW5: How to hide text

2019-12-18 Thread A Gloom
An addition,

In the table coding i need to get to Mohammad I use display:none to 
selectively collapse individual columns with buttons

-- 
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/20e4e5c9-d545-4d17-ac01-e8cfa893b6a4%40googlegroups.com.


[tw5] Re: TIP TW5: How to hide text

2019-12-18 Thread A Gloom




wise choice-- it also takes away its allocated space in the doc-- also 
woirks for many html elements like table columns,rows, cells

As Mohammad said, this forum makes a good reference source-- in a search I 
will find this topic and see the various ways to hide things suggested by 
you, Eric & Mark

I use the html comment "syntax" a lot myself but it has hazardous...

don't start typing 

-- 
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/f492456b-a1fe-4f6a-8792-6bea1cb2abe3%40googlegroups.com.


[tw5] Switching focus between sidebar and storyboard with keyboard. Possible?

2019-12-18 Thread TonyM
Mathew

I do not have a direct answer but tw5 allows you to define keyboard shortcuts. 
I am not sure but perhaps you can design some for the actions you want.

Tony

-- 
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/3d96fdba-63d3-4c75-834b-584f90949515%40googlegroups.com.


[tw5] Re: Ipfs with TiddlyWiki v0.2.9 is available

2019-12-18 Thread 'Mark S.' via TiddlyWiki


On Wednesday, December 18, 2019 at 8:24:08 PM UTC-8, Xavier Maysonnave 
wrote:
>
> https://bluelightav.eth
>
>
Always times out for me. 

-- 
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/73bcc181-d5f4-4334-8fc6-b777d05b1c91%40googlegroups.com.


[tw5] Re: TIP TW5: How to hide text

2019-12-18 Thread Mohammad
nice, I added this to previous discussion in TW-Scripts

On Thursday, December 19, 2019 at 7:25:25 AM UTC+3:30, TonyM wrote:
>
> Here is some other hide stuff tricks
>
> \define mynote()
> some stuff
> \end
>
> <$list filter="[{$:/config/debugmode}match[yes]]" variable=nul>
> some stuff that will only show when in debug mode
>
> 
>
> You can also place stuff inside a widget that does not display its content 
> or is unlikely ever to do so.
>
> Regards
> Tony
>
>

-- 
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/f18fdfd8-aa09-4303-9e1e-e146332ea67a%40googlegroups.com.


[tw5] Is this a bug: removing a tiddler which is tagged say with xx is not removed from xx list filed

2019-12-18 Thread Mohammad
For example 


   1. you have 5 tiddlers all tagged with *xx*, 
   2. reorder them using the tag pill (this will add a *list *field to xx 
   with ordered title of above 5 tiddlers)
   3. and then delete two of them
   4. now open the *xx *tiddler and look at the *list *field you see 
   deleted tiddlers still are listed there!!  this will remain until you 
   reorder them again!


why?

-- 
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/38d68deb-4e36-49b3-afbd-5cdf3fa0c145%40googlegroups.com.


[tw5] Ipfs with TiddlyWiki v0.2.9 is available

2019-12-18 Thread Xavier Maysonnave
Dear Friends,

I pushed a new version of Ipfs with TiddlyWiki hosted @ GitHub 


Ens capable browser:
https://bluelightav.eth
Ipfs with TiddlyWiki Plugin 

Ipfs with TiddlyWiki Documentation 

Non Ens capable browser:
https://bluelightav.eth.link
Ipfs with TiddlyWiki Plugin 

Ipfs with TiddlyWiki Documentation 


New features :
- Ipfs encrypted attachments are now unencrypted on the fly, no need to 
remove the _canonical_uri field anymore
- Tiddler over Ipfs support
- Enhanced documentation
- Ipfs CidV1 support
- Bugfixes

In the next version :
- Automatic Ipns key generation
- Tiddler and Attachment with Ipns and Ens support

As always feedback is greatly appreciated.

Warmly

-- 
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/6eea6c2f-6362-4ca7-b7bd-85fd8ca0a7e3%40googlegroups.com.


[tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread Mohammad
Hi Thomas,
 May thanks for your comments!

On Thursday, December 19, 2019 at 12:25:11 AM UTC+3:30, Thomas Elmiger 
wrote:
>
> Hi Mohammad and Josiah,
>
> It helps me a lot to sharpen my ideas, when I look at similar solutions 
> from other authors. So here are some inputs from my experience and thinking 
> from the development of my own plugin. 
>
>- Icons: I like the heart, but the difference between active and 
>passive might be too subtle (think of "colorblind" people or people with 
>low vision who need high contrast). Idea: filled hart for active state.
>
> I am very interested to use TW theme and color palates. So every user can 
decide on the colors he/she likes.

>
>- Icons: A close icon comes with the core 
>($:/core/images/close-button), why does the plugin use it’s own times.svg?
>
> That is right! I will switch to close button from core! 
 

>
>- Removing items: Why is removing in the sidebar for deleted tiddlers 
>only?
>   - Documentation: this behaviour is not clear from the readme
>
> That's true! actually favorites does not use tag or filed but it uses a 
list field in a separate tiddler to keep track of all those tiddlers added 
to favorites.
then if you delete a tiddler its name still present in the list filed of 
mentioned tiddler and one has to manually delete this in sidebar.
I do not want to have both the heart icon and the tag nor the extra field.

*side note: *It seems TW itself has no mechanism for this. For example if 
you have 5 tiddlers all tagged with xx, reorder them using the tag pill and 
then delete one of them
no open the xx tiddler and look at the list field you see deleted tiddler 
still is there!! until you reorder them again!

 

>
>- License: A bit short ;-)
>
> Thanks, this is a mistake:-) I will add the license 

>
>- 
>
> Nice things:
>
>- sortable favorites list
>- use caption, show title on hover (my plugin does the same)
>- simple and small footprint
>
> I added to new release (will be available soon) 

   - delete favorites
   - export favorites

 

> All the best,
> Thomas
>


Thanks again Thomas

--Mohammad
 

>
>
>>> Just FYI, I thought it worth mentioning Thomas Elmiger's variant on 
>>> "bookmarks" which uses a "side marker" in an interesting way ... 
>>>
>>> His approach is to integrate it into his "MyStory" plugin 
>>>  
>>> which 
>>> makes sense since bookmarks (& favourites) are part of "bespoke navigation."
>>>
>>> Just thought you might be interested to see it.
>>>
>>
>> I am very interested in simplicity and keeping the nature of addons very 
>> close to original Tiddlywiki (officially distributed).
>> I will take a look to see how I can get ideas from Thomas work! He has 
>> developed great tools and plugin for TW5.
>> I will soon push the next update supports delete and export favorites.
>>
>> --Mohammad
>>
>

-- 
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/9c340ffe-8f1e-4361-b9fd-166b1b87b441%40googlegroups.com.


[tw5] TIP TW5: How to hide text

2019-12-18 Thread TonyM
Here is some other hide stuff tricks

\define mynote()
some stuff
\end

<$list filter="[{$:/config/debugmode}match[yes]]" variable=nul>
some stuff that will only show when in debug mode



You can also place stuff inside a widget that does not display its content or 
is unlikely ever to do so.

Regards
Tony

-- 
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/cc2ece1f-374f-47b8-9a85-5d4ef2bca75b%40googlegroups.com.


Re: [tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread TonyM
Jeremy

Thanks for that. I understand on a team or public server that prohibiting 
plugin installation makes sense. However we often use server implementations 
for saving. Could we have an overide for this for local access situations?

I will add this to my related thread.

Tony

-- 
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/b2796002-cf5c-4f83-a8e5-4a85e9730536%40googlegroups.com.


[tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread Thomas Elmiger
Hi Mohammad and Josiah,

It helps me a lot to sharpen my ideas, when I look at similar solutions 
from other authors. So here are some inputs from my experience and thinking 
from the development of my own plugin. 

   - Icons: I like the heart, but the difference between active and passive 
   might be too subtle (think of "colorblind" people or people with low vision 
   who need high contrast. Idea: filled hart for active state.
   - Icons: A close icon comes with the core ($:/core/images/close-button), 
   why does the plugin use it’s own times.svg?
   - Removing items: Why is removing in the sidebar for deleted tiddlers 
   only?
  - Documentation: this behaviour is not clear from the readme
   - License: A bit short ;-)
   
Nice things:

   - sortable favorites list
   - use caption, show title on hover (my plugin does the same)
   - simple and small footprint

All the best,
Thomas


>> Just FYI, I thought it worth mentioning Thomas Elmiger's variant on 
>> "bookmarks" which uses a "side marker" in an interesting way ... 
>>
>> His approach is to integrate it into his "MyStory" plugin 
>>  
>> which 
>> makes sense since bookmarks (& favourites) are part of "bespoke navigation."
>>
>> Just thought you might be interested to see it.
>>
>
> I am very interested in simplicity and keeping the nature of addons very 
> close to original Tiddlywiki (officially distributed).
> I will take a look to see how I can get ideas from Thomas work! He has 
> developed great tools and plugin for TW5.
> I will soon push the next update supports delete and export favorites.
>
> --Mohammad
>

-- 
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/aa421a04-cfd9-4e09-b48b-878c3926c767%40googlegroups.com.


[tw5] Re: $:/StoryList on BOB

2019-12-18 Thread 'Torax Malu' via TiddlyWiki
Hi Jeremy,

sorry for the inconvinience I created with the editing. I completely forgot 
the usage as a email-list.

And also I forgot the multi-user-cabability of BOB. With this background it 
would be more of a hassle to save the storylist.

Thanks for the reminder.

Cheers

Torax

Am Mittwoch, 18. Dezember 2019 10:41:46 UTC+1 schrieb Jeremy Ruston:
>
> Hi Torax
>
> Just a reminder that a number of users read this forum via email 
> (including me), and so will never see edits made after posting. It's 
> usually better to make a second post than make substantive edits to an 
> existing post.
>
>
>> Sorry - got the whole thing completely wrong. The Default-Tiddler-feature 
>> works fine. It is the StoryList, which is not saved between sessions. To 
>> add the filter "[list[$:/StoryList]]" into the setting doesn't restore the 
>> current open tiddlers between sessions / reloads. So how I can get back 
>> this feature?
>>
>
> A simple work around if you're using a single browser is to switch the 
> control panel setting "Navigation Address Bar" to "include the target 
> tiddler and the current story sequence".
>
> Best wishes
>
> Jeremy
>  
>
>>
>> Thanks and cheers.
>>
>> ToraxMalu
>>
>

-- 
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/a450d02d-391b-4e32-95c5-37a282d4048e%40googlegroups.com.


Re: [tw5] Fraidycat, an interesting social aggregator

2019-12-18 Thread TiddlyTweeter
Kicks Condor wrote:
>
>
> @TT - Interested to hear your bugs. Send them on.
>

Ciao Kicks, a preliminary here: 
https://github.com/kickscondor/fraidycat/issues/48 

Best wishes
TT

-- 
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/8594f215-4db6-4e69-82a2-41ec4b857484%40googlegroups.com.


[tw5] Re: TIP TW5: How to hide text

2019-12-18 Thread Mohammad
Added to TW Scripts

On Wednesday, December 18, 2019 at 7:11:24 PM UTC+3:30, Mark S. wrote:
>
> You can also use the comment functionality of HTML. e.g.
>
> 
>
> If you use CSS to hide text, you might consider defining your own class 
> for that purpose. That way you could change the visibility of hidden text 
> everywhere just by changing the CSS definition.
>
>

-- 
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/ba608e90-2f1e-40f8-8b58-05716842ce02%40googlegroups.com.


[tw5] Re: TIP TW5: How to hide text

2019-12-18 Thread Mohammad
Added to TW-Scripts

On Wednesday, December 18, 2019 at 7:02:14 PM UTC+3:30, Eric Shulman wrote:
>
> On Wednesday, December 18, 2019 at 6:04:25 AM UTC-8, Chuck R. wrote:
>>
>> Basic info: TW5 using TW markup.
>> Sometimes I want to hide text in a tiddler that only I see while in edit 
>> mode. I have found that this works great: 
>> 
>> This is hidden text.
>> 
>>
>
> The above code is, of course, standard HTML with "inline CSS".  To use 
> actual TiddlyWiki syntax, you would write:
>
> @@display:none;
> This is hidden text
> @@
>
> Basically, the @@... @@ is TiddlyWiki's way of defining a "div" (or a 
> "span") that wraps around a section of content, just like the 
> ... HTML syntax.  The text *immediately* following the opening 
> "@@" and ending with a semi-colon (;) is standard CSS syntax.  If, for 
> example, you didn't want to hide the text, but rather, show it with some 
> styling applied, you could write something like:
> @@color:red;
> This is some warning text.  PAY ATTENTION!
> @@
>
> You can also string together a sequence of CSS attributes, like this:
> @@color:red;font-size:400%;border:1px solid red;
> WARNING!  DANGER WILL ROBINSON!
> @@
>
> As noted above, this is equivalent to
> 
> WARNING!  DANGER WILL ROBINSON!
> 
>
> However, the  syntax always creates content on a line by itself.  If 
> you want to do the same styles, but have the content appear "inline", you 
> would use a ... in place of the ..., like this:
> Then, the Robot said, WARNING! DANGER WILL ROBINSON! as it flailed it's 
> tubular arms wildly.
>
> and, in TiddlyWiki syntax, this would be written as:
> Then, the Robot said, @@color:red;font-size:400%;border:1px solid red; 
> WARNING! DANGER WILL ROBINSON!@@ as it flailed it's tubular arms wildly.
>
> You can find many excellent CSS technical references online.  For example, 
> Mozilla (a browser developer), offers this reference for the CSS "border" 
> syntax:
> https://developer.mozilla.org/en-US/docs/Web/CSS/border
>
> You can use that site (and others like it) to look up lots of CSS goodies 
> that you can then incorporate into your content, using either HTML or 
> TiddlyWiki "wrappers".
> 
> This should give you plently to start playing with.
>
> enjoy,
> -e
> Eric Shulman
> InsideTiddlyWiki: http://www.TiddlyTools.com/InsideTW (work-in-progress)
>

-- 
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/ccec25f0-1d06-48b7-a7af-ec61b4c4b196%40googlegroups.com.


Re: [tw5] Fraidycat, an interesting social aggregator

2019-12-18 Thread Kicks Condor
Oh yoohoo - author of this here. Thank you for sharing it. I am not a terribly 
active user of this list - but feel free to email me with any suggestions or 
troubles. TiddlyWiki support is paramount for me. Partially because I read many 
public TiddlyWikis, but also because I want to encourage more of them. (If, for 
instance, Instagram suddenly supported TiddlyWiki syndication, you would see a 
rise, don't you think?)

@TT - Interested to hear your bugs. Send them on.

Take care all.
- kicks

On Mon, Dec 16, 2019, at 7:03 PM, RichardWilliamSmith wrote:
> Hi all,
> 
> I just came across this fascinating project on hacker news, 
> https://fraidyc.at. I'm no longer a regular here so you might already know 
> about it, apologies if that is the case.
> 
> It's a browser extension that tracks updates from multiple social feeds and 
> integrates them in a 'calm' dashboard. I bring it to your attention because 
> it purports to also track changes in live tiddlywikis. Very cool! If you 
> watch the intro video, you will see a couple of wikis shown. Always fun to 
> see tw out in the wild, still waiting for the day everyone realises what 
> they're missing.
> 
> Regards and Seasons Greetings,
> Richard
> 

> --
>  You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
>  To unsubscribe from this group and stop receiving emails from it, send an 
> email to tiddlywiki+unsubscr...@googlegroups.com.
>  To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/b0b0ba45-486d-4a7d-ba5c-3263c36b9710%40googlegroups.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/542ae1da-8bf5-4e41-b97b-581ab2fcfad3%40www.fastmail.com.


[tw5] Re: POLLY -- Fetch TW?

2019-12-18 Thread TiddlyTweeter
I fear that Polly is a one-legged parakeet

On Wednesday, 18 December 2019 15:34:17 UTC+1, Mohammad wrote:
>
> Worth to be documented!
> Good tutorial will help people use it!
> Why not announced on tiddlywiki.com?
>
> --Mohammad
>

-- 
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/5ddb4aa7-b69e-4c11-aa2c-6c8915689125%40googlegroups.com.


Re: [tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread Jeremy Ruston
Hi Tony

> I did not want to high Jack the thread. But I thought this info important for 
> mohammadss different releases. I understand this may have a reason but surely 
> we could get dropped plugins to be saved into the node required locations to 
> bring these behaviors inline. It seems an unnesasary complication. I did not 
> notice so much because I tend to install my own macros a lot. It seems a 
> bridge too far for a user moving to a folder wiki.
> 
> This possibly explains some odd behavior I have experienced with no messages.
> 
> I will revisit this for myself but can we build a solution to bring them 
> inline? 

It's done the way that it is to make it easier to keep the server secure. 
TiddlyWiki is designed to support scenarios where the server isn't under the 
control of the end user (as with e.g. TiddlySpot). In that scenario you 
wouldn't want browser users to be able to run arbitrary plugins on the server.

Best wishes

Jeremy

> 
> Regards
> Tony
> 
> -- 
> 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/09c310b4-84de-4eec-9241-8931c04f170f%40googlegroups.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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/EE029A31-61AE-4604-B1A3-A918B1330061%40gmail.com.


[tw5] TIP TW5: How to hide text

2019-12-18 Thread 'Mark S.' via TiddlyWiki
You can also use the comment functionality of HTML. e.g.



If you use CSS to hide text, you might consider defining your own class for 
that purpose. That way you could change the visibility of hidden text 
everywhere just by changing the CSS definition.

-- 
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/d49b00e0-b939-4268-b79a-1c8690bbb58a%40googlegroups.com.


[tw5] Re: TIP TW5: How to hide text

2019-12-18 Thread Eric Shulman
On Wednesday, December 18, 2019 at 6:04:25 AM UTC-8, Chuck R. wrote:
>
> Basic info: TW5 using TW markup.
> Sometimes I want to hide text in a tiddler that only I see while in edit 
> mode. I have found that this works great: 
> 
> This is hidden text.
> 
>

The above code is, of course, standard HTML with "inline CSS".  To use 
actual TiddlyWiki syntax, you would write:

@@display:none;
This is hidden text
@@

Basically, the @@... @@ is TiddlyWiki's way of defining a "div" (or a 
"span") that wraps around a section of content, just like the 
... HTML syntax.  The text *immediately* following the opening 
"@@" and ending with a semi-colon (;) is standard CSS syntax.  If, for 
example, you didn't want to hide the text, but rather, show it with some 
styling applied, you could write something like:
@@color:red;
This is some warning text.  PAY ATTENTION!
@@

You can also string together a sequence of CSS attributes, like this:
@@color:red;font-size:400%;border:1px solid red;
WARNING!  DANGER WILL ROBINSON!
@@

As noted above, this is equivalent to

WARNING!  DANGER WILL ROBINSON!


However, the  syntax always creates content on a line by itself.  If 
you want to do the same styles, but have the content appear "inline", you 
would use a ... in place of the ..., like this:
Then, the Robot said, WARNING! DANGER WILL ROBINSON! as it flailed it's 
tubular arms wildly.

and, in TiddlyWiki syntax, this would be written as:
Then, the Robot said, @@color:red;font-size:400%;border:1px solid red; 
WARNING! DANGER WILL ROBINSON!@@ as it flailed it's tubular arms wildly.

You can find many excellent CSS technical references online.  For example, 
Mozilla (a browser developer), offers this reference for the CSS "border" 
syntax:
https://developer.mozilla.org/en-US/docs/Web/CSS/border

You can use that site (and others like it) to look up lots of CSS goodies 
that you can then incorporate into your content, using either HTML or 
TiddlyWiki "wrappers".

This should give you plently to start playing with.

enjoy,
-e
Eric Shulman
InsideTiddlyWiki: http://www.TiddlyTools.com/InsideTW (work-in-progress)

-- 
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/6b1a67e5-beb6-4fd2-a0df-8c39b727ed23%40googlegroups.com.


[tw5] How to create recurring tasks/events in TiddlyWiki?

2019-12-18 Thread 'Mark S.' via TiddlyWiki
I think I would consider pre-generating the list of event dates, and storing 
them in a list field of your event. This would make it fairly easily to check 
whether your Koffee Klatch will be meeting on August 5, 2020.

The downside of this approach, compared to Google, is that it needs to be 
close-ended. Google can be open-ended because they've got massive computing 
power and database tools, so they could figure out whether your Yoga Pilates 
will clash with the Koffee Klatch in 2150 ... since you like to plan ahead. All 
we have are some javascript-based tools and whatever computing power your 
browser can muster.

-- 
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/38d0adb7-7543-4877-b26d-1b22b0f51de7%40googlegroups.com.


[tw5] Re: POLLY -- Fetch TW?

2019-12-18 Thread Mohammad
Worth to be documented!
Good tutorial will help people use it!
Why not announced on tiddlywiki.com?

--Mohammad

On Wednesday, December 18, 2019 at 4:26:28 PM UTC+3:30, TiddlyTweeter wrote:
>
> After a break from Polly I been thinking about a few things to complete 
> next year ...
>
> For myself I wrote an experimental module to *fetch a copy of  main TW 
> releases to a designated directory*.
> It could be expanded to include any wiki, local or remote.
>
> If there is interest then I'll ask Mark S.  to help me integrate it as an 
> option in the Polly release .
>
> It may look something like this ...
>
> [image: Annotation 2019-12-18 134615.jpg]
>
>
> TT 
>
>  
>

-- 
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/3c21b864-3f51-4bdc-a80c-66ee0e607643%40googlegroups.com.


[tw5] Re: TIP TW5: How to hide text

2019-12-18 Thread Mohammad
Great!
Please keep doing this! Sharing your interesting findings!
Forum is a good place to learn! Sometimes ago TonyM posted a tip a day or a 
week,
but he stopped these useful posts!

Best
Mohammad

-- 
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/0e49562e-fbca-4191-b89f-265cc2c2a8a8%40googlegroups.com.


Re: [tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread Mohammad
Many thanks Jeremy!
This clarified why some people insisted to publish plugin folder!
Of course I noticed I forgot to publish the *plugin.info*

Best wishes
Mohammad

On Wednesday, December 18, 2019 at 12:56:43 PM UTC+3:30, Jeremy Ruston 
wrote:
>
> > Can I ask if you can tell me what the difference is if rather using the 
> folder version I drop the single file plugin on a node hosted wiki? I am 
> sure I should already understand the full consequences how ever I think if 
> we present alternative distributions we should explain the pros and cons of 
> each. 
>
> When using TiddlyWiki on Node.js in the client server configuration there 
> are actually two wikis running, one in the browser and one on the server, 
> communicating via HTTP. 
>
> The wiki running under Node.js will only process plugins loaded via the 
> tiddlywiki.info file, or directly from the command line. 
>
> Tiddlers in the wiki itself that happen to contain plugins will not be 
> processed as plugins by the server wiki, they'll just be treated as 
> ordinary tiddlers. 
>
> However, when the server packs those tiddlers up into a TiddlyWiki HTML 
> file for the browser, the plugin tiddler will be packed into the file in 
> the usual way, and then will be loaded normally by the browser wiki. 
>
> Best wishes 
>
> Jeremy 
>
>

-- 
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/0547685b-06df-43ec-b6d5-92f478124611%40googlegroups.com.


[tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread Mohammad
Hi Josiah,

On Wednesday, December 18, 2019 at 3:40:49 PM UTC+3:30, TiddlyTweeter wrote:
>
> Ciao Mohammad
>
> Very nice to be reminded you did this evolution of Harrison's original!
>

I actually have some minor release last year and during 2019 and I was in 
contact with Andrew
Personally I believed I needed a written permission to improve and 
republish it and he kindly granted this permission! 

>
> Just FYI, I thought it worth mentioning Thomas Elmiger's variant on 
> "bookmarks" which uses a "side marker" in an interesting way ... 
>
> His approach is to integrate it into his "MyStory" plugin 
>  which 
> makes sense since bookmarks (& favourites) are part of "bespoke navigation."
>
> Just thought you might be interested to see it.
>

I am very interested in simplicity and keeping the nature of addons very 
close to original Tiddlywiki (officially distributed).
I will take a look to see how I can get ideas from Thomas work! He has 
developed great tools and plugin for TW5.
I will soon push the next update supports delete and export favorites.

--Mohammad
 

>
> Best wishes
> TT
>
> On Tuesday, 17 December 2019 20:25:46 UTC+1, Mohammad wrote:
>>
>> *Announcement: Favorites plugin*
>> *Date: Dec 17, 2019*
>> *Release: 3.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/be8a51df-6a89-4257-8793-5d12eb8c6d29%40googlegroups.com.


[tw5] Re: POLLY -- Fetch TW?

2019-12-18 Thread TiddlyTweeter
Lol!

On Wednesday, 18 December 2019 14:58:48 UTC+1, David Gifford wrote:
>
> https://www.youtube.com/watch?v=Pubd-spHN-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/e4f299be-4d94-43a4-872b-0574ff2b547d%40googlegroups.com.


[tw5] TIP TW5: How to hide text

2019-12-18 Thread Chuck R.
Basic info: TW5 using TW markup.

Sometimes I want to hide text in a tiddler that only I see while in edit 
mode. I have found that this works great: 


This is hidden text.


This also works great for hiding text in an EPUB file, which becomes XHTML. 
For example, sometimes when I convert a PDF to epub I want to hide the PDF 
page number inside the text without the reader seeing it.


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ca114464-d7ef-4cba-ba3f-0b1b272ce8d0%40googlegroups.com.


[tw5] Re: My new Writing sandbox, dressed in Twaddling clothes

2019-12-18 Thread David Gifford
Thanks for the feedback  TT!

On Wednesday, December 18, 2019 at 5:41:57 AM UTC-6, TiddlyTweeter wrote:
>
> Ciao Dave
>
> I'm very appreciative you posted that. I think it is incredibly useful to 
> see "working solutions". 
> I don't mean demos. I mean wikis kitted-out to perform a defined aim & 
> working practice.  
>
> And listing all main components is very helpful to understand how to use 
> and tweak available "lego kits" of functions. 
>
> As Mohammad mentioned the "gear expansion" has unnecessary repetition.
>
> BTW, I thought the way you did the extra buttons in editor particularly 
> useful to look at and learn from.
>
> Best wishes
> TT
>

-- 
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/aec55211-5aea-4ced-b90e-a53431e96256%40googlegroups.com.


[tw5] Re: POLLY -- Fetch TW?

2019-12-18 Thread David Gifford
https://www.youtube.com/watch?v=Pubd-spHN-0

:-)

On Wednesday, December 18, 2019 at 6:56:28 AM UTC-6, TiddlyTweeter wrote:
>
> After a break from Polly I been thinking about a few things to complete 
> next year ...
>
> For myself I wrote an experimental module to *fetch a copy of  main TW 
> releases to a designated directory*.
> It could be expanded to include any wiki, local or remote.
>
> If there is interest then I'll ask Mark S.  to help me integrate it as an 
> option in the Polly release .
>
> It may look something like this ...
>
> [image: Annotation 2019-12-18 134615.jpg]
>
>
> TT 
>
>  
>

-- 
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/be752072-78f3-480d-80be-160fa7acf4fa%40googlegroups.com.


[tw5] Re: SVG for button graphic

2019-12-18 Thread TiddlyTweeter
The approach is definitely interesting.

I could see a progression of diamonds indicating or initiating steps in a 
sequence.

The shape of the clickable area is a bit of an issue. I think there is a 
way round that in that SVG is usable much like "image maps" used to be.
Here is an example in TW: 
http://sunypoly-cushinj-project.tiddlyspot.com/#Choose%20a%20County

Best wishes
TT

On Tuesday, 17 December 2019 21:48:54 UTC+1, A Gloom wrote:
>
> left the sidebar in the other screenshot which makes details harder to 
> see, lets see if this improves things
>
> [image: diamondbuttons2.jpg]
>
>

-- 
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/65ec9e68-6bb2-49fd-91db-af3919c6869e%40googlegroups.com.


[tw5] Re: [TW5] How to remove carriage returns in selected tiddly text?

2019-12-18 Thread Chuck R.
Thank you Eric, but I'm not familiar with using macros or widgets. How do I 
use the code you gave me?


-- 
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/6a952e8a-748c-4e7d-8226-0f62fd024b0a%40googlegroups.com.


[tw5] Re: POLLY -- Fetch TW?

2019-12-18 Thread TiddlyTweeter
Repeat for emailers ...

On Wednesday, 18 December 2019 13:56:28 UTC+1, TiddlyTweeter wrote:
>
> After a break from Polly I been thinking about a few things to complete 
> next year ...
>
> For myself I wrote an experimental module to *fetch a copy of  main TW 
> releases to a designated directory*.
> It could be expanded to include any wiki, local or remote.
>
> If there is interest then I'll ask Mark S.  to help me integrate it as an 
> option in the Polly release .
>
> It may look something like this ...
>
> [image: Annotation 2019-12-18 134615.jpg]
>
>
> TT 
>
>  
>

-- 
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/890327a9-8214-465a-9ca1-54e2108d1e9d%40googlegroups.com.


[tw5] Re: Fraidycat, an interesting social aggregator

2019-12-18 Thread TiddlyTweeter
Thanks Richard

It is indeed interesting!

I'm a fan of aggregators. This one is nicely minimal. Its particularly 
useful for trawling TiddlyWiki.
There is an issue sometimes with the Official "Pre-release" version with it 
returning 404 errors.
I'll let the autor know.

Best wishes
TT 

On Tuesday, 17 December 2019 03:03:55 UTC+1, RichardWilliamSmith wrote:
>
> Hi all,
>
> I just came across this fascinating project on hacker news, 
> https://fraidyc.at. I'm no longer a regular here so you might already 
> know about it, apologies if that is the case.
>
> It's a browser extension that tracks updates from multiple social feeds 
> and integrates them in a 'calm' dashboard. I bring it to your attention 
> because it purports to also track changes in live tiddlywikis. Very cool! 
> If you watch the intro video, you will see a couple of wikis shown. Always 
> fun to see tw out in the wild, still waiting for the day everyone realises 
> what they're missing.
>
> Regards and Seasons Greetings,
> Richard
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/efd74fcd-db5e-4523-ad5e-ce9a7386a423%40googlegroups.com.


[tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread TiddlyTweeter
Ciao Mohammad

Very nice to be reminded you did this evolution of Harrison's original!

Just FYI, I thought it worth mentioning Thomas Elmiger's variant on 
"bookmarks" which uses a "side marker" in an interesting way ... 

His approach is to integrate it into his "MyStory" plugin 
 which 
makes sense since bookmarks (& favourites) are part of "bespoke navigation."

Just thought you might be interested to see it.

Best wishes
TT

On Tuesday, 17 December 2019 20:25:46 UTC+1, Mohammad wrote:
>
> *Announcement: Favorites plugin*
> *Date: Dec 17, 2019*
> *Release: 3.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/f2c8f610-3bf9-43c2-8bac-80ac5d19710a%40googlegroups.com.


[tw5] Re: My new Writing sandbox, dressed in Twaddling clothes

2019-12-18 Thread TiddlyTweeter
Ciao Dave

I'm very appreciative you posted that. I think it is incredibly useful to 
see "working solutions". 
I don't mean demos. I mean wikis kitted-out to perform a defined aim & 
working practice.  

And listing all main components is very helpful to understand how to use 
and tweak available "lego kits" of functions. 

As Mohammad mentioned the "gear expansion" has unnecessary repetition.

BTW, I thought the way you did the extra buttons in editor particularly 
useful to look at and learn from.

Best wishes
TT

-- 
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/0bfa2602-911c-4c91-a174-ec7e9e3e7a38%40googlegroups.com.


Re: [tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread TonyM
Sorry,

I did not want to high Jack the thread. But I thought this info important for 
mohammadss different releases. I understand this may have a reason but surely 
we could get dropped plugins to be saved into the node required locations to 
bring these behaviors inline. It seems an unnesasary complication. I did not 
notice so much because I tend to install my own macros a lot. It seems a bridge 
too far for a user moving to a folder wiki.

This possibly explains some odd behavior I have experienced with no messages.

I will revisit this for myself but can we build a solution to bring them 
inline? 

Regards
Tony

-- 
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/09c310b4-84de-4eec-9241-8931c04f170f%40googlegroups.com.


[tw5] Re: $:/StoryList on BOB

2019-12-18 Thread Jeremy Ruston
Hi Torax

Just a reminder that a number of users read this forum via email (including 
me), and so will never see edits made after posting. It's usually better to 
make a second post than make substantive edits to an existing post.


> Sorry - got the whole thing completely wrong. The Default-Tiddler-feature 
> works fine. It is the StoryList, which is not saved between sessions. To 
> add the filter "[list[$:/StoryList]]" into the setting doesn't restore the 
> current open tiddlers between sessions / reloads. So how I can get back 
> this feature?
>

A simple work around if you're using a single browser is to switch the 
control panel setting "Navigation Address Bar" to "include the target 
tiddler and the current story sequence".

Best wishes

Jeremy
 

>
> Thanks and cheers.
>
> ToraxMalu
>

-- 
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/7f7b8a30-0325-4f0d-b142-cfc913230623%40googlegroups.com.


Re: [tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread Jeremy Ruston
> The wiki running under Node.js will only process plugins loaded via the 
> tiddlywiki.info file, or directly from the command line.

I should have added that Node.js will also load plugin folders from the 
"plugins" subfolder of a wiki folder.

Best wishes

Jeremy

-- 
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/39D59C72-6AA0-4F2F-A47B-DE8B36E4D370%40gmail.com.


Re: [tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread Jeremy Ruston
> Can I ask if you can tell me what the difference is if rather using the 
> folder version I drop the single file plugin on a node hosted wiki? I am sure 
> I should already understand the full consequences how ever I think if we 
> present alternative distributions we should explain the pros and cons of each.

When using TiddlyWiki on Node.js in the client server configuration there are 
actually two wikis running, one in the browser and one on the server, 
communicating via HTTP.

The wiki running under Node.js will only process plugins loaded via the 
tiddlywiki.info file, or directly from the command line.

Tiddlers in the wiki itself that happen to contain plugins will not be 
processed as plugins by the server wiki, they'll just be treated as ordinary 
tiddlers.

However, when the server packs those tiddlers up into a TiddlyWiki HTML file 
for the browser, the plugin tiddler will be packed into the file in the usual 
way, and then will be loaded normally by the browser wiki.

Best wishes

Jeremy

-- 
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/38069C42-2570-4637-BBD3-E19D12DB1988%40gmail.com.


[tw5] Re: Favorites plugin: new update 3.1.0

2019-12-18 Thread Mohammad


On Wednesday, December 18, 2019 at 9:27:51 AM UTC+3:30, TonyM wrote:
>
> Mohammad
>
> Thanks for your quick response but I still do not understand the 
> difference between dropping a single tiddler plugin on a file wiki and 
> dropping it on a node which would save it as a tiddler file anyway and the 
> package dropped in the file system unless that is a shared plugin folder 
> such as on bob?
>
> Basicaly why bother with the underlying file system when a running 
> tiddlywiki file or server will include a dropped plugin as needed.
>

Server seems keep it as a .tid or .json (packaged one) and does not extract 
it as a plugin folder!
By the way Jeremy or other developer may explain this better than me.
 

> Please forgive my ignorance on this detail.
>
> Tony
>
>

-- 
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/294155ea-018f-4bb3-bc14-2ef809570a1c%40googlegroups.com.