** I would like to be able to automatically add either the Users name... in the calendar itself, and the details page as well **
That is already automatically stored in the Events database in the "author_name" field. To have it display on the 'Event Details' page, simply go to:
Calendar Administration : Customize Event Fields
find that field and mark it "Display in details: (o) Yes"
To get it to display in the calendar grids, modify the default.html template file and add the following tag where you want the user name to display (likely by a <%= EVENT FIELD(title) %> tag).
<%= EVENT FIELD(author_name) %>
Dan O.
------------------