** Perhaps the script does not recognize it as a valid URL? **
Right.
** Any thoughts on why this might work for one but not for the other? **
Because the script doesn't look for such code to make them links. If you look in the HTML.pm file in the calendarscript/lib directory in the sub autoLink { function and change the following line:
$text =~ s#(^|\s)(http://\S*)#$1<A HREF="$2" $target>$2</A>#gs;
and change it to;
$text =~ s#(^|\s)(https?://\S*)#$1<A HREF="$2" $target>$2</A>#gs;
It should then link https://... URLs too.
Dan O.
[This message has been edited by DanO (edited June 30, 2004).]