[tw] Re: Trying to include search and replace in a tiddler - how to use global and ignore?

2017-12-21 Thread Riz
Oops, my bad. Thanks!!

On Friday, 22 December 2017 09:36:36 UTC+5:30, Birthe C wrote:
>
> Did you see Stephen Kimmels http://skplugins.tiddlyspot.com/#FindReplace or 
> maybe Danielo Rodriguez https://danielorodriguez.com/TW5-searchNreplace/
>
>
> Birthe
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/aa52e65e-22e9-4d81-a95b-bc7e06d7771d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] New Plugin: tobibeer/rate ★★★★★

2017-12-21 Thread Diego Mesa
Hey Tob,

Ive actually used this plugin in a similar way like this:

I have a Papers of Interest tiddler with the following content:

!! Health 
<$list filter="[tag[PoI]tag[EHR]!nsort[touched]]" template=
"$:/.dm/templates/list-summary-prioritize"/>


!! General
<$list type="dl" filter="[tag[PoI]!tag[EHR]!nsort[touched]]" template=
"$:/.dm/templates/list-summary-prioritize"/>


with the list-summary prioritize template:


<$link><$list filter="[all[current]rating[5]]">
 <$view field=title/>
<$list filter="[all[current]has[summary]]">{{!!summary}}

This creates a formatted list of tiddlers tagged PoI sorted by a timestamp 
I call touched. The template adds an additional red star infront of the 
title if the rating of the tiddler is a 5.

I have tried to copy as much from Tobias as I can! 

Best,
Diego


On Thursday, December 21, 2017 at 9:00:04 PM UTC-6, tobaisch wrote:
>
> Hello Tobias,
> how can sort by ratings or filter.
> For example; only the tiddlers with 5 stars but in a list and sort by name?
> THX
> Tob
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5304a078-e540-47a8-b386-bec85ce1d3a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Prototype: "range" operator for numeric "for loops" in filters

2017-12-21 Thread TonyM
Evan,

That works well, for visitors that see this out of context here is an 
example which also demonstrates the use of discontigouse (not continuous) 
ranges.


<$list filter="[range[1,6]][range[12,12]]" variable=inc>
<>



(= [range[1,6]] =) (= [range[12,12]] =)


See more on formulas here 


Regards
Tony

On Friday, 22 December 2017 06:40:25 UTC+11, Evan Balster wrote:
>
> Hello, all —
>
> I've written a nifty filter operator for generating numeric ranges in the 
> style of "for" loops.  It's an instant power combo with any math 
> functionality.  I'll be including it in the next release of my formulas 
> plugin , but I wanted 
> to make a post here in case anybody searches for something like this 
> specifically.
>
> The module is attached (drag the JSON file to your wiki to import it).
>
>
> Docs:
>
> The range operator allows a range of numbers to be enumerated, similar to 
> a for loop in other programming languages. It's useful in combination 
> with Formulas .
>
>
> Purpose produce a range of numbers
> Input ignored.
> Parameter 1-3 numbers separated by , or ;.
> Output A range of numbers starting with
> ! Output As *Output*, but with order reversed.
>
>
> The parameter has three forms:
>
>- 
>- ,
>- ,,
>
> Each part must be a number, and works as follows:
>
>- : start counting at this number. Defaults to 0.
>- : stop counting at this number.
>   - It will be included unless it falls between two steps.
>- : count up (or down) by this amount.
>   - It may be negated so it counts in the right direction.
>   - It cannot be zero.
>
> The number of decimal points in the output is fixed, and based on the 
> parameter with the *most* decimal points.
>
> To prevent the browser from freezing, range is currently limited to 
> 10,000 values.
>
>
> Examples:
>
> [range[7]]
>
>
> 0 1 2 3 4 5 6 7
>
>
> [range[1, 10]]
>
>
> 1 2 3 4 5 6 7 8 9 10
>
>
> [range[17,13]]
>
>
> 17 16 15 14 13
>
>
> [range[1.001, 5, 1]]
>
>
> 1.001 2.001 3.001 4.001
>
>
> [range[.5,1.4,.004]]
>
>
> 0.500 0.504 0.508 0.512 0.516 0.520 0.524 0.528 (...)
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/af5c2827-43dc-4377-bf67-23581e2843a9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] New Plugin: tobibeer/rate ★★★★★

2017-12-21 Thread tobaisch
Hello Tobias,
how can sort by ratings or filter.
For example; only the tiddlers with 5 stars but in a list and sort by name?
THX
Tob

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/15bb6910-f70b-428b-b5e8-d777454d44a6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Trying to include search and replace in a tiddler - how to use global and ignore?

2017-12-21 Thread Riz
Pardon my low javascript-fu. I was scraping up a editor toolbar button to 
search and replace strings in that particular tiddler. I got till

/*\
title: $:/core/modules/editor/operations/text/findandreplace.js
type: application/javascript
module-type: texteditoroperation

Text editor operation to find and replace from the entire text

\*/
(function(){

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

exports["replace-search"] = function(event,operation) {
operation.cutStart = 0;
operation.cutEnd = operation.text.length;
operation.replacement = 
operation.text.replace(event.paramObject.search, event.paramObject.replace);
};

})();



which lets me achieve it, but only one instance at a time. My attempts to use 
global and ignore-case at event.paramObject.search as well as the actual search 
string has so far ended up in failure.

I guess it will be a 10 second task for anyone with slightly more than beginner 
js knowledge. 


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a9f9db48-ea2f-4713-9b5c-70481eba3329%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2017-12-21 Thread Evan Balster
Hey, Diego —

The reason for ([]=[]) being false is pretty dumb and has to do with me 
leaving more up to JavaScript than I should (because internal 
implementation is pretty rough right now).

To summarize, [] is not interpreted as an empty list but a filter, and its 
result is *every tiddler in the wiki*.  Javascript equality comparison 
between these two large arrays returns false because they are separate 
objects (even though they have the same content).  It's a hot mess!

The EXACT function converts the arguments to strings before comparing them, 
and exact([], []) returns true.  But remember those aren't empty arrays!

On Thursday, 21 December 2017 19:36:51 UTC-6, Diego Mesa wrote:
>
> Ah I see - sorry I remember you mentioning that previously I should have 
> gone back to look that up. 
>
> I'm still not sure why IF([]=[]) comes out false though. 
>
> Thanks again for all your hard work
>
> Diego
>
> On Thursday, December 21, 2017 at 7:33:46 PM UTC-6, Evan Balster wrote:
>>
>> Hey, Diego —
>>
>> Currently boolean expressions use JavaScript's concept of "truthyness" 
>>  which is 
>> rather messy and not necessarily ideal.
>>
>> Pending more sensible behavior in formulas, I recommend this:
>>
>> (=  IF(count(*[**some-filter-that-grabs-the-fields]*) > 0, "", "")  
>> =)
>>
>> That  won't actually wikify to a horizontal rule in the current 
>> plugin, but I expect to fix that in a new update tonight.
>>
>>
>> On Thursday, 21 December 2017 18:27:08 UTC-6, Diego Mesa wrote:
>>>
>>> Hey Evan,
>>>
>>> Is this expected:
>>>
>>>
>>>- IF([],'yes','no')
>>>- yes
>>>- IF([]=[],'yes','no')
>>>- no
>>>- IF([]='[]','yes','no')
>>>- no
>>>
>>> My motivation for testing this: I have several fields that if present, 
>>> trigger a footer to be displayed preceded by  tag. Recently, Ive had 
>>> tiddlers with two or more of these fields, leaving me with more than one 
>>>  which is undesirable. I was thinking of using this plugin to solve 
>>> that. 
>>>
>>> On Thursday, December 21, 2017 at 2:38:47 PM UTC-6, Evan Balster wrote:

 Hey, Diego —

 Yes, that kind of logic is a ways off yet and would likely need to be 
 done with a for-loop like construct.

 For now, you'll need to construct it using the $list widget, like this;

 Recently modified:
 <$list filter="[all[tiddlers]]">
 (= if(days(tw_date({{!!modified}}), now())<2, {{!!title}}&", ", "") =)
 

 The fact that the output isn't wikified is pretty disadvantageous here, 
 as it means you add ...

 On Thursday, 21 December 2017 14:24:23 UTC-6, Diego Mesa wrote:
