I would imagine the human factor associated with adopting a centralized calendar—or for that matter a content management system—becomes more complex the larger the institution gets. On the other hand, the larger institution should have more resources and personnel to throw at the issue–though this is not always the case.
As Web Manager for Pacific University (approximately 2,500 students), my solution for calendaring is an internally-built application that I call CANS (Calendar And News System). As the name implies, it also handles news/articles. It is basically the second time that I’ve written this app. The first time was for Concordia University – Portland, Oregon.
The first CANS was written with Coldfusion and MS SQL on a couple of Microsoft servers; the second with Coldfusion and MySQL in a Linux environment.
The backend is unimportant—I could have written it in [insert coding language here] and [insert flavor of database here] with similar functionality–the core requirement for implementing CANS is a relational database. (Sorry folks, you can’t get away with using an old version of FileMaker.)
What makes the conceptual model worthy of considering is the way that it treats “departments” (functional units of the institution) in relation to “categories” (roughly divided into unique audience groups that would be associated with a specific online resource such as a webpage or email newsletter).
Institutional units are usually quick to latch on to CANS because they see it as a benefit to their unit’s website. Some departments have several child categories associated with a parent category allowing them to get specific with the information they want to present.
This doesn’t make much sense without an example. Take a look at the career center at Pacific. The “Career Development Center” is a top level (parent) category with subcategories (children) of “Job Fairs” and “Spotlight on Success”. The output code calls up the events (a row in the CALENDAR table) or articles (a row in the NEWS table) for a specific category (a row in the CATEGORY table). Linking tables hold things together (i.e. NEWS2CATEGORY). This makes it possible to link multiple categories to a single event so that it will show up on several pages of the website as appropriate.
For the staff/faculty/students that log into the system (integrated LDAP) and add events, they are presented with the master calendar where they must look at the day associated with their event before they can click the “add” button. (This helps reduce redundancy and scheduling conflicts.) They will then see a simple form with some required fields including a multiple select box that asks “Where do you want this to appear?”.
For website visitor, there is no real need to know that any of this is happening. They simply see news and events on that pertain to topic covered by the webpage on which they landed.
The model is inherently expandable. The Concordia version has image upload capabilities and a special interface for athletics to manage their schedule and results with additional fields such as opponent, outcome and final score.
As an application, CANS is far from perfect. (Any software written by a single person—with no less than a degree in English—who is grossly overburdened with other design and development projects can’t help but have a few bugs.) However, it has enabled me to get people across campus, both here and at Concordia, to focus on communicating to their audience(s) with timely and useful information.
Incidentally, CANS does not currently integrate with the Pacific’s scheduling software—though I do plan to explore this someday. I would love to have the functionality of a tool such as R25, but it would add another layer of complexity that would be too much for me to take on at this time.
I would also, if I had the time and personnel, like to integrate the application with a full content management system. Anyone who wants to work with me on the model is free to drop me a line.
I used to do web work in the higher ed field. I’m still in web, but not for a university. I’m wondering about calendaring software and allowing for registrations. For instance, if you post an event such as a conference or workshop and want to accept registrations, what’s out there that can handle this? I had one built for Admissions at York University, so that prospective students could view and sign up for tours and other on campus events.
In the past, I’ve built custom apps for event registration. A decent example can be seen at OregonIAEI.org. The think to remember is that each registration must exist as a link between a user and an event. Built this way, it is possible to archive past registrations and show users a registration history. If you don’t feel comfortable building a custom solution, there are a number of open source projects that have event registration modules that tie into a CMS. For instance, Drupal has an Event Module that ties into either RSVP or SignUp modules to allow site users to “register.” (I’ve not used Drupal in production, but I have heard good things about it from some who have.)
Thanks for this. I’ll look into Drupal a bit more. I’m no programmer, so this entails asking the techies for help translating. What I’m finding is that the solution I had built at my previous employer responds to a niche I’m not finding a lot of competition in. The backend is user friendly and allows for the admin of events, etc. to be done completely by staff who manage the events themselves… no tech skills required whatsoever, and also to track registrations, run off registration lists, cap registration numbers or not, add events without displaying in the calendar (if you have a very small, private event for specific guests only), you can use the tool but not have it display to the general public, or you can create an event, link the calendar to another Web site, and then that site links back directly to the registration form. I have yet to see a tool that offers the same functionality.