/usr/share/pyshared/Aster/prefs_ASTER.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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | # -*- coding: utf-8 -*-
# CONFIGURATION MANAGEMENT OF EDF VERSION
# ======================================================================
# COPYRIGHT (C) 1991 - 2002 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.
#
#
# ======================================================================
import os
# repIni sert à localiser le fichier editeur.ini
# Obligatoire
repIni=os.path.dirname(os.path.abspath(__file__))
INSTALLDIR=os.path.abspath(os.path.join(repIni,'..'))
# CODE_PATH sert à localiser Noyau et Validation éventuellement
# non contenus dans la distribution EFICAS
# Par défaut on utilise les modules de INSTALLDIR
# Peut valoir None (defaut)
CODE_PATH = None
# lang indique la langue utilisée pour les chaines d'aide : fr ou ang
lang='fr'
# Codage des strings qui accepte les accents (en remplacement de 'ascii')
encoding='iso-8859-1'
# Preference
if os.name == 'nt':
userprefs = os.sep.join( [ os.environ['HOMEDRIVE'], os.environ['HOMEPATH'], 'Eficas_install', 'prefs.py' ])
else :
userprefs=os.path.expanduser("~/.Eficas_install/prefs.py")
if os.path.isfile(userprefs):
try:
execfile(userprefs)
except:
pass
#-------------------------------------------------------------------
# Partie pour TK
#-------------------------------------------------------------------
labels= ('Fichier','Edition','Jeu de commandes',
'Options',
'Aide',
'Traduction',
)
appli_composants=['readercata','bureau',
'options',
]
menu_defs={ 'bureau': [
('Fichier',[
('Nouveau','newJDC','<Control-n>','Ctrl+N'),
('Nouvel INCLUDE','newJDC_include'),
('Ouvrir','openJDC','<Control-o>','Ctrl+O'),
('Enregistrer','saveJDC','<Control-s>','Ctrl+S'),
('Enregistrer sous','saveasJDC','<Control-e>','Ctrl+E'),
None,
('Fermer','closeJDC','<Control-w>','Ctrl+W'),
('Quitter','exitEFICAS','<Control-q>','Ctrl+Q'),
]
),
('Edition',[
('Copier','copy','<Control-c>','Ctrl+C'),
('Couper','cut','<Control-x>','Ctrl+X'),
('Coller','paste','<Control-v>','Ctrl+V'),
]
),
('Jeu de commandes',[
('Rapport de validation','visuCRJDC','<Control-r>','Ctrl+R'),
('Fichier source','visu_txt_brut_JDC','<Control-b>','Ctrl+B'),
#('Paramètres Eficas','affichage_fichier_ini'),
]
),
('Traduction',[
('Traduction v7 en v8','TraduitFichier7'),
('Traduction v8 en v9','TraduitFichier8','<Control-t>','Ctrl+T'),
]
),
('Aide',[
('Aide EFICAS','aideEFICAS','<Control-a>','Ctrl+A'),
]
),
]
}
|