Difference between revisions of "EdShareCollections"

From EPrints Documentation
Jump to: navigation, search
m (add categories)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:EdShare]]
 
{{EdShare}}
 
  
=Introduction=
+
EdShare on EPrints 3.2 is no longer available to download.
Collections allow users to group and arbitary set of eprints together. They have their own workflow and workflow component for selecting EPrints to add to the collection. They appear in search results in browse views and go through the normal inbox->buffer->archive->retire life cycle. They can also be configured to have custom abstract pages.
 
  
The collections plugin is part of [http://edshare.org.uk EdShare] suite. It is based on code developed in EdShare and LanguageBox. The goal of this project is to produce a package that allows the easy installation of the collections functionality on a vanilla EPrints installation.
 
  
==Installation==
+
'''The latest version of the fully supported EdShare, running on EPrints 3.3, is only available from EPrints Services.'''
You can install Collections onto 3.3 series EPrints repository using the EPrints Bazaar. It should be listed in Admin > EPrints Bazaar > Available.
 
  
==Authors==
 
The original collections code was developed by Sebastien Francois and [http://www.ecs.soton.ac.uk/people/pm5 Patrick McSweeney]. Updates and the 3.1.3 version of the package have been made by Marcus Ramsden based upon the original collections code. Collections were packaged for the bazaar by Patrick McSweeney
 
  
==The Source==
+
Please visit http://www.eprints.org/uk/index.php/openeducation/ for further information or email K.Terrell@soton.ac.uk
  
The current definitive source can be found  [https://github.com/patrickmcsweeney/Collections on GitHub at https://github.com/patrickmcsweeney/Collections]
 
  
==Copyright==
+
[[Category:Obsolete]]
EdShare Collections, University of Southampton ©2009
+
[[Category:EdShare]]
 
+
[[Category:Eprints3.2]]
This plugin is released under the terms of the GNU General Public License v3. Details of this license can be found [http://www.gnu.org/licenses/gpl.txt here].
 
 
 
==Post installation configuration==
 
 
 
At the time of writing (May 2013) collections render in the same way as any other item in the repository but they have been written to have this behaviour overwritten.
 
 
 
x_collections.pl you can see the following two lines
 
 
 
<pre>
 
#overwrite collection_render in order to make a custom render method for collections
 
$c->{collection_render} = $c->{eprint_render};
 
</pre>
 
 
 
this can be replaced with:
 
 
 
<pre>
 
$c->{collection_render} = sub {
 
  my( $eprint, $session, $preview ) = @_;
 
 
 
  #special rendering for collections goes here
 
 
 
  return( $page, $title, $links ); # these three are dom fragments (same as eprint_render)
 
}
 
</pre>
 
 
 
For some idea of what you might want to do here you might use to take inspiration from [[eprint_render.pl]] - code here: [https://github.com/eprints/eprints/blob/master/lib/defaultcfg/cfg.d/eprint_render.pl]
 
 
 
 
 
==Old Stuff==
 
'''For installation instructions head to [[EdShareCollectionsInstallation]].'''
 
 
 
==Bookmarks==
 
* Allows a user to create bookmarks of resources that are currently stored within your repository.
 

Latest revision as of 00:25, 12 September 2018

EdShare on EPrints 3.2 is no longer available to download.


The latest version of the fully supported EdShare, running on EPrints 3.3, is only available from EPrints Services.


Please visit http://www.eprints.org/uk/index.php/openeducation/ for further information or email K.Terrell@soton.ac.uk