diff options
author | terry%mozilla.org <> | 1999-09-09 02:27:42 +0200 |
---|---|---|
committer | terry%mozilla.org <> | 1999-09-09 02:27:42 +0200 |
commit | 50ff63b3df6757a1d95b4ce305882299fb59b651 (patch) | |
tree | c3fff71c10757fc2f27db6e81dda8be2f3a97aab /showdependencygraph.cgi | |
parent | 0253f8900b44c055e60fa5f1fff879d783aa0d84 (diff) | |
download | bugzilla-50ff63b3df6757a1d95b4ce305882299fb59b651.tar.gz bugzilla-50ff63b3df6757a1d95b4ce305882299fb59b651.tar.xz |
Limit graph sizes to 64 inches in either dimension. (Yikes!)
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 7e04259f8..1c5985c6d 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -59,7 +59,7 @@ if (defined $id) { open(DOT, ">$filename") || die "Can't create $filename"; print DOT "digraph G {"; print DOT qq{ -graph [URL="${urlbase}query.cgi", rankdir=$::FORM{'rankdir'}] +graph [URL="${urlbase}query.cgi", rankdir=$::FORM{'rankdir'}, size="64,64"] node [URL="${urlbase}show_bug.cgi?id=\\N", style=filled, color=lightgrey] }; my %baselist; |