app/soc/logic/models/document.py
changeset 513 3c1e16637ad7
parent 512 aae25d2b4464
child 530 8d5adb2b8d48
--- a/app/soc/logic/models/document.py	Thu Nov 20 18:50:30 2008 +0000
+++ b/app/soc/logic/models/document.py	Thu Nov 20 19:43:31 2008 +0000
@@ -43,19 +43,19 @@
     """See base.Logic.getKeyNameValues.
     """
 
-    return [entity.partial_path, entity.link_id]
+    return [entity.scope_path, entity.link_id]
 
   def getKeyValuesFromFields(self, fields):
     """See base.Logic.getKeyValuesFromFields.
     """
 
-    return [fields['partial_path'], fields['link_id']]
+    return [fields['scope_path'], fields['link_id']]
 
   def getKeyFieldNames(self):
     """See base.Logic.getKeyFieldNames.
     """
 
-    return ['partial_path', 'link_id']
+    return ['scope_path', 'link_id']
 
 
 logic = Logic()