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

2018-01-14 Thread TonyM
Update,

I restored my wiki and disabled 
$:/plugins/ebalster/attribute-modules
and
$:/plugins/ebalster/condition

Now wiki is live with 
$:/plugins/ebalster/formula v0.2.0

Tony


On Monday, 15 January 2018 17:32:42 UTC+11, TonyM wrote:
>
> Evan,
>
> I dragged the new version plugin to two different wikis, one saved and 
> reloaded OK.
>
> The Other will not reload, nor does safemode work, giving the following 
> error.
>
> Internal JavaScript Error
> Well, this is embarrassing. It is recommended that you restart TiddlyWiki 
> by refreshing your browser
> Error executing boot module $:/core/modules/widgets/attributes/macro.js: 
> "Cannot find module named '$:/plugins/ebalster/formula/operands.js' 
> required by module '$:/core/modules/widgets/attributes/macro.js', resolved 
> to $:/plugins/ebalster/formula/operands.js" undefined
>
> From where I can go no where.
>
> I am trying to fix the wiki now but just wanted to let you know.
>
> I installed a couple of your other plugins previously the attribute and 
> if.else plugins if they may have something to do with it.
>
> I am not so sure how to toggle a plugin enabled to disable when editing 
> the tiddlywiki file directly, to eliminate your plugin.
>
> Regards
> Tony
>
> On Monday, January 15, 2018 at 4:05:05 PM UTC+11, Evan Balster wrote:
>>
>> *Formula 0.2.0 released*:  
>> https://evanbalster.com/tiddlywiki/formulas.html
>> GitHub and issue tracking:  
>> https://github.com/EvanBalster/TiddlyWikiFormula
>>
>> This one's a doozie...  Changelog:
>>
>> A substantial re-write of the formulas plugin that introduces various 
>> improvements and improves support for functional programming. Various minor 
>> compatibility-breaking changes were made.
>>
>>- Introduced (lambda) functions and formula-local variables.
>>   - Added let construct  for 
>>   making local variables.
>>   - Added function declaration . 
>>   Closures are not supported yet.
>>- Added map function  for 
>>manipulating array elements.
>>- Improved number formatting.
>>   - Default number formatting no longer displays tiny imprecisions.
>>   - Number formats may be specified with numeral.js 
>>   , enabling thousands separators, k/m/b 
>>   notation and greater control over digits.
>>   - *Renamed some FormulaWidget 
>>    and FormulaVarsWidget 
>>    attributes.*
>>   - Original number formatting can still be used by specifying 
>>   precision (no value).
>>- Enhanced support for imported values.
>>   - Added Functions  for importing 
>>   values as text: transclude, transclude_index, variable
>>   - Added datum function for interpreting text as a Datum 
>>   .
>>   - *Datum parsing now recognizes qualifying 14- and 17-digit 
>>   numbers as TiddlyWiki dates.* (eg. created & modified fields).
>>- *Widgets now display errors in the TiddlyWiki style*, like this.
>>   - $formula-vars will display any errors instead of its normal 
>>   content.
>>   - $formula uses tc-error styling.
>>- *Value conversion behaviors have changed.*
>>   - Non-array values will not be treated as single-element arrays.
>>- Enhanced array functions sum, average, product and count.
>>   - Multi-dimensional array values are properly supported.
>>   - *count ignores empty values.*
>>   - New function counta counts empty values.
>>- Internal implementation was changed. *This will break 
>>customizations.*
>>   - Consolidated "Node" type replaces Operator, Operand and Value.
>>   - Removed Value "boxing" and percentage values.
>>   - Implemented a new type cast mechanism, making custom JavaScript 
>>   functions simpler to write.
>>   - Computation now uses a "context" object.
>>- Fixed doc error: $noRebuild option is not called $noRefresh
>>- The substitute and trim functions now process all occurrences, not 
>>just one.
>>- Fixed implementation of the modulo function.
>>- *The % operator no longer affects display style.*
>>   - Use a format string instread.
>>- *+, -, add and subtract no longer auto-sum their operands.*
>>   - Use sum instead.
>>
>>
>> General remarks:  This makes formula a lot more powerful, especially for 
>> iterating through arrays with the MAP function.  I might investigate even 
>> more flexible ways to use that later.  The absence of proper closures does 
>> make functions and locals less useful as they could be, as local variables 
>> can't currently be used inside the function supplied to MAP.
>>
>> For a simple example of a computation that wasn't possible before, see 
>> the Line Graph demo:  

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

2018-01-14 Thread TonyM
Evan,

I dragged the new version plugin to two different wikis, one saved and 
reloaded OK.

The Other will not reload, nor does safemode work, giving the following 
error.

Internal JavaScript Error
Well, this is embarrassing. It is recommended that you restart TiddlyWiki 
by refreshing your browser
Error executing boot module $:/core/modules/widgets/attributes/macro.js: 
"Cannot find module named '$:/plugins/ebalster/formula/operands.js' 
required by module '$:/core/modules/widgets/attributes/macro.js', resolved 
to $:/plugins/ebalster/formula/operands.js" undefined

>From where I can go no where.

I am trying to fix the wiki now but just wanted to let you know.

I installed a couple of your other plugins previously the attribute and 
if.else plugins if they may have something to do with it.

I am not so sure how to toggle a plugin enabled to disable when editing the 
tiddlywiki file directly, to eliminate your plugin.

Regards
Tony

On Monday, January 15, 2018 at 4:05:05 PM UTC+11, Evan Balster wrote:
>
> *Formula 0.2.0 released*:  
> https://evanbalster.com/tiddlywiki/formulas.html
> GitHub and issue tracking:  
> https://github.com/EvanBalster/TiddlyWikiFormula
>
> This one's a doozie...  Changelog:
>
> A substantial re-write of the formulas plugin that introduces various 
> improvements and improves support for functional programming. Various minor 
> compatibility-breaking changes were made.
>
>- Introduced (lambda) functions and formula-local variables.
>   - Added let construct  for 
>   making local variables.
>   - Added function declaration . 
>   Closures are not supported yet.
>- Added map function  for 
>manipulating array elements.
>- Improved number formatting.
>   - Default number formatting no longer displays tiny imprecisions.
>   - Number formats may be specified with numeral.js 
>   , enabling thousands separators, k/m/b 
>   notation and greater control over digits.
>   - *Renamed some FormulaWidget 
>    and FormulaVarsWidget 
>    attributes.*
>   - Original number formatting can still be used by specifying 
>   precision (no value).
>- Enhanced support for imported values.
>   - Added Functions  for importing 
>   values as text: transclude, transclude_index, variable
>   - Added datum function for interpreting text as a Datum 
>   .
>   - *Datum parsing now recognizes qualifying 14- and 17-digit numbers 
>   as TiddlyWiki dates.* (eg. created & modified fields).
>- *Widgets now display errors in the TiddlyWiki style*, like this.
>   - $formula-vars will display any errors instead of its normal 
>   content.
>   - $formula uses tc-error styling.
>- *Value conversion behaviors have changed.*
>   - Non-array values will not be treated as single-element arrays.
>- Enhanced array functions sum, average, product and count.
>   - Multi-dimensional array values are properly supported.
>   - *count ignores empty values.*
>   - New function counta counts empty values.
>- Internal implementation was changed. *This will break 
>customizations.*
>   - Consolidated "Node" type replaces Operator, Operand and Value.
>   - Removed Value "boxing" and percentage values.
>   - Implemented a new type cast mechanism, making custom JavaScript 
>   functions simpler to write.
>   - Computation now uses a "context" object.
>- Fixed doc error: $noRebuild option is not called $noRefresh
>- The substitute and trim functions now process all occurrences, not 
>just one.
>- Fixed implementation of the modulo function.
>- *The % operator no longer affects display style.*
>   - Use a format string instread.
>- *+, -, add and subtract no longer auto-sum their operands.*
>   - Use sum instead.
>
>
> General remarks:  This makes formula a lot more powerful, especially for 
> iterating through arrays with the MAP function.  I might investigate even 
> more flexible ways to use that later.  The absence of proper closures does 
> make functions and locals less useful as they could be, as local variables 
> can't currently be used inside the function supplied to MAP.
>
> For a simple example of a computation that wasn't possible before, see the 
> Line Graph demo:  http://localhost:8080/#Demo%3A%20Line%20Graph
>
>
> On Saturday, 13 January 2018 15:25:29 UTC-6, coda coder wrote:
>>
>> Ah, the joys of IEEE-754...
>>
>> <$if "anyone wants to see the gory details of fp in javascript (and a 
>> slew of other languages all of which are dependent on today's CPUs)">
>>   https://www.h-schmidt.net/FloatConverter/
>> 
>>
>> :)
>>
>> On Saturday, January 13, 2018 at 

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

