diff options
author | Mark Wielaard <mwielaard@redhat.com> | 2008-08-08 15:30:08 +0200 |
---|---|---|
committer | Mark Wielaard <mwielaard@redhat.com> | 2008-08-08 15:30:08 +0200 |
commit | 03e73903d46c54ed0a1e1a06ed4c21b6570fda9e (patch) | |
tree | bea702c9f0d530bf150273a56017f0ad73ff81e3 /testsuite/systemtap.examples/examples-index-gen.pl | |
parent | 164567d1f0c89310228e913c38a51c08e890f947 (diff) | |
download | systemtap-steved-03e73903d46c54ed0a1e1a06ed4c21b6570fda9e.tar.gz systemtap-steved-03e73903d46c54ed0a1e1a06ed4c21b6570fda9e.tar.xz systemtap-steved-03e73903d46c54ed0a1e1a06ed4c21b6570fda9e.zip |
Don't output output, exits, status line in indexes (mentioned in descriptions).
Diffstat (limited to 'testsuite/systemtap.examples/examples-index-gen.pl')
-rw-r--r-- | testsuite/systemtap.examples/examples-index-gen.pl | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/testsuite/systemtap.examples/examples-index-gen.pl b/testsuite/systemtap.examples/examples-index-gen.pl index 726df973..e105f3fc 100644 --- a/testsuite/systemtap.examples/examples-index-gen.pl +++ b/testsuite/systemtap.examples/examples-index-gen.pl @@ -48,11 +48,12 @@ sub add_meta_txt(*;$) { print $file "$scripts{$meta}{name} - $scripts{$meta}{title}\n"; - print $file "output: $scripts{$meta}{output}, "; - print $file "exits: $scripts{$meta}{exit}, "; - print $file "status: $scripts{$meta}{status}\n"; + # Don't output these, the description mentions all these in general. + #print $file "output: $scripts{$meta}{output}, "; + #print $file "exits: $scripts{$meta}{exit}, "; + #print $file "status: $scripts{$meta}{status}\n"; - print $file "subsystem: $scripts{$meta}{subsystem}, "; + print $file "subsystems: $scripts{$meta}{subsystem}, "; print $file "keywords: $scripts{$meta}{keywords}\n\n"; $Text::Wrap::columns = 72; @@ -68,11 +69,12 @@ sub add_meta_html(*;$) { print $file "<li><a href=\"$name\">$name</a> "; print $file "- $scripts{$meta}{title}<br>\n"; - print $file "output: $scripts{$meta}{output}, "; - print $file "exits: $scripts{$meta}{exit}, "; - print $file "status: $scripts{$meta}{status}<br>\n"; + # Don't output these, the description mentions all these in general. + #print $file "output: $scripts{$meta}{output}, "; + #print $file "exits: $scripts{$meta}{exit}, "; + #print $file "status: $scripts{$meta}{status}<br>\n"; - print $file "subsystem: $scripts{$meta}{subsystem}, "; + print $file "subsystems: $scripts{$meta}{subsystem}, "; print $file "keywords: $scripts{$meta}{keywords}<br>\n"; print $file "<p>$scripts{$meta}{description}"; |