>
> Thanks for this Evan! 
>
> I was thinking of being able to use the if statement like this (in 
> semi-pseduo code)
>
> IF( gt([all[tiddlers]get[modified]], add_days(date(now()),-5)), <<
> title>> + "has been recently modified")
>
> And that would display all tiddlers who were recently modified. But as 
> I understand it, these arent really built to operate on arrays just yet - 
> but might be in the future.
>
> Thanks again,
> Diego
>
> On Thursday, December 21, 2017 at 2:04:37 PM UTC-6, Evan Balster wrote:
>>
>> Hey, Diego —
>>
>> Using conditions to:
>>
>>- list / transclude
>>   - Both of these are a bit difficult because formula results 
>>   aren't wikified right now.
>>   - You could have a formula result in a filter or tiddler and 
>>   list or transclude that
>>  - <$list filter=<>  [tag[SomeTag]], [[mycondition is false]]">> > {{!!title}}... 
>> 
>>   - use a macro
>>   - Zero-argument macros can be used directly in formulas
>>   - It's tougher for macros with arguments, until I add support 
>>   for those
>>- show some text
>>   - (= if (insert condition here, "text to show when condition 
>>   is true", "") =)
>>- set a variable
>>   - Set a variable based on a condition
>>  - <$formula-vars varToSet="if (insert condition here, 
>> "true-value", 
>>  "false-value")"> <>... 
>>   - set a field
>>   - Changing fields will usually involve a $button widget and an 
>>   $action-setfield widget inside that whose arguments include 
>> formulas.  I 
>>   use this myself for auto-calculation of tiddler fields and might 
>> make an 
>>   example of this later.
>>
>>
>> Here are a few examples doing some fancy calculations with the 
>> current plugin:
>>
>>- Math & Tabulation
>>   - 
>>   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Tabulator
>>   - Interactive SVG Visualizations
>>- 
>>   
>> 

[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2017-12-21 Thread Diego Mesa
Ah I see - sorry I remember you mentioning that previously I should have 
gone back to look that up. 

I'm still not sure why IF([]=[]) comes out false though. 

Thanks again for all your hard work

Diego

On Thursday, December 21, 2017 at 7:33:46 PM UTC-6, Evan Balster wrote:
>
> Hey, Diego —
>
> Currently boolean expressions use JavaScript's concept of "truthyness" 
>  which is 
> rather messy and not necessarily ideal.
>
> Pending more sensible behavior in formulas, I recommend this:
>
> (=  IF(count(*[**some-filter-that-grabs-the-fields]*) > 0, "", "")  
> =)
>
> That  won't actually wikify to a horizontal rule in the current 
> plugin, but I expect to fix that in a new update tonight.
>
>
> On Thursday, 21 December 2017 18:27:08 UTC-6, Diego Mesa wrote:
>>
>> Hey Evan,
>>
>> Is this expected:
>>
>>
>>- IF([],'yes','no')
>>- yes
>>- IF([]=[],'yes','no')
>>- no
>>- IF([]='[]','yes','no')
>>- no
>>
>> My motivation for testing this: I have several fields that if present, 
>> trigger a footer to be displayed preceded by  tag. Recently, Ive had 
>> tiddlers with two or more of these fields, leaving me with more than one 
>>  which is undesirable. I was thinking of using this plugin to solve 
>> that. 
>>
>> On Thursday, December 21, 2017 at 2:38:47 PM UTC-6, Evan Balster wrote:
>>>
>>> Hey, Diego —
>>>
>>> Yes, that kind of logic is a ways off yet and would likely need to be 
>>> done with a for-loop like construct.
>>>
>>> For now, you'll need to construct it using the $list widget, like this;
>>>
>>> Recently modified:
>>> <$list filter="[all[tiddlers]]">
>>> (= if(days(tw_date({{!!modified}}), now())<2, {{!!title}}&", ", "") =)
>>> 
>>>
>>> The fact that the output isn't wikified is pretty disadvantageous here, 
>>> as it means you add ...
>>>
>>> On Thursday, 21 December 2017 14:24:23 UTC-6, Diego Mesa wrote:

 Thanks for this Evan! 

 I was thinking of being able to use the if statement like this (in 
 semi-pseduo code)

 IF( gt([all[tiddlers]get[modified]], add_days(date(now()),-5)), <>>> >> + "has been recently modified")

 And that would display all tiddlers who were recently modified. But as 
 I understand it, these arent really built to operate on arrays just yet - 
 but might be in the future.

 Thanks again,
 Diego

 On Thursday, December 21, 2017 at 2:04:37 PM UTC-6, Evan Balster wrote:
>
> Hey, Diego —
>
> Using conditions to:
>
>- list / transclude
>   - Both of these are a bit difficult because formula results 
>   aren't wikified right now.
>   - You could have a formula result in a filter or tiddler and 
>   list or transclude that
>  - <$list filter=<  [tag[SomeTag]], [[mycondition is false]]">> > {{!!title}}... 
> 
>   - use a macro
>   - Zero-argument macros can be used directly in formulas
>   - It's tougher for macros with arguments, until I add support 
>   for those
>- show some text
>   - (= if (insert condition here, "text to show when condition is 
>   true", "") =)
>- set a variable
>   - Set a variable based on a condition
>  - <$formula-vars varToSet="if (insert condition here, 
> "true-value", 
>  "false-value")"> <>... 
>   - set a field
>   - Changing fields will usually involve a $button widget and an 
>   $action-setfield widget inside that whose arguments include 
> formulas.  I 
>   use this myself for auto-calculation of tiddler fields and might 
> make an 
>   example of this later.
>
>
> Here are a few examples doing some fancy calculations with the current 
> plugin:
>
>- Math & Tabulation
>   - 
>   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Tabulator
>   - Interactive SVG Visualizations
>- 
>   
> http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Real%20Projective%20Line
>   - 
>   
> http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Harmonic%20Lattice
>   - 
>   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Starburst
>
>
> On Thursday, 21 December 2017 13:46:57 UTC-6, Diego Mesa wrote:
>>
>> Hey Evan,
>>
>> Im more and more impressed with this plugin, the more I use it. If 
>> anyone has some time and has already come up with cool examples, can you 
>> share? Also, Im interested in answering each of Tony's points from his 
>> earlier question:
>>
>> Evan,
>>> Please forgive my Ignorance; What can a and b be equal to in 
>>> Formulas' logical functions, like IF and IFS?
>>> I am thinking if something evaluates to true how do I use this to
>>>
>>>- 

[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2017-12-21 Thread Evan Balster
Hey, Diego —

Currently boolean expressions use JavaScript's concept of "truthyness" 
 which is rather 
messy and not necessarily ideal.

Pending more sensible behavior in formulas, I recommend this:

(=  IF(count(*[**some-filter-that-grabs-the-fields]*) > 0, "", "")  =)

That  won't actually wikify to a horizontal rule in the current 
plugin, but I expect to fix that in a new update tonight.


On Thursday, 21 December 2017 18:27:08 UTC-6, Diego Mesa wrote:
>
> Hey Evan,
>
> Is this expected:
>
>
>- IF([],'yes','no')
>- yes
>- IF([]=[],'yes','no')
>- no
>- IF([]='[]','yes','no')
>- no
>
> My motivation for testing this: I have several fields that if present, 
> trigger a footer to be displayed preceded by  tag. Recently, Ive had 
> tiddlers with two or more of these fields, leaving me with more than one 
>  which is undesirable. I was thinking of using this plugin to solve 
> that. 
>
> On Thursday, December 21, 2017 at 2:38:47 PM UTC-6, Evan Balster wrote:
>>
>> Hey, Diego —
>>
>> Yes, that kind of logic is a ways off yet and would likely need to be 
>> done with a for-loop like construct.
>>
>> For now, you'll need to construct it using the $list widget, like this;
>>
>> Recently modified:
>> <$list filter="[all[tiddlers]]">
>> (= if(days(tw_date({{!!modified}}), now())<2, {{!!title}}&", ", "") =)
>> 
>>
>> The fact that the output isn't wikified is pretty disadvantageous here, 
>> as it means you add ...
>>
>> On Thursday, 21 December 2017 14:24:23 UTC-6, Diego Mesa wrote:
>>>
>>> Thanks for this Evan! 
>>>
>>> I was thinking of being able to use the if statement like this (in 
>>> semi-pseduo code)
>>>
>>> IF( gt([all[tiddlers]get[modified]], add_days(date(now()),-5)), <>> >> + "has been recently modified")
>>>
>>> And that would display all tiddlers who were recently modified. But as I 
>>> understand it, these arent really built to operate on arrays just yet - but 
>>> might be in the future.
>>>
>>> Thanks again,
>>> Diego
>>>
>>> On Thursday, December 21, 2017 at 2:04:37 PM UTC-6, Evan Balster wrote:

 Hey, Diego —

 Using conditions to:

- list / transclude
   - Both of these are a bit difficult because formula results 
   aren't wikified right now.
   - You could have a formula result in a filter or tiddler and 
   list or transclude that
  - <$list filter=<>>>  [tag[SomeTag]], [[mycondition is false]]">> > {{!!title}}... 
 
   - use a macro
   - Zero-argument macros can be used directly in formulas
   - It's tougher for macros with arguments, until I add support 
   for those
- show some text
   - (= if (insert condition here, "text to show when condition is 
   true", "") =)
- set a variable
   - Set a variable based on a condition
  - <$formula-vars varToSet="if (insert condition here, 
 "true-value", 
  "false-value")"> <>... 
   - set a field
   - Changing fields will usually involve a $button widget and an 
   $action-setfield widget inside that whose arguments include 
 formulas.  I 
   use this myself for auto-calculation of tiddler fields and might 
 make an 
   example of this later.


 Here are a few examples doing some fancy calculations with the current 
 plugin:

- Math & Tabulation
   - 
   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Tabulator
   - Interactive SVG Visualizations
- 
   
 http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Real%20Projective%20Line
   - 
   
 http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Harmonic%20Lattice
   - 
   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Starburst


 On Thursday, 21 December 2017 13:46:57 UTC-6, Diego Mesa wrote:
>
> Hey Evan,
>
> Im more and more impressed with this plugin, the more I use it. If 
> anyone has some time and has already come up with cool examples, can you 
> share? Also, Im interested in answering each of Tony's points from his 
> earlier question:
>
> Evan,
>> Please forgive my Ignorance; What can a and b be equal to in 
>> Formulas' logical functions, like IF and IFS?
>> I am thinking if something evaluates to true how do I use this to
>>
>>- list
>>
>>
>>- transclude
>>
>>
>>- Use macro
>>
>>
>>- Show some text etc...
>>
>>
>>- Set a variable/field
>>
>>
>> I imagine there is a way to write a list filter if a formula it true 
>> to show when true (or False) etc...
>> I expect knowing this may help the less sophisticated users (still me 
>> at this point) make use of 

Re: [tw] Re: "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread PMario
On Friday, December 22, 2017 at 1:00:06 AM UTC+1, Jeremy Ruston wrote:

> I'm not a huge fan of the staging area; I remember Beaker beforehand, and 
> I preferred the simplicity.
>

For me "staging area" is just a different name for "any directory on your 
harddisk", which is simple.
 

> The scheme I'm hoping we can use instead is to have a separate, private 
> drafts site and a published public site. The "publish" operation would be 
> performed by the author opening the public site and "pulling” the changes 
> from their private site.
>

For me private site is a different name for "dat store, without the 
possibility to see your stuff as a real file" ... 

If I would want to hide my content somewhere on the harddisk, I could use 
the browser internal storage mechanisms. Browser storage can be synced 
across devices. The only problem is, we don't trust it, because the stuff 
is binary encoded and can't be easily accessed with a file explorer and 
text editors. ... (and you can't trust it by design, because of automatic 
data removal mechanisms.)

At the moment I'm more interested in the possibility to use "my browser of 
choice" with DAT. DAT-Desktop can be compiled 
 on windows since 
early December. The desktop program and the CLI allow you to transparently 
share folders. Similar to dropbox. 

I may have a closer look at the beaker API again, after 0.8 is out. ... 

-m

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9b720bdc-5f7c-44b1-8155-c37bd1886177%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2017-12-21 Thread Diego Mesa
Hey Evan,

Is this expected:


   - IF([],'yes','no')
   - yes
   - IF([]=[],'yes','no')
   - no
   - IF([]='[]','yes','no')
   - no
   
My motivation for testing this: I have several fields that if present, 
trigger a footer to be displayed preceded by  tag. Recently, Ive had 
tiddlers with two or more of these fields, leaving me with more than one 
 which is undesirable. I was thinking of using this plugin to solve 
that. 

On Thursday, December 21, 2017 at 2:38:47 PM UTC-6, Evan Balster wrote:
>
> Hey, Diego —
>
> Yes, that kind of logic is a ways off yet and would likely need to be done 
> with a for-loop like construct.
>
> For now, you'll need to construct it using the $list widget, like this;
>
> Recently modified:
> <$list filter="[all[tiddlers]]">
> (= if(days(tw_date({{!!modified}}), now())<2, {{!!title}}&", ", "") =)
> 
>
> The fact that the output isn't wikified is pretty disadvantageous here, as 
> it means you add ...
>
> On Thursday, 21 December 2017 14:24:23 UTC-6, Diego Mesa wrote:
>>
>> Thanks for this Evan! 
>>
>> I was thinking of being able to use the if statement like this (in 
>> semi-pseduo code)
>>
>> IF( gt([all[tiddlers]get[modified]], add_days(date(now()),-5)), <> 
>> + "has been recently modified")
>>
>> And that would display all tiddlers who were recently modified. But as I 
>> understand it, these arent really built to operate on arrays just yet - but 
>> might be in the future.
>>
>> Thanks again,
>> Diego
>>
>> On Thursday, December 21, 2017 at 2:04:37 PM UTC-6, Evan Balster wrote:
>>>
>>> Hey, Diego —
>>>
>>> Using conditions to:
>>>
>>>- list / transclude
>>>   - Both of these are a bit difficult because formula results 
>>>   aren't wikified right now.
>>>   - You could have a formula result in a filter or tiddler and list 
>>>   or transclude that
>>>  - <$list filter=<>>  [tag[SomeTag]], [[mycondition is false]]">> > {{!!title}}... 
>>> 
>>>   - use a macro
>>>   - Zero-argument macros can be used directly in formulas
>>>   - It's tougher for macros with arguments, until I add support for 
>>>   those
>>>- show some text
>>>   - (= if (insert condition here, "text to show when condition is 
>>>   true", "") =)
>>>- set a variable
>>>   - Set a variable based on a condition
>>>  - <$formula-vars varToSet="if (insert condition here, 
>>> "true-value", 
>>>  "false-value")"> <>... 
>>>   - set a field
>>>   - Changing fields will usually involve a $button widget and an 
>>>   $action-setfield widget inside that whose arguments include formulas. 
>>>  I 
>>>   use this myself for auto-calculation of tiddler fields and might make 
>>> an 
>>>   example of this later.
>>>
>>>
>>> Here are a few examples doing some fancy calculations with the current 
>>> plugin:
>>>
>>>- Math & Tabulation
>>>   - 
>>>   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Tabulator
>>>   - Interactive SVG Visualizations
>>>- 
>>>   
>>> http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Real%20Projective%20Line
>>>   - 
>>>   
>>> http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Harmonic%20Lattice
>>>   - 
>>>   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Starburst
>>>
>>>
>>> On Thursday, 21 December 2017 13:46:57 UTC-6, Diego Mesa wrote:

 Hey Evan,

 Im more and more impressed with this plugin, the more I use it. If 
 anyone has some time and has already come up with cool examples, can you 
 share? Also, Im interested in answering each of Tony's points from his 
 earlier question:

 Evan,
> Please forgive my Ignorance; What can a and b be equal to in Formulas' 
> logical functions, like IF and IFS?
> I am thinking if something evaluates to true how do I use this to
>
>- list
>
>
>- transclude
>
>
>- Use macro
>
>
>- Show some text etc...
>
>
>- Set a variable/field
>
>
> I imagine there is a way to write a list filter if a formula it true 
> to show when true (or False) etc...
> I expect knowing this may help the less sophisticated users (still me 
> at this point) make use of formula.
> Thanks in Advance
> Tony



 with specific examples. If anyone has any that would be great! 

 Best,
 Diego



 On Wednesday, December 20, 2017 at 9:40:21 PM UTC-6, Evan Balster wrote:
>
> Hey, Tony —
>
> I'm aware of the ordinary "de-duplication" behavior.  In this case, it 
> was happening even with filter operators that would normally allow 
> duplication, like "get".  This was because of a poorly-implemented 
> optimization I'd written to reduce compilation overhead during filter 
> processing.  Behavior is now consistent with typical filter operations.
>
> The 

Re: [tw] Re: "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread Jeremy Ruston
Hi Mario

> In my opinion, single file TWs, with autosave switched off, are still a good 
> fit, for beaker. ... but the project, that I had in mind, IMO doesn't make 
> much sense without a staging area. I want to brainstorm -> refactor -> 
> iterate locally and when the stuff is good enough to be published, I want to 
> "commit" it. 

I'm not a huge fan of the staging area; I remember Beaker beforehand, and I 
preferred the simplicity.

The scheme I'm hoping we can use instead is to have a separate, private drafts 
site and a published public site. The "publish" operation would be performed by 
the author opening the public site and "pulling” the changes from their private 
site.

Best wishes

Jeremy.

> 
> have fun!
> mario
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/73a10ae1-0110-4187-b8ab-46cdbde65c70%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/E6621DF5-F1EA-4C53-84DD-9C4AF7704C6E%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread PMario
On Thursday, December 21, 2017 at 7:59:20 PM UTC+1, Birthe C wrote:
>
> The idea i good but for how long? 
> https://groups.google.com/d/msg/tiddlywiki/8Iso0WoFVMY/62aSH3HNCwAJ
>

If you click "save" with the beaker browser 0.7.x you will save 2 clones. 

 - 1 tw.html ends up in the dat://, which is stored as a binary file 
somewhere on your HD
 - 1 tw.html file, is saved to a so-called "staging-area", which is a 
directory you choose. 

Similar to TiddlyFox or the browser downloads directory, but it can be *any* 
directory. ... *The staging area will be removed with Version 0.8.x* ... 
That's, what I wanted to make clear, with my post. 

So if you want to explore the stuff, you are fine. ... Just _don't_ rely on 
the staging area. ... 

In my opinion, single file TWs, with autosave switched off, are still a 
good fit, for beaker. ... but the project, that I had in mind 
, IMO doesn't make 
much sense without a staging area. I want to brainstorm -> refactor -> 
iterate locally and when the stuff is good enough to be published, I want 
to "commit" it. 

have fun!
mario

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/73a10ae1-0110-4187-b8ab-46cdbde65c70%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Use an image as a site title but keep the text for the browser tab

2017-12-21 Thread TonyM
bar to,

I am now on my desktop.

I suggest create a tiddler displaying the logo using the code as suggested 
by others then tag that tiddler $:/tags/TopRightBar

The Image will appear in the top right and you can customise your title and 
subtitle how ever you want. Including blank or style smaller etc...

I use the Browser tab title name text Set in shadow tiddler 
$:/core/wiki/title 

To set a shorter and meaningful name for the browser tab, and delete the 
existing 
$:/favicon.ico and rename my own image to $:/favicon.ico

Regards Tony




On Friday, 22 December 2017 00:28:47 UTC+11, bar to wrote:
>
> See attached image :) 
> So can i use a normal text site title instead and put the image at the 
> exakt same place in another way?
>
>
>
>
> Am Donnerstag, 21. Dezember 2017 14:08:35 UTC+1 schrieb TonyM:
>>
>> Sorry. Premature posting prior.
>>
>> Where does this "site image" appear and what purpose does it serve?.
>>
>> I expect you can remove the image from where you put it and display it 
>> another way to the same end.
>>
>> 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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1918b31c-4d3d-4515-8da0-75c887883cc1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [AddOn] file-backups - "TiddlyWiki File Save and Backup" is an official FireFox AddOn

2017-12-21 Thread PMario
On Thursday, December 21, 2017 at 5:32:25 PM UTC+1, Ton Gerner wrote:
>
>
> As a sidenote: Today the file-backups add-on was automatically updated to 
> 0.3.4. The same was true for my Firefox dev. ed. which changed from 0.3.1 
> to 0.3.4 (I can't remember installing a 0.3.1 version)
>


There are 2 ways to publish AddOns. ... 

 - signed by mozilla, but "slef published" / hosted
 - signed by mozilla and hosted at mozilla store. 


up to version 0.3.1 ... I did publish them at github, because I wanted to 
avoid the "review-delay" ... With TiddlyFox Jeremy had to wait days. ... 

I didn't expect, that a "slef published" version will be auto-updated, 
after pushing it to the store. I thought, it had to be installed manually. 
... It seems I was wrong. 

... So I need to find out, how I can go with a "stable", and a "beta" 
channel. ... Will need to study the docs a bit closer :)

have fun!
mario



-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/302246ef-f56d-4cce-8bed-114360102f07%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [AddOn] file-backups - "TiddlyWiki File Save and Backup" is an official FireFox AddOn

2017-12-21 Thread @TiddlyTweeter
PMario wrote:
>
> ... I didn't expect it, to be released, by mozilla, so fast either. 
>  
>

Right. But that's actually a major upside of the new architecture. Part of 
the early days of it will be keeping up. Previously It was about endless 
waiting.That's no longer needed as the architecture does 99% of the work 
already.

Its brilliant to see your work on this.

FYI. I'm still on ESR 52 till March to let things settle down a bit.

Just saying
Josiah

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b572021e-6d02-4eb1-a00c-af052c98c5a0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: I can't deactivate Tablinks (Firefox version)

2017-12-21 Thread pedruchini
Mat,
If you are busy these days, forget about this. This is not urgent. I can 
use the Chrome version with Chrome and BJ's SaveTiddlers. Thank you for 
this wonderful plugin.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/15194089-7ab3-4626-9e5b-5c9b9f2dc8a3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread stefct4


On Thursday, December 21, 2017 at 10:53:16 PM UTC+1, ste...@gmail.com wrote:
>
>
>> You can either choose "Download as .zip" in the dropdown menu in the URL 
> bar
>

However, this option only seems to work properly if you approve all 
unpublished changes to your TiddlyWiki first (in the library). Otherwise 
you'll end up downloading an outdated version of your wiki.

Cheers,

Stef 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/75da514d-01f2-4e9e-8eaa-de7d3a2f694e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Positive Assertions In One Sentence ... (aka Saying Succinctly What TW Is About ...)

2017-12-21 Thread BurningTreeC
TiddlyWiki is the answer to the question "is there a program that can do A) 
but that also lets you do B) and maybe C) and A) and B) at the same time?"

(although we know the real answer is 42)

Am Freitag, 7. April 2017 15:42:09 UTC+2 schrieb @TiddlyTweeter:
>
> One of the vital things about #TiddlyWiki 
>  is it champions the 
> importance of the #AUTHOR.
>
> And yours ... ?
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8963aa6d-cedc-4273-bceb-081566452a6a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread 'Mark S.' via TiddlyWiki
Setting up TiddlyWiki within it is a matter of pressing the "New Site” 
button and then dragging and dropping your TiddlyWiki index.html; after 
that, saving is just like TiddlyFox.

How do you get it out for export? I assume it's something simple? Is there 
a way to wipe the memory clean?

Still doesn't address saving where the options are the worse -- tablets and 
phones.

Thanks!
Mark

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d44c4082-d7a1-48d6-bf45-1a578351a098%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread stefct4

On Thursday, December 21, 2017 at 10:16:54 PM UTC+1, Jeremy Ruston wrote:
>
>
> I’ve set up a snapshot of 5.1.15 at 
> dat://tiddlywiki-jermolene.hashbase.io/ and 
> https://tiddlywiki-jermolene.hashbase.io
>

Great! Works fine! 

>
> I’ll try to extend the TiddlyWiki deployment process to keep it up to 
> date, and perhaps prepare an edition specially for Beaker.
>
>
I think having an "empty" TiddlyWiki (or a "Beaker edition" with only a few 
default tiddlers) available for forking would be great, especially for 
Beaker users who aren't familiar with TiddlyWiki yet. 

This was one of the audiences I had in mind when making my suggestion 
above. I think many people who are currently exploring Beaker like the idea 
of serverlessness and decentralization, but struggle to find a good "use 
case" for it. Making TiddlyWiki as accessible as possible in Beaker may win 
them over and even generate new users for TiddlyWiki. 

Cheers,

Stef

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/691e3f39-bba3-44c4-b4c5-e3f6b7287b51%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] "Muuri-Touch" plugin