2018-01-14 Thread Evan Balster
Huh, maybe localhost is down.  :)

https://evanbalster.com/tiddlywiki/formulas.html#Demo%3A%20Line%20Graph

Generating SVG paths in TiddlyWiki is something I've been wanting for 
ages...  It was possible in a limited capacity with wikify before, but this 
makes it a lot more practical.

On Sunday, 14 January 2018 23:20:53 UTC-6, TonyM wrote:
>
> Evan
>
> Thanks once again. I will start using ASAP.
>
> FYI Link dead (ie no tiddler)  
> http://localhost:8080/#Demo%3A%20Line%20Graph 
> 
>
> Regards
> Tony
>
>
> On Monday, 15 January 2018 16:05:05 UTC+11, Evan Balster wrote:
>>
>> *Formula 0.2.0 released*:  
>> https://evanbalster.com/tiddlywiki/formulas.html
>> GitHub and issue tracking:  
>> https://github.com/EvanBalster/TiddlyWikiFormula
>>
>> This one's a doozie...  Changelog:
>>
>> A substantial re-write of the formulas plugin that introduces various 
>> improvements and improves support for functional programming. Various minor 
>> compatibility-breaking changes were made.
>>
>>- Introduced (lambda) functions and formula-local variables.
>>   - Added let construct  for 
>>   making local variables.
>>   - Added function declaration . 
>>   Closures are not supported yet.
>>- Added map function  for 
>>manipulating array elements.
>>- Improved number formatting.
>>   - Default number formatting no longer displays tiny imprecisions.
>>   - Number formats may be specified with numeral.js 
>>   , enabling thousands separators, k/m/b 
>>   notation and greater control over digits.
>>   - *Renamed some FormulaWidget 
>>    and FormulaVarsWidget 
>>    attributes.*
>>   - Original number formatting can still be used by specifying 
>>   precision (no value).
>>- Enhanced support for imported values.
>>   - Added Functions  for importing 
>>   values as text: transclude, transclude_index, variable
>>   - Added datum function for interpreting text as a Datum 
>>   .
>>   - *Datum parsing now recognizes qualifying 14- and 17-digit 
>>   numbers as TiddlyWiki dates.* (eg. created & modified fields).
>>- *Widgets now display errors in the TiddlyWiki style*, like this.
>>   - $formula-vars will display any errors instead of its normal 
>>   content.
>>   - $formula uses tc-error styling.
>>- *Value conversion behaviors have changed.*
>>   - Non-array values will not be treated as single-element arrays.
>>- Enhanced array functions sum, average, product and count.
>>   - Multi-dimensional array values are properly supported.
>>   - *count ignores empty values.*
>>   - New function counta counts empty values.
>>- Internal implementation was changed. *This will break 
>>customizations.*
>>   - Consolidated "Node" type replaces Operator, Operand and Value.
>>   - Removed Value "boxing" and percentage values.
>>   - Implemented a new type cast mechanism, making custom JavaScript 
>>   functions simpler to write.
>>   - Computation now uses a "context" object.
>>- Fixed doc error: $noRebuild option is not called $noRefresh
>>- The substitute and trim functions now process all occurrences, not 
>>just one.
>>- Fixed implementation of the modulo function.
>>- *The % operator no longer affects display style.*
>>   - Use a format string instread.
>>- *+, -, add and subtract no longer auto-sum their operands.*
>>   - Use sum instead.
>>
>>
>> General remarks:  This makes formula a lot more powerful, especially for 
>> iterating through arrays with the MAP function.  I might investigate even 
>> more flexible ways to use that later.  The absence of proper closures does 
>> make functions and locals less useful as they could be, as local variables 
>> can't currently be used inside the function supplied to MAP.
>>
>> For a simple example of a computation that wasn't possible before, see 
>> the Line Graph demo:  http://localhost:8080/#Demo%3A%20Line%20Graph
>>
>>
>> On Saturday, 13 January 2018 15:25:29 UTC-6, coda coder wrote:
>>>
>>> Ah, the joys of IEEE-754...
>>>
>>> <$if "anyone wants to see the gory details of fp in javascript (and a 
>>> slew of other languages all of which are dependent on today's CPUs)">
>>>   https://www.h-schmidt.net/FloatConverter/
>>> 
>>>
>>> :)
>>>
>>> On Saturday, January 13, 2018 at 2:09:28 PM UTC-6, Evan Balster wrote:

 Hey, all —

 I get 5.6005 as a result (instead of 5.6).
>

 Right now formula uses the JavaScript style for displaying numbers by 
 default, 

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

2018-01-14 Thread TonyM
Evan

Thanks once again. I will start using ASAP.

FYI Link dead (ie no tiddler)  http://localhost:8080/#Demo%3A%20Line%20Graph

Regards
Tony


On Monday, 15 January 2018 16:05:05 UTC+11, Evan Balster wrote:
>
> *Formula 0.2.0 released*:  
> https://evanbalster.com/tiddlywiki/formulas.html
> GitHub and issue tracking:  
> https://github.com/EvanBalster/TiddlyWikiFormula
>
> This one's a doozie...  Changelog:
>
> A substantial re-write of the formulas plugin that introduces various 
> improvements and improves support for functional programming. Various minor 
> compatibility-breaking changes were made.
>
>- Introduced (lambda) functions and formula-local variables.
>   - Added let construct  for 
>   making local variables.
>   - Added function declaration . 
>   Closures are not supported yet.
>- Added map function  for 
>manipulating array elements.
>- Improved number formatting.
>   - Default number formatting no longer displays tiny imprecisions.
>   - Number formats may be specified with numeral.js 
>   , enabling thousands separators, k/m/b 
>   notation and greater control over digits.
>   - *Renamed some FormulaWidget 
>    and FormulaVarsWidget 
>    attributes.*
>   - Original number formatting can still be used by specifying 
>   precision (no value).
>- Enhanced support for imported values.
>   - Added Functions  for importing 
>   values as text: transclude, transclude_index, variable
>   - Added datum function for interpreting text as a Datum 
>   .
>   - *Datum parsing now recognizes qualifying 14- and 17-digit numbers 
>   as TiddlyWiki dates.* (eg. created & modified fields).
>- *Widgets now display errors in the TiddlyWiki style*, like this.
>   - $formula-vars will display any errors instead of its normal 
>   content.
>   - $formula uses tc-error styling.
>- *Value conversion behaviors have changed.*
>   - Non-array values will not be treated as single-element arrays.
>- Enhanced array functions sum, average, product and count.
>   - Multi-dimensional array values are properly supported.
>   - *count ignores empty values.*
>   - New function counta counts empty values.
>- Internal implementation was changed. *This will break 
>customizations.*
>   - Consolidated "Node" type replaces Operator, Operand and Value.
>   - Removed Value "boxing" and percentage values.
>   - Implemented a new type cast mechanism, making custom JavaScript 
>   functions simpler to write.
>   - Computation now uses a "context" object.
>- Fixed doc error: $noRebuild option is not called $noRefresh
>- The substitute and trim functions now process all occurrences, not 
>just one.
>- Fixed implementation of the modulo function.
>- *The % operator no longer affects display style.*
>   - Use a format string instread.
>- *+, -, add and subtract no longer auto-sum their operands.*
>   - Use sum instead.
>
>
> General remarks:  This makes formula a lot more powerful, especially for 
> iterating through arrays with the MAP function.  I might investigate even 
> more flexible ways to use that later.  The absence of proper closures does 
> make functions and locals less useful as they could be, as local variables 
> can't currently be used inside the function supplied to MAP.
>
> For a simple example of a computation that wasn't possible before, see the 
> Line Graph demo:  http://localhost:8080/#Demo%3A%20Line%20Graph
>
>
> On Saturday, 13 January 2018 15:25:29 UTC-6, coda coder wrote:
>>
>> Ah, the joys of IEEE-754...
>>
>> <$if "anyone wants to see the gory details of fp in javascript (and a 
>> slew of other languages all of which are dependent on today's CPUs)">
>>   https://www.h-schmidt.net/FloatConverter/
>> 
>>
>> :)
>>
>> On Saturday, January 13, 2018 at 2:09:28 PM UTC-6, Evan Balster wrote:
>>>
>>> Hey, all —
>>>
>>> I get 5.6005 as a result (instead of 5.6).

