app/soc/logic/models/base.py
changeset 535 9045b8888772
parent 534 c31cfbf1a20f
child 543 280a1ac6bcc1
--- a/app/soc/logic/models/base.py	Fri Nov 21 10:46:15 2008 +0000
+++ b/app/soc/logic/models/base.py	Fri Nov 21 11:44:39 2008 +0000
@@ -109,13 +109,15 @@
     return '%s.%s' % (self._model.__module__, self._model.__name__)
 
   def getKeyValues(self, entity):
-    """Exctracts the key values from entity and returns them.
+    """Extracts the key values from entity and returns them.
+
+    The default implementation uses the scope and link_id as key values.
 
     Args:
       entity: the entity from which to extract the key values
     """
 
-    raise NotImplementedError
+    return [entity.scope_path, entity.link_id]
 
   def getSuffixValues(self, entity):
     """Returns an array with the public values of the Key Fields.
@@ -131,19 +133,23 @@
     return self.getKeyValues(entity)
 
   def getKeyValuesFromFields(self, fields):
-    """Exctracts the key values from a dict and returns them.
+    """Extracts the key values from a dict and returns them.
+
+    The default implementation uses the scope and link_id as key values.
 
     Args:
       fields: the dict from which to extract the key values
     """
 
-    raise NotImplementedError
+    return [fields['scope_path'], fields['link_id']]
 
   def getKeyFieldNames(self):
     """Returns an array with the names of the Key Fields.
+
+    The default implementation uses the scope and link_id as key values.
     """
 
-    raise NotImplementedError
+    return ['scope_path', 'link_id']
 
   def getKeySuffix(self, entity):
     """Returns a suffix for the specified entity or None if no entity specified.