renaming the toplevel geni/ package into sfa/
[sfa.git] / geni / util / misc.py
diff --git a/geni/util/misc.py b/geni/util/misc.py
deleted file mode 100644 (file)
index 445e0a3..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-### $Id$
-### $URL$
-
-from geni.util.faults import *
-
-def get_leaf(hrn):
-    parts = hrn.split(".")
-    return ".".join(parts[-1:])
-
-def get_authority(hrn):
-    parts = hrn.split(".")
-    return ".".join(parts[:-1])
-
-def hrn_to_pl_slicename(hrn):
-    parts = hrn.split(".")
-    return parts[-2] + "_" + parts[-1]
-
-# assuming hrn is the hrn of an authority, return the plc authority name
-def hrn_to_pl_authname(hrn):
-    parts = hrn.split(".")
-    return parts[-1]
-
-# assuming hrn is the hrn of an authority, return the plc login_base
-def hrn_to_pl_login_base(hrn):
-    return hrn_to_pl_authname(hrn)
-
-def hostname_to_hrn(auth_hrn, login_base, hostname):
-    """
-    Convert hrn to plantelab name.
-    """
-    genihostname = "_".join(hostname.split("."))
-    return ".".join([auth_hrn, login_base, genihostname])
-
-def slicename_to_hrn(auth_hrn, slicename):
-    """
-    Convert hrn to planetlab name.
-    """
-    parts = slicename.split("_")
-    slice_hrn = ".".join([auth_hrn, parts[0]]) + "." + "_".join(parts[1:])
-
-    return slice_hrn
-