2017-12-21 Thread BurningTreeC
Ciao Joshua,

it already mixes different widths ... i have a touch laptop, on such 
devices you can try it very well... zooming (with your fingers) on a 
tiddler makes him wider/smaller, from 1/5 story-width over 1/4, 1/2, 3/4 to 
full width.
alternatively, at the moment, you can set a field named "span" on a single 
tiddler. supported values are [2 - 12] where 12 is full width.
I'm gonna take a look at Thomas' work, saw it before but didn't have time 
to look closer. Thanks for the hint!

Best wishes,
Simon

Am Donnerstag, 21. Dezember 2017 18:04:29 UTC+1 schrieb @TiddlyTweeter:
>
> Ciao BurningTreeC
>
> Seriously good!!! Clean design. Nice the base model echoes the visuality 
> of the original vanilla TW look.
>
> I wonder if it could also support tiddlers that are more than one column 
> wide mixed in with tiddlers a column wide?
>
> On better mobile look: some of what Thomas has just launched 
>  
> may be relevant. His approach handles menus very well.
>
> Best wishes
> Josiah
>
>
>
> On Thursday, 21 December 2017 07:04:51 UTC+1, BurningTreeC wrote:
>>
>> Hello there,
>>
>> currently I'm working on a plugin that creates a drag 
>> storyview
>>
>> it's based on the muuri widget by 
>> https://ustuehler.github.io/tw5-material/ which is based on 
>> https://github.com/haltu/muuri
>>
>> it also uses https://github.com/hammerjs/hammer.js and 
>> https://github.com/Popmotion/popmotion for touch-actions/drag-actions 
>> and pinch-to-zoom
>>
>>
>>
>> the code repository is on github: 
>> https://github.com/BurningTreeC/TW5-muuri-touch
>>
>>
>> It's a *work in progress! * 
>>
>> *And ... I'm very open to contributions, so don't hesitate to change, 
>> add, comment!*
>>
>> A PREVIEW of the actual state is found on http://muritest.tiddlyspot.com
>>
>>
>> what's missing?
>>
>>
>>- a stylesheet for mobile view
>>- buttons to set tiddler-widths by klicking (currently only by 
>>pinch-zoom) - the button would only have to apply a class ( span-2 | 
>> span-3 
>>| span-4 | span-6 | span-9 | span-12 ) to the tiddler-frame
>>- a packed plugin
>>- a button to keep tiddlers on its position
>>- editing a tiddler should take place on tiddlers position (move 
>>tiddler-draft to tiddler-grid-index inside muuri-widget / muuri-storyview)
>>- fix "setData" error when dragging inside editor
>>   - error only occurs with codemirror editor
>>   - default editor prevents dragging etc inside textareas
>>   - question: how is that done?
>>- ... more to come
>>
>>
>> cheers, BurningTreeC
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/eb9bba8c-21f1-4d3c-93d4-91f03b53d495%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread Jeremy Ruston
Hi Stef

