root/IoTa-Installer/lib/ypsilon.py @ master
96454bcd | Sylvain L. Sauvage | # -*- coding: utf-8 -*-
|
|
#
|
|||
# This program is a part of the IoTa project.
|
|||
#
|
|||
19b58bab | Rémy Ménard | # Copyright © 2012-2013 Université de Caen Basse-Normandie, GREYC
|
|
#
|
|||
96454bcd | Sylvain L. Sauvage | # This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|||
# the Free Software Foundation, either version 3 of the License, or
|
|||
# (at your option) any later version.
|
|||
#
|
|||
# This program is distributed in the hope that it will be useful,
|
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
# GNU General Public License for more details.
|
|||
# <http://www.gnu.org/licenses/>
|
|||
#
|
|||
# See AUTHORS for a list of contributors.
|
|||
#
|
|||
from config import CONFIG
|
|||
import installer
|
|||
bf9c3717 | Rémy Ménard | class YPSilonInstaller(installer.WebAppInstaller):
|
|
96454bcd | Sylvain L. Sauvage | ||
def __init__(self):
|
|||
bf9c3717 | Rémy Ménard | installer.WebAppInstaller.__init__(self, "YPSilon web application", "ypsilon", [
|
|
("Enter the YPSilon web application name", "ypsilon", "name", {}),
|
|||
("Enter the archive file pathname", "ypsilon", "repo", {"type": "file"}),
|
|||
96454bcd | Sylvain L. Sauvage | ], [
|
|
("application",
|
|||
675e977d | Rémy Ménard | { "ldap-url": ("ldap", "url"),
|
|
96454bcd | Sylvain L. Sauvage | "ldap-basedn": ("ldap", "base_dn"),
|
|
"ldap-user": ("ldap", "login"),
|
|||
bf9c3717 | Rémy Ménard | "ldap-password": ("ldap", "password"),
|
|
"ldap-user-group": ("ldap", "user_group"),
|
|||
"ldap-user-id": ("ldap", "user_id"),
|
|||
"ldap-attribute-owner": ("ldap", "attribute_owner"),
|
|||
"ldap-attribute-alias": ("ldap", "attribute_alias") })
|
|||
96454bcd | Sylvain L. Sauvage | ] )
|
|
19b58bab | Rémy Ménard | ||
def postConfigure(self):
|
|||
self.setSecuredURL()
|