Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Calendar Extension
Just a thought...
What if in a user's account settings they used label/value pairs with labels that started with "cal:" or something like that to populate a calendar with significant dates... Like I said, just a thought :)
0
This discussion has been closed.
Comments
cal: 2005-07-31 // Finish calendar extension
All the extension would need to do is go through the label/value pairs and pull out any prefixed with `cal:` for special processing (and also make sure they aren't processed normally). It's then a pretty simple job to build a teeny table which holds all the calendar info with events marked up on them (esp since we'll use CSS to purtify it).
Date format is a tricky thing to solve, since you Yanks and us Brits do it in different ways. It would be simpler all round if we ignored dd/mm/yy and mm/dd/yy style dates, and stuck to yy-mm-dd, or dd month yy (eg 21 july 05). It would also be good if it could accept recurring events by omitting the year, or the year and month (e.g. cal: 31st Dec // Party!, or cal: 3rd // Monthly team meeting).
That's my bit of brainstorming done, thoughts welcome
I presume that at some point the system has to seperate out the label/value pairs, and so you should (hopefully) be able to intervene at that point, and grab the relevant bits.
So yeah, own table is probably a better idea. Though you could use a cal: prefix and have it parse them out when its actually writing into the database - i,e. you make a label/pair which is called cal:birthday = 15/01/1988 and then instead of it xml'ing it up it just puts it into the seperate table. Shrug.