Bug 999262

Summary: Relationships should be rendered as just an itemizedlist and not a formalpara
Product: [Community] PressGang CCMS Reporter: Lee Newson <lnewson>
Component: CSProcessorAssignee: pressgang-ccms-dev
Status: CLOSED CURRENTRELEASE QA Contact:
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 1.1   
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: 1.0 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2013-10-09 05:53:18 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:

Description Lee Newson 2013-08-21 04:05:00 UTC
Currently content spec relationships (See Also, Prerequiste and Link List) are being rendered using a itemizedlist wrapped in a formalpara. This isn't required, as the title should be set as the itemizedlist title and not the formalpara.

Example (Current):

<formalpara role="prereqs-list">
  <title>Prerequisite</title>
  <para>
    <itemizedlist>
      <listitem>
        <para>
          <xref linkend=".."/>
        </para>
      </listitem>
    </itemizedlist>
  </para>
</formalpara>

New Example:

<itemizedlist role="prereqs-list">
  <title>Prerequisite</title>
  <listitem>
    <para>
      <xref linkend=".."/>
    </para>
  </listitem>
</itemizedlist>

Comment 1 Lee Newson 2013-10-09 05:53:18 UTC
This was fixed in csprocessor 1.0.

Marking this as closed current release.