Bug 842673 - Create xrefstyles to match csprocessor output
Summary: Create xrefstyles to match csprocessor output
Keywords:
Status: CLOSED DEFERRED
Alias: None
Product: Topic Tool
Classification: Other
Component: FUDCon Docs Hack
Version: unspecified
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Joshua Wulf
QA Contact: Joshua Wulf
URL:
Whiteboard:
Depends On: 839460
Blocks:
TreeView+ depends on / blocked
 
Reported: 2012-07-24 12:57 UTC by Joshua Wulf
Modified: 2014-10-19 23:01 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2014-07-07 14:55:52 UTC
Embargoed:


Attachments (Terms of Use)

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


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