Re: [tw5] How to change ViewTemplate/body for tiddlers with specific tag?

2021-01-06 Thread maki aea

my bad, eric is right! (also my answer was wrong, sorry)
On Thursday, January 7, 2021 at 6:04:04 AM UTC Eric Shulman wrote:

> There is a syntax error in the filter:
><$list filter="[all[current[tag[test]]">
> should be:
><$list filter="[all[current]tag[test]]">
>
> (i.e., the third open bracket should be a CLOSE bracket)
>
> -e
>

-- 
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/b46e3af7-dc84-4655-ada4-45ec4ec07791n%40googlegroups.com.


[tw5] Re: Markdown bullet spacing

2021-01-06 Thread Brian Radspinner
You can try adjusting the top & bottom margins of the P element inside each 
of the Markdown-produced OL > LI items. Make a new tiddler and tag it with 
*$:/tags/Stylesheet*. In the tiddler body add some CSS for adjusting those 
paragraph margins, like this...

*ol > li > p { margin: 0.25em auto; }*

This will have equal top & bottom margins, adjust the first margin value to 
adjust the spacing. 

If you want to adjust them each independently, try this instead...

*ol > li > p { margin: 0.25em auto 0.25em; }*

Adjust the first value for the top margin, third value for the bottom 
margin.
On Wednesday, January 6, 2021 at 8:10:01 PM UTC-7 bluespire wrote:

> The spacing between bullets is different between the normal TW5 renderer 
> and the Markdown renderer (Mardown's seems to be double-spaced (2 
> newlines). How can I change that spacing?
>
>

-- 
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/44e20a98-0a8f-43a5-881e-27256d56a36dn%40googlegroups.com.


[tw5] Re: full-screen in TiddlyDesktop not working

2021-01-06 Thread Stefan Schlechter
Hello Tones,

I pasted it wrong - correct is: 
*TiddlyDesktop is running maximized. Opening my Wiki will open a new 
window.*

--> as you wrote in item1: in TiddlyDesktop, the full screen is effectively 
"disabled" 

Thanks for feedback
Stefan
TW Tones schrieb am Mittwoch, 6. Jänner 2021 um 22:51:07 UTC+1:

> Stefan,
>
> For you to say the following *"TiddlyDesktop is running maximized in 
> Firefox"* suggests you are using TiddlyDesktop to* "host a node server"* 
> otherwise I don't understand the sentence.
>
>
>1. If the wiki is used in TiddlyDesktop, the full screen is 
>effectively "disabled" because it is already "full screen within the 
>application window".
>2. if the wiki is used in the browser full screen works because this 
>is function of the browser, to hide the "chrome" (menus and application 
>controls)
>
> In item 1 Above, other than an inactive button, what would you like to 
> happen? Remembering that you can maximise the application!
>
> In TiddlyDesktop, I can also open a tiddler in a "new window" and maximise 
> that, in the browser it carries a little more "chrome".
>
> Regards
> Tones
>
>
> On Wednesday, 6 January 2021 at 23:57:15 UTC+11 schlechter...@gmail.com 
> wrote:
>
>> Hi Tones,
>>
>> TiddlyDesktop is running maximized in Firefox. Opening my Wiki will open 
>> a new window.
>>
>> Opening the Wikki with Firefox and using the wiki tool [image: 
>> full-screen.jpg]  the Taskbar, tabs of browser etc. will disappear - you 
>> see only the wiki
>> In TiddlyDesktop is 'full-screen' without function.
>>
>> Stefan
>> TW Tones schrieb am Mittwoch, 6. Jänner 2021 um 13:02:05 UTC+1:
>>
>>> Full screen = Full Size ?
>>>
>>> I think its because Wikis in tiddlyDesktop are already full screen in 
>>> some ways, maximise the window for maximum size. 
>>>
>>> With a local app you can maximise the applications, with browsers they 
>>> have a full screen option to reduce the "chrome" (menu and toolbars, that 
>>> is a browser function (not an application feature) unless it is written as 
>>> such eg; Image viewers etc...
>>>
>>> What exactly do you want when you use Full-screen?
>>>
>>> Tones
>>>
>>> On Wednesday, 6 January 2021 at 22:49:14 UTC+11 schlechter...@gmail.com 
>>> wrote:
>>>
 Hello,

 I'm using TiddlyDesktop version 0.0.14.
 Button: Full-size is not working.

 When I open my Tiddly with browser --> ok.

 Any ideas?
 Thanks, Stefan



-- 
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/7762b573-bbd5-46a0-b22e-788ea4d444f0n%40googlegroups.com.


Re: [tw5] How to change ViewTemplate/body for tiddlers with specific tag?

2021-01-06 Thread Eric Shulman
There is a syntax error in the filter:
   <$list filter="[all[current[tag[test]]">
should be:
   <$list filter="[all[current]tag[test]]">

(i.e., the third open bracket should be a CLOSE bracket)

-e

-- 
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/fb191d85-cace-4a43-a453-1dbfd14efff7n%40googlegroups.com.


Re: [tw5] How to change ViewTemplate/body for tiddlers with specific tag?

2021-01-06 Thread maki aea
i think you need to set your Test View Template content type 
to text/vnd.tiddlywiki

please see working example 
http://makiaea.org/00045/20201205makiaea-anwiki#Card%20Template%20tap

hth
On Thursday, January 7, 2021 at 4:41:25 AM UTC jos...@poehls.me wrote:

> Thanks for the reply. I feel like I’m probably missing something. I tried 
> what I understood you say but it isn’t working like I expected. Here’s what 
> I’ve got so far:
>
>
>
> On Jan 6, 2021, at 10:17 PM, 'Mark S.' via TiddlyWiki <
> tiddl...@googlegroups.com> wrote:
>
> Generally you don't want to hack a core tiddler, since that will make 
> upgrading difficult.
>
> Usually you would create a tiddler and tag it with $:/tags/ViewTemplate . 
> Then in the text box you would put
>
> <$list filter="[all[current[tag[test]]">
> Whatever text you want to be displayed when the tag is "test"
> 
>
> Now it should display at the bottom of any tiddler tagged "test". If you 
> click on the $:/tags/ViewTemplate tag, you can drag your tiddler up or down 
> to position as you would like.
>
> HTH
>
> On Wednesday, January 6, 2021 at 7:34:40 PM UTC-8 jos...@poehls.me wrote:
>
>> Hey guys. I've been trying to figure out how to do this: if my tiddler is 
>> tagged "test" (for example), I want the view/render template to have some 
>> content appended to it.
>>
>> I found the $:/core/ui/ViewTemplate/body shadow tiddler but I'm not sure 
>> how to add a conditional that says "if the current tiddler has X tag show Y 
>> content".
>>
>> Any pointers? Thanks!
>>
>> Here's where I've gotten so far, though it isn't working. The <$reveal> 
>> element at the end is my attempt.
>>
>> [image: Screen Shot 2021-01-06 at 9.28.52 PM.png]
>>
>
> -- 
> 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/Jg-nmLk-yxs/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> tiddlywiki+...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/d637e6be-b5c9-4f75-928c-5d1730371a18n%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/be597c0a-b10a-4ad4-91bf-c3b358b18dfcn%40googlegroups.com.


[tw5] Re: How to change ViewTemplate/body for tiddlers with specific tag?

2021-01-06 Thread 'Mark S.' via TiddlyWiki
Generally you don't want to hack a core tiddler, since that will make 
upgrading difficult.

Usually you would create a tiddler and tag it with $:/tags/ViewTemplate . 
Then in the text box you would put

<$list filter="[all[current[tag[test]]">
Whatever text you want to be displayed when the tag is "test"


Now it should display at the bottom of any tiddler tagged "test". If you 
click on the $:/tags/ViewTemplate tag, you can drag your tiddler up or down 
to position as you would like.

HTH

On Wednesday, January 6, 2021 at 7:34:40 PM UTC-8 jos...@poehls.me wrote:

> Hey guys. I've been trying to figure out how to do this: if my tiddler is 
> tagged "test" (for example), I want the view/render template to have some 
> content appended to it.
>
> I found the $:/core/ui/ViewTemplate/body shadow tiddler but I'm not sure 
> how to add a conditional that says "if the current tiddler has X tag show Y 
> content".
>
> Any pointers? Thanks!
>
> Here's where I've gotten so far, though it isn't working. The <$reveal> 
> element at the end is my attempt.
>
> [image: Screen Shot 2021-01-06 at 9.28.52 PM.png]
>

-- 
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/d637e6be-b5c9-4f75-928c-5d1730371a18n%40googlegroups.com.


[tw5] Re: Refresh all tiddlers

2021-01-06 Thread PMario
Hi,
The StoryList can be saved. Open the ControlPanel : Info page. The 
DefaultTiddlers setting allows you to click the "retain story ordering"
button.
The default tiddlers are also shown, if you click the Home Button.
-m
On Wednesday, January 6, 2021 at 12:29:35 PM UTC+1 Stobot wrote:

> Is there a way to refresh all open tiddlers without refreshing the wiki as 
> a whole?
>
> Use case is that I use TW for project management, and often have a number 
> of tiddlers open. Many of them show stats around either the current date, 
> number of dates from current date to due date, etc. When I come back to the 
> computer the next day, obviously all of those dates / duration values are 
> wrong, and so they need to be refreshed/recalculated. 
>
> I can obviously to a full save and browser refresh, though I lose my 
> story, and sometimes I don't actually *want* to save it. Sometimes I'm 
> finding instead that I open each in edit view and then discard changes 
> which fixes it. Just wondering if there's another way to accomplish this. I 
> guess programmatically flipping through each tiddler in StoryList and 
> sending edit-mode/read-mode messages?
>
>

-- 
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/94a002ec-e86b-4b3a-9fbe-6bf43474aa3bn%40googlegroups.com.


[tw5] Markdown bullet spacing

2021-01-06 Thread bluespire
The spacing between bullets is different between the normal TW5 renderer 
and the Markdown renderer (Mardown's seems to be double-spaced (2 
newlines). How can I change that spacing?

-- 
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/3c7b80cd-013f-4dd4-b7b9-ae309c5fb6f2n%40googlegroups.com.


[tw5] Re: WYSIWYG editor for TW5

2021-01-06 Thread bluespire
I've got it to work, for the most part. Now I'm struggling to figure out 
why I can't get file pasting and uploading to work (for screenshots). No 
matter what I try, I keep getting a console error about the upload variable 
not being set. Now, most of the examples that I see for setting this up use 
a JS script to instantiate ckeditor in the body of an HTML page. I'm not 
sure what the analog to that is in TW5. Anyone have any ideas on this?

On Monday, December 28, 2020 at 12:23:54 PM UTC-6 bluespire wrote:

> @Mark @ BJ
> *Mark, that worked brilliantly*. FYI, it was working using the cloudflare 
> link, but I wanted to customize the package, and that can only be done with 
> a local file.
> Thanks so much!
>
> BJ, can you update your documentation for this nodejs solution?
>
> On Sunday, December 27, 2020 at 9:58:12 PM UTC-6 Mark S. wrote:
>
>> On Sunday, December 27, 2020 at 7:42:14 PM UTC-8 bluespire wrote:
>>
>>>
>>>- Current body of "$:/plugin/bj/visualeditor/includelib": >>
>>> src='file:\\\c\users\Persona\Apps\TiddlyWikis\Personal\ckeditor\ckeditor.js'>
>>>
>>> I would be surprised if the browser allowed you mix a web page (even if 
>> local) with a local file path.
>>
>> Can you navigate to  
>> http://cdnjs.cloudflare.com/ajax/libs/ckeditor/4.3.2/ckeditor.js ?
>>
>> (I can right now, but understand it may go down).
>>
>> If so, you might try changing src above to
>>
>> src="http://cdnjs.cloudflare.com/ajax/libs/ckeditor/4.3.2/ckeditor.js;
>>  
>> TW on node now has a way to serve up static files. Not sure if it will 
>> serve up js files though. But if you wanted your own offline (not on the 
>> net) version, you would need to serve up ckeditor.js somehow, I think.
>>
>> See 
>> https://tiddlywiki.com/#Using%20the%20integrated%20static%20file%20server
>>
>> So you would make a files directory, put ckeditor.js in it, and change 
>> src to the path ckeditor.js has on your local server.
>>
>>
>>
>>
>>
>>

-- 
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/9d8e92a2-6d5b-443a-b8f9-275dc44b81d2n%40googlegroups.com.


[tw5] Re: Next features in Projectify?

2021-01-06 Thread TW Tones
If we build solutions using tiddlywikis standard methods it should be 
possible to integrate projectify with the other plugins, I believe a 
timeline and Gantt charts have being done before.

Of course it takes time to learn the generic method, you can see this for 
example in BTC's https://groups.google.com/g/tiddlywiki/c/SBbNY3awutA and 
kanban.

This approach permits one plugin to enhance another rather than compete 
with others. 

Tones

On Thursday, 7 January 2021 at 11:07:01 UTC+11 dieg...@gmail.com wrote:

> Nico - firstly thank you for your excellent recent contributions! This 
> project is awesome! 
>
> I agree strongly with Sylvain that a visual way (Gantt chart, etc.) would 
> be great! (though of course, is probably beyond the scope of this plugin). 
>
> On Wednesday, January 6, 2021 at 2:05:22 PM UTC-5 sil...@gmail.com wrote:
>
>> Hello,
>>
>> Nice roadmap :)
>>  
>> * Make project card colours customizable : *Yes !*
>> * Add support for recurring tasks : I'm wondering if this could work like 
>> Droptask (Ayoa now) when you finish a task, the next task is created with 
>> next due time (maybe it's the normal way so my comment is useless).
>>
>> A way to represent visualy in time is interresting also (like Gantt view).
>>
>> And it's mono-user now (because single-file orianted and multiuser with 
>> TW is not perfect yet without Bob), but in future asign task to member 
>> project (even if I'm the one in charge, it will be interresting to do that, 
>> and have filter view by asign to remember people they are late :D).
>>
>>
>> Sylvain
>> Le mercredi 6 janvier 2021 à 18:22:44 UTC+1, Nicolas Petton a écrit :
>>
>>> Hi! 
>>>
>>> I have now implemented all the features I really care about in 
>>> Projectify (https://nicolas.petton.fr/tw/projectify.html), so I was 
>>> wondering what other people might miss in the plugin. 
>>>
>>> On my todo-list I have the following (in no particular order): 
>>>
>>> * Add support for recurring tasks 
>>> * Add support for project templates (to be used when creating new 
>>> projects) 
>>> * Make project card colours customizable 
>>> * Add documentation about implementing specific workflows (GTD setup, 
>>> etc.) 
>>> * Add support for filtering by tags in the project list/cards 
>>> * Add a search input for filtering the project list/cards 
>>> * Add a kanban view 
>>>
>>> Is there anything else you think should be added to the plugin? Anything 
>>> from the list above that should be prioritized? 
>>>
>>> Thanks! 
>>> Nico 
>>>
>>

-- 
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/1de1dda0-860b-4f0b-a194-b96cc084e769n%40googlegroups.com.


[tw5] Re: Next features in Projectify?

2021-01-06 Thread danraymond
Nico;
Have to say this is one of the best contributions to my use of Tiddlywiki! 
Your proposed additions are more than enough I think. The kanban addition 
when it comes would be welcome. I currently use "Tekan" by tesseract It 
works well, something similar would be great.

On Thursday, January 7, 2021 at 10:07:01 AM UTC+10 dieg...@gmail.com wrote:

> Nico - firstly thank you for your excellent recent contributions! This 
> project is awesome! 
>
> I agree strongly with Sylvain that a visual way (Gantt chart, etc.) would 
> be great! (though of course, is probably beyond the scope of this plugin). 
>
> On Wednesday, January 6, 2021 at 2:05:22 PM UTC-5 sil...@gmail.com wrote:
>
>> Hello,
>>
>> Nice roadmap :)
>>  
>> * Make project card colours customizable : *Yes !*
>> * Add support for recurring tasks : I'm wondering if this could work like 
>> Droptask (Ayoa now) when you finish a task, the next task is created with 
>> next due time (maybe it's the normal way so my comment is useless).
>>
>> A way to represent visualy in time is interresting also (like Gantt view).
>>
>> And it's mono-user now (because single-file orianted and multiuser with 
>> TW is not perfect yet without Bob), but in future asign task to member 
>> project (even if I'm the one in charge, it will be interresting to do that, 
>> and have filter view by asign to remember people they are late :D).
>>
>>
>> Sylvain
>> Le mercredi 6 janvier 2021 à 18:22:44 UTC+1, Nicolas Petton a écrit :
>>
>>> Hi! 
>>>
>>> I have now implemented all the features I really care about in 
>>> Projectify (https://nicolas.petton.fr/tw/projectify.html), so I was 
>>> wondering what other people might miss in the plugin. 
>>>
>>> On my todo-list I have the following (in no particular order): 
>>>
>>> * Add support for recurring tasks 
>>> * Add support for project templates (to be used when creating new 
>>> projects) 
>>> * Make project card colours customizable 
>>> * Add documentation about implementing specific workflows (GTD setup, 
>>> etc.) 
>>> * Add support for filtering by tags in the project list/cards 
>>> * Add a search input for filtering the project list/cards 
>>> * Add a kanban view 
>>>
>>> Is there anything else you think should be added to the plugin? Anything 
>>> from the list above that should be prioritized? 
>>>
>>> Thanks! 
>>> Nico 
>>>
>>

-- 
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/01ed7b8d-a2a6-4e88-8935-001329fe15d7n%40googlegroups.com.


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-06 Thread TW Tones
BTC,

I am currently building the following;

   - a Field show-kanban-here which if yes a view template transcludes 
   {{||Kanban}}
   - A button to add or toggle show-kanban-here
  - This allows any tiddler to become a Kanban, then the columns and 
  tiddlers can be dropped.
  - This allows the Kanban to be hidden if needed.
   
I love how this makes use of the list field, However I can see in future 
wanting to use a different field, since list is used to order tags as well.

Post Script,

   - I am also building generic list handling because this is a clear 
   strength of tiddlywiki.
   - This would allow any generated list for example to be pasted into a 
   Kanban Board or column or other field.

Regards
Tony
On Tuesday, 5 January 2021 at 13:50:44 UTC+11 TW Tones wrote:

> BTC,
>
> Great stuff. I particularly like your Kanban and like the way you are 
> leveraging the history for "compound tiddlers". 
>
> I really like the way you handle various drag and drop handling
>
>- Although the top + area to start new columns is great, after 
>building my board, I would like to be able to hide it, or toggle it, or 
>perhaps move it to the bottom.
>
> Other possible improvements from my perspective
>
>- Option to hide the  when no text exists for a card (good for 
>simple lists)
>- Perhaps the ability to toggle the display of the text when it exists
>- love the inline edit, but a link to the actual tiddler would be 
>helpful.
>
> More advanced features
>
>- It would be nice if we could introduce our own buttons and subtitle 
>to each column and cards, 
>   - Much like the viewToolBar and subtitle works on tiddlers. 
>   - This would allow a designer to add more advanced features to the 
>   board and cards
>  - Archive, tagging, long description under the heading and more. 
>  Even the existing subtitle, for a tiddler.
>  - And like the  viewToolBar and subtitle conditional 
>  lists/reveals would allow response to the current tiddler.
>   - A similar bottom bar on each column or card would also permit 
>   useful tools to be introduced to cards
>- Could Muuri be activated and deactivated with the new Layout switch?
>
> Personal use under investigation.
>
> I am keen to look at building a sophisticated evaluation tool making use 
> of your Kanban as so far it seems potentially the most extensible so far.
>
>- I would want to extend it as an addon to you Kanban rather than 
>forking it, thus we can make use of it with Muuri
>- This would mean I need to find ways to link a tiddler in one column 
>with another and sort them accordingly.
>- Build some advanced history list tools, usable elsewhere as well
>   - Eg; access the list in the set order elsewhere than in the Kanban
>   - List each history list, remove the prefix list and/or indicate 
>   that lists currentTiddler. Helps access where you were last active.
>
> Bug?
>
> There seems to be a bug somewhere that caused this item to be listed in 
> the history tiddler and currentTiddler field, possibly the result of a drag 
> operation. I will attempt to reproduce and document.
>
> {
> "title": " https://burningtreec.github.io/tiddlywiki-muuri/#Todo\; 
> style=\"box-sizing: border-box; text-decoration: underline; font-weight: 
> 500; color: rgb(68, 68, 68); user-select: inherit; font-family: system-ui, 
> -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif, 
> Apple Color Emoji, Segoe UI Emoji; font-size: 14px; 
> font-style: normal; font-variant-ligatures: normal; font-variant-caps: 
> normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 
> 0px; text-transform: none; white-space: nowrap; widows: 2; word-spacing: 
> 0px; -webkit-text-stroke-width: 0px; background-color: rgb(244, 244, 
> 244);\">o"
> },
>
> Lovely work
> Tones
> On Saturday, 2 January 2021 at 07:01:06 UTC+11 BurningTreeC wrote:
>
>> I hereby announce the release of the *Muuri StoryView* plugin version 
>> 0.2.0
>>
>> The Demo page with installation instructions can be found at:
>>
>> https://burningtreec.github.io/tiddlywiki-muuri
>>
>> The GitHub repository is located at 
>> https://github.com/BurningTreeC/tiddlywiki-muuri
>>
>>
>> For issues please consider leaving me an issue over at GitHub or here in 
>> this Google Groups thread
>>
>> If you have questions about the usage or ideas for the next release 
>> please leave me a comment here
>>
>> I hope someone finds this plugin useful,
>> best wishes,
>> BTC
>>
>

-- 
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/10a5e71f-7a51-4076-a5a4-8697c6f1eb0en%40googlegroups.com.


[tw5] Re: Next features in Projectify?

2021-01-06 Thread dieg...@gmail.com
Nico - firstly thank you for your excellent recent contributions! This 
project is awesome! 

I agree strongly with Sylvain that a visual way (Gantt chart, etc.) would 
be great! (though of course, is probably beyond the scope of this plugin). 

On Wednesday, January 6, 2021 at 2:05:22 PM UTC-5 sil...@gmail.com wrote:

> Hello,
>
> Nice roadmap :)
>  
> * Make project card colours customizable : *Yes !*
> * Add support for recurring tasks : I'm wondering if this could work like 
> Droptask (Ayoa now) when you finish a task, the next task is created with 
> next due time (maybe it's the normal way so my comment is useless).
>
> A way to represent visualy in time is interresting also (like Gantt view).
>
> And it's mono-user now (because single-file orianted and multiuser with TW 
> is not perfect yet without Bob), but in future asign task to member project 
> (even if I'm the one in charge, it will be interresting to do that, and 
> have filter view by asign to remember people they are late :D).
>
>
> Sylvain
> Le mercredi 6 janvier 2021 à 18:22:44 UTC+1, Nicolas Petton a écrit :
>
>> Hi! 
>>
>> I have now implemented all the features I really care about in 
>> Projectify (https://nicolas.petton.fr/tw/projectify.html), so I was 
>> wondering what other people might miss in the plugin. 
>>
>> On my todo-list I have the following (in no particular order): 
>>
>> * Add support for recurring tasks 
>> * Add support for project templates (to be used when creating new 
>> projects) 
>> * Make project card colours customizable 
>> * Add documentation about implementing specific workflows (GTD setup, 
>> etc.) 
>> * Add support for filtering by tags in the project list/cards 
>> * Add a search input for filtering the project list/cards 
>> * Add a kanban view 
>>
>> Is there anything else you think should be added to the plugin? Anything 
>> from the list above that should be prioritized? 
>>
>> Thanks! 
>> Nico 
>>
>

-- 
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/17f874a1-f8fb-4787-915a-fb222b9e1546n%40googlegroups.com.


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-06 Thread TW Tones
BTC,

I am playing with the Muuri Kanban and finding it highly hackable, thank 
you. 

Do you want me to share my hack as possible features in a future version, 
or just for interest?  

   1. I observed the new items create a matching tiddler and adds it to the 
   list field. Now we have a link to the actual tiddler, you could not create 
   the tiddler, only add it to the list field until it is edited. This would 
   allow large lists of items in a Kanban without the need for a matching 
   tiddler.
   2. With this in mind the provision of actions on key Kanban actions 
   would allow further hackability. Is that what drop-actions is?
   3. Ability to identify the board and column in which the tiddler was 
   added.
   4. Perhaps you could set a favicon 
   on https://burningtreec.github.io/tiddlywiki-muuri/ so its easy to identify 
   in browser tabs

Examples;

   - I added  <$edit-text field="list" tag="input"/>  
   to $:/plugins/BTC/Muuri-Kanban/ui/KanbanColumnEditTemplate so I can edit 
   the list field directly see 1 above
  - Perhaps we could have a tag driven addition of "field edit" 
  tiddlers here, or a template for transclusion.
   
Regards
Tones

On Wednesday, 6 January 2021 at 20:27:05 UTC+11 BurningTreeC wrote:

> I've *updated* both the *Muuri *and the *Muuri-Kanban* plugins to version 
> v0.2.6 and v0.1.4 respectively
>
> For the Muuri plugin I've added the option to auto-save after dragging and 
> I've fixed the bug @Sylvain mentioned above (grid dimensions not refreshing 
> when window dimensions change)
>
> For the Muuri-Kanban plugin I've added the auto-save configuration option 
> in the plugin-config (works only with the Muuri plugin v0.2.6 and above) 
> and updated some styles
>
>
> best wishes,
> BTC
>
> TW Tones schrieb am Mittwoch, 6. Januar 2021 um 00:18:30 UTC+1:
>
>> Thank you BTC,
>>
>> Very nice. I need to use this for some big decisions shortly, Lets see if 
>> I can share the methods I use.
>>
>> The option to add more buttons, need only be a hack, its the possibility 
>> for a designer to add additional handling to cards and columns that's 
>> needed,  they can take responsibility for spacing etc...
>>
>>- Such a customisation may be as little as a tick button, or a help 
>>icon etc...
>>- Personally I use muuri and Kanban on a large screen, so I have 
>>plenty of real-estate.
>>
>> One thing I believe Muuri can achieve that other layouts can't, is to 
>> support "large, single or multiple 'pain of glass' dashboard's", given the 
>> versatility of content in tiddlers, including iFrames to other sites and 
>> resources that a Muuri could be used in NOC's (Network Operating Centres) 
>> or Operation centre for space or traffic control.
>>
>> Regards
>> Tones
>>
>> On Tuesday, 5 January 2021 at 20:00:56 UTC+11 BurningTreeC wrote:
>>
>>>
>>> Thanks @Tones,
>>>
>>> The top drop area will be at the bottom in the next update
>>> I'll add a link button to open an item in the StoryRiver
>>> I'll also make the  show conditionally if the item contains text and 
>>> style it a bit more simple
>>>
>>> About the option to add more buttons: I'd like to keep it as simple as 
>>> possuble since space is limited on those items and they shouldn't cover too 
>>> much space.
>>> Showing the subtitle though is an option I'll think about
>>>
>>> Best wishes,
>>> Simon
>>> TW Tones schrieb am Dienstag, 5. Januar 2021 um 03:50:44 UTC+1:
>>>
 BTC,

 Great stuff. I particularly like your Kanban and like the way you are 
 leveraging the history for "compound tiddlers". 

 I really like the way you handle various drag and drop handling

