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