<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://wiki.eprints.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=E.jennings%40bath.ac.uk</id>
	<title>EPrints Documentation - User contributions [en-gb]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.eprints.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=E.jennings%40bath.ac.uk"/>
	<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/Special:Contributions/E.jennings@bath.ac.uk"/>
	<updated>2026-04-16T15:17:14Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.8</generator>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Tips_to_write_plugins&amp;diff=12357</id>
		<title>Tips to write plugins</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Tips_to_write_plugins&amp;diff=12357"/>
		<updated>2017-06-30T12:35:27Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Plugins]]&lt;br /&gt;
I've written a lot of plugins for EPrints 3+ now and so i think its time to share the knowledge. If you care you can read about the mess I got into in the early days [http://blogs.ecs.soton.ac.uk/oneshare/2009/09/25/taking-stock-and-mopping-up-the-mess-i-made-of-eprints/ here].&lt;br /&gt;
&lt;br /&gt;
So without further ado let me give you the top 10 ways to avoid making a hash of your EPrints install when doing a large customization:&lt;br /&gt;
&lt;br /&gt;
* Rule 1: NEVER edit Session.pm if there is one file that you will absolutely not recover from it’s this. also there is an easy way to avoid editing it see rule 6.&lt;br /&gt;
&lt;br /&gt;
* Rule 2: Don’t edit anything in perl_lib/EPrints. Make copies with a new name and new package. That way these files wont be over written when you upgrade.&lt;br /&gt;
&lt;br /&gt;
* Rule 3: Everything in the Plugin/ directory which you do should be kept in the appropiate place in archives/YOUR_REPOSITORY/cfg/plugins/EPrints/Plugin etc. This is a really good way to keep track of what you’ve actually done.&lt;br /&gt;
&lt;br /&gt;
* Rule 4: Everything you do should be a plugin. EPrints has plugins for almost everything which means you should be able to do almost all funtionality in plugins. See [[Instructions for local plugins]]&lt;br /&gt;
&lt;br /&gt;
* Rule 5: For everything you want to do which doesn't seem to be a plugin think really hard. Are you SURE it’s not a plugin? Really SURE? Are you SURE you need this functionality? Really SURE?&lt;br /&gt;
&lt;br /&gt;
* Rule 6: If you have followed rule 5 and you are still really sure then kludge a plugin, a kuldgin as I like to call them, using namespace over writing. This is feature/artifact of perl, from one package you can write in another package. Add methods to the DataObj::EPrint good example of where you might want to do this. To do it :&lt;br /&gt;
&lt;br /&gt;
make a Plugin (yes  a plugin) in your local cfg (see rule 3). start the plugin file in the normal way:&lt;br /&gt;
 package EPrints::Plugin::MyPlugin;&lt;br /&gt;
 use strict;&lt;br /&gt;
 our @ISA = qw/ EPrints::Plugin /;&lt;br /&gt;
 #now for the clever bit&lt;br /&gt;
 package EPrints::DataObj::EPrint;&lt;br /&gt;
 sub mysubroutine{&lt;br /&gt;
  return(”foo”);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
That has added mysubroutine to DataObj::EPrint so you can now&lt;br /&gt;
&lt;br /&gt;
 my $eprint = EPrint::DataObj::EPrint-&amp;gt;new($session, 23); #get eprint 23&lt;br /&gt;
 print $eprint-&amp;gt;mysubroutine(); #prints “foo”&lt;br /&gt;
&lt;br /&gt;
You can use this to overwrite behaviour from an existing subroutine.  Make sure to delete the original first:&lt;br /&gt;
 package EPrints::Plugin::MyPlugin;&lt;br /&gt;
 use strict;&lt;br /&gt;
 our @ISA = qw/ EPrints::Plugin /;&lt;br /&gt;
 package EPrints::DataObj::EPrint;&lt;br /&gt;
 BEGIN { delete $EPrints::DataObj::EPrint::{existing_subroutine}; }&lt;br /&gt;
 sub existing_subroutine{&lt;br /&gt;
  return(”foo”);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
* Rule 7: learn about cfg/cfg.d/plugins.pl. This file lets you disable plugins you dont want to use or map you modified plugins over other plugins. For example use MyReview.pm everywhere you would usually use Review.pm – very powerful. It also lets you define where plugins apear around about the place.&lt;br /&gt;
&lt;br /&gt;
* Rule 8: for plugins which use a cgi script for whatever reason (usually ajax) make a directory in cgi which has the same name as the plugin for example cgi/myfirstplugin where all the cgi used by MyFirstPlugin.pm can be found. It makes it much easier to see what youve done and if you want to deploy the plugin somewhere else you grab the plugin file and the directory and you well on the way.&lt;br /&gt;
&lt;br /&gt;
* Rule 9: Give each plugin its own phrase file. I got into a hidious mess where my zz_local.xml phrase file was about a 4000 lines long and it wasnt clear what phrases belonged to what plugin.&lt;br /&gt;
&lt;br /&gt;
* Rule 10: If your plugin needs configuring put all the config options in a cfg/cfg.d/my_plugins_config_options.pl that way the user only has to go to one place edit the options and different repositories using the same plugin can have different options.&lt;br /&gt;
&lt;br /&gt;
In conclusion obey rules 1-10. If I’d known this stuff when I’d started we probably wouldnt have needed the first 6 months of the OneShare project.&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12265</id>
		<title>User group meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12265"/>
		<updated>2017-01-05T12:12:15Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Bath, UK */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__toc__&lt;br /&gt;
&lt;br /&gt;
=2016=&lt;br /&gt;
&lt;br /&gt;
==Bath, UK==&lt;br /&gt;
Date: 19th December&lt;br /&gt;
Location: University of Bath&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1WqSV5XvEGapiZ-hOCiwO3KtofuWn5r4-g0z-VbmTg1Q Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=0B4pSjSeAg96cZHUtQV96WmZwUkU Making EPrints Angular - Lizz Jennings (University of Bath) (PowerPoint)]&lt;br /&gt;
&lt;br /&gt;
[http://dx.doi.org/10.7892/boris.91710 BORIS &amp;amp; Swiss EPrints community - Dirk Verdicchio (Universitätsbibliothek Bern) (PDF)]&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=0B4pSjSeAg96cOGZfeXh3UXhGY0E ORCID and EPrints - Monica Duke (Jisc) (PowerPoint)]&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=0B4pSjSeAg96ccEh3aGNJR3ZHMHc Reporting for the REF OA policy - Helen Webb (University of Sussex) (PowerPoint)]&lt;br /&gt;
&lt;br /&gt;
Hack Day: 20th December&lt;br /&gt;
&lt;br /&gt;
[[File:2016-12-20_hack_day_1.jpg]]&lt;br /&gt;
[[File:2016-12-20_hack_day_2.jpg]]&lt;br /&gt;
[[File:2016-12-20_hack_day_3.jpg]]&lt;br /&gt;
[[File:2016-12-20_hack_day_4.jpg]]&lt;br /&gt;
&lt;br /&gt;
Photos by Helen Cooper&lt;br /&gt;
&lt;br /&gt;
==Preston, UK==&lt;br /&gt;
Date: 13th May&lt;br /&gt;
Location: University of Central Lancashire&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1v5YLeHe8Mro59dYcl3yhK0nKelIlr-dZrRDq11nMMuQ Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
=2015=&lt;br /&gt;
&lt;br /&gt;
==Southampton, UK==&lt;br /&gt;
Date: 11th September&lt;br /&gt;
Location: University of Southampton&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1yy8fol8NXz8Z3aEHsYkWSS2pfVDfaZCk36Zcq3TUb6A Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
==London, UK==&lt;br /&gt;
Date: 15th January&lt;br /&gt;
Location: University of London&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1Ya6ML9gk1oYEosbdUr7--KqcKKQdnW05PqWO3bTk07M Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=2014=&lt;br /&gt;
&lt;br /&gt;
==Leeds, UK==&lt;br /&gt;
Date: 27th June&lt;br /&gt;
Location: University of Leeds&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1ZaF5wonSTwdKFmxkrR_ioeML1k_xEkBrYooN1odkUeY Collaborative notes (Google Doc)]&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12264</id>
		<title>User group meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12264"/>
		<updated>2017-01-04T17:09:57Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Bath, UK */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__toc__&lt;br /&gt;
&lt;br /&gt;
=2016=&lt;br /&gt;
&lt;br /&gt;
==Bath, UK==&lt;br /&gt;
Date: 19th December&lt;br /&gt;
Location: University of Bath&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1WqSV5XvEGapiZ-hOCiwO3KtofuWn5r4-g0z-VbmTg1Q Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=0B4pSjSeAg96cZHUtQV96WmZwUkU Making EPrints Angular - Lizz Jennings (University of Bath) (PowerPoint)]&lt;br /&gt;
&lt;br /&gt;
[http://dx.doi.org/10.7892/boris.91710 BORIS &amp;amp; Swiss EPrints community - Dirk Verdicchio (Universitätsbibliothek Bern) (PDF)]&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=0B4pSjSeAg96cOGZfeXh3UXhGY0E ORCID and EPrints - Monica Duke (Jisc) (PowerPoint)]&lt;br /&gt;
&lt;br /&gt;
Hack Day: 20th December&lt;br /&gt;
&lt;br /&gt;
[[File:2016-12-20_hack_day_1.jpg]]&lt;br /&gt;
[[File:2016-12-20_hack_day_2.jpg]]&lt;br /&gt;
[[File:2016-12-20_hack_day_3.jpg]]&lt;br /&gt;
[[File:2016-12-20_hack_day_4.jpg]]&lt;br /&gt;
&lt;br /&gt;
Photos by Helen Cooper&lt;br /&gt;
&lt;br /&gt;
==Preston, UK==&lt;br /&gt;
Date: 13th May&lt;br /&gt;
Location: University of Central Lancashire&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1v5YLeHe8Mro59dYcl3yhK0nKelIlr-dZrRDq11nMMuQ Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
=2015=&lt;br /&gt;
&lt;br /&gt;
==Southampton, UK==&lt;br /&gt;
Date: 11th September&lt;br /&gt;
Location: University of Southampton&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1yy8fol8NXz8Z3aEHsYkWSS2pfVDfaZCk36Zcq3TUb6A Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
==London, UK==&lt;br /&gt;
Date: 15th January&lt;br /&gt;
Location: University of London&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1Ya6ML9gk1oYEosbdUr7--KqcKKQdnW05PqWO3bTk07M Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=2014=&lt;br /&gt;
&lt;br /&gt;
==Leeds, UK==&lt;br /&gt;
Date: 27th June&lt;br /&gt;
Location: University of Leeds&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1ZaF5wonSTwdKFmxkrR_ioeML1k_xEkBrYooN1odkUeY Collaborative notes (Google Doc)]&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12263</id>
		<title>User group meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12263"/>
		<updated>2017-01-04T17:07:38Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Bath, UK */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__toc__&lt;br /&gt;
&lt;br /&gt;
=2016=&lt;br /&gt;
&lt;br /&gt;
==Bath, UK==&lt;br /&gt;
Date: 19th December&lt;br /&gt;
Location: University of Bath&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1WqSV5XvEGapiZ-hOCiwO3KtofuWn5r4-g0z-VbmTg1Q Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=0B4pSjSeAg96cZHUtQV96WmZwUkU Making EPrints Angular - Lizz Jennings (University of Bath) (PowerPoint)]&lt;br /&gt;
&lt;br /&gt;
[http://dx.doi.org/10.7892/boris.91710 BORIS &amp;amp; Swiss EPrints community - Dirk Verdicchio (Universitätsbibliothek Bern) (PDF)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hack Day: 20th December&lt;br /&gt;
&lt;br /&gt;
[[File:2016-12-20_hack_day_1.jpg]]&lt;br /&gt;
[[File:2016-12-20_hack_day_2.jpg]]&lt;br /&gt;
[[File:2016-12-20_hack_day_3.jpg]]&lt;br /&gt;
[[File:2016-12-20_hack_day_4.jpg]]&lt;br /&gt;
&lt;br /&gt;
==Preston, UK==&lt;br /&gt;
Date: 13th May&lt;br /&gt;
Location: University of Central Lancashire&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1v5YLeHe8Mro59dYcl3yhK0nKelIlr-dZrRDq11nMMuQ Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
=2015=&lt;br /&gt;
&lt;br /&gt;
==Southampton, UK==&lt;br /&gt;
Date: 11th September&lt;br /&gt;
Location: University of Southampton&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1yy8fol8NXz8Z3aEHsYkWSS2pfVDfaZCk36Zcq3TUb6A Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
==London, UK==&lt;br /&gt;
Date: 15th January&lt;br /&gt;
Location: University of London&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1Ya6ML9gk1oYEosbdUr7--KqcKKQdnW05PqWO3bTk07M Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=2014=&lt;br /&gt;
&lt;br /&gt;
==Leeds, UK==&lt;br /&gt;
Date: 27th June&lt;br /&gt;
Location: University of Leeds&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1ZaF5wonSTwdKFmxkrR_ioeML1k_xEkBrYooN1odkUeY Collaborative notes (Google Doc)]&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=File:2016-12-20_hack_day_4.jpg&amp;diff=12262</id>
		<title>File:2016-12-20 hack day 4.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=File:2016-12-20_hack_day_4.jpg&amp;diff=12262"/>
		<updated>2017-01-04T17:06:37Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=File:2016-12-20_hack_day_3.jpg&amp;diff=12261</id>
		<title>File:2016-12-20 hack day 3.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=File:2016-12-20_hack_day_3.jpg&amp;diff=12261"/>
		<updated>2017-01-04T17:06:16Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=File:2016-12-20_hack_day_2.jpg&amp;diff=12260</id>
		<title>File:2016-12-20 hack day 2.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=File:2016-12-20_hack_day_2.jpg&amp;diff=12260"/>
		<updated>2017-01-04T17:05:45Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=File:2016-12-20_hack_day_1.jpg&amp;diff=12259</id>
		<title>File:2016-12-20 hack day 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=File:2016-12-20_hack_day_1.jpg&amp;diff=12259"/>
		<updated>2017-01-04T17:05:13Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12258</id>
		<title>User group meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12258"/>
		<updated>2017-01-04T16:38:30Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Bath, UK */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__toc__&lt;br /&gt;
&lt;br /&gt;
=2016=&lt;br /&gt;
&lt;br /&gt;
==Bath, UK==&lt;br /&gt;
Date: 19th December&lt;br /&gt;
Location: University of Bath&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1WqSV5XvEGapiZ-hOCiwO3KtofuWn5r4-g0z-VbmTg1Q Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=0B4pSjSeAg96cZHUtQV96WmZwUkU Making EPrints Angular - Lizz Jennings (University of Bath) (PowerPoint)]&lt;br /&gt;
&lt;br /&gt;
[http://dx.doi.org/10.7892/boris.91710 BORIS &amp;amp; Swiss EPrints community - Dirk Verdicchio (Universitätsbibliothek Bern) (PDF)]&lt;br /&gt;
&lt;br /&gt;
==Preston, UK==&lt;br /&gt;
Date: 13th May&lt;br /&gt;
Location: University of Central Lancashire&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1v5YLeHe8Mro59dYcl3yhK0nKelIlr-dZrRDq11nMMuQ Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
=2015=&lt;br /&gt;
&lt;br /&gt;
==Southampton, UK==&lt;br /&gt;
Date: 11th September&lt;br /&gt;
Location: University of Southampton&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1yy8fol8NXz8Z3aEHsYkWSS2pfVDfaZCk36Zcq3TUb6A Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
==London, UK==&lt;br /&gt;
Date: 15th January&lt;br /&gt;
Location: University of London&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1Ya6ML9gk1oYEosbdUr7--KqcKKQdnW05PqWO3bTk07M Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=2014=&lt;br /&gt;
&lt;br /&gt;
==Leeds, UK==&lt;br /&gt;
Date: 27th June&lt;br /&gt;
Location: University of Leeds&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1ZaF5wonSTwdKFmxkrR_ioeML1k_xEkBrYooN1odkUeY Collaborative notes (Google Doc)]&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12257</id>
		<title>User group meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12257"/>
		<updated>2017-01-04T12:35:16Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__toc__&lt;br /&gt;
