Skip to content

Instantly share code, notes, and snippets.

@quantumJLBass
Last active December 4, 2015 21:16
Show Gist options
  • Save quantumJLBass/de23c852816f931d7ab9 to your computer and use it in GitHub Desktop.
Save quantumJLBass/de23c852816f931d7ab9 to your computer and use it in GitHub Desktop.
Dev version (note product is repo.wsu.edu/jtrack/1/bootstrap/bootstrap.min.js and also use Google's analytics debugger to confirm function or contact **jeremy.bass at wsu.edu** for help ) ~~~ defaults listed here https://github.com/washingtonstateuniversity/jTrack/blob/dev/src/bootstrap/src/bootstrap.js#L84 ~~~

NOTE these are the accounts that can be used for the wsu_analytics.app.ga_code property

Please match the system up and don't use them in the wsu_analytics.site.ga_code or wsu_analytics.global.ga_code name spaces

  1. Dreamweaver ( UA-69906812-10 )
  2. Drupal ( UA-69906812-5 )
  3. Home Grown ( UA-69906812-4 ) This is used when you have a custom applacation server web content
  4. Joomla ( UA-69906812-6 )
  5. Magento ( UA-69906812-3 )
  6. Other ( UA-69906812-9 ) This is used for anything that doesn't match any of the other Apps listed here
  7. Sitefinity ( UA-69906812-8 )
  8. Umbraco ( UA-69906812-1 )
  9. UP CMS ( UA-69906812-2 )
  10. WordPress ( UA-69906812-7 ) if you are on the WSUWP Platform you wouldn't use this or set anyting on the code side of things
  11. Static ( UA-69906812-11 ) If you have no app controlling the content output, meaning it is a static site please use this
<script type='text/javascript'>
/* <![CDATA[ */
var wsu_analytics = {
"wsuglobal":{
"ga_code":"UA-55791317-1", // really you don't need this, but in a real off case this is where you would change for a global data bin
// look to https://github.com/washingtonstateuniversity/WSUWP-Plugin-Analytics/blob/master/wsu-analytics.php#L230
"campus":"none", // switch to `all` if there is location on more than one campus and this url represents them all
"college":"none",
"unit_type":"none",
"unit":"none",
"subunit":"none",
},
"app":{
"ga_code":"UA-XXXXXXXX-B", // NOT YOUR SITE LEVEL GA CODE, use one of [Home Grown UA-69906812-4, Umbraco UA-69906812-1, UPCMS UA-69906812-2;]
"is_editor":"false", // this would be set by the server side or some js logic, and always defaults to `false`
"events":[] // extend here or you can load your own events else where and do a $.merge(wsu_analytics.app.events,YOUR_CUSTOM_EVENTS_ARRAY)
},
"site":{
"ga_code":"UA-XXXXXXXX-A", // YOUR SITE LEVEL GA CODE replace with what yours would be for the url it's under
"events":[]// extend here or you can load your own events else where and do a $.merge(wsu_analytics.site.events,YOUR_CUSTOM_EVENTS_ARRAY)
}
};
/* ]]> */
</script>
<script id="tracker_agent" src="https://repo.wsu.edu/jtrack/develop/bootstrap/bootstrap.min.js"></script>
<script type='text/javascript'>
/* <![CDATA[ */
// this is highly not suggested, as you are using `none` for the global data collection but...
// this is what it looks like on a bare min set up. The app is false by default and we have
// the global doing a very generic set up, but again you are doing yourself a dis-service by doing this
var wsu_analytics = {
"site":{
"ga_code":"UA-XXXXXXXX-X"
}
};
/* ]]> */
</script>
<script id="tracker_agent" src="https://repo.wsu.edu/jtrack/develop/bootstrap/bootstrap.min.js"></script>
<script type='text/javascript'>
/* <![CDATA[ */
// The UPCMS uses widgets to handle html blocks, and so we need to use some logic
// to see if the user activity is from the editor or not to help get better numbers.
// The goal is that we want to only set "true" (as a string) for `is_editor` property of
// the `wsu_analytics.app` object so we override the default value of "false" and
// get better numbers for the site. For more information contact web.support@wsu.edu or jeremy.bass@wsu.edu
var wsu_analytics = {
"wsuglobal":{
"campus":"pullman",
"college":"murrow"
},
"app":{
"ga_code":"UA-69906812-2",
"is_editor": window.location.href.indexOf("edit.castle") > 0 ? "true" : "false" // note this is a good way to note is the user on the page is an editor. In the case of the UPCMS we can look to the url, from wordpress we set this up from the server side
},
"site":{
"ga_code":"UA-48938496-1"
}
};
/* ]]> */
</script>
<script id="tracker_agent" src="https://repo.wsu.edu/jtrack/develop/bootstrap/bootstrap.min.js"></script>

Taxonomy

This is a list of the name and values for the units by unit type.

NAME ( human readable ) VALUE ( to store in databases or use in code ) Historical names, Common names, Acronyms ( CSV initially and may be used to look up the value )

For the object properties, you will use the value.

      "unit_type":"VALUE", 
      "unit":"VALUE",
      "subunit":"VALUE",

Replace the VALUE as needed from the list below. Search your unit name and or parent name for the correct VALUE. NOTE: the unit_type is also lowercase as noted below



For example if you needed to use Academic Enrichment you would set from

Center

( center )

Academic Enrichment academic-enrichment  

and produce this

      "unit_type":"center", 
      "unit":"academic-enrichment"

What is subunit for?

If you have a parent unit, unit is used for their value, unit_type is for your value, and subunit is also for your value now.


# List ## Center ### ( center )
	<tr>
			<td>Academic Enrichment</td>
			<td><strong>academic-enrichment</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Academic Success and Career</td>
			<td><strong>academic-success-and-career</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Access</td>
			<td><strong>access</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Advanced Multiphase Materials Processing</td>
			<td><strong>advanced-multiphase-materials-processing</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Ag Research</td>
			<td><strong>ag-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Analytic Catalysis</td>
			<td><strong>analytic-catalysis</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Animal Health Research</td>
			<td><strong>animal-health-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Animal Sciences</td>
			<td><strong>animal-sciences</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Animal Well Being </td>
			<td><strong>animal-well-being</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Anthropology Museum</td>
			<td><strong>anthropology-museum</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Applied Sciences Laboratory</td>
			<td><strong>applied-sciences-laboratory</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Area Health Education </td>
			<td><strong>area-health-education</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Asian American and Pacific Islander Student</td>
			<td><strong>asian-american-and-pacific-islander-student</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Asphalt Technology - Washington </td>
			<td><strong>asphalt-technology-washington</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Bear Research</td>
			<td><strong>bear-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Behavioral Business Research</td>
			<td><strong>behavioral-business-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Bioanalytical</td>
			<td><strong>bioanalytical</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Biomolecular X-Ray Crystallography</td>
			<td><strong>biomolecular-x-ray-crystallography</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Bioplastics and Biocomposites</td>
			<td><strong>bioplastics-and-biocomposites</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Bridge the Digital Divide</td>
			<td><strong>bridge-the-digital-divide</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Carson Center for Student Success</td>
			<td><strong>carson-center-for-student-success</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Cashier and Cougar</td>
			<td><strong>cashier-and-cougar</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Chelan County Learning</td>
			<td><strong>chelan-county-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Chicana and Latino Student</td>
			<td><strong>chicana-and-latino-student</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Childrens </td>
			<td><strong>childrens</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Chronic Illness Research</td>
			<td><strong>chronic-illness-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Composite Materials Engineering</td>
			<td><strong>composite-materials-engineering</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Cougar Card</td>
			<td><strong>cougar-card</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Counseling Services and Access</td>
			<td><strong>counseling-services-and-access</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Cowlitz County Learning</td>
			<td><strong>cowlitz-county-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Design of Analog Digital Integrated Circuits</td>
			<td><strong>design-of-analog-digital-integrated-circuits</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Digital Scholarship and Curation</td>
			<td><strong>digital-scholarship-and-curation</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Drug Information Center</td>
			<td><strong>drug-information-center</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Endangered Species</td>
			<td><strong>endangered-species</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Energy Systems Innovation</td>
			<td><strong>energy-systems-innovation</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Entrepreneurial Studies</td>
			<td><strong>entrepreneurial-studies</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Environmental  Sediment and Aquatic Research</td>
			<td><strong>environmental-sediment-and-aquatic-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Environmental Research Education and Outreach</td>
			<td><strong>environmental-research-education-and-outreach</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Food Science and Clark Hall Business</td>
			<td><strong>food-science-and-clark-hall-business</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Franceschi Microscopy and Image</td>
			<td><strong>franceschi-microscopy-and-image</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Fraternity and Sorority Life</td>
			<td><strong>fraternity-and-sorority-life</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Gender Identity Expression and Sexual Orientation Resource</td>
			<td><strong>gender-identity-expression-and-sexual-orientation-resource</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Geoanalytical</td>
			<td><strong>geoanalytical</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Government Studies and Services</td>
			<td><strong>government-studies-and-services</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Graduate and Professional Writing</td>
			<td><strong>graduate-and-professional-writing</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Grays Harbor Learning</td>
			<td><strong>grays-harbor-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Greenhouse</td>
			<td><strong>greenhouse</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Grizzly</td>
			<td><strong>grizzly</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Health Professions Student </td>
			<td><strong>health-professions-student</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Humanities Research </td>
			<td><strong>humanities-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Impact </td>
			<td><strong>impact</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Integrated Biotechnology</td>
			<td><strong>integrated-biotechnology</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Intensive American Language </td>
			<td><strong>intensive-american-language</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Intercommunal Conflict</td>
			<td><strong>intercommunal-conflict</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>International Health Services Research and Policy</td>
			<td><strong>international-health-services-research-and-policy</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Irrigated Agriculture Research and Extension </td>
			<td><strong>irrigated-agriculture-research-and-extension</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Klickitat Learning </td>
			<td><strong>klickitat-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Language Learning</td>
			<td><strong>language-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Large Carnivore</td>
			<td><strong>large-carnivore</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Learning and Performance Research</td>
			<td><strong>learning-and-performance-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Marriott Foundation Hospitality Teaching</td>
			<td><strong>marriott-foundation-hospitality-teaching</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Mass Spectrometry </td>
			<td><strong>mass-spectrometry</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Materials Research</td>
			<td><strong>materials-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Mathematics Learning</td>
			<td><strong>mathematics-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Media and Health Promotion Murrow</td>
			<td><strong>media-and-health-promotion-murrow</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Mestizo and Indigenous Research Engagement</td>
			<td><strong>mestizo-and-indigenous-research-engagement</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Microscopy</td>
			<td><strong>microscopy</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Monoclonal Antibody Center</td>
			<td><strong>monoclonal-antibody-center</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Mount Vernon Research</td>
			<td><strong>mount-vernon-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Multimedia for Virtual Education</td>
			<td><strong>multimedia-for-virtual-education</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Non-Thermal Processing of Food</td>
			<td><strong>non-thermal-processing-of-food</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Northwest Anthropology</td>
			<td><strong>northwest-anthropology</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Nuclear Magnetic Resonance </td>
			<td><strong>nuclear-magnetic-resonance</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Nuclear Radiation</td>
			<td><strong>nuclear-radiation</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Planetarium</td>
			<td><strong>planetarium</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Plant Growth Chamber</td>
			<td><strong>plant-growth-chamber</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Plateau American Indian Studies</td>
			<td><strong>plateau-american-indian-studies</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Precision and Agricultural and Automated Systems</td>
			<td><strong>precision-and-agricultural-and-automated-systems</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Pre-Law Student</td>
			<td><strong>pre-law-student</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Psychology Clinic</td>
			<td><strong>psychology-clinic</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Puyallup Research and Extension </td>
			<td><strong>puyallup-research-and-extension</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Real Estate Research</td>
			<td><strong>real-estate-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Reproductive Biology </td>
			<td><strong>reproductive-biology</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Roger C Larson Conference Camp</td>
			<td><strong>roger-c-larson-conference-camp</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Salishan Learning </td>
			<td><strong>salishan-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Skagit County Learning </td>
			<td><strong>skagit-county-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Sleep and Performance Research </td>
			<td><strong>sleep-and-performance-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Smart Environments Research</td>
			<td><strong>smart-environments-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Smoot Hill</td>
			<td><strong>smoot-hill</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Social and Environmental Justice</td>
			<td><strong>social-and-environmental-justice</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Stable Isotope</td>
			<td><strong>stable-isotope</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Statistical Education and Research</td>
			<td><strong>statistical-education-and-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Steffen</td>
			<td><strong>steffen</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Stevens County Learning </td>
			<td><strong>stevens-county-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Student Advising and Learning </td>
			<td><strong>student-advising-and-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Student Diversity</td>
			<td><strong>student-diversity</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Student Employment </td>
			<td><strong>student-employment</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Student Involvement </td>
			<td><strong>student-involvement</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Student Veterans</td>
			<td><strong>student-veterans</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Transformational Learning and Leadership</td>
			<td><strong>transformational-learning-and-leadership</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Translational Addiction Research</td>
			<td><strong>translational-addiction-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Tree Fruit Research and Extension</td>
			<td><strong>tree-fruit-research-and-extension</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>University Recreation</td>
			<td><strong>university-recreation</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>USDA Natural Resources Conservation Service Plant Materials </td>
			<td><strong>usda-natural-resources-conservation-service-plant-materials</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Veterinary Medicine Electron Microscope </td>
			<td><strong>veterinary-medicine-electron-microscope</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Veterinary Teaching Hospital</td>
			<td><strong>veterinary-teaching-hospital</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Visualization Analysis and Design in the Molecular Sciences</td>
			<td><strong>visualization-analysis-and-design-in-the-molecular-sciences</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Walla Walla Learning </td>
			<td><strong>walla-walla-learning</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Washington Animal Disease Diagnostic Laboratory </td>
			<td><strong>washington-animal-disease-diagnostic-laboratory</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Washington Muscle Biology</td>
			<td><strong>washington-muscle-biology</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Washington Small Business Development </td>
			<td><strong>washington-small-business-development</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Washington State Institute for Community Oriented Policing</td>
			<td><strong>washington-state-institute-for-community-oriented-policing</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Washington State Pest Management Research Service</td>
			<td><strong>washington-state-pest-management-research-service</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Washington State Transportation Research</td>
			<td><strong>washington-state-transportation-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Washington Stormwater </td>
			<td><strong>washington-stormwater</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Water Research </td>
			<td><strong>water-research</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Western Extension Risk Management Education</td>
			<td><strong>western-extension-risk-management-education</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Wild Ungulate</td>
			<td><strong>wild-ungulate</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>William D Ruckelshaus</td>
			<td><strong>william-d-ruckelshaus</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Wine Science</td>
			<td><strong>wine-science</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Womens Resource </td>
			<td><strong>womens-resource</strong></td>
			<td>&nbsp;</td>
	</tr>
	<tr>
			<td>Yakima County Learning</td>
			<td><strong>yakima-county-learning</strong></td>
			<td>&nbsp;</td>
	</tr>

Department

( department )

Accounting accounting  
Animal Sciences Beef Center animal-sciences-beef-center  
Animal Sciences Swine Center animal-sciences-swine-center  
Anthropology anthropology  
Biological Systems Engineering biological-systems-engineering  
Budget and Accounting budget-and-accounting  
Capital Planning and Development capital-planning-and-development  
Chemistry chemistry  
Civil and Environmental Engineering  civil-and-environmental-engineering  
Community and Rural Sociology community-and-rural-sociology  
Creative Culture Gender and Race Studies creative-culture-gender-and-race-studies  
Criminal Justice criminal-justice  
Criminal Justice and Criminology criminal-justice-and-criminology  
Critical Culture Gender and Race Studies critical-culture-gender-and-race-studies  
Crop and Soil Science crop-and-soil-science  
Dining Services dining-services  
Educational Leadership Sports Studies and Educational Counseling Psychology educational-leadership-sports-studies-and-educational-counseling-psychology  
English  english  
Facilities Operations facilities-operations  
Finance and Management Science finance-and-management-science  
Fine Arts fine-arts  
Foreign Languages and Cultures foreign-languages-and-cultures  
Genetics and Cell Biology genetics-and-cell-biology  
Health Policy and Administration health-policy-and-administration  
History history  
Horticulture horticulture  
Human Development human-development  
Human Resources human-resources  
Information Technology information-technology  
Integrative Physiology and Neuroscience  integrative-physiology-and-neuroscience  
Intercollegiate Athletics intercollegiate-athletics  
Management Information Systems and Entrepreneurship management-information-systems-and-entrepreneurship  
Marketing and International Business marketing-and-international-business  
Mathematics mathematics  
Neuroscience neuroscience  
Parking Services parking-services  
Pharmaceutical Sciences pharmaceutical-sciences  
Pharmacotherapy pharmacotherapy  
Physics and Astronomy physics-and-astronomy  
Police  police  
Political Science political-science  
Psychology  psychology  
Public Safety public-safety  
Sociology sociology  
Speech and Hearing Sciences speech-and-hearing-sciences  
Teaching and Learning teaching-and-learning  
Veterinary Clinical Sciences  veterinary-clinical-sciences  
Veterinary Microbiology and Pathology  veterinary-microbiology-and-pathology  

Institute

( institute )

Biological Chemistry  biological-chemistry  
Foley Public Policy and Public Service foley-public-policy-and-public-service  
Food Technologists food-technologists  
Freight Policy Transportation Institute freight-policy-transportation-institute  
Harold Frank Engineering Entrepreneurship  harold-frank-engineering-entrepreneurship  
Hoops Taxation Research and Policy hoops-taxation-research-and-policy  
Interdisciplinary Design interdisciplinary-design  
International Business international-business  
National Aquatics and Sports Medicine national-aquatics-and-sports-medicine  
Northwest Clerks  northwest-clerks  
Poultry poultry  
Shock Physics shock-physics  
Study of Intercommunal Conflict study-of-intercommunal-conflict  
Summer  summer  
Sustainable Design sustainable-design  

Laboratory

( laboratory )

Albrook Hydraulics albrook-hydraulics  
Amphibian Disease Diagnostic  amphibian-disease-diagnostic  
Analytical  analytical  
Pollen and Paleoethnobotany  pollen-and-paleoethnobotany  
APIS Molecular Systematics apis-molecular-systematics  
Applied Sciences  applied-sciences  
Atmospheric Research  atmospheric-research  
Avian Health  avian-health  
Benthic Ecology  benthic-ecology  
Bioproducts Sciences and Engineering Laboratory  bioproducts-sciences-and-engineering-laboratory  
Biotechnology and Bioanalysis  biotechnology-and-bioanalysis  
Camille M Steber camille-m-steber  
Clinical Pathology clinical-pathology  
Comparative Orthopedic Research comparative-orthopedic-research  
Computer Engineering computer-engineering  
Core Facilities and Centers core-facilities-and-centers  
Crowder Laboratory crowder-laboratory  
Geoarchaeology geoarchaeology  
Dynamic Compression Sector dynamic-compression-sector  
Electrical Circuits  electrical-circuits  
Electrical Engineering  electrical-engineering  
Energy Solutions Engineering  energy-solutions-engineering  
Environmental Health and Safety environmental-health-and-safety  
Environmental Health and Safety  environmental-health-and-safety  
Exercise Physiology and Performance  exercise-physiology-and-performance  
Flow Cytometry  flow-cytometry  
Fluid Dynamics  fluid-dynamics  
GeoAnalytical  geoanalytical  
Honey Bee Diagnostic  honey-bee-diagnostic  
Hydrogen Properties for Energy Research  hydrogen-properties-for-energy-research  
Impact impact  
Insect Ecology and Behavior - Vince Jones insect-ecology-and-behavior-vince-jones  
Jacob Leachman Hydrogen Properties for Energy  jacob-leachman-hydrogen-properties-for-energy  
Laser Shock  laser-shock  
Mainlab Bioinformatics mainlab-bioinformatics  
Moscow Forestry Sciences  moscow-forestry-sciences  
Murdock Metabolomics murdock-metabolomics  
Physical Chemistry  physical-chemistry  
Plant and Insect Diagnostic  plant-and-insect-diagnostic  
Poovaiah  poovaiah  
Quantum Physics quantum-physics  
Salmon Toxicology  salmon-toxicology  
Skinner  skinner  
Sleep and Performance Research Center sleep-and-performance-research-center  
Speech and Language  speech-and-language  
Sports Science  sports-science  
Stable Isotope Core  stable-isotope-core  
Thermo/fluids thermo-fluids  
Virtual Reality and Computer Integrated Manufacturing virtual-reality-and-computer-integrated-manufacturing  
W M Keck Biomedical Materials Research w-m-keck-biomedical-materials-research  
Washington Animal Disease Diagnostic washington-animal-disease-diagnostic  
Western Wheat Quality  western-wheat-quality  
Wildlife Habitat and Nutrition  wildlife-habitat-and-nutrition  
Wood Materials and Engineering wood-materials-and-engineering  

Office

( office )

Academic Affairs academic-affairs  
Activities  activities  
Activities and Recreation activities-and-recreation  
Admissions admissions  
Alternative Energy alternative-energy  
Assessment of Teaching and Learning assessment-of-teaching-and-learning  
Attorney General attorney-general  
Budget budget  
Business business  
Business Services business-services  
Campus Life campus-life  
Campus Veterinarian campus-veterinarian  
Carson College Graduate Programs carson-college-graduate-programs  
Chancellor WSU North Puget Sound at Everett chancellor-wsu-north-puget-sound-at-everett  
Chancellor WSU Spokane chancellor-wsu-spokane  
Chancellor WSU Tri-Cities chancellor-wsu-tri-cities  
Chancellor WSU Vancouver chancellor-wsu-vancouver  
Commercialization commercialization  
Communications Research communications-research  
Controllers controllers  
Copyright copyright  
Dean of Students dean-of-students  
Development and Alumni Relations development-and-alumni-relations  
Economic Development and External Affairs economic-development-and-external-affairs  
Emergency Management emergency-management  
Equal Opportunity equal-opportunity  
Equity and Diversity equity-and-diversity  
Federal Relations federal-relations  
Field Services and Certification field-services-and-certification  
Finance and Administration finance-and-administration  
First Year Experience first-year-experience  
First Year Programs first-year-programs  
Global Services global-services  
Government Relations government-relations  
Graduate Education graduate-education  
Grant and Research Development grant-and-research-development  
Institutional Research institutional-research  
Internal Audit internal-audit  
International Programs international-programs  
Marketing and Communications marketing-and-communications  
Multicultural Student Services multicultural-student-services  
President president  
Procedures Records and Forms procedures-records-and-forms  
Provost provost  
Tribal Liaison tribal-liaison  
Public Records public-records  
Purchasing purchasing  
Radiation Safety radiation-safety  
Real Estate real-estate  
Registrar registrar  
Research research  
Research Assurances research-assurances  
Student Affairs student-affairs  
Student Financial Services student-financial-services  
Student Involvement student-involvement  
Student Media student-media  
Student Services student-services  
Student Standards and Accountability student-standards-and-accountability  
Student Success and Transition Programs student-success-and-transition-programs  
Travel travel  
Undergraduate Education undergraduate-education  
Undergraduate Student Services undergraduate-student-services  
Undergraduate Research undergraduate-research  
Veterans Affairs veterans-affairs  
Vice Provost for Undergraduate Education vice-provost-for-undergraduate-education  
Washington State University Foundation washington-state-university-foundation  
WSU Seattle wsu-seattle  

Program

( program )

4-H Youth Development 4-h-youth-development  
Access Equity and Achievement access-equity-and-achievement  
AgWeatherNet agweathernet  
Alcohol and Drug Abuse Research alcohol-and-drug-abuse-research  
Alcohol and Drug Counseling Assessment Prevention Services alcohol-and-drug-counseling-assessment-prevention-services  
American american  
Asia asia  
Asian/Pacific American Studies asian-pacific-american-studies  
Athletic Training athletic-training  
Biochemistry biochemistry  
Biology biology  
Botany botany  
Business Growth Mentor and Analysis business-growth-mentor-and-analysis  
Black Studies black-studies  
Boeing E-Connections boeing-e-connections  
Boeing Scholars boeing-scholars  
Business Growth Mentor and Analysis business-growth-mentor-and-analysis  
Carson College of Business Graduate carson-college-of-business-graduate  
Catering catering  
Chicano Studies chicano-studies  
Child Development child-development  
Communication communication  
Counseling Psychology and Community Counseling counseling-psychology-and-community-counseling  
Creative Media and Digital Culture creative-media-and-digital-culture  
Critical Literacies Achievement and Success critical-literacies-achievement-and-success  
Cultural Studies and Social Thought in Education cultural-studies-and-social-thought-in-education  
Curriculum Advisory curriculum-advisory  
Curriculum and Instruction curriculum-and-instruction  
Digital Recording Studio digital-recording-studio  
Digital Technology and Culture digital-technology-and-culture  
Distance - WSU distance-wsu  
Distinguished Scholarships distinguished-scholarships  
Diversity Education diversity-education  
Education education  
Educational Leadership educational-leadership  
Educational Psychology educational-psychology  
Energy energy  
Engineering Science  engineering-science  
Engineering Technology Management engineering-technology-management  
English Language Learners english-language-learners  
Environmental Health and Safety environmental-health-and-safety  
Environmental Science and Regional Planning environmental-science-and-regional-planning  
Equipment Loan  equipment-loan  
Festival of Art Music festival-of-art-music  
Frank Fellows frank-fellows  
General Studies general-studies  
Genetics and Cell Biology genetics-and-cell-biology  
Global Animal Health Certificate global-animal-health-certificate  
Health and Fitness health-and-fitness  
Health Policy and Administration health-policy-and-administration  
High School Equivalency high-school-equivalency  
International international  
Language Literacy and Technology language-literacy-and-technology  
Leadership Development leadership-development  
Literacy Education literacy-education  
Making Mathematics Reasoning Explicit making-mathematics-reasoning-explicit  
Materials Science and Engineering materials-science-and-engineering  
Mathematics and Science Education mathematics-and-science-education  
Microbiology microbiology  
Molecular Biosciences Certificate molecular-biosciences-certificate  
Molecular Biosciences Graduate  molecular-biosciences-graduate  
Music music  
Neuroscience neuroscience  
New Student new-student  
Nutrition nutrition  
Nutrition and Exercise Physiology nutrition-and-exercise-physiology  
Pathways to Academic Success Seminar pathways-to-academic-success-seminar  
People Pet Partnership  people-pet-partnership  
Pharmaceutical Sciences Graduate pharmaceutical-sciences-graduate  
Physiology physiology  
Professional Sales Certificate professional-sales-certificate  
Professional Science Masters professional-science-masters  
Professional Writing professional-writing  
Re-Entry: Adult and Returning Student re-entry:-adult-and-returning-student  
Scholarly Knowledge Innovation and Leadership Development scholarly-knowledge-innovation-and-leadership-development  
SKILD skild  
Social Sciences social-sciences  
Special Education special-education  
Sports Management sports-management  
Sports Science sports-science  
Students Targeted Toward Advanced Research Studies+F30 students-targeted-toward-advanced-research-studies-f30  
Teacher Education teacher-education  
University Writing university-writing  
Veterinary Medicine DVM veterinary-medicine-dvm  
Visiting Writers visiting-writers  
Viticulture viticulture  
Viticulture and Enology viticulture-and-enology  
Writing writing  
Writing Assessment  writing-assessment  
Zoology zoology  

School

( school )

Biological Sciences biological-sciences  
Chemical Engineering and Bioengineering - Voiland chemical-engineering-and-bioengineering-voiland  
Design and Construction design-and-construction  
Economic Sciences economic-sciences  
Electrical Engineering and Computer Science electrical-engineering-and-computer-science  
Engineering and Computer Science engineering-and-computer-science  
Environment environment  
Food Science food-science  
Global Animal Health - Paul G Allen global-animal-health-paul-g-allen  
Graduate graduate  
Hospitality Business Management hospitality-business-management  
Mechanical and Materials Engineering mechanical-and-materials-engineering  
Medicine  medicine  
Molecular Biosciences molecular-biosciences  
Music  music  
Piano Pedagogy Lab  piano-pedagogy-lab  
Politics Philosophy and Public Affairs  politics-philosophy-and-public-affairs  

Unit

( unit )

Academic Media Services academic-media-services  
Access Services access-services  
Accounts Payable accounts-payable  
Administrative Services administrative-services  
Alumni Association alumni-association  
Animal Health Library animal-health-library  
Animal Resources Unit  animal-resources-unit  
Anthropology Museum anthropology-museum  
Beasley Coliseum beasley-coliseum  
Biomedical Communications biomedical-communications  
Capital Planning and Development capital-planning-and-development  
Central Receiving central-receiving  
Collection Development collection-development  
Compton Union compton-union  
Conner Museum of Natural History conner-museum-of-natural-history  
Coug Prints coug-prints  
Cougar Copies cougar-copies  
Cougar Marching Band cougar-marching-band  
Counseling and Testing Services counseling-and-testing-services  
Dining Services dining-services  
E-Learning Services e-learning-services  
Environmental Health and Safety/Risk Management environmental-health-and-safety-risk-management  
Facilities Services facilities-services  
Field Disease Investigation field-disease-investigation  
Fine Arts Gallery fine-arts-gallery  
Foundation foundation  
Government Document government-document  
Health and Wellness Services health-and-wellness-services  
Housing and Residence Life housing-and-residence-life Housing
Jewett Observatory jewett-observatory  
Library Instruction library-instruction  
Library Systems library-systems  
Mailing Services mailing-services  
Manuscripts Archives and Special Collections manuscripts-archives-and-special-collections  
Media Materials and Reserves media-materials-and-reserves  
Motor Pool motor-pool  
Ownby Herbarium ownby-herbarium  
Palouse Ridge Golf Club palouse-ridge-golf-club  
Payroll Services payroll-services  
People Pet Partnership Program  people-pet-partnership-program  
Psychology Clinic psychology-clinic  
Public Safety public-safety  
Receivables receivables  
Reference Services reference-services  
Scholarly Communication scholarly-communication  
Shipping and Receiving shipping-and-receiving  
Surplus surplus  
Technical Services technical-services  
Transportation Services transportation-services  
University Communications university-communications UCOMM,MARCOM
University Press university-press  
University Recreation university-recreation  
University Stores university-stores  
WSU Museum of Art wsu-museum-of-art  
WSU Press wsu-press  
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment