Skip to main content

What does taxonomy mean to you?

Next time you are speaking about taxonomy in relation to SharePoint make sure you clarify what is meant by that. Taxonomy can mean many different things depending on the context of a conversation. When I am referring to taxonomy in relation to SharePoint this is how I break it down.

Definition of Taxonomy:

Division into ordered groups or categories

Or

The science, laws, or principles of classification; systematics.

http://www.thefreedictionary.com/taxonomy

  • Taxonomic Sections: This means to get a clear definition of each taxonomic section and the features/purpose of that section. I use the governance model which can be found in the sample governance plan at the Microsoft SharePoint Governance Resource Center for SharePoint Server 2007: http://technet.microsoft.com/en-us/office/sharepointserver/bb507202.aspx





  • Navigation: Define how site users will navigate through the taxonomic sections and the sites within each section.

    Often there is a gap between the taxonomic sections for the divisional portals and department and team sites. I typically recommend that you add a links web part to the divisional portals wireframe which points to related department sites and a directory which can be found on the corporate portal which helps users navigate team sites and project sites.

  • Wire Frames: Consistent labeling and structuring of items within a site and incorporate it with the wireframe, templates and site definitions.

    For example you may define in your wireframe that each site will have announcements in the upper right hand corner for the project team sites taxonomic section. You will also want to ensure that is labeled as Announcements and not something like Shout Out. This provides consistency and helps your end users find information.

  • Content Types & Meta Data: This process should include categorization of data and association of meta-data with that content. It should also define if the meta data is required. This can enhance your search capabilities and allow you to roll up information from different sites into a central location.

    A tool for use in taxonomy tagging can be found in the Community Kit for SharePoint at: http://www.codeplex.com/CKS/Release/ProjectReleases.aspx?ReleaseId=2830

Comments

Post a Comment

Popular posts from this blog

How to get SPUser or SPGroup from Person or Group field

You have person or group field in SharePoint list and you want to programmatically get the user or person. The below code to gets SPUser from User or Group field in the list when multiple choice and Groups are not allowed in the field: //get SPUser SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValue userFieldValue = (SPFieldUserValue)userField.GetFieldValue(item["Users"].ToString()); SPUser user = userFieldValue.User; This part of code would help you to get SPUser when multiple choice is allowed and groups are not allowed: //Multiple choices are allowed SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValueCollection userFieldValueCollection = (SPFieldUserValueCollection)userField.GetFieldValue(item["Users"].ToString()); foreach (SPFieldUserValue userFieldValue in userFieldValueCollection) {     Console.WriteLine("     " + userFieldValue.User.LoginName); } And when group

SharePoint publishing page scheduling

In SharePoint 2010 publishing enabled team site collection is not showing schedule button in publish ribbon. Solution: Here is how to enable it  though the UI: Locate the SharePoint Server Web site on which you want to enable content approval and item scheduling. Click  Site Actions , click  Site Settings , and then click  Modify Pages Library Settings . Under  General Settings , click  Versioning Settings . Click  Yes  next to  Content Approval , and then click  OK . Click  Manage item scheduling .   Click to enable the  Enable scheduling of items in this list  check box, and then click  OK .

Changing Content Type Hub URL

Change the Hub URL through powershell by using: Set-SPMetadataServiceApplication -Identity " " -HubURI " " For Ex: Set-SPMetadataServiceApplication -Identity "Managed Metadata Service" -HubURI "http://contenttype.Domain.Com" When you try to do this you get this rather scary message: This is SharePoint telling you that this is a major thing so be careful! Essentially all your content types that you have published out will be removed if they can, and you have to republish all of your content types out again which can cause some issue.