Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-13 Thread Damon Pritchett
Hey Springer,

Sorry, I should have done that in the first place. I decided I wanted to do 
this because of the way I was filtering the tiddlers that I wanted in the 
tables. I'm already filtering on the tag that I wanted excluded so I know 
that everyone of the table rows has that tag. I wanted to be able to 
quickly see all of the other tags present. It also allows me to see which 
tiddlers don't have tags aside from the one I didn't want displayed.

Here's my template tiddler:

<$reveal type="nomatch" stateTitle=<> stateIndex="mode" 
text="edit" tag="td">
<$list filter="[titletags[]] -[!tag]">

<$set name="transclusion" value=<>>
<$macrocall $name="tag-pill-body" tag=<> icon={{!!icon}} 
colour={{!!color}} palette={{$:/palette}} element-tag="""$button""" 
element-attributes="""popup=<> 
dragFilter='[all[current]tagging[]]' tag='span'"""/>
<$reveal state=<> style="position:absolute; z-index:;" 
type="popup" position="below" animate="yes" class="tc-drop-down">
<$set name="tv-show-missing-links" value="yes">
<$transclude tiddler="$:/core/ui/ListItemTemplate"/>

<$list 
filter="[all[shadows+tiddlers]tag[$:/tags/TagDropdown]!has[draft.of]]" 
variable="listItem"> 
<$transclude tiddler=<>/> 


<$macrocall $name="list-tagged-draggable" tag=<>/>





<$reveal type="match" stateTitle=<> stateIndex="mode" 
text="edit" tag="td">

<$list filter="[getindex[sortIndex]match]" 
variable=ignore
emptyMessage=<> >
 <>



And here's my call of the dynamic tables:

Enter the name or a filing date for charters. The date format is -mm-dd. 
Search is not case sensitive on the name.


<$set name="filteredtag" value="Railroads">


<$edit-text tiddler="$:/temp/mysearch/input" tag="input" default="" 
placeholder="-mm-dd or name" /> 
<$button> search
  <$action-setfield $tiddler="$:/temp/mysearch" text={{$:/temp/mysearch/
input}} />

<$button> reset
<$action-setfield $tiddler="$:/temp/mysearch" text=""/>
<$action-setfield $tiddler="$:/temp/mysearch/input" text=""/>



Result count: <$count filter="[tagsearch:charterfiled{$:/temp/
mysearch}] [tagsearch:title{$:/temp/mysearch}]"/>


<$reveal state="$:/temp/mysearch" type="nomatch" text="">
  <$list filter="[tag{$:/temp/mysearch}minlength[3]]" 
emptyMessage="Search is too short" >
<$list filter="[tag[$:/temp/mysearch]has[text]]" 
emptyMessage="No search string" variable=nul>
  
>
>
>
>
  

  



I have four dynamic tables because I have a lot of information that I want 
displayed and I want to keep it all in the tiddler width without the 
columns being too narrow.

If anyone sees something that I could have done better, I'm all ears (or 
eyes in this case).

Damon




On Saturday, June 13, 2020 at 3:32:27 PM UTC-7, springer wrote:
>
> Damon, might you paste in what your resulting code looked like, to give 
> others a head start on tinkering?
>
> Even before you posted, I was wavering over whether I wanted this very 
> function. (I had tentatively decided that sometimes I *do* want to see all 
> tags, so that it's easier to pop into edit mode and delete the tag from a 
> row/tiddler that ought not to have it. But usually I don't want to see the 
> tag on which the dynamic table hinger, since it's redundant information. So 
> a column for "additional_tags" would be ideal.)
>
> -Springer
>
> On Saturday, June 13, 2020 at 5:45:28 PM UTC-4, Damon Pritchett wrote:
>>
>> Success! I wrapped the list widget (which contained the dynamic tables 
>> call) in a set widget which sets a variable with the value of the tag I 
>> want to exclude. I also changed my template tiddler to use the variable 
>> instead of the tag directly. Works beautifully!
>>
>> Thanks so much!
>>
>> Damon
>>
>>
>> On Friday, June 12, 2020 at 1:01:21 PM UTC-7, Mohammad wrote:
>>>
>>> Hi Damon,
>>>  Good luck for new development! You are on the right track!
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>>
>>> On Fri, Jun 12, 2020 at 9:47 PM Damon Pritchett  
>>> wrote:
>>>
 Thanks Mohammad,

 As usual, it took me two or three times reading the tutorial for the 
 li

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-13 Thread springer
Damon, might you paste in what your resulting code looked like, to give 
others a head start on tinkering?

Even before you posted, I was wavering over whether I wanted this very 
function. (I had tentatively decided that sometimes I *do* want to see all 
tags, so that it's easier to pop into edit mode and delete the tag from a 
row/tiddler that ought not to have it. But usually I don't want to see the 
tag on which the dynamic table hinger, since it's redundant information. So 
a column for "additional_tags" would be ideal.)

-Springer

On Saturday, June 13, 2020 at 5:45:28 PM UTC-4, Damon Pritchett wrote:
>
> Success! I wrapped the list widget (which contained the dynamic tables 
> call) in a set widget which sets a variable with the value of the tag I 
> want to exclude. I also changed my template tiddler to use the variable 
> instead of the tag directly. Works beautifully!
>
> Thanks so much!
>
> Damon
>
>
> On Friday, June 12, 2020 at 1:01:21 PM UTC-7, Mohammad wrote:
>>
>> Hi Damon,
>>  Good luck for new development! You are on the right track!
>>
>>
>> Best wishes
>> Mohammad
>>
>>
>> On Fri, Jun 12, 2020 at 9:47 PM Damon Pritchett  
>> wrote:
>>
>>> Thanks Mohammad,
>>>
>>> As usual, it took me two or three times reading the tutorial for the 
>>> light bulb to come on. The new template that I created works just like I 
>>> wanted, but is very specific to the tag I'm using. I'm going to see about 
>>> using a variable to pass which tag I don't want displayed so that it can be 
>>> more generic.
>>>
>>> Damon
>>>
>>>
>>> On Thursday, June 11, 2020 at 10:06:51 PM UTC-7, Mohammad wrote:

 Damon,
  In Shiraz tutorial this has been explained! but simply for each field 
 passed to table-dynamic macro, it looks for a template.
  See the naming rules for tags template. That's all.

  For start you can clone Shiraz template and rename them.


 Best wishes
 Mohammad


 On Fri, Jun 12, 2020 at 1:52 AM Damon Pritchett  
 wrote:

> Mohammad,
>
> I was able to figure out what modifications to the tags template to 
> yield the desired result. My next question is how can I create my own 
> custom tags template that can be used by the dynamic tables macro without 
> modifying your default tags template?
>
> Damon
>
>
>
> On Thursday, June 11, 2020 at 6:36:49 AM UTC-7, Mohammad wrote:
>>
>> If you mean to NOT display certain tags, with the current code it is 
>> not possible! BUT you can hack the tags template in Shiraz
>> to meet your requirements.
>>
>>
>> Best wishes
>> Mohammad
>>
>>
>> On Thu, Jun 11, 2020 at 6:34 AM Damon Pritchett  
>> wrote:
>>
>>> Hello Mohammad,
>>>
>>> I have a dynamic tables question. I have my dynamic tables call from 
>>> within a list widget so that only tiddlers with a certain tag will 
>>> populate 
>>> the table. One of my columns is tags because I want to see what other 
>>> tags 
>>> are being used for each of the tiddlers. Is it possible to remove the 
>>> tag 
>>> I'm filtering on from the dynamic table? I suspect that it's not 
>>> without 
>>> modifying the macro, but wanted to ask the question just in case I'm 
>>> missing something.
>>>
>>> Thanks,
>>>
>>> Damon
>>>
>>> On Thursday, February 6, 2020 at 2:28:31 PM UTC-7, Mohammad wrote:

 *Announcement:Shiraz plugin*
 *Date: Feb 7th, 2020*
 *Release: 2.0.15 beta*
 *Status: beta under development*

 A new beta update is available.

 This update contains tons of new features and improved 
 documentation. The focus is now on dynamics tables.
 Dynamic tables in Shiraz is a subset lite version of Revolutionary 
 plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.

 This version has an example of creating task manager using table-fd 
 which demonstrate how powerful are dynamic tables in Shiraz!
 All of these are based the wonderful transclusion in Tiddlywiki.


 As always I welcome all your feedback and comments and hope your 
 evaluation help improving the Shiraz plugin!

 *IMPORTANT NOTE:*
  Those who update from Shiraz 2 beta note that, the table-fd, 
 table-id parameters are renamed for better compatibility with other 
 part of 
 Shiraz plugin.

 A tutorial of latest changes has been attached!

 Demo: https://kookma.github.io/Shiraz/
 Code: https://github.com/kookma/Shiraz

 Star it if you like it and send your feedback!
 Documentation proof reading for English is welcome!


 A permview 
 

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-13 Thread Damon Pritchett
Success! I wrapped the list widget (which contained the dynamic tables 
call) in a set widget which sets a variable with the value of the tag I 
want to exclude. I also changed my template tiddler to use the variable 
instead of the tag directly. Works beautifully!

Thanks so much!

Damon


On Friday, June 12, 2020 at 1:01:21 PM UTC-7, Mohammad wrote:
>
> Hi Damon,
>  Good luck for new development! You are on the right track!
>
>
> Best wishes
> Mohammad
>
>
> On Fri, Jun 12, 2020 at 9:47 PM Damon Pritchett  > wrote:
>
>> Thanks Mohammad,
>>
>> As usual, it took me two or three times reading the tutorial for the 
>> light bulb to come on. The new template that I created works just like I 
>> wanted, but is very specific to the tag I'm using. I'm going to see about 
>> using a variable to pass which tag I don't want displayed so that it can be 
>> more generic.
>>
>> Damon
>>
>>
>> On Thursday, June 11, 2020 at 10:06:51 PM UTC-7, Mohammad wrote:
>>>
>>> Damon,
>>>  In Shiraz tutorial this has been explained! but simply for each field 
>>> passed to table-dynamic macro, it looks for a template.
>>>  See the naming rules for tags template. That's all.
>>>
>>>  For start you can clone Shiraz template and rename them.
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>>
>>> On Fri, Jun 12, 2020 at 1:52 AM Damon Pritchett  
>>> wrote:
>>>
 Mohammad,

 I was able to figure out what modifications to the tags template to 
 yield the desired result. My next question is how can I create my own 
 custom tags template that can be used by the dynamic tables macro without 
 modifying your default tags template?

 Damon



 On Thursday, June 11, 2020 at 6:36:49 AM UTC-7, Mohammad wrote:
>
> If you mean to NOT display certain tags, with the current code it is 
> not possible! BUT you can hack the tags template in Shiraz
> to meet your requirements.
>
>
> Best wishes
> Mohammad
>
>
> On Thu, Jun 11, 2020 at 6:34 AM Damon Pritchett  
> wrote:
>
>> Hello Mohammad,
>>
>> I have a dynamic tables question. I have my dynamic tables call from 
>> within a list widget so that only tiddlers with a certain tag will 
>> populate 
>> the table. One of my columns is tags because I want to see what other 
>> tags 
>> are being used for each of the tiddlers. Is it possible to remove the 
>> tag 
>> I'm filtering on from the dynamic table? I suspect that it's not without 
>> modifying the macro, but wanted to ask the question just in case I'm 
>> missing something.
>>
>> Thanks,
>>
>> Damon
>>
>> On Thursday, February 6, 2020 at 2:28:31 PM UTC-7, Mohammad wrote:
>>>
>>> *Announcement:Shiraz plugin*
>>> *Date: Feb 7th, 2020*
>>> *Release: 2.0.15 beta*
>>> *Status: beta under development*
>>>
>>> A new beta update is available.
>>>
>>> This update contains tons of new features and improved 
>>> documentation. The focus is now on dynamics tables.
>>> Dynamic tables in Shiraz is a subset lite version of Revolutionary 
>>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>>
>>> This version has an example of creating task manager using table-fd 
>>> which demonstrate how powerful are dynamic tables in Shiraz!
>>> All of these are based the wonderful transclusion in Tiddlywiki.
>>>
>>>
>>> As always I welcome all your feedback and comments and hope your 
>>> evaluation help improving the Shiraz plugin!
>>>
>>> *IMPORTANT NOTE:*
>>>  Those who update from Shiraz 2 beta note that, the table-fd, 
>>> table-id parameters are renamed for better compatibility with other 
>>> part of 
>>> Shiraz plugin.
>>>
>>> A tutorial of latest changes has been attached!
>>>
>>> Demo: https://kookma.github.io/Shiraz/
>>> Code: https://github.com/kookma/Shiraz
>>>
>>> Star it if you like it and send your feedback!
>>> Documentation proof reading for English is welcome!
>>>
>>>
>>> A permview 
>>> to
>>>  
>>> see the latest changes (like tutorial)
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>> Revision 2.0.15
>>>
>>>- Date: [6th Feb 2020]
>>>- [NEW] the table-fd supports special column template 
>>>tbl-checkbox
>>>- [NEW] the table-fd supports column templates priority, status, 
>>>due-date
>>>- [NEW] task manager example using table-fd
>>>

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-12 Thread Mohammad Rahmani
Hi Damon,
 Good luck for new development! You are on the right track!


