app/soc/models/document.py
changeset 342 72482d8e5b34
parent 338 0d78f41dde9b
child 351 b37fc4c1e189
--- a/app/soc/models/document.py	Wed Oct 15 18:06:07 2008 +0000
+++ b/app/soc/models/document.py	Wed Oct 15 19:33:50 2008 +0000
@@ -21,13 +21,10 @@
 ]
 
 
-import polymodel
-
 from google.appengine.ext import db
 
 from django.utils.translation import ugettext_lazy
 
-import soc.models.user
 import soc.models.work
 
 
@@ -44,9 +41,6 @@
     work.abstract:  document summary displayed as a snippet in Document
       list views
 
-    work.authors:  the Authors of the Work referred to by this relation
-      are the authors of the Document
-
     work.reviews:  reviews of the Document by Reviewers
   """
 
@@ -55,12 +49,3 @@
   #: the content is only to be displayed to Persons in Roles eligible to
   #: view them (which may be anyone, for example, with the site front page).
   content = db.TextProperty(verbose_name=ugettext_lazy('Content'))
-  
-  #: TODO(pawel.solyga): replace this with WorkAuthors relation
-  #: Required many:1 relationship indicating the founding User of the
-  #: Document (this relationship is needed to keep track of lifetime document
-  #: creation limits, used to prevent spamming, etc.).
-  founder = db.ReferenceProperty(reference_class=soc.models.user.User,
-                                 required=True, collection_name="documents",
-                                 verbose_name=ugettext_lazy('Created by'))
-