>>>
>>> Right now formula uses the JavaScript style for displaying numbers by 
>>> default, and it's pretty terrible.  The inaccuracy is "floating point" 
>>> error and any reasonable system would round it off somehow.  To get rid of 
>>> it, refer to the "fixed" and "precision" options in FormulaWidget:  
>>> http://evanbalster.com/tiddlywiki/formulas.html#FormulaWidget
>>>
>>> I'm probably going to change how numbers are formatted, likely using 
>>> numeral.js  or something like it.  This is one 
>>> of a few compatibility-breaking changes I'm thinking about for the big 
>>> update.
>>>
>>>
>>> On Saturday, 13 January 2018 13:28:30 UTC-6, 

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

2018-01-14 Thread Evan Balster
*Formula 0.2.0 released*:  https://evanbalster.com/tiddlywiki/formulas.html
GitHub and issue tracking:  https://github.com/EvanBalster/TiddlyWikiFormula

This one's a doozie...  Changelog:

A substantial re-write of the formulas plugin that introduces various 
improvements and improves support for functional programming. Various minor 
compatibility-breaking changes were made.

   - Introduced (lambda) functions and formula-local variables.
  - Added let construct  for 
  making local variables.
  - Added function declaration . 
  Closures are not supported yet.
   - Added map function  for manipulating 
   array elements.
   - Improved number formatting.
  - Default number formatting no longer displays tiny imprecisions.
  - Number formats may be specified with numeral.js 
  , enabling thousands separators, k/m/b 
  notation and greater control over digits.
  - *Renamed some FormulaWidget 
   and FormulaVarsWidget 
   attributes.*
  - Original number formatting can still be used by specifying precision 
(no 
  value).
   - Enhanced support for imported values.
  - Added Functions  for importing 
  values as text: transclude, transclude_index, variable
  - Added datum function for interpreting text as a Datum 
  .
  - *Datum parsing now recognizes qualifying 14- and 17-digit numbers 
  as TiddlyWiki dates.* (eg. created & modified fields).
   - *Widgets now display errors in the TiddlyWiki style*, like this.
  - $formula-vars will display any errors instead of its normal content.
  - $formula uses tc-error styling.
   - *Value conversion behaviors have changed.*
  - Non-array values will not be treated as single-element arrays.
   - Enhanced array functions sum, average, product and count.
  - Multi-dimensional array values are properly supported.
  - *count ignores empty values.*
  - New function counta counts empty values.
   - Internal implementation was changed. *This will break customizations.*
  - Consolidated "Node" type replaces Operator, Operand and Value.
  - Removed Value "boxing" and percentage values.
  - Implemented a new type cast mechanism, making custom JavaScript 
  functions simpler to write.
  - Computation now uses a "context" object.
   - Fixed doc error: $noRebuild option is not called $noRefresh
   - The substitute and trim functions now process all occurrences, not 
   just one.
   - Fixed implementation of the modulo function.
   - *The % operator no longer affects display style.*
  - Use a format string instread.
   - *+, -, add and subtract no longer auto-sum their operands.*
  - Use sum instead.
   

General remarks:  This makes formula a lot more powerful, especially for 
iterating through arrays with the MAP function.  I might investigate even 
more flexible ways to use that later.  The absence of proper closures does 
make functions and locals less useful as they could be, as local variables 
can't currently be used inside the function supplied to MAP.

For a simple example of a computation that wasn't possible before, see the 
Line Graph demo:  http://localhost:8080/#Demo%3A%20Line%20Graph


On Saturday, 13 January 2018 15:25:29 UTC-6, coda coder wrote:
>
> Ah, the joys of IEEE-754...
>
> <$if "anyone wants to see the gory details of fp in javascript (and a slew 
> of other languages all of which are dependent on today's CPUs)">
>   https://www.h-schmidt.net/FloatConverter/
> 
>
> :)
>
> On Saturday, January 13, 2018 at 2:09:28 PM UTC-6, Evan Balster wrote:
>>
>> Hey, all —
>>
>> I get 5.6005 as a result (instead of 5.6).
>>>
>>
>> Right now formula uses the JavaScript style for displaying numbers by 
>> default, and it's pretty terrible.  The inaccuracy is "floating point" 
>> error and any reasonable system would round it off somehow.  To get rid of 
>> it, refer to the "fixed" and "precision" options in FormulaWidget:  
>> http://evanbalster.com/tiddlywiki/formulas.html#FormulaWidget
>>
>> I'm probably going to change how numbers are formatted, likely using 
>> numeral.js  or something like it.  This is one of 
>> a few compatibility-breaking changes I'm thinking about for the big update.
>>
>>
>> On Saturday, 13 January 2018 13:28:30 UTC-6, ste...@gmail.com wrote:
>>>
>>> Hi Evan, 
>>>
>>> I just ran into a weird problem. When I enter
>>>
>>> (= sum(1.5,1.2,2,0.9) =)
>>>
>>> (= 2+1.2+0.9+1.5 =)
>>>
>>> I get 5.6005 as a result (instead of 5.6). If I change the 
>>> numbers slightly, I get the correct result. 
>>>
>>> Is this a bug, or is there a well known explanation I'm not aware of?
>>>
>>> Kind regards,
>>>
>>> Stef
>>>
>>

-- 

[tw] saving - new file vs rewrite

2018-01-14 Thread Mobil Home
When Tiddlywiki saves, is it always creating a new file, or is there a way 
to save the html file without creating new (1) (2) html files? 

-- 
You received this message because you are subscribed to the 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/b8a3b7c2-c5a8-4f3e-ab13-d0be76fc9f6e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: KaTeX does not do what I need

2018-01-14 Thread j3d1H
I did what you said before, but now it works. I guess it was a matter of 
waiting - thank you!
>
>

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


[tw] Re: Replace copy/paste bullets with TW Style?

2018-01-14 Thread TonyM
Stobot,

Opps, I assumed your copy and paste was coming from websites etc.. in the 
browser. I am a big user of Office but I not longer get much of my incoming 
data from office documents, So I have not played with this too much. I will 
look into it and post any leanings.

Perhaps http://skplugins.tiddlyspot.com/#FindReplace would help.

I have a lot of office and office 365 cloud experience and keen to resolve 
this for future clients as well.

Here are some possible tips

   - Copy and past content as plain text then use Editor tool bars to add 
   back bullets and formatting
  - .http://skplugins.tiddlyspot.com has quite a few editor tool bar 
  enhancements
   - Paste into an advanced text editor and manipulate before pasting into 
   TiddlyWIki eg; notepad ++
   - Save/Export an office document as html and copy from there (but tricky 
   at moment)

Sadly recent changes to FireFox have made a number of my preferred addons 
go the way of the Dodo, so I need to revisit this subject.

Regards
Tony