Best wishes
Mohammad


On Fri, Jun 12, 2020 at 9:47 PM Damon Pritchett 
wrote:

> Thanks Mohammad,
>
> As usual, it took me two or three times reading the tutorial for the light
> bulb to come on. The new template that I created works just like I wanted,
> but is very specific to the tag I'm using. I'm going to see about using a
> variable to pass which tag I don't want displayed so that it can be more
> generic.
>
> Damon
>
>
> On Thursday, June 11, 2020 at 10:06:51 PM UTC-7, Mohammad wrote:
>>
>> Damon,
>>  In Shiraz tutorial this has been explained! but simply for each field
>> passed to table-dynamic macro, it looks for a template.
>>  See the naming rules for tags template. That's all.
>>
>>  For start you can clone Shiraz template and rename them.
>>
>>
>> Best wishes
>> Mohammad
>>
>>
>> On Fri, Jun 12, 2020 at 1:52 AM Damon Pritchett 
>> wrote:
>>
>>> Mohammad,
>>>
>>> I was able to figure out what modifications to the tags template to
>>> yield the desired result. My next question is how can I create my own
>>> custom tags template that can be used by the dynamic tables macro without
>>> modifying your default tags template?
>>>
>>> Damon
>>>
>>>
>>>
>>> On Thursday, June 11, 2020 at 6:36:49 AM UTC-7, Mohammad wrote:

 If you mean to NOT display certain tags, with the current code it is
 not possible! BUT you can hack the tags template in Shiraz
 to meet your requirements.


 Best wishes
 Mohammad


 On Thu, Jun 11, 2020 at 6:34 AM Damon Pritchett 
 wrote:

> Hello Mohammad,
>
> I have a dynamic tables question. I have my dynamic tables call from
> within a list widget so that only tiddlers with a certain tag will 
> populate
> the table. One of my columns is tags because I want to see what other tags
> are being used for each of the tiddlers. Is it possible to remove the tag
> I'm filtering on from the dynamic table? I suspect that it's not without
> modifying the macro, but wanted to ask the question just in case I'm
> missing something.
>
> Thanks,
>
> Damon
>
> On Thursday, February 6, 2020 at 2:28:31 PM UTC-7, Mohammad wrote:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation.
>> The focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary
>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd
>> which demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd,
>> table-id parameters are renamed for better compatibility with other part 
>> of
>> Shiraz plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview
>> to
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status,
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like
>>tblCaption to caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from
>>older release. Use tiddler commander to resolve the issue after 
>> update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate t

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-12 Thread Damon Pritchett
Thanks Mohammad,

As usual, it took me two or three times reading the tutorial for the light 
bulb to come on. The new template that I created works just like I wanted, 
but is very specific to the tag I'm using. I'm going to see about using a 
variable to pass which tag I don't want displayed so that it can be more 
generic.

Damon


On Thursday, June 11, 2020 at 10:06:51 PM UTC-7, Mohammad wrote:
>
> Damon,
>  In Shiraz tutorial this has been explained! but simply for each field 
> passed to table-dynamic macro, it looks for a template.
>  See the naming rules for tags template. That's all.
>
>  For start you can clone Shiraz template and rename them.
>
>
> Best wishes
> Mohammad
>
>
> On Fri, Jun 12, 2020 at 1:52 AM Damon Pritchett  > wrote:
>
>> Mohammad,
>>
>> I was able to figure out what modifications to the tags template to yield 
>> the desired result. My next question is how can I create my own custom tags 
>> template that can be used by the dynamic tables macro without modifying 
>> your default tags template?
>>
>> Damon
>>
>>
>>
>> On Thursday, June 11, 2020 at 6:36:49 AM UTC-7, Mohammad wrote:
>>>
>>> If you mean to NOT display certain tags, with the current code it is not 
>>> possible! BUT you can hack the tags template in Shiraz
>>> to meet your requirements.
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>>
>>> On Thu, Jun 11, 2020 at 6:34 AM Damon Pritchett  
>>> wrote:
>>>
 Hello Mohammad,

 I have a dynamic tables question. I have my dynamic tables call from 
 within a list widget so that only tiddlers with a certain tag will 
 populate 
 the table. One of my columns is tags because I want to see what other tags 
 are being used for each of the tiddlers. Is it possible to remove the tag 
 I'm filtering on from the dynamic table? I suspect that it's not without 
 modifying the macro, but wanted to ask the question just in case I'm 
 missing something.

 Thanks,

 Damon

 On Thursday, February 6, 2020 at 2:28:31 PM UTC-7, Mohammad wrote:
>
> *Announcement:Shiraz plugin*
> *Date: Feb 7th, 2020*
> *Release: 2.0.15 beta*
> *Status: beta under development*
>
> A new beta update is available.
>
> This update contains tons of new features and improved documentation. 
> The focus is now on dynamics tables.
> Dynamic tables in Shiraz is a subset lite version of Revolutionary 
> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>
> This version has an example of creating task manager using table-fd 
> which demonstrate how powerful are dynamic tables in Shiraz!
> All of these are based the wonderful transclusion in Tiddlywiki.
>
>
> As always I welcome all your feedback and comments and hope your 
> evaluation help improving the Shiraz plugin!
>
> *IMPORTANT NOTE:*
>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
> parameters are renamed for better compatibility with other part of Shiraz 
> plugin.
>
> A tutorial of latest changes has been attached!
>
> Demo: https://kookma.github.io/Shiraz/
> Code: https://github.com/kookma/Shiraz
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
> A permview 
> to
>  
> see the latest changes (like tutorial)
>
>
> Best wishes
> Mohammad
>
> Revision 2.0.15
>
>- Date: [6th Feb 2020]
>- [NEW] the table-fd supports special column template tbl-checkbox
>- [NEW] the table-fd supports column templates priority, status, 
>due-date
>- [NEW] task manager example using table-fd
>- [NEW] documentation for numerical summary in dynamic tables
>- [FIXED] dynamic tables parameters are simplified like tblCaption 
>to caption, tblClass to class, tblFooter to footerRows
>- Warning: New update is not compatible with dynamic tables from 
>older release. Use tiddler commander to resolve the issue after update.
>
> Revision 2.0.14
>
>- Date: [31st Jan 2020]
>- [NEW] table footer to be used for any type of summary
>- [NEW] mathematics macros to claculate the below values for a 
>column
>   - count
>   - minall
>   - maxall
>   - sum
>   - product
>   - mean (arithematic average)
>   - median
>
>
> -- 
 You received this message beca

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-11 Thread Mohammad Rahmani
Damon,
 In Shiraz tutorial this has been explained! but simply for each field
passed to table-dynamic macro, it looks for a template.
 See the naming rules for tags template. That's all.

 For start you can clone Shiraz template and rename them.


Best wishes
Mohammad


On Fri, Jun 12, 2020 at 1:52 AM Damon Pritchett 
wrote:

> Mohammad,
>
> I was able to figure out what modifications to the tags template to yield
> the desired result. My next question is how can I create my own custom tags
> template that can be used by the dynamic tables macro without modifying
> your default tags template?
>
> Damon
>
>
>
> On Thursday, June 11, 2020 at 6:36:49 AM UTC-7, Mohammad wrote:
>>
>> If you mean to NOT display certain tags, with the current code it is not
>> possible! BUT you can hack the tags template in Shiraz
>> to meet your requirements.
>>
>>
>> Best wishes
>> Mohammad
>>
>>
>> On Thu, Jun 11, 2020 at 6:34 AM Damon Pritchett 
>> wrote:
>>
>>> Hello Mohammad,
>>>
>>> I have a dynamic tables question. I have my dynamic tables call from
>>> within a list widget so that only tiddlers with a certain tag will populate
>>> the table. One of my columns is tags because I want to see what other tags
>>> are being used for each of the tiddlers. Is it possible to remove the tag
>>> I'm filtering on from the dynamic table? I suspect that it's not without
>>> modifying the macro, but wanted to ask the question just in case I'm
>>> missing something.
>>>
>>> Thanks,
>>>
>>> Damon
>>>
>>> On Thursday, February 6, 2020 at 2:28:31 PM UTC-7, Mohammad wrote:

 *Announcement:Shiraz plugin*
 *Date: Feb 7th, 2020*
 *Release: 2.0.15 beta*
 *Status: beta under development*

 A new beta update is available.

 This update contains tons of new features and improved documentation.
 The focus is now on dynamics tables.
 Dynamic tables in Shiraz is a subset lite version of Revolutionary
 plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.

 This version has an example of creating task manager using table-fd
 which demonstrate how powerful are dynamic tables in Shiraz!
 All of these are based the wonderful transclusion in Tiddlywiki.


 As always I welcome all your feedback and comments and hope your
 evaluation help improving the Shiraz plugin!

 *IMPORTANT NOTE:*
  Those who update from Shiraz 2 beta note that, the table-fd, table-id
 parameters are renamed for better compatibility with other part of Shiraz
 plugin.

 A tutorial of latest changes has been attached!

 Demo: https://kookma.github.io/Shiraz/
 Code: https://github.com/kookma/Shiraz

 Star it if you like it and send your feedback!
 Documentation proof reading for English is welcome!


 A permview
 to
 see the latest changes (like tutorial)


 Best wishes
 Mohammad

 Revision 2.0.15

- Date: [6th Feb 2020]
- [NEW] the table-fd supports special column template tbl-checkbox
- [NEW] the table-fd supports column templates priority, status,
due-date
- [NEW] task manager example using table-fd
- [NEW] documentation for numerical summary in dynamic tables
- [FIXED] dynamic tables parameters are simplified like tblCaption
to caption, tblClass to class, tblFooter to footerRows
- Warning: New update is not compatible with dynamic tables from
older release. Use tiddler commander to resolve the issue after update.

 Revision 2.0.14

- Date: [31st Jan 2020]
- [NEW] table footer to be used for any type of summary
- [NEW] mathematics macros to claculate the below values for a
column
   - count
   - minall
   - maxall
   - sum
   - product
   - mean (arithematic average)
   - median


 --
>>> You received this message because you are subscribed to the Google
>>> Groups "TiddlyWiki" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to tiddl...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/tiddlywiki/7f618515-1f19-4f1d-b7f2-cc449f9859e3o%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" grou

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-11 Thread Damon Pritchett
Mohammad,

I was able to figure out what modifications to the tags template to yield 
the desired result. My next question is how can I create my own custom tags 
template that can be used by the dynamic tables macro without modifying 
your default tags template?

Damon



On Thursday, June 11, 2020 at 6:36:49 AM UTC-7, Mohammad wrote:
>
> If you mean to NOT display certain tags, with the current code it is not 
> possible! BUT you can hack the tags template in Shiraz
> to meet your requirements.
>
>
> Best wishes
> Mohammad
>
>
> On Thu, Jun 11, 2020 at 6:34 AM Damon Pritchett  > wrote:
>
>> Hello Mohammad,
>>
>> I have a dynamic tables question. I have my dynamic tables call from 
>> within a list widget so that only tiddlers with a certain tag will populate 
>> the table. One of my columns is tags because I want to see what other tags 
>> are being used for each of the tiddlers. Is it possible to remove the tag 
>> I'm filtering on from the dynamic table? I suspect that it's not without 
>> modifying the macro, but wanted to ask the question just in case I'm 
>> missing something.
>>
>> Thanks,
>>
>> Damon
>>
>> On Thursday, February 6, 2020 at 2:28:31 PM UTC-7, Mohammad wrote:
>>>
>>> *Announcement:Shiraz plugin*
>>> *Date: Feb 7th, 2020*
>>> *Release: 2.0.15 beta*
>>> *Status: beta under development*
>>>
>>> A new beta update is available.
>>>
>>> This update contains tons of new features and improved documentation. 
>>> The focus is now on dynamics tables.
>>> Dynamic tables in Shiraz is a subset lite version of Revolutionary 
>>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>>
>>> This version has an example of creating task manager using table-fd 
>>> which demonstrate how powerful are dynamic tables in Shiraz!
>>> All of these are based the wonderful transclusion in Tiddlywiki.
>>>
>>>
>>> As always I welcome all your feedback and comments and hope your 
>>> evaluation help improving the Shiraz plugin!
>>>
>>> *IMPORTANT NOTE:*
>>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>>> parameters are renamed for better compatibility with other part of Shiraz 
>>> plugin.
>>>
>>> A tutorial of latest changes has been attached!
>>>
>>> Demo: https://kookma.github.io/Shiraz/
>>> Code: https://github.com/kookma/Shiraz
>>>
>>> Star it if you like it and send your feedback!
>>> Documentation proof reading for English is welcome!
>>>
>>>
>>> A permview 
>>> to
>>>  
>>> see the latest changes (like tutorial)
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>> Revision 2.0.15
>>>
>>>- Date: [6th Feb 2020]
>>>- [NEW] the table-fd supports special column template tbl-checkbox
>>>- [NEW] the table-fd supports column templates priority, status, 
>>>due-date
>>>- [NEW] task manager example using table-fd
>>>- [NEW] documentation for numerical summary in dynamic tables
>>>- [FIXED] dynamic tables parameters are simplified like tblCaption 
>>>to caption, tblClass to class, tblFooter to footerRows
>>>- Warning: New update is not compatible with dynamic tables from 
>>>older release. Use tiddler commander to resolve the issue after update.
>>>
>>> Revision 2.0.14
>>>
>>>- Date: [31st Jan 2020]
>>>- [NEW] table footer to be used for any type of summary
>>>- [NEW] mathematics macros to claculate the below values for a column
>>>   - count
>>>   - minall
>>>   - maxall
>>>   - sum
>>>   - product
>>>   - mean (arithematic average)
>>>   - median
>>>
>>>
>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "TiddlyWiki" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to tiddl...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/7f618515-1f19-4f1d-b7f2-cc449f9859e3o%40googlegroups.com
>>  
>> 
>> .
>>
>

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


Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-11 Thread Damon Pritchett
Thank you, sir.