&lt;br /&gt;
=2016=&lt;br /&gt;
&lt;br /&gt;
==Bath, UK==&lt;br /&gt;
Date: 19th December&lt;br /&gt;
Location: University of Bath&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1WqSV5XvEGapiZ-hOCiwO3KtofuWn5r4-g0z-VbmTg1Q Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=0B4pSjSeAg96cZHUtQV96WmZwUkU Making EPrints Angular - Lizz Jennings (University of Bath) (PowerPoint)]&lt;br /&gt;
&lt;br /&gt;
==Preston, UK==&lt;br /&gt;
Date: 13th May&lt;br /&gt;
Location: University of Central Lancashire&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1v5YLeHe8Mro59dYcl3yhK0nKelIlr-dZrRDq11nMMuQ Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
=2015=&lt;br /&gt;
&lt;br /&gt;
==Southampton, UK==&lt;br /&gt;
Date: 11th September&lt;br /&gt;
Location: University of Southampton&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1yy8fol8NXz8Z3aEHsYkWSS2pfVDfaZCk36Zcq3TUb6A Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
==London, UK==&lt;br /&gt;
Date: 15th January&lt;br /&gt;
Location: University of London&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1Ya6ML9gk1oYEosbdUr7--KqcKKQdnW05PqWO3bTk07M Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=2014=&lt;br /&gt;
&lt;br /&gt;
==Leeds, UK==&lt;br /&gt;
Date: 27th June&lt;br /&gt;
Location: University of Leeds&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1ZaF5wonSTwdKFmxkrR_ioeML1k_xEkBrYooN1odkUeY Collaborative notes (Google Doc)]&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12256</id>
		<title>User group meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12256"/>
		<updated>2017-01-04T12:34:22Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__toc__&lt;br /&gt;
&lt;br /&gt;
=2016=&lt;br /&gt;
&lt;br /&gt;
==Bath, UK==&lt;br /&gt;
Date: 19th December&lt;br /&gt;
Location: University of Bath&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1WqSV5XvEGapiZ-hOCiwO3KtofuWn5r4-g0z-VbmTg1Q Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=0B4pSjSeAg96camZvb0lpN1NVY2c Making EPrints Angular - Lizz Jennings (University of Bath) (PowerPoint)]&lt;br /&gt;
&lt;br /&gt;
==Preston, UK==&lt;br /&gt;
Date: 13th May&lt;br /&gt;
Location: University of Central Lancashire&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1v5YLeHe8Mro59dYcl3yhK0nKelIlr-dZrRDq11nMMuQ Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
=2015=&lt;br /&gt;
&lt;br /&gt;
==Southampton, UK==&lt;br /&gt;
Date: 11th September&lt;br /&gt;
Location: University of Southampton&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1yy8fol8NXz8Z3aEHsYkWSS2pfVDfaZCk36Zcq3TUb6A Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
==London, UK==&lt;br /&gt;
Date: 15th January&lt;br /&gt;
Location: University of London&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1Ya6ML9gk1oYEosbdUr7--KqcKKQdnW05PqWO3bTk07M Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=2014=&lt;br /&gt;
&lt;br /&gt;
==Leeds, UK==&lt;br /&gt;
Date: 27th June&lt;br /&gt;
Location: University of Leeds&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1ZaF5wonSTwdKFmxkrR_ioeML1k_xEkBrYooN1odkUeY Collaborative notes (Google Doc)]&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12255</id>
		<title>User group meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12255"/>
		<updated>2017-01-04T12:26:13Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__toc__&lt;br /&gt;
&lt;br /&gt;
=2016=&lt;br /&gt;
&lt;br /&gt;
==Bath, UK==&lt;br /&gt;
Date: 19th December&lt;br /&gt;
Location: University of Bath&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1WqSV5XvEGapiZ-hOCiwO3KtofuWn5r4-g0z-VbmTg1Q Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
==Preston, UK==&lt;br /&gt;
Date: 13th May&lt;br /&gt;
Location: University of Central Lancashire&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1v5YLeHe8Mro59dYcl3yhK0nKelIlr-dZrRDq11nMMuQ Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
=2015=&lt;br /&gt;
&lt;br /&gt;
==Southampton, UK==&lt;br /&gt;
Date: 11th September&lt;br /&gt;
Location: University of Southampton&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1yy8fol8NXz8Z3aEHsYkWSS2pfVDfaZCk36Zcq3TUb6A Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
==London, UK==&lt;br /&gt;
Date: 15th January&lt;br /&gt;
Location: University of London&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1Ya6ML9gk1oYEosbdUr7--KqcKKQdnW05PqWO3bTk07M Collaborative notes (Google Doc)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=2014=&lt;br /&gt;
&lt;br /&gt;
==Leeds, UK==&lt;br /&gt;
Date: 27th June&lt;br /&gt;
Location: University of Leeds&lt;br /&gt;
&lt;br /&gt;
[https://drive.google.com/open?id=1ZaF5wonSTwdKFmxkrR_ioeML1k_xEkBrYooN1odkUeY Collaborative notes (Google Doc)]&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Main_Page&amp;diff=12254</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Main_Page&amp;diff=12254"/>
		<updated>2017-01-04T12:13:29Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Getting Support */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Howto]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
'''Welcome to the EPrints Wiki'''&lt;br /&gt;
&lt;br /&gt;
This wiki contains technical and user-contributed documentation for the [[Introduction|EPrints software]].&lt;br /&gt;
&lt;br /&gt;
[http://demoprints3.eprints.org/ Demoprints] is our live, online server that allows anyone to try EPrints without having to install it first.&lt;br /&gt;
&lt;br /&gt;
For more information on the EPrints project and related activities visit http://eprints.org/.&lt;br /&gt;
&lt;br /&gt;
==New to EPrints?==&lt;br /&gt;
&lt;br /&gt;
On this wiki you can find:&lt;br /&gt;
&lt;br /&gt;
*[[:Category:Training Video|Video Training Course]]&lt;br /&gt;
*[[EPrints_Manual|Documentation]] &lt;br /&gt;
*[[Working Groups]]&lt;br /&gt;
*Mailing lists&lt;br /&gt;
&lt;br /&gt;
There are two mail lists that you might like to join and where you can ask for help and share ideas:&lt;br /&gt;
&lt;br /&gt;
'''The EPrints User Group Google Group''' https://groups.google.com/forum/#!forum/eprints-uk-user-group &lt;br /&gt;
&lt;br /&gt;
This group is for anyone involved in using EPrints.  Ask questions, share ideas, hear about forthcoming meetings.&lt;br /&gt;
&lt;br /&gt;
'''The Eprints Technical Mailing List''' &lt;br /&gt;
&lt;br /&gt;
Joining information for [[Contact| EPrints Tech list]]&lt;br /&gt;
*How to [[Wiki_editing_guidlines|contribute to the EPrints wiki]]&lt;br /&gt;
*Code Sharing Repository https://github.com/eprintsug&lt;br /&gt;
&lt;br /&gt;
== Download EPrints ==&lt;br /&gt;
&lt;br /&gt;
{{Download}}&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Installation|Installing]] EPrints on various platforms&lt;br /&gt;
&lt;br /&gt;
==Getting Started==&lt;br /&gt;
&lt;br /&gt;
* [[EPrints Manual|EPrints 3 Documentation]]&lt;br /&gt;
* [[Perl 101 for EPrints]]&lt;br /&gt;
* [http://www.eprints.org/software/training/ Training materials] provided by EPrints Services.&lt;br /&gt;
* [[Frequently Asked Questions]]&lt;br /&gt;
* [[:Category:Howto|How to...]]&lt;br /&gt;
* [[:Category:Plugins|Plugins and Bazaar packages for EPrints]]&lt;br /&gt;
* [[:Category:Training Video|EPrints Training Course]]&lt;br /&gt;
&lt;br /&gt;
==Getting Support==&lt;br /&gt;
&lt;br /&gt;
* [http://www.eprints.org/services/ EPrints Services] - premium support, training and hosting from EPrints experts&lt;br /&gt;
* [[Contact]] - mailing lists, bug reports etc.&lt;br /&gt;
* [[User group meetings]] - regional meetings for users, which often have notes, presentations and information of general interest&lt;br /&gt;
&lt;br /&gt;
==Add-ons, patches and translations==&lt;br /&gt;
&lt;br /&gt;
* As of version 3.3 EPrints can now install plugins and translations through the [https://bazaar.eprints.org EPrints Bazaar] the wiki also has information about [[:Category:EPrints Bazaar|packaging plugins for the Bazaar]].&lt;br /&gt;
* The [http://files.eprints.org/ EPrints Files Repository] contains add-on and 3rd party scripts, patches and translations. This also provides an archive of all previous EPrints releases (3.0 onwards).&lt;br /&gt;
* [[:Category:Plugins|Plugins]]: Some Wiki pages about scripts and patches.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Register}}&lt;br /&gt;
&lt;br /&gt;
==Contributing to EPrints==&lt;br /&gt;
&lt;br /&gt;
* [[Usability|EPrints usability]]&lt;br /&gt;
* [[:Category:Releases|New features in EPrints]] - released and proposed&lt;br /&gt;
* [[How to contribute|How to contribute to EPrints development]]&lt;br /&gt;
* [http://trac.eprints.org/ EPrints Trac] - access nightly builds, tickets and changes (requires free registration to view source code)&lt;br /&gt;
* [[EPrints4 Roadmap]]&lt;br /&gt;
* [[EPrints3 Roadmap]] - 2016 Community Roadmap&lt;br /&gt;
&lt;br /&gt;
== Content management ==&lt;br /&gt;
&lt;br /&gt;
* [[Digital preservation]]: managing content for longer-term access and use&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12253</id>
		<title>User group meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=User_group_meetings&amp;diff=12253"/>
		<updated>2017-01-04T12:12:30Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: Created page with &amp;quot;=User Group Meetings=&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=User Group Meetings=&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=How_to_modify_static_pages&amp;diff=12251</id>
		<title>How to modify static pages</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=How_to_modify_static_pages&amp;diff=12251"/>
		<updated>2016-12-20T14:48:15Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Static Pages]]&lt;br /&gt;
The static web pages are created by combining the .xpage files from [[EPrints_Directory_Structure/eprints3/archives/ARCHIVEID/cfg/lang/en/static | /opt/eprints3/archives/ARCHIVEID/cfg/lang/en/static/]] with the site template. The template can be found at [[EPrints_Directory_Structure/eprints3/archives/ARCHIVEID/cfg/lang/en/templates|opt/eprints3/archives/ARCHIVEID/cfg/lang/en/templates]]. This is what generate_static does.&lt;br /&gt;
&lt;br /&gt;
Generate static also copies all files which do not have the suffix .xpage from [[EPrints_Directory_Structure/eprints3/archives/ARCHIVEID/cfg/lang/en/static | /opt/eprints3/archives/ARCHIVEID/cfg/lang/en/static/]]&lt;br /&gt;
&lt;br /&gt;
Non-language specific files go in the [[EPrints_Directory_Structure/eprints3/archives/ARCHIVEID/cfg|/opt/eprints3/archives/ARCHIVEID/cfg]] directory and appear on the website no matter what language the site is in. eg. images and the style sheet.&lt;br /&gt;
&lt;br /&gt;
Obviously french source files go in cfg/lang/fr/ etc.&lt;br /&gt;
&lt;br /&gt;
Edit the .xpage file (or other file in /static/)&lt;br /&gt;
&lt;br /&gt;
Run [[Bin/|generate_static]] ARCHIVEID&lt;br /&gt;
&lt;br /&gt;
===Issues===&lt;br /&gt;
&lt;br /&gt;
The XML Editor encodes all extended characters, with the exception of core HTML ones (e.g. &amp;lt;) -- this causes issues with pages that need to include one of these symbols.  See https://github.com/eprints/eprints/blob/3.3/perl_lib/EPrints/Plugin/Screen/Admin/Config/Edit/XML.pm#L29&lt;br /&gt;
&lt;br /&gt;
A set of phrases have been created for html entites to be used in static pages and phrases that can be edited through the front-end tools.  E.g:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang='html4strict'&amp;gt;&lt;br /&gt;
  &amp;lt;p&amp;gt;Nuts &amp;lt;epc:phrase ref='entity_amp'/&amp;gt; bolts&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A [http://bazaar.eprints.org/id/eprint/471 bazaar package] has been created for the following phrases:&lt;br /&gt;
&lt;br /&gt;
* entity_amp&lt;br /&gt;
* entity_gt&lt;br /&gt;
* entity_lt&lt;br /&gt;
* entity_quot&lt;br /&gt;
* entity_apos&lt;br /&gt;
&lt;br /&gt;
See&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=How_to_modify_static_pages&amp;diff=12247</id>
		<title>How to modify static pages</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=How_to_modify_static_pages&amp;diff=12247"/>
		<updated>2016-12-20T14:05:05Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Static Pages]]&lt;br /&gt;
The static web pages are created by combining the .xpage files from [[EPrints_Directory_Structure/eprints3/archives/ARCHIVEID/cfg/lang/en/static | /opt/eprints3/archives/ARCHIVEID/cfg/lang/en/static/]] with the site template. The template can be found at [[EPrints_Directory_Structure/eprints3/archives/ARCHIVEID/cfg/lang/en/templates|opt/eprints3/archives/ARCHIVEID/cfg/lang/en/templates]]. This is what generate_static does.&lt;br /&gt;
&lt;br /&gt;
Generate static also copies all files which do not have the suffix .xpage from [[EPrints_Directory_Structure/eprints3/archives/ARCHIVEID/cfg/lang/en/static | /opt/eprints3/archives/ARCHIVEID/cfg/lang/en/static/]]&lt;br /&gt;
&lt;br /&gt;
Non-language specific files go in the [[EPrints_Directory_Structure/eprints3/archives/ARCHIVEID/cfg|/opt/eprints3/archives/ARCHIVEID/cfg]] directory and appear on the website no matter what language the site is in. eg. images and the style sheet.&lt;br /&gt;
&lt;br /&gt;
Obviously french source files go in cfg/lang/fr/ etc.&lt;br /&gt;
&lt;br /&gt;
Edit the .xpage file (or other file in /static/)&lt;br /&gt;
&lt;br /&gt;
Run [[Bin/|generate_static]] ARCHIVEID&lt;br /&gt;
&lt;br /&gt;
===Issues===&lt;br /&gt;
&lt;br /&gt;
If you need to include a left angle bracket in the text&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Training_Video:Edit_and_Create_Static_Pages&amp;diff=12246</id>
		<title>Training Video:Edit and Create Static Pages</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Training_Video:Edit_and_Create_Static_Pages&amp;diff=12246"/>
		<updated>2016-12-20T14:02:30Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Howto]]&lt;br /&gt;
