[tw5] Re: Relink, and setting up button widgets for modals

2020-03-15 Thread A Gloom
>< actually that won't work-- the tidller titile change would make the 
tiddlertitle portion of the transclusion invalid-- back to the drawing 
board after I get another dozen cups of coffee first

-- 
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/b3552db7-00ea-4d37-9ecd-7a1b04ac9987%40googlegroups.com.


[tw5] Re: Relink, and setting up button widgets for modals

2020-03-15 Thread A Gloom

>
>
> So easy to handle the problem above with the following easy change to the 
> button widget, which works A-1 with Relink:
>
> <$button message="tm-modal" *param={{Under Construction!!title}}*>This 
> site is a work in progress
>
> Relink can find that {{UnderConstruction!!title}} no problem, and change 
> that as per however the tiddler name gets altered.
>
> Nothing particularly earth-chattering, but I've got to find ways to 
> contribute somehow ...
>

Actually I see an application here-- to change-proof macros and widgets 
from later tiddler title changes {{tiddlertitle!!orgname}}

orgname field would be set on tiddler creation using original title so if 
you hate having to go find a tiddler tilte that is being changed in every 
widget throughout a wiki-- the orgname field wouldn't change with title 
edits

-- 
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/c422601f-1d2a-4652-9e91-5fd59fa3%40googlegroups.com.


[tw5] Re: Relink, and setting up button widgets for modals

2020-03-15 Thread TonyM
CJ

Thanks for sharing. Despite being a long time user of TiddlyWiki the relink 
plugin is new and your tip is one worth keeping.

Every little contribution helps.

Regards
Tony

On Monday, March 16, 2020 at 2:36:33 PM UTC+11, CJ Veniot wrote:
>
> I had forgotten, I was having the same pain-in-the-caboose issue with 
> Tidgraph.
>
> So instead of:  <$tidgraph *start="Mapping Approaches"* layout="S" 
> maxdepth="1" startat="1"/>
>
> I am now doing this:  <$tidgraph *start={{Mapping Approaches!!title}}* 
> layout="S" maxdepth="1" startat="1"/>
>
> Me still being the TiddlyWiki newbie, I'm sure there are all kinds of 
> other situations (I haven't run into yet), in which a tiddler name is a 
> parameter enclosed in double-quotes.  I'm thinking all of these situations 
> need changing to {{tiddler-name!!title}} so that Relink works with 
> anything/everything.
>
> Of course, Relink is oh-so-important to me because I am a tweaker, always 
> starting with tiddler names that I know aren't quite right, but are good 
> enough for the moment until I iteratively and incrementally get that 
> perfect tiddler name ... 
>
> On Sunday, March 15, 2020 at 11:46:55 PM UTC-3, CJ Veniot wrote:
>>
>> G'day all,
>>
>> Just in case there are other newbies like me who ever run into this ...
>>
>> I am a huge fan of the Relink plug-in, and ran into this wee issue today 
>> learning how to use modals in TW.
>>
>> The following in one of my tiddlers pops up a modal displaying the "Under 
>> Construction" tiddler:
>>
>> <$button message="tm-modal" *param="Under Construction"*>This site is a 
>> work in progress
>>
>> The problem I ran into:  Changing the name of the tiddler "Under 
>> Construction" to something else, Relink doesn't change the param above, 
>> which makes sense because that would really (in my mind, anyway) make 
>> Relink way more complicated than necessary.  *(i.e. I think it would be 
>> a bad idea to change Relink to handle Tiddler name changes in any "param".)*
>>
>> So easy to handle the problem above with the following easy change to 
>> the button widget, which works A-1 with Relink:
>>
>> <$button message="tm-modal" *param={{Under Construction!!title}}*>This 
>> site is a work in progress
>>
>> Relink can find that {{UnderConstruction!!title}} no problem, and change 
>> that as per however the tiddler name gets altered.
>>
>> Nothing particularly earth-chattering, but I've got to find ways to 
>> contribute somehow ...
>>
>> Cheers !
>>
>

-- 
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/23149a6e-7fca-47eb-9799-aaa7ff033604%40googlegroups.com.


[tw5] Triple curly braces and templates - tip

2020-03-15 Thread TonyM
Folks,

I was looking through tiddlywiki to find how it does things because if you 
are left on a desert island or isolated with corona virus and no internet, 
tiddlywiki is in some ways its own documentation. I came across this in the 
tiddler $:/core/templates/exporters/TidFile which piqued my interest.

\define renderContent()
{{{ $(exportFilter)$ +[limit[1]] ||$:/core/templates/tid-tiddler}}}
\end
\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!
has[draft.of]]
<>

Already I often use the triple curly braces to get a quick filter result

{{{ [all[]prefix[New Tiddler]] }}}

Observe how the triple curly braces not only evaluates a filter but then 
displays the result via a template?

This is "documented" 
here https://tiddlywiki.com/#Transclusion%20in%20WikiText but it is easy to 
miss.

{{{ [all[]prefix[New Tiddler]]||$:/core/ui/ListItemTemplate}}}

For example the above uses the existing list item template to render the 
list resulting from the filter, but it is no different to the default

$:/core/ui/ListItemTemplate

<$link to={{!!title}}>
<$view field="title"/>



You can see how this template is quite simple;;
And lets edit it to include the description

Tiddlername Description

<$link to={{!!title}}>
<$view field="title"/>: {{!!description}}



Now you can use
{{{ [all[]prefix[New Tiddler]]||Description}}}

To list everything in the filter and its description if it exists.

Or make the template DescriptionRow
<$link/>{{!!description}}

And use

NameDescription
{{{ [all[]prefix[New Tiddler]] ||DescriptionRow}}}


The possibilities abound.
have fun

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/be586bd0-e9b7-4c75-9ae1-aa10a315e146%40googlegroups.com.


[tw5] Re: encryption in TW5: node: Bob

2020-03-15 Thread Donald Coates
Jacob just wanted to make sure you were aware of vanilla nodejs 
authentication .

Jed - good lord I have been dying for authentication for Bob for what seems 
like forever.  AFAIK it is listed as 'under consideration' on the github 
plugin page and I have been anxiously watching for it to change!  Now I 
have a new project to play with  But if possible maybe put some mention 
of this there?  I would think anyone that uses the nodejs server would be 
interested in this.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/aaea84f0-b420-432b-90ea-69757e416346%40googlegroups.com.


[tw5] Re: Relink, and setting up button widgets for modals

2020-03-15 Thread CJ Veniot
I had forgotten, I was having the same pain-in-the-caboose issue with 
Tidgraph.

So instead of:  <$tidgraph *start="Mapping Approaches"* layout="S" 
maxdepth="1" startat="1"/>

