From 11ca0d481b32f2dfe715c2a8f3d635dd4ed9f640 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 20 Jun 2012 09:11:17 +0200 Subject: [PATCH] doc: update transaction dot file. --- doc/xbps_transaction_dictionary.dot | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/xbps_transaction_dictionary.dot b/doc/xbps_transaction_dictionary.dot index 0384a7ad..dc8e1b7e 100644 --- a/doc/xbps_transaction_dictionary.dot +++ b/doc/xbps_transaction_dictionary.dot @@ -4,10 +4,15 @@ digraph transaction_dictionary { node [shape=box,fontname="DejaVuSansCondensed",fontsize="8",height=".1",width=".1"]; main -> packages [label="array"]; main -> missing_deps [label="array"]; + main -> conflicts [label="array"]; missing_deps -> mdep1 [label="string"]; missing_deps -> mdep2 [label="string"]; + conflicts -> conflict1 [label="string"]; + conflicts -> conflict2 [label="string"]; mdep1 [style=filled,label="blob>=3.0<4.1"]; mdep2 [style=filled,label="..."]; + conflict1 [style=filled,label="blob<4.0.1"]; + conflict2 [style=filled,label="..."]; main -> totalsize [label="integer"]; main -> totaldlsize [label="integer"]; main [style=filled,fillcolor="darksalmon",label="Main dictionary"];