I noticed the same problem some time ago. I modified the
build_doucmentation.py script. I added the following method to class
DjangoHTMLTranslator(html4css1.HTMLTranslator to get it working
properly:

def visit_section(self, node):
        self.section_level += 1
        if node['ids']:
                atts={'ids': node['ids']}
        else: atts={}
        self.body.append(
            self.start_tag_with_title(node, 'div',
CLASS='section',**atts))

Regards,
Kjell Magne Fauske


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to