/usr/share/pyshared/Noyau/context.py is in eficas 6.4.0-1-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | #@ MODIF context Noyau DATE 15/11/2011 AUTEUR COURTOIS M.COURTOIS
# -*- coding: iso-8859-1 -*-
# RESPONSABLE COURTOIS M.COURTOIS
# CONFIGURATION MANAGEMENT OF EDF VERSION
# ======================================================================
# COPYRIGHT (C) 1991 - 2011 EDF R&D WWW.CODE-ASTER.ORG
# 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 2 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.
#
# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
# 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
#
#
# ======================================================================
_root=None
_cata=None
debug=0
from Noyau.N_info import message, SUPERV
# Le "current step" est l'étape courante.
# Une macro se déclare étape courante dans sa méthode Build avant de construire
# ses étapes filles ou dans BuildExec avant de les exécuter.
# Les étapes simples le font aussi : dans Execute et BuildExec.
# (Build ne fait rien pour une étape)
def set_current_step(step):
"""
Fonction qui permet de changer la valeur de l'étape courante
"""
global _root
if _root : raise "Impossible d'affecter _root. Il devrait valoir None"
_root=step
message.debug(SUPERV, "current_step = %s", step and step.nom, stack_id=-1)
def get_current_step():
"""
Fonction qui permet d'obtenir la valeur de l'étape courante
"""
return _root
def unset_current_step():
"""
Fonction qui permet de remettre à None l'étape courante
"""
global _root
_root=None
def set_current_cata(cata):
"""
Fonction qui permet de changer l'objet catalogue courant
"""
global _cata
if _cata : raise "Impossible d'affecter _cata. Il devrait valoir None"
_cata=cata
def get_current_cata():
"""
Fonction qui retourne l'objet catalogue courant
"""
return _cata
def unset_current_cata():
"""
Fonction qui permet de remettre à None le catalogue courant
"""
global _cata
_cata=None
|