I suspected as much. I will look into the tags template to see what I can 
do and how much effort it will take. This is actually more of an aesthetics 
question than a functional one, but it could be fun to play with.

Regards,

Damon
 

On Thursday, June 11, 2020 at 6:36:49 AM UTC-7, Mohammad wrote:
>
> If you mean to NOT display certain tags, with the current code it is not 
> possible! BUT you can hack the tags template in Shiraz
> to meet your requirements.
>
>
> Best wishes
> Mohammad
>
>
> On Thu, Jun 11, 2020 at 6:34 AM Damon Pritchett  > wrote:
>
>> Hello Mohammad,
>>
>> I have a dynamic tables question. I have my dynamic tables call from 
>> within a list widget so that only tiddlers with a certain tag will populate 
>> the table. One of my columns is tags because I want to see what other tags 
>> are being used for each of the tiddlers. Is it possible to remove the tag 
>> I'm filtering on from the dynamic table? I suspect that it's not without 
>> modifying the macro, but wanted to ask the question just in case I'm 
>> missing something.
>>
>> Thanks,
>>
>> Damon
>>
>> On Thursday, February 6, 2020 at 2:28:31 PM UTC-7, Mohammad wrote:
>>>
>>> *Announcement:Shiraz plugin*
>>> *Date: Feb 7th, 2020*
>>> *Release: 2.0.15 beta*
>>> *Status: beta under development*
>>>
>>> A new beta update is available.
>>>
>>> This update contains tons of new features and improved documentation. 
>>> The focus is now on dynamics tables.
>>> Dynamic tables in Shiraz is a subset lite version of Revolutionary 
>>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>>
>>> This version has an example of creating task manager using table-fd 
>>> which demonstrate how powerful are dynamic tables in Shiraz!
>>> All of these are based the wonderful transclusion in Tiddlywiki.
>>>
>>>
>>> As always I welcome all your feedback and comments and hope your 
>>> evaluation help improving the Shiraz plugin!
>>>
>>> *IMPORTANT NOTE:*
>>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>>> parameters are renamed for better compatibility with other part of Shiraz 
>>> plugin.
>>>
>>> A tutorial of latest changes has been attached!
>>>
>>> Demo: https://kookma.github.io/Shiraz/
>>> Code: https://github.com/kookma/Shiraz
>>>
>>> Star it if you like it and send your feedback!
>>> Documentation proof reading for English is welcome!
>>>
>>>
>>> A permview 
>>> to
>>>  
>>> see the latest changes (like tutorial)
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>> Revision 2.0.15
>>>
>>>- Date: [6th Feb 2020]
>>>- [NEW] the table-fd supports special column template tbl-checkbox
>>>- [NEW] the table-fd supports column templates priority, status, 
>>>due-date
>>>- [NEW] task manager example using table-fd
>>>- [NEW] documentation for numerical summary in dynamic tables
>>>- [FIXED] dynamic tables parameters are simplified like tblCaption 
>>>to caption, tblClass to class, tblFooter to footerRows
>>>- Warning: New update is not compatible with dynamic tables from 
>>>older release. Use tiddler commander to resolve the issue after update.
>>>
>>> Revision 2.0.14
>>>
>>>- Date: [31st Jan 2020]
>>>- [NEW] table footer to be used for any type of summary
>>>- [NEW] mathematics macros to claculate the below values for a column
>>>   - count
>>>   - minall
>>>   - maxall
>>>   - sum
>>>   - product
>>>   - mean (arithematic average)
>>>   - median
>>>
>>>
>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "TiddlyWiki" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to tiddl...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/7f618515-1f19-4f1d-b7f2-cc449f9859e3o%40googlegroups.com
>>  
>> 
>> .
>>
>

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


Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-11 Thread Mohammad Rahmani
If you mean to NOT display certain tags, with the current code it is not
possible! BUT you can hack the tags template in Shiraz
to meet your requirements.


Best wishes
Mohammad


On Thu, Jun 11, 2020 at 6:34 AM Damon Pritchett 
wrote:

> Hello Mohammad,
>
> I have a dynamic tables question. I have my dynamic tables call from
> within a list widget so that only tiddlers with a certain tag will populate
> the table. One of my columns is tags because I want to see what other tags
> are being used for each of the tiddlers. Is it possible to remove the tag
> I'm filtering on from the dynamic table? I suspect that it's not without
> modifying the macro, but wanted to ask the question just in case I'm
> missing something.
>
> Thanks,
>
> Damon
>
> On Thursday, February 6, 2020 at 2:28:31 PM UTC-7, Mohammad wrote:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. The
>> focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin
>> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd which
>> demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id
>> parameters are renamed for better compatibility with other part of Shiraz
>> plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview
>> to
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status,
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like tblCaption to
>>caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from
>>older release. Use tiddler commander to resolve the issue after update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tiddlywiki+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/7f618515-1f19-4f1d-b7f2-cc449f9859e3o%40googlegroups.com
> 
> .
>

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


Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-11 Thread Mohammad Rahmani
Hi Damon,
 Do you mean after creating a table, you like to remove some tags from the
tags column?

I may recommend also to use the latest version:
https://kookma.github.io/TW-Shiraz/


Best wishes
Mohammad


On Thu, Jun 11, 2020 at 6:34 AM Damon Pritchett 
wrote:

> Hello Mohammad,
>
> I have a dynamic tables question. I have my dynamic tables call from
> within a list widget so that only tiddlers with a certain tag will populate
> the table. One of my columns is tags because I want to see what other tags
> are being used for each of the tiddlers. Is it possible to remove the tag
> I'm filtering on from the dynamic table? I suspect that it's not without
> modifying the macro, but wanted to ask the question just in case I'm
> missing something.
>
> Thanks,
>
> Damon
>
> On Thursday, February 6, 2020 at 2:28:31 PM UTC-7, Mohammad wrote:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. The
>> focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin
>> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd which
>> demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id
>> parameters are renamed for better compatibility with other part of Shiraz
>> plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview
>> to
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status,
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like tblCaption to
>>caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from
>>older release. Use tiddler commander to resolve the issue after update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tiddlywiki+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/7f618515-1f19-4f1d-b7f2-cc449f9859e3o%40googlegroups.com
> 
> .
>

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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-10 Thread Damon Pritchett
Hello Mohammad,

I have a dynamic tables question. I have my dynamic tables call from within 
a list widget so that only tiddlers with a certain tag will populate the 
table. One of my columns is tags because I want to see what other tags are 
being used for each of the tiddlers. Is it possible to remove the tag I'm 
filtering on from the dynamic table? I suspect that it's not without 
modifying the macro, but wanted to ask the question just in case I'm 
missing something.

Thanks,

Damon

On Thursday, February 6, 2020 at 2:28:31 PM UTC-7, Mohammad wrote:
>
> *Announcement:Shiraz plugin*
> *Date: Feb 7th, 2020*
> *Release: 2.0.15 beta*
> *Status: beta under development*
>
> A new beta update is available.
>
> This update contains tons of new features and improved documentation. The 
> focus is now on dynamics tables.
> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>
> This version has an example of creating task manager using table-fd which 
> demonstrate how powerful are dynamic tables in Shiraz!
> All of these are based the wonderful transclusion in Tiddlywiki.
>
>
> As always I welcome all your feedback and comments and hope your 
> evaluation help improving the Shiraz plugin!
>
> *IMPORTANT NOTE:*
>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
> parameters are renamed for better compatibility with other part of Shiraz 
> plugin.
>
> A tutorial of latest changes has been attached!
>
> Demo: https://kookma.github.io/Shiraz/
> Code: https://github.com/kookma/Shiraz
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
> A permview 
> to
>  
> see the latest changes (like tutorial)
>
>
> Best wishes
> Mohammad
>
> Revision 2.0.15
>
>- Date: [6th Feb 2020]
>- [NEW] the table-fd supports special column template tbl-checkbox
>- [NEW] the table-fd supports column templates priority, status, 
>due-date
>- [NEW] task manager example using table-fd
>- [NEW] documentation for numerical summary in dynamic tables
>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>caption, tblClass to class, tblFooter to footerRows
>- Warning: New update is not compatible with dynamic tables from older 
>release. Use tiddler commander to resolve the issue after update.
>
> Revision 2.0.14
>
>- Date: [31st Jan 2020]
>- [NEW] table footer to be used for any type of summary
>- [NEW] mathematics macros to claculate the below values for a column
>   - count
>   - minall
>   - maxall
>   - sum
>   - product
>   - mean (arithematic average)
>   - median
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7f618515-1f19-4f1d-b7f2-cc449f9859e3o%40googlegroups.com.


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-04-14 Thread Rahul Kashyap
Ah! thanks a lot. 

-Rahul

On Tuesday, April 14, 2020 at 11:24:31 AM UTC-4, Mohammad wrote:
>
> Hi Rahul,
>
>  See the answer! I also attached the example.
>
>
>
> [image: chrome_RULFP03ZQC.png]
>
>
> The trick is in Tiddlywiki always add an empty line to get the block 
> output. So add a line after *src:"*
>
> -- Mohammad
>
>
> On Tuesday, April 14, 2020 at 7:40:26 PM UTC+4:30, Rahul Kashyap wrote:
>>
>> Dear Mohammad, 
>>
>> Thanks for these amazing suits of plugins. I have been using it 
>> extensively in my work. 
>>
>
> Glad it is useful!
>  
>
>>
>> I can across a bug as described in the attached screenshot. The details 
>> macro doesn't work with the monospace block formatting for some reason. It 
>> breaks when it encounters a double quote inside the block formatting. 
>>
>> [image: Screenshot 2020-04-14 at 11.03.50.png]
>>
>>
>> Thanks and Regards, 
>> -Rahul
>>
>> On Thursday, February 6, 2020 at 4:28:31 PM UTC-5, Mohammad wrote:
>>>
>>> *Announcement:Shiraz plugin*
>>> *Date: Feb 7th, 2020*
>>> *Release: 2.0.15 beta*
>>> *Status: beta under development*
>>>
>>> A new beta update is available.
>>>
>>> This update contains tons of new features and improved documentation. 
>>> The focus is now on dynamics tables.
>>> Dynamic tables in Shiraz is a subset lite version of Revolutionary 
>>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>>
>>> This version has an example of creating task manager using table-fd 
>>> which demonstrate how powerful are dynamic tables in Shiraz!
>>> All of these are based the wonderful transclusion in Tiddlywiki.
>>>
>>>
>>> As always I welcome all your feedback and comments and hope your 
>>> evaluation help improving the Shiraz plugin!
>>>
>>> *IMPORTANT NOTE:*
>>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>>> parameters are renamed for better compatibility with other part of Shiraz 
>>> plugin.
>>>
>>> A tutorial of latest changes has been attached!
>>>
>>> Demo: https://kookma.github.io/Shiraz/
>>> Code: https://github.com/kookma/Shiraz
>>>
>>> Star it if you like it and send your feedback!
>>> Documentation proof reading for English is welcome!
>>>
>>>
>>> A permview 
>>> to
>>>  
>>> see the latest changes (like tutorial)
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>> Revision 2.0.15
>>>
>>>- Date: [6th Feb 2020]
>>>- [NEW] the table-fd supports special column template tbl-checkbox
>>>- [NEW] the table-fd supports column templates priority, status, 
>>>due-date
>>>- [NEW] task manager example using table-fd
>>>- [NEW] documentation for numerical summary in dynamic tables
>>>- [FIXED] dynamic tables parameters are simplified like tblCaption 
>>>to caption, tblClass to class, tblFooter to footerRows
>>>- Warning: New update is not compatible with dynamic tables from 
>>>older release. Use tiddler commander to resolve the issue after update.
>>>
>>> Revision 2.0.14
>>>
>>>- Date: [31st Jan 2020]
>>>- [NEW] table footer to be used for any type of summary
>>>- [NEW] mathematics macros to claculate the below values for a column
>>>   - count
>>>   - minall
>>>   - maxall
>>>   - sum
>>>   - product
>>>   - mean (arithematic average)
>>>   - median
>>>
>>>
>>>

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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-04-14 Thread Mohammad


Hi Rahul,

 See the answer! I also attached the example.



[image: chrome_RULFP03ZQC.png]