[[Category:Training_Video|Edit and Create Static Pages]]&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
This video is a Walkthrough of editing and creating static pages (including linking into repository navigation).&lt;br /&gt;
&lt;br /&gt;
==What You Will Learn==&lt;br /&gt;
&lt;br /&gt;
* What a static page is&lt;br /&gt;
* How to edit static pages via the web&lt;br /&gt;
* How to create a new static page and link to it&lt;br /&gt;
&lt;br /&gt;
==What You Should Already Know==&lt;br /&gt;
&lt;br /&gt;
* An understanding of HTML&lt;br /&gt;
* How to access the EPrints Administration pages&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
&lt;br /&gt;
=== Video===&lt;br /&gt;
The Video can be found at [http://youtu.be/KzrS_u-4eoM http://youtu.be/KzrS_u-4eoM].&lt;br /&gt;
====Index====&lt;br /&gt;
* [http://youtu.be/HTg_8gbiiN8?t=00m00s 00:00 - Introduction]&lt;br /&gt;
* [http://youtu.be/HTg_8gbiiN8?t=00m07s 00:07 - What is a static page?]&lt;br /&gt;
* [http://youtu.be/HTg_8gbiiN8?t=00m31s 00:31 - Editing via the View Configuration tool]&lt;br /&gt;
* [http://youtu.be/HTg_8gbiiN8?t=01m11s 01:11 - Editing via the 'Edit Page' menu link]&lt;br /&gt;
* [http://youtu.be/HTg_8gbiiN8?t=01m33s 01:33 - Adding content to an existing page]&lt;br /&gt;
* [http://youtu.be/HTg_8gbiiN8?t=03m06s 03:06 - Creating a new page]&lt;br /&gt;
* [http://youtu.be/HTg_8gbiiN8?t=03m42s 03:42 - Copy structure from existing page]&lt;br /&gt;
* [http://youtu.be/HTg_8gbiiN8?t=04m20s 04:20 - Set title and content of new page]&lt;br /&gt;
* [http://youtu.be/HTg_8gbiiN8?t=05m50s 05:50 - Verify page]&lt;br /&gt;
* [http://youtu.be/HTg_8gbiiN8?t=06m05s 06:05 - Add link to menu (edit template)]&lt;br /&gt;
&lt;br /&gt;
==== The Video====&lt;br /&gt;
&amp;lt;youtube&amp;gt;HTg_8gbiiN8&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Notes, Errata and Additional Information====&lt;br /&gt;
&lt;br /&gt;
* EPrints 3.3.14&lt;br /&gt;
* Ubuntu 15.04&lt;br /&gt;
&lt;br /&gt;
==Test Yourself==&lt;br /&gt;
&lt;br /&gt;
* Edit a static page (try [http://demoprints.eprints.org demoprints] if you don't have access to your own test repository)&lt;br /&gt;
* create a new static page&lt;br /&gt;
* create a link to the new static page &lt;br /&gt;
* include a repository phrase in a static page&lt;br /&gt;
&lt;br /&gt;
==More Reading==&lt;br /&gt;
&lt;br /&gt;
* [[How_to_modify_static_pages | How to modify static pages ]]&lt;br /&gt;
* [[Training_Video:Edit_Phrases| Editing phrases]]&lt;br /&gt;
* [[Branding/Logos| Branding your repository]]&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12127</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12127"/>
		<updated>2016-07-05T12:07:00Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field (ideally named &amp;quot;orcid&amp;quot;) available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field (ideally named &amp;quot;orcid&amp;quot;) available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Validate ORCID ID || ORCID ID validated (http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier) ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Lookup ORCID ID || ORCID ID is included in name lookup ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered in EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in citation || ORCID is rendered in citation formats ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in page metadata || ORCID is included in page metadata ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Render ORCID as a link || ORCID is linked to ORCID profile where rendered ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable depositors to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable depositors to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record permissions granted || Permissions granted to ORCID are recorded in EPrints (against User record) ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems harvesting ORCID from EPrints:&lt;br /&gt;
** EThOS (uketd_dc format)&lt;br /&gt;
&lt;br /&gt;
* Is there a need to include ORCID in the IRUS plugin?&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12126</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12126"/>
		<updated>2016-07-05T11:59:10Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field (ideally named &amp;quot;orcid&amp;quot;) available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field (ideally named &amp;quot;orcid&amp;quot;) available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Validate ORCID ID || ORCID ID validated (http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier) ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Lookup ORCID ID || ORCID ID is included in name lookup ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered in EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in citation || ORCID is rendered in citation formats ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in page metadata || ORCID is included in page metadata ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Render ORCID as a link || ORCID is linked to ORCID profile where rendered ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable depositors to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable depositors to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems harvesting ORCID from EPrints:&lt;br /&gt;
** EThOS (uketd_dc format)&lt;br /&gt;
&lt;br /&gt;
* Is there a need to include ORCID in the IRUS plugin?&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12125</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12125"/>
		<updated>2016-07-05T11:58:38Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field (ideally named &amp;quot;orcid&amp;quot;) available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field (ideally named &amp;quot;orcid&amp;quot;) available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Validate ORCID ID || ORCID ID validated (http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier) ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Lookup ORCID ID || ORCID ID is included in name lookup ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered in EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in citation || ORCID is rendered in citation formats ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in page metadata || ORCID is included in page metadata ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Render ORCID as a link || ORCID is linked to ORCID profile where rendered ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable depositors to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable depositors to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems harvesting ORCID from EPrints:&lt;br /&gt;
** EThOS (uketd_dc format)&lt;br /&gt;
&lt;br /&gt;
* Is there a need to include ORCID in the IRUS plugin?&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID&amp;diff=12124</id>
		<title>ORCID</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID&amp;diff=12124"/>
		<updated>2016-07-04T16:17:03Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Add additional identifiers to creators */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page has been created to gather information about how different EPrints repositories have integrated ORCID.&lt;br /&gt;
At this time (April 2016) there doesn't seem to be a 'best practice' approach that has been adopted widely - this will hopefully change over time.&lt;br /&gt;
&lt;br /&gt;
If you are looking to retrieve publications from the ORCID service, the [http://bazaar.eprints.org/354/ Import from ORCID (Tier 1 API)] Bazaar package, or the [https://github.com/eprintsug/orcidt2 ORCID Tier 2 api framework] are good places to start.&lt;br /&gt;
&lt;br /&gt;
2016-05-20 [[User:Alan.stiles@open.ac.uk|Alan Stiles]] at The Open University is working on a plugin to connect EPrints with ORCID via the Tier 2 Members API to retrieve ORCID ids and synchronise publications and affiliation details.&lt;br /&gt;
&lt;br /&gt;
Some aspects that need to be considered when adopting ORCIDs, and making them available to other systems are:&lt;br /&gt;
&lt;br /&gt;
* storing the ORCID (see: http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier)&lt;br /&gt;
* rendering the ORCID in abstract pages (see [http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier link above])&lt;br /&gt;
* exposing ORCIDs over OAI-PMH metadata profiles e.g. RIOXX&lt;br /&gt;
&lt;br /&gt;
NB The examples below may refer to the 'creators' field - but the same approach could be used to extend other 'person' fields - e.g. contributors.&lt;br /&gt;
&lt;br /&gt;
= Re-using creators.id subfield =&lt;br /&gt;
&lt;br /&gt;
The creators.id field is labelled 'email' by default, but as it's an 'id' type field, it can be used to store ORCIDs.&lt;br /&gt;
To re-label the field, a simple addition to a phrase file in &amp;lt;code&amp;gt;archives/ARCHIVEID/cfg/lang/en/phrases/&amp;lt;/code&amp;gt; needs to be made:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;epp:phrase id=&amp;quot;eprint_fieldname_creators_id&amp;quot;&amp;gt;ORCID / Creators email (if known)&amp;lt;/epp:phrase&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Rendering the ORCID in a citation ==&lt;br /&gt;
The rendering of this field then needs to be changed to accommodate an author with an ORCID. The following script adds methods that can be called via the EPScript language:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
# add to e.g. ~/archives/ARCHIVEID/cfg/cfg.d/z_add_to_EPrints_Script_Compiled.pl&lt;br /&gt;
# Write into EPrints::Script::Compiled package to allow use of function in epscript&lt;br /&gt;
{&lt;br /&gt;
package EPrints::Script::Compiled;&lt;br /&gt;
use strict;&lt;br /&gt;
&lt;br /&gt;
sub run_wrro_people_with_orcids&lt;br /&gt;
{&lt;br /&gt;
  my( $self, $state, $value ) = @_;&lt;br /&gt;
&lt;br /&gt;
  my $session = $state-&amp;gt;{session};&lt;br /&gt;
  my $r = $state-&amp;gt;{session}-&amp;gt;make_doc_fragment;&lt;br /&gt;
&lt;br /&gt;
  my $creators = $value-&amp;gt;[0];&lt;br /&gt;
&lt;br /&gt;
  foreach my $i (0..$#$creators){&lt;br /&gt;
&lt;br /&gt;
    my $creator = @$creators[$i];&lt;br /&gt;
&lt;br /&gt;
    if( $i &amp;gt; 0 ){&lt;br /&gt;
      #not first item (or only one item)&lt;br /&gt;
      if( $i == $#$creators ){&lt;br /&gt;
        #last item&lt;br /&gt;
        $r-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot; and &amp;quot; ) );&lt;br /&gt;
      } else {&lt;br /&gt;
        $r-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;, &amp;quot; ) );&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    my $person_span = $session-&amp;gt;make_element( &amp;quot;span&amp;quot;, &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;person&amp;quot; );&lt;br /&gt;
    $person_span-&amp;gt;appendChild( $session-&amp;gt;render_name( $creator-&amp;gt;{name} ) );&lt;br /&gt;
&lt;br /&gt;
    my $id = $creator-&amp;gt;{id};&lt;br /&gt;
    if( defined $id &amp;amp;&amp;amp; $id =~ m/^(?:orcid.org\/)?(\d{4}\-\d{4}\-\d{4}\-\d{3}(?:\d|X))$/ )&lt;br /&gt;
    {&lt;br /&gt;
      my $orcid_span = $session-&amp;gt;make_element( &amp;quot;span&amp;quot;, &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;orcid&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
#   According to https://orcid.org/trademark-and-id-display-guidelines&lt;br /&gt;
#     &amp;quot;recommended display is a hyperlinked URI preceded by the iD icon&amp;quot;&lt;br /&gt;
#   This looks terrible in a citation. Removed for the time being.&lt;br /&gt;
#&lt;br /&gt;
#   my $orcid_link = $session-&amp;gt;make_element(&lt;br /&gt;
#     &amp;quot;a&amp;quot;,&lt;br /&gt;
#     &amp;quot;href&amp;quot; =&amp;gt; &amp;quot;http://orcid.org/&amp;quot;,&lt;br /&gt;
#     &amp;quot;target&amp;quot; =&amp;gt; &amp;quot;_blank&amp;quot;,&lt;br /&gt;
#     &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;orcid-icon&amp;quot;&lt;br /&gt;
#   );&lt;br /&gt;
#   $orcid_link-&amp;gt;appendChild( $session-&amp;gt;make_element(&lt;br /&gt;
#     &amp;quot;img&amp;quot;,&lt;br /&gt;
#     &amp;quot;src&amp;quot; =&amp;gt; &amp;quot;/images/orcid_16x16.png&amp;quot;,&lt;br /&gt;
#     &amp;quot;title&amp;quot; =&amp;gt; &amp;quot;ORCID&amp;quot;&lt;br /&gt;
#   ) );&lt;br /&gt;
#   $orcid_span-&amp;gt;appendChild( $orcid_link );&lt;br /&gt;
&lt;br /&gt;
      my $link = $session-&amp;gt;make_element(&lt;br /&gt;
        &amp;quot;a&amp;quot;,&lt;br /&gt;
        &amp;quot;href&amp;quot; =&amp;gt; &amp;quot;http://orcid.org/$1&amp;quot;,&lt;br /&gt;
        &amp;quot;target&amp;quot; =&amp;gt; &amp;quot;_blank&amp;quot;,&lt;br /&gt;
      );&lt;br /&gt;
      $link-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;orcid.org/$1&amp;quot; ) );&lt;br /&gt;
&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;(&amp;quot; ) );&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $link );&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;)&amp;quot; ) );&lt;br /&gt;
&lt;br /&gt;
      $person_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot; &amp;quot; ) );&lt;br /&gt;
      $person_span-&amp;gt;appendChild( $orcid_span );&lt;br /&gt;
    }&lt;br /&gt;
    $r-&amp;gt;appendChild( $person_span );&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  return [ $r, &amp;quot;XHTML&amp;quot; ];&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
# END EPrints::Script::Compiled additions&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may also want a bit of CSS to style ORCID links&lt;br /&gt;
&amp;lt;source lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
/* Add to e.g. ~/archives/ARCHIVEID/cfg/static/style/auto/zzz_orcid.css */&lt;br /&gt;
.person:hover {border-bottom: 1px dashed #a6ce39;}&lt;br /&gt;
.orcid {}&lt;br /&gt;
.orcid a:hover {&lt;br /&gt;
        color: #a6ce39;&lt;br /&gt;
}&lt;br /&gt;
.orcid-icon {}&lt;br /&gt;
.orcid-icon img { vertical-align: text-bottom; margin: 0 4px 0 2px; }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And finally, you have to call the new EPScript function from a citation file e.g. &amp;lt;code&amp;gt;archives/ARCHIVEID/cfg/citations/eprint/default.xml&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- replace reference to e.g. &amp;lt;print expr=&amp;quot;creators_name&amp;quot;/&amp;gt; with this: --&amp;gt;&lt;br /&gt;
    &amp;lt;print expr=&amp;quot;wrro_people_with_orcids(creators)&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Exposing the ORCID in RIOXX ==&lt;br /&gt;
Based on re-using the creators.id field, this block of code over-writes the default &amp;lt;code&amp;gt;rioxx2_value_author&amp;lt;/code&amp;gt; function.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
# Add to e.g. ~/archives/ARCHIVEID/cfg/cfg.d/zzz_rioxx2_overwrites.pl&lt;br /&gt;
$c-&amp;gt;{rioxx2_value_author} = sub {&lt;br /&gt;
  my( $eprint ) = @_;&lt;br /&gt;
&lt;br /&gt;
  my @authors;&lt;br /&gt;
  for( @{ $eprint-&amp;gt;value( &amp;quot;creators&amp;quot; ) } )&lt;br /&gt;
  {&lt;br /&gt;
    my $id = $_-&amp;gt;{id};&lt;br /&gt;
    if( defined $id &amp;amp;&amp;amp; $id =~ m/^(?:orcid.org\/)?(\d{4}\-\d{4}\-\d{4}\-\d{3}(?:\d|X))$/ )&lt;br /&gt;
    {&lt;br /&gt;
      push @authors, {&lt;br /&gt;
        author =&amp;gt; EPrints::Utils::make_name_string( $_-&amp;gt;{name} ),&lt;br /&gt;
        id =&amp;gt; &amp;quot;http://orcid.org/$1&amp;quot;&lt;br /&gt;
      };&lt;br /&gt;
    } else {&lt;br /&gt;
      push @authors, {&lt;br /&gt;
        author =&amp;gt; EPrints::Utils::make_name_string( $_-&amp;gt;{name} ),&lt;br /&gt;
      };&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  #NB If your corp_creators has DOIs or ISNIs for the entries, a similar method could be used to include these here.&lt;br /&gt;
  foreach my $corp ( @{ $eprint-&amp;gt;value( &amp;quot;corp_creators&amp;quot; ) } )&lt;br /&gt;
  {&lt;br /&gt;
    my $entry = {};&lt;br /&gt;
    $entry-&amp;gt;{name} = $corp;&lt;br /&gt;
    push @authors, { author =&amp;gt; $corp };&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  return \@authors;&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Add additional identifiers to creators =&lt;br /&gt;
Another approach to storing ORCIDs is to add an additional sub-field to the creator field.&lt;br /&gt;
This has been discussed on the Eprints tech list. If you know how to do this, please document it here!&lt;br /&gt;
&lt;br /&gt;
This is how University of Bath has done it.  We're getting the ORCID data from another system, so have used a text field to capture it for display.  At present there is no special rendering on it, it's just displaying as a number.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	name =&amp;gt; 'creators',&lt;br /&gt;
	type =&amp;gt; 'compound',&lt;br /&gt;
	multiple =&amp;gt; 1,&lt;br /&gt;
	fields =&amp;gt; [&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'name',&lt;br /&gt;
			type =&amp;gt; 'name',&lt;br /&gt;
			hide_honourific =&amp;gt; 1,&lt;br /&gt;
			hide_lineage =&amp;gt; 1,&lt;br /&gt;
			family_first =&amp;gt; 1,&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'id',&lt;br /&gt;
			type =&amp;gt; 'text',&lt;br /&gt;
			input_cols =&amp;gt; 20,&lt;br /&gt;
			allow_null =&amp;gt; 1,&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'orcid',&lt;br /&gt;
			type =&amp;gt; 'text',&lt;br /&gt;
			input_cols =&amp;gt; 20,&lt;br /&gt;
			allow_null =&amp;gt; 1,&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
	],&lt;br /&gt;
	input_boxes =&amp;gt; 4,&lt;br /&gt;
},&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This is how University of Pittsburgh has done it:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
          {&lt;br /&gt;
            'name' =&amp;gt; 'creators',&lt;br /&gt;
            'type' =&amp;gt; 'compound',&lt;br /&gt;
            'multiple' =&amp;gt; 1,&lt;br /&gt;
            'fields' =&amp;gt; [&lt;br /&gt;
                          {&lt;br /&gt;
                            'sub_name' =&amp;gt; 'name',&lt;br /&gt;
                            'type' =&amp;gt; 'name',&lt;br /&gt;
                            'hide_honourific' =&amp;gt; 1,&lt;br /&gt;
                            'hide_lineage' =&amp;gt; 1,&lt;br /&gt;
                            'family_first' =&amp;gt; 1,&lt;br /&gt;
                          },&lt;br /&gt;
                          {&lt;br /&gt;
                            'sub_name' =&amp;gt; 'email',&lt;br /&gt;
                            'type' =&amp;gt; 'text',&lt;br /&gt;
                            'input_cols' =&amp;gt; 20,&lt;br /&gt;
                            'allow_null' =&amp;gt; 1,&lt;br /&gt;
                          },&lt;br /&gt;
                          {&lt;br /&gt;
                            'sub_name' =&amp;gt; 'id',&lt;br /&gt;
                            'type' =&amp;gt; 'text',&lt;br /&gt;
                            'input_cols' =&amp;gt; 20,&lt;br /&gt;
                            'allow_null' =&amp;gt; 1,&lt;br /&gt;
                          },&lt;br /&gt;
                          {&lt;br /&gt;
                            'sub_name' =&amp;gt; 'orcid',&lt;br /&gt;
                            'type' =&amp;gt; 'id',&lt;br /&gt;
                            'input_cols' =&amp;gt; 19,&lt;br /&gt;
                            'allow_null' =&amp;gt; 1,&lt;br /&gt;
                          },&lt;br /&gt;
                        ],&lt;br /&gt;
            'input_boxes' =&amp;gt; 4,&lt;br /&gt;
            'render_value' =&amp;gt; 'custom_render_creators_with_orcid',&lt;br /&gt;
          },&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Notes from Pittsburgh:==&lt;br /&gt;
&lt;br /&gt;
We have added some ORCID functionality in our IR System here at the University of Pittsburgh.  We however have not “linked” our IR with orcid.org in anyway such as we do not have a lookup user in ORCID or the ability to add publications from ORCID to our IR.  The only link is the entering of the ORCID into the system so that it can be displayed.&lt;br /&gt;
&lt;br /&gt;
An example record is available here: [http://d-scholarship.pitt.edu/28114/ http://d-scholarship.pitt.edu/28114/]&lt;br /&gt;
&lt;br /&gt;
# Users have an ORCID field in their profile – user_fields.pl&lt;br /&gt;
# Any “Creator” types have an ORCID field added to the workflow – eprint_fields.pl&lt;br /&gt;
# We have added ORCID validation adhering to this document: [http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier] - eprint_validate.pl&lt;br /&gt;
# We have added the ORCID to the “lookup” function to populate the ORCID field. – cgi/users/lookup/name&lt;br /&gt;
# We display the ORCID as such on the input form, where the green icon links out to our own orcid.pitt.edu site, but could be to orcid.org by default.&lt;br /&gt;
# We display the ORCID as such on the public display of the record where the ORCID is linked out to orcid.org (see [http://d-scholarship.pitt.edu/28114/ example record])&lt;br /&gt;
&lt;br /&gt;
(Information courtesy of Brian Gregg)&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID&amp;diff=12123</id>
		<title>ORCID</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID&amp;diff=12123"/>
		<updated>2016-07-04T16:11:34Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Add additional identifiers to creators */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page has been created to gather information about how different EPrints repositories have integrated ORCID.&lt;br /&gt;
At this time (April 2016) there doesn't seem to be a 'best practice' approach that has been adopted widely - this will hopefully change over time.&lt;br /&gt;
&lt;br /&gt;
If you are looking to retrieve publications from the ORCID service, the [http://bazaar.eprints.org/354/ Import from ORCID (Tier 1 API)] Bazaar package, or the [https://github.com/eprintsug/orcidt2 ORCID Tier 2 api framework] are good places to start.&lt;br /&gt;
&lt;br /&gt;
2016-05-20 [[User:Alan.stiles@open.ac.uk|Alan Stiles]] at The Open University is working on a plugin to connect EPrints with ORCID via the Tier 2 Members API to retrieve ORCID ids and synchronise publications and affiliation details.&lt;br /&gt;
&lt;br /&gt;
Some aspects that need to be considered when adopting ORCIDs, and making them available to other systems are:&lt;br /&gt;
&lt;br /&gt;
* storing the ORCID (see: http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier)&lt;br /&gt;
* rendering the ORCID in abstract pages (see [http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier link above])&lt;br /&gt;
* exposing ORCIDs over OAI-PMH metadata profiles e.g. RIOXX&lt;br /&gt;
&lt;br /&gt;
NB The examples below may refer to the 'creators' field - but the same approach could be used to extend other 'person' fields - e.g. contributors.&lt;br /&gt;
&lt;br /&gt;
= Re-using creators.id subfield =&lt;br /&gt;
&lt;br /&gt;
The creators.id field is labelled 'email' by default, but as it's an 'id' type field, it can be used to store ORCIDs.&lt;br /&gt;
To re-label the field, a simple addition to a phrase file in &amp;lt;code&amp;gt;archives/ARCHIVEID/cfg/lang/en/phrases/&amp;lt;/code&amp;gt; needs to be made:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;epp:phrase id=&amp;quot;eprint_fieldname_creators_id&amp;quot;&amp;gt;ORCID / Creators email (if known)&amp;lt;/epp:phrase&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Rendering the ORCID in a citation ==&lt;br /&gt;
The rendering of this field then needs to be changed to accommodate an author with an ORCID. The following script adds methods that can be called via the EPScript language:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
# add to e.g. ~/archives/ARCHIVEID/cfg/cfg.d/z_add_to_EPrints_Script_Compiled.pl&lt;br /&gt;
# Write into EPrints::Script::Compiled package to allow use of function in epscript&lt;br /&gt;
{&lt;br /&gt;
package EPrints::Script::Compiled;&lt;br /&gt;
use strict;&lt;br /&gt;
&lt;br /&gt;
sub run_wrro_people_with_orcids&lt;br /&gt;
{&lt;br /&gt;
  my( $self, $state, $value ) = @_;&lt;br /&gt;
&lt;br /&gt;
  my $session = $state-&amp;gt;{session};&lt;br /&gt;
  my $r = $state-&amp;gt;{session}-&amp;gt;make_doc_fragment;&lt;br /&gt;
&lt;br /&gt;
  my $creators = $value-&amp;gt;[0];&lt;br /&gt;
&lt;br /&gt;
  foreach my $i (0..$#$creators){&lt;br /&gt;
&lt;br /&gt;
    my $creator = @$creators[$i];&lt;br /&gt;
&lt;br /&gt;
    if( $i &amp;gt; 0 ){&lt;br /&gt;
      #not first item (or only one item)&lt;br /&gt;
      if( $i == $#$creators ){&lt;br /&gt;
        #last item&lt;br /&gt;
        $r-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot; and &amp;quot; ) );&lt;br /&gt;
      } else {&lt;br /&gt;
        $r-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;, &amp;quot; ) );&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    my $person_span = $session-&amp;gt;make_element( &amp;quot;span&amp;quot;, &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;person&amp;quot; );&lt;br /&gt;
    $person_span-&amp;gt;appendChild( $session-&amp;gt;render_name( $creator-&amp;gt;{name} ) );&lt;br /&gt;
&lt;br /&gt;
    my $id = $creator-&amp;gt;{id};&lt;br /&gt;
    if( defined $id &amp;amp;&amp;amp; $id =~ m/^(?:orcid.org\/)?(\d{4}\-\d{4}\-\d{4}\-\d{3}(?:\d|X))$/ )&lt;br /&gt;
    {&lt;br /&gt;
      my $orcid_span = $session-&amp;gt;make_element( &amp;quot;span&amp;quot;, &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;orcid&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
#   According to https://orcid.org/trademark-and-id-display-guidelines&lt;br /&gt;
#     &amp;quot;recommended display is a hyperlinked URI preceded by the iD icon&amp;quot;&lt;br /&gt;
#   This looks terrible in a citation. Removed for the time being.&lt;br /&gt;
#&lt;br /&gt;
#   my $orcid_link = $session-&amp;gt;make_element(&lt;br /&gt;
#     &amp;quot;a&amp;quot;,&lt;br /&gt;
#     &amp;quot;href&amp;quot; =&amp;gt; &amp;quot;http://orcid.org/&amp;quot;,&lt;br /&gt;
#     &amp;quot;target&amp;quot; =&amp;gt; &amp;quot;_blank&amp;quot;,&lt;br /&gt;
#     &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;orcid-icon&amp;quot;&lt;br /&gt;
#   );&lt;br /&gt;
#   $orcid_link-&amp;gt;appendChild( $session-&amp;gt;make_element(&lt;br /&gt;
#     &amp;quot;img&amp;quot;,&lt;br /&gt;
#     &amp;quot;src&amp;quot; =&amp;gt; &amp;quot;/images/orcid_16x16.png&amp;quot;,&lt;br /&gt;
#     &amp;quot;title&amp;quot; =&amp;gt; &amp;quot;ORCID&amp;quot;&lt;br /&gt;
#   ) );&lt;br /&gt;
#   $orcid_span-&amp;gt;appendChild( $orcid_link );&lt;br /&gt;
&lt;br /&gt;
      my $link = $session-&amp;gt;make_element(&lt;br /&gt;
        &amp;quot;a&amp;quot;,&lt;br /&gt;
        &amp;quot;href&amp;quot; =&amp;gt; &amp;quot;http://orcid.org/$1&amp;quot;,&lt;br /&gt;
        &amp;quot;target&amp;quot; =&amp;gt; &amp;quot;_blank&amp;quot;,&lt;br /&gt;
      );&lt;br /&gt;
      $link-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;orcid.org/$1&amp;quot; ) );&lt;br /&gt;
&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;(&amp;quot; ) );&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $link );&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;)&amp;quot; ) );&lt;br /&gt;
&lt;br /&gt;
      $person_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot; &amp;quot; ) );&lt;br /&gt;
      $person_span-&amp;gt;appendChild( $orcid_span );&lt;br /&gt;
    }&lt;br /&gt;
    $r-&amp;gt;appendChild( $person_span );&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  return [ $r, &amp;quot;XHTML&amp;quot; ];&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
# END EPrints::Script::Compiled additions&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may also want a bit of CSS to style ORCID links&lt;br /&gt;
&amp;lt;source lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
/* Add to e.g. ~/archives/ARCHIVEID/cfg/static/style/auto/zzz_orcid.css */&lt;br /&gt;
.person:hover {border-bottom: 1px dashed #a6ce39;}&lt;br /&gt;
.orcid {}&lt;br /&gt;
.orcid a:hover {&lt;br /&gt;
        color: #a6ce39;&lt;br /&gt;
}&lt;br /&gt;
.orcid-icon {}&lt;br /&gt;
.orcid-icon img { vertical-align: text-bottom; margin: 0 4px 0 2px; }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And finally, you have to call the new EPScript function from a citation file e.g. &amp;lt;code&amp;gt;archives/ARCHIVEID/cfg/citations/eprint/default.xml&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- replace reference to e.g. &amp;lt;print expr=&amp;quot;creators_name&amp;quot;/&amp;gt; with this: --&amp;gt;&lt;br /&gt;
    &amp;lt;print expr=&amp;quot;wrro_people_with_orcids(creators)&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Exposing the ORCID in RIOXX ==&lt;br /&gt;
Based on re-using the creators.id field, this block of code over-writes the default &amp;lt;code&amp;gt;rioxx2_value_author&amp;lt;/code&amp;gt; function.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
# Add to e.g. ~/archives/ARCHIVEID/cfg/cfg.d/zzz_rioxx2_overwrites.pl&lt;br /&gt;
$c-&amp;gt;{rioxx2_value_author} = sub {&lt;br /&gt;
  my( $eprint ) = @_;&lt;br /&gt;
&lt;br /&gt;
  my @authors;&lt;br /&gt;
  for( @{ $eprint-&amp;gt;value( &amp;quot;creators&amp;quot; ) } )&lt;br /&gt;
  {&lt;br /&gt;
    my $id = $_-&amp;gt;{id};&lt;br /&gt;
    if( defined $id &amp;amp;&amp;amp; $id =~ m/^(?:orcid.org\/)?(\d{4}\-\d{4}\-\d{4}\-\d{3}(?:\d|X))$/ )&lt;br /&gt;
    {&lt;br /&gt;
      push @authors, {&lt;br /&gt;
        author =&amp;gt; EPrints::Utils::make_name_string( $_-&amp;gt;{name} ),&lt;br /&gt;
        id =&amp;gt; &amp;quot;http://orcid.org/$1&amp;quot;&lt;br /&gt;
      };&lt;br /&gt;
    } else {&lt;br /&gt;
      push @authors, {&lt;br /&gt;
        author =&amp;gt; EPrints::Utils::make_name_string( $_-&amp;gt;{name} ),&lt;br /&gt;
      };&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  #NB If your corp_creators has DOIs or ISNIs for the entries, a similar method could be used to include these here.&lt;br /&gt;
  foreach my $corp ( @{ $eprint-&amp;gt;value( &amp;quot;corp_creators&amp;quot; ) } )&lt;br /&gt;
  {&lt;br /&gt;
    my $entry = {};&lt;br /&gt;
    $entry-&amp;gt;{name} = $corp;&lt;br /&gt;
    push @authors, { author =&amp;gt; $corp };&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  return \@authors;&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Add additional identifiers to creators =&lt;br /&gt;
Another approach to storing ORCIDs is to add an additional sub-field to the creator field.&lt;br /&gt;
This has been discussed on the Eprints tech list. If you know how to do this, please document it here!&lt;br /&gt;
&lt;br /&gt;
This is how University of Bath has done it.  We're getting the ORCID data from another system, so have used a text field to capture it for display.  At present there is no special rendering on it, it's just displaying as a number.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	name =&amp;gt; 'creators',&lt;br /&gt;
	type =&amp;gt; 'compound',&lt;br /&gt;
	multiple =&amp;gt; 1,&lt;br /&gt;
	fields =&amp;gt; [&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'name',&lt;br /&gt;
			type =&amp;gt; 'name',&lt;br /&gt;
			hide_honourific =&amp;gt; 1,&lt;br /&gt;
			hide_lineage =&amp;gt; 1,&lt;br /&gt;
			family_first =&amp;gt; 1,&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'id',&lt;br /&gt;
			type =&amp;gt; 'text',&lt;br /&gt;
			input_cols =&amp;gt; 20,&lt;br /&gt;
			allow_null =&amp;gt; 1,&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'orcid',&lt;br /&gt;
			type =&amp;gt; 'text',&lt;br /&gt;
			input_cols =&amp;gt; 20,&lt;br /&gt;
			allow_null =&amp;gt; 1,&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
	],&lt;br /&gt;
	input_boxes =&amp;gt; 4,&lt;br /&gt;
},&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This is how University of Pittsburgh has done it:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
          {&lt;br /&gt;
            'name' =&amp;gt; 'creators',&lt;br /&gt;
            'type' =&amp;gt; 'compound',&lt;br /&gt;
            'multiple' =&amp;gt; 1,&lt;br /&gt;
            'fields' =&amp;gt; [&lt;br /&gt;
                          {&lt;br /&gt;
                            'sub_name' =&amp;gt; 'name',&lt;br /&gt;
                            'type' =&amp;gt; 'name',&lt;br /&gt;
                            'hide_honourific' =&amp;gt; 1,&lt;br /&gt;
                            'hide_lineage' =&amp;gt; 1,&lt;br /&gt;
                            'family_first' =&amp;gt; 1,&lt;br /&gt;
                          },&lt;br /&gt;
                          {&lt;br /&gt;
                            'sub_name' =&amp;gt; 'email',&lt;br /&gt;
                            'type' =&amp;gt; 'text',&lt;br /&gt;
                            'input_cols' =&amp;gt; 20,&lt;br /&gt;
                            'allow_null' =&amp;gt; 1,&lt;br /&gt;
                          },&lt;br /&gt;
                          {&lt;br /&gt;
                            'sub_name' =&amp;gt; 'id',&lt;br /&gt;
                            'type' =&amp;gt; 'text',&lt;br /&gt;
                            'input_cols' =&amp;gt; 20,&lt;br /&gt;
                            'allow_null' =&amp;gt; 1,&lt;br /&gt;
                          },&lt;br /&gt;
                          {&lt;br /&gt;
                            'sub_name' =&amp;gt; 'orcid',&lt;br /&gt;
                            'type' =&amp;gt; 'id',&lt;br /&gt;
                            'input_cols' =&amp;gt; 19,&lt;br /&gt;
                            'allow_null' =&amp;gt; 1,&lt;br /&gt;
                          },&lt;br /&gt;
                        ],&lt;br /&gt;
            'input_boxes' =&amp;gt; 4,&lt;br /&gt;
            'render_value' =&amp;gt; 'custom_render_creators_with_orcid',&lt;br /&gt;
          },&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12122</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12122"/>
		<updated>2016-06-29T11:45:46Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field (ideally named &amp;quot;orcid&amp;quot;) available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field (ideally named &amp;quot;orcid&amp;quot;) available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Validate ORCID ID || ORCID ID validated (http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier) ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Lookup ORCID ID || ORCID ID is included in name lookup ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered in EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in citation || ORCID is rendered in citation formats ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in page metadata || ORCID is included in page metadata ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Render ORCID as a link || ORCID is linked to ORCID profile where rendered ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems harvesting ORCID from EPrints:&lt;br /&gt;
** EThOS (uketd_dc format)&lt;br /&gt;
&lt;br /&gt;
* Is there a need to include ORCID in the IRUS plugin?&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12121</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12121"/>
		<updated>2016-06-29T11:44:42Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Validate ORCID ID || ORCID ID validated (http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier) ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Lookup ORCID ID || ORCID ID is included in name lookup ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered in EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in citation || ORCID is rendered in citation formats ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in page metadata || ORCID is included in page metadata ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Render ORCID as a link || ORCID is linked to ORCID profile where rendered ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems harvesting ORCID from EPrints:&lt;br /&gt;
** EThOS (uketd_dc format)&lt;br /&gt;
&lt;br /&gt;
* Is there a need to include ORCID in the IRUS plugin?&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12120</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12120"/>
		<updated>2016-06-29T11:42:35Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Validate ORCID ID || ORCID ID validated (http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier) ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered in EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in citation || ORCID is rendered in citation formats ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in page metadata || ORCID is included in page metadata ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Render ORCID as a link || ORCID is linked to ORCID profile where rendered ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems harvesting ORCID from EPrints:&lt;br /&gt;
** EThOS (uketd_dc format)&lt;br /&gt;
&lt;br /&gt;
* Is there a need to include ORCID in the IRUS plugin?&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12119</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12119"/>
		<updated>2016-06-29T11:39:13Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered in EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in citation || ORCID is rendered in citation formats ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in page metadata || ORCID is included in page metadata ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Render ORCID as a link || ORCID is linked to ORCID profile where rendered ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems harvesting ORCID from EPrints:&lt;br /&gt;
** EThOS (uketd_dc format)&lt;br /&gt;
&lt;br /&gt;
* Is there a need to include ORCID in the IRUS plugin?&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12118</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12118"/>
		<updated>2016-06-29T11:28:39Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Compatibility */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered in EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in citation || ORCID is rendered in citation formats ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in page metadata || ORCID is included in page metadata ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems harvesting ORCID from EPrints:&lt;br /&gt;
** EThOS (uketd_dc format)&lt;br /&gt;
&lt;br /&gt;
* Is there a need to include ORCID in the IRUS plugin?&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12117</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12117"/>
		<updated>2016-06-29T11:22:08Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Compatibility */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered in EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in citation || ORCID is rendered in citation formats ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in page metadata || ORCID is included in page metadata ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;br /&gt;
&lt;br /&gt;
* Is there a need to include ORCID in the IRUS plugin?&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12116</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12116"/>
		<updated>2016-06-29T11:21:28Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered in EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in citation || ORCID is rendered in citation formats ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in page metadata || ORCID is included in page metadata ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12115</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12115"/>
		<updated>2016-06-29T10:59:26Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied&amp;lt;ref&amp;gt;oai_dc does not support attributes on the 'people' elements (e.g. creator). Exposing ORCIDs via oai_dc is NOT a real option. An extension to oai_dc profile may need to be made!&amp;lt;/ref&amp;gt; ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;br /&gt;
&lt;br /&gt;
* Known third-party systems being used to integrate with ORCID:&lt;br /&gt;
** Pure&lt;br /&gt;
** Oracle Database HR System&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=User:E.jennings@bath.ac.uk&amp;diff=12107</id>
		<title>User:E.jennings@bath.ac.uk</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=User:E.jennings@bath.ac.uk&amp;diff=12107"/>
		<updated>2016-06-20T10:47:00Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: Created page with &amp;quot;Technical Data Officer at University of Bath&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Technical Data Officer at University of Bath&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12092</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12092"/>
		<updated>2016-06-09T16:05:14Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to capture requirements for ORCID integrations, with a view to agreeing a community vision for EPrints development.&lt;br /&gt;
&lt;br /&gt;
To see existing integrations, visit the [[ORCID]] page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12091</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12091"/>
		<updated>2016-06-09T16:00:22Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
At present, all these items are &amp;quot;Suggested&amp;quot; - a survey will be compiled from this and circulated to form a proposal, with a MoSCoW analysis for each item.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered EPrint abstract pages ||  ||  ||  ||  || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID ||  ||  ||  || || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied ||  ||  ||  ||  || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12090</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12090"/>
		<updated>2016-06-09T15:55:04Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! End User !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile || Could || Could || Must || - || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record || Must || Should || Should || - || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile || Could || Could || Should || Could || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered EPrint abstract pages || Should || Should || Should || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID || Won't || Must || Should || - || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID || Won't || Won't || Should || - || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied || Should || Should || Should || Must || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12089</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12089"/>
		<updated>2016-06-09T15:53:20Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile || Could || Could || Must || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record || Must || Should || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile || Could || Could || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered EPrint abstract pages || Should || Should || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID || Won't || Must || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID || Won't || Won't || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Include ORCID in export formats || All export formats include ORCID where supplied || Should || Should || Should || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12088</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12088"/>
		<updated>2016-06-09T14:19:51Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile || Could || Could || Must || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record || Must || Should || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in User Profile || ORCID is rendered in User Profile || Could || Could || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID in EPrint abstract page || ORCID is rendered EPrint abstract pages || Should || Should || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to import items from ORCID || Records can be imported from ORCID || Won't || Must || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Enable administrators to export items to ORCID || Records can be exported to ORCID || Won't || Won't || Should || Suggested&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12087</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12087"/>
		<updated>2016-06-09T14:16:31Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record ORCID ID in User Profile || Could || Could || Must || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record ORCID ID in EPrint record || Must || Should || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Display ORCID ID against user || EPrints field available and render method available to display ORCID ID in User Profile || Could || Could || Should || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available and render method available to display ORCID ID in EPrint record || Should || Should || Should || Suggested&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Concerns==&lt;br /&gt;
&lt;br /&gt;
===Compatibility===&lt;br /&gt;
&lt;br /&gt;
* The plugin needs to be compatible with other standard plugins, e.g. Rioxx&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12086</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12086"/>
		<updated>2016-06-09T11:26:00Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository which records ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''I need''' to render the ORCID as a link&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display the ID in the recommended format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record and / or display ORCID ID in User Profile || Could || Could || Must || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record and / or display ORCID ID in EPrint record || Must || Should || Should || Suggested&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12085</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=12085"/>
		<updated>2016-06-09T10:55:35Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===End User===&lt;br /&gt;
&lt;br /&gt;
'''As a''' third party harvesting from EPrints&lt;br /&gt;
&lt;br /&gt;
'''I need''' ORCID IDs to be exported in all metadata formats, not just oai_dc&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' reuse the metadata in my system&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record and / or display ORCID ID in User Profile || Could || Could || Must || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record and / or display ORCID ID in EPrint record || Must || Should || Should || Suggested&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=11993</id>
		<title>ORCID connector</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID_connector&amp;diff=11993"/>
		<updated>2016-05-25T15:45:40Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: Created page with &amp;quot;==Use Cases==  ===No API connection===  '''As a''' repository connecting to ORCID through another system  '''I need''' a field to record ORCID IDs  '''So that I can''' display...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Use Cases==&lt;br /&gt;
&lt;br /&gt;
===No API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through another system&lt;br /&gt;
&lt;br /&gt;
'''I need''' a field to record ORCID IDs&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' display and link the ORCID ID to other systems&lt;br /&gt;
&lt;br /&gt;
===Tier 1 (public) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository&lt;br /&gt;
&lt;br /&gt;
'''I need''' to harvest information from ORCID public profiles&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' populate item records with information&lt;br /&gt;
&lt;br /&gt;
===Tier 2 (private) API connection===&lt;br /&gt;
&lt;br /&gt;
'''As a''' repository connecting to ORCID through this system&lt;br /&gt;
&lt;br /&gt;
'''I need''' to communicate with ORCID&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' authenticate ORCID IDs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''As a''' researcher&lt;br /&gt;
&lt;br /&gt;
'''I need''' to choose which permissions to give my institution&lt;br /&gt;
&lt;br /&gt;
'''So that I can''' integrate my ORCID to meet my personal requirements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
This table is designed to record requirements for ORCID plugin development.  It shows the function, how you would test it is doing the intended job, how desirable it is for each level of integration and whether the information is suggested, proposed or agreed by the community.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Function !! Test !! No API !! Tier 1 API !! Tier 2 API !! Status&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against user || EPrints field available to record and / or display ORCID ID in User Profile || Could || Could || Must || Suggested&lt;br /&gt;
|-&lt;br /&gt;
|| Record ORCID ID against creator || EPrints field available to record and / or display ORCID ID in EPrint record || Must || Should || Should || Suggested&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID&amp;diff=11988</id>
		<title>ORCID</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID&amp;diff=11988"/>
		<updated>2016-05-20T11:37:04Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Add additional identifiers to creators */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page has been created to gather information about how different EPrints repositories have integrated ORCID.&lt;br /&gt;
At this time (April 2016) there doesn't seem to be a 'best practice' approach that has been adopted widely - this will hopefully change over time.&lt;br /&gt;
&lt;br /&gt;
If you are looking to retrieve publications from the ORCID service, the [http://bazaar.eprints.org/354/ Import from ORCID (Tier 1 API)] Bazaar package, or the [https://github.com/eprintsug/orcidt2 ORCID Tier 2 api framework] are good places to start.&lt;br /&gt;
&lt;br /&gt;
Some aspects that need to be considered when adopting ORCIDs, and making them available to other systems are:&lt;br /&gt;
&lt;br /&gt;
* storing the ORCID (see: http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier)&lt;br /&gt;
* rendering the ORCID in abstract pages (see [http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier link above])&lt;br /&gt;
* exposing ORCIDs over OAI-PMH metadata profiles e.g. RIOXX&lt;br /&gt;
&lt;br /&gt;
NB The examples below may refer to the 'creators' field - but the same approach could be used to extend other 'person' fields - e.g. contributors.&lt;br /&gt;
&lt;br /&gt;
= Re-using creators.id subfield =&lt;br /&gt;
&lt;br /&gt;
The creators.id field is labelled 'email' by default, but as it's an 'id' type field, it can be used to store ORCIDs.&lt;br /&gt;
To re-label the field, a simple addition to a phrase file in &amp;lt;code&amp;gt;archives/ARCHIVEID/cfg/lang/en/phrases/&amp;lt;/code&amp;gt; needs to be made:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;epp:phrase id=&amp;quot;eprint_fieldname_creators_id&amp;quot;&amp;gt;ORCID / Creators email (if known)&amp;lt;/epp:phrase&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Rendering the ORCID in a citation ==&lt;br /&gt;
The rendering of this field then needs to be changed to accommodate an author with an ORCID. The following script adds methods that can be called via the EPScript language:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
# add to e.g. ~/archives/ARCHIVEID/cfg/cfg.d/z_add_to_EPrints_Script_Compiled.pl&lt;br /&gt;
# Write into EPrints::Script::Compiled package to allow use of function in epscript&lt;br /&gt;
{&lt;br /&gt;
package EPrints::Script::Compiled;&lt;br /&gt;
use strict;&lt;br /&gt;
&lt;br /&gt;
sub run_wrro_people_with_orcids&lt;br /&gt;
{&lt;br /&gt;
  my( $self, $state, $value ) = @_;&lt;br /&gt;
&lt;br /&gt;
  my $session = $state-&amp;gt;{session};&lt;br /&gt;
  my $r = $state-&amp;gt;{session}-&amp;gt;make_doc_fragment;&lt;br /&gt;
&lt;br /&gt;
  my $creators = $value-&amp;gt;[0];&lt;br /&gt;
&lt;br /&gt;
  foreach my $i (0..$#$creators){&lt;br /&gt;
&lt;br /&gt;
    my $creator = @$creators[$i];&lt;br /&gt;
&lt;br /&gt;
    if( $i &amp;gt; 0 ){&lt;br /&gt;
      #not first item (or only one item)&lt;br /&gt;
      if( $i == $#$creators ){&lt;br /&gt;
        #last item&lt;br /&gt;
        $r-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot; and &amp;quot; ) );&lt;br /&gt;
      } else {&lt;br /&gt;
        $r-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;, &amp;quot; ) );&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    my $person_span = $session-&amp;gt;make_element( &amp;quot;span&amp;quot;, &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;person&amp;quot; );&lt;br /&gt;
    $person_span-&amp;gt;appendChild( $session-&amp;gt;render_name( $creator-&amp;gt;{name} ) );&lt;br /&gt;
&lt;br /&gt;
    my $id = $creator-&amp;gt;{id};&lt;br /&gt;
    if( defined $id &amp;amp;&amp;amp; $id =~ m/^(?:orcid.org\/)?(\d{4}\-\d{4}\-\d{4}\-\d{3}(?:\d|X))$/ )&lt;br /&gt;
    {&lt;br /&gt;
      my $orcid_span = $session-&amp;gt;make_element( &amp;quot;span&amp;quot;, &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;orcid&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
#   According to https://orcid.org/trademark-and-id-display-guidelines&lt;br /&gt;
#     &amp;quot;recommended display is a hyperlinked URI preceded by the iD icon&amp;quot;&lt;br /&gt;
#   This looks terrible in a citation. Removed for the time being.&lt;br /&gt;
#&lt;br /&gt;
#   my $orcid_link = $session-&amp;gt;make_element(&lt;br /&gt;
#     &amp;quot;a&amp;quot;,&lt;br /&gt;
#     &amp;quot;href&amp;quot; =&amp;gt; &amp;quot;http://orcid.org/&amp;quot;,&lt;br /&gt;
#     &amp;quot;target&amp;quot; =&amp;gt; &amp;quot;_blank&amp;quot;,&lt;br /&gt;
#     &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;orcid-icon&amp;quot;&lt;br /&gt;
#   );&lt;br /&gt;
#   $orcid_link-&amp;gt;appendChild( $session-&amp;gt;make_element(&lt;br /&gt;
#     &amp;quot;img&amp;quot;,&lt;br /&gt;
#     &amp;quot;src&amp;quot; =&amp;gt; &amp;quot;/images/orcid_16x16.png&amp;quot;,&lt;br /&gt;
#     &amp;quot;title&amp;quot; =&amp;gt; &amp;quot;ORCID&amp;quot;&lt;br /&gt;
#   ) );&lt;br /&gt;
#   $orcid_span-&amp;gt;appendChild( $orcid_link );&lt;br /&gt;
&lt;br /&gt;
      my $link = $session-&amp;gt;make_element(&lt;br /&gt;
        &amp;quot;a&amp;quot;,&lt;br /&gt;
        &amp;quot;href&amp;quot; =&amp;gt; &amp;quot;http://orcid.org/$1&amp;quot;,&lt;br /&gt;
        &amp;quot;target&amp;quot; =&amp;gt; &amp;quot;_blank&amp;quot;,&lt;br /&gt;
      );&lt;br /&gt;
      $link-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;orcid.org/$1&amp;quot; ) );&lt;br /&gt;
&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;(&amp;quot; ) );&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $link );&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;)&amp;quot; ) );&lt;br /&gt;
&lt;br /&gt;
      $person_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot; &amp;quot; ) );&lt;br /&gt;
      $person_span-&amp;gt;appendChild( $orcid_span );&lt;br /&gt;
    }&lt;br /&gt;
    $r-&amp;gt;appendChild( $person_span );&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  return [ $r, &amp;quot;XHTML&amp;quot; ];&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
# END EPrints::Script::Compiled additions&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may also want a bit of CSS to style ORCID links&lt;br /&gt;
&amp;lt;source lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
/* Add to e.g. ~/archives/ARCHIVEID/cfg/static/style/auto/zzz_orcid.css */&lt;br /&gt;
.person:hover {border-bottom: 1px dashed #a6ce39;}&lt;br /&gt;
.orcid {}&lt;br /&gt;
.orcid a:hover {&lt;br /&gt;
        color: #a6ce39;&lt;br /&gt;
}&lt;br /&gt;
.orcid-icon {}&lt;br /&gt;
.orcid-icon img { vertical-align: text-bottom; margin: 0 4px 0 2px; }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And finally, you have to call the new EPScript function from a citation file e.g. &amp;lt;code&amp;gt;archives/ARCHIVEID/cfg/citations/eprint/default.xml&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- replace reference to e.g. &amp;lt;print expr=&amp;quot;creators_name&amp;quot;/&amp;gt; with this: --&amp;gt;&lt;br /&gt;
    &amp;lt;print expr=&amp;quot;wrro_people_with_orcids(creators)&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Exposing the ORCID in RIOXX ==&lt;br /&gt;
Based on re-using the creators.id field, this block of code over-writes the default &amp;lt;code&amp;gt;rioxx2_value_author&amp;lt;/code&amp;gt; function.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
# Add to e.g. ~/archives/ARCHIVEID/cfg/cfg.d/zzz_rioxx2_overwrites.pl&lt;br /&gt;
$c-&amp;gt;{rioxx2_value_author} = sub {&lt;br /&gt;
  my( $eprint ) = @_;&lt;br /&gt;
&lt;br /&gt;
  my @authors;&lt;br /&gt;
  for( @{ $eprint-&amp;gt;value( &amp;quot;creators&amp;quot; ) } )&lt;br /&gt;
  {&lt;br /&gt;
    my $id = $_-&amp;gt;{id};&lt;br /&gt;
    if( defined $id &amp;amp;&amp;amp; $id =~ m/^(?:orcid.org\/)?(\d{4}\-\d{4}\-\d{4}\-\d{3}(?:\d|X))$/ )&lt;br /&gt;
    {&lt;br /&gt;
      push @authors, {&lt;br /&gt;
        author =&amp;gt; EPrints::Utils::make_name_string( $_-&amp;gt;{name} ),&lt;br /&gt;
        id =&amp;gt; &amp;quot;http://orcid.org/$1&amp;quot;&lt;br /&gt;
      };&lt;br /&gt;
    } else {&lt;br /&gt;
      push @authors, {&lt;br /&gt;
        author =&amp;gt; EPrints::Utils::make_name_string( $_-&amp;gt;{name} ),&lt;br /&gt;
      };&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  #NB If your corp_creators has DOIs or ISNIs for the entries, a similar method could be used to include these here.&lt;br /&gt;
  foreach my $corp ( @{ $eprint-&amp;gt;value( &amp;quot;corp_creators&amp;quot; ) } )&lt;br /&gt;
  {&lt;br /&gt;
    my $entry = {};&lt;br /&gt;
    $entry-&amp;gt;{name} = $corp;&lt;br /&gt;
    push @authors, { author =&amp;gt; $corp };&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  return \@authors;&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Add additional identifiers to creators =&lt;br /&gt;
Another approach to storing ORCIDs is to add an additional sub-field to the creator field.&lt;br /&gt;
This has been discussed on the Eprints tech list. If you know how to do this, please document it here!&lt;br /&gt;
&lt;br /&gt;
This is how University of Bath has done it.  We're getting the ORCID data from another system, so have used a text field to capture it for display.  At present there is no special rendering on it, it's just displaying as a number.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	name =&amp;gt; 'creators',&lt;br /&gt;
	type =&amp;gt; 'compound',&lt;br /&gt;
	multiple =&amp;gt; 1,&lt;br /&gt;
	fields =&amp;gt; [&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'name',&lt;br /&gt;
			type =&amp;gt; 'name',&lt;br /&gt;
			hide_honourific =&amp;gt; 1,&lt;br /&gt;
			hide_lineage =&amp;gt; 1,&lt;br /&gt;
			family_first =&amp;gt; 1,&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'id',&lt;br /&gt;
			type =&amp;gt; 'text',&lt;br /&gt;
			input_cols =&amp;gt; 20,&lt;br /&gt;
			allow_null =&amp;gt; 1,&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'orcid',&lt;br /&gt;
			type =&amp;gt; 'text',&lt;br /&gt;
			input_cols =&amp;gt; 20,&lt;br /&gt;
			allow_null =&amp;gt; 1,&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
	],&lt;br /&gt;
	input_boxes =&amp;gt; 4,&lt;br /&gt;
},&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=ORCID&amp;diff=11987</id>
		<title>ORCID</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=ORCID&amp;diff=11987"/>
		<updated>2016-05-20T11:35:46Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Add additional identifiers to creators */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page has been created to gather information about how different EPrints repositories have integrated ORCID.&lt;br /&gt;
At this time (April 2016) there doesn't seem to be a 'best practice' approach that has been adopted widely - this will hopefully change over time.&lt;br /&gt;
&lt;br /&gt;
If you are looking to retrieve publications from the ORCID service, the [http://bazaar.eprints.org/354/ Import from ORCID (Tier 1 API)] Bazaar package, or the [https://github.com/eprintsug/orcidt2 ORCID Tier 2 api framework] are good places to start.&lt;br /&gt;
&lt;br /&gt;
Some aspects that need to be considered when adopting ORCIDs, and making them available to other systems are:&lt;br /&gt;
&lt;br /&gt;
* storing the ORCID (see: http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier)&lt;br /&gt;
* rendering the ORCID in abstract pages (see [http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier link above])&lt;br /&gt;
* exposing ORCIDs over OAI-PMH metadata profiles e.g. RIOXX&lt;br /&gt;
&lt;br /&gt;
NB The examples below may refer to the 'creators' field - but the same approach could be used to extend other 'person' fields - e.g. contributors.&lt;br /&gt;
&lt;br /&gt;
= Re-using creators.id subfield =&lt;br /&gt;
&lt;br /&gt;
The creators.id field is labelled 'email' by default, but as it's an 'id' type field, it can be used to store ORCIDs.&lt;br /&gt;
To re-label the field, a simple addition to a phrase file in &amp;lt;code&amp;gt;archives/ARCHIVEID/cfg/lang/en/phrases/&amp;lt;/code&amp;gt; needs to be made:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;epp:phrase id=&amp;quot;eprint_fieldname_creators_id&amp;quot;&amp;gt;ORCID / Creators email (if known)&amp;lt;/epp:phrase&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Rendering the ORCID in a citation ==&lt;br /&gt;
The rendering of this field then needs to be changed to accommodate an author with an ORCID. The following script adds methods that can be called via the EPScript language:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
# add to e.g. ~/archives/ARCHIVEID/cfg/cfg.d/z_add_to_EPrints_Script_Compiled.pl&lt;br /&gt;
# Write into EPrints::Script::Compiled package to allow use of function in epscript&lt;br /&gt;
{&lt;br /&gt;
package EPrints::Script::Compiled;&lt;br /&gt;
use strict;&lt;br /&gt;
&lt;br /&gt;
sub run_wrro_people_with_orcids&lt;br /&gt;
{&lt;br /&gt;
  my( $self, $state, $value ) = @_;&lt;br /&gt;
&lt;br /&gt;
  my $session = $state-&amp;gt;{session};&lt;br /&gt;
  my $r = $state-&amp;gt;{session}-&amp;gt;make_doc_fragment;&lt;br /&gt;
&lt;br /&gt;
  my $creators = $value-&amp;gt;[0];&lt;br /&gt;
&lt;br /&gt;
  foreach my $i (0..$#$creators){&lt;br /&gt;
&lt;br /&gt;
    my $creator = @$creators[$i];&lt;br /&gt;
&lt;br /&gt;
    if( $i &amp;gt; 0 ){&lt;br /&gt;
      #not first item (or only one item)&lt;br /&gt;
      if( $i == $#$creators ){&lt;br /&gt;
        #last item&lt;br /&gt;
        $r-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot; and &amp;quot; ) );&lt;br /&gt;
      } else {&lt;br /&gt;
        $r-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;, &amp;quot; ) );&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    my $person_span = $session-&amp;gt;make_element( &amp;quot;span&amp;quot;, &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;person&amp;quot; );&lt;br /&gt;
    $person_span-&amp;gt;appendChild( $session-&amp;gt;render_name( $creator-&amp;gt;{name} ) );&lt;br /&gt;
&lt;br /&gt;
    my $id = $creator-&amp;gt;{id};&lt;br /&gt;
    if( defined $id &amp;amp;&amp;amp; $id =~ m/^(?:orcid.org\/)?(\d{4}\-\d{4}\-\d{4}\-\d{3}(?:\d|X))$/ )&lt;br /&gt;
    {&lt;br /&gt;
      my $orcid_span = $session-&amp;gt;make_element( &amp;quot;span&amp;quot;, &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;orcid&amp;quot; );&lt;br /&gt;
&lt;br /&gt;
#   According to https://orcid.org/trademark-and-id-display-guidelines&lt;br /&gt;
#     &amp;quot;recommended display is a hyperlinked URI preceded by the iD icon&amp;quot;&lt;br /&gt;
#   This looks terrible in a citation. Removed for the time being.&lt;br /&gt;
#&lt;br /&gt;
#   my $orcid_link = $session-&amp;gt;make_element(&lt;br /&gt;
#     &amp;quot;a&amp;quot;,&lt;br /&gt;
#     &amp;quot;href&amp;quot; =&amp;gt; &amp;quot;http://orcid.org/&amp;quot;,&lt;br /&gt;
#     &amp;quot;target&amp;quot; =&amp;gt; &amp;quot;_blank&amp;quot;,&lt;br /&gt;
#     &amp;quot;class&amp;quot; =&amp;gt; &amp;quot;orcid-icon&amp;quot;&lt;br /&gt;
#   );&lt;br /&gt;
#   $orcid_link-&amp;gt;appendChild( $session-&amp;gt;make_element(&lt;br /&gt;
#     &amp;quot;img&amp;quot;,&lt;br /&gt;
#     &amp;quot;src&amp;quot; =&amp;gt; &amp;quot;/images/orcid_16x16.png&amp;quot;,&lt;br /&gt;
#     &amp;quot;title&amp;quot; =&amp;gt; &amp;quot;ORCID&amp;quot;&lt;br /&gt;
#   ) );&lt;br /&gt;
#   $orcid_span-&amp;gt;appendChild( $orcid_link );&lt;br /&gt;
&lt;br /&gt;
      my $link = $session-&amp;gt;make_element(&lt;br /&gt;
        &amp;quot;a&amp;quot;,&lt;br /&gt;
        &amp;quot;href&amp;quot; =&amp;gt; &amp;quot;http://orcid.org/$1&amp;quot;,&lt;br /&gt;
        &amp;quot;target&amp;quot; =&amp;gt; &amp;quot;_blank&amp;quot;,&lt;br /&gt;
      );&lt;br /&gt;
      $link-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;orcid.org/$1&amp;quot; ) );&lt;br /&gt;
&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;(&amp;quot; ) );&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $link );&lt;br /&gt;
      $orcid_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot;)&amp;quot; ) );&lt;br /&gt;
&lt;br /&gt;
      $person_span-&amp;gt;appendChild( $session-&amp;gt;make_text( &amp;quot; &amp;quot; ) );&lt;br /&gt;
      $person_span-&amp;gt;appendChild( $orcid_span );&lt;br /&gt;
    }&lt;br /&gt;
    $r-&amp;gt;appendChild( $person_span );&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  return [ $r, &amp;quot;XHTML&amp;quot; ];&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
# END EPrints::Script::Compiled additions&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may also want a bit of CSS to style ORCID links&lt;br /&gt;
&amp;lt;source lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
/* Add to e.g. ~/archives/ARCHIVEID/cfg/static/style/auto/zzz_orcid.css */&lt;br /&gt;
.person:hover {border-bottom: 1px dashed #a6ce39;}&lt;br /&gt;
.orcid {}&lt;br /&gt;
.orcid a:hover {&lt;br /&gt;
        color: #a6ce39;&lt;br /&gt;
}&lt;br /&gt;
.orcid-icon {}&lt;br /&gt;
.orcid-icon img { vertical-align: text-bottom; margin: 0 4px 0 2px; }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And finally, you have to call the new EPScript function from a citation file e.g. &amp;lt;code&amp;gt;archives/ARCHIVEID/cfg/citations/eprint/default.xml&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- replace reference to e.g. &amp;lt;print expr=&amp;quot;creators_name&amp;quot;/&amp;gt; with this: --&amp;gt;&lt;br /&gt;
    &amp;lt;print expr=&amp;quot;wrro_people_with_orcids(creators)&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Exposing the ORCID in RIOXX ==&lt;br /&gt;
Based on re-using the creators.id field, this block of code over-writes the default &amp;lt;code&amp;gt;rioxx2_value_author&amp;lt;/code&amp;gt; function.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
# Add to e.g. ~/archives/ARCHIVEID/cfg/cfg.d/zzz_rioxx2_overwrites.pl&lt;br /&gt;
$c-&amp;gt;{rioxx2_value_author} = sub {&lt;br /&gt;
  my( $eprint ) = @_;&lt;br /&gt;
&lt;br /&gt;
  my @authors;&lt;br /&gt;
  for( @{ $eprint-&amp;gt;value( &amp;quot;creators&amp;quot; ) } )&lt;br /&gt;
  {&lt;br /&gt;
    my $id = $_-&amp;gt;{id};&lt;br /&gt;
    if( defined $id &amp;amp;&amp;amp; $id =~ m/^(?:orcid.org\/)?(\d{4}\-\d{4}\-\d{4}\-\d{3}(?:\d|X))$/ )&lt;br /&gt;
    {&lt;br /&gt;
      push @authors, {&lt;br /&gt;
        author =&amp;gt; EPrints::Utils::make_name_string( $_-&amp;gt;{name} ),&lt;br /&gt;
        id =&amp;gt; &amp;quot;http://orcid.org/$1&amp;quot;&lt;br /&gt;
      };&lt;br /&gt;
    } else {&lt;br /&gt;
      push @authors, {&lt;br /&gt;
        author =&amp;gt; EPrints::Utils::make_name_string( $_-&amp;gt;{name} ),&lt;br /&gt;
      };&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  #NB If your corp_creators has DOIs or ISNIs for the entries, a similar method could be used to include these here.&lt;br /&gt;
  foreach my $corp ( @{ $eprint-&amp;gt;value( &amp;quot;corp_creators&amp;quot; ) } )&lt;br /&gt;
  {&lt;br /&gt;
    my $entry = {};&lt;br /&gt;
    $entry-&amp;gt;{name} = $corp;&lt;br /&gt;
    push @authors, { author =&amp;gt; $corp };&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  return \@authors;&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Add additional identifiers to creators =&lt;br /&gt;
Another approach to storing ORCIDs is to add an additional sub-field to the creator field.&lt;br /&gt;
This has been discussed on the Eprints tech list. If you know how to do this, please document it here!&lt;br /&gt;
&amp;lt;source lang=&amp;quot;perl&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	name =&amp;gt; 'creators',&lt;br /&gt;
	type =&amp;gt; 'compound',&lt;br /&gt;
	multiple =&amp;gt; 1,&lt;br /&gt;
	fields =&amp;gt; [&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'name',&lt;br /&gt;
			type =&amp;gt; 'name',&lt;br /&gt;
			hide_honourific =&amp;gt; 1,&lt;br /&gt;
			hide_lineage =&amp;gt; 1,&lt;br /&gt;
			family_first =&amp;gt; 1,&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'id',&lt;br /&gt;
			type =&amp;gt; 'text',&lt;br /&gt;
			input_cols =&amp;gt; 20,&lt;br /&gt;
			allow_null =&amp;gt; 1,&lt;br /&gt;
		},&lt;br /&gt;
		{&lt;br /&gt;
			sub_name =&amp;gt; 'orcid',&lt;br /&gt;
			type =&amp;gt; 'text',&lt;br /&gt;
			input_cols =&amp;gt; 20,&lt;br /&gt;
			allow_null =&amp;gt; 1,&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
	],&lt;br /&gt;
	input_boxes =&amp;gt; 4,&lt;br /&gt;
},&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Training_Video:Search_Troubleshooting&amp;diff=11945</id>
		<title>Training Video:Search Troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Training_Video:Search_Troubleshooting&amp;diff=11945"/>
		<updated>2016-01-11T17:07:29Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Test Yourself */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Howto]]&lt;br /&gt;
[[Category:Training_Video|Search Troubleshooting]]&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
A walkthrough of some common issues with search in EPrints, including checking and starting the indexer, and reindexing the repository.&lt;br /&gt;
&lt;br /&gt;
==What You Will Learn==&lt;br /&gt;
&lt;br /&gt;
* How to identify search errors&lt;br /&gt;
* How to troubleshoot simple issues as an administrator&lt;br /&gt;
* How to investigate and resolve more complex issues as a system administrator&lt;br /&gt;
&lt;br /&gt;
==What You Should Already Know==&lt;br /&gt;
&lt;br /&gt;
'''To identify errors, check status and start the indexer (basic)'''&lt;br /&gt;
* Familiarity with EPrints Admin interface&lt;br /&gt;
&lt;br /&gt;
'''To resolve other search issues (advanced)'''&lt;br /&gt;
* Familiarity with command line interface for EPrints tools&lt;br /&gt;
* Familiarity with MySQL&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
&lt;br /&gt;
=== Video===&lt;br /&gt;
The Video can be found at [http://youtu.be/iIRB7HeSHek http://youtu.be/iIRB7HeSHek].&lt;br /&gt;
&lt;br /&gt;
====Index====&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=0m14s 00:14 Identifying problems in searches]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=0m46s 00:46 Comparing number of items in browse with number returned in search]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=0m57s 00:57 Checking the search indexer]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=1m10s 01:10 Indexer Status screen - list of pending tasks]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=2m02s 02:02 Starting the indexer]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=2m38s 02:38 Checking for items not showing even after indexer has run]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=3m11s 03:11 Reindexing an item]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=3m17s 03:17 Finding the /bin directory]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=3m55s 03:55 Finding the epadmin command]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=4m06s 04:06 Operations available to the epadmin command]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=4m26s 04:26 Accessing detailed help for a command]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=4m53s 04:53 Reindexing the whole repository]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=6m10s 06:10 Investigating in the database]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=7m06s 07:06 Showing index tables]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=7m39s 07:39 Viewing index for specific eprint]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=9m06s 09:06 Normalised values]&lt;br /&gt;
&lt;br /&gt;
==== The Video====&lt;br /&gt;
&amp;lt;youtube&amp;gt;iIRB7HeSHek&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Notes, Errata and Additional Information====&lt;br /&gt;
&lt;br /&gt;
* EPrints 3.3.14&lt;br /&gt;
* Ubuntu 15.04&lt;br /&gt;
&lt;br /&gt;
==Test Yourself==&lt;br /&gt;
&lt;br /&gt;
On a test repository:&lt;br /&gt;
&lt;br /&gt;
* Check the status of the indexer.  Stop the indexer.&lt;br /&gt;
&lt;br /&gt;
* Create a new EPrint and deposit it.  Move it to the repository, and search to check that it doesn't appear.&lt;br /&gt;
&lt;br /&gt;
* Check the status of the indexer to see the outstanding indexer tasks.  Start the indexer.&lt;br /&gt;
&lt;br /&gt;
* Search for the item to ensure it is now indexed.&lt;br /&gt;
&lt;br /&gt;
==More Reading==&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Training_Video:Technical_Orientation&amp;diff=11944</id>
		<title>Training Video:Technical Orientation</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Training_Video:Technical_Orientation&amp;diff=11944"/>
		<updated>2016-01-11T16:31:39Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Howto]]&lt;br /&gt;
