fix quoting - was totally wrong on f16
[plcapi.git] / PLC / Namespace.py
index 2d41fea..d0ce9b8 100644 (file)
@@ -1,6 +1,3 @@
-### $Id: Namespace.py 
-### $URL: 
-
 URN_PREFIX = "urn:publicid:IDN"
 
 def get_leaf(hrn):
@@ -26,7 +23,7 @@ def hrn_to_pl_login_base(hrn):
 
 def hostname_to_hrn(auth_hrn, login_base, hostname):
     """
-    Convert hrn to plantelab name.
+    Convert hrn to planetlab name.
     """
     sfa_hostname = ".".join([auth_hrn, login_base, hostname.split(".")[0]])
     return sfa_hostname
@@ -43,10 +40,10 @@ def slicename_to_hrn(auth_hrn, slicename):
 def email_to_hrn(auth_hrn, email):
     parts = email.split("@")
     username = parts[0]
-    username = username.replace(".", "_") 
+    username = username.replace(".", "_")
     person_hrn = ".".join([auth_hrn, username])
-    
-    return person_hrn 
+
+    return person_hrn
 
 def urn_to_hrn(urn):
     """
@@ -60,24 +57,24 @@ def urn_to_hrn(urn):
 
     name = urn[len(URN_PREFIX):]
     hrn_parts = name.split("+")
-    
+
     # type is always the second to last element in the list
     type = hrn_parts.pop(-2)
 
-    # convert hrn_parts (list) into hrn (str) by doing the following    
+    # convert hrn_parts (list) into hrn (str) by doing the following
     # remove blank elements
     # replace ':' with '.'
     # join list elements using '.'
-    hrn = '.'.join([part.replace(':', '.') for part in hrn_parts if part]) 
-   
-    return str(hrn), str(type) 
-    
-    
+    hrn = '.'.join([part.replace(':', '.') for part in hrn_parts if part])
+
+    return str(hrn), str(type)
+
+
 def hrn_to_urn(hrn, type=None):
     """
     convert an hrn and type to a urn string
     """
-    # if  this is already a urn dont do anything 
+    # if  this is already a urn dont do anything
     if not hrn or hrn.startswith(URN_PREFIX):
         return hrn