[tw5] HTTP Error 500.19 On IIS Setup

2019-07-16 Thread MagoArcade
Hi, New to TiddlyWiki an excited to get this up and running. Great concept - quite revolutionary. I'm trying to get a setup running on my IIS10 Windows Home Server. I followed the guide point by point (including installing git) but sadly got a HTTP 500 error I followed the guide here:

Re: [tw5] Couple HR Formatting tricks and a Question on Columns

2019-07-16 Thread Aidan Grey
Thanks Mario! I am actually using your plugin for a couple of my TW right now. My problem was solved once I used column-count instead of the WebKit code. On Tuesday, July 16, 2019, PMario wrote: > Hi, > > I also did play with multi columns for TW dropdowns >

Re: [tw5] Re: Is there a filter to find links in other fields than text

2019-07-16 Thread Mat
Mark, I have a strong feeling your macro will be very useful for me. Would you mind documenting it a little in the "Information about this macro" part (what it does, how to use)? And might it be something relevant to integrate into your PR ?

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread 'Mark S.' via TiddlyWiki
Hi TT, You're going to write an entire setup wizard in PS ? For documentation, if you're going to have diagrams, you could launch a TiddlyWiki file with the default browser. I suppose it could be used for setup too. On Monday, July 15, 2019 at 11:10:08 PM UTC-7, @TiddlyTweeter wrote: > > Ciao

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread @TiddlyTweeter
> Mark: You're going to write an entire setup wizard in PS ? > I was thinking about it. A reason to do so is that precise pathings are very important in it. A setup up would allow easy path checking. Also on first run without a suited .ini it may be confusing. For documentation, if you're

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread 'Mark S.' via TiddlyWiki
Original Edge is a bit of a non-starter for me with TIddlyWiki. It won't read/write HTML files on a networked drive! Or at least on my drive. I found lots of references to this problem, but no solutions. It has something to do with over-the-top security. None of the other browsers, including IE

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread @TiddlyTweeter
Mark S. A presto. One of the things that interests me about Polly is being able to (eventually) provide film students of mine with a pre-configured system in which all they need to do is confirm the Download address. Having to ask them to switch browser model in order to use a saver they have

Re: [tw5] Re: Is there a filter to find links in other fields than text

2019-07-16 Thread 'Mark S.' via TiddlyWiki
Do you mean *Jan's* macro? On Tuesday, July 16, 2019 at 4:27:50 AM UTC-7, Mat wrote: > > Mark, I have a strong feeling your macro will be very useful for me. > Would you mind documenting it a little in the "Information about this > macro" part (what it does, how to use)? > And might it be

[tw5] Re: Macro question

2019-07-16 Thread 'Mark S.' via TiddlyWiki
Squeeze every bit of white space out of the macro after <>, like: \define date-str(date) <$list filter="[[$date$]splitbefore[-]]" variable=x > <$list filter="[[$date$]removeprefixsplitbefore[-]removesuffix[-]]" variable=m> <$list filter="[[data-months]getindex]" variable="mname"> <$list

[tw5] Re: Macro question

2019-07-16 Thread TonyM
My browser did not refresh the forum before I posted here, So I did not see the additional posts. Tony On Wednesday, July 17, 2019 at 10:48:26 AM UTC+10, TonyM wrote: > > Damon, > > Could you provide some additional content to this so I can past into > TiddlyWiki.com and see the error

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread Mat
Very nice Mohammad! It makes me realize a "trap" that I would have fallen into had I made this; It feels self evident to me that every item should be a tiddler in these types of checklists. But your implementation makes me realize that, nope, of course they don't have to be and when they are

Re: [tw5] Re: Is there a filter to find links in other fields than text