[[Category:Training_Video|Technical Orientation]]&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
This video will explain what EPrints configuration files are and where to find them.  It explains some of the most commonly changed files, and is an ideal start for working with EPrints at the back end.&lt;br /&gt;
&lt;br /&gt;
==What You Will Learn==&lt;br /&gt;
&lt;br /&gt;
* Where to find the main configuration files in EPrints using the command line&lt;br /&gt;
* How EPrints configuration files are structured &lt;br /&gt;
* How to make local changes safely&lt;br /&gt;
&lt;br /&gt;
==What You Should Already Know==&lt;br /&gt;
&lt;br /&gt;
* Basic Linux command line interface&lt;br /&gt;
* EPrints as a user and admin&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
&lt;br /&gt;
=== Video===&lt;br /&gt;
The Video can be found at [http://youtu.be/-D4hEsRB0g4 http://youtu.be/-D4hEsRB0g4].&lt;br /&gt;
&lt;br /&gt;
====Index====&lt;br /&gt;
&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=0m00s 0:00	Introduction to the topics in the video]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=0m25s 0:25	Where is EPrints installed? (Ubuntu / Debian style)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=0m36s 0:36	Using the Apache configuration file to find EPrints]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=2m05s 2:05	What is EPrints? (as a system)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=2m17s 2:17	Finding the database (default file)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=2m40s 2:40	Checking for overrides to the default file]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=3m40s 3:40	Looking at the database]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=3m57s 3:57	Listing tables in the database]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=4m05s 4:05	The EPrint table (non-multiple fields)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=4m21s 4:21	Finding tables holding multiple fields]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=6m06s 6:06	The cfg.d directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=6m25s 6:25	Simple and complex configurations]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=7m13s 7:13	eprint_render.pl - changing abstract pages]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=7m35s 7:35	views.pl - changing browse views]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=7m45s 7:45	Best practice for customising configuration settings]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=8m20s 8:20	Adding a new field in a new configuration file]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=9m15s 9:15	Using diff to check local configuration files against default configuration files]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=10m00s 10:00	Benefits of using separate files when upgrading]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=10m21s 10:21	The /bin directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=10m35s 10:35	epadmin - some common functions]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=11m25s 11:25	Default configuration files for a new archive]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=11m53s 11:53	Global (all archives) settings in the /lib directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=12m37s 12:37	Overriding global configurations for an archive (Templates example)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=14m51s 14:51	Reloading the repository to show changes]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=15m28s 15:28	Making changes to phrases (displayed text)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=17m35s 17:35	The /archives directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=17m53s 17:53	Inside an archive directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=18m03s 18:03	The archive /documents directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=24m01s 24:01	Finding the documents for a specific EPrint]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=26m00s 26:00	System generated documents (previews)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=26m23s 26:23	History of an EPrint - Revision files in the /revisions directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=27m04s 27:04	Static files in /html]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=28m41s 28:41	Static files in /cfg/lang/[en]/static and cfg/static]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=31m12s 31:12	Running generate_static to refresh html pages (and --prune option to remove)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=31m57s 31:57	Citations - where to find them]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=32m30s 32:30	Plugins - where to find them]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=34m06s 34:06	Plugins - where to create a directory for Archive-specific plugins]&lt;br /&gt;
&lt;br /&gt;
==== The Video====&lt;br /&gt;
&amp;lt;youtube&amp;gt;-D4hEsRB0g4&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Notes, Errata and Additional Information====&lt;br /&gt;
&lt;br /&gt;
Any notes, version information, errata, etc concerned with this video&lt;br /&gt;
&lt;br /&gt;
* EPrints 3.3.14&lt;br /&gt;
* Ubuntu 15.04&lt;br /&gt;
&lt;br /&gt;
==Test Yourself==&lt;br /&gt;
&lt;br /&gt;
Exercises as appropriate to allow the learner to practice the subject of the page.&lt;br /&gt;
&lt;br /&gt;
* Locate the home directory of your EPrints installation using Apache configuration files.&lt;br /&gt;
&lt;br /&gt;
* Find the name of the database in the default file.  Check it hasn't been overridden by another configuration file.&lt;br /&gt;
&lt;br /&gt;
* Find the cfg.d folder for an archive.  Compare it to the defaultcfg/cfg.d folder&lt;br /&gt;
&lt;br /&gt;
* Create a static page in the /lang/en/static folder (or whichever language your archive is in)&lt;br /&gt;
&lt;br /&gt;
* Change a phrase by adding a copy to the local.xml file.&lt;br /&gt;
&lt;br /&gt;
==More Reading==&lt;br /&gt;
&lt;br /&gt;
* For more details on specific configuration tasks, see the [[:Category:Training_Video|Training Course]] sections on Configuring EPrints and Maintaining and Developing EPrints.&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Training_Video:Technical_Orientation&amp;diff=11943</id>
		<title>Training Video:Technical Orientation</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Training_Video:Technical_Orientation&amp;diff=11943"/>
		<updated>2016-01-11T15:28:57Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Howto]]&lt;br /&gt;
