Hi Passingby I can see whats happening with the tag parameter in showReminder and like yourself the only way I can see this working is getting really specific with your tags as not to include anything you do not want in the results, alternatively editing the script to suit your filtering requirements may be the answer however this goes beyond the scope fo my knowledge. hopefully someone else may have a better idea.
On Jan 9, 4:00 am, passingby <[email protected]> wrote: > Hi Adam, > The trouble is parameter tag:"birthday anniversary" is that a reminder > which is tagged with *either* of the tags is included in the results. > So when I want to show only birthdays of the family using > tag:"birthday family" a reminders which is tagged family as well as > marriage and not birthday shall also be included in the results. Of > course this means that I should use tag:"birthday family !marriage ! > getTogether !xyz", but that leaves me a limited choice of tags for > future and its easy for errors to creep in. > > Let me go off topic for a bit and share what I am actually trying to > do. The thing is I had this urge to create a TW for myself in which I > shall keep a record of ALL dates that mattered in my life, everything > like episodes of ill-health, doctor visits, life events such as job, > firing, meetings, birthdays, anniversaries, date on which I bought my > car, day it broke down, day I sold it etc..you know the whole life > progression, so that after a decade or so I have a complete events > history. It might sound a bit self-obsessing but my interest is in > recording the data as I am very forgetful. I forget dates, even > general idea of time when something happened. If there is a date to be > forgotten, I shall probably forget it. > > So I thought maybe ReminderMacro and Calendar is best for all this. > But maybe I am wrong, maybe I should separate the history from the > future. You know, use ReminderMacro for reminding things that either > happen in future like meetings, tasks, or are to be celebrated > recurringly like birthdays, anniversaries etc. And use other things > like 'newjournal' macro for history. > So I guess the real question is: > > How do I record my life in a Tiddlywiki? > > On Jan 8, 11:07 pm, adamwilson86 <[email protected]> wrote: > > > Hi passingby > > > in my experience the only way I have filtered reminders is using the > > tags from the tiddler they are in > > <<showReminders leadtime:30 tag:"birthday">> shows all reminders where > > the tiddler is tagged with "birthday" > > <<showReminders leadtime:30 tag:"birthday anniversary" >> shows all > > reminders where the tiddler is tagged with "birthday" and > > "anniversary" > > > you can also use "!" in front of the tag to show all reminders that > > are not tagged with "birthday" > > <<showReminders leadtime:30 tag:"!birthday" >> > > > On Jan 8, 5:38 pm, passingby <[email protected]> wrote: > > > > is there any way to enforce boolean logic to show Reminders? I am > > > planning to tag reminders with tags such as birthday, anniversary, > > > lifeevent, task, family, relatives, friends, office, shopping etc. Is > > > it possible to show reminders using boolean logic like family and > > > birthdays, or family and anniversary or task and office or task and > > > shopping? > > > > Can FET do this? > > > > On Jan 8, 6:15 pm, Måns <[email protected]> wrote: > > > > > Hi passingby > > > > > Try: > > > > +/- 1 year and 100 days in both directions from today <<showReminders > > > > leadtime:-356...356>> > > > > +/- 1 month<<showReminders leadtime:-31...31>> > > > > +/- 1 week<<showReminders leadtime:-7...7>>, > > > > > Cheers Måns Mårtensson > > > > > On 8 Jan., 07:16, passingby <[email protected]> wrote: > > > > > > Plus it would be better if they showup date wise in the > > > > > [[ShowAllBirthdays]] tiddler starting from jan to dec. > > > > > > I just tried to to this: > > > > > <<showReminders tag:"birthday" leadtime:365 limit>> > > > > > > The problem is that this goes from the current day to 365 days ahead > > > > > of today, which actually covers all the birthdays no doubt BUT it does > > > > > not start from January, it starts from today, so that if there was a > > > > > birthday yesterday, it would show up at the end of the list. > > > > > > On Jan 8, 9:59 am, passingby <[email protected]> wrote: > > > > > > > Thank you adamwilson86. I shall try that out. > > > > > > Can you also suggest me a way in which a birthday can show up in a > > > > > > tiddlers just 30 days before and in another tiddler irrespective of > > > > > > the leadtime? I want a tiddler to remind me of birthdays 30 days > > > > > > earlier but in another tiddler I need to see all the birthdays I > > > > > > have > > > > > > collected so far. > > > > > > > On Jan 7, 4:28 pm, adamwilson86 <[email protected]> wrote: > > > > > > > > Hi, I have been using this recently myself so I hope I can > > > > > > > explain it > > > > > > > correctly > > > > > > > > if I have a reminder for my birthday and set a leadtime of 1 e.g. > > > > > > > <<reminder month:8 day:12 leadtime:1 title:"my birthday" >> > > > > > > > > this means it will show up in showReminders 1 day before the > > > > > > > reminder > > > > > > > if I just use > > > > > > > <<showReminders>> > > > > > > > > however if in the showReminders you put "limit" it will override > > > > > > > the > > > > > > > leadtime set in the above reminder > > > > > > > and will show up according to the leadtime set in the > > > > > > > showReminders > > > > > > > e.g. > > > > > > > <<showReminders leadtime:30 limit>> > > > > > > > will show up 30 days before the reminder instead of 1 day before. > > > > > > > > hope this helps > > > > > > > > On Jan 7, 9:22 am, passingby <[email protected]> wrote: > > > > > > > > > The showReminders syntax documentation says: > > > > > > > > > leadtime:NUMBER or leadtime:NUMBER...NUMBER - Use this to > > > > > > > > specify a > > > > > > > > lower and upper bound for reminders that will be shown. If only > > > > > > > > one > > > > > > > > number is specified, then it is treated as the upper bound, and > > > > > > > > zero > > > > > > > > is assumed for the lower bound. These bounds can be negative, > > > > > > > > in order > > > > > > > > to show past due reminders. For example, leadtime:-5...-1 will > > > > > > > > show > > > > > > > > all reminders that matched in the last five days. If reminders > > > > > > > > specify > > > > > > > > a leadtime, then they may show up, even when they don't fit into > > > > > > > > showReminder's leadtime bounds. Use the limit argument to > > > > > > > > showReminders to override this behavior. If the leadtime > > > > > > > > parameter is > > > > > > > > missing, then leadtime:0...14 will be assumed. > > > > > > > > > Can anyone explain with example what limit argument does > > > > > > > > exactly? > > > > > > > > > I am trying to build a personal database of birthdays of my > > > > > > > > friends > > > > > > > > and family. In one tiddler I wish to show up birthdays coming > > > > > > > > in next > > > > > > > > 30 days, but in another I wish to show all the birthdays I have > > > > > > > > in my > > > > > > > > database irrespective of their leadtimes. Can anyone show me > > > > > > > > how to do > > > > > > > > this? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

