author | Edouard Tisserant |
Sat, 21 Feb 2015 10:20:24 +0100 | |
changeset 1449 | 5f09fa31d7b0 |
parent 1388 | 67c9a9482d24 |
child 1511 | 91538d0c242c |
permissions | -rw-r--r-- |
725 | 1 |
""" |
2 |
Misc definitions |
|
3 |
""" |
|
4 |
||
5 |
import os,sys |
|
806
abf1afc1f04d
Fix bug when closing IECCodeView and IECRawCodeView, reopening them was impossible
laurent
parents:
781
diff
changeset
|
6 |
|
725 | 7 |
# helper func to check path write permission |
8 |
def CheckPathPerm(path): |
|
9 |
if path is None or not os.path.isdir(path): |
|
10 |
return False |
|
11 |
for root, dirs, files in os.walk(path): |
|
12 |
for name in files: |
|
13 |
if os.access(root, os.W_OK) is not True or os.access(os.path.join(root, name), os.W_OK) is not True: |
|
14 |
return False |
|
15 |
return True |
|
16 |
||
17 |
def GetClassImporter(classpath): |
|
18 |
if type(classpath)==str: |
|
19 |
def fac(): |
|
20 |
mod=__import__(classpath.rsplit('.',1)[0]) |
|
21 |
return reduce(getattr, classpath.split('.')[1:], mod) |
|
22 |
return fac |
|
23 |
else: |
|
731 | 24 |
return classpath |
1388
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
25 |
|
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
26 |
def InstallLocalRessources(CWD): |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
27 |
from BitmapLibrary import AddBitmapFolder |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
28 |
from TranslationCatalogs import AddCatalog |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
29 |
import wx |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
30 |
|
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
31 |
# Beremiz bitmaps |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
32 |
AddBitmapFolder(os.path.join(CWD, "images")) |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
33 |
|
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
34 |
# Internationalization |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
35 |
AddCatalog(os.path.join(CWD, "locale")) |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
36 |
import gettext |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
37 |
import __builtin__ |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
38 |
|
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
39 |
__builtin__.__dict__['_'] = wx.GetTranslation |
67c9a9482d24
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
Edouard Tisserant
parents:
815
diff
changeset
|
40 |