<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <title></title>
</head>
<body>
cool! <br>
It's on the site now: <a class="moz-txt-link-freetext" href="http://athens.pm.org/index.prl">http://athens.pm.org/index.prl</a>, but I can't make it
the default page. Apache is probably set up to ignore .htaccess :-(<br>
I'll make a request for that with the webmaster.<br>
<br>
tnx<br>
Mark<br>
<br>
Alexander Karelas wrote:<br>
<blockquote type="cite" cite="mid20021022095143.GA22344@karjala.org">
  <blockquote type="cite">
    <pre wrap="">I had a good time yesterday, I hope the same counts for you.<br>We even made some decisions:<br><br>- from now on we will meet each 2nd Wednesday of the month, so the next <br>meeting will be on 13 November. Time and location will be announced on <br>the list. If there's anyone that wants to write a piece of code that <br>calculates the date of the next meeting, please do, I'll include it in <br>the frontpage.<br></pre>
  </blockquote>
  <pre wrap=""><!----><br>#!/usr/bin/perl<br><br><br>use Date::Calc qw( Nth_Weekday_of_Month_Year );<br><br><br><br>($date, $month, $year) = (localtime(time))[3,4,5];<br><br>$month++;<br><br>$year += 1900;<br><br><br><br>if ($date &lt;= (Nth_Weekday_of_Month_Year($year,$month,3,2))[2]) {<br><br>        print ((Nth_Weekday_of_Month_Year($year,$month,3,2))[2]."/$month/$year")    # "3"=Wednesday, "2"=2nd<br><br>} else {<br><br>        $month++;<br><br>        if ($month==13) {<br><br>                $month=1;<br><br>                $year++;<br><br>        }<br><br>        print ((Nth_Weekday_of_Month_Year($year,$month,3,2))[2]."/$month/$year")<br><br>}<br>_______________________________________________<br>Athens-pm mailing list<br><a class="moz-txt-link-abbreviated" href="mailto:Athens-pm@mail.pm.org">Athens-pm@mail.pm.org</a><br><a class="moz-txt-link-freetext" href="http://mail.pm.org/mailman/listinfo/athens-pm">http://mail.pm.org/mailman/listinfo/athens-pm</a><br><br><br></pre>
</blockquote>
<br>
<br>
</body>
</html>