Translations:Requests/3/pt: Difference between revisions
Jump to navigation
Jump to search
Created page with "==Vida útil da solicitação== <div style="float:right; margin: 0px 0px 0px 0px"> <graphviz border='frame' format='svg'> digraph StatesDiagram { node [shape=rectangle style=rounded fontsize="9pt"]; edge [fontsize="7pt"]; //----- Gráfico principal // Nós Início [label="" shape="circle" style=filled fillcolor=black fixedsize=true width=0.2 height=0.2]; Registrado [label="Registrado"]; Processando [label="Processando"]; WithResults [label="WithResults"]; Validado [label..." |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
<graphviz border='frame' format='svg'> | <graphviz border='frame' format='svg'> | ||
digraph StatesDiagram { | digraph StatesDiagram { | ||
node [shape=rectangle style=rounded fontsize="9pt"]; | node [shape=rectangle style=rounded fontsize="9pt"]; | ||
edge [fontsize="7pt"]; | edge [fontsize="7pt"]; | ||
//----- | //----- Main graph | ||
// | // Nodes | ||
Begin [label="" shape="circle" style=filled fillcolor=black fixedsize=true width=0.2 height=0.2]; | |||
Registered [label="Registrado"]; | |||
Processing [label="Processando"]; | |||
WithResults [label=" | WithResults [label="Com Resultados"]; | ||
Validated [label="Validado"]; | |||
Cancelled [label="Cancelado"]; | |||
End [label="" shape="doublecircle" style=filled fillcolor="black" fixedsize=true width=0.2 height=0.2]; | End [label="" shape="doublecircle" style=filled fillcolor="black" fixedsize=true width=0.2 height=0.2]; | ||
// | // Edges | ||
Begin -> | Begin -> Registered [constraint=false]; | ||
Registered -> | Registered -> Processing [label="Algumas amostras entregues" constraint=false]; | ||
Processing -> WithResults [label="Todos os resultados fornecidos" | Processing -> WithResults [label="Todos os resultados fornecidos" constraint=false]; | ||
WithResults -> | WithResults -> Validated [label="Todos os testes validados" constraint=false]; | ||
Validated -> | Validated -> End [constraint=false]; | ||
Registered -> | Registered -> Cancelled [label="Cancelar"]; | ||
Processing -> | Processing -> Cancelled [label="Cancelar"]; | ||
WithResults -> Cancelled [label="Cancelar"]; | |||
Cancelled -> | Cancelled -> End [constraint=falso]; | ||
{ rank=same; | { rank=same; Begin Registered Processing WithResults Validated} | ||
{ rank= | { rank=same; Cancelled End} | ||
} | } | ||
</graphviz> | </graphviz> | ||
</div> | </div> |