[tw] Re: Issue: Twitter #hashtags to TiddlyWiki Tags -- HOW, safely

2017-08-22 Thread 'Mark S.' via TiddlyWiki
You can try this. Import. Save. Reload. Now you can can add tolower[] to each of your filters. Good luck, Mark On Sunday, August 20, 2017 at 5:30:46 AM UTC-7, @TiddlyTweeter wrote: > > Ciao tutti, > > I have an issue I can't solve. It may be I'm looking at the problem the > wrong way because

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread codacodercodacoder
On Tuesday, August 22, 2017 at 4:32:22 PM UTC-5, Jeremy Ruston wrote: > > > It would be useful to find the earlier discussions. ... > > This? https://github.com/Jermolene/TiddlyWiki5/issues/2123 -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.

[tw] Re: Issue: Twitter #hashtags to TiddlyWiki Tags -- HOW, safely

2017-08-22 Thread @TiddlyTweeter
Ciao Mark S. Thanks a lot for the help. I've now got something that's definitely in the right direction. FYI, I made some decisions ... *The #hashtag prefix I will keep in the TW tags* too, so it doesn't need to be clipped off. *I don't see any issues doing that*? It will better help me to

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Jeremy Ruston
Hi Russ, Mark, > On Tuesday, August 22, 2017 at 3:05:13 PM UTC-5, Mark S. wrote: > Wouldn't a prefilter=none option turn off de-duplication for the entire > filter? Whatever mechanism we choose has to be usable everywhere that filters are used; that’s not just the list widget, but also

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread codacodercodacoder
On Tuesday, August 22, 2017 at 3:05:13 PM UTC-5, Mark S. wrote: > > Wouldn't a prefilter=none option turn off de-duplication for the entire > filter? > Likely. Why I also mentioned some kind of pragma approach or even a new kind of list widget. But without knowing at what level of

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread 'Mark S.' via TiddlyWiki
Wouldn't a prefilter=none option turn off de-duplication for the entire filter? What if you had a filter with multiple runs? You might not want all the runs to be affected. Seems like a custom enlist (maybe with a suffix like "enlist:dupes" would be simpler and safer to implement and would only

[tw] Re: Serving TW5 on remote Node.js server. When access tiddlywiki from browser, tw5 script fails with error: The header content contains invalid characters

2017-08-22 Thread Shareda
вторник, 22 августа 2017 г., 15:03:02 UTC+6 пользователь RichardWilliamSmith написал: > > Does it work locally, if you run the same server on your own machine? > Yes! It works locally, if i run server with the same prms. I can set any usernames, passwords, ports, and access from any browser,

Re: [tw] NoteSelf Android APP

2017-08-22 Thread Jan
Hi Danielo, Great to have an App for mobiles. Do you (or does anyone else) plan to implement something similar for IOS ? Yours Jan Am 22.08.2017 um 16:52 schrieb Eneko Gotzon: On Tue, Aug 22, 2017 at 8:37 AM, Danielo Rodríguez >wrote: I

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Mat
Seems the conclusion is that there is no direct way to accomplish this. (BTW, this probably also means an idea I had for Graphs will not work.) Switching over to wish-mode: codacoder suggested a listwidget attribute >

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread codacodercodacoder
Methinks there's mileage in this... kudos! On Tuesday, August 22, 2017 at 2:05:31 PM UTC-5, Mark S. wrote: > > It's pretty easy to make a "cheater" filter "enlist2" that splits at space > boundaries. Then code like this: > > <$list filter="[enlist2[2 2 3 2]]" > > <$view field="title"/> - > >

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread 'Mark S.' via TiddlyWiki
It's pretty easy to make a "cheater" filter "enlist2" that splits at space boundaries. Then code like this: <$list filter="[enlist2[2 2 3 2]]" > <$view field="title"/> - Will enumerate like 2 - 2 - 3 - 2 - It's a cheater because it doesn't do a full parse for titles like [[My Real

[tw] Re: Serving TW5 on remote Node.js server. When access tiddlywiki from browser, tw5 script fails with error: The header content contains invalid characters

