I am wondering if there is a pluggable Django app that does something
like this.  The app would include the following models:

class Document(models.Model):
     body = models.TextField()
     title = models.CharField(max_length=x)
     toc = models.TextField()

class Section(model.Model):
     body = models.TextField()
     title = models.CharField(max_length=x)
     toc = models.TextField()
     document = models.ForeignKey(Document)

Wherein upon save, a Document, whether using an overridden save()
method or signals, spawns as many Subsection objects as there are
first level section headers in the markup (I would be using reST) of
Document.body with a regex, then processes that w/ rst2html, splits it
after the table of contents, and saves the table of contents and the
document body in the appropriate section fields.  Then a document
could be perused by sections, with tables of for each section.  I
haven't thought much about the nitty gritty since I figured it has
been done before.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to