diff options
author | Francois Perrad <francois.perrad@gadz.org> | 2010-10-26 13:55:16 +0200 |
---|---|---|
committer | Francois Perrad <francois.perrad@gadz.org> | 2010-10-26 13:55:16 +0200 |
commit | 72f8ac691ad9401790cbf9a1254e43a89fc3d1fa (patch) | |
tree | d56508dd9c5fdb597b1927228f64f9a09a1499b7 | |
parent | spore2dot: check duplicated method (diff) | |
download | api-description-72f8ac691ad9401790cbf9a1254e43a89fc3d1fa.tar.gz |
spore2dot: add a flag for method which needs authentication
-rw-r--r-- | utils/spore2dot.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/spore2dot.pl b/utils/spore2dot.pl index 53424b0..dd6e45a 100644 --- a/utils/spore2dot.pl +++ b/utils/spore2dot.pl @@ -64,7 +64,9 @@ foreach my $spec (@specs) { print $_, "\\]"; $first = 0; } - print ")\\l"; + print ")"; + print " ⊗" if $desc->{authentication}; + print "\\l"; } print "}\"];\n\n"; } |