On Monday, 15 January 2018 00:22:57 UTC+11, Stobot wrote:
>
> Thanks TonyM,
>
> Unfortunately either copy/pasting or dragging/dropping doesn't give me the 
> HTML (don't know that's what most Office programs use). Below is a more 
> detailed example with the "after"
>
> Example content from Outlook
>
> This is a list
>
>- Point 1 
>- Point 2 
>   - 2a 
>   - 2b 
>  - 2ai 
>  - 2aii 
>   - 2c 
>- Point 3 
>
> Copy/Pasted into TiddlyWiki returns:
> • Point 1
> • Point 2
> o 2a
> o 2b
>  2ai
>  2aii
> o 2c
> • Point 3
>
> The character codes appear to be:
> First: 0149 followed by 0032
> Second: 0111 followed by 0032
> Third: 0063 followed by 0032
>
> So I believe this should be easy with some kind of find/replace plugin. 
> Multiple times per day right now I manually go in and hand-replace the dot 
> with *, open dot with **, square dot with *** etc.
>
> I finally found the "CSV to Table" copy/paste thing I was referring to was 
> http://tobibeer.github.io/tb5/#convertable. I use this all the time to 
> copy/paste ranges from Excel into my wiki. I imagine it essentially does 
> find/replace based on tab characters or something replacing with pipes. 
>
> Does that help explain it better? Sometimes I feel like I'm one of the 
> only people here in a traditional old-fashioned corporate environment 
> running Microsoft tools, but I appreciate the help! 
>

-- 
You received this message because you are subscribed to the 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/a9f74f96-ae2a-41b2-a6b5-85c6fc8c086c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: Has anyone made a BULK Tiddler Creator?

2018-01-14 Thread 'Mark S.' via TiddlyWiki
This code should do almost exactly what you want (except it goes from 000 
to 099 instead of 001 to 100. You could always just rename 000 to 100 (plus 
caption):

This took about 35 minutes to write (well, it should have been 15 minutes, 
but I digress). If it is factually useful to you, please consider donating 1
€ to Pmario (https://www.paypal.me/PMarioJo).

\define composedtitle() $(base)$ 0$(ten)$$(one)$
\define caption() Minute-0$(ten)$$(one)$
''Base title'': <$edit-text tiddler="$:/state/new-tiddler-title" tag="input" 
default=""/> 
''Tag'': <$edit-text tiddler="$:/state/new-tiddler-tag" tag="input" default=
""/> 

<$button> Create 100 copies of title 
<$list filter="0 1 2 3 4 5 6 7 8 9" variable="ten">
<$list filter="0 1 2 3 4 5 6 7 8 9" variable="one">
<$vars base={{$:/state/new-tiddler-title}}> 
<$action-createtiddler $basetitle=<> tags={{$:/state/new-
tiddler-tag}} caption=<> /> 






Have fun,
Mark

On Sunday, January 14, 2018 at 9:01:54 AM UTC-8, @TiddlyTweeter wrote:
>
> Cari tutti
>
> I'm wondering if anyone has made a bulk Tiddler Population Maker (TPM)?
>
> Here is a Use Case...
>
> *STORYBOARDING*
>
> 1 - You need 100 Tiddlers creating to cover the main scenes of a movie. 
> You need them all in advance because you may be writing main scene 037 well 
> before you write scene 001 but you need to see it in context.
>
> 2 - The NAMING of them can be as simple as "TITLE xxx" where xxx = from 
> 001 to 100 and Title = user input.
>
> 3 - It would be a bonus to be able to create a CAPTION field at the same 
> time that is "Minute xxx" where xxx = (the same numbering as 2) from 001 to 
> 100.
>
> 4 - It would be a great bonus to be able to add a TAG to all 100 like 
> "TAG" where TAG = user input.
>
> Maybe its been done already?
>
> Many thanks for any pointers or assistance.
>
> Best wishes
> 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/b93ca442-c6ca-48a2-bfec-cbfb1665aa46%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: Has anyone made a BULK Tiddler Creator?

2018-01-14 Thread stefct4
Hi Josiah, 

On Sunday, January 14, 2018 at 6:01:54 PM UTC+1, @TiddlyTweeter wrote:
>
> I'm wondering if anyone has made a bulk Tiddler Population Maker (TPM)?
>

You could try something like:
<$button>
<$list filter="[all[shadows]limit[100]]">
<$action-createtiddler $basetitle="My new tiddler"/>

Create 100 tiddlers 

Please note that this just meant as a starting point, not a finished 
solution. Adding tags and modifying the title via user input should be 
easy. I'm not sure how to go about the "minute" caption field, however. 
Also, I'm not sure how to add leading zeros to the numbers in the title (if 
those are a requirement). 

This requires your TiddlyWiki to have at least 100 shadow tiddlers (which 
should normally be the case).

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/2627f81f-1516-484d-b34c-73a9412ebb00%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-14 Thread BJ
Tiddlyclip has been updated, and is available from github. However I have 
added quiet a few things and have not finished the documentation(tiddlyclip 
at tiddlyspot still has the old docs). However the original functionality 
and mode of operations remain so it should be ok to use, BUT it is a 
pre-release at the moment as I am still adding to it.

all the best
BJ

On Sunday, January 14, 2018 at 9:22:28 PM UTC+1, Mark S. wrote:
>
> Has TiddlyClip been updated for FF57?
>
> Is the IMDB web structure consistent enough to allow web scraping?
>
> -- Mark
>
> On Sunday, January 14, 2018 at 11:07:05 AM UTC-8, @TiddlyTweeter wrote:
>>
>> BJ's TiddlyClip is a really interesting tool in bridging the gap between 
>> a self contained TW & a browser environment of Web Pages waiting to be 
>> clipped.
>>
>> As I slowly get better with TW I'm beginning to wonder if TiddlyClip 
>> could be used to "scrape" web pages ... i.e detect specific wanted sections 
>> and extract them. A common case, for me, would be extracting data for a 
>> single movie from IMDB and maybe processing it to populate a Tiddler and 
>> some of its fields.
>>
>> Any thoughts?
>>
>> Best wishes
>> 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/fd0f85b4-aab0-414a-8009-e5656d0a63d5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-14 Thread coda coder
Scratch that, they all appear to be dead.

A node guru could probably get something working via 
https://www.npmjs.com/package/imdb-api

On Sunday, January 14, 2018 at 2:52:11 PM UTC-6, coda coder wrote:
>
> The solution would be here (assuming this is actually working - I've never 
> tried it) https://stackoverflow.com/a/7744369
>
> On Sunday, January 14, 2018 at 1:07:05 PM UTC-6, @TiddlyTweeter wrote:
>>
>> BJ's TiddlyClip is a really interesting tool in bridging the gap between 
>> a self contained TW & a browser environment of Web Pages waiting to be 
>> clipped.
>>
>> As I slowly get better with TW I'm beginning to wonder if TiddlyClip 
>> could be used to "scrape" web pages ... i.e detect specific wanted sections 
>> and extract them. A common case, for me, would be extracting data for a 
>> single movie from IMDB and maybe processing it to populate a Tiddler and 
>> some of its fields.
>>
>> Any thoughts?
>>
>> Best wishes
>> 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/fa4c2fe5-6b3f-438e-985c-8bbc9474c15c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-14 Thread coda coder
The solution would be here (assuming this is actually working - I've never 
tried it) https://stackoverflow.com/a/7744369

On Sunday, January 14, 2018 at 1:07:05 PM UTC-6, @TiddlyTweeter wrote:
>
> BJ's TiddlyClip is a really interesting tool in bridging the gap between a 
> self contained TW & a browser environment of Web Pages waiting to be 
> clipped.
>
> As I slowly get better with TW I'm beginning to wonder if TiddlyClip could 
> be used to "scrape" web pages ... i.e detect specific wanted sections and 
> extract them. A common case, for me, would be extracting data for a single 
> movie from IMDB and maybe processing it to populate a Tiddler and some of 
> its fields.
>
> Any thoughts?
>
> Best wishes
> 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/648020aa-3d56-4a5c-b850-5071ae538dfc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-14 Thread 'Mark S.' via TiddlyWiki
Has TiddlyClip been updated for FF57?

Is the IMDB web structure consistent enough to allow web scraping?

-- Mark

On Sunday, January 14, 2018 at 11:07:05 AM UTC-8, @TiddlyTweeter wrote:
>
> BJ's TiddlyClip is a really interesting tool in bridging the gap between a 
> self contained TW & a browser environment of Web Pages waiting to be 
> clipped.
>
> As I slowly get better with TW I'm beginning to wonder if TiddlyClip could 
> be used to "scrape" web pages ... i.e detect specific wanted sections and 
> extract them. A common case, for me, would be extracting data for a single 
> movie from IMDB and maybe processing it to populate a Tiddler and some of 
> its fields.
>
> Any thoughts?
>
> Best wishes
> 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/64b525d7-ea6c-4134-b09c-ac7d6b1e18a0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-14 Thread Birthe C
Hi Surya,

Jed experimented with several solution possibilities, the thread is here: 
https://groups.google.com/d/msg/tiddlywiki/msDS-4x8Qms/b1yS55pqNDIJ

Birthe


Den søndag den 14. januar 2018 kl. 19.53.40 UTC+1 skrev Surya:
>
> Hello Birthe,
>
> I just read about the comment-feature of Jed Carty. He writes "This 
> requires you to have access to a server with PHP".
> Hmmm, that overstrains me
> I am not such a computer freak Only a power enduser ;-)
>
> Maybe one time
>
> Surya
>

