You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2017/03/01 17:33:59 UTC

svn commit: r1785009 - /jmeter/trunk/xdocs/stylesheets/site_printable.vsl

Author: fschumacher
Date: Wed Mar  1 17:33:59 2017
New Revision: 1785009

URL: http://svn.apache.org/viewvc?rev=1785009&view=rev
Log:
Make element description available.

Modified:
    jmeter/trunk/xdocs/stylesheets/site_printable.vsl

Modified: jmeter/trunk/xdocs/stylesheets/site_printable.vsl
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/stylesheets/site_printable.vsl?rev=1785009&r1=1785008&r2=1785009&view=diff
==============================================================================
--- jmeter/trunk/xdocs/stylesheets/site_printable.vsl (original)
+++ jmeter/trunk/xdocs/stylesheets/site_printable.vsl Wed Mar  1 17:33:59 2017
@@ -260,6 +260,10 @@ Contributed by $id.getAttributeValue("na
 <tr><td><font color="white" face="Helvetica, Arial, sans-serif">$title.getText()</font></td></tr></table>
 #end
 
+#macro (description $node)
+<div class="description">#runloop($node)</div>
+#end
+
 #macro (unknown $node)
 #if($node.getName() == "note")
 #note($node)
@@ -309,6 +313,8 @@ Contributed by $id.getAttributeValue("na
 #keysym ($node)
 #elseif ($node.getName().equals("guimenuitem"))
 #guimenuitem ($node)
+#elseif ($node.getName().equals("description"))
+#description ($node)
 #else
 #outputTag($node)
 #runloop($node)