Home Articles Books Search About
日本語
[Omeka S Module Customization] OaiPmhRepository: Creating Custom Vocabularies

[Omeka S Module Customization] OaiPmhRepository: Creating Custom Vocabularies

This article explains how to customize the OaiPmhRepository module for Omeka S to publish metadata by mapping it to DC-NDL (Simple). Please refer to the following GitLab repository as needed. gitlab.com Note: A separate introductory article on OaiPmhRepository is planned. File Modifications Please refer to the following commit. https://gitlab.com/nakamura196/Omeka-S-module-OaiPmhRepository/-/commit/702f1c693a62ae21ef03da495e3b4efd6060c561#d57ba0f1ebb8e2008538c451770f3fe535e1c2ca Specifically, modifications are made to the following files. OaiPmhRepository/config/module.config.php Add the information for the custom vocabulary. OaiPmhRepository/src/OaiPmh/Metadata/DCNDLSimple.php This file defines the mapping between Omeka S properties and the output fields. The mapping rules in the commit above are specific to that repository. You will need to modify them according to the metadata description rules of your own Omeka S installation. ...

[Omeka S Tips] How to Add Existing Standard Vocabularies

[Omeka S Tips] How to Add Existing Standard Vocabularies

Overview Omeka S uses RDF (Resource Description Framework) to describe information about resources (items, item sets, media, etc.). Therefore, it is necessary to import vocabularies, which are collections of RDF classes and properties. This article explains how to import existing vocabularies. The official manual is available at: omeka.org Specifically, we will use the following as examples: the National Diet Library Dublin Core Metadata Description (DC-NDL) provided by the National Diet Library, Schema.org, and the Japan Search Utilization Schema. ...

[Omeka S Manual Translation] Resources > Items

[Omeka S Manual Translation] Resources > Items

This is a Japanese translation of the Omeka S manual. It covers the “Resources” > “Items” page. omeka.org Items Items are the building blocks of the Omeka system. In Omeka S, you can make items available from the system administrator or add items to your own site. Items are listed in the Items tab (single box icon) in the left navigation of the admin dashboard. ...

[Omeka S Tips] How to Set Language Attributes for Metadata

[Omeka S Tips] How to Set Language Attributes for Metadata

This article introduces how to set language attributes for metadata. The official manual describes this in the following section: omeka.org On the metadata editing screen shown below, clicking the globe icon reveals an input form. By entering values such as “ja” or “en” here, you can assign language attributes to your metadata. These language attributes are displayed on the public site and can also be verified in the JSON-LD provided through the Omeka S API. ...

[Omeka S Module Introduction] Item Sets Tree

[Omeka S Module Introduction] Item Sets Tree

Overview Item Sets Tree is a module that allows you to configure a hierarchical structure for item sets. This article introduces how to use this module. omeka.org Overview Installation Data Feature Introduction Setting parent item sets Viewing the hierarchical structure Displaying descendant items in item set item list screens Display on sites Summary Installation After installing the module, the following settings screen is displayed. This is an option to specify whether to also display items from descendant item sets when viewing items of a given item set. We will examine the difference later. ...

[Omeka S Module Introduction] IIIF Server / Image Server / Universal Viewer

[Omeka S Module Introduction] IIIF Server / Image Server / Universal Viewer

The following video explains the IIIF-related Omeka S modules “IIIF Server,” “Image Server,” and “Universal Viewer,” along with their installation procedures. youtu.be We hope this serves as a useful reference for IIIF delivery with Omeka S.

Reference Materials for Introducing Omeka S

Reference Materials for Introducing Omeka S

I have compiled information on how to install Omeka S and how to add modules in the following resources. I hope they serve as useful references when introducing Omeka S. youtube.com

[Feature Development] Adding a Setting to Disable Image API in the Omeka S IIIF Server Module

[Feature Development] Adding a Setting to Disable Image API in the Omeka S IIIF Server Module

Overview I developed a new feature for the Omeka S IIIF Server module that adds a setting to disable the Image API. This makes it easier to deliver IIIF manifests and other content in environments with limited resources, such as shared hosting servers. I hope this feature contributes to improving the sustainability and usability of digital archive systems. Background The Omeka S IIIF Server module generates IIIF manifest files from metadata registered in Omeka S. It is primarily developed by Daniel-KM, who has developed various Omeka modules. ...