Initial snapshot

This commit is contained in:
Mercier Pierre-Olivier 2013-02-11 22:04:30 +01:00
commit fee4dd4e6d
373 changed files with 62144 additions and 0 deletions

View file

@ -0,0 +1,34 @@
#
# ---------- header -----------------------------------------------------------
#
# project kaneton
#
# license kaneton
#
# file /home/mycure/KANE...EST-SYSTEM/packages/ktp/configuration.py
#
# created julien quintard [mon oct 25 20:22:05 2010]
# updated julien quintard [wed oct 27 13:11:00 2010]
#
#
# ---------- packages ---------------------------------------------------------
#
import yaml
#
# ---------- definitions ------------------------------------------------------
#
Extension = ".conf"
#
# ---------- functions --------------------------------------------------------
#
#
# this function loads a configuration.
#
def Load(path):
return yaml.load(file(path, 'r'))