[[Category:Training_Video|Technical Orientation]]&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
Prose: Why should you watch this video, what is the purpose in EPrints of the thing that you’re learning?&lt;br /&gt;
&lt;br /&gt;
==What You Will Learn==&lt;br /&gt;
&lt;br /&gt;
* Where to find the main configuration files in EPrints using the command line&lt;br /&gt;
* How EPrints configuration files are structured &lt;br /&gt;
* How to make local changes safely&lt;br /&gt;
&lt;br /&gt;
==What You Should Already Know==&lt;br /&gt;
&lt;br /&gt;
* Basic Linux command line interface&lt;br /&gt;
* EPrints as a user and admin&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
&lt;br /&gt;
=== Video===&lt;br /&gt;
The Video can be found at [http://youtu.be/-D4hEsRB0g4 http://youtu.be/-D4hEsRB0g4].&lt;br /&gt;
&lt;br /&gt;
====Index====&lt;br /&gt;
&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=0m00s 0:00	Introduction to the topics in the video]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=0m25s 0:25	Where is EPrints installed? (Ubuntu / Debian style)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=0m36s 0:36	Using the Apache configuration file to find EPrints]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=2m05s 2:05	What is EPrints? (as a system)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=2m17s 2:17	Finding the database (default file)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=2m40s 2:40	Checking for overrides to the default file]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=3m40s 3:40	Looking at the database]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=3m57s 3:57	Listing tables in the database]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=4m05s 4:05	The EPrint table (non-multiple fields)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=4m21s 4:21	Finding tables holding multiple fields]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=6m06s 6:06	The cfg.d directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=6m25s 6:25	Simple and complex configurations]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=7m13s 7:13	eprint_render.pl - changing abstract pages]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=7m35s 7:35	views.pl - changing browse views]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=7m45s 7:45	Best practice for customising configuration settings]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=8m20s 8:20	Adding a new field in a new configuration file]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=9m15s 9:15	Using diff to check local configuration files against default configuration files]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=10m00s 10:00	Benefits of using separate files when upgrading]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=10m21s 10:21	The /bin directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=10m35s 10:35	epadmin - some common functions]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=11m25s 11:25	Default configuration files for a new archive]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=11m53s 11:53	Global (all archives) settings in the /lib directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=12m37s 12:37	Overriding global configurations for an archive (Templates example)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=14m51s 14:51	Reloading the repository to show changes]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=15m28s 15:28	Making changes to phrases (displayed text)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=17m35s 17:35	The /archives directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=17m53s 17:53	Inside an archive directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=18m03s 18:03	The archive /documents directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=24m01s 24:01	Finding the documents for a specific EPrint]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=26m00s 26:00	System generated documents (previews)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=26m23s 26:23	History of an EPrint - Revision files in the /revisions directory]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=27m04s 27:04	Static files in /html]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=28m41s 28:41	Static files in /cfg/lang/[en]/static and cfg/static]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=31m12s 31:12	Running generate_static to refresh html pages (and --prune option to remove)]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=31m57s 31:57	Citations - where to find them]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=32m30s 32:30	Plugins - where to find them]&lt;br /&gt;
* [http://youtu.be/-D4hEsRB0g4?t=34m06s 34:06	Plugins - where to create a directory for Archive-specific plugins]&lt;br /&gt;
&lt;br /&gt;
==== The Video====&lt;br /&gt;
&amp;lt;youtube&amp;gt;-D4hEsRB0g4&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Notes, Errata and Additional Information====&lt;br /&gt;
&lt;br /&gt;
Any notes, version information, errata, etc concerned with this video&lt;br /&gt;
&lt;br /&gt;
* EPrints 3.3.14&lt;br /&gt;
* Ubuntu 15.04&lt;br /&gt;
&lt;br /&gt;
==Test Yourself==&lt;br /&gt;
&lt;br /&gt;
Exercises as appropriate to allow the learner to practice the subject of the page.&lt;br /&gt;
&lt;br /&gt;
* Locate the home directory of your EPrints installation using Apache configuration files.&lt;br /&gt;
&lt;br /&gt;
* Find the name of the database in the default file.  Check it hasn't been overridden by another configuration file.&lt;br /&gt;
&lt;br /&gt;
* Find the cfg.d folder for an archive.  Compare it to the defaultcfg/cfg.d folder&lt;br /&gt;
&lt;br /&gt;
* Create a static page in the /lang/en/static folder (or whichever language your archive is in)&lt;br /&gt;
&lt;br /&gt;
* Change a phrase by adding a copy to the local.xml file.&lt;br /&gt;
&lt;br /&gt;
==More Reading==&lt;br /&gt;
&lt;br /&gt;
* For more details on specific configuration tasks, see the [[:Category:Training_Video|Training Course]] sections on Configuring EPrints and Maintaining and Developing EPrints.&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Training_Video:Technical_Orientation&amp;diff=11942</id>
		<title>Training Video:Technical Orientation</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Training_Video:Technical_Orientation&amp;diff=11942"/>
		<updated>2016-01-11T15:00:13Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Index */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Howto]]&lt;br /&gt;
