We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c9bf9b commit 15a3474Copy full SHA for 15a3474
1 file changed
ietf/bin/graphall
@@ -13,5 +13,15 @@ do
13
then
14
python modelviz.py $d
15
fi
16
-done > models.dot
17
-unflatten -f -l 10 models.dot | dot -Tps -Gsize=10.5,8.0 -Gmargin=0.25 -Gratio=auto -Grotate=90 | sed -e 's/ Bold/-Bold/' > models.ps
+done | unflatten -f -l 10 | gvpr -c '
+BEG_G {
18
+ node_t title = node($G, "title");
19
+ title.shape="parallelogram";
20
+ string model = $G.name;
21
+ model = sub(model, "^ietf.");
22
+ model = sub(model, ".models$");
23
+ title.label = model;
24
+ title.fontsize = 24;
25
+}
26
+' > models.dot
27
+dot -Tps -Gsize=10.5,8.0 -Gmargin=0.25 -Gratio=auto -Grotate=90 models.dot | sed -e 's/ Bold/-Bold/' > models.ps
0 commit comments