1
0
mirror of synced 2026-08-06 02:08:01 +00:00

SEC-2291: Fix internal links within reference

Instead of using xlink:href="# use linkend="
This commit is contained in:
Rob Winch
2013-08-28 00:59:02 -05:00
parent 69aac09e1d
commit 4761614c9f
24 changed files with 257 additions and 257 deletions
@@ -53,9 +53,9 @@ class XsdDocumentedTests extends Specification {
def id = delegate.@id.text().replace('-parents', '').replace('-children', '')
result.put(id,[])
delegate.children().breadthFirst().each { sectionChild ->
def href = sectionChild.@href.text()
def href = sectionChild.@linkend.text()
if(href) {
result.get(id).add(href[1..-1])
result.get(id).add(href)
}
}
}