-- 
You received this message because you are subscribed to the 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/16c758b9-772c-44fc-b9ab-5f7718bf2b3b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Query: About BJ's TiddlyClip as a "Screen Scraper"?

2018-01-14 Thread @TiddlyTweeter
BJ's TiddlyClip is a really interesting tool in bridging the gap between a 
self contained TW & a browser environment of Web Pages waiting to be 
clipped.

As I slowly get better with TW I'm beginning to wonder if TiddlyClip could 
be used to "scrape" web pages ... i.e detect specific wanted sections and 
extract them. A common case, for me, would be extracting data for a single 
movie from IMDB and maybe processing it to populate a Tiddler and some of 
its fields.

Any thoughts?

Best wishes
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/f65a9801-dbc2-466c-9e1e-13ee98a54cff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-14 Thread 'Surya' via TiddlyWiki
Hello Birthe,

I just read about the comment-feature of Jed Carty. He writes "This 
requires you to have access to a server with PHP".
Hmmm, that overstrains me
I am not such a computer freak Only a power enduser ;-)

Maybe one time

Surya

-- 
You received this message because you are subscribed to the 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/90dad8f1-d69c-4f03-a40a-ae4a8b850dd8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-14 Thread Birthe C
Hi Surya.

tiddlyspot was created years ago for TWclassic. The examples you can choose 
from when creating a tiddlyspot is in TWclassic. You have been reading 
about TWclassic. But  the only thing you need is to create a spot to use 
for uploading your TW5 and it will work.

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/babf9ccd-0707-413a-b893-59d250c3c50d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-14 Thread 'Surya' via TiddlyWiki
Hi Birthe,

I found this HaloscanMacro not with google, but when surfing on 
tiddlyspot.com.

Okay, then I'll have a look at http://tiddlywiki5.tiddlyspot.com.

Surya

-- 
You received this message because you are subscribed to the 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/885ebd9d-fc42-4b94-83de-ec7df37b3219%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to: Automatic setting field value if a tiddler has a special tag

2018-01-14 Thread 'Surya' via TiddlyWiki
Hi Mark,

Juhuu :-) (german word for being happy ;-)
It works :-)) Thanks!

The tiddlers tagged with Ja are always also tagged with Pflanzen. I just 
mentioned it, because I haven't been sure, if it is important to know for 
the macro.

Thanks, now I have a good overview in the sidebar with just a little piece 
of work :-)
Surya

-- 
You received this message because you are subscribed to the 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/0eff47e3-af95-49b7-b030-4a86427a197b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-14 Thread Birthe C
Hi Surya,
You were lucky then,  HaloscanMacro was for TWclassic (from 2006 I think.), 
and you would not be able to use it for your TW5 anyway.
Always be careful that the solutions you find by Googling is for TW5.

Jed Carty created some stuff for commenting in TW5.

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/29489fcf-57a0-4f46-ab32-d7da40ea592f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to: Automatic setting field value if a tiddler has a special tag

2018-01-14 Thread 'Mark S.' via TiddlyWiki
In this case you could make a tiddler marked as global macro with the 
following contents:

\define toc-caption()
<$list filter="[all[current]regexp:tags[\bJa\b]]" 
variable="dum">@@color:red;<$view field="caption"><$view 
field="title"/>@@
<$list filter="[all[current]!regexp:tags[\bJa\b]]" variable="dum"><$view 
field="caption"><$view field="title"/>
\end

Except that your new requirement for TWO tags changes the filter logic. Do 
you mean you want both tags to turn RED, or one tag to turn RED and the 
other GREEN ?

Good luck,
Mark

On Sunday, January 14, 2018 at 4:27:28 AM UTC-8, Surya wrote:
>
> Hi Mark,
>
> I made a tab in the sidebar with a tiddler. In this tiddler I have table 
> of content with
> 
> <>
> 
>
> Does your idea work there? Would I have to modify it?
> The tiddlers, which should to be shown in another colour are tagged with 
> "Pflanzen" and "Ja".
>

-- 
You received this message because you are subscribed to the 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/3ddc7607-0431-4c60-93ec-1961f4f8f2cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Query: Has anyone made a BULK Tiddler Creator?

2018-01-14 Thread stevesuny
Yes, I do this all the time using the xlsx importer, and building the 
tiddlers in a spreadsheet. That way, you can use the spreadsheet features 
to increment tiddler name, manage tags, etc. 

xlsx import tool is an incredibly powerful way to generate multi tiddlers.

One trick: use a columnn of the spreadsheet to generate a trancslusion to a 
"text" tiddler. For example, in the row for tiddler SCENE-037, create a 
cell whose value is "{{text-SCENE-037}}" (using the spreadsheet concatenate 
function). This way, you can create a template for SCENE tiddlers 
transcluding {{text-SCENE-037}} into [[SCENE-037]]. If you need to 
rename/renumber/modify your SCENE tiddlers, you can import again without 
losing your [[text-SCENE-*]] tiddlers

If this isn't clear, let me know. I'll find an example where I do this and 
share it here.

//steve.


On Sunday, January 14, 2018 at 12:01:54 PM UTC-5, @TiddlyTweeter wrote:
>
> Cari tutti
>
> I'm wondering if anyone has made a bulk Tiddler Population Maker (TPM)?
>
> Here is a Use Case...
>
> *STORYBOARDING*
>
> 1 - You need 100 Tiddlers creating to cover the main scenes of a movie. 
> You need them all in advance because you may be writing main scene 037 well 
> before you write scene 001 but you need to see it in context.
>
> 2 - The NAMING of them can be as simple as "TITLE xxx" where xxx = from 
> 001 to 100 and Title = user input.
>
> 3 - It would be a bonus to be able to create a CAPTION field at the same 
> time that is "Minute xxx" where xxx = (the same numbering as 2) from 001 to 
> 100.
>
> 4 - It would be a great bonus to be able to add a TAG to all 100 like 
> "TAG" where TAG = user input.
>
> Maybe its been done already?
>
> Many thanks for any pointers or assistance.
>
> Best wishes
> 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/11a0f333-0f17-4c39-a03e-70cf67aad8f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Background color from color palette

2018-01-14 Thread stevesuny
Jeremy et al thanks! This almost worked as proposed, but I figured it out. 
I was having trouble getting the "#" into the field value.

Here is the working macro, currently implemented at DesignWriteStudio 

 (this 
is for a class I am teaching this semester at SUNY Polytechnic Institute). 
I had to do some odd dancing around in the defines to get the "#" to show 
up in the background-color field.

Questions now: 

<1> on phone, the "prev" and "next" buttons are not properly displaying; 
too far over to the left
<2> I'd like to set the slidenum field to be the same name as the 
"slidetag"  -- so that a given tiddler can be used/ordered in multiple 
slideshows. That would require a transclusion of some sort that I haven't 
begun to figure out. 
<3> I'd hope to be able to color the slide in the same  as displaying 
the slides, but that may not be possible? As you can see, I run through the 
slides on a  twice: once to set the bg color, once to open into the 
story river.

And I hope to bundle this as a plugin (soon).

Thannks!

//steve.

(macro code follows)








