Author: webservices
-
Statistics
—
by
Sometimes in order to move ahead, we must look back to help us put situations in perspective and give us motivation to continue what we do. When I sat down to take a look at our website statistics, I was pleasantly surprised to see a sizable increase in what we served in 2005. Gustavus experienced…
-
Section Highlighting
—
by
To improve the usability of the Gustavus website, we added a small, but incredibly handy feature to pages within the Gustavus template that fall under one of the sections found within the global navigation (the colored bar of links at the top of each page). Sections such as the college calendar, athletics, or academics will…
-
Photo Contest Voting Rescheduled
—
by
The Campus Community Photography Contest has been officially rescheduled for Monday, February 27 through Friday, March 3 in Linner Lounge. To vote, you will need your Gustavus ID number.
-
Athletics Redesign
—
by
Due to technical differences within the underlying architecture of the athletics website, we were unable to release the redesign around Christmas alongside of the rest of our redesign Christmas. However, we have been hard at work on bringing the aesthetic and functional changes of the template redesign to the athletics website. As of yesterday, the…
-
XHTMLParagraphFormat Version 2
—
by
UPDATE (Oct 23, 2006): This version of XHTMLParagraphFormat() is out of date. If you wish, you should check out the latest version. Unfortunately, I found a major error in the previously posted XHTMLParagraphFormat() function that caused it to not work properly under many circumstances. However, after doing some more research and testing, I banged out…
-
Photo Contest Voting Postponed
—
by
Update (Feb 5): Due to a scheduling error, voting for the contest has been postponed until a later date. Please stay tuned for updates. This year’s contest was a success—we received over 150 great photographs in the three categories. Finalist photographs for the Campus Community Photography Contest have been chosen and will be displayed in…
-
XHTMLParagraphFormat()
—
by
UPDATE (Oct 23, 2006): This version of XHTMLParagraphFormat() is out of date. If you wish, you should check out the latest version. While reworking the athletics site, I realized that it was time to improve our less than perfect method for displaying news stories as HTML. The first obvious solution for formatting a chunk of…
-
Gustavus Template Color Themes
—
by
The new Gustavus Template provides content contributors the ability to further customize the look and feel of their pages by using one of our four pre-defined color themes. If you would like to see exactly what these different themes are, check out our new template demo section. While the default for all pages is the…
-
Giving form updated
—
by
We’ve spent the last few months perfecting a new online giving system that ties into a separate new system we will be increasingly using to process credit cards. This will save some people here a lot of time, which is always a good thing. Additionally, while we were switching to this new system, we redesigned…
-
Regular Expression to find HTML links with title attributes
—
by
I recently needed to write a regular expression to find HTML and XHTML links with title attributes (<a href=”http://www.gustavus.edu” title=”Visit the Gustavus Adolphus College homepage”>Gustavus</a>). Here it is: <a[[:print:]]*title=(‘|””)?(.*?(?=1))1?[[:print:]]*>([[:print:]]*)</a> Note that the [[:print:]] parts are applicable to ColdFusion regular expressions and would have to be changed to something else if you aren’t using ColdFusion. Additionally,…