Difference between revisions of "EPrint Object"
(link to API page) |
|||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{dataobj}} | {{dataobj}} | ||
− | + | ||
[[Data Object]] representing a single EPrint record. | [[Data Object]] representing a single EPrint record. | ||
It belongs to the "eprint" dataset. | It belongs to the "eprint" dataset. | ||
− | In the API it is represented as an | + | In the API it is represented as an instance of EPrints::DataObj::EPrint. |
== Metadata Fields == | == Metadata Fields == | ||
Line 33: | Line 33: | ||
== Related configuration files == | == Related configuration files == | ||
+ | * [[archives/ARCHIVEID/cfg/cfg.d/]] - repository-specific settings (initially copied from lib/defaultcfg/cfg.d) overriding/extending lib/cfg.d/ | ||
+ | ** '''[[eprint_fields.pl]]''' - object definitions influencing database definition | ||
+ | ** '''[[eprint_fields_automatic.pl]]''' - defines automatic object setting | ||
+ | ** '''[[eprint_fields_default.pl]]''' - defines initial object setting | ||
+ | ** '''[[eprint_render.pl]]''' - defines object rendering | ||
+ | ** '''[[eprint_validate.pl]]''' - defines object validation | ||
+ | ** '''[[eprint_warnings.pl]]''' - defines object checks to warn user | ||
+ | * [[archives/ARCHIVEID/cfg/workflows/eprint/]] | ||
+ | ** '''[[workflows/eprint/default.xml|default.xml]]''' - defines workflow | ||
+ | * [[archives/ARCHIVEID/cfg/namedsets/]] | ||
+ | ** '''eprint''' - sets known eprint types | ||
+ | * [[archives/ARCHIVEID/cfg/lang/en/phrases/]] - extends/overrides lib/lang/en/phrases/*.xml | ||
+ | ** '''*.xml''' - defines language-specific names, help text and so on of the '''EPrint Object'''; all definition files are read in alphabetic order and override each other (survival of the last one ...!) | ||
− | + | Also, see [[Document Object]] configuration files. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | See | + | == See Also == |
+ | * [[API:EPrints/DataObj/EPrint|EPrints::DataObj::EPrint]] - API page |
Latest revision as of 16:02, 18 February 2022
EPrints 3 Reference: Directory Structure - Metadata Fields - Repository Configuration - XML Config Files - XML Export Format - EPrints data structure - Core API - Data Objects
Data Objects: Access - Document - EPrint - Event Queue - File - History - Import - Login Ticket - Request - Saved Search - Subject - User
Data Object representing a single EPrint record.
It belongs to the "eprint" dataset.
In the API it is represented as an instance of EPrints::DataObj::EPrint.
Metadata Fields
Field Name | Type | Description |
---|---|---|
eprintid | int field | The ID number of this EPrint Object (unique within a single repository) |
rev_number | int field | The metadata revision number. Increased by 1 every time this record is modified. |
documents | multiple subobject field | zero or more Document Objects attached to this EPrint. In effect these are sub-objects. |
eprint_status | set field | the status of this eprint. |
userid | itemref field | the userid of the User Object which first created this item. This is the user that can see the eprint in their userarea. |
dir | text field | the path that the documents for this eprint are stored, relative to Archives/ARCHIVEID/documents/ |
datestamp | time field | the time the eprint first appeared in the live archive. Is only ever set once. |
lastmod | time field | the time this eprint was last modified |
status_changed | time field | the time the eprint_status field was last modified (ie. when it was last moved between datasets) |
type | namedset field eprint | the type of this eprint (eg. article, etc). |
succeeds | itemref field | if this eprint is a new version (not revision) of an existing eprint record, this is the id of the record it replaces. |
commentary | itemref field | if this eprint is a commentary on an existing eprint record this is the id of the record it comments upon. |
replacedby | itemref field | if this eprint has a newer version then this is the id of the newer version (opposite of "succeeds") |
metadata_visibility | set field | if set to no_search then this record does not appear in search results. Used for older versions of a thing where all versions must exist but it's only useful to discover the newest one. |
contact_email | email field | an email address for correspondance about this eprint. Used to request documents which are not online, or not public. |
fileinfo | longtext field | used to cache the icon urls and links for the documents, so they can be easily used in citations. |
latitude | float field | |
longitude | float field | these store the position on earth which this eprint relates to, if any. This could be where it was presented, where the author lives, or the location may be the subject of the eprint such as a city or an archaelogical dig. The exact use depends on the repository. |
**** | Repository-specific fields for the EPrint Object are defined in eprint_fields.pl - these are in addition to the fields listed here, which are always in EPrints for any repository. |
Related configuration files
- archives/ARCHIVEID/cfg/cfg.d/ - repository-specific settings (initially copied from lib/defaultcfg/cfg.d) overriding/extending lib/cfg.d/
- eprint_fields.pl - object definitions influencing database definition
- eprint_fields_automatic.pl - defines automatic object setting
- eprint_fields_default.pl - defines initial object setting
- eprint_render.pl - defines object rendering
- eprint_validate.pl - defines object validation
- eprint_warnings.pl - defines object checks to warn user
- archives/ARCHIVEID/cfg/workflows/eprint/
- default.xml - defines workflow
- archives/ARCHIVEID/cfg/namedsets/
- eprint - sets known eprint types
- archives/ARCHIVEID/cfg/lang/en/phrases/ - extends/overrides lib/lang/en/phrases/*.xml
- *.xml - defines language-specific names, help text and so on of the EPrint Object; all definition files are read in alphabetic order and override each other (survival of the last one ...!)
Also, see Document Object configuration files.
See Also
- EPrints::DataObj::EPrint - API page