\define bgcolor() {{$:/palettes/DWS##$(slidenum)$}}
\define bgcolor2() #$(rgb)$
\define punchshow(slidetag)




<$set name=slidetag value="$slidetag$">



<$button set="$:/state/sidebar" setTo="no" 
tooltip={{$:/language/Buttons/HideSideBar/Hint}} 
aria-label={{$:/language/Buttons/HideSideBar/Caption}} >
<$action-sendmessage $message="tm-close-all-tiddlers"/>
<$action-setfield $tiddler="$:/theme" text="$:/themes/tiddlywiki/punch"/>
<$action-setfield $tiddler="$:/core/ui/ViewTemplate/next" 
tags="$:/tags/ViewTemplate"/>
<$action-setfield $tiddler="$:/core/ui/ViewTemplate/prev" 
tags="$:/tags/ViewTemplate"/>
<$action-setfield $tiddler="$:/core/ui/ViewTemplate/endslideshow" 
tags="$:/tags/ViewTemplate"/>


<$action-setfield $tiddler="$:/fromTiddler" text=<>/>


<$list filter="[tag!nsort[slidenum]]">
<$vars slidenum={{!!slidenum}}>
<$wikify name="rgb" text=<>>
<$action-setfield background-color=<>/>





<$list filter="[tag!nsort[slidenum]]">
<$action-navigate $to=<> />

View slideshow <>

\end

\define endslideshow()
<$button set="$:/state/sidebar" setTo="no">
<$action-setfield $tiddler="$:/theme" text="$:/themes/tiddlywiki/heavier"/>
<$action-listops $tiddler="$:/core/ui/ViewTemplate/next" $field="tags" 
$filter="[[]]"/>
<$action-listops $tiddler="$:/core/ui/ViewTemplate/prev" $field="tags" 
$filter="[[]]"/>
<$action-listops $tiddler="$:/core/ui/ViewTemplate/endslideshow" 
$field="tags" $filter="[[]]"/>
<$action-sendmessage $message="tm-close-all-tiddlers"/>
<$action-navigate $to={{$:/fromTiddler}}/>
End Slideshow

\end

-- 
You received this message because you are subscribed to the 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/84ca5ae2-1b65-45ca-aec5-48b501f68ef0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Calling all TiddlyServer users

2018-01-14 Thread @TiddlyTweeter
Ciao Arlen

I found it stable and works WELL.

For MYSELF I'm CONTENT.

For NEW USERS I don't think its quite so easy at first. I'm not quite sure 
what the solution is.

One thought I had before was making it bit more like an "installer", with 
some interactive questions that then auto-make settings on initial setup. 
But I guess that's quite complicated to pull off cross platform? But I'd 
like leave the thought of that at least.

You are right to ask for money.

Best wishes
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/cba670bb-df01-46d5-82ab-fe79155a20ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Query: Has anyone made a BULK Tiddler Creator?

2018-01-14 Thread @TiddlyTweeter
Cari tutti

I'm wondering if anyone has made a bulk Tiddler Population Maker (TPM)?

Here is a Use Case...

*STORYBOARDING*

1 - You need 100 Tiddlers creating to cover the main scenes of a movie. You 
need them all in advance because you may be writing main scene 037 well 
before you write scene 001 but you need to see it in context.

2 - The NAMING of them can be as simple as "TITLE xxx" where xxx = from 001 
to 100 and Title = user input.

3 - It would be a bonus to be able to create a CAPTION field at the same 
time that is "Minute xxx" where xxx = (the same numbering as 2) from 001 to 
100.

4 - It would be a great bonus to be able to add a TAG to all 100 like "TAG" 
where TAG = user input.

Maybe its been done already?

Many thanks for any pointers or assistance.

Best wishes
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/3f8804d3-60d2-4e7b-8d6b-f1a621ebc769%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread @TiddlyTweeter
Ciao BurningTreeC & @coda coder

Nice! Functionally very useful.

Being able to have a layout grid where you can leave some slots free is 
extremely useful for some use cases.

For instance, returning to the storyboarding Use Case, you often know the 
middle of the story before the start. Its much better to be able to see the 
empty spaces once you've written the middle sections. It helps you know 
what needs filling in.

Another UseCase would be being able to populate different columns with 
different types of Tiddler (e.g. col 1 -- editor plugin links; col 2 -- 
Twitter feed for hashtags #tiddlyWiki + #editor; col3 -- notes on editor 
usage). They could all have different numbers of Tiddlers, best shown in 
specific columns that are each literally & semantically aligned with their 
purpose.

Being able to remove empty spaces is a real plus! 

Great stuff!

Best wishes
Josiah  

BurningTreeC wrote:@all again,

*I've moved the 3-grid exchangable tiddler-thing to: 
**http://muritest-testing.tiddlyspot.com/ 
 **()ha*

*on the demo page now there's a nice button to remove borders and spaces 
between tiddlers.*
*with everything hidden it looks nice. had to share*

-- 
You received this message because you are subscribed to the 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/572ca2a7-b81c-4328-b79d-bc433ef1d978%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread BurningTreeC

>
>
>> there's also a test going on on the demo site 
>> http://muritest.tiddlyspot.com
>>
>> *3 responsive, flexible grids with tiddlers exchangable between them  *(the 
>> currently embarrassing limitation: only one tiddler is allowed in the story 
>> river so that this doesn't throw errors or behaves strange)
>>
>>
> It looks very good.  Minor issue: I was unable to drag from column 1 to 
> column 3, or v.v. 
>
> I think TiddlyTweeter would like the central column to be his storyboard 
> with infinite space to the right.  Columns1 could be sources (potential 
> additions to the story) and column3 a list of all storyboards.  The height 
> of column 2 *must* be fixed (i.e. 
>
> *no vertical scrolling)*
>
@coda coder ... you can position the (currently) left and right column by 
css
the <$muuri> widget now accepts a new attribute "grids" like 
grids="1" / grids="2" / grids="3" (that's the max, I don't know if more 
makes sense)

these things come with the next versions

-- 
You received this message because you are subscribed to the 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/1bf417ff-eb67-4a32-994c-95c6887a2593%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread BurningTreeC
@all again,

*I've moved the 3-grid exchangable tiddler-thing to: 
**http://muritest-testing.tiddlyspot.com/ 
**()ha*

*on the demo page now there's a nice button to remove borders and spaces 
between tiddlers.*
*with everything hidden it looks nice. had to share*


all the best,
Simon

-- 
You received this message because you are subscribed to the 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/51b16224-47e2-446c-b0bc-d31f2db1a398%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread BurningTreeC
@coda coder,

thanks!

Am Sonntag, 14. Januar 2018 15:46:08 UTC+1 schrieb coda coder:
>
>
>
> On Sunday, January 14, 2018 at 8:36:49 AM UTC-6, BurningTreeC wrote:
>>
>> @all,
>>
>> there's also a test going on on the demo site 
>> http://muritest.tiddlyspot.com
>>
>> *3 responsive, flexible grids with tiddlers exchangable between them  *(the 
>> currently embarrassing limitation: only one tiddler is allowed in the story 
>> river so that this doesn't throw errors or behaves strange)
>>
>>
> It looks very good.  Minor issue: I was unable to drag from column 1 to 
> column 3, or v.v. 
>

yes, I have to sort that out. dragging directly doesn't work 

>
> I think TiddlyTweeter would like the central column to be his storyboard 
> with infinite space to the right.  Columns1 could be sources (potential 
> additions to the story) and column3 a list of all storyboards.  The height 
> of column 2 *must* be fixed (i.e. 
>
>
> *no vertical scrolling)*
>
both the left and the right column are fixed, they won't scroll

Simon 

-- 
You received this message because you are subscribed to the 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/523b4c62-1394-4f52-81e3-b20110e8674f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread coda coder


On Sunday, January 14, 2018 at 8:36:49 AM UTC-6, BurningTreeC wrote:
>
> @all,
>
> there's also a test going on on the demo site 
> http://muritest.tiddlyspot.com
>
> *3 responsive, flexible grids with tiddlers exchangable between them  *(the 
> currently embarrassing limitation: only one tiddler is allowed in the story 
> river so that this doesn't throw errors or behaves strange)
>
>
It looks very good.  Minor issue: I was unable to drag from column 1 to 
column 3, or v.v. 

I think TiddlyTweeter would like the central column to be his storyboard 
with infinite space to the right.  Columns1 could be sources (potential 
additions to the story) and column3 a list of all storyboards.  The height 
of column 2 *must* be fixed (i.e. 


*no vertical scrolling)*

-- 
You received this message because you are subscribed to the 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/18c09e78-5a2b-4c36-954e-5510b3608eeb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread BurningTreeC
@all,

there's also a test going on on the demo site http://muritest.tiddlyspot.com

*3 responsive, flexible grids with tiddlers exchangable between them  *(the 
currently embarrassing limitation: only one tiddler is allowed in the story 
river so that this doesn't throw errors or behaves strange)

what do you think about this?
could this be useful, how could this be used?

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/5180a9d8-0e47-4a16-8ff1-a940eaed153d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread BurningTreeC


> Ciao BurningTreeC & TonyM
>
> Right. Its on one hand just saving a story river. Fully compatible with 
> what is.
>
> HOWEVER, isn't it also for grids about also saving a LOOK?
>
> Since gridded layouts really liberate design on layout, colours, spacing 
> etc?
>
> I guess I wasn't clear about what I meant. Which I think is actually, on 
> reflection. TWO things ...
>
> 1 - Story River
>
> 2 - Visuality of layout.
>
> Say, for instance, through a gridded layout I emulate TalkyTalky 
> 
>
> Could I save the LAYOUT STYLE as well as the sequence? 
>

yes, you could ... for what's already doable with tiddlywiki, and that's a 
lot.
the tiddler widths you apply by pinch-zoom are only temporary, they 
wouldn't get saved at the moment, but if you apply widths with tags or the 
span field that's solved, too.
one could also just make a span-field toggle-button or whatever.
(I kinda like the pinch-zoom how it is btw (on desktop with touch) without 
saving the width)

so... yes, if one wants to save the storyriver with the states of the bars, 
titles hidden, and whatever more ... that can be done with the click of a 
button.

>
> Just thoughts ...
>
> Best wishes
> Josiah
>
> BurningTreeC wrote:
>>> Saving grids is just a button that saves the storylist in another field 
>>> or tiddler
>>> I like the tiddly way of being able to open everything wherever,whenever 
>>> (shakira shakira)
>>>
>>> I don't really want to limit a view to special use-cases, everything 
>>> should be doable everywhere,
>>> I just want to provide flexibility in viewing and workflows
>>>
>>
> TonyM commented:
>>
>> Just a little remainder, to keep this wonderful tool generic against 
>>> tiddlywiki design.
>>>
>>
> @TiddlyTweeter
>
>> *SAVE THE GRIDS?*
>>
>> Like saving a story river. But in Grid Mode.
>>
>> Use cases: I imagine one grid for substantive WORK, and another grid that 
>> is, say, concerned with CONFIGURATION. I think the point is that we might 
>> be able to do most everything via gridded layouts.
>>
>
>  
>

-- 
You received this message because you are subscribed to the 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/0d3acbc6-c73b-42e0-b6e9-4614f539f080%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread @TiddlyTweeter
*SEAMLESS GRID* 

As I play more with TiddlyTouch lots of ideas come.

The flex on it is SO good.

For instance, with... 

1 - CSS that eliminated all space between Tiddlers

2 - setting of 1 for "toggle columns" 

3 - "align Tiddlers vertically"

You'd have TalkyTalky  without needing 
to add it--apart from the downwards navigation button.

Best wishes
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/4d85b83a-7f19-4348-a2fd-a49f53cd75c5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread @TiddlyTweeter
Ciao BurningTreeC & TonyM

Right. Its on one hand just saving a story river. Fully compatible with 
what is.

HOWEVER, isn't it also for grids about also saving a LOOK?

Since gridded layouts really liberate design on layout, colours, spacing 
etc?

I guess I wasn't clear about what I meant. Which I think is actually, on 
reflection. TWO things ...

1 - Story River

2 - Visuality of layout.

Say, for instance, through a gridded layout I emulate TalkyTalky 


Could I save the LAYOUT STYLE as well as the sequence? 

Just thoughts ...

Best wishes
Josiah

BurningTreeC wrote:
>> Saving grids is just a button that saves the storylist in another field 
>> or tiddler
>> I like the tiddly way of being able to open everything wherever,whenever 
>> (shakira shakira)
>>
>> I don't really want to limit a view to special use-cases, everything 
>> should be doable everywhere,
>> I just want to provide flexibility in viewing and workflows
>>
>
TonyM commented:
>
> Just a little remainder, to keep this wonderful tool generic against 
>> tiddlywiki design.
>>
>
@TiddlyTweeter

> *SAVE THE GRIDS?*
>
> Like saving a story river. But in Grid Mode.
>
> Use cases: I imagine one grid for substantive WORK, and another grid that 
> is, say, concerned with CONFIGURATION. I think the point is that we might 
> be able to do most everything via gridded layouts.
>

 

-- 
You received this message because you are subscribed to the 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/64865899-f73e-4e73-a966-1d632bcf19aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Replace copy/paste bullets with TW Style?

2018-01-14 Thread Stobot
Thanks TonyM,

Unfortunately either copy/pasting or dragging/dropping doesn't give me the 
HTML (don't know that's what most Office programs use). Below is a more 
detailed example with the "after"

Example content from Outlook

This is a list

   - Point 1 
   - Point 2 
  - 2a 
  - 2b 
 - 2ai 
 - 2aii 
  - 2c 
   - Point 3 

Copy/Pasted into TiddlyWiki returns:
• Point 1
• Point 2
o 2a
o 2b
 2ai
 2aii
o 2c
• Point 3

The character codes appear to be:
First: 0149 followed by 0032
Second: 0111 followed by 0032
Third: 0063 followed by 0032

So I believe this should be easy with some kind of find/replace plugin. 
Multiple times per day right now I manually go in and hand-replace the dot 
with *, open dot with **, square dot with *** etc.

I finally found the "CSV to Table" copy/paste thing I was referring to was 
http://tobibeer.github.io/tb5/#convertable. I use this all the time to 
copy/paste ranges from Excel into my wiki. I imagine it essentially does 
find/replace based on tab characters or something replacing with pipes. 

Does that help explain it better? Sometimes I feel like I'm one of the only 
people here in a traditional old-fashioned corporate environment running 
Microsoft tools, but I appreciate the help! 

-- 
You received this message because you are subscribed to the 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/b6e9671a-ddf6-4d8f-9a6c-6ae304a01e96%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-14 Thread 'Surya' via TiddlyWiki
Hi Birthe,

you gave me an idea :-)

Since a few years I make my body hygiene products and my cleaning supplies 
by myself to avoid palm oil.
It was a hard work to find recipes, that are simple, absolutely without 
palm oil and with a good result. To have products, that are comparable with 
products to buy.

Because of this long work and because I'd like to tell more people, how 
easy & cheap the manufacturing is and why it is important for the world- I 
have been looking how to publish in the web. My only found solution was on 
my google+-site. I don't like google and googlemail- but I have to have it, 
because of having android devices.
For other solutions I always had to publish my address too or/and had to 
pay for. But I absolutely don't want to publish my adress anywhere in the 
web.

But maybe with a wiki on tiddlyspot, such a website would be possible
I would then like to build a wiki which is on the one side a german manual 
for my features / solutions for the wiki itself, like "how to build a 
tasklist like mine" and so on.
And on the other side it would be a site for the diy-recipes.


But my thoughts about that:

   - As a beginner of tiddlywiki you need a lot of help. There is no ONE 
   address to get help for EVERYTHING related to tiddlywiki. There are 
   hundreds of addresses. And in these hundreds of addresses you find a lot of 
   the same answers / solutions and a lot of different.
  - If I make such a manual of my solutions, it is just another 
  help-address in addition to the other hundreds
   
And going to tiddlyspot and surfing there around:
   
   - A lot of links there don't work- e.g. mentioned wikis there
   - For my recipes and also for the manuals I would write there I would 
   like to have 2 features:
  - a feature to comment tiddlers for people reading that
 - it is mentioned on tiddlyspot, that this is possible with the 
 HaloscanMacro. But going to Download HaloscanMacro I get "The resource 
you 
 are looking for has been removed, had its name changed, or is 
temporarily 
 unavailable." .
  - a feature to test solutions directly on that wiki. I find that very 
  useful- I use it a lot to understand, what a solutions does, how it does 
  that and if it could be useful for me
 - I couldn't find, how it would be possible to implement such a 
 feature
  
Nice day for you, Surya

-- 
You received this message because you are subscribed to the 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/11c5b99c-1ff3-479a-90bd-ab9f73722e20%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] Local files with TiddlyDesktop or TiddlyServer?

2018-01-14 Thread TonyM
Jon

Investigate writing your own exporter using the one already there. I think 
tiddlywiki.com will lead you there or search this forum.

So far I can only save as registered file types but you may be able to 
overwrite existing files. Unless you use a file save dialogue with appropriate 
browser setting you will most likely be restricted to the download directory.

See how you go, I can give more info.

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/3cc88941-0b4b-4260-9ee5-3dcca912dc29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] Local files with TiddlyDesktop or TiddlyServer?

2018-01-14 Thread okido
Hello Jon,

You can use filesaver.js, see on github, 
https://github.com/eligrey/FileSaver.js/
The plugin for Tiddlywiki Classic is attached.
An example to use with InlineJavascript is included.
For your macro request please let me know what tiddler parts you want to 
save.

Posting the file on this forum gives an error at the moment, I will try 
later.

Have a nice day, Okido


Op zaterdag 13 januari 2018 00:08:18 UTC+1 schreef Jon:
>
> Hi,
>
> I have some highly modified TWCs that are important but way too much 
> trouble to convert to TW5 (until maybe retirement puts a lot of time into 
> my hands).
>
> It would be very useful for a couple of these to be able to read and write 
> local files. Impossible with current browsers, but perhaps possible with 
> TiddlyDesktop or TiddlyServer? If so, can someone spoon-feed me some basics 
> to help me get started? I'm experienced with TW, but not at all experienced 
> with nodejs or nw. The files could be either ordinary text files or 
> externally stored tiddlers, it doesn't really matter, as long as I can read 
> and write them with javascript.
>
> Thanks!
> Jon
>
>

-- 
You received this message because you are subscribed to the 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/8e2bb695-2ea6-458b-aae7-0e309de50cff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to: Automatic setting field value if a tiddler has a special tag

2018-01-14 Thread 'Surya' via TiddlyWiki
Hi Mark,

I made a tab in the sidebar with a tiddler. In this tiddler I have table of 
content with

<>


Does your idea work there? Would I have to modify it?
The tiddlers, which should to be shown in another colour are tagged with 
"Pflanzen" and "Ja".

-- 
You received this message because you are subscribed to the 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/f5297c40-c1aa-4892-b3e4-90370b6bbfa8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread BurningTreeC
@all,

there's also a test going on on the demo site http://muritest.tiddlyspot.com

what do you think about this?
could this be useful, how could this be used?

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/8f7dd8d6-94d0-48f4-b4d9-e4fcc0b282ac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Calling all TiddlyServer users

2018-01-14 Thread BurningTreeC
Hello @Arlen Beiler,

what I like most is that it restarts instantly with pm2 (pm2 gracefulReload 
mytiddlyserverscript --> done)

I couldn't get such a fast reload performance using tiddlywiki server 
edition

thanks for TiddlyServer,

Simon

-- 
You received this message because you are subscribed to the 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/7e85dbdc-15a0-4e56-817b-78caa880ad76%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Calling all TiddlyServer users

2018-01-14 Thread TonyM
Arlen

1. What do you like about it?

   - It works very well once setup and supports my single file wikis and 
   node JS installs all from one IP Address or local host in the browser
   - I use it all day, and every day on my laptop/desktop

2. What is one improvement that would significantly make it more usable for 
you?
Sorry 3.

1. I must set the settings.json file is fiddly and error prone to configure 
(I like adding user friendly paths so I set and forget, my example attached)
2. I must configure "etagWindow": 3, and "etag": "", for it to be 
of any practical use
3.  It would be nice if some default paths where set so one could start 
using it from first install, see example in attached settings.json  eg 
"C:": "C:\\", (this would help novice users, alternatives for each OS)

 
3. What use case should it be extended to fit, in your opinion?

   - Provide methods to host on an always on device to pass through the 
   home router, and be available anywhere (secured IP Port SSL?)
   Not technically TiddlyServer but it would extend its use  to a great 
   extent.

4. What, if any, would you say is its Achilles's heel?

The Settings.json file

Note: in settings.json
"Studio8" and "LGV20 at home" are other nodeJS hosted TiddlyWIkis


A former manager/boss I respect said if you come to me with a problem also 
bring some possible solutions if at all possible.

I believe the Settings.json file could be given a friendly UI in TiddlyWiki 
to add, remove and select paths and generate an up to date settings.json  
you can export to the folder and use, after a usable default config.


Thanks so much for this valuable tool.

Regardfs
Tony
 

On Sunday, 14 January 2018 07:45:35 UTC+11, Arlen Beiler wrote:
>
> Hello everyone, 
> I would like to hear your thoughts on TiddlyServer now that it has been 
> out for a few months. So here are a few questions.
>
> 1. What do you like about it?
> 2. What is one improvement that would significantly make it more usable 
> for you?
> 3. What use case should it be extended to fit, in your opinion?
> 4. What, if any, would you say is its Achilles's heel?
>
> The answers will help me know where to direct my focus next.
>
> Of course, continued maintenance requires time, and time requires income. 
> My work has nothing to do with Tiddlywiki and so there is no way 
> financially for me to maintain TiddlyServer on a regular basis. If you 
> support TiddlyServer financially, it will allow me to direct more of my 
> attention to developing it. I enjoy working with TiddlyServer and 
> TiddlyWiki but I am not able to direct a lot of attention to it at the 
> present. 
>
> There is, of course, no reason you need to, but it seemed right and fair 
> to make my current situation known in case anyone would like to contribute. 
> Be sure to mention TiddlyServer if you contribute. Or mention a PR or Issue 
> number on the TiddlyServer repo. I guarantee you that will get my attention 
> :)
>
> https://www.paypal.me/Arlen22
>
> And just so you know, a settings page is already next on the roadmap. I 
> figured I'd mention that, because it has been requested quite a bit. 
>
> Thank you,
> Arlen
>

-- 
You received this message because you are subscribed to the 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/76aaf2d0-77de-4cf6-8a20-3d1ec337b402%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


settings.json
Description: application/json


[tw] Re: TiddlyTouch/MuuriTouch

2018-01-14 Thread BurningTreeC
hello everyone,

Am Freitag, 12. Januar 2018 20:08:47 UTC+1 schrieb BurningTreeC:
>
>
>>
>> *DYNAMIC REDUCTIVE FILTERS?*One of the neat things that muuri js enables 
>> is dynamic filtering (https://haltu.github.io/muuri/). Whilst TiddlyWiki 
>> is good on reductive filtering in the sidebar search I can't say I've seen 
>> a live reductive filter for open Tiddlers like muuri does yet.
>>
>
> I've seen that and I'm planning with this search functionality, but I'd 
> like to discuss what should be used as filter expression - easiest thing 
> would be the tiddler title ... I have to think about this
>
>>
>> Sticking with TT. Imagine you opened, via an AUTO-POPULATE, 200 Tiddlers 
>> with tag "MyStuff". But then you need to *reduce* what is visible to the 
>> 5 that are also tagged "Rabbit".
>>
>> *Q: Could that be done?* 
>>
>
> yep! could be done 
>
>>
>>
@TiddlyTweeter was talking about this filter function for the muuri grid, 
and I'd like to ask what you think it should use as content for filtering 
in TiddlyTouch

best wishes,
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/00782fc3-b6d8-4145-b42e-3e6833d829b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.