- Although the top + area to start new columns is great, after 
building my board, I would like to be able to hide it, or toggle it, or 
perhaps move it to the bottom.

 Other possible improvements from my perspective

- Option to hide the  when no text exists for a card (good for 
simple lists)
- Perhaps the ability to toggle the display of the text when it 
exists
- love the inline edit, but a link to the actual tiddler would be 
helpful.

 More advanced features

- It would be nice if we could introduce our own buttons and 
subtitle to each column and cards, 
   - Much like the viewToolBar and subtitle works on tiddlers. 
   - This would allow a designer to add more advanced features to 
   the board and cards
  - Archive, tagging, long description under the heading and 
  more. Even the existing subtitle, for a tiddler.
  - And like the  viewToolBar and subtitle conditional 
  lists/reveals would allow response to the current tiddler.
   - A similar bottom bar on each column or card would also permit 
   useful tools to be introduced to cards
- Could Muuri be activated and deactivated with the new 

[tw5] Re: How to use action-delete-tiddler in a list widget?

2021-01-06 Thread David Gifford
Thank you TW Tones and Mark S!

TW Tone's solution works great. Blessings,

On Wednesday, January 6, 2021 at 4:19:22 PM UTC-6 David Gifford wrote:

> Hi everyone
>
> I have a list widget for tasks, and I would like to have a way to delete 
> tiddlers in the list.
>
> I tried
>
> <$list filter="[!is[system]all[current]tagging[]sort[title]]"><$button 
> class="tc-btn-invisible tc-tiddlylink"><$action-deletetiddler />< {{$:/core/images/delete-button}}>><$link><$view 
> field="title"/>
>
> and
>
> <$list filter="[!is[system]all[current]tagging[]sort[title]]"><$button 
> class="tc-btn-invisible tc-tiddlylink"><$action-deletetiddler  
> $tiddler="[is[current]]" />< {{$:/core/images/delete-button}}>><$link><$view 
> field="title"/> 
>
> Nothing happens with either of these.
>
> Thanks in advance for your help!
>

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


[tw5] Re: How to use action-delete-tiddler in a list widget?

2021-01-06 Thread TW Tones
Mark,

Yes there a few cases of this, including a mismatch in when to use $ and 
not $

My approach bypasses this by using already working buttons.

Tones

On Thursday, 7 January 2021 at 10:01:25 UTC+11 Mark S. wrote:

> The documentation says that the $tiddler attribute is optional. It appears 
> to be mandatory. So set $tiddler=<> (inside of 
> action-deletetiddler) and it should work.
>
> On Wednesday, January 6, 2021 at 2:19:22 PM UTC-8 David Gifford wrote:
>
>> Hi everyone
>>
>> I have a list widget for tasks, and I would like to have a way to delete 
>> tiddlers in the list.
>>
>> I tried
>>
>> <$list filter="[!is[system]all[current]tagging[]sort[title]]"><$button 
>> class="tc-btn-invisible tc-tiddlylink"><$action-deletetiddler /><> {{$:/core/images/delete-button}}>><$link><$view 
>> field="title"/>
>>
>> and
>>
>> <$list filter="[!is[system]all[current]tagging[]sort[title]]"><$button 
>> class="tc-btn-invisible tc-tiddlylink"><$action-deletetiddler  
>> $tiddler="[is[current]]" /><> {{$:/core/images/delete-button}}>><$link><$view 
>> field="title"/> 
>>
>> Nothing happens with either of these.
>>
>> Thanks in advance for your help!
>>
>

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


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-06 Thread Ste
Just had a quick look on my phone and moving anything freezes it in place 
and it kind of.. Judders before a RSOE

On Wednesday, 6 January 2021 at 09:27:05 UTC BurningTreeC wrote:

> I've *updated* both the *Muuri *and the *Muuri-Kanban* plugins to version 
> v0.2.6 and v0.1.4 respectively
>
> For the Muuri plugin I've added the option to auto-save after dragging and 
> I've fixed the bug @Sylvain mentioned above (grid dimensions not refreshing 
> when window dimensions change)
>
> For the Muuri-Kanban plugin I've added the auto-save configuration option 
> in the plugin-config (works only with the Muuri plugin v0.2.6 and above) 
> and updated some styles
>
>
> best wishes,
> BTC
>
> TW Tones schrieb am Mittwoch, 6. Januar 2021 um 00:18:30 UTC+1:
>
>> Thank you BTC,
>>
>> Very nice. I need to use this for some big decisions shortly, Lets see if 
>> I can share the methods I use.
>>
>> The option to add more buttons, need only be a hack, its the possibility 
>> for a designer to add additional handling to cards and columns that's 
>> needed,  they can take responsibility for spacing etc...
>>
>>- Such a customisation may be as little as a tick button, or a help 
>>icon etc...
>>- Personally I use muuri and Kanban on a large screen, so I have 
>>plenty of real-estate.
>>
>> One thing I believe Muuri can achieve that other layouts can't, is to 
>> support "large, single or multiple 'pain of glass' dashboard's", given the 
>> versatility of content in tiddlers, including iFrames to other sites and 
>> resources that a Muuri could be used in NOC's (Network Operating Centres) 
>> or Operation centre for space or traffic control.
>>
>> Regards
>> Tones
>>
>> On Tuesday, 5 January 2021 at 20:00:56 UTC+11 BurningTreeC wrote:
>>
>>>
>>> Thanks @Tones,
>>>
>>> The top drop area will be at the bottom in the next update
>>> I'll add a link button to open an item in the StoryRiver
>>> I'll also make the  show conditionally if the item contains text and 
>>> style it a bit more simple
>>>
>>> About the option to add more buttons: I'd like to keep it as simple as 
>>> possuble since space is limited on those items and they shouldn't cover too 
>>> much space.
>>> Showing the subtitle though is an option I'll think about
>>>
>>> Best wishes,
>>> Simon
>>> TW Tones schrieb am Dienstag, 5. Januar 2021 um 03:50:44 UTC+1:
>>>
 BTC,

 Great stuff. I particularly like your Kanban and like the way you are 
 leveraging the history for "compound tiddlers". 

 I really like the way you handle various drag and drop handling

- Although the top + area to start new columns is great, after 
building my board, I would like to be able to hide it, or toggle it, or 
perhaps move it to the bottom.

 Other possible improvements from my perspective

- Option to hide the  when no text exists for a card (good for 
simple lists)
- Perhaps the ability to toggle the display of the text when it 
exists
- love the inline edit, but a link to the actual tiddler would be 
helpful.

 More advanced features

- It would be nice if we could introduce our own buttons and 
subtitle to each column and cards, 
   - Much like the viewToolBar and subtitle works on tiddlers. 
   - This would allow a designer to add more advanced features to 
   the board and cards
  - Archive, tagging, long description under the heading and 
  more. Even the existing subtitle, for a tiddler.
  - And like the  viewToolBar and subtitle conditional 
  lists/reveals would allow response to the current tiddler.
   - A similar bottom bar on each column or card would also permit 
   useful tools to be introduced to cards