> On 21 Dec 2017, at 18:16, stef...@gmail.com wrote:
> 
> Would it be possible to provide a "forkeable", empty TiddlyWiki at a "dat://" 
> URL (maybe on hashbase.io )? This file should probably 
> contain a brief tiddler which explains the purpose of TiddlyWiki as well as 
> the forking process and point to http://www.tiddlywiki.com 
>  for further documentation. Maybe this could even 
> be included in the default bookmarks of Beaker?

I’ve set up a snapshot of 5.1.15 at dat://tiddlywiki-jermolene.hashbase.io/ 
 and 
https://tiddlywiki-jermolene.hashbase.io 


I’ll try to extend the TiddlyWiki deployment process to keep it up to date, and 
perhaps prepare an edition specially for Beaker.

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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6BA2791C-E4ED-4779-80C5-535218483D07%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread Birthe C
Hi Joshia,

I would think that it is rather normal to be curious wanting to get the 
most out of tiddlywiki, and since tiddlywiki is used in a browser, that 
makes browsers interesting for a tiddlywiki user.

A normal end user will want to try something if it is easy enough to do it, 
at least I think.
This group and all the help we get here from nice people makes it possible 
to get to know and try more, than at least I would do on my own.

I guess you will not replace twitter with fritter anytime soon?

Birthe


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6f04c9cc-c2cd-433e-a3c3-e1b5b9ef69ac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread @TiddlyTweeter
Ciao Jeremy & Berthe

I find it hard to see how Beaker Browser has scope as anything relevant for 
a "normal end user".

Maybe we could discuss what "normal" means in TW.Land a bit more :-)

I'm semi-serious. It looks a bit of a stretch IMO.

Best wishes
Josiah


Birthe C wrote:
>
> ... That was the part that got me into thinking, it would make it 
> difficult to use for normal end users.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/59063108-451d-47df-96b1-647cddf4f40d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2017-12-21 Thread Evan Balster
Hey, Diego —

Yes, that kind of logic is a ways off yet and would likely need to be done 
with a for-loop like construct.

For now, you'll need to construct it using the $list widget, like this;

Recently modified:
<$list filter="[all[tiddlers]]">
(= if(days(tw_date({{!!modified}}), now())<2, {{!!title}}&", ", "") =)


The fact that the output isn't wikified is pretty disadvantageous here, as 
it means you add ...

