<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hi Tomasz<div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>This seemed complicated, and I did some fiddling around with browse menu render functions, but as I was doing it, I realised that I was replicating a subject tree browse view.</div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>1) Create a subject tree representing all types and subtypes. For your subject IDs, use <type>_<subtype>. (<a href="https://wiki.eprints.org/w/Training_Video:Subject_Trees" class="">https://wiki.eprints.org/w/Training_Video:Subject_Trees</a>). Configuration would look something like:</div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>types:Types:ROOT:0</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>article:Article:types:1</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>monograph:Monograph:types:1</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>mongraph_technical_report:Technical Report:monograph:1</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>…</div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>It’s essential that the IDs in the subject tree exactly match the type/subtypes of the items.</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>2) Create an automatic field that stores the type as the subject ID node on that tree (<a href="https://wiki.eprints.org/w/Training_Video:Automatic_Fields" class="">https://wiki.eprints.org/w/Training_Video:Automatic_Fields</a>)</div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>my $type = $eprint->value(‘type’);</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>$type_with_subtype = $type;</div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>if ($type eq ‘monograph)</div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>{</div><div class=""><span class="Apple-tab-span" style="white-space:pre">                </span>$type_with_subtype .= ‘_’ . $eprint->value(‘monograph_type’);</div><div class=""><span class="Apple-tab-span" style="white-space: pre;">        </span>}</div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>…</div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>$eprint->set_value(’type_with_subtype’ , $type_with_subtype);</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>3) Create a browse view based on the automatic field (this part is in the automatic fields video).</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>4) you can then rearrange the subject tree if you like so that book appears under monograph.</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">        </span>I suppose type should be a subject tree, but it’s probably a bad idea to deviate that far from eprints norms for such an important field. The down-side of this approach is that you now have type configuration in two places. If you update any types or subtypes, you need to remember to update your subject tree. That’s scriptable, but that’s probably overkill. Alternatively, you can use the browse view render menu override capability (see <a href="https://github.com/eprints/eprints/blob/3.3/lib/defaultcfg/cfg.d/views_render_menu_example.pl" class="">https://github.com/eprints/eprints/blob/3.3/lib/defaultcfg/cfg.d/views_render_menu_example.pl</a>) but that will involve generating a DOM tree.</div><div class=""><br class=""></div><div class="">—</div><div class="">Adam</div><div class=""><br class=""></div><div class=""><div class=""><div class=""><div class=""><br class=""><div><blockquote type="cite" class=""><div class="">On 2 Aug 2017, at 08:34, Alan.Stiles <<a href="mailto:alan.stiles@open.ac.uk" class="">alan.stiles@open.ac.uk</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="WordSection1" style="page: WordSection1; font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span style="color: rgb(31, 73, 125);" class="">Hi Tomasz,<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span style="color: rgb(31, 73, 125);" class="">We have a view something like that, but for academic units and schools :<span class="Apple-converted-space"> </span><a href="http://oro.open.ac.uk/view/faculty_dept/" style="color: rgb(149, 79, 114); text-decoration: underline;" class="">http://oro.open.ac.uk/view/faculty_dept/</a><span class="Apple-converted-space"> </span>but it is built against a subject tree rather than separate fields. I presume you are controlling the available set options in the workflow depending on the item type selected?<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span style="color: rgb(31, 73, 125);" class=""><o:p class=""> </o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span style="color: rgb(31, 73, 125);" class="">We don’t have separate Monograph and Book types, but a lot of the monograph types you’ve shown (we have a number of those same types defined but under ‘other’) aren’t necessarily going to be books – are all books going to be monographs?<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span style="color: rgb(31, 73, 125);" class=""><o:p class=""> </o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span style="color: rgb(31, 73, 125);" class="">Not really all that much help I suspect, sorry!<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span style="color: rgb(31, 73, 125);" class="">Alan<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span style="color: rgb(31, 73, 125);" class=""><o:p class=""> </o:p></span></div><div class=""><div style="border-style: solid none none; border-top-width: 1pt; border-top-color: rgb(225, 225, 225); padding: 3pt 0cm 0cm;" class=""><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><b class=""><span lang="EN-US" class="">From:</span></b><span lang="EN-US" class=""><span class="Apple-converted-space"> </span><a href="mailto:eprints-tech-bounces@ecs.soton.ac.uk" style="color: rgb(149, 79, 114); text-decoration: underline;" class="">eprints-tech-bounces@ecs.soton.ac.uk</a><span class="Apple-converted-space"> </span>[<a href="mailto:eprints-tech-bounces@ecs.soton.ac.uk" style="color: rgb(149, 79, 114); text-decoration: underline;" class="">mailto:eprints-tech-bounces@ecs.soton.ac.uk</a>]<span class="Apple-converted-space"> </span><b class="">On Behalf Of<span class="Apple-converted-space"> </span></b>Tomasz Neugebauer<br class=""><b class="">Sent:</b><span class="Apple-converted-space"> </span>01 August 2017 22:14<br class=""><b class="">To:</b><span class="Apple-converted-space"> </span><a href="mailto:eprints-tech@ecs.soton.ac.uk" style="color: rgb(149, 79, 114); text-decoration: underline;" class="">eprints-tech@ecs.soton.ac.uk</a><br class=""><b class="">Subject:</b><span class="Apple-converted-space"> </span>[EP-tech] doctype views with monograph-type and pres_type<o:p class=""></o:p></span></div></div></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><o:p class=""> </o:p></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">We would like to include the display/count of the sub-types for doctypes on the “View by Document Types” page:<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class=""><a href="http://spectrum.concordia.ca/view/doctype/" style="color: rgb(149, 79, 114); text-decoration: underline;" class="">http://spectrum.concordia.ca/view/doctype/</a><o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">I think that our settings are close to the EPrints defaults; we have the following “Conference or Workshop Item” types (defined as “pres_type” in eprint_fields.pl): paper, lecture, speech, poster, keynote, other. <o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">We also have the following Monograph types (defined as “pres_type” in eprint_fields.pl): technical report, project report, documentation, manual, working paper, discussion paper, other. <o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">Thus, on the view by doctype, we would like to see something like this:<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class=""><o:p class=""> </o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">• Article (1319)<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">• Book Section (100)<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">• Monograph (87)<o:p class=""></o:p></span></div><p class="MsoListParagraphCxSpFirst" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">technical_report ([count of technical_report])<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpMiddle" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">project_report ([count of project_report])<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpMiddle" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">documentation (count of documentation)<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpMiddle" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">manual (count of manual)<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpMiddle" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">working_paper (…etc…)<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpMiddle" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">discussion_paper ()<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpLast" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">other ()<o:p class=""></o:p></span></b></p><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">• Conference or Workshop Item (121)<o:p class=""></o:p></span></div><p class="MsoListParagraphCxSpFirst" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">paper ()<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpMiddle" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">lecture ()<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpMiddle" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">speech ()<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpMiddle" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">poster ()<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpMiddle" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">keynote ()<o:p class=""></o:p></span></b></p><p class="MsoListParagraphCxSpLast" style="margin-bottom: 8pt; text-indent: -18pt; line-height: 12.600000381469727px;"><span lang="EN-CA" style="font-family: Symbol;" class=""><span class="">·<span style="font-style: normal; font-variant-caps: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-family: 'Times New Roman';" class=""> <span class="Apple-converted-space"> </span></span></span></span><b class=""><span lang="EN-CA" class="">other ()<o:p class=""></o:p></span></b></p><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">• Book (6)<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">• Thesis (13040)<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">…<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">Has this type of view been done already? Any advice on the best way to do that? Is that something that can be done just by tweaking the views.pl?<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">A related question to that is, by default, the “Book” doctype is separated out from “Monograph”, which seems counter-intuitive. Has anyone combined these two doctypes? Is there a reason to keep them separate?<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">Best wishes,<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class="">Tomasz<o:p class=""></o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class=""><o:p class=""> </o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class=""><o:p class=""> </o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" class=""><o:p class=""> </o:p></span></div><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="EN-CA" style="font-size: 8pt; font-family: 'Courier New'; color: rgb(166, 166, 166);" class="">________</span><span lang="FR-CA" style="font-size: 8pt; font-family: 'Courier New'; color: rgb(166, 166, 166);" class="">________________________________________<o:p class=""></o:p></span></div><p class="MsoNormal" style="margin: 0cm 0cm 12pt 17.85pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span lang="FR-CA" style="font-size: 9pt; font-family: Arial, sans-serif;" class="">Tomasz Neugebauer<span style="background-color: white; background-position: initial initial; background-repeat: initial initial;" class=""><br class=""></span>Digital Projects & Systems Development Librarian / Bibliothécaire des Projets Numériques & Développement de Systèmes<span style="background-color: white; background-position: initial initial; background-repeat: initial initial;" class=""><br class=""></span>Library / Bibliothèque<br class="">Concordia University / Université Concordia</span><i class=""><span lang="FR-CA" style="" class=""><o:p class=""></o:p></span></i></p><p class="MsoNormal" style="margin: 0cm 0cm 12pt 17.85pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span lang="FR-CA" style="font-size: 9pt; font-family: Arial, sans-serif;" class="">Tel. / Tél. 514-848-2424 ext. / poste 7738<br class="">Email / courriel:<span class="Apple-converted-space"> </span></span><span lang="EN-CA" class=""><a href="mailto:tomasz.neugebauer@concordia.ca" style="color: rgb(149, 79, 114); text-decoration: underline;" class=""><span lang="FR-CA" style="font-size: 9pt; font-family: Arial, sans-serif; color: blue;" class="">tomasz.neugebauer@concordia.ca</span></a></span><span lang="EN-CA" style="font-size: 9pt; font-family: Arial, sans-serif;" class=""></span><span lang="FR-CA" style="" class=""><o:p class=""></o:p></span></p><p class="MsoNormal" style="margin: 0cm 0cm 12pt 17.85pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span lang="FR-CA" style="font-size: 9pt; font-family: Arial, sans-serif;" class="">Mailing address / adresse postale: 1455 De Maisonneuve Blvd. W., LB-540-03, Montreal, Quebec H3G 1M8<br class="">Street address / adresse municipale: 1400 De Maisonneuve Blvd. W., LB-540-03, Montreal, Quebec H3G 1M8<o:p class=""></o:p></span></p><p class="MsoNormal" style="margin: 0cm 0cm 12pt 17.85pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span lang="EN-CA" class=""><a href="http://library.concordia.ca/" style="color: rgb(149, 79, 114); text-decoration: underline;" class=""><span lang="FR-CA" style="font-size: 9pt; font-family: Arial, sans-serif; color: blue;" class="">http://library.concordia.ca</span></a></span><span lang="FR-CA" style="font-size: 9pt; font-family: Arial, sans-serif; background-color: white;" class=""><br class=""></span><span lang="EN-CA" class=""><a href="http://www.concordia.ca/faculty/tomasz-neugebauer.html" style="color: rgb(149, 79, 114); text-decoration: underline;" class=""><span lang="FR-CA" style="font-size: 9pt; font-family: Arial, sans-serif; color: blue;" class="">http://www.concordia.ca/faculty/tomasz-neugebauer.html</span></a></span><i class=""><span lang="FR-CA" style="" class=""><o:p class=""></o:p></span></i></p><div style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;" class=""><span lang="FR-CA" class=""><o:p class=""> </o:p></span></div></div><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">-- The Open University is incorporated by Royal Charter (RC 000391), an exempt charity in England & Wales and a charity registered in Scotland (SC 038302). The Open University is authorised and regulated by the Financial Conduct Authority.<span class="Apple-converted-space"> </span></span><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">*** Options:<span class="Apple-converted-space"> </span></span><a href="http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech" style="color: rgb(149, 79, 114); text-decoration: underline; font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">http://mailman.ecs.soton.ac.uk/mailman/listinfo/eprints-tech</a><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">*** Archive:<span class="Apple-converted-space"> </span></span><a href="http://www.eprints.org/tech.php/" style="color: rgb(149, 79, 114); text-decoration: underline; font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">http://www.eprints.org/tech.php/</a><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">*** EPrints community wiki:<span class="Apple-converted-space"> </span></span><a href="http://wiki.eprints.org/" style="color: rgb(149, 79, 114); text-decoration: underline; font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">http://wiki.eprints.org/</a><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">*** EPrints developers Forum:<span class="Apple-converted-space"> </span></span><a href="http://forum.eprints.org/" style="color: rgb(149, 79, 114); text-decoration: underline; font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">http://forum.eprints.org/</a><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""></div></blockquote></div><br class=""></div></div></div></div></body></html>