+ toolbar_groups = models.ManyToManyField(toolbar.models.ButtonGroup, blank=True)
+ toolbar_extra = models.ForeignKey(toolbar.models.ButtonGroup, null=True, blank=True,
+ unique=True, related_name='main_editor_panels')
+
+ def __unicode__(self):
+ return self.display_name
+
+class Book(models.Model):
+ class Meta:
+ permissions = (
+ ("can_add_files", "Can do hg add."),
+ )
+ abstract=True
+ pass
+
+
+class PullRequest(models.Model):
+ comitter = models.ForeignKey(User) # the user who request the pull
+ file = models.CharField(max_length=256) # the file to request
+ source_rev = models.CharField(max_length=40) # revision number of the commiter
+
+ comment = models.TextField() # addtional comments to the request
+
+ # revision number in which the changes were merged (if any)
+ merged_rev = models.CharField(max_length=40, null=True)
+
+ def __unicode__(self):
+ return u"Pull request from %s, source: %s %s, status: %s." % \
+ (self.commiter, self.file, self.source_rev, \
+ (("merged into "+self.merged_rev) if self.merged_rev else "pending") )
+
+