Bug 746109 - Can't use <section> in topics
Summary: Can't use <section> in topics
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: PressGang CCMS
Classification: Community
Component: Web-UI
Version: 1.x
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
: ---
Assignee: Matthew Casperson
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2011-10-13 21:59 UTC by Misty Stanley-Jones
Modified: 2014-08-04 22:26 UTC (History)
3 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2011-10-16 22:26:10 UTC


Attachments (Terms of Use)

Description Misty Stanley-Jones 2011-10-13 21:59:45 UTC
Because of the way the footer information on topics is generated, we can't use <section> inside long topics. It may be that this is just a rule, or it may be that the stuff at the bottom should be wrapped in a <section>. The problem is that once you have a <section>, you can't have anything else at its level but other sections. So you can't have like this:

<section>
  <para>

  </para>

  <section>

  </section>

  <itemizedlist>

  </itemizedlist>
</section>

But you can have:

<section>
  <para>

  </para>

  <section>

  </section>
  <section>
    <itemizedlist>

    </itemizedlist>
  </section>
</section>

Comment 1 Matthew Casperson 2011-10-16 22:26:10 UTC
This is a limitation of topics thanks to the publican chunks sections. Topics need to be a section that does not contain any other sections.


Note You need to log in before you can comment on or make changes to this bug.