2019-07-16 Thread Jan
Hi Mark, Hi Mat I am happy to hear that. To be honest I would not have not have managed to do this without your help, in fact it is the second thing in javascript I ever did. I got a small amelioration: |if (text !== null) {...| avoids red alerts which were happend before so we have this:

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread passingby
I just installed the plugin into m left side floating menu bar (from Twaddle). and the todolist extends behind the story river on the right. I have to set the width of 350px to the leftbar in order for the buttons to be visible. Can the layout be made more fluid? Second suggestion: Can it be

[tw5] Typo Led to Great Discovery! Numbered Hierarchies in TOC

2019-07-16 Thread Aidan Grey
I have seen a LOT of people looking for numbered hierarchies, and I've seen a lot of complicated ways to get to them. I think I accidentally found a solution. <> That one missing space between "toc"and "tc-table-of-contents" resulted in fully and accurately numbered items, all the way

[tw5] Macro question

2019-07-16 Thread Damon Pritchett
Hello all you helpful folks. I'm having a little nuisance with a macro that I'm using which is shown below: \define date-str(date) <$list filter="[[$date$]splitbefore[-]]" variable=x > <$list filter="[[$date$]removeprefixsplitbefore[-]removesuffix[-]]" variable=m> <$list

[tw5] experimenting with svg interactivity in TW

2019-07-16 Thread A Gloom
experimenting with svg interactivity in TW //WORK IN PROGRESS DOCUMENT// this covers mouse hover, links in the svg, displaying external images inside the svg (svg image tag, use tag) the ways to display svg's: import (inline) (svg code in tiddler) for external svg's: image tags object embed

[tw5] Re: Macro question

2019-07-16 Thread Damon Pritchett
For completeness, I should also show how I'm calling this macro: The date of the event was <$macrocall $name="date-str" date={{!!mydate}}/>. On Tuesday, July 16, 2019 at 5:11:24 PM UTC-7, Damon Pritchett wrote: > > Hello all you helpful folks. > > I'm having a little nuisance with a macro

[tw5] Re: Creating similar tabs sections for individual tiddlers

2019-07-16 Thread TonyM
Pedro, You will notice in the macro I provided show-tabset I set the state field as <$set name=state value=<> > This makes a state tiddler unique for each Tiddler I think you may still make use of saving the state, if an intermediate user opens the advanced tab let it remain so when they

[tw5] Re: Macro question

2019-07-16 Thread Damon Pritchett
Thanks Mark. That did the trick. Damon On Tuesday, July 16, 2019 at 5:29:24 PM UTC-7, Mark S. wrote: > > Squeeze every bit of white space out of the macro after <>, like: > > \define date-str(date) > <$list filter="[[$date$]splitbefore[-]]" variable=x > > <$list

[tw5] SIdeBar Segments in a reveal widget?

2019-07-16 Thread passingby
Can it be done, that Site Title, Subtitle, Page Controls, and SearchBar , all put in a single segment which has a hide/reveal slider for these elements? Basically, only show the SideBar Tabs by default? This way I ll have my SIdebar Menu right up the screen and would not need a LeftBar (which

[tw5] Re: HTTP Error 500.19 On IIS Setup

2019-07-16 Thread TonyM
One Quick Idea other wise I am not set up to provide much more help The Config file entry has \\?\C:\... Is there somewhere you can specify the computers host name eg C:\>ipconfig /all See *Host Name . . . . . . . . . . . . :* Regards Tony On Tuesday, July 16, 2019 at 10:16:06 PM UTC+10,

[tw5] Re: Typo Led to Great Discovery! Numbered Hierarchies in TOC

2019-07-16 Thread Aidan Grey
Specifics, which I realize I left out: I have tocP plugin installed. In this case, I had two instances, one right after the other, and I changed one to be the usual TOC process (class ="tc-table...") so that I could fix my old style TOC and change to the parent based one. "tocP" is a required

[tw5] Re: Macro question

2019-07-16 Thread TonyM
Damon, Could you provide some additional content to this so I can past into TiddlyWiki.com and see the error occuring? We can then fix it in place and share the fix. eg <$macrocall $name=date-str date={{!!modified}} >> /> and other variable settings, what is the dates original format etc...?

[tw5] Re: Typo Led to Great Discovery! Numbered Hierarchies in TOC

2019-07-16 Thread A Gloom
LoL not... Whee! but... Eureka! I'll have fo check it out, mebbe could use it without the plugin? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw5] Re: Interactive SVG Image Map Not Responsive

2019-07-16 Thread A Gloom
> So, this is one of the final maps I have. Interactivity is great, > background image is great (the other maps use image, rather than > background-image in the style), the links are all working perfectly, I've > got a unified style set up for text. > Excellent to hear of your success. >

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread TonyM
Mohammad, I have an application of this list you may be able to advise me on, or perhaps it will need a minor enhancement to support it. I would like to introduce the todo list via the view template to all People and Office tiddlers in a solution I am building however I do not want any change

[tw5] Re: Tiny Todolist Plugin: Create one line todo item with different categories

2019-07-16 Thread Mohammad
*Announcement: Todolist Plugin* *Date: July 16, 2019* *Release: 1.0 release candidate 2* Todolist now supports bulk operations to mark all items as done or undone. You can also archive the completed items for future references. It was tried to keep it simple, so these options are in access if

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread Julio Peña
Hello there Mohammad, Wow...great stuff! I've been looking for something simple like this to integrate into some of my Tiddlywikis. Thanks for sharing! Best regards, Julio On Tuesday, July 16, 2019 at 2:02:40 PM UTC-4, Mohammad wrote: > > *Announcement: Todolist Plugin* > > *Date: July 16,

[tw5] Re: [tw] Re: [TW5] WebDav Saver Observations.

2019-07-16 Thread MagoArcade
Hi all - did this result in a dead end? I'm trying to serve tw via IIS and Webdav to enable editing over the internet. Have it connecting fine in terms of reading, but consistently get "Error whilst saving: File changed on server" no matter how much I tinker with WebDav/Auth/SSL settings.

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread Mohammad
> > One small thing could simplify the UI even a tad more: The "check all"and > "uncheck all" buttons could be merged into one (by means of the a > revealwidget). > > Done! Check the new update. > <:-) > -- You received this message because you are subscribed to the Google Groups

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread @TiddlyTweeter
I want to COMPLAIN My parrot is dead. Its a late parrot. Its joined the choir invisible. Where can i get my money back? https://www.youtube.com/watch?v=vnciwwsvNcc -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread @TiddlyTweeter
TBH Mark my students are on vanilla systems. One person on one computer. The lonely film-maker. I'm not sure they would ever see the issues you hit? Let's see. I'd love to get Polly to the point I can test it with them. Its coming. Josiah On Tuesday, 16 July 2019 19:16:02 UTC+2, Mark S.

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread Mohammad
Hi Jullio, I happy to hear that! Please send me your feedback --Cheers Mohammad On Tuesday, July 16, 2019 at 10:46:09 PM UTC+4:30, Julio Peña wrote: > > Hello there Mohammad, > > Wow...great stuff! > I've been looking for something simple like this to integrate into some of > my

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread Mohammad
Hi Mat! Many thanks! There is some explanation in Mechanism (plugin tiddler)! I use your great comment! I will merge the two buttons in the final release! I have also removed the created column! I understood most of people likes the very simple Todo list! --Mohammad On Tuesday, July 16, 2019

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread 'Mark S.' via TiddlyWiki
That's not the one we sold you. It's not the real Macaw. On Tuesday, July 16, 2019 at 11:59:06 AM UTC-7, @TiddlyTweeter wrote: > > I want to COMPLAIN > > My parrot is dead. Its a late parrot. Its joined the choir invisible. > > Where can i get my money back? > >

[tw5] Re: Tiddler Commander: Release Candidate

2019-07-16 Thread A Gloom
did the upgrade on one of my TW's and seemed not to break anything-- surprising with all the hacking of things I've done Don't have any old plugin's-- your's will be the first 3rd party plugin I use -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread @TiddlyTweeter
For those on email: I updated my last post (final para). TT On Tuesday, 16 July 2019 17:00:39 UTC+2, @TiddlyTweeter wrote: > > > >> Mark: You're going to write an entire setup wizard in PS ? >> > > I was thinking about it. A reason to do so is that precise pathings are > very important in it.

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread @TiddlyTweeter
Email users: eek! Thinking too much. Added last two paras to last post. On Tuesday, 16 July 2019 17:33:48 UTC+2, @TiddlyTweeter wrote: > > Mark S. > > A presto. > > One of the things that interests me about Polly is being able to > (eventually) provide film students of mine with a

[tw5] Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread Mohammad
*Announcement: Todolist Plugin* *Date: July 16, 2019* *Release: 1.0 release candidate 2* Todolist now supports bulk operations to mark all items as done or undone. You can also archive the completed items for future references. It was tried to keep it simple, so these options are in access if

[tw5] Re: Tiny Todolist Plugin: Create one line todo item with different categories

2019-07-16 Thread Mohammad
The announcement of RC 2 is repeated as new post. This thread is too long. For comments please visit https://groups.google.com/d/msg/tiddlywiki/GPCpShBbaYA/UZOQ_o2DEAAJ Best regards Mohammad On Tuesday, July 16, 2019 at 10:30:18 PM UTC+4:30, Mohammad wrote: > > > *Announcement: Todolist

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread @TiddlyTweeter
On Tuesday, 16 July 2019 19:45:47 UTC+2, @TiddlyTweeter wrote: > > TBH Mark my students are on vanilla systems. One person on one computer. > The lonely film-maker. I'm not sure they would ever see the issues you hit? > > Let's see. I'd love to get Polly to the point I can test it with them.

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread Mohammad
What is new in Todolist Pluging 1.0.0 RC 2 1. Create several todo lists in the same wiki, each todo uses a seprate namespace 2. Archive completed tasks (items) for future references! 3. Selectively remove items in archived tiddler 4. Empty the archive at once Layout 1. No

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread Mohammad
On Tuesday, July 16, 2019 at 10:32:40 PM UTC+4:30, Mohammad wrote: > > *Announcement: Todolist Plugin* > > *Date: July 16, 2019* > *Release: 1.0 release candidate 2* > > Todolist now supports bulk operations to mark all items as done or undone. > You can also archive the completed items for

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread passingby
I like the improvements. Its better not to have a table. And it looks great in the sidebar.  -- 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

[tw5] Re: Creating similar tabs sections for individual tiddlers

2019-07-16 Thread pedruchini
Tony, Here is my use case (simplified). I'm teaching a foreign language and... for the tiddler 'Adverbs' I would like to have three tabs: Beginners - Intermediate - advanced Now, since the students who are consulting this tiddlywiki are at intermediates's level I would like the tab

[tw5] Re: Interactive SVG Image Map Not Responsive

2019-07-16 Thread Spooky Noodle
> > jiggly as in an actual contast "motion" jiggle (like an animation > motion)-- probably is a randering issue then if it does it independently of > any interaction Well, it only happens when I hover over the object. And it's less of a jiggle, and more "when highlighted, text moves 6 pixels

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread passingby
Tony, Wow, that's creative. I like the idea. On Tuesday, July 16, 2019 at 6:16:22 PM UTC-7, TonyM wrote: > > Mohammad, > > I have an application of this list you may be able to advise me on, or > perhaps it will need a minor enhancement to support it. > > I would like to introduce the todo list

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread Mohammad
Hi Tony, This is a great use case! Thank you! So a viewtemplate like this created: 20190717032355377 modified: 20190717032832272 tags: $:/tags/ViewTemplate title: tempelate/todolist <$list filter="[all[current]tag[office]]"> <> Will add a todo list at the bottom of all tiddlers tagged with

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread TonyM
Mohammad This is difficult! The todo items are index/value pairs and the draggable > widget seems not work for them, but I welcome any suggestion by you or > other user have any solution for this! This is a great spin off idea which I can imagine how to do but it may be better as a core

[tw5] Re: SIdeBar Segments in a reveal widget?

2019-07-16 Thread A Gloom
Interesting and very tempting-- be sure to post if here if any complications arise... -- 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

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread passingby
Hi Mohammed, Noted all the points. I have put the TodoLIst in my main Sidebar(right side). Expanded the width of the SideBar to 400 px. I have gotten rid of the LeftBar. Put everything in the Right SideBar. I was getting irritated with 2 bar on the page. Also I got rid of the Site Title, Sub

[tw5] Re: SIdeBar Segments in a reveal widget?

2019-07-16 Thread passingby
Ok, I am not sure if this was the proper way to do this but it worked as intended. I first made a SideBar Tab tiddler [[Front]] with this as content: {{$:/core/ui/SideBarSegments/site-title}} {{$:/core/ui/SideBarSegments/site-subtitle}} {{$:/core/ui/SideBarSegments/page-controls}}

[tw5] Re: Tiny Todolist RC2: New UI and major improvement

2019-07-16 Thread Mohammad
Hi Passinby On Wednesday, July 17, 2019 at 1:57:56 AM UTC+4:30, passingby wrote: > > I just installed the plugin and embedded a Todolist instance in the left > sideBar(from Twaddle). Unfortunately, the Todolist seems to be wider and > its right edge goes behind the story river on the right. I

[tw5] Re: Tiddler Commander: Release Candidate

2019-07-16 Thread Mohammad
As I know Tiddlywiki has backward compatibility! If you use TW5 which I sure you use, it should be safe to upgrade from your older one to new one! --Mohammad On Tuesday, July 16, 2019 at 8:03:14 AM UTC+4:30, A Gloom wrote: > > Mohammad, > > By the way why not to update your wiki to newer

[tw5] Re: Polly (2) -- Downloads as HUB

2019-07-16 Thread @TiddlyTweeter
Ciao Mark Excellent! And there I was about to send my demo version! I've made a lot of cosmetic changes because of the new features. But I'll integrate i-MS too now before sending. With "parrots" you have basically covered most scenarios. I think parrots will prove particularly useful. I

[tw5] Re: Couple HR Formatting tricks and a Question on Columns

2019-07-16 Thread PMario
Hi, I also did play with multi columns for TW dropdowns , based on flex-grid CSS settings. It's based on a blog post

[tw5] Re: Tiddler Commander: Release Candidate

2019-07-16 Thread A Gloom
> As I know Tiddlywiki has backward compatibility! If you use TW5 which I > sure you use, it should be safe to upgrade from your older one to new one! > 5.1.17 I'll probably do a test upgrade tomorrow - got sidetracked with a big svg experiment-- which I'll be posting of course. -- You

[tw5] Re: Tiddler Commander: Release Candidate

2019-07-16 Thread Mohammad
Okay! Make sure you have backups before upgrade! The only issue may raises if you use some special and old plugins! --Mohammad On Tuesday, July 16, 2019 at 12:43:23 PM UTC+4:30, A Gloom wrote: > > > As I know Tiddlywiki has backward compatibility! If you use TW5 which I >> sure you use, it