The only time a user should get to the 'Select Calendar' screen is if they were logging in using the administration section and not from the plain calendar.
If you wanted the administration section to skip the 'Select Calendar' screen, you'd have to modify the form fields on the administration's login.html template (there's a separate login.html template for logging in from the calendar BTW).
First you need to change the line:
<INPUT TYPE="hidden" NAME="template" VALUE="select_calendar.html">
to
<INPUT TYPE="hidden" NAME="template" VALUE="main.html">
Then you'd need to add another hidden form field:
<INPUT TYPE="hidden" NAME="calendar" VALUE="default">
so the administration script would know which calendar was being logged into.
Dan O.
[This message has been edited by DanO (edited January 17, 2004).]