The trick is in Tiddlywiki always add an empty line to get the block 
output. So add a line after *src:"*

-- Mohammad


On Tuesday, April 14, 2020 at 7:40:26 PM UTC+4:30, Rahul Kashyap wrote:
>
> Dear Mohammad, 
>
> Thanks for these amazing suits of plugins. I have been using it 
> extensively in my work. 
>

Glad it is useful!
 

>
> I can across a bug as described in the attached screenshot. The details 
> macro doesn't work with the monospace block formatting for some reason. It 
> breaks when it encounters a double quote inside the block formatting. 
>
> [image: Screenshot 2020-04-14 at 11.03.50.png]
>
>
> Thanks and Regards, 
> -Rahul
>
> On Thursday, February 6, 2020 at 4:28:31 PM UTC-5, Mohammad wrote:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. The 
>> focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
>> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd which 
>> demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your 
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>> parameters are renamed for better compatibility with other part of Shiraz 
>> plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview 
>> to
>>  
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status, 
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>>caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from 
>>older release. Use tiddler commander to resolve the issue after update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3f2d2a68-72f6-4003-929b-fed0a4640988%40googlegroups.com.


Rahul.tid
Description: Binary data


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-04-14 Thread Rahul Kashyap
Dear Mohammad, 

Thanks for these amazing suits of plugins. I have been using it extensively 
in my work. 

I can across a bug as described in the attached screenshot. The details 
macro doesn't work with the monospace block formatting for some reason. It 
breaks when it encounters a double quote inside the block formatting. 

[image: Screenshot 2020-04-14 at 11.03.50.png]


Thanks and Regards, 
-Rahul

On Thursday, February 6, 2020 at 4:28:31 PM UTC-5, Mohammad wrote:
>
> *Announcement:Shiraz plugin*
> *Date: Feb 7th, 2020*
> *Release: 2.0.15 beta*
> *Status: beta under development*
>
> A new beta update is available.
>
> This update contains tons of new features and improved documentation. The 
> focus is now on dynamics tables.
> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>
> This version has an example of creating task manager using table-fd which 
> demonstrate how powerful are dynamic tables in Shiraz!
> All of these are based the wonderful transclusion in Tiddlywiki.
>
>
> As always I welcome all your feedback and comments and hope your 
> evaluation help improving the Shiraz plugin!
>
> *IMPORTANT NOTE:*
>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
> parameters are renamed for better compatibility with other part of Shiraz 
> plugin.
>
> A tutorial of latest changes has been attached!
>
> Demo: https://kookma.github.io/Shiraz/
> Code: https://github.com/kookma/Shiraz
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
> A permview 
> to
>  
> see the latest changes (like tutorial)
>
>
> Best wishes
> Mohammad
>
> Revision 2.0.15
>
>- Date: [6th Feb 2020]
>- [NEW] the table-fd supports special column template tbl-checkbox
>- [NEW] the table-fd supports column templates priority, status, 
>due-date
>- [NEW] task manager example using table-fd
>- [NEW] documentation for numerical summary in dynamic tables
>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>caption, tblClass to class, tblFooter to footerRows
>- Warning: New update is not compatible with dynamic tables from older 
>release. Use tiddler commander to resolve the issue after update.
>
> Revision 2.0.14
>
>- Date: [31st Jan 2020]
>- [NEW] table footer to be used for any type of summary
>- [NEW] mathematics macros to claculate the below values for a column
>   - count
>   - minall
>   - maxall
>   - sum
>   - product
>   - mean (arithematic average)
>   - median
>
>
>

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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-17 Thread Markus Adler
Hi Mohammad,

the Demo-Site is not reachable.

Am Donnerstag, 6. Februar 2020 22:28:31 UTC+1 schrieb Mohammad:
>
> *Announcement:Shiraz plugin*
> *Date: Feb 7th, 2020*
> *Release: 2.0.15 beta*
> *Status: beta under development*
>
> A new beta update is available.
>
> This update contains tons of new features and improved documentation. The 
> focus is now on dynamics tables.
> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>
> This version has an example of creating task manager using table-fd which 
> demonstrate how powerful are dynamic tables in Shiraz!
> All of these are based the wonderful transclusion in Tiddlywiki.
>
>
> As always I welcome all your feedback and comments and hope your 
> evaluation help improving the Shiraz plugin!
>
> *IMPORTANT NOTE:*
>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
> parameters are renamed for better compatibility with other part of Shiraz 
> plugin.
>
> A tutorial of latest changes has been attached!
>
> Demo: https://kookma.github.io/Shiraz/
> Code: https://github.com/kookma/Shiraz
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
> A permview 
> to
>  
> see the latest changes (like tutorial)
>
>
> Best wishes
> Mohammad
>
> Revision 2.0.15
>
>- Date: [6th Feb 2020]
>- [NEW] the table-fd supports special column template tbl-checkbox
>- [NEW] the table-fd supports column templates priority, status, 
>due-date
>- [NEW] task manager example using table-fd
>- [NEW] documentation for numerical summary in dynamic tables
>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>caption, tblClass to class, tblFooter to footerRows
>- Warning: New update is not compatible with dynamic tables from older 
>release. Use tiddler commander to resolve the issue after update.
>
> Revision 2.0.14
>
>- Date: [31st Jan 2020]
>- [NEW] table footer to be used for any type of summary
>- [NEW] mathematics macros to claculate the below values for a column
>   - count
>   - minall
>   - maxall
>   - sum
>   - product
>   - mean (arithematic average)
>   - median
>
>
>

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


Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-14 Thread Mohammad
Olegh,
 


On Friday, February 14, 2020 at 3:40:28 PM UTC+3:30, oleghbond wrote:
>
> Mohammed,
>
>1. Buttons work fine. I'd just suggest to add a bit CSS margins in 
>order to make vertical and horizontal distance when one places several 
>buttons attached each to other. For example, *.btn { margin: 0.15rem 
>0.1rem; }*.
>
> Do you use a space between them and an enter when you vertically! As these 
comes from Bootstrap, I kept them intact to update easily when a new 
Bootstrap update available!
By the way I check this hack!
 

>
>1. Regarding highlighting the selected tabs they still do not work for 
>vertical tabs and tabs in the Control Panel. The whole problem is solved 
>easily by removing selector *.tc-sidebar-lists* in the CSS file  
>*$:/plugins/kookma/shiraz/styles/colorful-sidebar-tab*.
>
>
Note that, the title says these are for sidebar-tab and not elsewhere, so I 
leave any hack for final users. 

>
>1. All the discussed above issues are demonstrated in  
>https://protw.github.io/prosteer/
>
>
Thank you again
 

> Olegh Bondarenko
> https://bit.ly/oleghbond
>
>
>
>
Best
Mohammad 

>
>
> чт, 13 лют. 2020 о 20:32 Mohammad > 
> пише:
>
>> Olegh,
>>  I updated the Shiraz to 2.0.16. Please have a look.
>> As you may note the vertical tabs are red and color setting work there!
>> Could you give a try and see if it work for you also?
>>
>> I did not changed the css but its position in stylesheet has been changed!
>>
>> --Mohammad
>>
>>
>> On Wednesday, February 12, 2020 at 11:43:16 PM UTC+3:30, oleghbond wrote:
>>>
>>> In order to make it workable at Control Panel 
>>> I even removed selector .tc-sidebar-lists. 
>>> You can check all these stuff at protw.github.io/prosteer
>>>
>>> https://bit.ly/oleghbond 
>>>
>>> Ср, 12 лют. 2020, 21:45 користувач Mohammad  пише:
>>>
 Thanks Olegh!

 Let's have a look.

 --Mohammad

 On Wednesday, February 12, 2020 at 11:11:57 PM UTC+3:30, oleghbond 
 wrote:
>
> 2.0.15
>
> https://bit.ly/oleghbond 
>
> Ср, 12 лют. 2020, 21:30 користувач Mohammad  
> пише:
>
>> Hi again Olegh,
>>
>>
>> On Wednesday, February 12, 2020 at 10:51:57 PM UTC+3:30, oleghbond 
>> wrote:
>>>
>>> Dear Mohammad,
>>>
>>> I found that vertical tabs in colorful mode are not colored when are 
>>> selected. So I tried the following tweak - adding the following 
>>> selector *.tc-vertical 
>>> button.tc-tab-**selected* into tiddler 
>>> *$:/plugins/kookma/shiraz/styles/colorful-sidebar-ta**b*
>>>
>>> .tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected*, 
>>> .tc-vertical button.tc-tab-**selected* {
>>> background: none;
>>> border: none;
>>> border-bottom: solid 1px #737373 !important;
>>> font-weight: bold;
>>> color: #DB4C3F !important;
>>> }
>>>
>>> Amazingly this work on my wiki! Thank you for hint!
>>
>> Which version of Shiraz are you using?
>>  
>>
>>> Please take this (or similar) into account in the next release.
>>>
>>
>> Thank you 
>>
>>>
>>> Olegh
>>> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:

 *Announcement:Shiraz plugin*
 *Date: Feb 7th, 2020*
 *Release: 2.0.15 beta*
 *Status: beta under development*

 A new beta update is available.

 This update contains tons of new features and improved 
 documentation. The focus is now on dynamics tables.
 Dynamic tables in Shiraz is a subset lite version of Revolutionary 
 plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.

 This version has an example of creating task manager using table-fd 
 which demonstrate how powerful are dynamic tables in Shiraz!
 All of these are based the wonderful transclusion in Tiddlywiki.


 As always I welcome all your feedback and comments and hope your 
 evaluation help improving the Shiraz plugin!

 *IMPORTANT NOTE:*
  Those who update from Shiraz 2 beta note that, the table-fd, 
 table-id parameters are renamed for better compatibility with other 
 part of 
 Shiraz plugin.

 A tutorial of latest changes has been attached!

 Demo: https://kookma.github.io/Shiraz/
 Code: https://github.com/kookma/Shiraz

 Star it if you like it and send your feedback!
 Documentation proof reading for English is welcome!


 A permview 
 

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-14 Thread Olegh Bondarenko
Mohammed,

   1. Buttons work fine. I'd just suggest to add a bit CSS margins in order
   to make vertical and horizontal distance when one places several buttons
   attached each to other. For example, *.btn { margin: 0.15rem 0.1rem; }*.
   2. Regarding highlighting the selected tabs they still do not work for
   vertical tabs and tabs in the Control Panel. The whole problem is solved
   easily by removing selector *.tc-sidebar-lists* in the CSS file
   *$:/plugins/kookma/shiraz/styles/colorful-sidebar-tab*.
   3. All the discussed above issues are demonstrated in
   https://protw.github.io/prosteer/

Olegh Bondarenko
https://bit.ly/oleghbond





чт, 13 лют. 2020 о 20:32 Mohammad  пише:

> Olegh,
>  I updated the Shiraz to 2.0.16. Please have a look.
> As you may note the vertical tabs are red and color setting work there!
> Could you give a try and see if it work for you also?
>
> I did not changed the css but its position in stylesheet has been changed!
>
> --Mohammad
>
>
> On Wednesday, February 12, 2020 at 11:43:16 PM UTC+3:30, oleghbond wrote:
>>
>> In order to make it workable at Control Panel
>> I even removed selector .tc-sidebar-lists.
>> You can check all these stuff at protw.github.io/prosteer
>>
>> https://bit.ly/oleghbond
>>
>> Ср, 12 лют. 2020, 21:45 користувач Mohammad  пише:
>>
>>> Thanks Olegh!
>>>
>>> Let's have a look.
>>>
>>> --Mohammad
>>>
>>> On Wednesday, February 12, 2020 at 11:11:57 PM UTC+3:30, oleghbond wrote:

 2.0.15

 https://bit.ly/oleghbond

 Ср, 12 лют. 2020, 21:30 користувач Mohammad 
 пише:

> Hi again Olegh,
>
>
> On Wednesday, February 12, 2020 at 10:51:57 PM UTC+3:30, oleghbond
> wrote:
>>
>> Dear Mohammad,
>>
>> I found that vertical tabs in colorful mode are not colored when are
>> selected. So I tried the following tweak - adding the following selector 
>> *.tc-vertical
>> button.tc-tab-**selected* into tiddler
>> *$:/plugins/kookma/shiraz/styles/colorful-sidebar-ta**b*
>>
>> .tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected*,
>> .tc-vertical button.tc-tab-**selected* {
>> background: none;
>> border: none;
>> border-bottom: solid 1px #737373 !important;
>> font-weight: bold;
>> color: #DB4C3F !important;
>> }
>>
>> Amazingly this work on my wiki! Thank you for hint!
>
> Which version of Shiraz are you using?
>
>
>> Please take this (or similar) into account in the next release.
>>
>
> Thank you
>
>>
>> Olegh
>> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>>>
>>> *Announcement:Shiraz plugin*
>>> *Date: Feb 7th, 2020*
>>> *Release: 2.0.15 beta*
>>> *Status: beta under development*
>>>
>>> A new beta update is available.
>>>
>>> This update contains tons of new features and improved
>>> documentation. The focus is now on dynamics tables.
>>> Dynamic tables in Shiraz is a subset lite version of Revolutionary
>>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>>
>>> This version has an example of creating task manager using table-fd
>>> which demonstrate how powerful are dynamic tables in Shiraz!
>>> All of these are based the wonderful transclusion in Tiddlywiki.
>>>
>>>
>>> As always I welcome all your feedback and comments and hope your
>>> evaluation help improving the Shiraz plugin!
>>>
>>> *IMPORTANT NOTE:*
>>>  Those who update from Shiraz 2 beta note that, the table-fd,
>>> table-id parameters are renamed for better compatibility with other 
>>> part of
>>> Shiraz plugin.
>>>
>>> A tutorial of latest changes has been attached!
>>>
>>> Demo: https://kookma.github.io/Shiraz/
>>> Code: https://github.com/kookma/Shiraz
>>>
>>> Star it if you like it and send your feedback!
>>> Documentation proof reading for English is welcome!
>>>
>>>
>>> A permview
>>> to
>>> see the latest changes (like tutorial)
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>> Revision 2.0.15
>>>
>>>- Date: [6th Feb 2020]
>>>- [NEW] the table-fd supports special column template
>>>tbl-checkbox
>>>- [NEW] the table-fd supports column templates priority, status,
>>>due-date
>>>- [NEW] task manager example using table-fd
>>>- [NEW] documentation for numerical summary in dynamic tables
>>

