django 1.3, comments on books, last activity log, some minor changes
[redakcja.git] / apps / wiki / helpers.py
index ee26c5a..fe4b3b8 100644 (file)
@@ -143,3 +143,28 @@ def active_tab(tab):
         return wrapped
     return wrapper
 
+
+class BookChunks(object):
+    """
+        Yields the chunks of a book.
+    """
+
+    def __init__(self, book):
+        self.book = book
+
+    @property
+    def chunks(self):
+        return self.book.chunk_set.all()
+
+
+class ChoiceChunks(BookChunks):
+    """
+        Associates the given chunks iterable for a book.
+    """
+
+    chunks = None
+
+    def __init__(self, book, chunks):
+        self.book = book
+        self.chunks = chunks
+