mirror of https://github.com/apache/jmeter.git
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:
parent
8eaa251fc5
commit
39b65c92e5
|
|
@ -221,6 +221,10 @@ No
|
||||||
<a href="build-test-plan.html#scoping_rules">$scope.getText()</a>
|
<a href="build-test-plan.html#scoping_rules">$scope.getText()</a>
|
||||||
#end
|
#end
|
||||||
#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)
|
#macro (unknown $u_node)
|
||||||
#if($u_node.getName() == "note")
|
#if($u_node.getName() == "note")
|
||||||
|
|
@ -245,6 +249,8 @@ No
|
||||||
#subsection ($u_node)
|
#subsection ($u_node)
|
||||||
#elseif ($u_node.getName().equals("scope"))
|
#elseif ($u_node.getName().equals("scope"))
|
||||||
#scope ($u_node)
|
#scope ($u_node)
|
||||||
|
#elseif ($node.getName().equals("bugzilla"))
|
||||||
|
#bugzilla ($node)
|
||||||
#else
|
#else
|
||||||
#outputTag($u_node)
|
#outputTag($u_node)
|
||||||
#runloop($u_node)
|
#runloop($u_node)
|
||||||
|
|
|
||||||
|
|
@ -216,6 +216,18 @@ No
|
||||||
</table></p>
|
</table></p>
|
||||||
#end
|
#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)
|
#macro (unknown $node)
|
||||||
#if($node.getName() == "note")
|
#if($node.getName() == "note")
|
||||||
#note($node)
|
#note($node)
|
||||||
|
|
@ -237,6 +249,10 @@ No
|
||||||
#component($node)
|
#component($node)
|
||||||
#elseif ($node.getName().equals("subsection"))
|
#elseif ($node.getName().equals("subsection"))
|
||||||
#subsection ($node)
|
#subsection ($node)
|
||||||
|
#elseif ($u_node.getName().equals("scope"))
|
||||||
|
#scope ($u_node)
|
||||||
|
#elseif ($node.getName().equals("bugzilla"))
|
||||||
|
#bugzilla ($node)
|
||||||
#else
|
#else
|
||||||
#outputTag($node)
|
#outputTag($node)
|
||||||
#runloop($node)
|
#runloop($node)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue