Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Later
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): All OS Platforms
Affected OS(s): All OS Platforms
Language Found: English
Description
I added following two @see tags in one of AS code comment:
- @see coldfusion.air.Session
- @see flash.html.HTMLLoader
The DITA XML file generated by ASDoc compiler was:
<related-links class="- topic/related-links ">
<link href="coldfusion.air.xml#Session" class="- topic/link ">
<linktext class="- topic/linktext ">coldfusion.air.Session</linktext>
</link>
<link href="flash.html.HTMLLoader" class="- topic/link ">
<linktext class="- topic/linktext ">flash.html.HTMLLoader</linktext>
</link>
</related-links>
If we look at the href= values getting generated by compiler for flash.html.HTMLLoader @see tag it is not correct.
For @see coldfusion.air.Session compiler generated href="coldfusion.air.xml#Session" which is correct.
For @see flash.html.HTMLLoader compiler generated href="flash.html.HTMLLoader" which is incorrect, it should be generated as href="flash.html.xml#HTMLLoader" to process it correctly by ASDoc XSLT code.