[[Category:Training_Video|Technical Orientation]]&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
Prose: Why should you watch this video, what is the purpose in EPrints of the thing that you’re learning?&lt;br /&gt;
&lt;br /&gt;
==What You Will Learn==&lt;br /&gt;
&lt;br /&gt;
* Learning Objective 1&lt;br /&gt;
* Learning Objective 2&lt;br /&gt;
* Learning Objective 3&lt;br /&gt;
&lt;br /&gt;
==What You Should Already Know==&lt;br /&gt;
&lt;br /&gt;
* Prerequisite 1 with links if appropriate&lt;br /&gt;
* Prerequisite 2 with links if appropriate&lt;br /&gt;
* Prerequisite 3 with links if appropriate&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
&lt;br /&gt;
=== Video===&lt;br /&gt;
The Video can be found at [http://youtu.be/-D4hEsRB0g4 http://youtu.be/-D4hEsRB0g4].&lt;br /&gt;
====Index====&lt;br /&gt;
&lt;br /&gt;
0:00	Introduction to the topics in the video&lt;br /&gt;
0:25	Where is EPrints installed? (Ubuntu / Debian style)&lt;br /&gt;
0:36	Using the Apache configuration file to find EPrints&lt;br /&gt;
2:05	What is EPrints? (as a system)&lt;br /&gt;
2:17	Finding the database (default file)&lt;br /&gt;
2:40	Checking for overrides to the default file&lt;br /&gt;
3:40	Looking at the database&lt;br /&gt;
3:57	Listing tables in the database&lt;br /&gt;
4:05	The EPrint table (non-multiple fields)&lt;br /&gt;
4:21	Finding tables holding multiple fields&lt;br /&gt;
6:06	The cfg.d directory&lt;br /&gt;
6:25	Simple and complex configurations&lt;br /&gt;
7:13	eprint_render.pl - changing abstract pages&lt;br /&gt;
7:35	views.pl - changing browse views&lt;br /&gt;
7:45	Best practice for customising configuration settings&lt;br /&gt;
8:20	Adding a new field in a new configuration file&lt;br /&gt;
9:15	Using diff to check local configuration files against default configuration files&lt;br /&gt;
10:00	Benefits of using separate files when upgrading&lt;br /&gt;
10:21	The /bin directory&lt;br /&gt;
10:35	epadmin - some common functions&lt;br /&gt;
11:25	Default configuration files for a new archive&lt;br /&gt;
11:53	Global (all archives) settings in the /lib directory&lt;br /&gt;
12:37	Overriding global configurations for an archive (Templates example)&lt;br /&gt;
14:51	Reloading the repository to show changes&lt;br /&gt;
15:28	Making changes to phrases (displayed text)&lt;br /&gt;
17:35	The /archives directory&lt;br /&gt;
17:53	Inside an archive directory&lt;br /&gt;
18:03	The archive /documents directory&lt;br /&gt;
24:01	Finding the documents for a specific EPrint&lt;br /&gt;
26:00	System generated documents (previews)&lt;br /&gt;
26:23	History of an EPrint - Revision files in the /revisions directory&lt;br /&gt;
27:04	Static files in /html&lt;br /&gt;
28:41	Static files in /cfg/lang/[en]/static and cfg/static&lt;br /&gt;
31:12	Running generate_static to refresh html pages (and --prune option to remove)&lt;br /&gt;
31:57	Citations - where to find them&lt;br /&gt;
32:30	Plugins - where to find them&lt;br /&gt;
34:06	Plugins - where to create a directory for Archive-specific plugins&lt;br /&gt;
&lt;br /&gt;
==== The Video====&lt;br /&gt;
&amp;lt;youtube&amp;gt;-D4hEsRB0g4&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Notes, Errata and Additional Information====&lt;br /&gt;
&lt;br /&gt;
Any notes, version information, errata, etc concerned with this video&lt;br /&gt;
&lt;br /&gt;
* EPrints 3.3.14&lt;br /&gt;
* Ubuntu 15.04&lt;br /&gt;
&lt;br /&gt;
==Test Yourself==&lt;br /&gt;
&lt;br /&gt;
Exercises as appropriate to allow the learner to practice the subject of the page.&lt;br /&gt;
&lt;br /&gt;
* Locate the home directory of your EPrints installation using Apache configuration files.&lt;br /&gt;
&lt;br /&gt;
* Find the name of the database in the default file.  Check it hasn't been overridden by another configuration file.&lt;br /&gt;
&lt;br /&gt;
==More Reading==&lt;br /&gt;
&lt;br /&gt;
* Wiki page 1&lt;br /&gt;
* Wiki page 2&lt;br /&gt;
* Wiki page 3&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Training_Video:Technical_Orientation&amp;diff=11941</id>
		<title>Training Video:Technical Orientation</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Training_Video:Technical_Orientation&amp;diff=11941"/>
		<updated>2016-01-11T12:47:18Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Test Yourself */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Howto]]&lt;br /&gt;