I am now doing this:  <$tidgraph *start={{Mapping Approaches!!title}}* 
layout="S" maxdepth="1" startat="1"/>

Me still being the TiddlyWiki newbie, I'm sure there are all kinds of other 
situations (I haven't run into yet), in which a tiddler name is a parameter 
enclosed in double-quotes.  I'm thinking all of these situations need 
changing to {{tiddler-name!!title}} so that Relink works with 
anything/everything.

Of course, Relink is oh-so-important to me because I am a tweaker, always 
starting with tiddler names that I know aren't quite right, but are good 
enough for the moment until I iteratively and incrementally get that 
perfect tiddler name ... 

On Sunday, March 15, 2020 at 11:46:55 PM UTC-3, CJ Veniot wrote:
>
> G'day all,
>
> Just in case there are other newbies like me who ever run into this ...
>
> I am a huge fan of the Relink plug-in, and ran into this wee issue today 
> learning how to use modals in TW.
>
> The following in one of my tiddlers pops up a modal displaying the "Under 
> Construction" tiddler:
>
> <$button message="tm-modal" *param="Under Construction"*>This site is a 
> work in progress
>
> The problem I ran into:  Changing the name of the tiddler "Under 
> Construction" to something else, Relink doesn't change the param above, 
> which makes sense because that would really (in my mind, anyway) make 
> Relink way more complicated than necessary.  *(i.e. I think it would be a 
> bad idea to change Relink to handle Tiddler name changes in any "param".)*
>
> So easy to handle the problem above with the following easy change to the 
> button widget, which works A-1 with Relink:
>
> <$button message="tm-modal" *param={{Under Construction!!title}}*>This 
> site is a work in progress
>
> Relink can find that {{UnderConstruction!!title}} no problem, and change 
> that as per however the tiddler name gets altered.
>
> Nothing particularly earth-chattering, but I've got to find ways to 
> contribute somehow ...
>
> Cheers !
>

-- 
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/030815e7-dc7e-4965-afb8-47af9f46ca48%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread Donald Coates
Thank you very much for this it validates what I was thinking.  Here is a 
FB post I wrote:

A Realistic Perspective.

The problem, as usual, is that both sides contain an element of truth. If 
you're reading this and don't work in healthcare or are not consistently 
using its services, you have little or nothing to panic about on a personal 
level. All the closings are being done to prevent the spread of infection - 
necessary supply chains are necessary - they are not going to be broken and 
you will continue to have access to toilet paper and food.

However. For this situation classify every person by how often they are 
admitted to the hospital in a year. The majority of people involved in 
necessary supply chains are on the same level as you and me - their number 
is miniscule - they've been admitted into the hospital from never to a few 
times in their entire lifespan. Covid is not going to change that.
Now we get to the 1 through 5's - people that are admitted 1 to 5 times a 
year. Most years these people cycle through the hospital at different times 
through the year and we can handle it. 
It is highly likely that soon a lot of the 3-5's are all going to be sick 
enough to be admitted within a very short time span, and soon after that a 
lot of the 1-2's. Those 1-5's, their families, and the people like me that 
care for them are all going to be experiencing - well I don't want to try 
and describe it because I'm basically in tears reading about the people 
abroad that are already going through this.
The only way it is going to seriously affect anyone that is less than a 1 
is if you do get sick from Covid and need to be evaluated, or if you have 
an experience that requires emergency intervention - the chances of which 
remain the same as they have always been. In that case the health care 
infrastructure that exists to take care of you will be severely strained. 
Yes that is scary but not that much more scary than the constant fact that 
it may happen in the first place.

Most likely you'll be watching this from afar which is how it should be. 
Stop freaking out over toilet paper and food and just get ready to support 
the people that are going to be neck deep in this shit storm. The only way 
we get through it is together.


> Meanwhile herein in Northern Italy, current centre of the virus in Europe, 
> there is no panic buying at all I have seen & I have had no problems yet 
> buying anything. Its a pretty relaxed atmosphere. Bit of frustration, yes. 
> Bit weird meeting people in masks. But today, Sunday morning, people walked 
> their dogs as usual.
>
> 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/247b96d8-bc8d-471a-8faf-7bb6e044d0f9%40googlegroups.com.


Re: [tw5] Wikified macro notation suggestion

2020-03-15 Thread TonyM
Jeremy,

I cat yet respond to all your questions because I remain somewhat confused 
but respond to a few below;

On Thursday, March 12, 2020 at 10:07:06 PM UTC+11, Jeremy Ruston wrote:
>
> Hi Tony
>
> The following is an outline of how I see this for a "view from a different 
> mind", for you to keep in mind going forward.
>
> In all your examples of using wikify you tend to use it in the body of the 
> wikitext, just in time, wrapping its own output.
>
>
> The results of the wikify widget are indeed only available within the 
> content of the widget.
>
> Can you show a counter example to help me understand what you mean?
>

I will later 

>
> I tend to run into difficulty using it any other way, such as a local or 
> global macro, and when in your example there are "variables" in the source 
> eg if your set included {{!!fieldname}} or $tooltip$ etc... in what is to 
> be wikified.
>
>
> You’re saying that you can’t use the wikify widget within a macro? I’m not 
> sure what you’re getting at here. Perhaps some examples would help?
>

Will show later but see buttons below 

>
> It is clear we need to fill out the documentation Pragma 
>  and Wikify Widget 
> , sometimes so people know this 
> does not promise things it may "on the surface"
>
>
> Any help with that is welcome.
>

Will do 

>
>- Is using \import filter more efficient than global macros or the new 
>view only macros tag
>
> They’re all the same mechanism under the hood: the importvariables widget.
>

I understand this, but the other mechanisms are often applied to every 
tiddler, where as \import variables may apply them only when specifically 
named, so in some cases I imagine it more efficient?
 

>
>
>- Where are the rules documented? Are they a one for one match with 
>these names $:/core/ui/ControlPanel/Parsing
>
> The pragmas are documented here:
>
> https://tiddlywiki.com/#Pragma
>

This mentions \rules and not much more. Is there more doco somewhere? That 
is why I ask are the rules what we see here $:/core/ui/ControlPanel/Parsing 

?


*\rules for adjusting the set of rules used to parse the text*


No rules names, *except* not mentioned etc..?

>
> I found the "undocumented "[wikiparserrules[]]" filter operator
>
>
> That’s a filter operator, which are nothing to do with pragmas.
>

Well surely it does relate to the rules pragma, I thought this is a way to 
access all the defined rules, which are not documented in the \rules pragma 
or anywhere else.


\rules except table

Where table is in the wikiparserrules output and also found listed here 
Block Parse Rules <$:/core/ui/ControlPanel/Parsing>

Is there an include parameter or just by naming the rule?
 

>
> Wikify
>
>- With the Wikify widget is there a way for us to apply the pragma 
>rules to the result?
>
> That’s exactly what my example in my previous post showed.
>


Opps Yes, Use an additional set widget to pre-pend the define, even pragma, 
to the text before wikifiction. 


>- The Wikify Widget  would 
>benefit from examples and ideally through the various templates available 
>already in the core, so people can generate and store tiddlers in 
> alternate 
>formats that already operate under export, save and other options.
>
> What do you mean by “templates” here? What’s the connection between 
> templates and the wikify widget? Reusing the existing export filters 
> doesn’t have anything obvious to do with the wikify widget.
>

I remain awfully confused here, I think I will present another thread in 
time. I have tried to use the $:/core/templates tiddlers to render a 
tiddler and save the result as a tiddler, copy to clipboard or file.
 

>
>
>- Storing the result of a wikify operation in the current wiki is also 
>of substantial value (I would detail if asked)
>
> As you know, changes can only be made to the wiki via action widgets, are 
> you experiencing difficulties doing that? Again, perhaps an illustration 
> would help.
>

I would be happy to make a button to do this, But I seem to be missing 
something. They often instead include the code unwikified. I will start a 
new thread when I have worked through the details.

But I would have thought the below buttons would work, when json-here 
returns the formated tiddler.

\define json-here()
<$wikify name=output text="""{{||$:/core/templates/json-tiddler}}""">
<$macrocall $name="copy-to-clipboard" src=<>/>

\end
<>

<$button>
<$action-createtiddler $basetitle="Test"  text=<>/>
Go1


<$button>
<$action-createtiddler $basetitle="Test"  text={{||$:/core/templates/json-
tiddler}}/>
Go2


 

>
> Parsing is of substantial interest to many, so I hope eventually we can 
> open this to users, especially to add our own markup.
>
>
> Beyond your desire to add custom markup without having to use JavaScript, 
> what else is needed to open parsing to users?
>
> I and mario 

[tw5] Relink, and setting up button widgets for modals

2020-03-15 Thread CJ Veniot
G'day all,

Just in case there are other newbies like me who ever run into this ...

I am a huge fan of the Relink plug-in, and ran into this wee issue today 
learning how to use modals in TW.

The following in one of my tiddlers pops up a modal displaying the "Under 
Construction" tiddler:

<$button message="tm-modal" *param="Under Construction"*>This site is a 
work in progress

The problem I ran into:  Changing the name of the tiddler "Under 
Construction" to something else, Relink doesn't change the param above, 
which makes sense because that would really (in my mind, anyway) make 
Relink way more complicated than necessary.  *(i.e. I think it would be a 
bad idea to change Relink to handle Tiddler name changes in any "param".)*

So easy to handle the problem above with the following easy change to the 
button widget, which works A-1 with Relink:

<$button message="tm-modal" *param={{Under Construction!!title}}*>This site 
is a work in progress

Relink can find that {{UnderConstruction!!title}} no problem, and change 
that as per however the tiddler name gets altered.

Nothing particularly earth-chattering, but I've got to find ways to 
contribute somehow ...

Cheers !

-- 
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/20a5a12b-3f9d-4d20-994d-07522d46a3c0%40googlegroups.com.


[tw5] Re: Tiddlywiki edition (app): Building TW-Docs for creating a linear manual/tutorial/course-note/booklet

2020-03-15 Thread TonyM
Mohammad,

I am not exactly sure what you are missing but for my client I built a 
solution that produces a visible "report" that also uses 
etc... in tables and @media print css sutch that once they 
review the report they can open in new window and print or save to PDF. The 
PDF printer driver does the work and there are some issues to watch. For 
example sometimes I need to scale the page in the print preview to get the 
desired result.

To complement the use of interactive tables I have also generated a csv 
version of the same details and with a click the result is copied to the 
clipboard, perhaps there is a way to make a button wikify a non visible 
tiddler (PDF template) and send it to the printer?

On the standard search this is defined to suit new users but more and more 
we see custom or modified searches, what in your tiddlywiki can you not 
search for?

Regards
Tony

On Sunday, March 15, 2020 at 7:06:54 AM UTC+11, Mohammad wrote:
>
> Sphinex with Read the Docs is one of the most common online app for making 
> software tutorial and manuals.
> As an example see the docs for Highlight.js at
> https://highlightjs.readthedocs.io/en/latest/index.html
> See alternatives at the bottom of this post.
>
> I am trying to create TW-Docs app using Tiddlywiki + JD Material theme + 
> JD font-size + some of Kookma plugins (like Shiraz + TOC+Hierarchical 
> navigation + Utility + Favorites) + Comments plugin (not sure on this)
>
> I did most part of the job but there is few things to be resolved before 
> publishing:
>
> 1- On the footer of sidebar there is a button *v-latest*. It lets you to 
> download the whole manual using PDF/HtmlZip/Epub
> TW saves as a single .html the whole manual but how about exporting the 
> book (manual) as PDF or epub? (I know printRiver from BTC: difficult to 
> make the book in PDF, needs alot of manual work)
>
> 2- The search seems more powerful than Tiddlywiki standard search
>
> It seems Read the Docs is a multi-user app, but I am not going to have 
> TW-Docs a multi user app.
>
> I appreciate to share ideas and solutions.
>
> -- Mohammad
>
> Ps: Alternatives to Read the Docs
>
>1. https://alternativeto.net/software/read-the-docs/?license=free
>2. https://www.gitbook.com/
>3. https://skydocs.skyost.eu/en/index.html
>
>

-- 
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/c2a1cd5c-a750-49f3-986a-0de0eb894eed%40googlegroups.com.


[tw5] Re: Disable drop zone

2020-03-15 Thread TonyM
Mohammad,

Just some inspiration

Some of your nice buttons, cards and boxes in Shiraz could be used to 
display a drop zone that bypasses the default one and potentially treats 
the payload differently. Currently I drop links on a wiki which creates an 
untitled tiddler, which I have to open and configure as a link tiddler, 
however custom dropzones would be a nice addition, even one for the default 
drop if desired so it is less temperamental.

One trick I use is if the text field has the prefix[http://] or 
prefix[https://] then it is most likely a link. Arguably we could start a 
tiddler with \define trigger-macroname() and test for this prefix as an in 
text way to trigger a view template etc...

Regards
Tony

On Sunday, March 15, 2020 at 9:32:23 PM UTC+11, Mohammad wrote:
>
> Is there any settings to disable dropzone?
>
> Consider you have created a Tiddlywiki and hide most UI elements to 
> prevent readers from any change!
> Still drag and drop works! How one can simply disable drag and drop 
> feature of TW temporary?
>

-- 
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/d9662bc8-e410-40a6-849f-3e9b0348610f%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread TonyM
As a "modern skeptic" who practices critical thinking and does my level 
best to avoid common fallacies we are all vulnerable to;

I see the social epidemic, panic buying and other irrational behaviours as 
a symptom of societies who have lost track of seeking evidenced based 
information and their minds weakened by accepting Woo, alt medicine, fake 
news and non evidence based claims. A reduced capacity to understand and 
believe who is an expert and when you should trust their advice, has being 
caused by people selling things or who perceive their industry at risk such 
as the fossil fuel industry about climate change. As a result these 
unscrupulous people pedal doubt to fuel fear or delays in decision making 
for their own selfish gains. This "doubt" undermines peoples ability to 
evaluate reliable sources and destroys trust where is is due. 

It is in a crisis when we see the weakness in the people and systems around 
us. The Hitchhiker's Guide to the Universe begins;

Don't Panic!

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/75307a53-8ceb-47a7-8868-a19fcda96601%40googlegroups.com.


[tw5] Re: encryption in TW5: node: Bob

2020-03-15 Thread Joshua Fontany
Aaaah, that's where that went. Commenting to follow the thread. Mahalo 
(thanks)!

Joshua F

On Sunday, March 15, 2020 at 2:23:13 AM UTC-7, Jed Carty wrote:
>
> There is a server server to go with bob (
> https://gitlab.com/ooktech-public/securewikiserver). It has been used at 
> Ooktech.xyz for a while now, but there has been almost no interest in it so 
> I haven't done much more with documenting it.
>
> I have bob running on my computer and it is currently taking about 180mb 
> of ram, the ram usage is dependent on how many wikis are loaded on the 
> server. When Bob starts it is only the node process and one wiki, as you 
> open more wikis they are loaded into memory and take up more ram. You can 
> unload a wiki after it is loaded to reduce the memory usage, but so far I 
> haven't implemented a good way to have it automatically unload wikis that 
> aren't in use without causing a lot of problems for people on inconsistent 
> connections.
>
> The secure server lets you have as many people and wikis as you want and 
> you can give fine grained control over permissions both globally and on 
> individual wikis for things like creating, viewing and editing. Eventually 
> I will get around to documenting it better but like I said, there wasn't 
> much of a response.
>

-- 
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/ac0473af-e4f6-4cee-adbd-52483321a863%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread TonyM
Mark,

As you say


> It's effective if sick people are wearing them -- not well people.
>

And those in contact with the vulnerable especially health professionals.  

-- 
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/ec6ca3b6-b5c5-4f92-b759-99604d22ca24%40googlegroups.com.


[tw5] Re: Select Fields by prefix

2020-03-15 Thread TonyM
Drevarr.

Christian got it in one is so far as this finds all fields in the wiki and 
filters only those with the prefix.

If you use [all[current]fields[]prefix[act_]] then it will only get the 
current tiddlers fields and the list result in the fieldnames, but you 
could use other filters like object-type[person]] for all tiddlers 
containing 

For this reason I would use a variable name as Christian has, so that you 
can continue to address fields in the currentTiddler

Regards
Tony

On Monday, March 16, 2020 at 10:34:11 AM UTC+11, ChristianB wrote:
>
> Try this as a starting point to list your fields in a table
>>
>
> 
> <$list variable="fieldName" filter="[fields[]prefix[act_]]" >
> 
> <>
> <$view  field=<> />
> 
> 
> 
>
>  
>

-- 
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/79860760-36d3-4222-b9cf-d35961098d34%40googlegroups.com.


[tw5] Re: Select Fields by prefix

2020-03-15 Thread ChristianB

>
> Try this as a starting point to list your fields in a table
>


<$list variable="fieldName" filter="[fields[]prefix[act_]]" >

<>
<$view  field=<> />



Enter code here...


 

-- 
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/8210c8a7-6e6c-49b5-a1c1-66859192cb05%40googlegroups.com.


[tw5] Select Fields by prefix

2020-03-15 Thread Drevarr the Old
Somewhere in here @TonyM provided a method to generate checkboxes based on 
a data tiddler which I promptly incorporated into a template for creating 
new tiddlers.  Now instead of having 64 fields, i have a subset depending 
on what checkboxes are chosen at tiddler creation.

All the fields generated from checkboxes start with the prefix: "act_". The 
tiddlers have other fields as well that do not start with "act_".

Can someone help walk me through a list filter to select only fields 
starting with "act_" from the current tiddler and get the field values? 

-- 
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/95ec7695-37d1-4e62-9b81-4e8977d4378e%40googlegroups.com.


Re: [tw5] Disable drop zone

2020-03-15 Thread Jeremy Ruston
Hi Mohammad

I’ve been meaning to do something about that, and have now added a hidden 
setting to disable the dropzone:

https://github.com/Jermolene/TiddlyWiki5/commit/bc687e57834efa312cca126af222613ef241c585
 


There are docs here:

https://tiddlywiki.com/prerelease/#Hidden%20Setting%3A%20Disable%20Page%20Dropzone
 

Best wishes

Jeremy.

> On 15 Mar 2020, at 10:32, Mohammad  wrote:
> 
> Is there any settings to disable dropzone?
> 
> Consider you have created a Tiddlywiki and hide most UI elements to prevent 
> readers from any change!
> Still drag and drop works! How one can simply disable drag and drop feature 
> of TW temporary?
> 
> -- 
> 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/51c39046-28db-4b70-b119-6cfdcbad1307%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/518729C6-5464-4856-9FA5-70F62C56C625%40gmail.com.


[tw5] Re: [INTRO] uni-link plugin

2020-03-15 Thread PMario
On Sunday, March 15, 2020 at 8:01:06 PM UTC+1, Charles d’Artagnan de 
Batz-Castelmore wrote:
...

> I still get that error in the demo. Here is a screenshot, 
>

Thx for the info! As I wrote, I can confirm, that there is a problem. I'll 
have a look.

-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3befccf5-b636-497c-8e95-aa376c15e652%40googlegroups.com.


[tw5] Re: [INTRO] uni-link plugin

2020-03-15 Thread 'Charles d’Artagnan de Batz-Castelmore' via TiddlyWiki
Yep, I use the mentioned relink plugin. Thanks for your reply!

I still get that error in the demo. Here is a screenshot, that shows how it 
looks for me. The text of those tiddlers are simple alias links, i.e. 
[[Darwinism|?]] in "bar" and [[darwinism|?]] in "foo". I am somehow happy, 
that Thanos can confirm it. So maybe there is hope for a coexistence of 
uni-link and relink? 
Unfortunately I cannot help fixing those kind of problems. That is way out 
of my league at the moment.

[image: Screenshot from 2020-03-15 19-48-42.png]



Am Sonntag, 15. März 2020 17:01:47 UTC+1 schrieb PMario:
>
> Hi,
> I did test it with: https://wikilabs.github.io/editions/uni-link/ 
> 
>  
> and it works as expected. 
>
> *Do you use flibbles tw5-relink plugin?* ... If yes that's the problem. I 
> know about the issue but didn't have time to fix it. 
>
> I'll have to have a closer look and make it compatible. 
>
> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/95761e3c-d3c9-4d17-871d-638f591a88f8%40googlegroups.com.


[tw5] Re: [INTRO] uni-link plugin

2020-03-15 Thread PMario
On Sunday, March 15, 2020 at 7:26:14 PM UTC+1, Thanos Pal wrote: 
...

>From my experiments the problem is with capitalization and also happens in 
> the wiki you posted. 
> If you notice in Charles post he links to a tiddler with an alias "bar" 
> with [[Bar|?]] and that's where it doesn't work. I'm sure, as is also the 
> case for me, 
>

That's new to me, but I can confirm it. ... It shouldn't be a problem, 
since aliases are not case sensitive. ... So may be I missed a 
.toLowerCase() somewhere. 

I'll have a look at it. Thx for the info!

-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d7da31c9-5f17-4a98-a09b-9cc39de435dc%40googlegroups.com.


[tw5] Re: [INTRO] uni-link plugin

2020-03-15 Thread Thanos Pal


On Sunday, 15 March 2020 18:01:47 UTC+2, PMario wrote:
>
> Hi,
> I did test it with: https://wikilabs.github.io/editions/uni-link/ 
> 
>  
> and it works as expected. 
>
> *Do you use flibbles tw5-relink plugin?* ... If yes that's the problem. I 
> know about the issue but didn't have time to fix it. 
>
> I'll have to have a closer look and make it compatible. 
>
> -mario
>

I just stumbled upon the same problem. 
I also use the relink plugin, but I don't believe that's the culprit. From 
my experiments the problem is with capitalization and also happens in the 
wiki you posted. 
If you notice in Charles post he links to a tiddler with an alias "bar" 
with [[Bar|?]] and that's where it doesn't work. I'm sure, as is also the 
case for me, that if he has an alias "bar" in a tiddler "Foo" and he links 
to it via [[bar|?]] the "references" tab will populate. 
I'm looking at the code, but I've zero experience with javascript and I'm 
kind of lost to be honest. Do you have any ideas for what is going on?

-Thanos

-- 
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/1073be17-2e3b-43e6-8f28-d6c8702af517%40googlegroups.com.


Re: [tw5] Re: Announcement: TW5-powered ebooks

2020-03-15 Thread Xavier Cazin
Hallo Thomas,

Thank you for your kind words!


>  By the way: If you delete "Einen" then the text would fit on the button
> shown below also in German. And it would not harm the meaning in any way.
> (In Switzerland we always assume French would take up most space.)
>
> [image: Bildschirmfoto 2020-03-14 um 16.01.03.png]
>
>
Thank you, I've committed the change. It will be hopefully deployed early
next week ;-)

> Last and least: Languages symbolised by flags as on your website often
> don’t match. I read books in German, but I am Swiss so the German flag does
> not appeal to me in the way it might be intended. Possibly it is the same
> for English speaking Canadians or US citicens.
>
You are absolutely right, we tend to overlook these issues, as there seems
to be no good interface solution! I'll work with my colleagues upon your
comments, and try to come with something more satisfying.
(any suggestions welcome of course :-)

Cheers,
Xavier.

-- 
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/CADeSwYOLA4dquEZx3qs32QTXNR4fckm4bmuN0aEMtXxbULRDiw%40mail.gmail.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread 'Mark S.' via TiddlyWiki


On Sunday, March 15, 2020 at 9:03:37 AM UTC-7, TiddlyTweeter wrote:
>
>
> And, on the other hand, many Asian countries have used them a long time as 
> part of containment strategies. Strategies that look effective.
>  
>

It's effective if sick people are wearing them -- not well people.

-- 
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/06023226-3978-4748-b41b-9d999095309f%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread TiddlyTweeter
Donald Coates wrote:
>
> ... It's been really disheartening how people are so ready to steal 
> supplies from us.
>

Right. This interests me sociologically. Its part a marker of when people 
don't feel collective need matters. Its especially disturbing when those 
thefts are not by professional criminals. It will be related to extant 
norms in the culture. And it makes life difficult when you have to both 
help people and have to police them. Basically its culture unmasked. These 
things don't happen without propensity.

I'll say here what I can't say anywhere around my family - I'm really 
> worried.  Not so much about my personal safety - though Mohammed's remark 
> is disturbing - I have a strong immune system and everyone in my household 
> is young - but being immersed in this level of tragedy is soul crushing 
> once the adrenaline wears off.
>

Medically Italy made the mistake about ten years ago of reducing critical 
care beds. But the North does have very Good healthcare so actually its 
likely better than elsewhere might become. We are receiving considerable 
help from Chinese doctors & equipment.

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/898fd705-4d3a-4d48-97d8-9c63bfaaaeb3%40googlegroups.com.


[tw5] Re: [INTRO] uni-link plugin

2020-03-15 Thread PMario
Hi,
I did test it with: https://wikilabs.github.io/editions/uni-link/ 

 
and it works as expected. 

*Do you use flibbles tw5-relink plugin?* ... If yes that's the problem. I 
know about the issue but didn't have time to fix it. 

I'll have to have a closer look and make it compatible. 

-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ddc21b93-8e46-481e-93f6-33e36dd847ea%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread Mohammad
Hi Josiah,

On Sunday, March 15, 2020 at 3:40:31 PM UTC+3:30, TiddlyTweeter wrote:
>
> The pandemic is bringing up many "informational issues" where there is 
> widely varying information on the net.
>
> In the USA, for instance, the surgeon General strongly advises NOT to wear 
> face masks.
>
> Part of the issue is the virus is only just taking hold in the USA, but 
> its also because American CULTURAL aversion to masking (shades of 
> "Anonymous" & "thugs") is strong.
>
> Many Asian cultures have far less problem with it.
>
> In Italy its unfamiliar but in my area its pretty much now accepted as a 
> Good idea in more collective places. That said, the physical distancing it 
> creates in people in a culture used to wide physical expression of emotion 
> (hugging and kissing) is creating an unfamiliar and somewhat deleterious 
> psychological atmosphere.
>
> One thing I did look at was reusable "home made" masks. Partly because 
> Mohammad mentioned masks are in short supply in Iran. 
> IF you make them the right way they can work almost as well high grade 
> surgical masks. But a Problem is most net sources don't provide enough 
> detail to be sure you are making or using them well.
>


In university we tried to make some disinfectant sprays. We ordered medical 
grade alcohol (99+) and glycerin and some fruit essences and then used 
decriminalized water (you can use double distilled water or simply double 
boiled water) and then make 70% alcohol + 27% water + 3% glycerin + a 
little amount of essences and then filled some cosmetic spray bottles and 
distribute among students and other faculty member.

I have heard in some cities NGOs make "home made" masks.

>
> Also the is NO point wearing a mask if you don't, when you come home 
> either destroy or disinfect it and the rest of yourself. This is hardly 
> mentioned anywhere!
>
> I may write about this in a TW. I just wonder how you'd ever get it 
> noticed in a swamp of half-information
>
> Best wishes
> TT
>

--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/62b2806e-86e9-4910-9283-a91b95514883%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread Mohammad


On Sunday, March 15, 2020 at 6:20:28 PM UTC+3:30, Donald Coates wrote:
>
> Hey Mohammed I was wondering if you have any details of this - like were 
> these people already at risk with previous health issues, older folks, etc.
>
Hi Donald,
Were we had a nurse only 25 years old among the death. See this picture 

Use Google translate if you like to read the text.


 

>
> I don't know if I really want to know.
>
> I am a respiratory therapist - my specialty is the mechanical ventilators 
> and intubation procedure and any breathing emergency - on Long Island and 
> having been doing this for over 20 years so I've been through a few hard 
> core flu seasons and I have a sense for how bad this is going to get but I 
> don't think I can really know - reading the NYT article about Italy and 
> being able to imagine from personal experience exactly what they are 
> describing I am realizing this is going to be a once a career level event.
>

Yep, I just watch this from TV, but the situation is really tough! 

>
> We are already being told there are shortages of protective equipment and 
> there are only a few suspected and one confirmed case in both the hospitals 
> I work in.  They keep changing the policy about what we 'need' based on 
> their desire to hold back on supplies.
>
> It's been really disheartening how people are so ready to steal supplies 
> from us.
>

I see the same here. There is a great deal of fear! Strangely you see also 
people donnot care!! 

>
> I'll say here what I can't say anywhere around my family - I'm really 
> worried.  Not so much about my personal safety - though Mohammed's remark 
> is disturbing - I have a strong immune system and everyone in my household 
> is young - but being immersed in this level of tragedy is soul crushing 
> once the adrenaline wears off.
>

I have been told, people with stronger immune system may infect but will 
get their health soon! I have heard 4200 people regained their health.

>
> Be safe all.
>

Be safe all!

--Mohammad 

>
>
>
>
>> There is a tough situation. We have several death among doctors, nurses, 
>> other medical staff.
>>
>> ...
>>
>> --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/2d2b4e87-1cbe-4312-b475-3b4883541a4c%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread TiddlyTweeter
Its certainly true that in some places hysteria has gone berserk. I have a 
close friend in Southern Texas and there, with virtually no cases at all, 
you can't buy toilet paper because of panic buying. Emotionally she is in a 
bad state because she is disabled and basic staples are getting hard to get.

Meanwhile herein in Northern Italy, current centre of the virus in Europe, 
there is no panic buying at all I have seen & I have had no problems yet 
buying anything. Its a pretty relaxed atmosphere. Bit of frustration, yes. 
Bit weird meeting people in masks. But today, Sunday morning, people walked 
their dogs as usual.

TT

On Sunday, 15 March 2020 15:17:59 UTC+1, Julio Peña wrote:
>
> Hello all,
>
> The way I look at it is simple
> ...the social pandemic (with its phobias) has become worst than the actual 
> pandemic...
>
> Stay safe,
> Julio
>
>

-- 
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/c769daa8-1da0-4761-ac84-b20fd95bff32%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread Donald Coates
Hey Mohammed I was wondering if you have any details of this - like were 
these people already at risk with previous health issues, older folks, etc.

I don't know if I really want to know.

I am a respiratory therapist - my specialty is the mechanical ventilators 
and intubation procedure and any breathing emergency - on Long Island and 
having been doing this for over 20 years so I've been through a few hard 
core flu seasons and I have a sense for how bad this is going to get but I 
don't think I can really know - reading the NYT article about Italy and 
being able to imagine from personal experience exactly what they are 
describing I am realizing this is going to be a once a career level event.

We are already being told there are shortages of protective equipment and 
there are only a few suspected and one confirmed case in both the hospitals 
I work in.  They keep changing the policy about what we 'need' based on 
their desire to hold back on supplies.

It's been really disheartening how people are so ready to steal supplies 
from us.

I'll say here what I can't say anywhere around my family - I'm really 
worried.  Not so much about my personal safety - though Mohammed's remark 
is disturbing - I have a strong immune system and everyone in my household 
is young - but being immersed in this level of tragedy is soul crushing 
once the adrenaline wears off.

Be safe all.




> There is a tough situation. We have several death among doctors, nurses, 
> other medical staff.
>
> ...
>
> --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/a27168ee-5512-4e59-ade8-d9d64064f66d%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread 'Mark S.' via TiddlyWiki


On Sunday, March 15, 2020 at 5:10:31 AM UTC-7, TiddlyTweeter wrote:
>
>
> In the USA, for instance, the surgeon General strongly advises NOT to wear 
> face masks.
>
> Part of the issue is the virus is only just taking hold in the USA, but 
> its also because American CULTURAL aversion to masking (shades of 
> "Anonymous" & "thugs") is strong.
>
>
Got the same advice as the surgeon General from Chris Smith 
 a physican out of 
Cambridge on the Naked Scientist  
podcast produced in the U.K.  The main vector for viruses is when people 
touch their face. Messing with the mask will bring the virus closer. Most 
masks can not block the tiny virus particles and most people don't wear 
them properly, allowing air to go around the edges. 

Perhaps masks are helpful in cultures where people need an excuse to avoid 
physical contact (e.g. kissing as a form of greeting).

I'm thinking of wearing gloves as a reminder to not touch the face. People 
automatically touch their face more than 20 times an hour.


-- 
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/a9715849-dc13-4e05-81eb-84c9cecc0925%40googlegroups.com.


[tw5] Re: Tiddlywiki edition (app): Building TW-Docs for creating a linear manual/tutorial/course-note/booklet

2020-03-15 Thread Mohammad
Thank you TT

On Sunday, March 15, 2020 at 5:11:44 PM UTC+3:30, TiddlyTweeter wrote:
>
> 2- The search seems more powerful than Tiddlywiki standard search
>>
>
> The new e-pub "highlight search" is very good in both highlighting in the 
> "hit list" and in the text field.
>

I am very interested in that! but it is not given as a plugin and I could 
not figure it out which tiddlers should be exported to use it in another 
wiki!
in the other hand I do not know what is the license! I hope it is MIT or 
similar ones to let others use it in their own wikis.

>
> The focus on the "text" field is particularly Good as its been under-used 
> imo in the past. 
>
> I think for "free-text" its simply the best approach. Tools like that are 
> really excellent for unstructured data.
> Most of the time you need nothing more.
>
> TT 
>

--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/355bb662-4768-4065-9244-eaf36fdc33a2%40googlegroups.com.


[tw5] Re: Material Theme for TW5 (still sort-of )

2020-03-15 Thread Mohammad
Hi JD

First thank you for the great Material theme 
 and appreciate your all efforts.

I am adopting the theme for TW-Docs and see some small issues:

1. The search result run out the border of search body and needs a 
overflow-y: scroll;
2. The color of visited link and tag pill is the same and for most color 
scheme the visited link hardly can be read
3. The TW 5.1.20+ core supports the keyboard shortcuts, so I may recommend 
to update the theme to new TW
4. When you click new tiddler, the top section of tiddler is hidden under 
top menubar and needs a little tweaking (now one has to scroll and bring 
tiddler down to be able to edit the title field

I would much appreciate if you kindly to have a look and let me know your 
opinion on this. I would welcome if I can be of any help.

--Mohammad 



On Saturday, June 23, 2018 at 3:07:32 PM UTC+4:30, JD wrote:
>
> Hello everyone,
>
> The original thread where I first shared this theme might be too long now 
> for new users (old thread here 
> ), 
> so I'm going to re-share it, along with some updates.
>
> This is my *Material Theme for TW5* (demo here: 
> http://j.d.material.tiddlyspot.com/), loosely following Google's Material 
> design guidelines. This theme has a built-in mobile layout and color 
> palettes that you can tweak at *Control Panel* > *Appearance *> *Material 
> Tweaks*
>
> I rely on your feedback and bug reports, please inform me about them here. 
>
>
> *UPDATES:*
>
>- Updated the demo site to *TW5.1.17*
>- Updated implementation of BTC's HammerWidgets and HammerJS (the 
>theme will *detect *if these two plugins are installed, and will 
>automatically apply swipe+tap capabilities specific to the theme. There's 
>no longer a need for an additional theme tiddler)
>- The theme no longer edits the palettes within it. Only the configDB 
>is being edited when tweaking the theme in *Control Panel* > 
>*Appearance *> *Material Tweaks*
>- Added links to TheDiveO's RobotoFont plugin, Material icons, and 
>BTC's widgets under the *Miscellaneous *section in *Control Panel* > 
>*Appearance *> *Material Tweaks*
>- The theme is now more mindful of the core color palettes, and will 
>look nice even when not using the Material palettes it has built-in (I've 
>recently been digging the core Blue Palette).
>- Added ability to select the default sidebar state when 
>*$:/state/sidebar* is missing (*Control Panel* > *Appearance *> *Material 
>Tweaks*)
>
> If you're updating, please delete with the following filter first: 
> *[all[shadows+tiddlers]prefix[$:/themes/jd/Material]]*
>
> -JD
>

-- 
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/37e25657-f184-4cd1-96c8-8836c97199aa%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread Julio Peña
Hello all,

The way I look at it is simple
...the social pandemic (with its phobias) has become worst than the actual 
pandemic...

Stay safe,
Julio

-- 
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/a5a9099e-e5bc-4898-98dc-3b08ab9c1aff%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread Birthe C
TT,

Long before the first person was tested corona positive in Denmark all 
masks were sold out, the last ones for very high prices. Shortly after the 
hospitals said they were having only for the next couple of weeks. Later we 
were told that the Regions had imported some rather expensive ones and they 
were shared around the country.
The wording did not really give an impression of enough or for a long time 
of use I might ad.
In Denmark we were told from early on, that the masks were of no use 
preventing infection, it was the infected who should wear it. They are only 
really of use for a very short time. We are being warned that they should 
not be cleaned or disinfected. Place your used mask at an isolated place 
and leave it for nine days would maybe be better.
There are different kinds of masks though.

I have also seen examples of home made masks on the internet. We are 
advised against them as they do not have the necessary filters to avoid 
virus.

The last couple of days we have heard about people stealing masks and hand 
cleaners from the hospitals. As many as they could get hold of and later 
trying to sell them via  netpages.

I do see your point TT, Things are changing rapidly now. The epidemic cast 
some light on how our society work. Discussion on the media has changed.

I hope you do write about the changes.

Birthe

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


Re: [tw5] Re: Announcement: TW5-powered ebooks

2020-03-15 Thread TiddlyTweeter
Thomas

I might be very interesting to combine this with your own work on "seamless 
texts"? 
Your visual layout for them was Good.
The bookmarking was also excellent.

Striking with the three's solution in the end result is performance the 
"overlays" & the text search.

If you ever did I'd be interested!

Best wishes
TT

On Saturday, 14 March 2020 16:12:19 UTC+1, Thomas Elmiger wrote:
>
> Wow! Congrats to the whole team.
>
> At first sight, the search features impressed me most, other parts 
> resemble ideas I had myself (e.g. 1 tiddler per paragraph). I will have to 
> explore more.
>
>>
>> There are almost 60K books in German that you can test here: 
>> https://www.7switch.com/de/list/drmfree/lang-ger/new/territory-FR/page/1/price
>>  
>> :-)
>>
>>  
> By the way: If you delete "Einen" then the text would fit on the button 
> shown below also in German. And it would not harm the meaning in any way. 
> (In Switzerland we always assume French would take up most space.)
>
> [image: Bildschirmfoto 2020-03-14 um 16.01.03.png]
>
> Last and least: Languages symbolised by flags as on your website often 
> don’t match. I read books in German, but I am Swiss so the German flag does 
> not appeal to me in the way it might be intended. Possibly it is the same 
> for English speaking Canadians or US citicens. 
>
>
> All the best, 
>
> Thomas
>
>

-- 
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/c4206e1e-c6dd-4ec8-8cae-821635c5ab13%40googlegroups.com.


[tw5] Re: Tiddlywiki edition (app): Building TW-Docs for creating a linear manual/tutorial/course-note/booklet

2020-03-15 Thread TiddlyTweeter

>
> 2- The search seems more powerful than Tiddlywiki standard search
>

The e-pub "highlight search" is very good in both highlighting in the "hit 
list" and in the text field.

The focus on the "text" field is particularly Good as its been under-used 
imo in the past. 

I think for "free-text" its simply the best approach. Tools like that are 
really excellent for unstructured data.
Most of the time you need nothing more.

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/d8367473-353b-412f-bec6-2dd6d57cd608%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread TiddlyTweeter
A Gloom wrote:
>
>
> As for afterward... the personal account you mentioned-- a journal of life 
> during the lockdown-- which TW is perfectly suited for-- is an excellent 
> idea-- get writing : P
>

Might do it. That would be slower and reflective. I'm actually most 
interested in the "unintended consequences" of social change--the 
anthropologist in me knows that global major epidemics historically have 
invariably changed societies forever. I'm trying to an early grasp on that.

What might also be interesting and quite useful is a curated collaborative  
TW CORONAVIRIS TIPS collecting tips from many people? My last post 
mentioned issues with masks that Mohammad brought up. Both use and supply.

Thoughts
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/e0b1d4bd-5c64-45c8-8579-ca96204fa11b%40googlegroups.com.


[tw5] Re: Tiddlywiki and Coronavirus

2020-03-15 Thread TiddlyTweeter
The pandemic is bringing up many "informational issues" where there is 
widely varying information on the net.

In the USA, for instance, the surgeon General strongly advises NOT to wear 
face masks.

Part of the issue is the virus is only just taking hold in the USA, but its 
also because American CULTURAL aversion to masking (shades of "Anonymous" & 
"thugs") is strong.

Many Asian cultures have far less problem with it.

In Italy its unfamiliar but in my area its pretty much now accepted as a 
Good idea in more collective places. That said, the physical distancing it 
creates in people in a culture used to wide physical expression of emotion 
(hugging and kissing) is creating an unfamiliar and somewhat deleterious 
psychological atmosphere.

One thing I did look at was reusable "home made" masks. Partly because 
Mohammad mentioned masks are in short supply in Iran. 
IF you make them the right way they can work almost as well high grade 
surgical masks. But a Problem is most net sources don't provide enough 
detail to be sure you are making or using them well.

Also the is NO point wearing a mask if you don't, when you come home either 
destroy or disinfect it and the rest of yourself. This is hardly mentioned 
anywhere!

I may write about this in a TW. I just wonder how you'd ever get it noticed 
in a swamp of half-information

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/c60fd0ab-d826-438c-ae06-b87d962cfbf7%40googlegroups.com.


[tw5] Disable drop zone

2020-03-15 Thread Mohammad
Is there any settings to disable dropzone?

Consider you have created a Tiddlywiki and hide most UI elements to prevent 
readers from any change!
Still drag and drop works! How one can simply disable drag and drop feature 
of TW temporary?

-- 
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/51c39046-28db-4b70-b119-6cfdcbad1307%40googlegroups.com.


[tw5] Re: encryption in TW5: node: Bob

2020-03-15 Thread Jed Carty
There is a server server to go with bob 
(https://gitlab.com/ooktech-public/securewikiserver). It has been used at 
Ooktech.xyz for a while now, but there has been almost no interest in it so 
I haven't done much more with documenting it.

I have bob running on my computer and it is currently taking about 180mb of 
ram, the ram usage is dependent on how many wikis are loaded on the server. 
When Bob starts it is only the node process and one wiki, as you open more 
wikis they are loaded into memory and take up more ram. You can unload a 
wiki after it is loaded to reduce the memory usage, but so far I haven't 
implemented a good way to have it automatically unload wikis that aren't in 
use without causing a lot of problems for people on inconsistent 
connections.

The secure server lets you have as many people and wikis as you want and 
you can give fine grained control over permissions both globally and on 
individual wikis for things like creating, viewing and editing. Eventually 
I will get around to documenting it better but like I said, there wasn't 
much of a response.

-- 
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/c9ffe2be-d47c-48eb-b6b5-5e71f1dd484b%40googlegroups.com.


[tw5] Re: [INTRO] uni-link plugin

2020-03-15 Thread 'Charles d’Artagnan de Batz-Castelmore' via TiddlyWiki
Hey everybody, 

I am quite new to all this TiddlyWiki thing, but this plugin would deliver 
essential features for my TiddlyWiki usage, so thank you a lot for that! 
Nevertheless I experience a problem with correct indication of references. 
In case of clicking on an alialised link, everything works fine and it 
leads me to the desired tiddler. Though, there, it might not appear in the 
references tab in the info of that tiddler. Is this a known issue?

A specific case: There is a tiddler "Foo" with an alias "bar". If I 
reference in the text body of a tiddler "Tah" using [[Bar|?]], it will 
bring me to "Foo",  but in the references of "Foo" it says "No tiddlers 
link to this one" and "No tiddlers alias to this one".

Another case, using the demo wiki (
https://wikilabs.github.io/editions/uni-link/): If I create a new tiddler 
and link to the "Darwinism" tiddler using [[Darwinism|?]], the new tiddler 
is not listed in "Darwinism"'s references. If I use [[Darwinism]] 
everything is fine.

I cannot see a pattern at the moment. Sometimes it seems to depend on the 
capitalization, but I not totally sure.  Any hint is appreciated!
Thanks and all the best...



Am Freitag, 23. Juni 2017 10:08:58 UTC+2 schrieb PMario:
>
> Hi Folks, 
>
> I pushed out the "uni-link" plugin 
>  [1]:  discussed in a 
> different thread [2], here in the group. 
>
> Intro-Video: latest: https://youtu.be/V9l-vipAoNw
>
> It's a new parser for the the TW link / prettylink detection: eg: [[test]]  
> ... it links to the tiddler named: test  but it shows a different text. 
> Depending on the fields available at the "test" tiddler. If used like this: 
> [[prettylink 
> text|test]] it behaves as in existing TWs. No special function used. 
> prettylink 
> text will be shown.
>
> eg: 
> title: test
> caption: short title
> subtitle: a tiddler to test the uni-link plugin
>
> So if the tiddler has no fields it shows: test
> If the tiddler has a "caption" field is shows:  short title
> If the tiddler has a "subtitle" field it shows: a tiddler to test the 
> uni-link plugin
> If the tiddler has both fields: a tiddler to test the uni-link plugin
>
> So *the subtitle field wins*.  
>
> This functionality is backwards compatible with existing tiddlywikis. So 
> if tiddlers are copy / pasted between TWs, that don't have the plugin 
> installed, it just falls back to the already existing behavior. Which imo 
> is a nice idea, created by Mark S. in the first reply post 
> . 
>
> There is a new parser "uni-link" that will be installed with the plugin. 
> This parser is enabled by default an it will supersede the "prettylink" 
> parser from the core. see: ControlPanel: Info: Advanced: Parsing
>
> So if [[test]] is parsed it will be translated into a macro call like 
> <>, but with the nice twist, that it also works with a 
> "fallback" if the plugin doesn't exist in a different TW. 
>
> @All  Feedback very welcome!
>
> have fun!
> mario
>
> [1] https://wikilabs.github.io/editions/uni-link/
> [2] https://groups.google.com/forum/#!topic/tiddlywiki/Z7dRU3HrzSs
>
>
>

-- 
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/dc3ed018-4ba6-42b9-90e4-52637356943f%40googlegroups.com.