X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=Noyau%2F__init__.py;h=455a321188edc0fde678a9e370a5b80342ba7bd9;hb=9f4ff7ed9afd87c96e11d61e442e39e5511f60d1;hp=e956f6ca600335a663bac95071664f89ef0a3fc1;hpb=cdd358f4041f957701ac10d86766a85baaef4f78;p=tools%2Feficas.git diff --git a/Noyau/__init__.py b/Noyau/__init__.py index e956f6ca..455a3211 100644 --- a/Noyau/__init__.py +++ b/Noyau/__init__.py @@ -1,8 +1,6 @@ -#@ MODIF __init__ Noyau DATE 12/10/2011 AUTEUR COURTOIS M.COURTOIS -# -*- coding: iso-8859-1 -*- -# CONFIGURATION MANAGEMENT OF EDF VERSION +# coding=utf-8 # ====================================================================== -# COPYRIGHT (C) 1991 - 2011 EDF R&D WWW.CODE-ASTER.ORG +# COPYRIGHT (C) 1991 - 2015 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 @@ -23,31 +21,36 @@ """ Ce package fournit les classes de base d'EFICAS. - Ces classes permettent d'effectuer quelques opérations basiques : + Ces classes permettent d'effectuer quelques operations basiques : - - la création - - - la vérification des définitions - - - la création d'objets de type OBJECT à partir d'une définition de type ENTITE + - la creation + - la verification des definitions + - la creation d'objets de type OBJECT a partir d'une definition de type ENTITE """ # Avant toutes choses, on met le module context dans le global de l'interpreteur (__builtin__) -# sous le nom CONTEXT afin d'avoir accès aux fonctions -# get_current_step, set_current_step et unset_current_step de n'importe où -import context -import __builtin__ -__builtin__.CONTEXT=context - -def _(msg): - """Differs translation.""" - # 'codex' should install its translation functions later - return msg -__builtin__._ = _ +# sous le nom CONTEXT afin d'avoir acces aux fonctions +# get_current_step, set_current_step et unset_current_step de n'importe ou + +from __future__ import absolute_import +from . import context + +try : + import __builtin__ + __builtin__.CONTEXT = context +except : + import builtins + builtins.CONTEXT = context + # Classes de base -from N_SIMP import SIMP -from N_FACT import FACT +#from .N_SIMP import SIMP +#from .N_FACT import FACT + + +# Only the first MAXSIZE objects will be checked +# This is used for the number of MCFACT, the number of MCSIMP and the number of +# values in a MCSIMP. +MAXSIZE = 500 -# structures de données -import asojb -from asojb import AsBase +MAXSIZE_MSGCHK = ' Only the first {0} occurrences (total: {1}) have been checked.' +MAXSIZE_MSGKEEP = ' Only the first {0} occurrences (total: {1}) have been printed.'