[[Category:Training_Video|Technical Orientation]]&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
Prose: Why should you watch this video, what is the purpose in EPrints of the thing that you’re learning?&lt;br /&gt;
&lt;br /&gt;
==What You Will Learn==&lt;br /&gt;
&lt;br /&gt;
* Learning Objective 1&lt;br /&gt;
* Learning Objective 2&lt;br /&gt;
* Learning Objective 3&lt;br /&gt;
&lt;br /&gt;
==What You Should Already Know==&lt;br /&gt;
&lt;br /&gt;
* Prerequisite 1 with links if appropriate&lt;br /&gt;
* Prerequisite 2 with links if appropriate&lt;br /&gt;
* Prerequisite 3 with links if appropriate&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
&lt;br /&gt;
=== Video===&lt;br /&gt;
The Video can be found at [http://youtu.be/-D4hEsRB0g4 http://youtu.be/-D4hEsRB0g4].&lt;br /&gt;
====Index====&lt;br /&gt;
&lt;br /&gt;
==== The Video====&lt;br /&gt;
&amp;lt;youtube&amp;gt;-D4hEsRB0g4&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Notes, Errata and Additional Information====&lt;br /&gt;
&lt;br /&gt;
Any notes, version information, errata, etc concerned with this video&lt;br /&gt;
&lt;br /&gt;
* EPrints 3.3.14&lt;br /&gt;
* Ubuntu 15.04&lt;br /&gt;
&lt;br /&gt;
==Test Yourself==&lt;br /&gt;
&lt;br /&gt;
Exercises as appropriate to allow the learner to practice the subject of the page.&lt;br /&gt;
&lt;br /&gt;
* Locate the home directory of your EPrints installation using Apache configuration files.&lt;br /&gt;
&lt;br /&gt;
* Find the name of the database in the default file.  Check it hasn't been overridden by another configuration file.&lt;br /&gt;
&lt;br /&gt;
==More Reading==&lt;br /&gt;
&lt;br /&gt;
* Wiki page 1&lt;br /&gt;
* Wiki page 2&lt;br /&gt;
* Wiki page 3&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Training_Video:Technical_Orientation&amp;diff=11940</id>
		<title>Training Video:Technical Orientation</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Training_Video:Technical_Orientation&amp;diff=11940"/>
		<updated>2016-01-11T12:40:20Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: /* Test Yourself */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Howto]]&lt;br /&gt;
