For a couple of days I've been working on displaying a short list of calendar script events on my index.php page. I finally got the syntax worked out to call the ssi script from a php page; (that was a real head banger). Now I just need to tweak the output from the ssi.html a little.
The event list is going into a 150 pixel wide column, so I don't have a lot of space. The default output places five spacea "a tab" followed by a bullet in front of the event title. I'd to get rid of tab, but keep the bullet. I also removed the code for the time stamp.
This has to be really simple, but I don't know perl. Something in the below middle two lines of code from the calendar script 3.2 ssi.html file generates a tab in front of the bullet. Can anyone tell what to change to remove the five space tab, but keep the bullet?
<%FOREACH EVENT%>
<% if ($_SHOW_GRID_EVENT_BULLET) {%>
<%}%>
<%= $EVENT->{'details'}->{'title'} %><BR>
What I actually want to accomplish is to list the next five events regardless of which month the event falls in. The included ssi.html file allows me to successfully list 30 days of events and this will will work for now. I know there is another template to list x-number of events, but it only works within the current month. Has anyone else solved this problem?
Thanks
/Roger