diff -r 52557918ec8f -r aae25d2b4464 app/soc/logic/models/document.py --- 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()