| Summary: | Topic Title injects incorrectly in template | ||
|---|---|---|---|
| Product: | [Community] PressGang CCMS | Reporter: | David Ryan <dryan> |
| Component: | Web-UI | Assignee: | Matthew Casperson <mcaspers> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | David Ryan <dryan> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 1.x | CC: | cbredesen, misty, rlandman, topic-tool-list |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2011-10-09 22:49:34 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
David Ryan
2011-10-05 05:41:58 UTC
topics 5015,5036,4699,4432,4430,5033,4585,4586,4571,5222,2448,5176,4719,4747,3877,3878,3879,4825,4307 are affected (from Misty) All are fixed now but 5222, which I am about to fix. Here is its broken XML. The formalpara is supposed to be titled Overview, I think. The section title got put there instead. <?xml version="1.0" encoding="UTF-16"?> <section> <!-- INJECT TITLE HERE --> <!-- Uncomment prerequisites and result if required. --> <!-- Replace all text marked with ** and leave other text --> <!-- <itemizedlist> <title>Prerequisites</title> ** inject list items here ** </itemizedlist> --> <formalpara> <title>Configure server advertisement properties for your mod_cluster-enabled HTTPD</title> <para> For instructions on configuring your HTTPD to interact with the mod_cluster load balancer, refer to <!-- Inject: 5218 -->. One aspect of the configuration which needs more explanation is <firstterm>server advertisement</firstterm>. </para> </formalpara> <para> When server advertisement is active, the HTTPD broadcasts messages containing the IP address and port number specified in the mod_cluster virtual host. To configure these values, refer to <!-- Inject: 5218 -->. If UDP multicast is not available on your network, or you prefer to configure worker nodes with a static list of proxy servers, you can disable server advertisement and manually configure the worker nodes. Refer to <!-- Inject: 5223 --> for information on configuring a worker node. </para> <procedure> <title>Task</title> <step> <title>Disable the <code>AdvertiseFrequency</code> parameter, if it exists.</title> <para> If you have a line like the following in your <sgmltag><VirtualHost></sgmltag> statement, comment it out by putting a <literal>#</literal> (hash) character before the first character. The value may be different from <literal>5</literal>. </para> <screen>AdvertiseFrequency 5</screen> </step> <step> <title>Add the directive to disable server advertisement.</title> <para> Add the following directive inside the <sgmltag><VirtualHost></sgmltag> statement, to disable server advertisement. </para> <screen>ServerAdvertisement Off</screen> </step> <step> <title>Restart the HTTPD server.</title> <para> Restart the HTTPD server by issuing one of the following, depending on whether you use Red Hat Enterprise Linux or Microsoft Windows Server. </para> <stepalternatives> <step> <title>Red Hat Enterprise Linux</title> <screen>[root@host ]# service httpd restart</screen> </step> <step> <title>Microsoft Windows Server</title> <screen>C:\> net service httpd stop C:\>net service httpd start</screen> </step> </stepalternatives> </step> </procedure> <formalpara> <title>Result</title> <para> The HTTPD no longer advertises the IP address and port of your mod_cluster proxy. To reiterate, you need to configure your worker nodes to use a static address and port to communicate with the proxy. Refer to <!-- Inject: 5223 --> for more details. </para> </formalpara> <!-- Generated Topic Details GENERAL DETAILS Topic ID: 5222 Topic Title: Configure server advertisement properties for your mod_cluster-enabled HTTPD Topic Added By: Topic Description: TOPIC TAGS 4: Task 13: IA Proposed 30: IA Low Priority 48: High Availability (HA) Clustering 50: mod_cluster 58: Configuration 71: Assigned 90: mstanley 132: EAP 6 Beta SOURCE URLS RELATED TOPICS 5218: Install the mod_cluster module into Apache HTTPD or Enterprise Web Server HTTPD --> </section> Fixed in 20111007-0803 Verified in build 20111007-1458 per test below. Title now correctly injects under the <section> element, with the template's <title>Task</title> element string restored to the <procedure> section as a separator from Summary and Prerequisite blocks.
<?xml version="1.0" encoding="UTF-8"?>
<section>
<title>Title Inject Fix Test</title>
<!-- INJECT TITLE HERE -->
<!-- Uncomment prerequisites and result if required. -->
<!-- Replace all text marked with ** and leave other text -->
<!--
<itemizedlist>
<title>Prerequisites</title>
** inject list items here **
</itemizedlist>
-->
<procedure>
<title>Task</title>
<!-- "Task" title only required to visually separate task from prerequisites -->
<step>
<title>** step title **</title>
<para>** step instructions **</para>
</step>
<step>
--snip--
|