Skip to the content Back to Top

At Andornot we are often asked to speak to classes of students at various university library and archives programs.  Last week I was invited to UBC to give a presentation on heritage convergence and GLAM projects to an Archives for Librarians class.  Many GLAM (Galleries, Libraries, Archives and Museums) initiatives are focused on large, complex collaborations but I wanted to share our successes with many smaller scale implementations.

These projects generally result in a new or updated website that allows users to perform a Google like single search across a mixture of content from various sources, either related to a particular topic or a particular location.  Some examples of these integrated searches include:
Local history resources focus:

Topic based resources focus:

All too often we find that clients are reluctant to explore possibilities for fear that it will be too expensive or too time consuming.  However we can guide you through the process and for many projects, can get a new search interface up and running for you in just a few days.  Data is exported from whatever local systems you use for administrative control of your records so there is minimal impact on your normal business processes or workflow.  (A project usually spans 2 to 3 months in total, to allow time for discussions, design, and a couple of rounds of feedback.)

We always remind clients that “It’s not about you” and the need to design a site that is geared to the search competencies and requirements of their end users.  This may mean agreeing on plain language terminology, minimizing acronyms and technical terms.

Feedback indicates that these multiple content sites have proved very popular.  Users love the single search interface and the integrated results lists.  We’ve heard that even staff who thought they knew their collections have been surprised to find documents they did not realize existed as they were in an unexpected database.  The modern look and functionality of these sites have helped boost the image of the organizations, and provided opportunities for enhanced community involvement through the social sharing, feedback and commenting features.

Take a look through some of these sites and then contact us to see how we can help you!

As the air gets crisper and precipitation drives us indoors, Fall is a great time to reflect and to find energy for new projects and adventures.

Have you thought about the web presence your museum, archive or library collection has? Are you providing users with modern tools to help them research your records and share them with others. Here are 10 ideas to read on a blustery Fall day, and that could add some sparkle to your website and online collections.

  1. Upgrade to a more modern search engine, such as our Andornot Discovery Interface, with features users expect when searching. For example, see how we helped Forestry Innovation Investment with their ThinkWood Research Library.
  2. Add ever more historic content to attract users interested in local history and genealogy, like the Arnprior & McNab/Braeside Archives did with back issues of the Arnprior Chronicle newspaper.
  3. Add a map interface so users can browse geographically, like the one we built for the Ontario Jewish Archives.
  4. Have lots of documents? Why not index the full text of them, then when a user searches for keywords, take them directly to the most relevant page in the PDF. No more downloading and repeating the search within the PDF to find the right page. Learn more.
  5. Get out in front of Community Engagement by adding the Disqus commenting system to your search results, so users can more easily discuss items in your collection, help identify people and places, and provide feedback to you.
  6. Make sure your website or search engine is mobile friendly. Google and other search engines now place mobile-friendly results higher in their rankings. And make sure you have a sitemap and permalinks so your collection can be easily indexed by Google and Bing.
  7. Planning to digitize large works, such as maps, paintings, or architectural drawings? Will users be able to see the fine detail in the resulting images on your website or in your search engine? Our Image Zoomer can help, by allowing users to easily zoom in on specific areas of a large image, without having to download that very large file.
  8. Is your website looking dated? Maybe it has the digital equivalent of large shoulder pads or flared pants? Time for a refresh? Let us help with a Content Management System and new graphic design, like we did recently for PRCVI (the BC Provincial Resource Centre for the Visually Impaired).
  9. Can't attract the attention of your own IT staff to help with your website or software? Why not have Andornot host it?
  10. On a tight budget? Consider our low-cost Digital History Hub platform for putting collections online and making virtual exhibits.

Contact us to discuss any of these ideas, and ones of your own.

The Provincial Resource Centre for the Visually Impaired (PRCVI) is a long-time Andornot client and has just upgraded their website to a new one powered by the popular Umbraco Content Management System.

https://www.prcvi.org

Hosted by Andonot, this new website was specifically designed to meet accessibility guidelines and provide a positive experience for visually impaired users. The primary function of PRCVI is to provide British Columbia School Districts and Group I or II Independent Schools with alternate formats of provincially recommended learning resources and with specialized equipment to support the educational needs of students with visual impairments.

Rather than come up with an entire design from scratch for the new site, PRCVI chose a theme from uSkinned.net, a provider of designs and starter kits for Umbraco. This package provided both a visual design and all the pre-built components - HTML, CSS, JS, Templates, Document Types, etc. - that an Umbraco site needs. It was easy to install and allowed PRCVI staff to immediately focus on migrating content to the new site.

PRCVI’s website includes two instances of our Andornot Discovery Interface, for searching the PRCVI Library Catalogue, and a database of Vision Teachers located throughout British Columbia. Both of these were upgraded to match the template of the main site, for a seamless transition. Users can search the entire new website as well as the library catalogue separately, from search boxes in the site header.

Andornot hosts Umbraco-powered sites for a number of clients, and continues to recommend it as a solid Content Management System for any website. Contact us to discuss your needs for self-managed online content.

Andornot uses the Twitter Bootstrap framework for almost all our web application development these days. This framework saves considerable development time, with so much pre-built, and allows a single site to adapt to the viewing device, meaning a search engine such as the Andornot Discovery Interface, works just as well on a tablet or phone as in a desktop browser.

