]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Getting rid of old stuff
authorGilles DAVID <gilles-g.david@edf.fr>
Thu, 3 Jun 2021 13:47:53 +0000 (15:47 +0200)
committerGilles DAVID <gilles-g.david@edf.fr>
Fri, 21 Jan 2022 09:24:13 +0000 (10:24 +0100)
bin/appliskel/getAppliPath.py

index 858a670afc0b90643a7819fc026d126d3daec8e9..91479e551958ed05ca41061a740044de803d415b 100755 (executable)
 #
 
 import os
-import sys
-
-######
-# Warning: relpath might be replaced by equivalent os.relpath introduced in
-# Python 2.6 (Calibre 7).
-# It is still here to ensure compatibility with Calibre 6 (Python 2.5)
-def relpath(target, base):
-    """ Find relative path from base to target
-        if target== "/local/chris/appli" and base== "/local/chris" the result is appli
-        if target== /tmp/appli and base /local/chris the result is ../../tmp/appli
-    """
-    target=target.split(os.path.sep)
-    base=base.split(os.path.sep)
-    for i in range(len(base)):
-      if base[i] != target[i]:
-        i=i-1
-        #not in base
-        break
-    p=['..']*(len(base)-i-1)+target[i+1:]
-    if p == []:
-      return '.'
-    return os.path.join( *p )
 #
 
+
 def get_appli_path(filePath=None):
     if filePath is None:
         filePath = os.path.realpath(os.path.dirname(__file__))
@@ -56,10 +35,7 @@ def get_appli_path(filePath=None):
     return applipath
 #
 
+
 if __name__ == "__main__":
-    if sys.hexversion < 0x02060000: # Python older than 2.6.0
-        applipath = relpath(os.path.realpath(os.path.dirname(__file__)),os.path.realpath(os.path.expanduser("~")))
-    else:
-        applipath = get_appli_path()
-    print(applipath)
+    print(get_appli_path())
 #