fab / doi-system
DOI System - OAI server emulation. OAI stands for Open Archives Initiative, a protocol for Metadata Harvesting.
Installs: 52
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 8
Forks: 0
Open Issues: 0
Type:typo3-cms-extension
Replaces
- fab/doi_system: dev-master
- typo3-ter/doi-system: dev-master
This package is auto-updated.
Last update: 2024-10-29 04:25:39 UTC
README
This is a TYPO3 CMS extension emulating an OAI server. OAI stands for Open Archives Initiative, a protocol for Metadata Harvesting.
The URLs given as example are encoded.
# Return all document
http://domain.tld/doi/
Under the hood, the URL is decoded and corresponds to something like::
http://domain.tld/index.php?eID=doi_system&route=users/1;
Configuration
The configuration is done via TypoScript.
Installation
-
Install via composer or clone the extension into /path/typo3conf/ext/.
$ composer require fab/doi-system
-
Go to Extension Manager and activate the extension doi_system.
-
Add a rewrite rule to your .htaccess:
RewriteRule ^doi/(.*)$ /index.php?eID=doi_system [QSA,L]
or, if you are using Nginx:
rewrite ^/doi/(.*)$ /index.php?eID=doi_system last;
Now you can start fetching content with doi/
.