OpenSecurity/bin/opensecurity_util.py
changeset 212 59ebaa44c12c
parent 193 8d5b7c9ff783
child 221 853af9cfab6a
     1.1 --- a/OpenSecurity/bin/opensecurity_util.py	Thu Jun 12 14:08:36 2014 +0200
     1.2 +++ b/OpenSecurity/bin/opensecurity_util.py	Thu Jul 17 10:20:10 2014 +0100
     1.3 @@ -1,12 +1,42 @@
     1.4  #!/bin/env python
     1.5  # -*- coding: utf-8 -*-
     1.6  
     1.7 +# ------------------------------------------------------------
     1.8 +# opensecurityd
     1.9 +#   
    1.10 +# the opensecurityd as RESTful server
    1.11 +#
    1.12 +# Autor: Mihai Bartha, <mihai.bartha@ait.ac.at>       
    1.13 +#
    1.14 +# Copyright (C) 2013 AIT Austrian Institute of Technology
    1.15 +# AIT Austrian Institute of Technology GmbH
    1.16 +# Donau-City-Strasse 1 | 1220 Vienna | Austria
    1.17 +# http://www.ait.ac.at
    1.18 +#
    1.19 +# This program is free software; you can redistribute it and/or
    1.20 +# modify it under the terms of the GNU General Public License
    1.21 +# as published by the Free Software Foundation version 2.
    1.22 +# 
    1.23 +# This program is distributed in the hope that it will be useful,
    1.24 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.25 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.26 +# GNU General Public License for more details.
    1.27 +# 
    1.28 +# You should have received a copy of the GNU General Public License
    1.29 +# along with this program; if not, write to the Free Software
    1.30 +# Foundation, Inc., 51 Franklin Street, Fifth Floor, 
    1.31 +# Boston, MA  02110-1301, USA.
    1.32 +# ------------------------------------------------------------
    1.33 +
    1.34 +
    1.35 +# ------------------------------------------------------------
    1.36 +# imports
    1.37 +
    1.38  import logging
    1.39  import os
    1.40  import urllib
    1.41  import urllib2
    1.42  
    1.43 -
    1.44  # local
    1.45  from environment import Environment
    1.46