[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Stephan Hradek
Am Sonntag, 2. März 2014 01:44:32 UTC+1 schrieb Jon: Thanks, Stephan. I got that to work although I notice that altering the day eg. $list filter=[field:created/^20140(2|3*01*)/] doesn't appear to make any difference so $list filter=[field:created/^20140(2|201)/] should just

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Stephan Hradek
Am Sonntag, 2. März 2014 08:34:55 UTC+1 schrieb Jon: Also, anticipating the need to span years eg. 1st December 2013 to 1st Februrary 2014, how would you do that? Again, many thanks for your help on this. As already stated in my previous post, I've explained the regular expression I

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Jon
You're a hard task master! On Sunday, 2 March 2014 08:36:05 UTC, Stephan Hradek wrote: Am Sonntag, 2. März 2014 08:34:55 UTC+1 schrieb Jon: Also, anticipating the need to span years eg. 1st December 2013 to 1st Februrary 2014, how would you do that? Again, many thanks for your help on

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Stephan Hradek
Am Sonntag, 2. März 2014 09:51:45 UTC+1 schrieb Jon: You're a hard task master! give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime [Quote:

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Jon
Ah yes, but if it takes the man months to learn how to fish, he has a tendency to starve. I'll be happy for any tiddlers in the mean time! On Sunday, 2 March 2014 09:43:03 UTC, Stephan Hradek wrote: Am Sonntag, 2. März 2014 09:51:45 UTC+1 schrieb Jon: You're a hard task master! give a

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Jon
https://lh6.googleusercontent.com/-BggnRjzdBOs/UxMcJ8KXgSI/ABM/ZpDtAc9iTKY/s1600/Untitled.bmp Hi Stephan, I'm sure I'd be able to work it out eventually, but at the moment I'm struggling to see how $list filter=[field:created/^20140(2|3*01*)/]works. I've experimented changing the day

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Stephan Hradek
As I said: try to understand my explanation and ask specific questions about what's unclear. I think others would learn from that too. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop receiving emails from

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Jon
OK, so I would like to to filter tiddlers created between 2 dates and you suggested this as a solution: $list filter=[field:created/^20140(2|301)/] and gave the explanation below: ^: Start of the text 2014 : Match 2014 - The year 0: Match 0 - The first digit of the month (: this

Re: [tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Xavier Cazin
Jon, *only* if the 3 matches, has the date to also match 01 (so that only the first of march matches). No such constraint is put on 2, so that any days of february will match. X. -- Xavier Cazin On Sun, Mar 2, 2014 at 1:25 PM, Jon fiveri...@gmail.com wrote: OK, so I would like to to filter

Re: [tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Jon
Hi Xavier, will this: $list filter=[field:created/^20140(201|301)/] filter tiddlers created between 1st Feb 14 and 1st March 14? Because this doesn't appear to work either. Perhaps this is the wrong expression for what I want to do? On Sunday, 2 March 2014 12:38:06 UTC, Xavier wrote: Jon,

Re: [tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Xavier Cazin
Nope, this will only select two days: the 1st of february and the first of march :-) By the way, Stephan answered to your question regarding spanning over two years: /^(201312|20140[12])/ matches: any date that *starts* with 201312 (that is any day in december) *PLUS* any date that *starts*

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Jon
Hi Xavier, thanks for that and for the link which I'll look at. I'm very new to TW and don't have any coding/computer experience but I appreciate the advantages of using TW5 for my note taking etc. and want to make more use of it. However, in trying to learn how to do some basic stuff to make

Re: [tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-02 Thread Stephan Hradek
Many thanks for jumping in Xavier. I was in the cinema with my son the last 3 hours so couldn't answer here. @Jon: You need to know that there is no numerical comparrison in filter expressions. So what I do is a text match. There are some special characters in these matches. Examples .

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Stephan Hradek
{{{ [field:created/^2013/] }}} {{{ [field:created/^201312/] }}} General: {{{ [field:created/^MM/] }}} -- 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: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Jon
That's really useful - what would the code be to search between 2 dates? Thanks, Jon. On Saturday, 1 March 2014 14:23:16 UTC, Stephan Hradek wrote: {{{ [field:created/^2013/] }}} {{{ [field:created/^201312/] }}} General: {{{ [field:created/^MM/] }}} -- You received this

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Adolfo Delorenzo
Thank you Stephan!! On Saturday, March 1, 2014 11:16:21 AM UTC-3, Adolfo Delorenzo wrote: Hello, First of all thank you all the developers of both TWC and TW5 for your hard work with this project. I have been using TW since 2008 and I am a admirer of the simplicity of this tool. I started

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Adolfo Delorenzo
I wonder if it is possible to transclude tiddlers using this filter. Can this be done? Thanks On Saturday, March 1, 2014 11:16:21 AM UTC-3, Adolfo Delorenzo wrote: Hello, First of all thank you all the developers of both TWC and TW5 for your hard work with this project. I have been using

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Adolfo Delorenzo
Ok, I got it. $list filter=[tag[report]sort[created/^201403/]]$transclude/br/$list this will transclude tiddlers with the report tag and created in March/2014. Thank you very much. On Saturday, March 1, 2014 11:16:21 AM UTC-3, Adolfo Delorenzo wrote: Hello, First of all thank you all

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Stephan Hradek
There is no numerical comparisson. So you need to write a regular expression matching your dates. /^(201312|20140[12])/ would for example give you everything from 2013-12-01 to 2014-02-28 -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Jon
That's great, thanks Stephan. On Saturday, 1 March 2014 19:13:38 UTC, Stephan Hradek wrote: There is no numerical comparisson. So you need to write a regular expression matching your dates. /^(201312|20140[12])/ would for example give you everything from 2013-12-01 to 2014-02-28 --

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Jon
Sorry, Stephan I can't get this to work. Using, {{{ [field:created/^MM/] }}} how would I return the tiddlers created between 1/2/14 to 1/3/14? Thanks, Jon On Saturday, 1 March 2014 19:22:47 UTC, Jon wrote: That's great, thanks Stephan. On Saturday, 1 March 2014 19:13:38 UTC, Stephan

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Stephan Hradek
Am Samstag, 1. März 2014 20:46:46 UTC+1 schrieb Jon: Sorry, Stephan I can't get this to work. Using, {{{ [field:created/^MM/] }}} how would I return the tiddlers created between 1/2/14 to 1/3/14? {{{ [field:created/^20140(2|301)/] }}} where I assume that you want to include

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Jon
Yes, I should have written 1st Feb to 1st March 2014. {{{ [field:created/^20140(2|301)/] }}} produces: Filter error: Unterminated regular expression in filter expression What else am I doing wrong? Thanks, Jon. On Saturday, 1 March 2014 21:39:56 UTC, Stephan Hradek wrote: Am Samstag, 1.

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Stephan Hradek
Am Samstag, 1. März 2014 22:59:07 UTC+1 schrieb Jon: What else am I doing wrong? Nothing. It's a parsing bug because of the |. Use the explict list widget: $list filter=[field:created/^20140(2|301)/] -- You received this message because you are subscribed to the Google Groups

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Jon
Thanks, Stephan. I got that to work although I notice that altering the day eg. $list filter=[field:created/^20140(2|3*01*)/] doesn't appear to make any difference so $list filter=[field:created/^20140(2|201)/] should just produce results for the 1st Feb 2014 but instead it produces

[tw] Re: [TW5] list tiddlers by month/year creation date

2014-03-01 Thread Jon
Also, anticipating the need to span years eg. 1st December 2013 to 1st Februrary 2014, how would you do that? Again, many thanks for your help on this. On Sunday, 2 March 2014 00:44:32 UTC, Jon wrote: Thanks, Stephan. I got that to work although I notice that altering the day eg. $list