- Could Muuri be activated and deactivated with the new Layout 
switch?

 Personal use under investigation.

 I am keen to look at building a sophisticated evaluation tool making 
 use of your Kanban as so far it seems potentially the most extensible so 
 far.

- I would want to extend it as an addon to you Kanban rather than 
forking it, thus we can make use of it with Muuri
- This would mean I need to find ways to link a tiddler in one 
column with another and sort them accordingly.
- Build some advanced history list tools, usable elsewhere as well
   - Eg; access the list in the set order elsewhere than in the 
   Kanban
   - List each history list, remove the prefix list and/or indicate 
   that lists currentTiddler. Helps access where you were last active.

 Bug?

 There seems to be a bug somewhere that caused this item to be listed in 
 the history tiddler and currentTiddler field, possibly the result of a 
 drag 
 operation. I will attempt to reproduce and document.


[tw5] Re: How to use action-delete-tiddler in a list widget?

2021-01-06 Thread 'Mark S.' via TiddlyWiki
The documentation says that the $tiddler attribute is optional. It appears 
to be mandatory. So set $tiddler=<> (inside of 
action-deletetiddler) and it should work.

On Wednesday, January 6, 2021 at 2:19:22 PM UTC-8 David Gifford wrote:

> Hi everyone
>
> I have a list widget for tasks, and I would like to have a way to delete 
> tiddlers in the list.
>
> I tried
>
> <$list filter="[!is[system]all[current]tagging[]sort[title]]"><$button 
> class="tc-btn-invisible tc-tiddlylink"><$action-deletetiddler />< {{$:/core/images/delete-button}}>><$link><$view 
> field="title"/>
>
> and
>
> <$list filter="[!is[system]all[current]tagging[]sort[title]]"><$button 
> class="tc-btn-invisible tc-tiddlylink"><$action-deletetiddler  
> $tiddler="[is[current]]" />< {{$:/core/images/delete-button}}>><$link><$view 
> field="title"/> 
>
> Nothing happens with either of these.
>
> Thanks in advance for your help!
>

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


[tw5] How to use action-delete-tiddler in a list widget?

2021-01-06 Thread David Gifford
Hi everyone

I have a list widget for tasks, and I would like to have a way to delete 
tiddlers in the list.

I tried

<$list filter="[!is[system]all[current]tagging[]sort[title]]"><$button 
class="tc-btn-invisible tc-tiddlylink"><$action-deletetiddler /><><$link><$view 
field="title"/>

and

<$list filter="[!is[system]all[current]tagging[]sort[title]]"><$button 
class="tc-btn-invisible tc-tiddlylink"><$action-deletetiddler  
$tiddler="[is[current]]" /><><$link><$view 
field="title"/> 

Nothing happens with either of these.

Thanks in advance for your help!

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


[tw5] Re: How to increment a variable within a list widget?

2021-01-06 Thread TW Tones
Mark,

Nice idea, also perhaps "Qualify" would also work. 

Regards
Tones

On Thursday, 7 January 2021 at 05:02:55 UTC+11 Mark S. wrote:

> Since your requirement is that they be unique, why not just use 
> addsuffix ?
>
> On Thursday, December 31, 2020 at 9:58:06 AM UTC-8 si wrote:
>
>> Hopefully the title is clear, so there's no need to read the rest of 
>> this, but here is my specific use case in case it's helpful.
>>
>> I have added tiddlers that represent keyboard shortcuts for various 
>> programs that I use. I aim to use TiddlyRemember to memorise them.
>>
>> So for example I might have a tiddler called "Ctrl + Shift + C" with the 
>> following fields:
>>
>>- evernote: Create a new note.
>>- chrome: Open the console.
>>
>> I have generated the flashcards with the following nested list widget:
>>
>> <$list filter="[tag[Keyboard shortcuts]]" variable="shortcut">
>>
>> <$list filter="[fields[]] -[[text]] -[[tags]] -[[tmap.id]] 
>> -[[modified]] -[[created]] -[[title]]" variable="program">
>>
>> <$macrocall $name=rememberq id={{{ [get[created]] }}}
>> question={{{ [getaddprefix[Keyboard shortcuts: 
>> ]addsuffix[ in ]addsuffix] }}}
>> answer=<>/>
>>
>> 
>>
>> 
>>
>> The only relevant part here is the "id" field of the macrocall. This 
>> needs to be unique, but currently it will not always be since I am 
>> generating multiple cards from the same tiddler. I want to add a suffix 
>> that increments for each "pass" of the list widget. Something like:
>>
>> id={{{ [get[created]addsuffix] }}}
>>
>> What would be the best way to approach this?
>>
>

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


[tw5] Re: full-screen in TiddlyDesktop not working

2021-01-06 Thread TW Tones
Stefan,

For you to say the following *"TiddlyDesktop is running maximized in 
Firefox"* suggests you are using TiddlyDesktop to* "host a node server"* 
otherwise I don't understand the sentence.


   1. If the wiki is used in TiddlyDesktop, the full screen is effectively 
   "disabled" because it is already "full screen within the application 
   window".
   2. if the wiki is used in the browser full screen works because this is 
   function of the browser, to hide the "chrome" (menus and application 
   controls)

In item 1 Above, other than an inactive button, what would you like to 
happen? Remembering that you can maximise the application!

In TiddlyDesktop, I can also open a tiddler in a "new window" and maximise 
that, in the browser it carries a little more "chrome".

Regards
Tones


On Wednesday, 6 January 2021 at 23:57:15 UTC+11 schlechter...@gmail.com 
wrote:

> Hi Tones,
>
> TiddlyDesktop is running maximized in Firefox. Opening my Wiki will open a 
> new window.
>
> Opening the Wikki with Firefox and using the wiki tool [image: 
> full-screen.jpg]  the Taskbar, tabs of browser etc. will disappear - you 
> see only the wiki
> In TiddlyDesktop is 'full-screen' without function.
>
> Stefan
> TW Tones schrieb am Mittwoch, 6. Jänner 2021 um 13:02:05 UTC+1:
>
>> Full screen = Full Size ?
>>
>> I think its because Wikis in tiddlyDesktop are already full screen in 
>> some ways, maximise the window for maximum size. 
>>
>> With a local app you can maximise the applications, with browsers they 
>> have a full screen option to reduce the "chrome" (menu and toolbars, that 
>> is a browser function (not an application feature) unless it is written as 
>> such eg; Image viewers etc...
>>
>> What exactly do you want when you use Full-screen?
>>
>> Tones
>>
>> On Wednesday, 6 January 2021 at 22:49:14 UTC+11 schlechter...@gmail.com 
>> wrote:
>>
>>> Hello,
>>>
>>> I'm using TiddlyDesktop version 0.0.14.
>>> Button: Full-size is not working.
>>>
>>> When I open my Tiddly with browser --> ok.
>>>
>>> Any ideas?
>>> Thanks, Stefan
>>>
>>>

-- 
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/c853b657-684a-4b38-a5bf-6f074e52f947n%40googlegroups.com.


Re: [tw5] Re: OokWiki (Bob + A secure login + wiki and account permissions) as a replacement for TiddlySpot

2021-01-06 Thread TW Tones
Jed,

Great to hear you have another contract, I too contracted for some time, 
and between contracts never felt like a holiday, only ever unemployment.

Never the less let is still help you prepare your infrastructure for when 
you do have the time.

Tones
On Thursday, 7 January 2021 at 06:46:32 UTC+11 inmy...@gmail.com wrote:

> My next contract started up faster than expected so OokWiki is moving to 
> the back burner again.
> I had hoped that the past few weeks would be a good time to put this 
> project as my priority and get it finished but without a good development 
> machine it wasn't going as quickly as I would have liked.
>
> I will be continuing work on ookwiki, but I don't have any real idea when 
> it will be ready.
>
>
> On Wednesday, January 6, 2021 at 7:16:59 AM UTC+1 TW Tones wrote:
>
>> Jed,
>>
>> How much in what currency do you need for your dev computer? I do a 
>> small patreon monthly but clearly until others do this will not come 
>> quickly.
>>
>> I am very keen for a node multiuser implementation for the community, for 
>> me to host a subset of online services and develop my own comprehensive 
>> solutions on top of. 
>>
>> As I said before, If you were in Australia I may be able to give you an 
>> old laptop (if that would do), or we find someone traveling to near you, 
>> who could take it. Not withstanding that If I know more about what you need 
>> and if you are prepared to accept feedback and requests as you progress (as 
>> you have done in the past for me), I would be happy to see what more I can 
>> contribute, because I value your solutions.
>>
>> What you aim to do is the "last mile" or "key gaps" currently with 
>> tiddlywiki as a multi-user internet/extranet or Intranet facing solution.
>>
>> Regards
>> Tones
>>
>>
>> On Friday, 1 January 2021 at 09:07:19 UTC+11 inmy...@gmail.com wrote:
>>
>>> The demo is on ookwiki.com, many of the functions aren't enabled yet.
>>> The PayPal and patreon are the same as they have been for the past few 
>>> years, I just stopped listing them on announcements because I have gotten 
>>> almost no response when it comes to support through them, so I stopped 
>>> bothering. That is why I set up something direct with a very clear way to 
>>> support development and a clear result of the support.
>>>
>>> The links for patreon and PayPal are still in the About OokTech/Support 
>>> Development section of the Bob tab in the control panel, here they are 
>>> again:
>>>
>>> Patreon is https://www.patreon.com/OokTech
>>> The PayPal link is 
>>> https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick_button_id=ZG94CTLHTKYRE
>>>
>>> On Thursday, December 31, 2020 at 5:22:50 PM UTC+1 Jan wrote:
>>>
 Hi Stobot, Hi Jed,
 for the friends of games: I also made a dungeon-like Wiki some time 
 ago. 
 I comes with an editor you can find going down the page.
 It would be a good idea to implement key-navigation, which was 
 difficult at the time I did this experiment. 

 Yours Jan


 Am 30.12.2020 um 16:44 schrieb Jed Carty:

 Stobot, 

 I missed a lot of your message before, all my work has been on a phone, 
 raspberry pi and a 7 year old laptop, so things are going slow. 
 Unfortunately the lack of any help with getting a new computer means that 
 this isn't going to change any time soon because I am not going to be able 
 to get one myself until work picks up and then I won't have much time to 
 devote to this.

 The problem with typing too quickly in when changing a tiddler directly 
 in Bob, like changing the site title, shouldn't be a problem with more 
 recent versions of Bob. I don't remember which version that fix was 
 introduced in.
 I like the ideas of games in tiddlywiki, the first large project I did 
 with tiddlywiki was an interactive fiction engine in tiddlywiki. It is in 
 desperate need of an update, but it is still probably my favourite thing 
 that I made. http://zorklike.tiddlyspot.com

 On Monday, December 28, 2020 at 4:09:44 PM UTC+1 Jed Carty wrote:

> A quick update:
> I have a demo up (shh, its a secret but you may be able to guess the 
> url). I haven't enabled creating accounts yet because there is still a 
> lot 
> of administrative UI that I need to work out.
> It is running on a digital ocean droplet with apache and passenger 
> handling the bits that they handle.
> Once I get the temporary accounts set up I will open that up so people 
> can play with it a bit.
>
> Stobot, 
>
> I don't think that is taking the idea too far, considering that is one 
> of my big motivations for doing this. I maintained the wiki reference 
> wiki 
> for a while but it was only me and I got distracted by other things, so 
> having something community owned where multiple people can edit and 
> maintain it is one of the prime motivators.
> I have 

Re: [tw5] Re: OokWiki (Bob + A secure login + wiki and account permissions) as a replacement for TiddlySpot

2021-01-06 Thread Jed Carty
My next contract started up faster than expected so OokWiki is moving to 
the back burner again.
I had hoped that the past few weeks would be a good time to put this 
project as my priority and get it finished but without a good development 
machine it wasn't going as quickly as I would have liked.

I will be continuing work on ookwiki, but I don't have any real idea when 
it will be ready.


On Wednesday, January 6, 2021 at 7:16:59 AM UTC+1 TW Tones wrote:

> Jed,
>
> How much in what currency do you need for your dev computer? I do a 
> small patreon monthly but clearly until others do this will not come 
> quickly.
>
> I am very keen for a node multiuser implementation for the community, for 
> me to host a subset of online services and develop my own comprehensive 
> solutions on top of. 
>
> As I said before, If you were in Australia I may be able to give you an 
> old laptop (if that would do), or we find someone traveling to near you, 
> who could take it. Not withstanding that If I know more about what you need 
> and if you are prepared to accept feedback and requests as you progress (as 
> you have done in the past for me), I would be happy to see what more I can 
> contribute, because I value your solutions.
>
> What you aim to do is the "last mile" or "key gaps" currently with 
> tiddlywiki as a multi-user internet/extranet or Intranet facing solution.
>
> Regards
> Tones
>
>
> On Friday, 1 January 2021 at 09:07:19 UTC+11 inmy...@gmail.com wrote:
>
>> The demo is on ookwiki.com, many of the functions aren't enabled yet.
>> The PayPal and patreon are the same as they have been for the past few 
>> years, I just stopped listing them on announcements because I have gotten 
>> almost no response when it comes to support through them, so I stopped 
>> bothering. That is why I set up something direct with a very clear way to 
>> support development and a clear result of the support.
>>
>> The links for patreon and PayPal are still in the About OokTech/Support 
>> Development section of the Bob tab in the control panel, here they are 
>> again:
>>
>> Patreon is https://www.patreon.com/OokTech
>> The PayPal link is 
>> https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick_button_id=ZG94CTLHTKYRE
>>
>> On Thursday, December 31, 2020 at 5:22:50 PM UTC+1 Jan wrote:
>>
>>> Hi Stobot, Hi Jed,
>>> for the friends of games: I also made a dungeon-like Wiki some time ago. 
>>> I comes with an editor you can find going down the page.
>>> It would be a good idea to implement key-navigation, which was difficult 
>>> at the time I did this experiment. 
>>>
>>> Yours Jan
>>>
>>>
>>> Am 30.12.2020 um 16:44 schrieb Jed Carty:
>>>
>>> Stobot, 
>>>
>>> I missed a lot of your message before, all my work has been on a phone, 
>>> raspberry pi and a 7 year old laptop, so things are going slow. 
>>> Unfortunately the lack of any help with getting a new computer means that 
>>> this isn't going to change any time soon because I am not going to be able 
>>> to get one myself until work picks up and then I won't have much time to 
>>> devote to this.
>>>
>>> The problem with typing too quickly in when changing a tiddler directly 
>>> in Bob, like changing the site title, shouldn't be a problem with more 
>>> recent versions of Bob. I don't remember which version that fix was 
>>> introduced in.
>>> I like the ideas of games in tiddlywiki, the first large project I did 
>>> with tiddlywiki was an interactive fiction engine in tiddlywiki. It is in 
>>> desperate need of an update, but it is still probably my favourite thing 
>>> that I made. http://zorklike.tiddlyspot.com
>>>
>>> On Monday, December 28, 2020 at 4:09:44 PM UTC+1 Jed Carty wrote:
>>>
 A quick update:
 I have a demo up (shh, its a secret but you may be able to guess the 
 url). I haven't enabled creating accounts yet because there is still a lot 
 of administrative UI that I need to work out.
 It is running on a digital ocean droplet with apache and passenger 
 handling the bits that they handle.
 Once I get the temporary accounts set up I will open that up so people 
 can play with it a bit.

 Stobot, 

 I don't think that is taking the idea too far, considering that is one 
 of my big motivations for doing this. I maintained the wiki reference wiki 
 for a while but it was only me and I got distracted by other things, so 
 having something community owned where multiple people can edit and 
 maintain it is one of the prime motivators.
 I have lots of ideas about how to use this to help package and 
 distribute plugins in a way that allows far more collaboration and 
 community assistance than is currently available to people who aren't 
 familiar with GitHub and other coding tools. I want things like community 
 documentation and translations for plugins when there is a need, and this 
 could lower the barrier to entry for contributing by a lot.

 On Sunday, December 

[tw5] Re: Custom bullet point and numbered lists are overlapping?

2021-01-06 Thread Sylvain Naudin
I just try to fix CSS like this :

 ul>li::before ... (add > beetwen ul and li to apply this CSS only on 
this element (and not all ul with ol number element) If I'm not wrong)

 
Regards,
Sylvain

Le lundi 4 janvier 2021 à 10:16:21 UTC+1, Petri M. a écrit :

> I have been using these nice looking BlueBullets 
> 
>  
> from Stroll but I just noticed that if I try to use numbered lists within 
> bullet lists (with *#) the blue bullet is overlapping the number. Could 
> someone maybe help me in fixing this? I have pretty much zero exprience 
> with css. 
>
> Thanks,
> Petri
>
>

-- 
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/abf2ea65-e4bf-4c93-ac97-c8b16efb59d6n%40googlegroups.com.


Re: [tw5] Re: Best of 2020 and the Wish-list of 2021

2021-01-06 Thread dieg...@gmail.com
Wow thats awesome! Im going to try and contact them! 

On Tuesday, January 5, 2021 at 4:14:09 PM UTC-5 arunn...@gmail.com wrote:

> Hi diego, 
>
> Today i saw one post in reddit 
> 
>  regarding 
> an implementation of SRS plug in TW by  tadeas paule 
> . This 
> is the link for his plug in. I have 
> suggested him to post it in the google group. Thought this might be of 
> interest to you.
> On Saturday, December 26, 2020 at 10:00:18 PM UTC+5:30 Mohammad wrote:
>
>> Hi
>> Many thanks to all who answered this question. I like especially to 
>> appreciate Si and Arun for their detailed answers. I invite other members 
>> to answer. One important benefit of this thread is, it can serve for many 
>> of us to see what are the most useful tools from an end user point of view. 
>> Also the wish list helps developers to find what are the most requested 
>> features.
>>
>> Happy new year! Wish you all a healthy new year 2021
>>
>> Best wishes
>> Mohammad
>>
>>
>> On Sat, Dec 26, 2020 at 6:54 PM si  wrote:
>>
>>> Thought I'd give my slightly belated response to this.
>>>
>>> Best of 2020
>>>
>>>
>>> *Streams *
>>> Of course everyone loves this amazing plugin. Streams has massively 
>>> changed the way I work in TiddlyWiki, allowing me to flesh out and organise 
>>> ideas much more efficiently. Its a beautiful example of the flexibility of 
>>> TiddlyWiki. Thank you Saq!
>>>
>>> *TiddlyRemember* 
>>> This plugin has solved the problem that many SRS users have of having 
>>> two disconnected pools of knowledge. Now my personal notes and flashcards 
>>> can be beautifully intertwingled. Thank you Soren!
>>>
>>> *Command Palette* 
>>> This just makes TiddlyWiki that much more pleasurable to use. IIR it was 
>>> made by a new TiddlyWiki user who seems now to have disappeared. 
>>> Nonetheless it still works brilliantly and I hope that someone will 
>>> continue to keep it alive. Thank you Souk21!
>>>
>>>
>>> *Timer Tools *
>>> Timer Tools is not just an example of a great set of tools, but a great 
>>> example of how generous, creative and unique the TiddlyWiki community is. I 
>>> asked a question in the group about creating a simple time-stamp system for 
>>> tracking my time. As he often does, Eric gave a very helpful answer that 
>>> solved my problem, but he then went on to develop an entire suite of 
>>> related tools! Thank you Eric!
>>>
>>> *Other note-taking tools*
>>> I may be breaking the rules slightly here, but I want to mention both 
>>> Roam and Andy Matuschak's notes 
>>> . There seems to 
>>> have been an increased interest in thinking and note-taking tools in the 
>>> last year or so, and I think that this has done a great job of 
>>> demonstrating the adaptability of TiddlyWiki. Every time another bit of 
>>> software introduces a cool new idea (Roam's use of backlinks, Andy's 
>>> horizontal layout), TiddlyWiki can quickly be tweaked to incorporate it.
>>>
>>> 2021 Wish List
>>>
>>> *Tools for importing PDFs, Ebooks and web pages*
>>> I think that TiddlyWiki has great potential as a reading tool, 
>>> especially with the amazing *dynannotate plugin* (Thank you Jeremy!), 
>>> and I would love to see more development in this area.
>>>
>>> *A new multi-story layout*
>>> The stories plugin offers this to some extent already, but I would love 
>>> to see a more flexible version of this. I believe this will soon be 
>>> possible with some updates to the TiddlyWiki core (something to do with 
>>> Flexbox?)
>>>
>>> Also thanks to Jeremy and every other TiddlyWiki contributor for this 
>>> great bit of software!
>>> On Thursday, 17 December 2020 at 14:57:21 UTC Mohammad wrote:
>>>
 Ref: 2019 best of tools

 Dear all,

   The year 2020 is gradually coming to end and a new year 2021 will 
 start soon!
   I would like to ask you to share the best of 2020 and your wishlist 
 of 2021.

   Tiddlywiki gets more powerful and resource rich and now we have many 
 tools


 Best wishes
 Mohammad

 p.s: Josiah normally sends out this post.

 -- 
>>> 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+...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/tiddlywiki/f26b2e0f-f9a1-4146-b60c-029abdfa6c1an%40googlegroups.com
>>>  
>>> 

Re: [tw5] Tiddly Desktop

2021-01-06 Thread 'Mark S.' via TiddlyWiki
Is the "make from existing" supposed to work with folders? Or only 
standa-alone TWs ? My test just now failed, with no files being copied, but 
I don't know if that was expected or not. (TD 14 on linux).

On Wednesday, January 6, 2021 at 6:58:08 AM UTC-8 jeremy...@gmail.com wrote:

> TiddlyDesktop requires that the TiddlyWiki file have an .html extension, 
> an apparent limitation of the underlying Chrome engine so it’s interesting 
> that extension-less files work for you in desktop Chrome.
>
> The requirement for the .html extension isn't enforced when creating a new 
> wiki, which we will fix for the next release.
>
> Best wishes
>
> Jeremy.

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


[tw5] Re: Next features in Projectify?

2021-01-06 Thread Sylvain Naudin
Hello,

Nice roadmap :)
 
* Make project card colours customizable : *Yes !*
* Add support for recurring tasks : I'm wondering if this could work like 
Droptask (Ayoa now) when you finish a task, the next task is created with 
next due time (maybe it's the normal way so my comment is useless).

A way to represent visualy in time is interresting also (like Gantt view).

And it's mono-user now (because single-file orianted and multiuser with TW 
is not perfect yet without Bob), but in future asign task to member project 
(even if I'm the one in charge, it will be interresting to do that, and 
have filter view by asign to remember people they are late :D).


Sylvain
Le mercredi 6 janvier 2021 à 18:22:44 UTC+1, Nicolas Petton a écrit :

> Hi!
>
> I have now implemented all the features I really care about in
> Projectify (https://nicolas.petton.fr/tw/projectify.html), so I was
> wondering what other people might miss in the plugin.
>
> On my todo-list I have the following (in no particular order):
>
> * Add support for recurring tasks
> * Add support for project templates (to be used when creating new
> projects)
> * Make project card colours customizable
> * Add documentation about implementing specific workflows (GTD setup, etc.)
> * Add support for filtering by tags in the project list/cards
> * Add a search input for filtering the project list/cards
> * Add a kanban view
>
> Is there anything else you think should be added to the plugin? Anything
> from the list above that should be prioritized?
>
> Thanks!
> Nico
>

-- 
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/521ff53e-4c96-4114-9f69-115fb135bffbn%40googlegroups.com.


[tw5] Re: How to increment a variable within a list widget?

2021-01-06 Thread 'Mark S.' via TiddlyWiki
Since your requirement is that they be unique, why not just use 
addsuffix ?

On Thursday, December 31, 2020 at 9:58:06 AM UTC-8 si wrote:

> Hopefully the title is clear, so there's no need to read the rest of this, 
> but here is my specific use case in case it's helpful.
>
> I have added tiddlers that represent keyboard shortcuts for various 
> programs that I use. I aim to use TiddlyRemember to memorise them.
>
> So for example I might have a tiddler called "Ctrl + Shift + C" with the 
> following fields:
>
>- evernote: Create a new note.
>- chrome: Open the console.
>
> I have generated the flashcards with the following nested list widget:
>
> <$list filter="[tag[Keyboard shortcuts]]" variable="shortcut">
>
> <$list filter="[fields[]] -[[text]] -[[tags]] -[[tmap.id]] 
> -[[modified]] -[[created]] -[[title]]" variable="program">
>
> <$macrocall $name=rememberq id={{{ [get[created]] }}}
> question={{{ [getaddprefix[Keyboard shortcuts: 
> ]addsuffix[ in ]addsuffix] }}}
> answer=<>/>
>
> 
>
> 
>
> The only relevant part here is the "id" field of the macrocall. This needs 
> to be unique, but currently it will not always be since I am generating 
> multiple cards from the same tiddler. I want to add a suffix that 
> increments for each "pass" of the list widget. Something like:
>
> id={{{ [get[created]addsuffix] }}}
>
> What would be the best way to approach this?
>

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


[tw5] Re: Next features in Projectify?

2021-01-06 Thread Ste
I might be missing something but for projects I would want to be able to 
set a future start date and duration/ finish date. 
And a Gantt chart! :) (vis.js timeline?)


On Wednesday, 6 January 2021 at 17:22:44 UTC Nicolas Petton wrote:

> Hi!
>
> I have now implemented all the features I really care about in
> Projectify (https://nicolas.petton.fr/tw/projectify.html), so I was
> wondering what other people might miss in the plugin.
>
> On my todo-list I have the following (in no particular order):
>
> * Add support for recurring tasks
> * Add support for project templates (to be used when creating new
> projects)
> * Make project card colours customizable
> * Add documentation about implementing specific workflows (GTD setup, etc.)
> * Add support for filtering by tags in the project list/cards
> * Add a search input for filtering the project list/cards
> * Add a kanban view
>
> Is there anything else you think should be added to the plugin? Anything
> from the list above that should be prioritized?
>
> Thanks!
> Nico
>

-- 
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/992eaf94-3fee-4d78-956a-c37bb3f835f7n%40googlegroups.com.


[tw5] Displaying a Twitter Thread in TW

2021-01-06 Thread Manish Mohandas

Dear all
How can a Twitter thread/Tweetstorm by a particular person be displayed in 
a Tiddler? (without the public comments) 

I went through the Twitter plugin in TW but couldnt find the appropriate 
code. 
Thanks in advance. 
Cheers
Manish

-- 
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/108b0c0b-c907-47cd-89a1-2ad66017ed59n%40googlegroups.com.


[tw5] Re: Displaying Hard Linebreaks in Text which is pulled from JSON Datatiddler

2021-01-06 Thread 'Mark S.' via TiddlyWiki
Here's a solution. Hopefully there's a more elegant one. In my data, "test" 
is the data tiddler and "idx1" is the index.
This uses the new search-replace operator to replace linefeeds with html 
linebreaks, so that the text will display 
as expected.

<$vars eol="" lf="""
""">
<$set name=out value={{{ [[test]getindex[idx1]search-replace:g,] 
}}} >
<>



If you want output like TW, with single linefeeds ignored but double 
linefeeds recognized, then you could use the simpler:

<$wikify name=out text="""<$transclude tiddler=test index=idx1 mode=block 
/>""" output="html">
<>



On Wednesday, January 6, 2021 at 1:42:56 AM UTC-8 scourfie...@gmail.com 
wrote:

> Hi
>
> Yes, I'm already using block mode. The code looks like this:
>
> <$transclude tiddler="_planning_descriptions" index={{!!created}} 
> mode=block/>
>
> (I'm using this tiddler as a template and storing the textbox content in a 
> json, indexed by the "created" timecode so that they can be renamed freely)
>
> If I use inline mode, it doesn't respect any linebreaks at all (even 
> double ones).
>
> Thanks for your response
>
> On Wednesday, 6 January 2021 at 00:29:15 UTC TW Tones wrote:
>
>> Just a quick check;
>>
>> If you use the transclude widget you can specify mode=block, have you 
>> tried this yet?
>>
>> The triple quotes is more a WikiMarkup option for text within a tiddler. 
>> With transclusion and templates and more the inline vs block tends to be 
>> used. See 
>>
>> Tones
>>
>> On Wednesday, 6 January 2021 at 01:01:04 UTC+11 scourfie...@gmail.com 
>> wrote:
>>
>>> Hi all
>>>
>>> I have some text stored in a json datatiddler which I'm pulling out 
>>> using the transclude widget in index mode. 
>>>
>>> I'd like to display this text with hard linebreaks respected, rather 
>>> than the default tiddlywiki behaviour of ignoring single linebreaks and 
>>> collapsing many linebreaks down into one. However I can't seem to do this, 
>>> even when wrapping my transclude widget in triple double quotes as 
>>> described here 
>>> 
>>> .
>>>
>>> Any advice on how to do this? I suspect its something to do with how the 
>>> json encodes text, but its not my area of expertise.
>>>
>>> Thanks a ton
>>>
>>

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


[tw5] Next features in Projectify?

2021-01-06 Thread Nicolas Petton
Hi!

I have now implemented all the features I really care about in
Projectify (https://nicolas.petton.fr/tw/projectify.html), so I was
wondering what other people might miss in the plugin.

On my todo-list I have the following (in no particular order):

* Add support for recurring tasks
* Add support for project templates (to be used when creating new
  projects)
* Make project card colours customizable
* Add documentation about implementing specific workflows (GTD setup, etc.)
* Add support for filtering by tags in the project list/cards
* Add a search input for filtering the project list/cards
* Add a kanban view

Is there anything else you think should be added to the plugin? Anything
from the list above that should be prioritized?

Thanks!
Nico

-- 
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/878s96nfov.fsf%40petton.fr.


signature.asc
Description: PGP signature


[tw5] Re: upgrade 5.1.23 broke cancel-and-close button

2021-01-06 Thread Sylvain Naudin
I don't see anything wrong here, because there seems to be no error 
otherwise (without the possibility to see what happens with your file if it 
is not publishable).

Perhaps there is corruption in other areas that interferes with and 
prevents the proper functioning of TW.

If you want to investigate manually, simply look at tiddler names of the 
plugin (content tab from source 
https://tid.li/tw5/plugins.html#%24%3A%2Fplugins%2Ftelmiger%2FEditButtons)
(also, it's shadow tiddler when plugin is on, not system as you search it, 
have a look if there here).

Le mercredi 6 janvier 2021 à 14:16:32 UTC+1, Sapphireslinger a écrit :

> yes that's how I deleted it
> yes I'm working on copies of last one before I upgraded to 5.1.23 :)
>
> On Wednesday, January 6, 2021 at 8:42:24 PM UTC+8 sil...@gmail.com wrote:
>
>> That's very strange.
>> (hope you work on copy).
>>
>> How did you delete it ?
>>
>> [image: Capture d’écran 2021-01-06 à 13.41.23.png]
>>
>>
>>
>>
>>
>>
>> Le mercredi 6 janvier 2021 à 12:46:21 UTC+1, Sapphireslinger a écrit :
>>
>>> It is impossible to delete Telmiger EditButtons plugin!
>>>
>>> In not yet upgraded wiki:
>>>
>>> I deleted the telmiger editbuttons plugin. 
>>> telmiger editbuttons continued working!
>>> Just to make sure I saved, closed and reloaded my wiki.
>>> All telmiger editbuttons still present and functioning!
>>>
>>> Then I typed "telmiger" in system search box:
>>> All these tiddlers still present!
>>>
>>>
>>> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/cancel-and-close
>>>  
>>>
>>> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/save-and-close
>>>  
>>>
>>> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/save-open
>>>  
>>> $:/config/Plugins/Disabled/$:/plugins/telmiger/EditButtons/styles.css 
>>> $:/plugins/telmiger/EditButtons/images/done-close-button 
>>> $:/plugins/telmiger/EditButtons/images/done-close-button-original 
>>> $:/plugins/telmiger/EditButtons/settings/style 
>>>
>>> $:/state/plugin-info-816169662-$:/plugins/telmiger/EditButtons---396790572 
>>>
>>> I delete each one of those tiddlers manually.
>>> Telmiger editbuttons continued working!
>>> Just to make sure I saved, closed and reloaded my wiki.
>>> The tiddlers deleted are still deleted.
>>> BUT all telmiger editbuttons present and working even though plugin and 
>>> all those tiddlers deleted!
>>> On Wednesday, January 6, 2021 at 3:30:34 AM UTC+8 sil...@gmail.com 
>>> wrote:
>>>
 OK, whaou that's a lot of plugin ^-^'

 So if I'm guessing right, after re-read your first post, it's about 
 *EditButtons* plugin from Thomas Elmiger (
 https://tid.li/tw5/plugins.html)
 Just try in a fresh empty 5.1.23 and it works for me.
 Maybe try to reinstall it.

 (yes when you delete a plugin on single file, delete for example 
 $:/plugins/telmiger/EditButtons 
 and reload your TW file to finish the process).

 Hope it help.
 Sylvain

 NB : Thomas if you read this, there is a side effect/glitch on readme 
 tiddler on too big SVG image with my test on clean install.
 Le mardi 5 janvier 2021 à 14:25:56 UTC+1, Sapphireslinger a écrit :

> I do not have the Stroll edition. However I have the TWcrosslinks 
> plugin 0.1.19 (if I'm reading the tiny print right).
>
> I tried deleting $:/config/ui/EditTemplate per your link above and 
> then upgraded, but it still broke the cancel button. I also tried 
> deleting 
> $:/config/ui/EditTemplate on an already upgraded version but the cancel 
> button stayed button.
>
> I find I don't use the* TWcrosslinks plugin *much. I will try 
> deleting it. But* is deleting it a simple matter of deleting *
> *$:/ak/plugins/TWCrossLinks?* Will that get rid of all the tiddlers 
> included in the plugin? Or must I delete each of the included tiddlers 
> before deleting the plugin tiddler?
>
> Here is the list of all my other plugins:
>
> A bookmark library for TiddlyWiki 
> A contacts database for TiddlyWiki 
> A filter to split input titles and slice-up the results 
> A trashbin mechanism for Tiddlywiki 
> Checklist Plugin 
> datepicker plugin for TiddlyWiki5, based on Pikaday version 1.6.1 
> Disclosure HTML element 
> Discover all your intra tiddlers links 
> double click to edit tiddlers 
> Editor and outliner for TiddlyWiki 
> Editor AutoList - editor extension to automatically continue lists 
> EditorCounter & Autosaver 
> Evernote migration tools 
> Horizontal Story River 
> include web content 
> Interstitial Journaling Plugin 
> moment.js plugin for TiddlyWiki5 
> Open All Button 
> Relink - flexibility when relinking renamed tiddlers 
> Save & close / Cancel & close / Save & keep open 
> Shiraz 
> Simple project management for TiddlyWiki 
> Slider: Create 

Re: [tw5] [ANN] Projectify 0.8.0 is out!

2021-01-06 Thread Nicolas Petton
Mohammad Rahmani  writes:

> Hi Nico,

Hi Mohammad,

> Thank you for these new improvements. Projectify is a great web App
> now.

Thank you, I'm really glad you like it!

Nico

-- 
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/87ble2nfzx.fsf%40petton.fr.


signature.asc
Description: PGP signature


[tw5] Re: LeftBar - make it more dynamic

2021-01-06 Thread Stefan Schlechter
Hi Mat,

I wasn't successful - but thank you for the feedback.
Than I use the LeftBar with hover effect...

Regards
Stefan
Mat schrieb am Mittwoch, 6. Jänner 2021 um 15:08:19 UTC+1:

> Hi Stefan.
>
> I'm happy to hear that you like LeftBar ( http://leftbar.tiddlyspot.com/ )
> Unfortunately two things prevents me from developing this further: 
> - the closing of TiddlySpot has left me in a bit of a vacuum. I don't know 
> how to publish anything anymore. (In case you don't know; the old things, 
> such as LeftBar, is still available there but new things cannot be 
> added/edited).
> - my professional work load is very heavy for at least another semester. 
> (I just had a breather over the holidays but not enough to dig into 
> anything).
>
> I think that what you request would require a fundamentally different CSS 
> than how LeftBar is currently designed. Currently, it does not intrude in 
> the TW core layout more than merely changing the "Story Left position" and 
> "Story Right" (that are intended to be user set), so LeftBar just "makes 
> room" for itself by changing these values to a static value. For the size 
> to adapt dynamically one would either have to calculate the new width based 
> on content (which I don't think can be done) and use this calculated value 
> as the "story left position" OR there would need to be a change how the 
> story river flows out (like how it interacts with the right sidebar) so 
> this is about redesigning (overwriting) the core css. Not at all 
> impossible, maybe not even overly difficult, but it is a big enough task 
> that I unfortunately cannot deal with it for quite some time.
>
> BUT
>
> Maybe you could use a more manual approach? I'm thinking that it should be 
> possible to e.g put a e.g RangeWidget or RadioWidgets at top or bottom of 
> the LeftBar to easily and dynamically (but manually) change the width 
> value, i.e to change this value:
>
> $:/plugins/TWaddle/LeftBar/Stylesheet!!width
>
> or, perhaps it has to be the value that is put into Ctrlpanel > Appearance 
> > ThemeTweaks > StoryRight which is created 
> in $:/plugins/TWaddle/LeftBar/Toggle via some ActionSetfield widgets.
>
> <:-)
>
>
> On Wednesday, January 6, 2021 at 1:41:44 PM UTC+1 schlechter...@gmail.com 
> wrote:
>
>> Hello,
>>
>> I like this plugin (using version2.1.4).
>>
>> The width of the sidbar is defined in '*Controlpanel> Settings> Leftbar' 
>> .*
>> This is static. If the content of the LeftBar is small, you have is a lot 
>> of 'empty' space between LeftBar and Story.
>> [image: LeftBar.jpg]
>>
>> I would like to have this dynamic: 
>> small content of LeftBar --> Story became bigger (+ Offset between 
>> windows)
>>
>> The max width of LeftBar should be configured in '*Controlpanel> 
>> Settings> Leftbar' *
>>
>> Thanks
>> Stefan
>>
>

-- 
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/1c0dd4a6-6a51-4d62-9f70-2f4893b13126n%40googlegroups.com.


Re: [tw5] Tiddly Desktop

2021-01-06 Thread Jeremy Ruston
TiddlyDesktop requires that the TiddlyWiki file have an .html extension, an 
apparent limitation of the underlying Chrome engine so it’s interesting that 
extension-less files work for you in desktop Chrome.

The requirement for the .html extension isn't enforced when creating a new 
wiki, which we will fix for the next release.

Best wishes

Jeremy.

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


[tw5] Re: Tiddly Desktop

2021-01-06 Thread 'Mark S.' via TiddlyWiki
You didn't mention which version of TD you're running. I think people have 
had trouble with 14. I've been using 13 (when I use it at all).

On Wednesday, January 6, 2021 at 6:23:31 AM UTC-8 maruadv...@gmail.com 
wrote:

> New to TD.  Existing TWs I add to TD work fine, no issues.
>
> Problem:
>
> When I attempt to create a new wiki via TD however the program does 
> attempt to create a new blank wiki. The rub is from there it displays the 
> wiki as if I had selected 'view source' from the browser. All the text and 
> scripting is displayed as ascii text. Everything then freezes and I have to 
> kill the TD process manually to regain control.
>
> Observations:
>
> * TD does not create the file with an extension suffix.
> * The OS does recognize the new file as html even without the extension
> *  Attempting to remove with TD does not work on the file created.
>
> OS: Linux 5.4.0-58 x86_64
> Browser: Chrome Version 87.0.4280.88 (Official Build) (64-bit)
> TW: Lastest release 5.1.23
>
> Suggestions?
>

-- 
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/107fb033-0002-47e2-b10c-bd5864329830n%40googlegroups.com.


Re: [tw5] Re: Best of 2020 and the Wish-list of 2021

2021-01-06 Thread Glenn Dixon
Finally got that worked out, but yeah - very limited non-intuitive options 
there.

I think I’m just going back to Notion :(

On Wed, Jan 6, 2021, at 6:41 AM, arun babu wrote:
> 
> Hi Glenn
> 
> After installation of the firefox extension, you have to open the “TW file 
> with the tiddlyclip plug in installed” as another tab in the same Firefox 
> window. After that right click the mouse in the tab with TW file, a pop up 
> menu with “dock here” option comes up. You have to select dock here. Now you 
> can go to the webpage you want to clip. Select the text and right click the 
> mouse. Again a pop up menu with some options will come. Select snip from it. 
> The select text will now get clipped into your TW file. You can select more 
> text as you need which will get clipped to the same tiddler. This tiddler 
> will be seen in the “Recents” page as the first entry.
> 
> 
> As I said in the first post of this thread, this plug in needs some 
> modernization.
> 
> 
> 
> On Wed, Jan 6, 2021 at 4:33 PM Glenn Dixon  wrote:
>> well, now it's installed but the only option I get is 'dock here' - I'll 
>> troubleshoot or bug report on github
>> 
>> On Wednesday, January 6, 2021 at 3:01:01 AM UTC-5 arunn...@gmail.com wrote:
>>> 
>>> @ Glenn Dixon
>>> 
>>> I think the attached files are the latest firefox extension ( 0.1.5) and TW 
>>> plug in(01.14.2pre) of tiddlyclip respectively. Its working in my windows 
>>> laptop.
>>> On Wednesday, January 6, 2021 at 3:35:18 AM UTC+5:30 dix...@gmail.com wrote:
 You have a working copy of tiddlyclip? I just tried installing the 
 extension. Firefox reports it to be corrupt.
 
 
 On Thursday, December 17, 2020 at 4:51:07 PM UTC-5 arunn...@gmail.com 
 wrote:
> Now coming to my wishes for 2021
> 
> 1. I wish for a better web clipper for TW. buggyj's tiddlyclip 
>  is a good one - it can even 
> clip text from pdfs. But I think it can be made better by reducing the 
> steps needed to clip a text. Also I wish it could support streams plug 
> in. Currently all the text clipped from a single webpage or pdf is stored 
> in a single tiddler. And every time we clip a text, a link of that same 
> page also gets saved in that tiddler making the tiddler large. I wish 
> each clipped text from a single webpage to be saved as separate streams 
> tiddler. Also a real time editing of the clipped contents to be supported 
> by opening a side window of TW in the webpage being clipped. Such an 
> implentaion can be seen in remnote web clippe 
> r
>  and eloquent webclipper 
> .
> 
>> 

>> -- 
>> 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/36351b13-b7be-4f38-b881-ff98dd3a662fn%40googlegroups.com
>>  
>> .
> 

> -- 
> 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/f23Eof4TTHI/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> tiddlywiki+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/CABSowt05JN_Hgi_A8Omg7%3DgS8XSwLjtO0Y-_FSKZqYTqijuTTQ%40mail.gmail.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/278ffb89-9c4a-4b11-9552-0f6fbbd697a9%40www.fastmail.com.


[tw5] Tiddly Desktop

2021-01-06 Thread maruadv...@gmail.com
New to TD.  Existing TWs I add to TD work fine, no issues.

Problem:

When I attempt to create a new wiki via TD however the program does attempt 
to create a new blank wiki. The rub is from there it displays the wiki as 
if I had selected 'view source' from the browser. All the text and 
scripting is displayed as ascii text. Everything then freezes and I have to 
kill the TD process manually to regain control.

Observations:

* TD does not create the file with an extension suffix.
* The OS does recognize the new file as html even without the extension
*  Attempting to remove with TD does not work on the file created.

OS: Linux 5.4.0-58 x86_64
Browser: Chrome Version 87.0.4280.88 (Official Build) (64-bit)
TW: Lastest release 5.1.23

Suggestions?

-- 
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/f52f47a3-e64c-412e-a9eb-b51f4ab76796n%40googlegroups.com.


[tw5] Re: LeftBar - make it more dynamic

2021-01-06 Thread Mat
Hi Stefan.

I'm happy to hear that you like LeftBar ( http://leftbar.tiddlyspot.com/ )
Unfortunately two things prevents me from developing this further: 
- the closing of TiddlySpot has left me in a bit of a vacuum. I don't know 
how to publish anything anymore. (In case you don't know; the old things, 
such as LeftBar, is still available there but new things cannot be 
added/edited).
- my professional work load is very heavy for at least another semester. (I 
just had a breather over the holidays but not enough to dig into anything).

I think that what you request would require a fundamentally different CSS 
than how LeftBar is currently designed. Currently, it does not intrude in 
the TW core layout more than merely changing the "Story Left position" and 
"Story Right" (that are intended to be user set), so LeftBar just "makes 
room" for itself by changing these values to a static value. For the size 
to adapt dynamically one would either have to calculate the new width based 
on content (which I don't think can be done) and use this calculated value 
as the "story left position" OR there would need to be a change how the 
story river flows out (like how it interacts with the right sidebar) so 
this is about redesigning (overwriting) the core css. Not at all 
impossible, maybe not even overly difficult, but it is a big enough task 
that I unfortunately cannot deal with it for quite some time.

BUT

Maybe you could use a more manual approach? I'm thinking that it should be 
possible to e.g put a e.g RangeWidget or RadioWidgets at top or bottom of 
the LeftBar to easily and dynamically (but manually) change the width 
value, i.e to change this value:

$:/plugins/TWaddle/LeftBar/Stylesheet!!width

or, perhaps it has to be the value that is put into Ctrlpanel > Appearance 
> ThemeTweaks > StoryRight which is created 
in $:/plugins/TWaddle/LeftBar/Toggle via some ActionSetfield widgets.

<:-)


On Wednesday, January 6, 2021 at 1:41:44 PM UTC+1 schlechter...@gmail.com 
wrote:

> Hello,
>
> I like this plugin (using version2.1.4).
>
> The width of the sidbar is defined in '*Controlpanel> Settings> Leftbar' 
> .*
> This is static. If the content of the LeftBar is small, you have is a lot 
> of 'empty' space between LeftBar and Story.
> [image: LeftBar.jpg]
>
> I would like to have this dynamic: 
> small content of LeftBar --> Story became bigger (+ Offset between windows)
>
> The max width of LeftBar should be configured in '*Controlpanel> 
> Settings> Leftbar' *
>
> Thanks
> Stefan
>

-- 
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/d65ccaf3-9906-4ba6-ab0a-56f034deb41an%40googlegroups.com.


[tw5] Re: upgrade 5.1.23 broke cancel-and-close button

2021-01-06 Thread Sapphireslinger
yes that's how I deleted it
yes I'm working on copies of last one before I upgraded to 5.1.23 :)

On Wednesday, January 6, 2021 at 8:42:24 PM UTC+8 sil...@gmail.com wrote:

> That's very strange.
> (hope you work on copy).
>
> How did you delete it ?
>
> [image: Capture d’écran 2021-01-06 à 13.41.23.png]
>
>
>
>
>
>
> Le mercredi 6 janvier 2021 à 12:46:21 UTC+1, Sapphireslinger a écrit :
>
>> It is impossible to delete Telmiger EditButtons plugin!
>>
>> In not yet upgraded wiki:
>>
>> I deleted the telmiger editbuttons plugin. 
>> telmiger editbuttons continued working!
>> Just to make sure I saved, closed and reloaded my wiki.
>> All telmiger editbuttons still present and functioning!
>>
>> Then I typed "telmiger" in system search box:
>> All these tiddlers still present!
>>
>>
>> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/cancel-and-close
>>  
>>
>> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/save-and-close
>>  
>>
>> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/save-open
>>  
>> $:/config/Plugins/Disabled/$:/plugins/telmiger/EditButtons/styles.css 
>> $:/plugins/telmiger/EditButtons/images/done-close-button 
>> $:/plugins/telmiger/EditButtons/images/done-close-button-original 
>> $:/plugins/telmiger/EditButtons/settings/style 
>> $:/state/plugin-info-816169662-$:/plugins/telmiger/EditButtons---396790572 
>>
>> I delete each one of those tiddlers manually.
>> Telmiger editbuttons continued working!
>> Just to make sure I saved, closed and reloaded my wiki.
>> The tiddlers deleted are still deleted.
>> BUT all telmiger editbuttons present and working even though plugin and 
>> all those tiddlers deleted!
>> On Wednesday, January 6, 2021 at 3:30:34 AM UTC+8 sil...@gmail.com wrote:
>>
>>> OK, whaou that's a lot of plugin ^-^'
>>>
>>> So if I'm guessing right, after re-read your first post, it's about 
>>> *EditButtons* plugin from Thomas Elmiger (
>>> https://tid.li/tw5/plugins.html)
>>> Just try in a fresh empty 5.1.23 and it works for me.
>>> Maybe try to reinstall it.
>>>
>>> (yes when you delete a plugin on single file, delete for example 
>>> $:/plugins/telmiger/EditButtons 
>>> and reload your TW file to finish the process).
>>>
>>> Hope it help.
>>> Sylvain
>>>
>>> NB : Thomas if you read this, there is a side effect/glitch on readme 
>>> tiddler on too big SVG image with my test on clean install.
>>> Le mardi 5 janvier 2021 à 14:25:56 UTC+1, Sapphireslinger a écrit :
>>>
 I do not have the Stroll edition. However I have the TWcrosslinks 
 plugin 0.1.19 (if I'm reading the tiny print right).

 I tried deleting $:/config/ui/EditTemplate per your link above and then 
 upgraded, but it still broke the cancel button. I also tried deleting 
 $:/config/ui/EditTemplate on an already upgraded version but the cancel 
 button stayed button.

 I find I don't use the* TWcrosslinks plugin *much. I will try deleting 
 it. But* is deleting it a simple matter of deleting *
 *$:/ak/plugins/TWCrossLinks?* Will that get rid of all the tiddlers 
 included in the plugin? Or must I delete each of the included tiddlers 
 before deleting the plugin tiddler?

 Here is the list of all my other plugins:

 A bookmark library for TiddlyWiki 
 A contacts database for TiddlyWiki 
 A filter to split input titles and slice-up the results 
 A trashbin mechanism for Tiddlywiki 
 Checklist Plugin 
 datepicker plugin for TiddlyWiki5, based on Pikaday version 1.6.1 
 Disclosure HTML element 
 Discover all your intra tiddlers links 
 double click to edit tiddlers 
 Editor and outliner for TiddlyWiki 
 Editor AutoList - editor extension to automatically continue lists 
 EditorCounter & Autosaver 
 Evernote migration tools 
 Horizontal Story River 
 include web content 
 Interstitial Journaling Plugin 
 moment.js plugin for TiddlyWiki5 
 Open All Button 
 Relink - flexibility when relinking renamed tiddlers 
 Save & close / Cancel & close / Save & keep open 
 Shiraz 
 Simple project management for TiddlyWiki 
 Slider: Create trails, walk through, guided help, sequence, doubly 
 linked contents 
 Spreadsheet-like formulas in TiddlyWiki. 
 Tiddler Commander 
 TiddlyTables 
 TiddlyWiki5 core 
 Todolist for quick and short todo and tasks 

 These are disabled:
 Evernote migration tools
 Horizontal Story River
 Relink - flexibility when relinking renamed tiddlers (didn't realize 
 this one was disabled, will re-enable)
 Spreadsheet-like formulas in TiddlyWiki.
 Todolist for quick and short todo and tasks



 On Tuesday, January 5, 2021 at 7:29:16 PM UTC+8 sil...@gmail.com wrote:

> Hello,
>
> Don't you have the Stroll edition? Because it looks like this thread : 
> 

Re: [tw5] How do I transclude a projectify project tiddler

2021-01-06 Thread Sapphireslinger
Awesome! Thank you!

On Wednesday, January 6, 2021 at 4:46:06 AM UTC+8 Nicolas Petton wrote:

> Sapphireslinger  writes:
>
> Hi,
>
> > The transclusion code calls for <$transclude field="text" 
> mode="block"/>, 
> > and the content of the project tiddler is not really in the text
> > field.
>
> Indeed, the todo items are tiddlers tagged with the project tiddler and
> the "todo" tag.
>
> If you want to render the project with its todos, you could use instead
> the $:/plugins/nico/projectify/ui/project/Project tiddler as a template,
> like the following:
>
> {{||$:/plugins/nico/projectify/ui/project/Project}}
>
> Cheers,
> Nico
>

-- 
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/c5132178-f155-451f-974a-48e243990cc5n%40googlegroups.com.


[tw5] Re: full-screen in TiddlyDesktop not working

2021-01-06 Thread Stefan Schlechter
Hi Tones,

TiddlyDesktop is running maximized in Firefox. Opening my Wiki will open a 
new window.

Opening the Wikki with Firefox and using the wiki tool [image: 
full-screen.jpg]  the Taskbar, tabs of browser etc. will disappear - you 
see only the wiki
In TiddlyDesktop is 'full-screen' without function.

Stefan
TW Tones schrieb am Mittwoch, 6. Jänner 2021 um 13:02:05 UTC+1:

> Full screen = Full Size ?
>
> I think its because Wikis in tiddlyDesktop are already full screen in some 
> ways, maximise the window for maximum size. 
>
> With a local app you can maximise the applications, with browsers they 
> have a full screen option to reduce the "chrome" (menu and toolbars, that 
> is a browser function (not an application feature) unless it is written as 
> such eg; Image viewers etc...
>
> What exactly do you want when you use Full-screen?
>
> Tones
>
> On Wednesday, 6 January 2021 at 22:49:14 UTC+11 schlechter...@gmail.com 
> wrote:
>
>> Hello,
>>
>> I'm using TiddlyDesktop version 0.0.14.
>> Button: Full-size is not working.
>>
>> When I open my Tiddly with browser --> ok.
>>
>> Any ideas?
>> Thanks, Stefan
>>
>>

-- 
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/7c8c36dc-231c-469f-9197-6c5d014e2ddbn%40googlegroups.com.


[tw5] Re: Refresh all tiddlers

2021-01-06 Thread TW Tones
Stobot,

Just some untested ideas.


   - If you make a change to all the open tiddlers they will refresh, but 
   so too if there is something in their wikitext that needs to refresh. 
  - You can find all the open tiddlers listed in the  $:/StoryList 
   list field. 
   - Perhaps something in the view template like a last wiki refresh date, 
   with a refresh button that changes the last refresh date, then all the view 
   templates get refreshed and presumably the <> date.
  - This may even work for a html section that is not even visible that 
  contains wiki text that needs updating.
   
Tones


On Wednesday, 6 January 2021 at 22:29:35 UTC+11 Stobot wrote:

> Is there a way to refresh all open tiddlers without refreshing the wiki as 
> a whole?
>
> Use case is that I use TW for project management, and often have a number 
> of tiddlers open. Many of them show stats around either the current date, 
> number of dates from current date to due date, etc. When I come back to the 
> computer the next day, obviously all of those dates / duration values are 
> wrong, and so they need to be refreshed/recalculated. 
>
> I can obviously to a full save and browser refresh, though I lose my 
> story, and sometimes I don't actually *want* to save it. Sometimes I'm 
> finding instead that I open each in edit view and then discard changes 
> which fixes it. Just wondering if there's another way to accomplish this. I 
> guess programmatically flipping through each tiddler in StoryList and 
> sending edit-mode/read-mode messages?
>
>

-- 
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/4f2b4326-29fc-449b-90bf-3cb35a22479cn%40googlegroups.com.


[tw5] Re: upgrade 5.1.23 broke cancel-and-close button

2021-01-06 Thread Sapphireslinger
The only tag on those tiddlers is $:/tags/image

There is no toolbar tag to delete.

On Wednesday, January 6, 2021 at 8:04:27 PM UTC+8 TW Tones wrote:

> The tiddlers;
>
> $:/plugins/telmiger/EditButtons/images/done-close-button
> $:/plugins/telmiger/EditButtons/images/done-close-button-original
> $:/plugins/telmiger/EditButtons/settings/style
>
> The above are the ones that would give rise to the buttons. i am sure it 
> can be deleted, however try editing them and removing the toolbar tag(s)
>
> Tones
>
> On Wednesday, 6 January 2021 at 22:46:21 UTC+11 Sapphireslinger wrote:
>
>> It is impossible to delete Telmiger EditButtons plugin!
>>
>> In not yet upgraded wiki:
>>
>> I deleted the telmiger editbuttons plugin. 
>> telmiger editbuttons continued working!
>> Just to make sure I saved, closed and reloaded my wiki.
>> All telmiger editbuttons still present and functioning!
>>
>> Then I typed "telmiger" in system search box:
>> All these tiddlers still present!
>>
>>
>> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/cancel-and-close
>>  
>>
>> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/save-and-close
>>  
>>
>> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/save-open
>>  
>> $:/config/Plugins/Disabled/$:/plugins/telmiger/EditButtons/styles.css 
>> $:/plugins/telmiger/EditButtons/images/done-close-button 
>> $:/plugins/telmiger/EditButtons/images/done-close-button-original 
>> $:/plugins/telmiger/EditButtons/settings/style 
>> $:/state/plugin-info-816169662-$:/plugins/telmiger/EditButtons---396790572 
>>
>> I delete each one of those tiddlers manually.
>> Telmiger editbuttons continued working!
>> Just to make sure I saved, closed and reloaded my wiki.
>> The tiddlers deleted are still deleted.
>> BUT all telmiger editbuttons present and working even though plugin and 
>> all those tiddlers deleted!
>> On Wednesday, January 6, 2021 at 3:30:34 AM UTC+8 sil...@gmail.com wrote:
>>
>>> OK, whaou that's a lot of plugin ^-^'
>>>
>>> So if I'm guessing right, after re-read your first post, it's about 
>>> *EditButtons* plugin from Thomas Elmiger (
>>> https://tid.li/tw5/plugins.html)
>>> Just try in a fresh empty 5.1.23 and it works for me.
>>> Maybe try to reinstall it.
>>>
>>> (yes when you delete a plugin on single file, delete for example 
>>> $:/plugins/telmiger/EditButtons 
>>> and reload your TW file to finish the process).
>>>
>>> Hope it help.
>>> Sylvain
>>>
>>> NB : Thomas if you read this, there is a side effect/glitch on readme 
>>> tiddler on too big SVG image with my test on clean install.
>>> Le mardi 5 janvier 2021 à 14:25:56 UTC+1, Sapphireslinger a écrit :
>>>
 I do not have the Stroll edition. However I have the TWcrosslinks 
 plugin 0.1.19 (if I'm reading the tiny print right).

 I tried deleting $:/config/ui/EditTemplate per your link above and then 
 upgraded, but it still broke the cancel button. I also tried deleting 
 $:/config/ui/EditTemplate on an already upgraded version but the cancel 
 button stayed button.

 I find I don't use the* TWcrosslinks plugin *much. I will try deleting 
 it. But* is deleting it a simple matter of deleting *
 *$:/ak/plugins/TWCrossLinks?* Will that get rid of all the tiddlers 
 included in the plugin? Or must I delete each of the included tiddlers 
 before deleting the plugin tiddler?

 Here is the list of all my other plugins:

 A bookmark library for TiddlyWiki 
 A contacts database for TiddlyWiki 
 A filter to split input titles and slice-up the results 
 A trashbin mechanism for Tiddlywiki 
 Checklist Plugin 
 datepicker plugin for TiddlyWiki5, based on Pikaday version 1.6.1 
 Disclosure HTML element 
 Discover all your intra tiddlers links 
 double click to edit tiddlers 
 Editor and outliner for TiddlyWiki 
 Editor AutoList - editor extension to automatically continue lists 
 EditorCounter & Autosaver 
 Evernote migration tools 
 Horizontal Story River 
 include web content 
 Interstitial Journaling Plugin 
 moment.js plugin for TiddlyWiki5 
 Open All Button 
 Relink - flexibility when relinking renamed tiddlers 
 Save & close / Cancel & close / Save & keep open 
 Shiraz 
 Simple project management for TiddlyWiki 
 Slider: Create trails, walk through, guided help, sequence, doubly 
 linked contents 
 Spreadsheet-like formulas in TiddlyWiki. 
 Tiddler Commander 
 TiddlyTables 
 TiddlyWiki5 core 
 Todolist for quick and short todo and tasks 

 These are disabled:
 Evernote migration tools
 Horizontal Story River
 Relink - flexibility when relinking renamed tiddlers (didn't realize 
 this one was disabled, will re-enable)
 Spreadsheet-like formulas in TiddlyWiki.
 Todolist for quick and short todo and tasks



 On Tuesday, 

[tw5] Re: How to get count widget to only look at tiddlers from month x to month y

2021-01-06 Thread Sapphireslinger
Thank you Mark and Eric for all the explanations! 

I think I will stick with compare:text since I live in Asia, not England ^o^

On Wednesday, January 6, 2021 at 11:38:22 AM UTC+8 Eric Shulman wrote:

> On Tuesday, January 5, 2021 at 6:57:44 PM UTC-8 Sapphireslinger wrote:
>
>> May I ask what "gteq" and "1teq" stand for?
>>
>
> gteq = "greater than or equal to"
> lteq = "less than or equal to"
>  
>
>> Does TW's built-in date format have a way to tell it to display as 
>> year.month.day.timesecond? Then I could have the correct display AND take 
>> advantage of TW's built-in date format.
>>
>
> TiddlyWiki internal date format is 0MM0DD0hh0mm0ss0XXX
>
> which forms a 17-digit number where:
> *  = 4 digit year
> * 0MM = 2 digit month (01 to 12)
> * 0DD = 2 digit date (00 to 31)
> * 0hh = 2 digit hour (00 to 23)
> * 0mm = 2 digit minutes (00 to 59)
> * 0ss = 2 digit seconds (00 to 59)
> * 0XXX = 3 digit milliseconds (000 to 999)
>
> Note that the time format does not have any punctuation, and is 
> represented using UTC
> (Universal Time Coordinated), which is essentially the same as Greenwich 
> Mean Time (GMT)
>
> Thus:
> *January 5, 2021 at 6:57:44 PM*
> the date of your posting in my local time zone (PST, Pacific Standard 
> Time), is equivalent to
> *January 6, 2021 at 2:57:44 AM*
> in UTC (i.e., adjusted for 8 hours difference in timezone between PST and 
> UTC),
> and would be represented in TiddlyWiki's internal date format as:
> *20210106025744000*
>  
>
>> If I use the TW's built-in date format, would the proper code for that 
>> look like this:
>>
>> <$vars 
>> myrange="[get[class-date]compare:suffix:gteq[2021.07.01]compare:suffix:lteq[2021.12.31]]"
>>  
>> >
>> <$count filter="[tag[Class Log - Jane 
>> Doe]has[class-date]filter]"/>
>> 
>>
>
> The filter definition would use:
> *<$vars 
> myrange="[get[class-date]compare:date:gteq[20210701]compare:date:lteq[20211231]]"
>  
> >*
>
> (see https://tiddlywiki.com/#compare%20Operator for more details)
>
> enjoy,
> -e
>

-- 
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/0a5c52cf-b453-4fe5-903d-88aa1ddba3b9n%40googlegroups.com.


[tw5] Re: upgrade 5.1.23 broke cancel-and-close button

2021-01-06 Thread TW Tones
The tiddlers;

$:/plugins/telmiger/EditButtons/images/done-close-button
$:/plugins/telmiger/EditButtons/images/done-close-button-original
$:/plugins/telmiger/EditButtons/settings/style

The above are the ones that would give rise to the buttons. i am sure it 
can be deleted, however try editing them and removing the toolbar tag(s)

Tones

On Wednesday, 6 January 2021 at 22:46:21 UTC+11 Sapphireslinger wrote:

> It is impossible to delete Telmiger EditButtons plugin!
>
> In not yet upgraded wiki:
>
> I deleted the telmiger editbuttons plugin. 
> telmiger editbuttons continued working!
> Just to make sure I saved, closed and reloaded my wiki.
> All telmiger editbuttons still present and functioning!
>
> Then I typed "telmiger" in system search box:
> All these tiddlers still present!
>
>
> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/cancel-and-close
>  
>
> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/save-and-close
>  
>
> $:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/save-open
>  
> $:/config/Plugins/Disabled/$:/plugins/telmiger/EditButtons/styles.css 
> $:/plugins/telmiger/EditButtons/images/done-close-button 
> $:/plugins/telmiger/EditButtons/images/done-close-button-original 
> $:/plugins/telmiger/EditButtons/settings/style 
> $:/state/plugin-info-816169662-$:/plugins/telmiger/EditButtons---396790572 
>
> I delete each one of those tiddlers manually.
> Telmiger editbuttons continued working!
> Just to make sure I saved, closed and reloaded my wiki.
> The tiddlers deleted are still deleted.
> BUT all telmiger editbuttons present and working even though plugin and 
> all those tiddlers deleted!
> On Wednesday, January 6, 2021 at 3:30:34 AM UTC+8 sil...@gmail.com wrote:
>
>> OK, whaou that's a lot of plugin ^-^'
>>
>> So if I'm guessing right, after re-read your first post, it's about 
>> *EditButtons* plugin from Thomas Elmiger (https://tid.li/tw5/plugins.html
>> )
>> Just try in a fresh empty 5.1.23 and it works for me.
>> Maybe try to reinstall it.
>>
>> (yes when you delete a plugin on single file, delete for example 
>> $:/plugins/telmiger/EditButtons 
>> and reload your TW file to finish the process).
>>
>> Hope it help.
>> Sylvain
>>
>> NB : Thomas if you read this, there is a side effect/glitch on readme 
>> tiddler on too big SVG image with my test on clean install.
>> Le mardi 5 janvier 2021 à 14:25:56 UTC+1, Sapphireslinger a écrit :
>>
>>> I do not have the Stroll edition. However I have the TWcrosslinks plugin 
>>> 0.1.19 (if I'm reading the tiny print right).
>>>
>>> I tried deleting $:/config/ui/EditTemplate per your link above and then 
>>> upgraded, but it still broke the cancel button. I also tried deleting 
>>> $:/config/ui/EditTemplate on an already upgraded version but the cancel 
>>> button stayed button.
>>>
>>> I find I don't use the* TWcrosslinks plugin *much. I will try deleting 
>>> it. But* is deleting it a simple matter of deleting *
>>> *$:/ak/plugins/TWCrossLinks?* Will that get rid of all the tiddlers 
>>> included in the plugin? Or must I delete each of the included tiddlers 
>>> before deleting the plugin tiddler?
>>>
>>> Here is the list of all my other plugins:
>>>
>>> A bookmark library for TiddlyWiki 
>>> A contacts database for TiddlyWiki 
>>> A filter to split input titles and slice-up the results 
>>> A trashbin mechanism for Tiddlywiki 
>>> Checklist Plugin 
>>> datepicker plugin for TiddlyWiki5, based on Pikaday version 1.6.1 
>>> Disclosure HTML element 
>>> Discover all your intra tiddlers links 
>>> double click to edit tiddlers 
>>> Editor and outliner for TiddlyWiki 
>>> Editor AutoList - editor extension to automatically continue lists 
>>> EditorCounter & Autosaver 
>>> Evernote migration tools 
>>> Horizontal Story River 
>>> include web content 
>>> Interstitial Journaling Plugin 
>>> moment.js plugin for TiddlyWiki5 
>>> Open All Button 
>>> Relink - flexibility when relinking renamed tiddlers 
>>> Save & close / Cancel & close / Save & keep open 
>>> Shiraz 
>>> Simple project management for TiddlyWiki 
>>> Slider: Create trails, walk through, guided help, sequence, doubly 
>>> linked contents 
>>> Spreadsheet-like formulas in TiddlyWiki. 
>>> Tiddler Commander 
>>> TiddlyTables 
>>> TiddlyWiki5 core 
>>> Todolist for quick and short todo and tasks 
>>>
>>> These are disabled:
>>> Evernote migration tools
>>> Horizontal Story River
>>> Relink - flexibility when relinking renamed tiddlers (didn't realize 
>>> this one was disabled, will re-enable)
>>> Spreadsheet-like formulas in TiddlyWiki.
>>> Todolist for quick and short todo and tasks
>>>
>>>
>>>
>>> On Tuesday, January 5, 2021 at 7:29:16 PM UTC+8 sil...@gmail.com wrote:
>>>
 Hello,

 Don't you have the Stroll edition? Because it looks like this thread : 
 https://groups.google.com/g/tiddlywiki/c/Btso8q3Okzo/m/bKA4C9Q9BgAJ
 and David's update :
 

[tw5] Re: full-screen in TiddlyDesktop not working

2021-01-06 Thread TW Tones
Full screen = Full Size ?

I think its because Wikis in tiddlyDesktop are already full screen in some 
ways, maximise the window for maximum size. 

With a local app you can maximise the applications, with browsers they have 
a full screen option to reduce the "chrome" (menu and toolbars, that is a 
browser function (not an application feature) unless it is written as such 
eg; Image viewers etc...

What exactly do you want when you use Full-screen?

Tones

On Wednesday, 6 January 2021 at 22:49:14 UTC+11 schlechter...@gmail.com 
wrote:

> Hello,
>
> I'm using TiddlyDesktop version 0.0.14.
> Button: Full-size is not working.
>
> When I open my Tiddly with browser --> ok.
>
> Any ideas?
> Thanks, Stefan
>
>

-- 
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/87177040-fb4f-44bf-b579-ec84b6e99356n%40googlegroups.com.


[tw5] full-screen in TiddlyDesktop not working

2021-01-06 Thread Stefan Schlechter
Hello,

I'm using TiddlyDesktop version 0.0.14.
Button: Full-size is not working.

When I open my Tiddly with browser --> ok.

Any ideas?
Thanks, Stefan

-- 
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/fdf74336-7a6e-4d4c-8a13-ccb72c410bf2n%40googlegroups.com.


[tw5] Re: upgrade 5.1.23 broke cancel-and-close button

2021-01-06 Thread Sapphireslinger
It is impossible to delete Telmiger EditButtons plugin!

In not yet upgraded wiki:

I deleted the telmiger editbuttons plugin. 
telmiger editbuttons continued working!
Just to make sure I saved, closed and reloaded my wiki.
All telmiger editbuttons still present and functioning!

Then I typed "telmiger" in system search box:
All these tiddlers still present!

$:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/cancel-and-close
 
$:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/save-and-close
 
$:/config/EditToolbarButtons/Visibility/$:/plugins/telmiger/EditButtons/Buttons/save-open
 
$:/config/Plugins/Disabled/$:/plugins/telmiger/EditButtons/styles.css 
$:/plugins/telmiger/EditButtons/images/done-close-button 
$:/plugins/telmiger/EditButtons/images/done-close-button-original 
$:/plugins/telmiger/EditButtons/settings/style 
$:/state/plugin-info-816169662-$:/plugins/telmiger/EditButtons---396790572 

I delete each one of those tiddlers manually.
Telmiger editbuttons continued working!
Just to make sure I saved, closed and reloaded my wiki.
The tiddlers deleted are still deleted.
BUT all telmiger editbuttons present and working even though plugin and all 
those tiddlers deleted!
On Wednesday, January 6, 2021 at 3:30:34 AM UTC+8 sil...@gmail.com wrote:

> OK, whaou that's a lot of plugin ^-^'
>
> So if I'm guessing right, after re-read your first post, it's about 
> *EditButtons* plugin from Thomas Elmiger (https://tid.li/tw5/plugins.html)
> Just try in a fresh empty 5.1.23 and it works for me.
> Maybe try to reinstall it.
>
> (yes when you delete a plugin on single file, delete for example 
> $:/plugins/telmiger/EditButtons 
> and reload your TW file to finish the process).
>
> Hope it help.
> Sylvain
>
> NB : Thomas if you read this, there is a side effect/glitch on readme 
> tiddler on too big SVG image with my test on clean install.
> Le mardi 5 janvier 2021 à 14:25:56 UTC+1, Sapphireslinger a écrit :
>
>> I do not have the Stroll edition. However I have the TWcrosslinks plugin 
>> 0.1.19 (if I'm reading the tiny print right).
>>
>> I tried deleting $:/config/ui/EditTemplate per your link above and then 
>> upgraded, but it still broke the cancel button. I also tried deleting 
>> $:/config/ui/EditTemplate on an already upgraded version but the cancel 
>> button stayed button.
>>
>> I find I don't use the* TWcrosslinks plugin *much. I will try deleting 
>> it. But* is deleting it a simple matter of deleting *
>> *$:/ak/plugins/TWCrossLinks?* Will that get rid of all the tiddlers 
>> included in the plugin? Or must I delete each of the included tiddlers 
>> before deleting the plugin tiddler?
>>
>> Here is the list of all my other plugins:
>>
>> A bookmark library for TiddlyWiki 
>> A contacts database for TiddlyWiki 
>> A filter to split input titles and slice-up the results 
>> A trashbin mechanism for Tiddlywiki 
>> Checklist Plugin 
>> datepicker plugin for TiddlyWiki5, based on Pikaday version 1.6.1 
>> Disclosure HTML element 
>> Discover all your intra tiddlers links 
>> double click to edit tiddlers 
>> Editor and outliner for TiddlyWiki 
>> Editor AutoList - editor extension to automatically continue lists 
>> EditorCounter & Autosaver 
>> Evernote migration tools 
>> Horizontal Story River 
>> include web content 
>> Interstitial Journaling Plugin 
>> moment.js plugin for TiddlyWiki5 
>> Open All Button 
>> Relink - flexibility when relinking renamed tiddlers 
>> Save & close / Cancel & close / Save & keep open 
>> Shiraz 
>> Simple project management for TiddlyWiki 
>> Slider: Create trails, walk through, guided help, sequence, doubly linked 
>> contents 
>> Spreadsheet-like formulas in TiddlyWiki. 
>> Tiddler Commander 
>> TiddlyTables 
>> TiddlyWiki5 core 
>> Todolist for quick and short todo and tasks 
>>
>> These are disabled:
>> Evernote migration tools
>> Horizontal Story River
>> Relink - flexibility when relinking renamed tiddlers (didn't realize this 
>> one was disabled, will re-enable)
>> Spreadsheet-like formulas in TiddlyWiki.
>> Todolist for quick and short todo and tasks
>>
>>
>>
>> On Tuesday, January 5, 2021 at 7:29:16 PM UTC+8 sil...@gmail.com wrote:
>>
>>> Hello,
>>>
>>> Don't you have the Stroll edition? Because it looks like this thread : 
>>> https://groups.google.com/g/tiddlywiki/c/Btso8q3Okzo/m/bKA4C9Q9BgAJ
>>> and David's update :
>>> https://groups.google.com/g/tiddlywiki/c/YeiImlym0j8/m/O9yZ2JRtBwAJ
>>>
>>> Sylvain
>>> Le mardi 5 janvier 2021 à 11:07:54 UTC+1, Sapphireslinger a écrit :
>>>
 It happened during the upgrade because I found the last backup of my 
 tiddlywiki before the upgrade, verified that it did not have those two 
 problems, then I re-uploaded and the two problems appeared again.

 On Tuesday, January 5, 2021 at 10:39:51 AM UTC+8 Sapphireslinger wrote:

> * After upgrading my cancel-and-close button no longer works. (the 
> circle with the x)
>
> (I then 

Re: [tw5] Re: Best of 2020 and the Wish-list of 2021

2021-01-06 Thread arun babu
Hi Glenn

After installation of the firefox extension, you have to open the “TW file
with the tiddlyclip plug in installed” as another tab in the same Firefox
window. After that right click the mouse in the tab with TW file, a pop up
menu with “dock here” option comes up. You have to select dock here. Now
you can go to the webpage you want to clip. Select the text and right click
the mouse. Again a pop up menu with some options will come. Select snip
from it. The select text will now get clipped into your TW file. You can
select more text as you need which will get clipped to the same tiddler.
This tiddler will be seen in the “Recents” page as the first entry.


As I said in the first post of this thread, this plug in needs some
modernization.



On Wed, Jan 6, 2021 at 4:33 PM Glenn Dixon  wrote:

> well, now it's installed but the only option I get is 'dock here' - I'll
> troubleshoot or bug report on github
>
> On Wednesday, January 6, 2021 at 3:01:01 AM UTC-5 arunn...@gmail.com
> wrote:
>
>>
>> @ Glenn Dixon
>>
>> I think the attached files are the latest firefox extension ( 0.1.5) and
>> TW plug in(01.14.2pre) of tiddlyclip respectively. Its working in my
>> windows laptop.
>> On Wednesday, January 6, 2021 at 3:35:18 AM UTC+5:30 dix...@gmail.com
>> wrote:
>>
>>> You have a working copy of tiddlyclip? I just tried installing the
>>> extension. Firefox reports it to be corrupt.
>>>
>>> On Thursday, December 17, 2020 at 4:51:07 PM UTC-5 arunn...@gmail.com
>>> wrote:
>>>
 Now coming to my wishes for 2021

 1. I wish for a better web clipper for TW. buggyj's tiddlyclip
  is a good one - it can
 even clip text from pdfs. But I think it can be made better by reducing the
 steps needed to clip a text. Also I wish it could support streams plug in.
 Currently all the text clipped from a single webpage or pdf is stored in a
 single tiddler. And every time we clip a text, a link of that same page
 also gets saved in that tiddler making the tiddler large. I wish each
 clipped text from a single webpage to be saved as separate streams tiddler.
 Also a real time editing of the clipped contents to be supported by opening
 a side window of TW in the webpage being clipped. Such an implentaion can
 be seen in remnote web clippe
 r
 and eloquent webclipper
 
 .

 --
> 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/36351b13-b7be-4f38-b881-ff98dd3a662fn%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/CABSowt05JN_Hgi_A8Omg7%3DgS8XSwLjtO0Y-_FSKZqYTqijuTTQ%40mail.gmail.com.


Re: [tw5] [ANN] Projectify 0.8.0 is out!

2021-01-06 Thread Mohammad Rahmani
Hi Nico,

Thank you for these new improvements. Projectify is a great web App now.



On Wed, Jan 6, 2021 at 12:11 AM Nicolas Petton  wrote:

> Hi!
>
> I've just released v0.8.0 of Projectify!
>
> Demo and installation instructions are available at
>
>   https://nicolas.petton.fr/tw/projectify.html
>
> I'm thinking about cutting a v1.0 soon, so please report any issue you
> find with the plugin.
>
> Here's a ChangeLog:
>
> Features
>
> * New date picker popup for scheduling todo due dates
>

Does this mean no dependency to moment.js?



> * Todos can now be moved between projects by dragging title links
> * New search input in the Help tiddler
> * Update the stylesheets to work with dark colour palettes
>
> Improvements
>
> * Display the link to the Help tiddler at the bottom of the Dashboard
> * Remove the dependency to $:/plugins/kixam/datepicker
> * Redesign Todo tiddler header buttons
> * Trigger auto-save when modifying a project or todo
> * Show today's date as "Today" in todo due dates
>
> Fixes
>
> * Fix the popup placement for creating new projects on mobile
> * Filter out project drafts from project lists
>
> Cheers,
> Nico
>
> --
> 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/87k0srnmlk.fsf%40petton.fr.
>

-- 
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/CAAV1gMCo8-8BCHu1Z4c2gzijQaYYRAYxuSUbBX1_3OMYBccw%3Dg%40mail.gmail.com.


[tw5] Refresh all tiddlers

2021-01-06 Thread Stobot
Is there a way to refresh all open tiddlers without refreshing the wiki as 
a whole?

Use case is that I use TW for project management, and often have a number 
of tiddlers open. Many of them show stats around either the current date, 
number of dates from current date to due date, etc. When I come back to the 
computer the next day, obviously all of those dates / duration values are 
wrong, and so they need to be refreshed/recalculated. 

I can obviously to a full save and browser refresh, though I lose my story, 
and sometimes I don't actually *want* to save it. Sometimes I'm finding 
instead that I open each in edit view and then discard changes which fixes 
it. Just wondering if there's another way to accomplish this. I guess 
programmatically flipping through each tiddler in StoryList and sending 
edit-mode/read-mode messages?

-- 
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/8834dafc-93b6-4361-8781-ae5ac09c4eabn%40googlegroups.com.


[tw5] Re: Best of 2020 and the Wish-list of 2021

2021-01-06 Thread Glenn Dixon
well, now it's installed but the only option I get is 'dock here' - I'll 
troubleshoot or bug report on github

On Wednesday, January 6, 2021 at 3:01:01 AM UTC-5 arunn...@gmail.com wrote:

>
> @ Glenn Dixon
>
> I think the attached files are the latest firefox extension ( 0.1.5) and 
> TW plug in(01.14.2pre) of tiddlyclip respectively. Its working in my 
> windows laptop.
> On Wednesday, January 6, 2021 at 3:35:18 AM UTC+5:30 dix...@gmail.com 
> wrote:
>
>> You have a working copy of tiddlyclip? I just tried installing the 
>> extension. Firefox reports it to be corrupt.
>>
>> On Thursday, December 17, 2020 at 4:51:07 PM UTC-5 arunn...@gmail.com 
>> wrote:
>>
>>> Now coming to my wishes for 2021
>>>
>>> 1. I wish for a better web clipper for TW. buggyj's tiddlyclip 
>>>  is a good one - it can 
>>> even clip text from pdfs. But I think it can be made better by reducing the 
>>> steps needed to clip a text. Also I wish it could support streams plug in. 
>>> Currently all the text clipped from a single webpage or pdf is stored in a 
>>> single tiddler. And every time we clip a text, a link of that same page 
>>> also gets saved in that tiddler making the tiddler large. I wish each 
>>> clipped text from a single webpage to be saved as separate streams tiddler. 
>>> Also a real time editing of the clipped contents to be supported by opening 
>>> a side window of TW in the webpage being clipped. Such an implentaion can 
>>> be seen in remnote web clippe 
>>> r
>>>  
>>> and eloquent webclipper 
>>> 
>>> .
>>>
>>>

-- 
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/36351b13-b7be-4f38-b881-ff98dd3a662fn%40googlegroups.com.


Re: [tw5] TiddlyWiki Project Name

2021-01-06 Thread Glenn Dixon
I apologize for that horrid mess of code. Wish there was a way to edit. Oh, 
it's email. Even though I'm entering this from a web page. 

Reason # 1,475 why I hate Google Groups :(

/rant

On Wednesday, January 6, 2021 at 5:38:31 AM UTC-5 Glenn Dixon wrote:

> I guess this is what happens when you keep a project going this long...
>
> Ah it was called 
> https://twitter.com/TiddlyWiki?ref_src=twsrc%5Etfw;>@TiddlyWiki 
> , and its still around. (cool!) Before mobile though it was just an 
> HTML file with js that did FS operations to rewrite itself. I think? Was 
> that even possible? beering (@endearingbrew) https://twitter.com/endearingbrew/status/1346648942134476800?ref_src=twsrc%5Etfw;>January
>  
> 6, 2021 https://platform.twitter.com/widgets.js"; charset="utf-8"> 
>
> As if wikis were some antique relic from the past. Well, I guess they 
> kinda are, in internet years.
>
> So I guess this would be a point for rebranding away from mentioning 
> 'wiki' at all? *shrug*
>
> On Tuesday, January 5, 2021 at 8:07:46 PM UTC-5 TW Tones wrote:
>
>> Jeremy et al..
>>
>> If we were to use  Xememex please tell me how to say it?,  Which 
>> syllables are emphasised?. As in my prior post the issue is ease of use and 
>> speaking. If when introducing tiddlywiki (by another name) do you really 
>> want to be forced to spell it?. With a surname like mine, "Muscio" trust me 
>> I always have to spell it and few can workout how to say it just from 
>> reading it, in fact many jumble the letters to Music-o. This is actually 
>> helpful for a surname because of various reasons, like immediate detection 
>> of people who do not know me well on the phone, but it is not good as a 
>> transmissible meme.
>>
>> My notes are about the approach not a name suggestion.
>>
>> On Quines
>>
>> *A quine is a computer program which takes no input and produces a copy 
>> of its own source code as its only output. The standard terms for these 
>> programs in the computability theory and computer science literature are 
>> self-replicating programs, self-reproducing programs, and self-copying 
>> programs.  *
>>
>> Actually this definition found with a google search, is more about 
>> "trivial quines". It is wrong for tiddlywiki, because it can accept input 
>> and although it writes itself back (With new data and functions) it can 
>> also generate many different outputs.
>>
>> I like the Quine idea and I value its relationship to TW but it is 
>> ultimately only a partial description. Perhaps *advanced Quine*? (AQ) it 
>> even has a TLD https://en.wikipedia.org/wiki/.aq not that we could 
>> register.
>>
>> I do favor the tiddler and/or a record, I have no quibble with tiddler, 
>> as it is "self defined" and can become many different things such as a 
>> record or card. My only Quibble is with "TiddlyWiki" when talking to 
>> others, I now say "TiddlyWiki platform" to new people. But for quite 
>> similar reasons I would not be happy with Xememex although like models of 
>> cars the introduction of X makes it sound like a recent model. I would once 
>> again be inclined to say " Xememex platform". Perhaps "meme platform" is 
>> more direct?.
>>
>> Regards
>> Tones
>> On Tuesday, 5 January 2021 at 20:53:02 UTC+11 jeremy...@gmail.com wrote:
>>
>>> Hi Ed
>>>
>>> Re-reading this message (and studiously avoiding making any suggestions 
>>> for new names) the idea of "targeting more modern JavaScript engines" makes 
>>> me wonder about the question of "how modern a browser do you need to have 
>>> to have a working Tiddlywiki?"  
>>>
>>> With regards to minimum browsers for TW5, according to the web site it's 
>>> "Safari version 6" (from 2012!) IE version 10 (also from 2012!) and "all 
>>> recent" Chrome, Firefox, and Firefox for Android, whatever that means, but 
>>> presumably going back comparably far.  So right now TW5 is usable in 
>>> browsers that go about 8 years back, which is nice.  And TWC support 
>>> obviously goes back way further than that.
>>>
>>> How big a change in "you need this recent a browser" would you think was 
>>> acceptable in a "Xememex" project?
>>>
>>>
>>> That would be to be decided. In 2010/1 we targeted the browsers that 
>>> were in common use at the time, and presumably we’d do the same again. 
>>> Nowadays, most browsers automatically update and so perhaps there might be 
>>> less incentive to be as conservative as we have been.
>>>
>>> From a developer perspective, HTML and CSS have actually changed 
>>> relatively little over the last 10 years, it’s in the area of JavaScript 
>>> that things have radically improved: async/await, modules, classes, etc. 
>>> Making these features available in the core will make the developers more 
>>> productive, and make it easier for developers with contemporary JavaScript 
>>> experience to join the project.
>>>
>>> Best wishes
>>>
>>> Jeremy
>>>
>>>
>>>
>>> On Monday, December 28, 2020 at 7:52:20 AM UTC-5 jeremy...@gmail.com 
>>> wrote:
>>>
 As appealing 

Re: [tw5] TiddlyWiki Project Name

2021-01-06 Thread Glenn Dixon
I guess this is what happens when you keep a project going this long...

Ah it was called 
https://twitter.com/TiddlyWiki?ref_src=twsrc%5Etfw;>@TiddlyWiki , 
and its still around. (cool!) Before mobile though it was just an HTML 
file with js that did FS operations to rewrite itself. I think? Was that 
even possible? beering (@endearingbrew) https://twitter.com/endearingbrew/status/1346648942134476800?ref_src=twsrc%5Etfw;>January
 
6, 2021 https://platform.twitter.com/widgets.js"; charset="utf-8"> 

As if wikis were some antique relic from the past. Well, I guess they kinda 
are, in internet years.

So I guess this would be a point for rebranding away from mentioning 'wiki' 
at all? *shrug*

On Tuesday, January 5, 2021 at 8:07:46 PM UTC-5 TW Tones wrote:

> Jeremy et al..
>
> If we were to use  Xememex please tell me how to say it?,  Which syllables 
> are emphasised?. As in my prior post the issue is ease of use and speaking. 
> If when introducing tiddlywiki (by another name) do you really want to be 
> forced to spell it?. With a surname like mine, "Muscio" trust me I always 
> have to spell it and few can workout how to say it just from reading it, in 
> fact many jumble the letters to Music-o. This is actually helpful for a 
> surname because of various reasons, like immediate detection of people who 
> do not know me well on the phone, but it is not good as a transmissible 
> meme.
>
> My notes are about the approach not a name suggestion.
>
> On Quines
>
> *A quine is a computer program which takes no input and produces a copy of 
> its own source code as its only output. The standard terms for these 
> programs in the computability theory and computer science literature are 
> self-replicating programs, self-reproducing programs, and self-copying 
> programs.  *
>
> Actually this definition found with a google search, is more about 
> "trivial quines". It is wrong for tiddlywiki, because it can accept input 
> and although it writes itself back (With new data and functions) it can 
> also generate many different outputs.
>
> I like the Quine idea and I value its relationship to TW but it is 
> ultimately only a partial description. Perhaps *advanced Quine*? (AQ) it 
> even has a TLD https://en.wikipedia.org/wiki/.aq not that we could 
> register.
>
> I do favor the tiddler and/or a record, I have no quibble with tiddler, as 
> it is "self defined" and can become many different things such as a record 
> or card. My only Quibble is with "TiddlyWiki" when talking to others, I now 
> say "TiddlyWiki platform" to new people. But for quite similar reasons I 
> would not be happy with Xememex although like models of cars the 
> introduction of X makes it sound like a recent model. I would once again be 
> inclined to say " Xememex platform". Perhaps "meme platform" is more 
> direct?.
>
> Regards
> Tones
> On Tuesday, 5 January 2021 at 20:53:02 UTC+11 jeremy...@gmail.com wrote:
>
>> Hi Ed
>>
>> Re-reading this message (and studiously avoiding making any suggestions 
>> for new names) the idea of "targeting more modern JavaScript engines" makes 
>> me wonder about the question of "how modern a browser do you need to have 
>> to have a working Tiddlywiki?"  
>>
>> With regards to minimum browsers for TW5, according to the web site it's 
>> "Safari version 6" (from 2012!) IE version 10 (also from 2012!) and "all 
>> recent" Chrome, Firefox, and Firefox for Android, whatever that means, but 
>> presumably going back comparably far.  So right now TW5 is usable in 
>> browsers that go about 8 years back, which is nice.  And TWC support 
>> obviously goes back way further than that.
>>
>> How big a change in "you need this recent a browser" would you think was 
>> acceptable in a "Xememex" project?
>>
>>
>> That would be to be decided. In 2010/1 we targeted the browsers that were 
>> in common use at the time, and presumably we’d do the same again. Nowadays, 
>> most browsers automatically update and so perhaps there might be less 
>> incentive to be as conservative as we have been.
>>
>> From a developer perspective, HTML and CSS have actually changed 
>> relatively little over the last 10 years, it’s in the area of JavaScript 
>> that things have radically improved: async/await, modules, classes, etc. 
>> Making these features available in the core will make the developers more 
>> productive, and make it easier for developers with contemporary JavaScript 
>> experience to join the project.
>>
>> Best wishes
>>
>> Jeremy
>>
>>
>>
>> On Monday, December 28, 2020 at 7:52:20 AM UTC-5 jeremy...@gmail.com 
>> wrote:
>>
>>> As appealing as this sounds, I just don't think that as a small 
>>> community we have the resources to support both, unless the intention would 
>>> be for TiddlyWiki 5 to only receive bug fix updates. 
>>>
>>>
>>> I think that would be the default, yes, unless somebody wanted to pick 
>>> up the development more purposefully.
>>>
>>> As you mention in a later reply, the real challenge 

Re: [tw5] Re: Concatenating contents of multiple fields into one textfield

2021-01-06 Thread Pit.W.

Odin,
it would be interesting to see the complete solution once you have 
assembled it. Could you publish it?


Pit

Am 31.12.2020 um 16:57 schrieb odin...@gmail.com:

Thanks for the reply!

what would the correct syntax be in this case?

<$action-createtiddler
    $basetitle=<>
    tags="[[Six Minute Journal]]"
    text=<$macrocall $name="sixminutejournal" 
grateful={{$:/temp/odin/sixminutejournal!!sixminute-grateful}} 
great={{$:/temp/odin/sixminutejournal!!sixminute-great}} 
affirmation={{$:/temp/odin/sixminutejournal!!sixminute-affirmation}}>

    sixminute-time='21:00'


This doesn't work. I tried some options in which I incase it with ', 
or  ", or {{{ }}}. But I think I am not getting the syntax right. Or 
should I use a different widget in the first place?

Op woensdag 30 december 2020 om 23:49:45 UTC+1 schreef TW Tones:

The approach you are using is valid; Using a macro and replaceable
parameters, however

use the $macrocall widget for sixminutejournal then the parameters
will accept {{transclusions}} or <>

The method you used is not valid, inside simple macro calls.

Regards
Tony


On Thursday, 31 December 2020 at 07:00:16 UTC+11 odin...@gmail.com
wrote:

I am working on a little plugin that allows users to fill in a
short reflection on the day. There are 3 questions and I am
using an edit-text widget to provide for an input. The
structure is like this:

!! I am grateful for...
<$edit-text> for the answer stored in a temp tiddler field
!! What would make today great?
<$edit-text> for the answer stored in a temp tiddler field
!! Daily affirmation. I am...
<$edit-text> for the answer stored in a temp tiddler field

Now I can use a viewtemplate to show this in the tiddler that
is gets stored into, just like I did with my recipe plugin.
But in this case I would like to Concatenate the questions and
the answers into one text field so that users can later edit
their journal entry. But I can't figure out how to.

I think the answer lies in either a macro or the vars widget
(maybe both). But I am stuck and I am not understanding the
documentation correctly.

So far I have this

\define sixminutejournal(grateful, great, affirmation)
!!! I am grateful for:

$grateful$

!!! What would make today great?

$great$

!!! Daily affirmation. I am ...

$affirmation$
\end

And then calling the macro with inside the button that creates
the tiddler:
    text=<>

But this leads to:

!!! I am grateful for:

{{$:/temp/odin/sixminutejournal!!sixminute-grateful}}

!!! What would make today great?

{{$:/temp/odin/sixminutejournal!!sixminute-great}}

!!! Daily affirmation. I am ...

{{$:/temp/odin/sixminutejournal!!sixminute-affirmation}}


How do I get this to fill in the answers and paste it instead?

--
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/80683332-1fbb-4791-9c0b-20bd8c5c0334n%40googlegroups.com 
.



_

Ihre E-Mail-Postfächer sicher & zentral an einem Ort. Jetzt wechseln und alte 
E-Mail-Adresse mitnehmen! https://www.eclipso.de

--
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/8c3363f6-dc1c-4e7a-6ee3-c7343cb2c3ca%40eclipso.ch.


[tw5] Re: Displaying Hard Linebreaks in Text which is pulled from JSON Datatiddler

2021-01-06 Thread scourfie...@gmail.com
Hi

Yes, I'm already using block mode. The code looks like this:

<$transclude tiddler="_planning_descriptions" index={{!!created}} 
mode=block/>

(I'm using this tiddler as a template and storing the textbox content in a 
json, indexed by the "created" timecode so that they can be renamed freely)

If I use inline mode, it doesn't respect any linebreaks at all (even double 
ones).

Thanks for your response

On Wednesday, 6 January 2021 at 00:29:15 UTC TW Tones wrote:

> Just a quick check;
>
> If you use the transclude widget you can specify mode=block, have you 
> tried this yet?
>
> The triple quotes is more a WikiMarkup option for text within a tiddler. 
> With transclusion and templates and more the inline vs block tends to be 
> used. See 
>
> Tones
>
> On Wednesday, 6 January 2021 at 01:01:04 UTC+11 scourfie...@gmail.com 
> wrote:
>
>> Hi all
>>
>> I have some text stored in a json datatiddler which I'm pulling out using 
>> the transclude widget in index mode. 
>>
>> I'd like to display this text with hard linebreaks respected, rather than 
>> the default tiddlywiki behaviour of ignoring single linebreaks and 
>> collapsing many linebreaks down into one. However I can't seem to do this, 
>> even when wrapping my transclude widget in triple double quotes as 
>> described here 
>> 
>> .
>>
>> Any advice on how to do this? I suspect its something to do with how the 
>> json encodes text, but its not my area of expertise.
>>
>> Thanks a ton
>>
>

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


[tw5] Re: Release: Muuri StoryView v0.2.0

2021-01-06 Thread BurningTreeC
I've *updated* both the *Muuri *and the *Muuri-Kanban* plugins to version 
v0.2.6 and v0.1.4 respectively

For the Muuri plugin I've added the option to auto-save after dragging and 
I've fixed the bug @Sylvain mentioned above (grid dimensions not refreshing 
when window dimensions change)

For the Muuri-Kanban plugin I've added the auto-save configuration option 
in the plugin-config (works only with the Muuri plugin v0.2.6 and above) 
and updated some styles


best wishes,
BTC

TW Tones schrieb am Mittwoch, 6. Januar 2021 um 00:18:30 UTC+1:

> Thank you BTC,
>
> Very nice. I need to use this for some big decisions shortly, Lets see if 
> I can share the methods I use.
>
> The option to add more buttons, need only be a hack, its the possibility 
> for a designer to add additional handling to cards and columns that's 
> needed,  they can take responsibility for spacing etc...
>
>- Such a customisation may be as little as a tick button, or a help 
>icon etc...
>- Personally I use muuri and Kanban on a large screen, so I have 
>plenty of real-estate.
>
> One thing I believe Muuri can achieve that other layouts can't, is to 
> support "large, single or multiple 'pain of glass' dashboard's", given the 
> versatility of content in tiddlers, including iFrames to other sites and 
> resources that a Muuri could be used in NOC's (Network Operating Centres) 
> or Operation centre for space or traffic control.
>
> Regards
> Tones
>
> On Tuesday, 5 January 2021 at 20:00:56 UTC+11 BurningTreeC wrote:
>
>>
>> Thanks @Tones,
>>
>> The top drop area will be at the bottom in the next update
>> I'll add a link button to open an item in the StoryRiver
>> I'll also make the  show conditionally if the item contains text and 
>> style it a bit more simple
>>
>> About the option to add more buttons: I'd like to keep it as simple as 
>> possuble since space is limited on those items and they shouldn't cover too 
>> much space.
>> Showing the subtitle though is an option I'll think about
>>
>> Best wishes,
>> Simon
>> TW Tones schrieb am Dienstag, 5. Januar 2021 um 03:50:44 UTC+1:
>>
>>> BTC,
>>>
>>> Great stuff. I particularly like your Kanban and like the way you are 
>>> leveraging the history for "compound tiddlers". 
>>>
>>> I really like the way you handle various drag and drop handling
>>>
>>>- Although the top + area to start new columns is great, after 
>>>building my board, I would like to be able to hide it, or toggle it, or 
>>>perhaps move it to the bottom.
>>>
>>> Other possible improvements from my perspective
>>>
>>>- Option to hide the  when no text exists for a card (good for 
>>>simple lists)
>>>- Perhaps the ability to toggle the display of the text when it 
>>>exists
>>>- love the inline edit, but a link to the actual tiddler would be 
>>>helpful.
>>>
>>> More advanced features
>>>
>>>- It would be nice if we could introduce our own buttons and 
>>>subtitle to each column and cards, 
>>>   - Much like the viewToolBar and subtitle works on tiddlers. 
>>>   - This would allow a designer to add more advanced features to 
>>>   the board and cards
>>>  - Archive, tagging, long description under the heading and 
>>>  more. Even the existing subtitle, for a tiddler.
>>>  - And like the  viewToolBar and subtitle conditional 
>>>  lists/reveals would allow response to the current tiddler.
>>>   - A similar bottom bar on each column or card would also permit 
>>>   useful tools to be introduced to cards
>>>- Could Muuri be activated and deactivated with the new Layout 
>>>switch?
>>>
>>> Personal use under investigation.
>>>
>>> I am keen to look at building a sophisticated evaluation tool making use 
>>> of your Kanban as so far it seems potentially the most extensible so far.
>>>
>>>- I would want to extend it as an addon to you Kanban rather than 
>>>forking it, thus we can make use of it with Muuri
>>>- This would mean I need to find ways to link a tiddler in one 
>>>column with another and sort them accordingly.
>>>- Build some advanced history list tools, usable elsewhere as well
>>>   - Eg; access the list in the set order elsewhere than in the 
>>>   Kanban
>>>   - List each history list, remove the prefix list and/or indicate 
>>>   that lists currentTiddler. Helps access where you were last active.
>>>
>>> Bug?
>>>
>>> There seems to be a bug somewhere that caused this item to be listed in 
>>> the history tiddler and currentTiddler field, possibly the result of a drag 
>>> operation. I will attempt to reproduce and document.
>>>
>>> {
>>> "title": ">> href=\"https://burningtreec.github.io/tiddlywiki-muuri/#Todo\; 
>>> style=\"box-sizing: border-box; text-decoration: underline; font-weight: 
>>> 500; color: rgb(68, 68, 68); user-select: inherit; font-family: system-ui, 
>>> -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif, 

Re: [tw5] Re: [ANN] Projectify 0.8.0 is out!

2021-01-06 Thread Nicolas Petton
Sylvain Naudin  writes:

> Bonsoir Nicolas,

Salut Sylvain,


> Just notice this sidebar effect on clicking sheduling (on Firefox under 
> Mac) :

Thanks, I fixed it in master, I'll make a patch release soon.

Cheers,
Nico

-- 
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/87eeiyo3f9.fsf%40petton.fr.


signature.asc
Description: PGP signature