[[Category:Training_Video|Technical Orientation]]&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
Prose: Why should you watch this video, what is the purpose in EPrints of the thing that you’re learning?&lt;br /&gt;
&lt;br /&gt;
==What You Will Learn==&lt;br /&gt;
&lt;br /&gt;
* Learning Objective 1&lt;br /&gt;
* Learning Objective 2&lt;br /&gt;
* Learning Objective 3&lt;br /&gt;
&lt;br /&gt;
==What You Should Already Know==&lt;br /&gt;
&lt;br /&gt;
* Prerequisite 1 with links if appropriate&lt;br /&gt;
* Prerequisite 2 with links if appropriate&lt;br /&gt;
* Prerequisite 3 with links if appropriate&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
&lt;br /&gt;
=== Video===&lt;br /&gt;
The Video can be found at [http://youtu.be/-D4hEsRB0g4 http://youtu.be/-D4hEsRB0g4].&lt;br /&gt;
====Index====&lt;br /&gt;
&lt;br /&gt;
==== The Video====&lt;br /&gt;
&amp;lt;youtube&amp;gt;-D4hEsRB0g4&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Notes, Errata and Additional Information====&lt;br /&gt;
&lt;br /&gt;
Any notes, version information, errata, etc concerned with this video&lt;br /&gt;
&lt;br /&gt;
* EPrints 3.3.14&lt;br /&gt;
* Ubuntu 15.04&lt;br /&gt;
&lt;br /&gt;
==Test Yourself==&lt;br /&gt;
&lt;br /&gt;
Exercises as appropriate to allow the learner to practice the subject of the page.&lt;br /&gt;
&lt;br /&gt;
* Locate the home directory of your EPrints installation using Apache configuration files.&lt;br /&gt;
&lt;br /&gt;
==More Reading==&lt;br /&gt;
&lt;br /&gt;
* Wiki page 1&lt;br /&gt;
* Wiki page 2&lt;br /&gt;
* Wiki page 3&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Training_Video:Setting_up_SSL&amp;diff=11903</id>
		<title>Training Video:Setting up SSL</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Training_Video:Setting_up_SSL&amp;diff=11903"/>
		<updated>2015-12-09T10:00:29Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: Created page with &amp;quot;Category:Howto Template  ==Introduction==  Prose: Why should you watch this video, what is the purpose in EPrints of the thing that you’re le...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Howto]]&lt;br /&gt;
[[Category:Training_Video|Template]]&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
Prose: Why should you watch this video, what is the purpose in EPrints of the thing that you’re learning?&lt;br /&gt;
&lt;br /&gt;
==What You Will Learn==&lt;br /&gt;
&lt;br /&gt;
* Learning Objective 1&lt;br /&gt;
* Learning Objective 2&lt;br /&gt;
* Learning Objective 3&lt;br /&gt;
&lt;br /&gt;
==What You Should Already Know==&lt;br /&gt;
&lt;br /&gt;
* Prerequisite 1 with links if appropriate&lt;br /&gt;
* Prerequisite 2 with links if appropriate&lt;br /&gt;
* Prerequisite 3 with links if appropriate&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
&lt;br /&gt;
Each resource on this page (video, document, block of wiki text) should have a similar format to the Video section below.&lt;br /&gt;
&lt;br /&gt;
=== Video===&lt;br /&gt;
The Video can be found at [http://youtu.be/KzrS_u-4eoM http://youtu.be/KzrS_u-4eoM].&lt;br /&gt;
====Index====&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=0m00s 0:00 - Installation context]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=0m30s 0:30 - Documentation]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=0m49s 0:49 - Adding apt repositories]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=1m28s 1:28 - Installing using apt-get]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=2m44s 2:44 - Setting MySQL root password]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=4m10s 4:10 - Setting a hostname in the hosts file (local DNS)]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=5m34s 5:34 - Create a repository]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=8m08s 8:08 - Enabling EPrints in apache]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=8m30s 8:30 - Restarting Apache]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=9m02s 9:02 - Verifying the repository is running]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=10m18s 10:18 - Import test records]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=11m45s 11:45 - Regenerating browse views]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=11m56s 11:56 - Verify browse views, export and abstract page, fulltext download]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=12m40s 12:40 - Set up nightly jobs (crontab)]&lt;br /&gt;
* [http://youtu.be/KzrS_u-4eoM?t=16m08s 16:08 - Verifying crontab commands]&lt;br /&gt;
&lt;br /&gt;
==== The Video====&lt;br /&gt;
&amp;lt;youtube&amp;gt;KzrS_u-4eoM&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Notes, Errata and Additional Information====&lt;br /&gt;
&lt;br /&gt;
Any notes, version information, errata, etc concerned with this video&lt;br /&gt;
&lt;br /&gt;
* EPrints 3.3.14&lt;br /&gt;
* Ubuntu 15.04&lt;br /&gt;
&lt;br /&gt;
==Test Yourself==&lt;br /&gt;
&lt;br /&gt;
Exercises as appropriate to allow the learner to practice the subject of the page.&lt;br /&gt;
&lt;br /&gt;
==More Reading==&lt;br /&gt;
&lt;br /&gt;
* Wiki page 1&lt;br /&gt;
* Wiki page 2&lt;br /&gt;
* Wiki page 3&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.eprints.org/w/index.php?title=Training_Video:Search_Troubleshooting&amp;diff=11862</id>
		<title>Training Video:Search Troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://wiki.eprints.org/w/index.php?title=Training_Video:Search_Troubleshooting&amp;diff=11862"/>
		<updated>2015-11-18T17:59:57Z</updated>

		<summary type="html">&lt;p&gt;E.jennings@bath.ac.uk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Howto]]&lt;br /&gt;
[[Category:Training_Video|Search Troubleshooting]]&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
A walkthrough of some common issues with search in EPrints, including checking and starting the indexer, and reindexing the repository.&lt;br /&gt;
&lt;br /&gt;
==What You Will Learn==&lt;br /&gt;
&lt;br /&gt;
* How to identify search errors&lt;br /&gt;
* How to troubleshoot simple issues as an administrator&lt;br /&gt;
* How to investigate and resolve more complex issues as a system administrator&lt;br /&gt;
&lt;br /&gt;
==What You Should Already Know==&lt;br /&gt;
&lt;br /&gt;
'''To identify errors, check status and start the indexer (basic)'''&lt;br /&gt;
* Familiarity with EPrints Admin interface&lt;br /&gt;
&lt;br /&gt;
'''To resolve other search issues (advanced)'''&lt;br /&gt;
* Familiarity with command line interface for EPrints tools&lt;br /&gt;
* Familiarity with MySQL&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
&lt;br /&gt;
Each resource on this page (video, document, block of wiki text) should have a similar format to the Video section below.&lt;br /&gt;
&lt;br /&gt;
=== Video===&lt;br /&gt;
The Video can be found at [http://youtu.be/iIRB7HeSHek http://youtu.be/iIRB7HeSHek].&lt;br /&gt;
&lt;br /&gt;
====Index====&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=0m14s 00:14 Identifying problems in searches]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=0m46s 00:46 Comparing number of items in browse with number returned in search]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=0m57s 00:57 Checking the search indexer]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=1m10s 01:10 Indexer Status screen - list of pending tasks]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=2m02s 02:02 Starting the indexer]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=2m38s 02:38 Checking for items not showing even after indexer has run]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=3m11s 03:11 Reindexing an item]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=3m17s 03:17 Finding the /bin directory]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=3m55s 03:55 Finding the epadmin command]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=4m06s 04:06 Operations available to the epadmin command]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=4m26s 04:26 Accessing detailed help for a command]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=4m53s 04:53 Reindexing the whole repository]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=6m10s 06:10 Investigating in the database]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=7m06s 07:06 Showing index tables]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=7m39s 07:39 Viewing index for specific eprint]&lt;br /&gt;
* [http://youtu.be/iIRB7HeSHek?t=9m06s 09:06 Normalised values]&lt;br /&gt;
&lt;br /&gt;
==== The Video====&lt;br /&gt;
&amp;lt;youtube&amp;gt;iIRB7HeSHek&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Notes, Errata and Additional Information====&lt;br /&gt;
&lt;br /&gt;
Any notes, version information, errata, etc concerned with this video&lt;br /&gt;
&lt;br /&gt;
* EPrints 3.3.14&lt;br /&gt;
* Ubuntu 15.04&lt;br /&gt;
&lt;br /&gt;
==Test Yourself==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==More Reading==&lt;/div&gt;</summary>
		<author><name>E.jennings@bath.ac.uk</name></author>
		
	</entry>
</feed>