2017-08-22 Thread Shareda
Hi, Tony and RichardWilliamSmith! Thanks for your answers! Tony, yes I restarted whole VPS to exclude other test instances of TiddlyWiki, but behaviour just the same: as I request : from browser, password-protected TW5 server fails with that error. I tried oter ports - the same result. Also I

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread 'Mark S.' via TiddlyWiki
Thanks Jeremy, Finally got it. So there's no way to feed nth a list that hasn't been already squashed. Thanks! Mark -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an

[tw] Como Curar Las Hemorroides

2017-08-22 Thread Como Curar Las Hemorroides
*Deseas saber cómo curar las hemorroides?* Cómo curar las hemorroides y que es lo más importante en la mente de millones de personas que ha sido afectadas por ella. Las hemorroides es una condición muy desagradable, ya que no sólo es incómodo, sino que también puede ser doloroso y peligroso.

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Jeremy Ruston
Hi Mark > How does it flatten it, when [enlistnth] is being called one at > a time for each value and only generates one value? How can the > *filter* be flattening it, when the filter should be generating exactly *one* > item each time it is called? That is [enlist[1 2 3 4 5]nth[3] should

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread 'Mark S.' via TiddlyWiki
Hi Jeremy, How does it flatten it, when [enlistnth] is being called one at a time for each value and only generates one value? How can the *filter* be flattening it, when the filter should be generating exactly *one* item each time it is called? That is [enlist[1 2 3 4 5]nth[3] should only

[tw] Re: Issue: Twitter #hashtags to TiddlyWiki Tags -- HOW, safely

2017-08-22 Thread 'Mark S.' via TiddlyWiki
Unfortunately, the "removesuffix" filter does 2 things, rather than just the convenient one thing I wanted. It removes the suffix AND it filters. So though it would work great with #Buddha's it would fail with "#Buddha" . Correcting for this results in a more complicated filter. Now the logic

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Jeremy Ruston
Hi Mark > BUT there are NO duplicate entries. Take a look at the code again. I > enumerate a unique set of values (1 2 3 4 5) with enlist. There are no > duplicates. THEN I call wikify on a sub-list. The results get crushed anyways. I think the problem is that [enlistnth] in the nested list

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread 'Mark S.' via TiddlyWiki
Hi Jeremy, BUT there are NO duplicate entries. Take a look at the code again. I enumerate a unique set of values (1 2 3 4 5) with enlist. There are no duplicates. THEN I call wikify on a sub-list. The results get crushed anyways. Thanks, Mark On Tuesday, August 22, 2017 at 9:38:45 AM UTC-7,

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Jeremy Ruston
Hi Russ > All of the logic around uniquifying lists actually happens within the filter > mechanism, ... > > > Which I believe is also in use when managing data entered via a field called > list - right? There is indeed some special handling for the field called “list” whereby the content is

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Jeremy Ruston
Hi Mark > On 22 Aug 2017, at 17:12, 'Mark S.' via TiddlyWiki > wrote: > > Then why doesn't this work? The problem here is that the [enlist[]] filter operator reads the list using $tw.utils.parseStringArray(), which throws away duplicate entries:

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread codacodercodacoder
On Tuesday, August 22, 2017 at 11:02:21 AM UTC-5, Jeremy Ruston wrote: > > All of the logic around uniquifying lists actually happens within the > filter mechanism, ... > > Which I believe is also in use when managing data entered via a field called list - right? -- You received this

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread 'Mark S.' via TiddlyWiki
Hi Jeremy, Then why doesn't this work? \define nthnum() [enlistnth[$(enum)$]] <$vars myList="2 3 2 2" enumList="1 2 3 4 5"> <$list filter="[enlist]" variable="enum"> <$wikify name=item mode=inline text='<$list filter="[enlistnth]"/>'> <> The outer layer is generating a unique list of

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread 'Mark S.' via TiddlyWiki
You probably won't like this approach any better. But you can make tiddlers 1 2 3 each with a number field say populated with "2" then this will work: <$list filter="1 2 3 +[get[number]]" > <$view field="title"/> (Result 2 2 2 ) You of course don't have to use tiddlers 1,2,3 -- you just need

Re: [tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Jeremy Ruston
Hi Mat, Coda, > On 22 Aug 2017, at 16:41, codacodercodaco...@outlook.com wrote: > > Yeah. If I recall, Jeremy said the listwidget is very complex and he is not > in favour of introducing further complexity for it. I might have it mixed up > with some other widget. Still, it is such a central

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread codacodercodacoder
On Tuesday, August 22, 2017 at 10:29:43 AM UTC-5, Mat wrote: > > BTW, I'm surprised we (all of us) have not had this discussion before. At > least not as far as I know. > > Like I thought I said in my first response (but didn't, I must have edited out), when I first stumbled on the problem, I

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread codacodercodacoder
On Tuesday, August 22, 2017 at 9:40:39 AM UTC-5, Mat wrote: > > codacoder wrote: >> >> The "everything is a tiddler" philosophy doesn't always sit well with >> dominantly-appended lists (either list fields or the list widget itself)[1]. >> > > As far as I can tell, this is not a matter of the

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Mat
Mark S. wrote: > <$list filter="X12 X22 X32 X43" > > Again, the number of items is arbitrary. And while those prefixes would be as plenty as there are items, there is apparently also not good way of counting the number of items. Still, thanks for the idea! BTW, I'm surprised we (all of

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Mat
On Tuesday, August 22, 2017 at 4:14:19 PM UTC+2, RichardWilliamSmith wrote: > > I think your proposal still could not handle *arbitrary* lists where the >> items (in this case numbers) are not predictable so it wouldn't be possible >> to make separate fields for them... >> > > I don't

[tw] Re: can we still create a couchdb instance on cloudant

2017-08-22 Thread Lost Admin
Thanks for letting me know I'm not alone in my experience with NoteSelf and Firefox. That might also explain my issues as I was doing similar testing. It would also explain the different experience with different urls for the Noteself html file. In my case, I used the developer tools as well.

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread 'Mark S.' via TiddlyWiki
> Hm, I feel like I'm nit-picking semantics but does "dominent append approach" necessarily mean it also filters out stuff? Yes, per the Dominant Append tiddler: Filters manipulate sets of titles > in which no title

[tw] Re: Issue: Twitter #hashtags to TiddlyWiki Tags -- HOW, safely

2017-08-22 Thread @TiddlyTweeter
Ciao Mark Thanks for letting me know. Not to worry. I haven't done anything yet. FYI I have been looking through the "back catalogue" of TW trying to find any extensions people may have made around regular expressions to see if there is anything that could make the code for the processing of

[tw] Re: can we still create a couchdb instance on cloudant

2017-08-22 Thread 'Mark S.' via TiddlyWiki
I've given up for the moment for NS firefox on cloudant. (posted in another thread). I *think* what happened is that I deleted the NS database (to see if I could). It deleted the actual database, but left cookies or something so that I can't re-establish a connection to NS on cloudant. That

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread 'Mark S.' via TiddlyWiki
Here's a really clumsy solution, that I don't quite understand how it works. You start by making each entry of your first list unique (so that it doesn't get compacted). Then the inner list strips off the unique part (this the part where I don't understand the logic fully, but it seems to

Re: [tw] NoteSelf Android APP

2017-08-22 Thread Eneko Gotzon
On Tue, Aug 22, 2017 at 8:37 AM, Danielo Rodríguez wrote: > I promise you that it is useful… > ​You ​are so wonderful Byte Guys… -- Eneko Gotzon Ares enekogot...@gmail.com -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Mat
codacoder wrote: > > The "everything is a tiddler" philosophy doesn't always sit well with > dominantly-appended lists (either list fields or the list widget itself)[1]. > As far as I can tell, this is not a matter of the "everything is a tiddler philosophy" because the arguments are

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread RichardWilliamSmith
> > I think your proposal still could not handle *arbitrary* lists where the > items (in this case numbers) are not predictable so it wouldn't be possible > to make separate fields for them... > I don't understand this, I'm afraid. Maybe you could explain a little more what you really need

Re: [tw] Re: Pack plugin button

2017-08-22 Thread Andrew
I am abandoning wikify because it causes all macro transclusions in all tiddlers to wikify. -- 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

[tw] Re: can we still create a couchdb instance on cloudant

2017-08-22 Thread Lost Admin
Danielo, Although you made Noteself, I don't blame you for missing it. I was disappointed that nobody else (anyone) even tried to confirm my results. Additionally, before giving up, I did re-download the noteself empty.html and re-try it. I still get those errors on Firefox, but oddly only

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread codacodercodacoder
I feel your pain, Mat. I've been here before. The "everything is a tiddler" philosophy doesn't always sit well with dominantly-appended lists (either list fields or the list widget itself)[1]. The dominant append approach is vital for UI construction, for obvious reasons, but if the list

[tw] Re: Challenge: Table consisting of tiddlers

2017-08-22 Thread 'Stephen Kimmel' via TiddlyWiki
Looking at your challenge again, I stumbled into what I'll refer to as the FlexBox solution. This may not be quite what you were looking for but you may find it interesting. The listing of the tiddlers is a filtered list displaying a link to the individual tiddlers and a display of the tiddler

[tw] Re: Issue: Twitter #hashtags to TiddlyWiki Tags -- HOW, safely

2017-08-22 Thread @TiddlyTweeter
Ciao TonyM Thanks for the post. Because of the awful way that Google Groups work you are probably only dimly aware that the last 6 months have seen enormous developments for Twitter enthusiasts in TiddlyWiki. *Twitter is the one social network that is near comprehensively supported by

[tw] Re: NoteSelf Android APP

2017-08-22 Thread Sylvain Naudin
Hi Danielo, Great to see this news ! I've just install it, test quickly QR Code tiddler creation, it's nice :) I'll test configure couchdb later and synchronise this. Cheers, Sylvain -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread Mat
Richard, I appreciate your attempts. And yeah, first though "must be easy - even trivial"... but no. I think your proposal still could not handle *arbitrary* lists where the items (in this case numbers) are not predictable so it wouldn't be possible to make separate fields for them... at least

[tw] Re: Prevent filter from filtering out copies?

2017-08-22 Thread RichardWilliamSmith
Hi Mat, At first I thought "it must be easy". But then I realised it's not. I was all ready to roll up my sleeves and try to give it a go, but then I found the tiddler called "Dominant Append" and I despaired. Filters manipulate sets of titles >

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

2017-08-22 Thread @TiddlyTweeter
Being a #quine , #TiddlyWiki re-instances itself in its own (re-)making of itself. -- 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,

[tw] Re: Serving TW5 on remote Node.js server. When access tiddlywiki from browser, tw5 script fails with error: The header content contains invalid characters

2017-08-22 Thread RichardWilliamSmith
As far as I can tell this is Node itself crashing (storeHeader is in _http_outgoing.js at this memorable url - https://github.com/nodejs/node/blob/11a2ca29babcb35132e7d93244b69c544d52dfe4/lib/_http_outgoing.js) It would seem Tiddlywiki is creating/allowing something that Node doesn't like.

[tw] Prevent filter from filtering out copies?

2017-08-22 Thread Mat
I want to do something per each thing in an arbitrary list that can contain multiple occurences, like so 1 2 3 2 2 2 2 I assume the *listwidget *should be used but how can I make it not filter out the multiple 2's? Thanx <:-) -- You received this message because you are subscribed to the

[tw] Re: can we still create a couchdb instance on cloudant

2017-08-22 Thread Danielo Rodríguez
> Then I ran into issues with Noteself reloading when using Firefox. I chased > down the issue as far as I could but haven't seen anyone else reply to my > post about it. So I gave up on Noteself. I'm sorry about that Lost Admin, I don't have much time this days and it's very easy to miss a

[tw] NoteSelf Android APP

2017-08-22 Thread Danielo Rodríguez
Hello everyone, Welcome to the beta program of NoteSelf Android app. I will post here all the releases of the official Noteself Android app. New versions will be posted here too, both as a new post and as eddition of the first one, so make sure to subscribe to this thread if you are