Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Tidy remaining configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Snape committed Dec 8, 2014
1 parent db0c179 commit e05da36
Show file tree
Hide file tree
Showing 21 changed files with 163 additions and 188 deletions.
45 changes: 16 additions & 29 deletions core/configs/application.ini
@@ -1,50 +1,37 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; development or production
environment = production
; environment ("development" or "production")
environment = "production"
; name of the application
application.name = Midas Platform - Digital Archiving System
application.name = "Midas Platform - Digital Archiving System"
; description of the application
application.description =
; language of the application (en or fr)
application.lang = en
; session lifetime (minute)
session.lifetime = 20
; default assetstore
; language of the application ("en" or "fr")
application.lang = "en"
; session lifetime (minutes)
session.lifetime = "20"
; default asset store
defaultassetstore.id =
; default timezone
default.timezone = America/New_York
; default time zone
default.timezone = "America/New_York"
; default license
defaultlicense = 1
defaultlicense = "1"
; enable dynamic help
dynamichelp = 1
dynamichelp = "1"
; enable logging of every request
logtrace = 0
logtrace = "0"
; entry for password prefix (dynamically generated at install time)
password.prefix =
; outbound HTTP proxy to be used by PHP (empty for none)
httpproxy =
; show debug toolbar
debug_toolbar = 0
debug_toolbar = "0"

[module]

[production]
; Activate error reporting using Zend
mode.debug = 0
mode.test = 0
; Show native errors
error.php = 0

[development]
; Activate error reporting using Zend
mode.debug = 1
mode.test = 0
; Show native errors
error.php = 1

[testing]
; Activate error reporting using Zend
mode.debug = 1
mode.test = 1
; Show native errors
error.php = 1
3 changes: 3 additions & 0 deletions core/configs/core.ini
@@ -1,3 +1,5 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
bootstrap.path = "./core/Bootstrap.php"
bootstrap.class = "Bootstrap"
Expand All @@ -12,5 +14,6 @@ rest.formats[] = "xml"
rest.formats[] = "json"
rest.formats[] = "html"
rest.formats[] = "php"
uuid = "67a81613-074d-4c9a-afb7-4613f3144a3d"

[testing]
15 changes: 7 additions & 8 deletions modules/batchmake/configs/module.ini
@@ -1,13 +1,12 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.0
; full name
fullname = Batchmake
; description
description = Will run a Batchmake pipeline, either locally or via Condor
; category
category = SSP
fullname = "BatchMake"
description = "Run a BatchMake pipeline either locally or via Condor"
category = "Processing"
dependencies = api
uuid = "290da3c9-2e57-4866-b727-645a47419dc5"
version = "1.0.0"

batchmake.tmp_dir =
batchmake.bin_dir =
Expand Down
15 changes: 7 additions & 8 deletions modules/comments/configs/module.ini
@@ -1,9 +1,8 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.0
; full name
fullname = Comments
; description
description = Allows users to add comments to an item
; category
category = Core
fullname = "Comments"
description = "Allow users to add comments to an item"
category = "Community"
uuid = "250258e5-115b-42c0-933b-0a994bd5c1fb"
version = "1.0.0"
15 changes: 7 additions & 8 deletions modules/communityagreement/configs/module.ini
@@ -1,9 +1,8 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.1
; full name
fullname = Community Agreement
; description
description = "Enables community agreement"
; category
category = Core
fullname = "Community Agreement"
description = "Display a community agreement"
category = "Community"
uuid = "a975aba2-d8c0-4503-bd35-444078ebf206"
version = "1.0.1"
14 changes: 6 additions & 8 deletions modules/dicomanonymize/configs/module.ini
@@ -1,11 +1,9 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.0
; full name
fullname = "DICOM Anonymizer"
; description
description = "Anonymize DICOM files on the client side before upload"
; category
category = DICOM
; dependencies
description = "Anonymize DICOM files on the client before upload"
category = "DICOM"
dependencies = dicomextractor,javauploaddownload
uuid = "01d22cee-d0f7-4f20-9bc7-0f97ef2d4a7f"
version = "1.0.0"
16 changes: 7 additions & 9 deletions modules/dicomserver/configs/module.ini
@@ -1,14 +1,12 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.1
; full name
fullname = DICOM Server
; description
description = Receive and upload DICOM files, also provide DICOM Query/Retrieve services
; category
category = DICOM
; dependencies
fullname = "DICOM Server"
description = "Receive and upload DICOM files and provide DICOM query/retrieve services"
category = "DICOM"
dependencies = api,dicomextractor
uuid = "f850b92d-3f22-4560-bca6-dfbade51a181"
version = "1.0.1"

; uploader DCMTK command
dcm2xml = "dcm2xml"
Expand Down
16 changes: 7 additions & 9 deletions modules/example/configs/module.ini
@@ -1,11 +1,9 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.0
; full name
fullname = Example
; description
description = Example Module
; category
category = Examples
; dependencies
fullname = "Example"
description = "Example module"
category = "Examples"
dependencies =
uuid = "ce38cd19-25d6-44fe-b683-6ea340872c41"
version = "1.0.0"
11 changes: 7 additions & 4 deletions modules/javauploaddownload/configs/module.ini
@@ -1,6 +1,9 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
version = 1.0.0
fullname = "Java Upload and Download Applet"
description = "Enables a Java applet for uploading and downloading large files and folders"
category = Core
fullname = "Upload and Download Applet"
description = "Enable a Java applet for uploading and downloading large files and folders"
category = "Core"
dependencies = api
uuid = "fa8287a4-552f-4e54-b990-e6f516c0f7ea"
version = "1.0.0"
12 changes: 7 additions & 5 deletions modules/keyfiles/configs/module.ini
@@ -1,6 +1,8 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
version = 1.0.0
fullname = Checksum Key Files
description = Allows users to easily download checksum key files
category = Core
dependencies =
fullname = "Checksum Key Files"
description = "Allow users to download checksum key files"
category = "Core"
uuid = "943ee72a-4a6b-4773-a397-f9148ddf723c"
version = "1.0.0"
39 changes: 18 additions & 21 deletions modules/ldap/configs/module.ini
@@ -1,24 +1,21 @@
[global]
; version of the module
version = 1.0.1
; full name
fullname = Ldap
; description
description = "Authenticate Midas users against an LDAP server"
; category
category = Authentication

; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
fullname = "LDAP Authentication"
description = "Authenticate users against an LDAP server"
category = "Authentication"
uuid = "93ac38e2-01d8-4214-84cb-900accc2da48"
version = "1.0.1"

ldap.hostname = localhost
ldap.port = 389
ldap.backup =
ldap.basedn = "ou = people,dc = myorganization,dc = com"
ldap.bindn = "cn = user,ou = people,dc = myorganization,dc = com"
ldap.hostname = "localhost"
ldap.port = "389"
ldap.backup = ""
ldap.basedn = "ou=people,dc=myorganization,dc=com"
ldap.bindn = "cn=user,ou=people,dc=myorganization,dc=com"
ldap.bindpw = "set_your_password"
ldap.protocolVersion = 3
ldap.autoAddUnknownUser = true
ldap.search = uid
ldap.useActiveDirectory = false
ldap.proxyBasedn =
ldap.proxyPassword =
ldap.protocolVersion = "3"
ldap.autoAddUnknownUser = "1"
ldap.search = "uid"
ldap.useActiveDirectory = "0"
ldap.proxyBasedn = ""
ldap.proxyPassword = ""
15 changes: 7 additions & 8 deletions modules/mfa/configs/module.ini
@@ -1,9 +1,8 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.0
; full name
fullname = Multi-Factor Authentication
; description
description = "Use one-time-password devices for authentication"
; category
category = Authentication
fullname = "Multi-Factor Authentication"
description = "Authenticate users using one-time-password devices"
category = "Authentication"
uuid = "7ccfa47c-657b-4117-9c45-70564ae01f8f"
version = "1.0.0"
13 changes: 6 additions & 7 deletions modules/oauth/configs/module.ini
@@ -1,10 +1,9 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.0
; full name
fullname = OAuth 2.0 Provider
; description
fullname = "OAuth 2.0 Provider"
description = "Support the OAuth 2.0 standard for third-party application authentication"
; category
category = Authentication
category = "Authentication"
dependencies = api
uuid = "0a0d1818-733e-4745-8a5c-9aabe4fac225"
version = "1.0.0"
16 changes: 7 additions & 9 deletions modules/packages/configs/module.ini
@@ -1,11 +1,9 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.0
; full name
fullname = Packages
; description
description = Package archiving system
; category
category = Core
; dependencies
fullname = "Package Hosting"
description = "Enable the package hosting system"
category = "Core"
dependencies = api
uuid = "c8b6ed7a-62e3-42ca-a879-3d4b74be7166"
version = "1.0.0"
19 changes: 8 additions & 11 deletions modules/pvw/configs/module.ini
@@ -1,12 +1,9 @@
[global]
; version of the module
version = 1.0.0
; full name
fullname = ParaViewWeb 2
; description
description = "3D Visualization of Midas data using ParaViewWeb 2.0"
; category
category = Visualization
; dependencies
dependencies = scheduler,api
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
fullname = "ParaViewWeb 2"
description = "Visualize 3D data using ParaViewWeb 2.0"
category = "Visualization"
dependencies = api,scheduler
uuid = "4f16d657-a74d-4c37-86bd-516eeaa1418d"
version = "1.0.0"
15 changes: 7 additions & 8 deletions modules/ratings/configs/module.ini
@@ -1,9 +1,8 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.0
; full name
fullname = Item Ratings
; description
description = Allows users to rate items using 1-5 stars
; category
category = Core
fullname = "Item Ratings"
description = "Allow users to rate items using 1-5 stars"
category = "Community"
uuid = "0d3ca085-89e4-4a02-92a0-bc7f092c3c82"
version = "1.0.0"
21 changes: 10 additions & 11 deletions modules/remoteprocessing/configs/module.ini
@@ -1,13 +1,12 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.2
; full name
fullname = Remote processing
; description
description =
; category
category = Processing
dependencies = scheduler,api
fullname = "Remote Processing"
description = "Run remote processes"
category = "Processing"
dependencies = api,scheduler
uuid = "e341ea40-5fff-4906-ac05-94f6bc890f91"
version = "1.0.2"

securitykey = ''
showbutton = true
securitykey = ""
showbutton = "1"
16 changes: 7 additions & 9 deletions modules/sizequota/configs/module.ini
@@ -1,11 +1,9 @@
; MIDAS Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.

[global]
; version of the module
version = 1.0.0
; full name
fullname = Size Quotas
; description
description = "Allows maximum size quotas to be set on communities and users"
; category
category = Core
; dependencies (comma separated list)
fullname = "Size Quotas"
description = "Enable maximum size quotas for communities and users"
category = "Core"
dependencies = api
uuid = "98a05437-742e-4474-b0ff-e329c902276b"
version = "1.0.0"

0 comments on commit e05da36

Please sign in to comment.