Add bugzilla macro

Add missing scope macro to printable version

git-svn-id: https://svn.apache.org/repos/asf/jakarta/jmeter/trunk@773330 13f79535-47bb-0310-9956-ffa450edef68

Former-commit-id: 46f944f268
This commit is contained in:
Sebastian Bazley 2009-05-10 12:37:47 +00:00
parent 8eaa251fc5
commit 39b65c92e5
2 changed files with 22 additions and 0 deletions

View File

@ -221,6 +221,10 @@ No
<a href="build-test-plan.html#scoping_rules">$scope.getText()</a>
#end
#end
##
#macro ( bugzilla $id)
<a href="https://issues.apache.org/bugzilla/show_bug.cgi?id=$id.getText()">Bug $id.getText()</a>
#end
#macro (unknown $u_node)
#if($u_node.getName() == "note")
@ -245,6 +249,8 @@ No
#subsection ($u_node)
#elseif ($u_node.getName().equals("scope"))
#scope ($u_node)
#elseif ($node.getName().equals("bugzilla"))
#bugzilla ($node)
#else
#outputTag($u_node)
#runloop($u_node)

View File

@ -216,6 +216,18 @@ No
</table></p>
#end
#macro (scope $scope)
#if ($scope.getText() == "")
<a href="build-test-plan.html#scoping_rules">scope</a>
#else
<a href="build-test-plan.html#scoping_rules">$scope.getText()</a>
#end
#end
#macro ( bugzilla $id)
<a href="https://issues.apache.org/bugzilla/show_bug.cgi?id=$id.getText()">Bug $id.getText()</a>
#end
#macro (unknown $node)
#if($node.getName() == "note")
#note($node)
@ -237,6 +249,10 @@ No
#component($node)
#elseif ($node.getName().equals("subsection"))
#subsection ($node)
#elseif ($u_node.getName().equals("scope"))
#scope ($u_node)
#elseif ($node.getName().equals("bugzilla"))
#bugzilla ($node)
#else
#outputTag($node)
#runloop($node)