debuggers.hg
changeset 12659:d1b0a5adaeab
Added the console class to the diagram.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
Signed-off-by: Ewan Mellor <ewan@xensource.com>
author | Ewan Mellor <ewan@xensource.com> |
---|---|
date | Wed Nov 29 23:40:40 2006 +0000 (2006-11-29) |
parents | 884c25ba7d26 |
children | 88935ae47fa9 c988f781817d |
files | docs/xen-api/xenapi-datamodel-graph.dot |
line diff
1.1 --- a/docs/xen-api/xenapi-datamodel-graph.dot Wed Nov 29 23:34:33 2006 +0000 1.2 +++ b/docs/xen-api/xenapi-datamodel-graph.dot Wed Nov 29 23:40:40 2006 +0000 1.3 @@ -1,5 +1,5 @@ 1.4 digraph g{ 1.5 -node [ shape=box ]; session [ URL="session.html" ] task [ URL="task.html" ] VM [ URL="VM.html" ] host [ URL="host.html" ] host_cpu [ URL="host_cpu.html" ] network [ URL="network.html" ] VIF [ URL="VIF.html" ] PIF [ URL="PIF.html" ] SR [ URL="SR.html" ] VDI [ URL="VDI.html" ] VBD [ URL="VBD.html" ] VTPM [ URL="VTPM.html" ] user [ URL="user.html" ] debug [ URL="debug.html" ]; 1.6 +node [ shape=box ]; session [ URL="session.html" ] task [ URL="task.html" ] VM [ URL="VM.html" ] host [ URL="host.html" ] host_cpu [ URL="host_cpu.html" ] network [ URL="network.html" ] VIF [ URL="VIF.html" ] PIF [ URL="PIF.html" ] SR [ URL="SR.html" ] VDI [ URL="VDI.html" ] VBD [ URL="VBD.html" ] VTPM [ URL="VTPM.html" ] console [ URL="console.html" ] user [ URL="user.html" ] debug [ URL="debug.html" ]; 1.7 session -> host [ label="this_host(1)" ] 1.8 session -> user [ label="this_user(1)" ] 1.9 host -> VM [ color="blue", arrowhead="crow", arrowtail="none" ] 1.10 @@ -14,4 +14,5 @@ VDI -> VDI [ color="blue", arrowhead="no 1.11 VBD -> VM [ color="blue", arrowhead="none", arrowtail="crow" ] 1.12 VTPM -> VM [ label="backend(1)" ] 1.13 VTPM -> VM [ color="blue", arrowhead="none", arrowtail="crow" ] 1.14 +console -> VM [ color="blue", arrowhead="none", arrowtail="crow" ] 1.15 }