From b66b72cc63487717279c67377acfee0f25f939f1 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 5 Feb 2011 12:33:54 +0100 Subject: [PATCH] Update the graph for the XBPS transaction dictionary. --- doc/xbps_transaction_dictionary.dot | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/xbps_transaction_dictionary.dot b/doc/xbps_transaction_dictionary.dot index 9c52e94f..0384a7ad 100644 --- a/doc/xbps_transaction_dictionary.dot +++ b/doc/xbps_transaction_dictionary.dot @@ -53,12 +53,14 @@ digraph transaction_dictionary { state -> state_unpacked [label="value"]; state_notinst [style=filled,fillcolor="yellowgreen",label="not-installed"]; state_unpacked [style=filled,fillcolor="yellowgreen",label="unpacked"]; - dictionary -> trans_action [label="string"]; - trans_action [label="transaction"]; - trans_action -> tract_inst [label="value"]; - trans_action -> tract_up [label="value"]; - trans_action -> tract_cf [label="value"]; + dictionary -> transaction [label="string"]; + transaction [label="transaction"]; + transaction -> tract_inst [label="value"]; + transaction -> tract_up [label="value"]; + transaction -> tract_cf [label="value"]; + transaction -> tract_rm [label="value"]; tract_inst [style=filled,fillcolor="yellowgreen",label="install"]; tract_up [style=filled,fillcolor="yellowgreen",label="update"]; tract_cf [style=filled,fillcolor="yellowgreen",label="configure"]; + tract_rm [style=filled,fillcolor="yellowgreen",label="remove"]; }