On Thursday, 21 December 2017 14:24:23 UTC-6, Diego Mesa wrote:
>
> Thanks for this Evan! 
>
> I was thinking of being able to use the if statement like this (in 
> semi-pseduo code)
>
> IF( gt([all[tiddlers]get[modified]], add_days(date(now()),-5)), <> 
> + "has been recently modified")
>
> And that would display all tiddlers who were recently modified. But as I 
> understand it, these arent really built to operate on arrays just yet - but 
> might be in the future.
>
> Thanks again,
> Diego
>
> On Thursday, December 21, 2017 at 2:04:37 PM UTC-6, Evan Balster wrote:
>>
>> Hey, Diego —
>>
>> Using conditions to:
>>
>>- list / transclude
>>   - Both of these are a bit difficult because formula results aren't 
>>   wikified right now.
>>   - You could have a formula result in a filter or tiddler and list 
>>   or transclude that
>>  - <$list filter=<>  [tag[SomeTag]], [[mycondition is false]]">> > {{!!title}}... 
>> 
>>   - use a macro
>>   - Zero-argument macros can be used directly in formulas
>>   - It's tougher for macros with arguments, until I add support for 
>>   those
>>- show some text
>>   - (= if (insert condition here, "text to show when condition is 
>>   true", "") =)
>>- set a variable
>>   - Set a variable based on a condition
>>  - <$formula-vars varToSet="if (insert condition here, "true-value", 
>>  "false-value")"> <>... 
>>   - set a field
>>   - Changing fields will usually involve a $button widget and an 
>>   $action-setfield widget inside that whose arguments include formulas.  
>> I 
>>   use this myself for auto-calculation of tiddler fields and might make 
>> an 
>>   example of this later.
>>
>>
>> Here are a few examples doing some fancy calculations with the current 
>> plugin:
>>
>>- Math & Tabulation
>>   - 
>>   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Tabulator
>>   - Interactive SVG Visualizations
>>- 
>>   
>> http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Real%20Projective%20Line
>>   - 
>>   
>> http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Harmonic%20Lattice
>>   - 
>>   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Starburst
>>
>>
>> On Thursday, 21 December 2017 13:46:57 UTC-6, Diego Mesa wrote:
>>>
>>> Hey Evan,
>>>
>>> Im more and more impressed with this plugin, the more I use it. If 
>>> anyone has some time and has already come up with cool examples, can you 
>>> share? Also, Im interested in answering each of Tony's points from his 
>>> earlier question:
>>>
>>> Evan,
 Please forgive my Ignorance; What can a and b be equal to in Formulas' 
 logical functions, like IF and IFS?
 I am thinking if something evaluates to true how do I use this to

- list


- transclude


- Use macro


- Show some text etc...


- Set a variable/field


 I imagine there is a way to write a list filter if a formula it true to 
 show when true (or False) etc...
 I expect knowing this may help the less sophisticated users (still me 
 at this point) make use of formula.
 Thanks in Advance
 Tony
>>>
>>>
>>>
>>> with specific examples. If anyone has any that would be great! 
>>>
>>> Best,
>>> Diego
>>>
>>>
>>>
>>> On Wednesday, December 20, 2017 at 9:40:21 PM UTC-6, Evan Balster wrote:

 Hey, Tony —

 I'm aware of the ordinary "de-duplication" behavior.  In this case, it 
 was happening even with filter operators that would normally allow 
 duplication, like "get".  This was because of a poorly-implemented 
 optimization I'd written to reduce compilation overhead during filter 
 processing.  Behavior is now consistent with typical filter operations.

 The unusual behavior of TiddlyWiki's "get" operator is pretty important 
 if you're doing something like summing up a bunch of "quantity" fields 
 where many hold values like 1 or 2.

 On Wednesday, 20 December 2017 21:17:40 UTC-6, TonyM wrote:
>
> Evan,
>
> What you considered a Bug is a feature, because Titles are unique in 
> TiddlyWiki so if you have two of the same name appear such as in when 
> Tagged A, or B Or A and B we want the list of titles to be 
> "de-duplicated", 
> Of course when you use filters from non title sources we do not want this 
> occurring. As you found.
>
> How did you 

[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2017-12-21 Thread Diego Mesa
Thanks for this Evan! 

I was thinking of being able to use the if statement like this (in 
semi-pseduo code)

IF( gt([all[tiddlers]get[modified]], add_days(date(now()),-5)), <> + 
"has 
been recently modified")

And that would display all tiddlers who were recently modified. But as I 
understand it, these arent really built to operate on arrays just yet - but 
might be in the future.

Thanks again,
Diego

On Thursday, December 21, 2017 at 2:04:37 PM UTC-6, Evan Balster wrote:
>
> Hey, Diego —
>
> Using conditions to:
>
>- list / transclude
>   - Both of these are a bit difficult because formula results aren't 
>   wikified right now.
>   - You could have a formula result in a filter or tiddler and list 
>   or transclude that
>  - <$list filter=<  [tag[SomeTag]], [[mycondition is false]]">> > {{!!title}}... 
>   - use a macro
>   - Zero-argument macros can be used directly in formulas
>   - It's tougher for macros with arguments, until I add support for 
>   those
>- show some text
>   - (= if (insert condition here, "text to show when condition is 
>   true", "") =)
>- set a variable
>   - Set a variable based on a condition
>  - <$formula-vars varToSet="if (insert condition here, "true-value", 
>  "false-value")"> <>... 
>   - set a field
>   - Changing fields will usually involve a $button widget and an 
>   $action-setfield widget inside that whose arguments include formulas.  
> I 
>   use this myself for auto-calculation of tiddler fields and might make 
> an 
>   example of this later.
>
>
> Here are a few examples doing some fancy calculations with the current 
> plugin:
>
>- Math & Tabulation
>   - 
>   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Tabulator
>   - Interactive SVG Visualizations
>- 
>   
> http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Real%20Projective%20Line
>   - 
>   
> http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Harmonic%20Lattice
>   - 
>   http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Starburst
>
>
> On Thursday, 21 December 2017 13:46:57 UTC-6, Diego Mesa wrote:
>>
>> Hey Evan,
>>
>> Im more and more impressed with this plugin, the more I use it. If anyone 
>> has some time and has already come up with cool examples, can you share? 
>> Also, Im interested in answering each of Tony's points from his earlier 
>> question:
>>
>> Evan,
>>> Please forgive my Ignorance; What can a and b be equal to in Formulas' 
>>> logical functions, like IF and IFS?
>>> I am thinking if something evaluates to true how do I use this to
>>>
>>>- list
>>>
>>>
>>>- transclude
>>>
>>>
>>>- Use macro
>>>
>>>
>>>- Show some text etc...
>>>
>>>
>>>- Set a variable/field
>>>
>>>
>>> I imagine there is a way to write a list filter if a formula it true to 
>>> show when true (or False) etc...
>>> I expect knowing this may help the less sophisticated users (still me at 
>>> this point) make use of formula.
>>> Thanks in Advance
>>> Tony
>>
>>
>>
>> with specific examples. If anyone has any that would be great! 
>>
>> Best,
>> Diego
>>
>>
>>
>> On Wednesday, December 20, 2017 at 9:40:21 PM UTC-6, Evan Balster wrote:
>>>
>>> Hey, Tony —
>>>
>>> I'm aware of the ordinary "de-duplication" behavior.  In this case, it 
>>> was happening even with filter operators that would normally allow 
>>> duplication, like "get".  This was because of a poorly-implemented 
>>> optimization I'd written to reduce compilation overhead during filter 
>>> processing.  Behavior is now consistent with typical filter operations.
>>>
>>> The unusual behavior of TiddlyWiki's "get" operator is pretty important 
>>> if you're doing something like summing up a bunch of "quantity" fields 
>>> where many hold values like 1 or 2.
>>>
>>> On Wednesday, 20 December 2017 21:17:40 UTC-6, TonyM wrote:

 Evan,

 What you considered a Bug is a feature, because Titles are unique in 
 TiddlyWiki so if you have two of the same name appear such as in when 
 Tagged A, or B Or A and B we want the list of titles to be 
 "de-duplicated", 
 Of course when you use filters from non title sources we do not want this 
 occurring. As you found.

 How did you address this? (details not necessary), I presume its only 
 in formulae and not when you are filtering titles?

 Best wishes
 Tony

 On Thursday, 21 December 2017 14:05:37 UTC+11, Evan Balster wrote:
>
> *Formulas version 0.1.5*:  
> https://evanbalster.com/tiddlywiki/formulas.html
> GitHub & issue tracking:  
> https://github.com/EvanBalster/TiddlyWikiFormula
>
>- Duplicate values in filters are now handled correctly.
>
>
> On Wednesday, 20 December 2017 20:04:57 UTC-6, Evan Balster wrote:
>>
>> *General warning*:  There is a bug in filter processing that 

[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2017-12-21 Thread Evan Balster
Hey, Diego —

Using conditions to:

   - list / transclude
  - Both of these are a bit difficult because formula results aren't 
  wikified right now.
  - You could have a formula result in a filter or tiddler and list or 
  transclude that
 - <$list filter=<> > {{!!title}}... 
  - use a macro
  - Zero-argument macros can be used directly in formulas
  - It's tougher for macros with arguments, until I add support for 
  those
   - show some text
  - (= if (insert condition here, "text to show when condition is 
  true", "") =)
   - set a variable
  - Set a variable based on a condition
 - <$formula-vars varToSet="if (insert condition here, "true-value", 
 "false-value")"> <>... 
  - set a field
  - Changing fields will usually involve a $button widget and an 
  $action-setfield widget inside that whose arguments include formulas.  I 
  use this myself for auto-calculation of tiddler fields and might make an 
  example of this later.
   

Here are a few examples doing some fancy calculations with the current 
plugin:

   - Math & Tabulation
  - http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Tabulator
  - Interactive SVG Visualizations
   - 
  
http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Real%20Projective%20Line
  - 
  
http://evanbalster.com/tiddlywiki/explorables.html#Demo%3A%20Harmonic%20Lattice
  - http://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Starburst
   

On Thursday, 21 December 2017 13:46:57 UTC-6, Diego Mesa wrote:
>
> Hey Evan,
>
> Im more and more impressed with this plugin, the more I use it. If anyone 
> has some time and has already come up with cool examples, can you share? 
> Also, Im interested in answering each of Tony's points from his earlier 
> question:
>
> Evan,
>> Please forgive my Ignorance; What can a and b be equal to in Formulas' 
>> logical functions, like IF and IFS?
>> I am thinking if something evaluates to true how do I use this to
>>
>>- list
>>
>>
>>- transclude
>>
>>
>>- Use macro
>>
>>
>>- Show some text etc...
>>
>>
>>- Set a variable/field
>>
>>
>> I imagine there is a way to write a list filter if a formula it true to 
>> show when true (or False) etc...
>> I expect knowing this may help the less sophisticated users (still me at 
>> this point) make use of formula.
>> Thanks in Advance
>> Tony
>
>
>
> with specific examples. If anyone has any that would be great! 
>
> Best,
> Diego
>
>
>
> On Wednesday, December 20, 2017 at 9:40:21 PM UTC-6, Evan Balster wrote:
>>
>> Hey, Tony —
>>
>> I'm aware of the ordinary "de-duplication" behavior.  In this case, it 
>> was happening even with filter operators that would normally allow 
>> duplication, like "get".  This was because of a poorly-implemented 
>> optimization I'd written to reduce compilation overhead during filter 
>> processing.  Behavior is now consistent with typical filter operations.
>>
>> The unusual behavior of TiddlyWiki's "get" operator is pretty important 
>> if you're doing something like summing up a bunch of "quantity" fields 
>> where many hold values like 1 or 2.
>>
>> On Wednesday, 20 December 2017 21:17:40 UTC-6, TonyM wrote:
>>>
>>> Evan,
>>>
>>> What you considered a Bug is a feature, because Titles are unique in 
>>> TiddlyWiki so if you have two of the same name appear such as in when 
>>> Tagged A, or B Or A and B we want the list of titles to be "de-duplicated", 
>>> Of course when you use filters from non title sources we do not want this 
>>> occurring. As you found.
>>>
>>> How did you address this? (details not necessary), I presume its only in 
>>> formulae and not when you are filtering titles?
>>>
>>> Best wishes
>>> Tony
>>>
>>> On Thursday, 21 December 2017 14:05:37 UTC+11, Evan Balster wrote:

 *Formulas version 0.1.5*:  
 https://evanbalster.com/tiddlywiki/formulas.html
 GitHub & issue tracking:  
 https://github.com/EvanBalster/TiddlyWikiFormula

- Duplicate values in filters are now handled correctly.


 On Wednesday, 20 December 2017 20:04:57 UTC-6, Evan Balster wrote:
>
> *General warning*:  There is a bug in filter processing that prevents 
> filters in formulas from returning duplicate values.  This is likely to 
> cause trouble with formulas like sum([tag[Expense]get[value]]) if two 
> Expenses have the same value.
>
> This bug appears to have existed since the first release.
>
> I've got an incentive to fix this one quickly, so I might be patching 
> this tonight.
>
> On Wednesday, 20 December 2017 19:53:59 UTC-6, Evan Balster wrote:
>>
>> Hey, TonyM —
>>
>> Are you formatting a lot of dates using the year/month/day 
>> functions?  If so, you'll probably have better luck with the text 
>> conversion function T() and setting a dateFormat.  See the documentation 
>> for the 

Re: [tw] Re: "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread Birthe C
Thank you Jeremy,

I really hope so. Pmario wrote they would remove the staging area without 
plans for replacement. That was the part that got me into thinking, it 
would make it difficult to use for normal end users.


Birthe

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9c4029bd-23dd-4029-8ada-18a69723c7c2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Formula: Spreadsheet-like mathematics for TiddlyWiki

2017-12-21 Thread Diego Mesa
Hey Evan,

Im more and more impressed with this plugin, the more I use it. If anyone 
has some time and has already come up with cool examples, can you share? 
Also, Im interested in answering each of Tony's points from his earlier 
question:

Evan,
> Please forgive my Ignorance; What can a and b be equal to in Formulas' 
> logical functions, like IF and IFS?
> I am thinking if something evaluates to true how do I use this to
>
>- list
>
>
>- transclude
>
>
>- Use macro
>
>
>- Show some text etc...
>
>
>- Set a variable/field
>
>
> I imagine there is a way to write a list filter if a formula it true to 
> show when true (or False) etc...
> I expect knowing this may help the less sophisticated users (still me at 
> this point) make use of formula.
> Thanks in Advance
> Tony



with specific examples. If anyone has any that would be great! 

Best,
Diego



On Wednesday, December 20, 2017 at 9:40:21 PM UTC-6, Evan Balster wrote:
>
> Hey, Tony —
>
> I'm aware of the ordinary "de-duplication" behavior.  In this case, it was 
> happening even with filter operators that would normally allow duplication, 
> like "get".  This was because of a poorly-implemented optimization I'd 
> written to reduce compilation overhead during filter processing.  Behavior 
> is now consistent with typical filter operations.
>
> The unusual behavior of TiddlyWiki's "get" operator is pretty important if 
> you're doing something like summing up a bunch of "quantity" fields where 
> many hold values like 1 or 2.
>
> On Wednesday, 20 December 2017 21:17:40 UTC-6, TonyM wrote:
>>
>> Evan,
>>
>> What you considered a Bug is a feature, because Titles are unique in 
>> TiddlyWiki so if you have two of the same name appear such as in when 
>> Tagged A, or B Or A and B we want the list of titles to be "de-duplicated", 
>> Of course when you use filters from non title sources we do not want this 
>> occurring. As you found.
>>
>> How did you address this? (details not necessary), I presume its only in 
>> formulae and not when you are filtering titles?
>>
>> Best wishes
>> Tony
>>
>> On Thursday, 21 December 2017 14:05:37 UTC+11, Evan Balster wrote:
>>>
>>> *Formulas version 0.1.5*:  
>>> https://evanbalster.com/tiddlywiki/formulas.html
>>> GitHub & issue tracking:  
>>> https://github.com/EvanBalster/TiddlyWikiFormula
>>>
>>>- Duplicate values in filters are now handled correctly.
>>>
>>>
>>> On Wednesday, 20 December 2017 20:04:57 UTC-6, Evan Balster wrote:

 *General warning*:  There is a bug in filter processing that prevents 
 filters in formulas from returning duplicate values.  This is likely to 
 cause trouble with formulas like sum([tag[Expense]get[value]]) if two 
 Expenses have the same value.

 This bug appears to have existed since the first release.

 I've got an incentive to fix this one quickly, so I might be patching 
 this tonight.

 On Wednesday, 20 December 2017 19:53:59 UTC-6, Evan Balster wrote:
>
> Hey, TonyM —
>
> Are you formatting a lot of dates using the year/month/day functions?  
> If so, you'll probably have better luck with the text conversion function 
> T() and setting a dateFormat.  See the documentation for the 
> FormulaWidget 
> for more information on date format strings (which use the same rules as 
> in 
> TiddlyWiki's settings).
>
> On Wednesday, 20 December 2017 19:31:53 UTC-6, TonyM wrote:
>>
>> Evan,
>>
>> Once again for you great work. I have started playing with the date 
>> related functions and finding it a little complex using Make a date 
>> from a TiddlyWiki timestamp and return.
>>
>> Is there any way to make this more direct or can you suggest a 
>> pattern to follow if all my dates are TiddlyWiki timestamps?
>>
>> PS I have many dates in one tiddler so it get unwieldy.
>>
>> Thanks in advance
>> Tony
>>
>>
>> On Thursday, 21 December 2017 11:31:49 UTC+11, Evan Balster wrote:
>>>
>>> *Formulas version 0.1.4*:  
>>> https://evanbalster.com/tiddlywiki/formulas.html
>>> GitHub & issue tracking:  
>>> https://github.com/EvanBalster/TiddlyWikiFormula
>>>
>>>- Add text conversion functions:
>>>   - t, value, textjoin
>>>- Add text utility functions:
>>>   - len, exact, mid, substitute, split, trim
>>>- Add regular expression functions:
>>>   - regexreplace, regexmatch, regexextract, regexextract1.
>>>- Add julian day / date conversion functions:
>>>   - julian, to_julian
>>>- Fix off-by-one error in month function
>>>- Fix error in if function, disable if function pending support 
>>>for more powerful function construction
>>>- Fix errors in count and counta functions.
>>>- Code cleanup
>>>
>>> New features are documented in the wiki.
>>>
>>> The strings and regex 

[tw] Prototype: "range" operator for numeric "for loops" in filters

2017-12-21 Thread Evan Balster
Hello, all —

I've written a nifty filter operator for generating numeric ranges in the 
style of "for" loops.  It's an instant power combo with any math 
functionality.  I'll be including it in the next release of my formulas 
plugin , but I wanted to 
make a post here in case anybody searches for something like this 
specifically.

The module is attached (drag the JSON file to your wiki to import it).


Docs:

The range operator allows a range of numbers to be enumerated, similar to a 
for loop in other programming languages. It's useful in combination with 
Formulas .


Purpose produce a range of numbers
Input ignored.
Parameter 1-3 numbers separated by , or ;.
Output A range of numbers starting with
! Output As *Output*, but with order reversed.


The parameter has three forms:

   - 
   - ,
   - ,,

Each part must be a number, and works as follows:

   - : start counting at this number. Defaults to 0.
   - : stop counting at this number.
  - It will be included unless it falls between two steps.
   - : count up (or down) by this amount.
  - It may be negated so it counts in the right direction.
  - It cannot be zero.
   
The number of decimal points in the output is fixed, and based on the 
parameter with the *most* decimal points.

To prevent the browser from freezing, range is currently limited to 10,000 
values.


Examples:

[range[7]]


0 1 2 3 4 5 6 7


[range[1, 10]]


1 2 3 4 5 6 7 8 9 10


[range[17,13]]


17 16 15 14 13


[range[1.001, 5, 1]]


1.001 2.001 3.001 4.001


[range[.5,1.4,.004]]


0.500 0.504 0.508 0.512 0.516 0.520 0.524 0.528 (...)

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/af28fc30-5685-4e4d-a1da-b988fe16495c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


$__plugins_ebalster_formula_filters_range.js.json
Description: application/json


Re: [tw] Re: "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread Jeremy Ruston
As I understand it, Mario is just pointing out that the development of Beaker 
Browser is moving fast. The implication is just that we may need to update our 
saver module accordingly, but there’s no reason to believe that we will be 
unable to run TiddlyWiki on Beaker in the future. Judging by conversations with 
Paul Frazee (one of the founders of the project), supporting JS apps that run 
in the browser like TiddlyWiki is a core goal of Beaker Browser.

Best wishes

Jeremy.

> On 21 Dec 2017, at 18:59, Birthe C  wrote:
> 
> The idea i good but for how long? 
> https://groups.google.com/d/msg/tiddlywiki/8Iso0WoFVMY/62aSH3HNCwAJ 
> 
> 
> 
> Birthe
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to tiddlywiki+unsubscr...@googlegroups.com 
> .
> To post to this group, send email to tiddlywiki@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/tiddlywiki 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/417aae25-6c4f-40d6-8b2b-88a5f412cbe2%40googlegroups.com
>  
> .
> For more options, visit https://groups.google.com/d/optout 
> .

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1E3FF15C-0E91-4727-BE7E-D0DD6F5972E3%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread Birthe C
The idea i good but for how long? 
https://groups.google.com/d/msg/tiddlywiki/8Iso0WoFVMY/62aSH3HNCwAJ


Birthe

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/417aae25-6c4f-40d6-8b2b-88a5f412cbe2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] "Forkeable" TiddlyWiki for Beaker Browser?

2017-12-21 Thread stefct4
Hi,


Beaker Browser  is an interesting project. One 
of the more obvious use cases is to upload a TiddlyWiki and share it with 
other Beaker Browser users via "dat://" URL (read-only). 

Since the TiddlyWiki saving mechanism supports Beaker, you can publish and 
maintain a personal website, blog or even a complex "web app" without using 
a centralized provider. TiddlyWiki seems to be a particularly good choice 
here because so far, Beaker only allows for static web pages. 

However, in order to do this, you currently need to download an empty 
TiddlyWiki, save it locally and then upload it to Beaker. This is 
inconsistent with the typical Beaker Browser "workflow", in which you 
simply open an existing "dat://" website, fork it, and share the resulting 
new "dat://" URL with your audience.

Would it be possible to provide a "forkeable", empty TiddlyWiki at a 
"dat://" URL (maybe on hashbase.io)? This file should probably contain a 
brief tiddler which explains the purpose of TiddlyWiki as well as the 
forking process and point to http://www.tiddlywiki.com for further 
documentation. Maybe this could even be included in the default bookmarks 
of Beaker?

Cheers,

Stef

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e1469bb8-7303-44d9-8fd5-cb4daaf3f74a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Positive Assertions In One Sentence ... (aka Saying Succinctly What TW Is About ...)

2017-12-21 Thread Birthe C
I like that after it gets the work done, it is the toy I always want to 
play with.


Birthe

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1992d554-98c3-406d-a4b7-6dde9f31506e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] "Muuri-Touch" plugin

2017-12-21 Thread @TiddlyTweeter
Ciao BurningTreeC

Seriously good!!! Clean design. Nice the base model echoes the visuality of 
the original vanilla TW look.

I wonder if it could also support tiddlers that are more than one column 
wide mixed in with tiddlers a column wide?

On better mobile look: some of what Thomas has just launched 
 
may be relevant. His approach handles menus very well.

Best wishes
Josiah



On Thursday, 21 December 2017 07:04:51 UTC+1, BurningTreeC wrote:
>
> Hello there,
>
> currently I'm working on a plugin that creates a drag 
> storyview
>
> it's based on the muuri widget by 
> https://ustuehler.github.io/tw5-material/ which is based on 
> https://github.com/haltu/muuri
>
> it also uses https://github.com/hammerjs/hammer.js and 
> https://github.com/Popmotion/popmotion for touch-actions/drag-actions and 
> pinch-to-zoom
>
>
>
> the code repository is on github: 
> https://github.com/BurningTreeC/TW5-muuri-touch
>
>
> It's a *work in progress! * 
>
> *And ... I'm very open to contributions, so don't hesitate to change, add, 
> comment!*
>
> A PREVIEW of the actual state is found on http://muritest.tiddlyspot.com
>
>
> what's missing?
>
>
>- a stylesheet for mobile view
>- buttons to set tiddler-widths by klicking (currently only by 
>pinch-zoom) - the button would only have to apply a class ( span-2 | 
> span-3 
>| span-4 | span-6 | span-9 | span-12 ) to the tiddler-frame
>- a packed plugin
>- a button to keep tiddlers on its position
>- editing a tiddler should take place on tiddlers position (move 
>tiddler-draft to tiddler-grid-index inside muuri-widget / muuri-storyview)
>- fix "setData" error when dragging inside editor
>   - error only occurs with codemirror editor
>   - default editor prevents dragging etc inside textareas
>   - question: how is that done?
>- ... more to come
>
>
> cheers, BurningTreeC
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9f4626fa-df73-4c29-aa1e-ce0732f54113%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [AddOn] file-backups - "TiddlyWiki File Save and Backup" is an official FireFox AddOn

2017-12-21 Thread Ton Gerner
Hi Mario,


> But one TW did not save at all with the following error in the console:...
>>
>  

> I'm not sure about this problem atm. ... 
>
> This message: message: "filename must not contain back-references (..)"
>
> shouldn't be possible with 0.3.x ... So did it pop up as you used 0.2.x ??
>
> No, I'am sure it was *after* installing v0.3.3.
But I have to say that today while fiddling around at a certain moment I 
got a message saying something like: "Not possible to use two file-backup 
add-ons together; one switched off". I never saw more than one file-backup 
add-on in the list. May be it had something to do with a corrupt Firefox 
profile.

As a sidenote: Today the file-backups add-on was automatically updated to 
0.3.4. The same was true for my Firefox dev. ed. which changed from 0.3.1 
to 0.3.4 (I can't remember installing a 0.3.1 version)

As mentioned in my last post I already had (CSS) problems with my Firefox 
profile. Today I started my profile from scratch and now everything works 
fine.

Thanks a lot for this terrific add-on. 

Cheers,

Ton

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4303a7d4-fe75-4ab2-b08e-90b81ed46c45%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Presenting: Bricks Demo – CSS Construction Set + Soft Redesign)

2017-12-21 Thread Diego Mesa
This is wonderful Thomas.

As people make cool stuff, please report back to inspire the rest of us! 

Diego


On Wednesday, December 20, 2017 at 5:23:14 PM UTC-6, TonyM wrote:
>
> Thomas,
>
> Once again I am impressed with your tiddlywiki contributions. Bricks looks 
> like another that will be in my toolbox. I will review more deeply and 
> respond if I can support your effort.
>
> My use of stylesheets has only recently reached the level I need such 
> tools, so it has come at the right time.
>
> I want to point out your quote "Hey, I made a new design for quotes – get 
> it from the bricks library.
>
> This reusable component approach is exactly what I am trying to do as well 
> with a desire to build an ecosystem of components (above plugins, below 
> editions) that have practical uses for both end users and experts alike.
> So my feed back is most likely to be supporting this component method.
>
> Thanks so much for your contributions in 2017 and I look forward to what 
> 2018 offers.
> Enjoy the festive season
>
> Tony
>
>
> On Thursday, 21 December 2017 07:13:58 UTC+11, Thomas Elmiger wrote:
>>
>> Dear members of the TW community,
>>
>> Over the last months you haven’t heard much from my side. And possibly I 
>> will remain rather quiet for the weeks to come. The TW hours I could find 
>> went mostly into this fancy project that has reached demo status now. I 
>> release this as is, without warranties and with minimal documentation. I 
>> would be very happy if some of you could find some time over the coming 
>> weeks to try, test, report bugs and submit feedback of any kind.
>>
>> *Bricks*  is a set of utilities for 
>> webdesigners using cascading stylesheets (CSS). It covers many aspects of 
>> TiddlyWiki 5 (TW) and thus is especially useful if you wish to use your 
>> skills for TW design. 
>>
>>
>> Bricks Studio Equipment
>>
>> Bricks offers *a collection of stylesheets* for TiddlyWiki 5 introducing 
>> a refreshingly cool but still familiar touch. Old and new styles are 
>> rebased on definitions from tachyons.io wherever possible. Additional 
>> tools:
>>
>>- Stylesheet Manager 
>> – a 
>>searchable list of stylesheets where you quickly create, edit, activate 
>> and 
>>deactivate stylesheet tiddlers. 
>>   - Listreveal Plugin – a helper that makes listed tiddlers 
>>   accessible and editable directly in the list.
>>   *Important:* Version 0.3.1 in use here might not be backwards 
>>   compatible.
>>- Stylesheet Generator – speed up your wikis and compile your 
>>collection of stylesheets into a static document, stripped from comments 
>>and most line breaks. 
>>
>>
>> Vanilla Ice Cream – a Soft Design Update
>>
>> The collection of style-related tiddlers delivered with *Bricks* has 
>> revolutionary things under the hood:
>>
>>- clearly titled CSS tiddlers you can combine as you like – use only 
>>as much code as necessary for your solution
>>- mobile first design philosophy
>>- variables for most things based on values from tachyons.io
>>
>> If this sounds interesting to you, visit 
>> https://tid.li/tw5/test/bricks.html for more info and let me know what 
>> you think.
>>
>> Have a good time, explore and build – all the best for the days to come 
>> and a happy 2018!
>>
>> Many thanks and kind regards,
>> 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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0622c83f-c5bc-4e02-8d7e-e6bd1f624da6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: I can't deactivate Tablinks (Firefox version)

2017-12-21 Thread Birthe C
Hi Mat,

You are toggling the value of the field display in the stylesheet tiddler. 
That value is not transcluded in the stylesheet. I tried  that, but that 
does not make it either. I think the $:/tags/Stylesheet tag must be 
toggled, but have not tested it. Windows and Firefox is a slooow 
combination on my computer. In fact Xmastiddle promised me I would not 
touch Windows for a couple of days. ;-)

@pedruchini 
I am very sorry, I was wrong it does not work as is. It was only my 
computer being slow, that made it look that way.

Birthe

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4514abef-c4d4-481c-9d92-61faab17e270%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Use an image as a site title but keep the text for the browser tab

2017-12-21 Thread Måns
Hi Jed

>How did you find out that you can do that?

I'm afraid I don't remember :)
I am sure I found out how to do it in TWClassic years ago.
Someone on this group showed me how. 
Maybe it was @Eric S ? 

Cheers Måns


Den torsdag den 21. december 2017 kl. 14.51.51 UTC+1 skrev Jed Carty:
>
> Måns,
>
> That is a much nicer solution than mine. How did you find out that you can 
> do that? I would never have thought to try anything like that.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c5254a01-9d40-4e0d-a282-a626b6047fbc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Use an image as a site title but keep the text for the browser tab

2017-12-21 Thread Jed Carty
Måns,

That is a much nicer solution than mine. How did you find out that you can 
do that? I would never have thought to try anything like that.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2b7e2e4a-84df-4c1c-91ce-40dbcc90798e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Use an image as a site title but keep the text for the browser tab

2017-12-21 Thread Måns Mårtensson
Hi

I do it like this:

In SiteTitle:

ACPAD[img width=252 class="tc-image"
[acpadLogo.png]]

In the Subtitle:

Studies

Seems to work fine.

Enjoy
Cheers Måns

Link: http://acpad.tiddlyspot.com/#%24%3A%2FSiteTitle

tor. 21. dec. 2017 kl. 13.18 skrev 'bar to' via TiddlyWiki <
tiddlywiki@googlegroups.com>:

> I probably searched everywhere but couldn't find an answer.
>
> I have a picture as the site title, that works great but the text in the
> browser tab now just looks like this " --- Subtitle".
> How can i use a Site Title and still keep the picture?
>
> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/adb028bb-fed0-4f52-a26f-c80cadaff30b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAK3VnJRcxVjvJ_cLhLyebJr0d1BBsdPj7znfmQ9y%2BayqenNOQA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Use an image as a site title but keep the text for the browser tab

2017-12-21 Thread 'bar to' via TiddlyWiki
Thats what i'm looking for. Thanks a lot. 

Am Donnerstag, 21. Dezember 2017 14:27:57 UTC+1 schrieb Jed Carty:
>
> If you want to be able to set the text on the browser tab and to put an 
> image in that place on the wiki itself the simplest way is unfortunately to 
> edit the tiddler $:/core/ui/PageTemplate/sidebar
> A few lines from the top there is the line
>
> <$transclude tiddler="$:/SiteTitle" mode="inline"/>
>
> replace that with the code to display the image you want.
>
> It isn't a very clean solution but it should work. And if something breaks 
> you can just delete the tiddler $:/core/ui/PageTemplate/sidebar to reset it 
> to normal.
>
> There may be a nicer way but I don't think so. I am pretty certain that 
> the text displayed by the browser tab is taken directly from the 
> $:/SiteTitle tiddler so changing that would take more than just editing a 
> template.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a85cc75d-abc5-4f06-886e-8ba6ded4ea83%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Use an image as a site title but keep the text for the browser tab

2017-12-21 Thread 'bar to' via TiddlyWiki
See attached image :) 
So can i use a normal text site title instead and put the image at the 
exakt same place in another way?




Am Donnerstag, 21. Dezember 2017 14:08:35 UTC+1 schrieb TonyM:
>
> Sorry. Premature posting prior.
>
> Where does this "site image" appear and what purpose does it serve?.
>
> I expect you can remove the image from where you put it and display it 
> another way to the same end.
>
> 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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/15297ee0-33f0-43c4-9dac-f48a40f94e1e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Use an image as a site title but keep the text for the browser tab

2017-12-21 Thread Jed Carty
If you want to be able to set the text on the browser tab and to put an 
image in that place on the wiki itself the simplest way is unfortunately to 
edit the tiddler $:/core/ui/PageTemplate/sidebar
A few lines from the top there is the line

<$transclude tiddler="$:/SiteTitle" mode="inline"/>

replace that with the code to display the image you want.

It isn't a very clean solution but it should work. And if something breaks 
you can just delete the tiddler $:/core/ui/PageTemplate/sidebar to reset it 
to normal.

There may be a nicer way but I don't think so. I am pretty certain that the 
text displayed by the browser tab is taken directly from the $:/SiteTitle 
tiddler so changing that would take more than just editing a template.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d8232a0c-3ba1-4ba5-84de-32e8b19c980c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Use an image as a site title but keep the text for the browser tab

2017-12-21 Thread TonyM
Sorry. Premature posting prior.

Where does this "site image" appear and what purpose does it serve?.

I expect you can remove the image from where you put it and display it another 
way to the same end.

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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f305e5f5-442b-4010-9cf2-225227fca25f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Use an image as a site title but keep the text for the browser tab

2017-12-21 Thread TonyM
Where is the "site title" image displayed

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a6ced604-f330-4d7d-97d1-e846d24e287f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: What's the xmastiddle bringing?

2017-12-21 Thread TonyM
Yup,

I would not believe it but for precidents elsewhere. EMC the storage 
manufacturer once delivered twice the storage we ordered and paid for but only 
gave us access to what we paid for. They called it preprovising, because they 
new we would eventually pay and the second order would be delivered with a 
software update. I expect it could be a substandard screen, or they may have 
decided it was easier to manage one screen standard.

I am still not sure I am not going mad.

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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a83f4330-317d-421a-8a93-38c8bf0d5d28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Roadmap for TiddlyDesktop

2017-12-21 Thread Ed
Hi Jeremy

Thank you very much for the well balanced an clear answer to my question.

The fact that you made TiddlyDesktopis already worth multikudo's!
Really looking forward to all innovations to come.

Lotsa thanks also to other people here to chime in in such a positive way.

As some extra info something about one of my use cases.
I have a TW5 that I work with at home and also at work, so
I carry it physically (a HD) with me from home to work and back. 
(Yes, I DO back-ups, several times a day!)

I still have to figure out what the best way would be to have easy Save
and automatic Back-up functions.

But so far so good and I still think that TiddlyWiki is one of the best
pieces of software I ever used. BTW Voodoopad was also great, but
my Mac is equiped with a PowerProcessor and no money for a new Mac.
So my VoodPad version is also very old.
I use Lenovo's at home that are ex-work PC's that were replace by newer 
ones.

OK, Jed, looking forward to your work Atta boy!

Sincerly, Edmond



 


Op dinsdag 19 december 2017 12:30:12 UTC+1 schreef Ed:
>
> Hi Jeremy,
>
> What are your ideas for the TiddlyDesktop in the (near) future if any?
>
> I ask this because I have a problem, more of an inconvenwance, while 
> working with TW5 in TiddlyDeskTop.
>
> When I do research about a project, I collect relevant links in a tiddler 
> for later reference and I like to use the framedlink macro to open such 
> a link inside the tiddler.
> Works brilliantly when website in question allows it. When not I have 
> to open that link in a browser.
>
> When I used FireFox before the FireFox Apocalypse, this was just  a
> matter of opening in a new tab, so the screen was uncluttered, only 
> the browser was there. 
>
> Now with TiddlyDesktop I have a TiddlyDesktop window open + FireFox
> to view said website. (And because of work in general there are some 
> more windows open.)
>
> Any chance that you could remedy this?
>
> Well I suppose you could make TiddlyDeskTop into a a sort of fuller-blown 
> browser, but that would be a major-major operation, a horrible task I 
> suppose.
> So I can live with it, but I am curious if you could do something and if 
> there 
> is any roadmap of sorts for the TiddlyDesktop.
>
> Thank very very much in advance!
> DoublePlus-Cheers, Ed 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ccd00dbe-2520-402e-98d1-95063e67b673%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: What's the xmastiddle bringing?

2017-12-21 Thread BurningTreeC
:D this is interesting!

how can one imagine this miraculous metamorphosis?

the day before touching your screen did nothing and after this 
pre-christmas-wonder you have touch?

Am Donnerstag, 21. Dezember 2017 01:01:17 UTC+1 schrieb TonyM:
>
> Let me share an unsolicited Christmas gift I received yesterday, Some of 
> you my be very surprised.
>
> I am not so sure who gave it to me, was in HP or Microsoft on my Windows 
> 10 laptop?
>
> I needed to upgrade my laptop a few months ago, I was inclined to get a 
> touch screen model, but balked at the price, and most of the time I use it 
> as a desktop replacement with two additional large screens.
>
> I took the cheaper option *without *the touch screen but 16GB RAM, 256 
> SSD, I have being very happy with this laptop. Of note is if you spend more 
> you can get a HDD/SSD combination model. However I discovered in the 
> cheaper model I got there is a HDD slot I can move a 1TB SSD I have into, 
> in time that is my only upgrade option remaining. 
>
> Yesterday I had some urgent work and was delayed 40 minutes with various 
> windows updates, which was seriously annoying.
>
> Once all the updates completed I received my unexpected Christmas Gift, it 
> was unwrapped, but I only discovered it accidentally.
>
> Scroll down to see what the Christmas Gift was
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> *I got a touch screen on my existing laptop.*
>
> No, I am not joking, I reviewed the computer specifications to check, this 
> laptop did not come with a touch screen. But there it is, it is now a touch 
> screen.
>
> For the nostalgic amongst you, it is like an update reactivated the 
> co-processor in my cheaper CPU. In the days where intel nobbled the 
> co-processor unless you payed more.
>
> Regards
> Tony
>
>
> On Monday, 18 December 2017 06:23:34 UTC+11, Ste Wilson wrote:
>>
>> As we approach the most tiddlery of times I wondered what would be 
>> filling your tiddlerstocking hanging over your nice regex fire? Don't 
>> forget to leave out some nice scotch for 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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/39439020-bf29-461f-916e-f7d0c3879122%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Use an image as a site title but keep the text for the browser tab

2017-12-21 Thread 'bar to' via TiddlyWiki
I probably searched everywhere but couldn't find an answer. 

I have a picture as the site title, that works great but the text in the 
browser tab now just looks like this " --- Subtitle". 
How can i use a Site Title and still keep the picture?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/adb028bb-fed0-4f52-a26f-c80cadaff30b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: I can't deactivate Tablinks (Firefox version)

2017-12-21 Thread Mat
pedruchini - I am afraid I don't have time just now and only possibly 
tomorrow but if you don't solve it yourself I promise to help you out 
within the next few days. (I rarely make such explicit promises.)

A quick guess, without having looked at the code, might be that the 
$:/tags/Stylesheet tag is [supposed to be] toggled by the button, .i.e for 
the stylesheet tiddler that I assume exists. I don't remember, but that's a 
guess.

Ok, gotta go for now.

<:-)

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/35de668c-622f-42e4-9c99-0035d912f6c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: I can't deactivate Tablinks (Firefox version)

2017-12-21 Thread Pedruchini

Birthe, 
Thanks for your quick answer. I tried Firefox 57 and Firefox ESR on Windows 
and an old version with Tiddlyfox on Lubuntu (linux) with no success. A few 
minutes ago I tried the following (also with no success):

1) Saved http://tablinks-ff.tiddlyspot.com/ (the plugin version for 
Firefox) to my computer. Clicked on the tab On/Off, and on the toggle 
button, I click on and off, but in both cases nothing happens (the plugin 
is active and I can't disable it).

2) I did the same with http://tablinks.tiddlyspot.com/ (the plugin version 
for Chrome) and it worked (I can disable the plugin).

I wonder what am I doing wrong. 

I know there is also Mario's 
https://wikilabs.github.io/editions/link-to-tabs/ but it's not exactly the 
same.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/694f9070-ccb0-4858-aee3-f1c60a542f84%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Thousands seperator with plugin "letfilter" (let:sum)

2017-12-21 Thread Marcus
Hi everybody,

many thanky for your fast answers. 

The plugin https://evanbalster.com/tiddlywiki/formulas.html 

  
works fine to sum up the values:

(= sum([all[]get[value]]) =)


Is there any idea how to format that with thousand seperator?

I did not manage it in combination with Thomas Elmiger's "RPN".

Thanky for all.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/276e0412-3a5f-4b0d-8031-daf090a5c72b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.