[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-14 Thread Mohammad
Hi HC Haase
 I have given the correct link in announcement of 2.0.16
 This is demo page: https://kookma.github.io/TW-Shiraz/

Cheers
Mohammad



On Friday, February 14, 2020 at 12:06:28 PM UTC+3:30, HC Haase wrote:
>
> The demo page is down
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/07bc91ee-cbcd-49d4-84d3-18e428ef7b47%40googlegroups.com.


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-14 Thread HC Haase
The demo page is down

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


Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-13 Thread Mohammad
Olegh,
 I updated the Shiraz to 2.0.16. Please have a look.
As you may note the vertical tabs are red and color setting work there!
Could you give a try and see if it work for you also?

I did not changed the css but its position in stylesheet has been changed!

--Mohammad


On Wednesday, February 12, 2020 at 11:43:16 PM UTC+3:30, oleghbond wrote:
>
> In order to make it workable at Control Panel 
> I even removed selector .tc-sidebar-lists. 
> You can check all these stuff at protw.github.io/prosteer
>
> https://bit.ly/oleghbond 
>
> Ср, 12 лют. 2020, 21:45 користувач Mohammad  > пише:
>
>> Thanks Olegh!
>>
>> Let's have a look.
>>
>> --Mohammad
>>
>> On Wednesday, February 12, 2020 at 11:11:57 PM UTC+3:30, oleghbond wrote:
>>>
>>> 2.0.15
>>>
>>> https://bit.ly/oleghbond 
>>>
>>> Ср, 12 лют. 2020, 21:30 користувач Mohammad  пише:
>>>
 Hi again Olegh,


 On Wednesday, February 12, 2020 at 10:51:57 PM UTC+3:30, oleghbond 
 wrote:
>
> Dear Mohammad,
>
> I found that vertical tabs in colorful mode are not colored when are 
> selected. So I tried the following tweak - adding the following selector 
> *.tc-vertical 
> button.tc-tab-**selected* into tiddler 
> *$:/plugins/kookma/shiraz/styles/colorful-sidebar-ta**b*
>
> .tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected*, 
> .tc-vertical button.tc-tab-**selected* {
> background: none;
> border: none;
> border-bottom: solid 1px #737373 !important;
> font-weight: bold;
> color: #DB4C3F !important;
> }
>
> Amazingly this work on my wiki! Thank you for hint!

 Which version of Shiraz are you using?
  

> Please take this (or similar) into account in the next release.
>

 Thank you 

>
> Olegh
> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. 
>> The focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary 
>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd 
>> which demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your 
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, 
>> table-id parameters are renamed for better compatibility with other part 
>> of 
>> Shiraz plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview 
>> to
>>  
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status, 
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like 
>>tblCaption to caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from 
>>older release. Use tiddler commander to resolve the issue after 
>> update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a 
>>column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>> -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-12 Thread Mohammad Rahmani
See also this as the reference of colorful sidebar from Riz:

https://ibnishak.github.io/Tesseract/UI/index.html#Sidebar%20Tabs%20Alternate%20Style


Best wishes
Mohammad


On Wed, Feb 12, 2020 at 11:43 PM Olegh Bondarenko 
wrote:

> In order to make it workable at Control Panel
> I even removed selector .tc-sidebar-lists.
> You can check all these stuff at protw.github.io/prosteer
>
> https://bit.ly/oleghbond
>
> Ср, 12 лют. 2020, 21:45 користувач Mohammad 
> пише:
>
>> Thanks Olegh!
>>
>> Let's have a look.
>>
>> --Mohammad
>>
>> On Wednesday, February 12, 2020 at 11:11:57 PM UTC+3:30, oleghbond wrote:
>>>
>>> 2.0.15
>>>
>>> https://bit.ly/oleghbond
>>>
>>> Ср, 12 лют. 2020, 21:30 користувач Mohammad  пише:
>>>
 Hi again Olegh,


 On Wednesday, February 12, 2020 at 10:51:57 PM UTC+3:30, oleghbond
 wrote:
>
> Dear Mohammad,
>
> I found that vertical tabs in colorful mode are not colored when are
> selected. So I tried the following tweak - adding the following selector 
> *.tc-vertical
> button.tc-tab-**selected* into tiddler
> *$:/plugins/kookma/shiraz/styles/colorful-sidebar-ta**b*
>
> .tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected*,
> .tc-vertical button.tc-tab-**selected* {
> background: none;
> border: none;
> border-bottom: solid 1px #737373 !important;
> font-weight: bold;
> color: #DB4C3F !important;
> }
>
> Amazingly this work on my wiki! Thank you for hint!

 Which version of Shiraz are you using?


> Please take this (or similar) into account in the next release.
>

 Thank you

>
> Olegh
> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation.
>> The focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary
>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd
>> which demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd,
>> table-id parameters are renamed for better compatibility with other part 
>> of
>> Shiraz plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview
>> to
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status,
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like
>>tblCaption to caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from
>>older release. Use tiddler commander to resolve the issue after 
>> update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a
>>column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>> --
 You received this message because you are subscribed to a topic in the
 Google Groups "TiddlyWiki" group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/tiddlywiki/dkVJV0zNgHU/unsubscribe.
 To unsubscribe from th

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-12 Thread Mohammad Rahmani
On Wed, Feb 12, 2020 at 11:43 PM Olegh Bondarenko 
wrote:

> In order to make it workable at Control Panel
>

Just a note: it is colorful-sidebar-tab.
I remember in older version this worked for all tabs and then based on some
feedback, I changed it to sidebar tabs only!

By the way, I add you hack into documentation!

Thank you



> I even removed selector .tc-sidebar-lists.
> You can check all these stuff at protw.github.io/prosteer
>
> https://bit.ly/oleghbond
>
> Ср, 12 лют. 2020, 21:45 користувач Mohammad 
> пише:
>
>> Thanks Olegh!
>>
>> Let's have a look.
>>
>> --Mohammad
>>
>> On Wednesday, February 12, 2020 at 11:11:57 PM UTC+3:30, oleghbond wrote:
>>>
>>> 2.0.15
>>>
>>> https://bit.ly/oleghbond
>>>
>>> Ср, 12 лют. 2020, 21:30 користувач Mohammad  пише:
>>>
 Hi again Olegh,


 On Wednesday, February 12, 2020 at 10:51:57 PM UTC+3:30, oleghbond
 wrote:
>
> Dear Mohammad,
>
> I found that vertical tabs in colorful mode are not colored when are
> selected. So I tried the following tweak - adding the following selector 
> *.tc-vertical
> button.tc-tab-**selected* into tiddler
> *$:/plugins/kookma/shiraz/styles/colorful-sidebar-ta**b*
>
> .tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected*,
> .tc-vertical button.tc-tab-**selected* {
> background: none;
> border: none;
> border-bottom: solid 1px #737373 !important;
> font-weight: bold;
> color: #DB4C3F !important;
> }
>
> Amazingly this work on my wiki! Thank you for hint!

 Which version of Shiraz are you using?


> Please take this (or similar) into account in the next release.
>

 Thank you

>
> Olegh
> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation.
>> The focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary
>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd
>> which demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd,
>> table-id parameters are renamed for better compatibility with other part 
>> of
>> Shiraz plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview
>> to
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status,
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like
>>tblCaption to caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from
>>older release. Use tiddler commander to resolve the issue after 
>> update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a
>>column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>> --
 You received this message because you are subscribed to a topic in the
 Google Groups "TiddlyWiki" group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/tiddlywik

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-12 Thread Mohammad
Okay, to work everywhere it needs to use other selectors also.
I will see how to revise it.


--Mohammad

On Wednesday, February 12, 2020 at 11:43:16 PM UTC+3:30, oleghbond wrote:
>
> In order to make it workable at Control Panel 
> I even removed selector .tc-sidebar-lists. 
> You can check all these stuff at protw.github.io/prosteer
>
> https://bit.ly/oleghbond 
>
> Ср, 12 лют. 2020, 21:45 користувач Mohammad  > пише:
>
>> Thanks Olegh!
>>
>> Let's have a look.
>>
>> --Mohammad
>>
>> On Wednesday, February 12, 2020 at 11:11:57 PM UTC+3:30, oleghbond wrote:
>>>
>>> 2.0.15
>>>
>>> https://bit.ly/oleghbond 
>>>
>>> Ср, 12 лют. 2020, 21:30 користувач Mohammad  пише:
>>>
 Hi again Olegh,


 On Wednesday, February 12, 2020 at 10:51:57 PM UTC+3:30, oleghbond 
 wrote:
>
> Dear Mohammad,
>
> I found that vertical tabs in colorful mode are not colored when are 
> selected. So I tried the following tweak - adding the following selector 
> *.tc-vertical 
> button.tc-tab-**selected* into tiddler 
> *$:/plugins/kookma/shiraz/styles/colorful-sidebar-ta**b*
>
> .tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected*, 
> .tc-vertical button.tc-tab-**selected* {
> background: none;
> border: none;
> border-bottom: solid 1px #737373 !important;
> font-weight: bold;
> color: #DB4C3F !important;
> }
>
> Amazingly this work on my wiki! Thank you for hint!

 Which version of Shiraz are you using?
  

> Please take this (or similar) into account in the next release.
>

 Thank you 

>
> Olegh
> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. 
>> The focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary 
>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd 
>> which demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your 
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, 
>> table-id parameters are renamed for better compatibility with other part 
>> of 
>> Shiraz plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview 
>> to
>>  
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status, 
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like 
>>tblCaption to caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from 
>>older release. Use tiddler commander to resolve the issue after 
>> update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a 
>>column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>> -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups "TiddlyWiki" group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/tiddlywiki/dkVJV0zNgHU/unsubscribe.
 To unsubscribe from this 

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-12 Thread Olegh Bondarenko
In order to make it workable at Control Panel
I even removed selector .tc-sidebar-lists.
You can check all these stuff at protw.github.io/prosteer

https://bit.ly/oleghbond

Ср, 12 лют. 2020, 21:45 користувач Mohammad 
пише:

> Thanks Olegh!
>
> Let's have a look.
>
> --Mohammad
>
> On Wednesday, February 12, 2020 at 11:11:57 PM UTC+3:30, oleghbond wrote:
>>
>> 2.0.15
>>
>> https://bit.ly/oleghbond
>>
>> Ср, 12 лют. 2020, 21:30 користувач Mohammad  пише:
>>
>>> Hi again Olegh,
>>>
>>>
>>> On Wednesday, February 12, 2020 at 10:51:57 PM UTC+3:30, oleghbond wrote:

 Dear Mohammad,

 I found that vertical tabs in colorful mode are not colored when are
 selected. So I tried the following tweak - adding the following selector 
 *.tc-vertical
 button.tc-tab-**selected* into tiddler
 *$:/plugins/kookma/shiraz/styles/colorful-sidebar-ta**b*

 .tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected*,
 .tc-vertical button.tc-tab-**selected* {
 background: none;
 border: none;
 border-bottom: solid 1px #737373 !important;
 font-weight: bold;
 color: #DB4C3F !important;
 }

 Amazingly this work on my wiki! Thank you for hint!
>>>
>>> Which version of Shiraz are you using?
>>>
>>>
 Please take this (or similar) into account in the next release.

>>>
>>> Thank you
>>>

 Olegh
 четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>
> *Announcement:Shiraz plugin*
> *Date: Feb 7th, 2020*
> *Release: 2.0.15 beta*
> *Status: beta under development*
>
> A new beta update is available.
>
> This update contains tons of new features and improved documentation.
> The focus is now on dynamics tables.
> Dynamic tables in Shiraz is a subset lite version of Revolutionary
> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>
> This version has an example of creating task manager using table-fd
> which demonstrate how powerful are dynamic tables in Shiraz!
> All of these are based the wonderful transclusion in Tiddlywiki.
>
>
> As always I welcome all your feedback and comments and hope your
> evaluation help improving the Shiraz plugin!
>
> *IMPORTANT NOTE:*
>  Those who update from Shiraz 2 beta note that, the table-fd, table-id
> parameters are renamed for better compatibility with other part of Shiraz
> plugin.
>
> A tutorial of latest changes has been attached!
>
> Demo: https://kookma.github.io/Shiraz/
> Code: https://github.com/kookma/Shiraz
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
> A permview
> to
> see the latest changes (like tutorial)
>
>
> Best wishes
> Mohammad
>
> Revision 2.0.15
>
>- Date: [6th Feb 2020]
>- [NEW] the table-fd supports special column template tbl-checkbox
>- [NEW] the table-fd supports column templates priority, status,
>due-date
>- [NEW] task manager example using table-fd
>- [NEW] documentation for numerical summary in dynamic tables
>- [FIXED] dynamic tables parameters are simplified like tblCaption
>to caption, tblClass to class, tblFooter to footerRows
>- Warning: New update is not compatible with dynamic tables from
>older release. Use tiddler commander to resolve the issue after update.
>
> Revision 2.0.14
>
>- Date: [31st Jan 2020]
>- [NEW] table footer to be used for any type of summary
>- [NEW] mathematics macros to claculate the below values for a
>column
>   - count
>   - minall
>   - maxall
>   - sum
>   - product
>   - mean (arithematic average)
>   - median
>
>
> --
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "TiddlyWiki" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/tiddlywiki/dkVJV0zNgHU/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to
>>> tiddl...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/tiddlywiki/8a41e099-fdb0-4115-94e5-e54b1fab427d%40googlegroups.com
>>> 
>>> .
>>>
>> --
> You rec

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-12 Thread Mohammad
Thanks Olegh!

Let's have a look.

--Mohammad

On Wednesday, February 12, 2020 at 11:11:57 PM UTC+3:30, oleghbond wrote:
>
> 2.0.15
>
> https://bit.ly/oleghbond 
>
> Ср, 12 лют. 2020, 21:30 користувач Mohammad  > пише:
>
>> Hi again Olegh,
>>
>>
>> On Wednesday, February 12, 2020 at 10:51:57 PM UTC+3:30, oleghbond wrote:
>>>
>>> Dear Mohammad,
>>>
>>> I found that vertical tabs in colorful mode are not colored when are 
>>> selected. So I tried the following tweak - adding the following selector 
>>> *.tc-vertical 
>>> button.tc-tab-**selected* into tiddler 
>>> *$:/plugins/kookma/shiraz/styles/colorful-sidebar-ta**b*
>>>
>>> .tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected*, .tc-vertical 
>>> button.tc-tab-**selected* {
>>> background: none;
>>> border: none;
>>> border-bottom: solid 1px #737373 !important;
>>> font-weight: bold;
>>> color: #DB4C3F !important;
>>> }
>>>
>>> Amazingly this work on my wiki! Thank you for hint!
>>
>> Which version of Shiraz are you using?
>>  
>>
>>> Please take this (or similar) into account in the next release.
>>>
>>
>> Thank you 
>>
>>>
>>> Olegh
>>> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:

 *Announcement:Shiraz plugin*
 *Date: Feb 7th, 2020*
 *Release: 2.0.15 beta*
 *Status: beta under development*

 A new beta update is available.

 This update contains tons of new features and improved documentation. 
 The focus is now on dynamics tables.
 Dynamic tables in Shiraz is a subset lite version of Revolutionary 
 plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.

 This version has an example of creating task manager using table-fd 
 which demonstrate how powerful are dynamic tables in Shiraz!
 All of these are based the wonderful transclusion in Tiddlywiki.


 As always I welcome all your feedback and comments and hope your 
 evaluation help improving the Shiraz plugin!

 *IMPORTANT NOTE:*
  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
 parameters are renamed for better compatibility with other part of Shiraz 
 plugin.

 A tutorial of latest changes has been attached!

 Demo: https://kookma.github.io/Shiraz/
 Code: https://github.com/kookma/Shiraz

 Star it if you like it and send your feedback!
 Documentation proof reading for English is welcome!


 A permview 
 to
  
 see the latest changes (like tutorial)


 Best wishes
 Mohammad

 Revision 2.0.15

- Date: [6th Feb 2020]
- [NEW] the table-fd supports special column template tbl-checkbox
- [NEW] the table-fd supports column templates priority, status, 
due-date
- [NEW] task manager example using table-fd
- [NEW] documentation for numerical summary in dynamic tables
- [FIXED] dynamic tables parameters are simplified like tblCaption 
to caption, tblClass to class, tblFooter to footerRows
- Warning: New update is not compatible with dynamic tables from 
older release. Use tiddler commander to resolve the issue after update.

 Revision 2.0.14

- Date: [31st Jan 2020]
- [NEW] table footer to be used for any type of summary
- [NEW] mathematics macros to claculate the below values for a 
column
   - count
   - minall
   - maxall
   - sum
   - product
   - mean (arithematic average)
   - median


 -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/tiddlywiki/dkVJV0zNgHU/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> tiddl...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/8a41e099-fdb0-4115-94e5-e54b1fab427d%40googlegroups.com
>>  
>> 
>> .
>>
>

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

[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-12 Thread Mohammad
Hi again Olegh,


On Wednesday, February 12, 2020 at 10:51:57 PM UTC+3:30, oleghbond wrote:
>
> Dear Mohammad,
>
> I found that vertical tabs in colorful mode are not colored when are 
> selected. So I tried the following tweak - adding the following selector 
> *.tc-vertical 
> button.tc-tab-**selected* into tiddler 
> *$:/plugins/kookma/shiraz/styles/colorful-sidebar-ta**b*
>
> .tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected*, .tc-vertical 
> button.tc-tab-**selected* {
> background: none;
> border: none;
> border-bottom: solid 1px #737373 !important;
> font-weight: bold;
> color: #DB4C3F !important;
> }
>
> Amazingly this work on my wiki! Thank you for hint!

Which version of Shiraz are you using?
 

> Please take this (or similar) into account in the next release.
>

Thank you 

>
> Olegh
> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. The 
>> focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
>> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd which 
>> demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your 
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>> parameters are renamed for better compatibility with other part of Shiraz 
>> plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview 
>> to
>>  
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status, 
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>>caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from 
>>older release. Use tiddler commander to resolve the issue after update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>>

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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-12 Thread oleghbond
Dear Mohammad,

I found that vertical tabs in colorful mode are not colored when are 
selected. So I tried the following tweak - adding the following selector 
*.tc-vertical 
button.tc-tab-**selected* into tiddler 
*$:/plugins/kookma/shiraz/styles/colorful-sidebar-ta**b*

.tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected*, .tc-vertical 
button.tc-tab-**selected* {
background: none;
border: none;
border-bottom: solid 1px #737373 !important;
font-weight: bold;
color: #DB4C3F !important;
}

Please take this (or similar) into account in the next release.

Olegh
четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>
> *Announcement:Shiraz plugin*
> *Date: Feb 7th, 2020*
> *Release: 2.0.15 beta*
> *Status: beta under development*
>
> A new beta update is available.
>
> This update contains tons of new features and improved documentation. The 
> focus is now on dynamics tables.
> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>
> This version has an example of creating task manager using table-fd which 
> demonstrate how powerful are dynamic tables in Shiraz!
> All of these are based the wonderful transclusion in Tiddlywiki.
>
>
> As always I welcome all your feedback and comments and hope your 
> evaluation help improving the Shiraz plugin!
>
> *IMPORTANT NOTE:*
>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
> parameters are renamed for better compatibility with other part of Shiraz 
> plugin.
>
> A tutorial of latest changes has been attached!
>
> Demo: https://kookma.github.io/Shiraz/
> Code: https://github.com/kookma/Shiraz
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
> A permview 
> to
>  
> see the latest changes (like tutorial)
>
>
> Best wishes
> Mohammad
>
> Revision 2.0.15
>
>- Date: [6th Feb 2020]
>- [NEW] the table-fd supports special column template tbl-checkbox
>- [NEW] the table-fd supports column templates priority, status, 
>due-date
>- [NEW] task manager example using table-fd
>- [NEW] documentation for numerical summary in dynamic tables
>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>caption, tblClass to class, tblFooter to footerRows
>- Warning: New update is not compatible with dynamic tables from older 
>release. Use tiddler commander to resolve the issue after update.
>
> Revision 2.0.14
>
>- Date: [31st Jan 2020]
>- [NEW] table footer to be used for any type of summary
>- [NEW] mathematics macros to claculate the below values for a column
>   - count
>   - minall
>   - maxall
>   - sum
>   - product
>   - mean (arithematic average)
>   - median
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/89bdda75-0b18-41a3-968d-8fb1badac45c%40googlegroups.com.


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-12 Thread Mohammad
Hi cmari,
 I found the source of issue in the case you reported. Thank you for your 
feedback.
In 2.0.16 I have added description to docs regarding sorting of data in 
columns created from indexes.

For your information, the sort procedure is a modified version of Eric 
Shulman sort dataTiddler by index. The process uses a *value===tiddlerTitle* 
as the sort operator input!
As you see the data are of form of alphanumeric (when value is a number and 
tiddler title is a string) and simple *sort *for numbers does not work here 
(e.g. when you sort 10 100 110,...)

So, in the case you reported, using simply a *sortan *as sortOp input 
parameter resolve the issue.

Give a try and let me know the result.

--Mohammad



On Saturday, February 8, 2020 at 3:17:13 AM UTC+3:30, cmari wrote:
>
> Hi Mohammad,
>  I am interested in the sortable tables so I noticed that in the demo 
> tiddler "demo/table-from-indexes", the "homework" column does not sort in 
> numeric order. Should I not expect this? Sorry if missed something obvious!
> Thanks!
> cmari
>
> On Thursday, February 6, 2020 at 1:28:31 PM UTC-8, Mohammad wrote:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. The 
>> focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
>> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd which 
>> demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your 
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>> parameters are renamed for better compatibility with other part of Shiraz 
>> plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview 
>> to
>>  
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status, 
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>>caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from 
>>older release. Use tiddler commander to resolve the issue after update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>>

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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-12 Thread Mohammad
Olegh,

 I found the source of error!
The button size actually is defined in a 
stylesheet  $:/plugins/kookma/shiraz/styles/bs/btn-size
and the button in $:/plugins/kookma/shiraz/styles/bs/btn

Strangely TW put the $:/plugins/kookma/shiraz/styles/bs/btn-size 
before $:/plugins/kookma/shiraz/styles/bs/btn cause the size gets 
overwritten!

I will fix this in 2.0.16 by merging these two stylesheet!
For quick solution, you can simply open one of these two and use the tag 
pill and drag $:/plugins/kookma/shiraz/styles/bs/btn-size to a position 
after $:/plugins/kookma/shiraz/styles/bs/btn

--Mohammad


On Wednesday, February 12, 2020 at 12:36:52 PM UTC+3:30, oleghbond wrote:
>
> Mohammad, thanks,
>
> I did a walk-around by pasting *btn-lg* style code directly into a target 
> tiddler. After you fix this issue I'll delete this patch.
>
> Olegh
>
> середа, 12 лютого 2020 р. 05:56:43 UTC+2 користувач Mohammad написав:
>>
>> Olegh,
>>  To have a sense of real button sizes look at
>> https://www.w3schools.com/bootstrap4/bootstrap_buttons.asp
>>
>> --Mohammad
>>
>> On Wednesday, February 12, 2020 at 12:49:42 AM UTC+3:30, oleghbond wrote:
>>>
>>> Hello, Mohammad,
>>>
>>>
>>> It seems the buttons do not look of a proper size as it should be 
>>> accordingly to the classes btn-lg and btn-sm:
>>>
>>> [image: btn-lg.png]
>>> Olegh
>>>
>>>
>>> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:

 *Announcement:Shiraz plugin*
 *Date: Feb 7th, 2020*
 *Release: 2.0.15 beta*
 *Status: beta under development*

 A new beta update is available.

 This update contains tons of new features and improved documentation. 
 The focus is now on dynamics tables.
 Dynamic tables in Shiraz is a subset lite version of Revolutionary 
 plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.

 This version has an example of creating task manager using table-fd 
 which demonstrate how powerful are dynamic tables in Shiraz!
 All of these are based the wonderful transclusion in Tiddlywiki.


 As always I welcome all your feedback and comments and hope your 
 evaluation help improving the Shiraz plugin!

 *IMPORTANT NOTE:*
  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
 parameters are renamed for better compatibility with other part of Shiraz 
 plugin.

 A tutorial of latest changes has been attached!

 Demo: https://kookma.github.io/Shiraz/
 Code: https://github.com/kookma/Shiraz

 Star it if you like it and send your feedback!
 Documentation proof reading for English is welcome!


 A permview 
 to
  
 see the latest changes (like tutorial)


 Best wishes
 Mohammad

 Revision 2.0.15

- Date: [6th Feb 2020]
- [NEW] the table-fd supports special column template tbl-checkbox
- [NEW] the table-fd supports column templates priority, status, 
due-date
- [NEW] task manager example using table-fd
- [NEW] documentation for numerical summary in dynamic tables
- [FIXED] dynamic tables parameters are simplified like tblCaption 
to caption, tblClass to class, tblFooter to footerRows
- Warning: New update is not compatible with dynamic tables from 
older release. Use tiddler commander to resolve the issue after update.

 Revision 2.0.14

- Date: [31st Jan 2020]
- [NEW] table footer to be used for any type of summary
- [NEW] mathematics macros to claculate the below values for a 
column
   - count
   - minall
   - maxall
   - sum
   - product
   - mean (arithematic average)
   - median




-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9c609080-fe8f-47fb-bd6e-6a9ef50b0c3d%40googlegroups.com.


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-12 Thread oleghbond
Mohammad, thanks,

I did a walk-around by pasting *btn-lg* style code directly into a target 
tiddler. After you fix this issue I'll delete this patch.

Olegh

середа, 12 лютого 2020 р. 05:56:43 UTC+2 користувач Mohammad написав:
>
> Olegh,
>  To have a sense of real button sizes look at
> https://www.w3schools.com/bootstrap4/bootstrap_buttons.asp
>
> --Mohammad
>
> On Wednesday, February 12, 2020 at 12:49:42 AM UTC+3:30, oleghbond wrote:
>>
>> Hello, Mohammad,
>>
>>
>> It seems the buttons do not look of a proper size as it should be 
>> accordingly to the classes btn-lg and btn-sm:
>>
>> [image: btn-lg.png]
>> Olegh
>>
>>
>> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>>>
>>> *Announcement:Shiraz plugin*
>>> *Date: Feb 7th, 2020*
>>> *Release: 2.0.15 beta*
>>> *Status: beta under development*
>>>
>>> A new beta update is available.
>>>
>>> This update contains tons of new features and improved documentation. 
>>> The focus is now on dynamics tables.
>>> Dynamic tables in Shiraz is a subset lite version of Revolutionary 
>>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>>
>>> This version has an example of creating task manager using table-fd 
>>> which demonstrate how powerful are dynamic tables in Shiraz!
>>> All of these are based the wonderful transclusion in Tiddlywiki.
>>>
>>>
>>> As always I welcome all your feedback and comments and hope your 
>>> evaluation help improving the Shiraz plugin!
>>>
>>> *IMPORTANT NOTE:*
>>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>>> parameters are renamed for better compatibility with other part of Shiraz 
>>> plugin.
>>>
>>> A tutorial of latest changes has been attached!
>>>
>>> Demo: https://kookma.github.io/Shiraz/
>>> Code: https://github.com/kookma/Shiraz
>>>
>>> Star it if you like it and send your feedback!
>>> Documentation proof reading for English is welcome!
>>>
>>>
>>> A permview 
>>> to
>>>  
>>> see the latest changes (like tutorial)
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>> Revision 2.0.15
>>>
>>>- Date: [6th Feb 2020]
>>>- [NEW] the table-fd supports special column template tbl-checkbox
>>>- [NEW] the table-fd supports column templates priority, status, 
>>>due-date
>>>- [NEW] task manager example using table-fd
>>>- [NEW] documentation for numerical summary in dynamic tables
>>>- [FIXED] dynamic tables parameters are simplified like tblCaption 
>>>to caption, tblClass to class, tblFooter to footerRows
>>>- Warning: New update is not compatible with dynamic tables from 
>>>older release. Use tiddler commander to resolve the issue after update.
>>>
>>> Revision 2.0.14
>>>
>>>- Date: [31st Jan 2020]
>>>- [NEW] table footer to be used for any type of summary
>>>- [NEW] mathematics macros to claculate the below values for a column
>>>   - count
>>>   - minall
>>>   - maxall
>>>   - sum
>>>   - product
>>>   - mean (arithematic average)
>>>   - median
>>>
>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f3063305-f553-4e90-9afe-58e3ae302f0d%40googlegroups.com.


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-11 Thread Mohammad
Olegh,
 To have a sense of real button sizes look at
https://www.w3schools.com/bootstrap4/bootstrap_buttons.asp

--Mohammad

On Wednesday, February 12, 2020 at 12:49:42 AM UTC+3:30, oleghbond wrote:
>
> Hello, Mohammad,
>
>
> It seems the buttons do not look of a proper size as it should be 
> accordingly to the classes btn-lg and btn-sm:
>
> [image: btn-lg.png]
> Olegh
>
>
> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. The 
>> focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
>> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd which 
>> demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your 
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>> parameters are renamed for better compatibility with other part of Shiraz 
>> plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview 
>> to
>>  
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status, 
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>>caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from 
>>older release. Use tiddler commander to resolve the issue after update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3ba4b59a-130f-47bb-98a0-aa0ec85fcdd2%40googlegroups.com.


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-11 Thread Mohammad
Hi Olegh,
 Thank you for reporting this issue!
I correct it in future release!

--Mohammad

On Wednesday, February 12, 2020 at 12:49:42 AM UTC+3:30, oleghbond wrote:
>
> Hello, Mohammad,
>
>
> It seems the buttons do not look of a proper size as it should be 
> accordingly to the classes btn-lg and btn-sm:
>
> [image: btn-lg.png]
> Olegh
>
>
> четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. The 
>> focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
>> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd which 
>> demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your 
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>> parameters are renamed for better compatibility with other part of Shiraz 
>> plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview 
>> to
>>  
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status, 
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>>caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from 
>>older release. Use tiddler commander to resolve the issue after update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>>

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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-11 Thread oleghbond


Hello, Mohammad,


It seems the buttons do not look of a proper size as it should be 
accordingly to the classes btn-lg and btn-sm:

[image: btn-lg.png]
Olegh


четвер, 6 лютого 2020 р. 23:28:31 UTC+2 користувач Mohammad написав:
>
> *Announcement:Shiraz plugin*
> *Date: Feb 7th, 2020*
> *Release: 2.0.15 beta*
> *Status: beta under development*
>
> A new beta update is available.
>
> This update contains tons of new features and improved documentation. The 
> focus is now on dynamics tables.
> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>
> This version has an example of creating task manager using table-fd which 
> demonstrate how powerful are dynamic tables in Shiraz!
> All of these are based the wonderful transclusion in Tiddlywiki.
>
>
> As always I welcome all your feedback and comments and hope your 
> evaluation help improving the Shiraz plugin!
>
> *IMPORTANT NOTE:*
>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
> parameters are renamed for better compatibility with other part of Shiraz 
> plugin.
>
> A tutorial of latest changes has been attached!
>
> Demo: https://kookma.github.io/Shiraz/
> Code: https://github.com/kookma/Shiraz
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
> A permview 
> to
>  
> see the latest changes (like tutorial)
>
>
> Best wishes
> Mohammad
>
> Revision 2.0.15
>
>- Date: [6th Feb 2020]
>- [NEW] the table-fd supports special column template tbl-checkbox
>- [NEW] the table-fd supports column templates priority, status, 
>due-date
>- [NEW] task manager example using table-fd
>- [NEW] documentation for numerical summary in dynamic tables
>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>caption, tblClass to class, tblFooter to footerRows
>- Warning: New update is not compatible with dynamic tables from older 
>release. Use tiddler commander to resolve the issue after update.
>
> Revision 2.0.14
>
>- Date: [31st Jan 2020]
>- [NEW] table footer to be used for any type of summary
>- [NEW] mathematics macros to claculate the below values for a column
>   - count
>   - minall
>   - maxall
>   - sum
>   - product
>   - mean (arithematic average)
>   - median
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1de7ace2-68a8-40cc-92c4-b3dad95f0413%40googlegroups.com.


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-08 Thread Mohammad
Hi cmari,
 I confirm the issue and will push a new update!
The table-fd works fine but seems there is something wrong with latest 
table-id release.

--Mohammad

On Saturday, February 8, 2020 at 3:17:13 AM UTC+3:30, cmari wrote:
>
> Hi Mohammad,
>  I am interested in the sortable tables so I noticed that in the demo 
> tiddler "demo/table-from-indexes", the "homework" column does not sort in 
> numeric order. Should I not expect this? Sorry if missed something obvious!
> Thanks!
> cmari
>
> On Thursday, February 6, 2020 at 1:28:31 PM UTC-8, Mohammad wrote:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. The 
>> focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
>> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd which 
>> demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your 
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>> parameters are renamed for better compatibility with other part of Shiraz 
>> plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview 
>> to
>>  
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status, 
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>>caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from 
>>older release. Use tiddler commander to resolve the issue after update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>>

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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-07 Thread cmari
Hi Mohammad,
 I am interested in the sortable tables so I noticed that in the demo 
tiddler "demo/table-from-indexes", the "homework" column does not sort in 
numeric order. Should I not expect this? Sorry if missed something obvious!
Thanks!
cmari

On Thursday, February 6, 2020 at 1:28:31 PM UTC-8, Mohammad wrote:
>
> *Announcement:Shiraz plugin*
> *Date: Feb 7th, 2020*
> *Release: 2.0.15 beta*
> *Status: beta under development*
>
> A new beta update is available.
>
> This update contains tons of new features and improved documentation. The 
> focus is now on dynamics tables.
> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>
> This version has an example of creating task manager using table-fd which 
> demonstrate how powerful are dynamic tables in Shiraz!
> All of these are based the wonderful transclusion in Tiddlywiki.
>
>
> As always I welcome all your feedback and comments and hope your 
> evaluation help improving the Shiraz plugin!
>
> *IMPORTANT NOTE:*
>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
> parameters are renamed for better compatibility with other part of Shiraz 
> plugin.
>
> A tutorial of latest changes has been attached!
>
> Demo: https://kookma.github.io/Shiraz/
> Code: https://github.com/kookma/Shiraz
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
> A permview 
> to
>  
> see the latest changes (like tutorial)
>
>
> Best wishes
> Mohammad
>
> Revision 2.0.15
>
>- Date: [6th Feb 2020]
>- [NEW] the table-fd supports special column template tbl-checkbox
>- [NEW] the table-fd supports column templates priority, status, 
>due-date
>- [NEW] task manager example using table-fd
>- [NEW] documentation for numerical summary in dynamic tables
>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>caption, tblClass to class, tblFooter to footerRows
>- Warning: New update is not compatible with dynamic tables from older 
>release. Use tiddler commander to resolve the issue after update.
>
> Revision 2.0.14
>
>- Date: [31st Jan 2020]
>- [NEW] table footer to be used for any type of summary
>- [NEW] mathematics macros to claculate the below values for a column
>   - count
>   - minall
>   - maxall
>   - sum
>   - product
>   - mean (arithematic average)
>   - median
>
>
>

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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-06 Thread Mohammad
Hi again Diego,

On Friday, February 7, 2020 at 2:51:56 AM UTC+3:30, Diego Mesa wrote:
>
> Thanks Mohammad! 
>
> Shiraz is not a copy of TiddlyTables, but it uses TiddlyTables philosophy 
>> and mechanisms.
>>
>  
> I know! I just wasnt sure if it already came bundled in which might cause 
> some problems downstream.
>

Feel free to use them side by side! TiddlyTables is more powerful and more 
sophisticated and can handle many complex situation and when you work with 
a large number of tiddlers.
The secret behind is the use of column template and transclusion which lets 
you to create very special tables.



 

>  
>

> Thank you for all your work! 
>

Thank you

Cheers
Mohammad 

>
> On Thursday, February 6, 2020 at 4:01:25 PM UTC-6, Mohammad wrote:
>>
>> Hi Diego,
>>  No, they have no interference! The concept for implementation and 
>> mechanism is the same but they works differently with different settings, 
>> states, macros, ...
>> Shiraz is not a copy of TiddlyTables, but it uses TiddlyTables philosophy 
>> and mechanisms.
>>
>> You can keep them side by side!
>>
>> --Mohammad
>>
>>
>> On Friday, February 7, 2020 at 1:25:24 AM UTC+3:30, Diego Mesa wrote:
>>>
>>> Hey Mohammad,
>>>
>>> If we already have Alaan's plugin installed, should we remove it to use 
>>> yours? 
>>>
>>> On Thursday, February 6, 2020 at 3:44:48 PM UTC-6, Mohammad wrote:

 The $edit-text with calendar type in Task Manager example has been 
 tested on


- Chrome 79 desktop
- Chrome 79 Android
- FF 72
- Edge Chromium 81

 and works as expected.

 --Mohammad 

 On Friday, February 7, 2020 at 12:58:31 AM UTC+3:30, Mohammad wrote:
>
> *Announcement:Shiraz plugin*
> *Date: Feb 7th, 2020*
> *Release: 2.0.15 beta*
> *Status: beta under development*
>
> A new beta update is available.
>
> This update contains tons of new features and improved documentation. 
> The focus is now on dynamics tables.
> Dynamic tables in Shiraz is a subset lite version of Revolutionary 
> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>
> This version has an example of creating task manager using table-fd 
> which demonstrate how powerful are dynamic tables in Shiraz!
> All of these are based the wonderful transclusion in Tiddlywiki.
>
>
> As always I welcome all your feedback and comments and hope your 
> evaluation help improving the Shiraz plugin!
>
> *IMPORTANT NOTE:*
>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
> parameters are renamed for better compatibility with other part of Shiraz 
> plugin.
>
> A tutorial of latest changes has been attached!
>
> Demo: https://kookma.github.io/Shiraz/
> Code: https://github.com/kookma/Shiraz
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
> A permview 
> to
>  
> see the latest changes (like tutorial)
>
>
> Best wishes
> Mohammad
>
> Revision 2.0.15
>
>- Date: [6th Feb 2020]
>- [NEW] the table-fd supports special column template tbl-checkbox
>- [NEW] the table-fd supports column templates priority, status, 
>due-date
>- [NEW] task manager example using table-fd
>- [NEW] documentation for numerical summary in dynamic tables
>- [FIXED] dynamic tables parameters are simplified like tblCaption 
>to caption, tblClass to class, tblFooter to footerRows
>- Warning: New update is not compatible with dynamic tables from 
>older release. Use tiddler commander to resolve the issue after update.
>
> Revision 2.0.14
>
>- Date: [31st Jan 2020]
>- [NEW] table footer to be used for any type of summary
>- [NEW] mathematics macros to claculate the below values for a 
>column
>   - count
>   - minall
>   - maxall
>   - sum
>   - product
>   - mean (arithematic average)
>   - median
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9594bf9e-f291-410b-8acb-97e25d1fac5f%40googlegroups.com.


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-06 Thread Diego Mesa
Thanks Mohammad! 

Shiraz is not a copy of TiddlyTables, but it uses TiddlyTables philosophy 
> and mechanisms.
>
 
I know! I just wasnt sure if it already came bundled in which might cause 
some problems downstream.

Thank you for all your work! 

On Thursday, February 6, 2020 at 4:01:25 PM UTC-6, Mohammad wrote:
>
> Hi Diego,
>  No, they have no interference! The concept for implementation and 
> mechanism is the same but they works differently with different settings, 
> states, macros, ...
> Shiraz is not a copy of TiddlyTables, but it uses TiddlyTables philosophy 
> and mechanisms.
>
> You can keep them side by side!
>
> --Mohammad
>
>
> On Friday, February 7, 2020 at 1:25:24 AM UTC+3:30, Diego Mesa wrote:
>>
>> Hey Mohammad,
>>
>> If we already have Alaan's plugin installed, should we remove it to use 
>> yours? 
>>
>> On Thursday, February 6, 2020 at 3:44:48 PM UTC-6, Mohammad wrote:
>>>
>>> The $edit-text with calendar type in Task Manager example has been 
>>> tested on
>>>
>>>
>>>- Chrome 79 desktop
>>>- Chrome 79 Android
>>>- FF 72
>>>- Edge Chromium 81
>>>
>>> and works as expected.
>>>
>>> --Mohammad 
>>>
>>> On Friday, February 7, 2020 at 12:58:31 AM UTC+3:30, Mohammad wrote:

 *Announcement:Shiraz plugin*
 *Date: Feb 7th, 2020*
 *Release: 2.0.15 beta*
 *Status: beta under development*

 A new beta update is available.

 This update contains tons of new features and improved documentation. 
 The focus is now on dynamics tables.
 Dynamic tables in Shiraz is a subset lite version of Revolutionary 
 plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.

 This version has an example of creating task manager using table-fd 
 which demonstrate how powerful are dynamic tables in Shiraz!
 All of these are based the wonderful transclusion in Tiddlywiki.


 As always I welcome all your feedback and comments and hope your 
 evaluation help improving the Shiraz plugin!

 *IMPORTANT NOTE:*
  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
 parameters are renamed for better compatibility with other part of Shiraz 
 plugin.

 A tutorial of latest changes has been attached!

 Demo: https://kookma.github.io/Shiraz/
 Code: https://github.com/kookma/Shiraz

 Star it if you like it and send your feedback!
 Documentation proof reading for English is welcome!


 A permview 
 to
  
 see the latest changes (like tutorial)


 Best wishes
 Mohammad

 Revision 2.0.15

- Date: [6th Feb 2020]
- [NEW] the table-fd supports special column template tbl-checkbox
- [NEW] the table-fd supports column templates priority, status, 
due-date
- [NEW] task manager example using table-fd
- [NEW] documentation for numerical summary in dynamic tables
- [FIXED] dynamic tables parameters are simplified like tblCaption 
to caption, tblClass to class, tblFooter to footerRows
- Warning: New update is not compatible with dynamic tables from 
older release. Use tiddler commander to resolve the issue after update.

 Revision 2.0.14

- Date: [31st Jan 2020]
- [NEW] table footer to be used for any type of summary
- [NEW] mathematics macros to claculate the below values for a 
column
   - count
   - minall
   - maxall
   - sum
   - product
   - mean (arithematic average)
   - median




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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-06 Thread Mohammad
Hi Diego,
 No, they have no interference! The concept for implementation and 
mechanism is the same but they works differently with different settings, 
states, macros, ...
Shiraz is not a copy of TiddlyTables, but it uses TiddlyTables philosophy 
and mechanisms.

You can keep them side by side!

--Mohammad


On Friday, February 7, 2020 at 1:25:24 AM UTC+3:30, Diego Mesa wrote:
>
> Hey Mohammad,
>
> If we already have Alaan's plugin installed, should we remove it to use 
> yours? 
>
> On Thursday, February 6, 2020 at 3:44:48 PM UTC-6, Mohammad wrote:
>>
>> The $edit-text with calendar type in Task Manager example has been tested 
>> on
>>
>>
>>- Chrome 79 desktop
>>- Chrome 79 Android
>>- FF 72
>>- Edge Chromium 81
>>
>> and works as expected.
>>
>> --Mohammad 
>>
>> On Friday, February 7, 2020 at 12:58:31 AM UTC+3:30, Mohammad wrote:
>>>
>>> *Announcement:Shiraz plugin*
>>> *Date: Feb 7th, 2020*
>>> *Release: 2.0.15 beta*
>>> *Status: beta under development*
>>>
>>> A new beta update is available.
>>>
>>> This update contains tons of new features and improved documentation. 
>>> The focus is now on dynamics tables.
>>> Dynamic tables in Shiraz is a subset lite version of Revolutionary 
>>> plugin TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>>
>>> This version has an example of creating task manager using table-fd 
>>> which demonstrate how powerful are dynamic tables in Shiraz!
>>> All of these are based the wonderful transclusion in Tiddlywiki.
>>>
>>>
>>> As always I welcome all your feedback and comments and hope your 
>>> evaluation help improving the Shiraz plugin!
>>>
>>> *IMPORTANT NOTE:*
>>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>>> parameters are renamed for better compatibility with other part of Shiraz 
>>> plugin.
>>>
>>> A tutorial of latest changes has been attached!
>>>
>>> Demo: https://kookma.github.io/Shiraz/
>>> Code: https://github.com/kookma/Shiraz
>>>
>>> Star it if you like it and send your feedback!
>>> Documentation proof reading for English is welcome!
>>>
>>>
>>> A permview 
>>> to
>>>  
>>> see the latest changes (like tutorial)
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>> Revision 2.0.15
>>>
>>>- Date: [6th Feb 2020]
>>>- [NEW] the table-fd supports special column template tbl-checkbox
>>>- [NEW] the table-fd supports column templates priority, status, 
>>>due-date
>>>- [NEW] task manager example using table-fd
>>>- [NEW] documentation for numerical summary in dynamic tables
>>>- [FIXED] dynamic tables parameters are simplified like tblCaption 
>>>to caption, tblClass to class, tblFooter to footerRows
>>>- Warning: New update is not compatible with dynamic tables from 
>>>older release. Use tiddler commander to resolve the issue after update.
>>>
>>> Revision 2.0.14
>>>
>>>- Date: [31st Jan 2020]
>>>- [NEW] table footer to be used for any type of summary
>>>- [NEW] mathematics macros to claculate the below values for a column
>>>   - count
>>>   - minall
>>>   - maxall
>>>   - sum
>>>   - product
>>>   - mean (arithematic average)
>>>   - median
>>>
>>>
>>>

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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-06 Thread Diego Mesa
Hey Mohammad,

If we already have Alaan's plugin installed, should we remove it to use 
yours? 

On Thursday, February 6, 2020 at 3:44:48 PM UTC-6, Mohammad wrote:
>
> The $edit-text with calendar type in Task Manager example has been tested 
> on
>
>
>- Chrome 79 desktop
>- Chrome 79 Android
>- FF 72
>- Edge Chromium 81
>
> and works as expected.
>
> --Mohammad 
>
> On Friday, February 7, 2020 at 12:58:31 AM UTC+3:30, Mohammad wrote:
>>
>> *Announcement:Shiraz plugin*
>> *Date: Feb 7th, 2020*
>> *Release: 2.0.15 beta*
>> *Status: beta under development*
>>
>> A new beta update is available.
>>
>> This update contains tons of new features and improved documentation. The 
>> focus is now on dynamics tables.
>> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
>> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>>
>> This version has an example of creating task manager using table-fd which 
>> demonstrate how powerful are dynamic tables in Shiraz!
>> All of these are based the wonderful transclusion in Tiddlywiki.
>>
>>
>> As always I welcome all your feedback and comments and hope your 
>> evaluation help improving the Shiraz plugin!
>>
>> *IMPORTANT NOTE:*
>>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
>> parameters are renamed for better compatibility with other part of Shiraz 
>> plugin.
>>
>> A tutorial of latest changes has been attached!
>>
>> Demo: https://kookma.github.io/Shiraz/
>> Code: https://github.com/kookma/Shiraz
>>
>> Star it if you like it and send your feedback!
>> Documentation proof reading for English is welcome!
>>
>>
>> A permview 
>> to
>>  
>> see the latest changes (like tutorial)
>>
>>
>> Best wishes
>> Mohammad
>>
>> Revision 2.0.15
>>
>>- Date: [6th Feb 2020]
>>- [NEW] the table-fd supports special column template tbl-checkbox
>>- [NEW] the table-fd supports column templates priority, status, 
>>due-date
>>- [NEW] task manager example using table-fd
>>- [NEW] documentation for numerical summary in dynamic tables
>>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>>caption, tblClass to class, tblFooter to footerRows
>>- Warning: New update is not compatible with dynamic tables from 
>>older release. Use tiddler commander to resolve the issue after update.
>>
>> Revision 2.0.14
>>
>>- Date: [31st Jan 2020]
>>- [NEW] table footer to be used for any type of summary
>>- [NEW] mathematics macros to claculate the below values for a column
>>   - count
>>   - minall
>>   - maxall
>>   - sum
>>   - product
>>   - mean (arithematic average)
>>   - median
>>
>>
>>

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


[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-02-06 Thread Mohammad
The $edit-text with calendar type in Task Manager example has been tested on


   - Chrome 79 desktop
   - Chrome 79 Android
   - FF 72
   - Edge Chromium 81

and works as expected.

--Mohammad 

On Friday, February 7, 2020 at 12:58:31 AM UTC+3:30, Mohammad wrote:
>
> *Announcement:Shiraz plugin*
> *Date: Feb 7th, 2020*
> *Release: 2.0.15 beta*
> *Status: beta under development*
>
> A new beta update is available.
>
> This update contains tons of new features and improved documentation. The 
> focus is now on dynamics tables.
> Dynamic tables in Shiraz is a subset lite version of Revolutionary plugin 
> TiddlyTables by Alaan Aldrich. So all kudos goes to Alaan.
>
> This version has an example of creating task manager using table-fd which 
> demonstrate how powerful are dynamic tables in Shiraz!
> All of these are based the wonderful transclusion in Tiddlywiki.
>
>
> As always I welcome all your feedback and comments and hope your 
> evaluation help improving the Shiraz plugin!
>
> *IMPORTANT NOTE:*
>  Those who update from Shiraz 2 beta note that, the table-fd, table-id 
> parameters are renamed for better compatibility with other part of Shiraz 
> plugin.
>
> A tutorial of latest changes has been attached!
>
> Demo: https://kookma.github.io/Shiraz/
> Code: https://github.com/kookma/Shiraz
>
> Star it if you like it and send your feedback!
> Documentation proof reading for English is welcome!
>
>
> A permview 
> to
>  
> see the latest changes (like tutorial)
>
>
> Best wishes
> Mohammad
>
> Revision 2.0.15
>
>- Date: [6th Feb 2020]
>- [NEW] the table-fd supports special column template tbl-checkbox
>- [NEW] the table-fd supports column templates priority, status, 
>due-date
>- [NEW] task manager example using table-fd
>- [NEW] documentation for numerical summary in dynamic tables
>- [FIXED] dynamic tables parameters are simplified like tblCaption to 
>caption, tblClass to class, tblFooter to footerRows
>- Warning: New update is not compatible with dynamic tables from older 
>release. Use tiddler commander to resolve the issue after update.
>
> Revision 2.0.14
>
>- Date: [31st Jan 2020]
>- [NEW] table footer to be used for any type of summary
>- [NEW] mathematics macros to claculate the below values for a column
>   - count
>   - minall
>   - maxall
>   - sum
>   - product
>   - mean (arithematic average)
>   - median
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8f2ee9b2-01fb-45f2-bc58-88ec13420f75%40googlegroups.com.