One of the "features" of this framework is the display of URLs in print views. By default, the print stylesheet appends the URL of a hyperlink to the hyperlink text in print view. For example, a link to the Andornot website with the text “Learn more about Andornot” would appear in a printout as

Learn more about Andornot. http://www.andornot.com

This is a very helpful automatic feature, as without it, you’d have a print view without the URLs needed to get to the sites mentioned. It's great when the URLs are short, but when they are long, such as a pre-created search for a set of results, or anything with lots of parameters in it, they tend to make for a print view cluttered with not very useful HTML.

For example, a link whose text is “View information about Fish and Fisheries” might have a URL such as http://www.someserver.org/Search/Results?lookfor=Fishes+OR+Fisheries+OR+Fishing+OR+%22Juvenile+fish%22+OR+%22Resident+fish%22+
OR+%22Sport+fish%22+OR+Sportfish+OR+Eulachon+OR+Anadromous+OR+Trout+
OR+Salmon+OR+Coho+OR+Chinook+OR+Sockeye+OR+Fishway*&type=AllFields
&limit=20&sort=relevance

This is too long a URL for anyone to retype, so it’s not useful to have in the print view. It just makes the plain text hard to read.

(As an aside, see our recent blog post about URL shortening for tips on using short URLs in blog posts, Tweets, Facebook posts, etc.).

A very simple adjustment you can make to Bootstrap is to add this bit of CSS to your stylesheet, overriding the Bootstrap default:

@media print {

  a[href]:after {

    content: none;

  }

}

This will suppress the display of URLs after links in all cases. You might want to be more sophisticated and only suppress them for certain types of links, ones you know will be long, while leaving the behaviour as-is for shorter ones. Easily done by adding a class to certain links and adjusting the above style addition to reflect that class.

Contact Andornot for assistance with this and any similar web development tweaks.

When we are working with clients to design new search interfaces, we always stress the importance of defining who will be using the system, and then trying to meet the specific needs and expectations of these end users.

It’s Not About You
We often have to remind clients that “It’s not about you!” Archivists and librarians in particular often ask us for search pages with lots of options as they personally are used to constructing complex queries. However the trend with most search interfaces is to keep these simple with a single Google style search box. 

We suggest that you think about other websites your end users search, whether that be a university or public library catalog, or Amazon or other shopping sites.  Nearly all of these now use a discovery style interface that is geared to letting users put words or terms into a search box, and then narrowing their searches down from the search results page through facets or filters.

Like most other search interfaces, we do usually include some Advanced Search options but the website usage statistics we’ve collected for our hosted client sites over the years indicate that most are rarely accessed.  Pre-selecting search limiters removes the possibility of serendipitous discovery of unexpected resources, and the expectation now is that the results will be displayed by relevance so that the closest matches appear first.  We therefore discourage clients from specifying a traditional title sort, as if the user is looking for a known item and searches on words in the title, it will appear at or near the top of a relevance ranked display.

Use Cases and Personas
One of the ways we suggest you try to relate to your end user needs is through the creation of personas or user profiles.   For each of these personas we then suggest you think about factors that might impact their searching behaviour.   First and foremost - what are they looking for and why?  What will they want to do next when they’ve found something of interest?   So for a publicly accessible archives site, you might create personas for the following types of users.

billionphotos-1207379

Carol is looking for pictures of her grandparents and the house where they lived

billionphotos-1207383

Lucy wants a picture of an old farm implement for a school project

billionphotos-1207381

George is compiling a history of a local church.

billionphotos-949934

John works at City Hall & wants to find maps or plans of an area slated for redevelopment.

billionphotos-933914

Kevin is interested in a local railway line that runs through the area.

billionphotos-949941

Daphne is writing her thesis on a local political movement.

Make the process a fun exercise by incorporating graphical representations using images from a stock photo site such as billionphotos.com– search for avatar to find these examples, or contact us to help you. We find images make it easier to visualize how a person might behave, rather than just assigning an abstract name. The usability.govwebsite has an excellent overview article.

Avoid Jargon and Acronyms
You will also need to consider your personas familiarity with the subject area. Again “It’s not about you”, unless you are designing for a very limited audience, jargon and acronyms should be avoided.  Most government websites have guidelines on writing in “plain language” to convey information easily and unambiguously.  However we still see archival sites that include references to the GMD or to the General Material Designation.  Think about walking up to someone in the street and asking them if they understand what this term means! 

Spelling Matters
Spelling is a huge issue.  Too many times we’ve looked through search logs and seen searches that result in zero hits as the search terms were spelt incorrectly.  Think for example about medical terms and how to cater to the public that might be looking for Lou Gehrig’s disease.  Lots of potential to spell this wrong, but worse, you might have indexed relevant items under the medical term of Amyotrophic Lateral Sclerosis or the abbreviation ALS or A.L.S.!   Many modern search interfaces now feature Did You Mean spell checking, but maybe you also need to seed the indexes with lists of synonyms or common misspellings of proper names found in the collection. 

It’s all too easy to make assumptions about your end users abilities and their knowledge of web searching techniques. Let us guide you through the process of designing your new search interface based on our knowledge of best practices. We’ll try to tactfully remind you that “it’s not about you”! Contact us to discuss the possibilities today.

Categories

Let Us Help You!

We're Librarians - We Love to Help People