Bug 842673

Summary: Create xrefstyles to match csprocessor output
Product: [Other] Topic Tool Reporter: Joshua Wulf <jwulf>
Component: FUDCon Docs HackAssignee: Joshua Wulf <jwulf>
Status: CLOSED DEFERRED QA Contact: Joshua Wulf <jwulf>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: unspecifiedCC: lcarlon, 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: 2014-07-07 14:55:52 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:
Embargoed:
Bug Depends On: 839460    
Bug Blocks:    

Description Joshua Wulf 2012-07-24 12:57:40 UTC
csprocessor now injects the following xrefstyles:

"see-also"
"prereq"
"link-list"

These need to be defined in the brand as equivalents to simpletarget.

Comment 1 Joshua Wulf 2012-07-24 12:58:59 UTC
The workaround in the meantime: 


#!/bin/bash
if [ -d assembly/publican/en-US/topics ]; then
  cd assembly/publican/en-US/topics
  perl -p -i -e 's/xrefstyle="prereq"//g' *.xml
  perl -p -i -e 's/xrefstyle="see-also"//g' *.xml
  perl -p -i -e 's/xref linkend=/xref xrefstyle="simpletarget" linkend=/g' *.xml
fi