I am trying to figure out if CS will do what I need... and so far so good!
I am stumped on an easy one (I think)... I set up a template that gives me a monthly list view with bullets and dates and hyperlinks to events. It works just as I'd hoped. I invoke it with a "...calendar.pl?template=main.htm&duration=31d" call.
However, I created a couple of customized fields, "Category" and "Group" with the hopes of creating lists on different pages that are subsets of the one that's working now. I'd like to simulate an SQL statement like:
select * from calendar where duration = "31d" AND category = "Music"
I invoke the same "...calendar.pl?template=music.htm&duration=31d" type call, and in the music.htm file, my line looks like:
&getEvents( {'duration'=>$in{duration} , 'Group'=>'Music' } );
And it still pulls out all the events during that month, not jsut the Music ones. What am I doing wrong?