Difference between revisions of "Imeji properties"

From MPDLMediaWiki
Jump to navigation Jump to search
m (fixed broken link)
 
(23 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Imeji_Tech}}
'''Please note:''' Content was moved to http://imeji.org/install/properties/


* The properties needs to be edited to install imeji. For a fast and easy installation, only edit the "basic properties"
** The properties needs to be defined into a file called: imeji.properties.
** imeji.properties should be stored under
*** For JBoss 7: jboss_home/standalone/configuration/
*** For Tomcat 7: tomcat_home/conf


<pre>
[[Category:Imeji_Content_moved|Properties]]
 
################################################################################
#
# Basic properties: Edit to install imeji!
#
################################################################################
 
# URL of this imeji instance. If you don't use an Apache Server, don't forget to set the port in the url
escidoc.imeji.instance.url=http://mydomain.org/imeji/
 
#Name of your instance
imeji.instance.name=imeji
 
# Blog's URL
escidoc.imeji.blog.url=http://blog.mydomain.org
 
# Blog's RSS feed URL
escidoc.imeji.blog.rss.url=http://blog.mydomain.org/feed.rss
 
# Support email
imeji.support.email=support@mydomain.org
 
################################################################################
#
# Email server properties: Edit to use email features of imeji
#
################################################################################
 
# smtp server
imeji.email.server.smtp=mail.mydomain.org
# if login needed: user for smtp server
imeji.email.user=myUser
# if login needed: password for user above
imeji.email.password=myPassword
# if login needed: true, else false
imeji.email.auth=false
# The email used to send emails from imeji
imeji.email.sender=pubman@mpdl.mpg.de
 
################################################################################
#
# Look and feel properties
#
################################################################################
 
# Number of Images for the browse page
imeji.image.list.size=18
 
# User options for the displayed number of images
imeji.image.list.size.options=6,12,18,24,60,90,240
 
# Number of container in the container lists
imeji.container.list.size=10
 
# User options for the displayed number of container
imeji.container.list.size.options=5,10,15,20,50
 
################################################################################
#
# Advanced Properties: change only when you are sure
#
################################################################################
 
#Path to Jena's TDB database (RDF storage)
imeji.tdb.path = /data/imeji/tdb/
 
#Path to imeji storage (where the files are stored) (for windows use separator: \\)
imeji.storage.path=/data/imeji/files/
 
# Storage type (internal or escidoc)
imeji.storage.name=internal
 
# The base uri of the objects stored in Jena (item, collection, album, profile): This property should not be changed after first upload!!!!!!
imeji.jena.resource.base_uri=
 
# identifier method: counter (default), for method based on local counter, universal, for UUID based method, random, for 64 bit random generated id
imeji.identifier.method=counter
 
# Supported languages (use ISO639-1 codes)
imeji.i18n.languages=en,de,ja,es
 
# The search query used to search item for the caroussel in the Home page, as defined in http://colab.mpdl.mpg.de/mediawiki/Imeji_search.
imeji.home.caroussel.query=
 
# The sort criterion used with which the caroussel item will be sorted. It should be defined as following: searchIndex-order (order ist either ascending or descending). If empty or wrong, use random order
# exemple: get last created item: created-descending, get last modified items: modified-descending
imeji.home.caroussel.sort=
 
# Link to vocabulary for languages
escidoc.cone.isos639_1.all=http://pubman.mpdl.mpg.de/cone/iso639-1/all
 
# Help page's url
escidoc.imeji.help.url=https://raw.github.com/imeji-community/imeji/develop/src/main/webapp/resources/Help.html
 
# Width of a thumbnail
xsd.resolution.thumbnail = 103
 
# Width of a the web resolution
xsd.resolution.web = 357
 
# Set the pagination in ajax
imeji.pagination.ajaxmodus = true
 
################################################################################
#
# Properties needed if storage set to "escidoc"
#
################################################################################
 
# URL of the FIZ framework instance
escidoc.framework_access.framework.url=
 
# Identifier of the eSciDoc content-model used by imeji
escidoc.imeji.content-model.id=
 
# Identifier of the eSciDoc context used by imeji
escidoc.imeji.context.id=
 
# eSciDoc User
imeji.escidoc.user =
imeji.escidoc.password =
 
# Content-type scheme
xsd.metadata.content-category.thumbnail = http://purl.org/escidoc/metadata/ves/content-categories/thumbnail
xsd.metadata.content-category.web-resolution = http://purl.org/escidoc/metadata/ves/content-categories/web-resolution
xsd.metadata.content-category.original-resolution = http://purl.org/escidoc/metadata/ves/content-categories/original-resolution
 
################################################################################
#
# Properties for image and video handling with ImageMagick
#
################################################################################
 
# if you installed imagemagick and want to use it to handle images and videos, then set to true
imeji.imagemagick.enable = false
# set ImageMagick installation path, e.,g.C:\\ImageMagick, or /usr/local/bin
imeji.imagemagick.installpath = C:\\ImageMagick
 
</pre>
 
[[Category:Imeji_Technical_Specification|Properties]]
[[Category:Installation instruction]]

Latest revision as of 12:52, 6 February 2014

Please note: Content was moved to http://imeji.org/install/properties/