Difference between revisions of "User:Matteo/scratch.04"

From FreekiWiki
Jump to navigation Jump to search
m (clean)
(→‎R: and more)
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
clean
+
== R ==
 +
We are doing things
 +
 
 +
<graphviz>
 +
digraph g {
 +
 
 +
      subgraph cluster_5 {
 +
node [style=filled];
 +
p0 -> p1;
 +
label = "Printer";
 +
                color=green
 +
}
 +
 
 +
        p0 -> r3;
 +
        p1 -> r3;
 +
        p1 -> s4;
 +
 
 +
subgraph cluster_0 {
 +
node [style=filled];
 +
a0 -> a1;
 +
label = "Monitor";
 +
                color=green
 +
}
 +
 
 +
        a0 -> r0;
 +
        a1 -> r0;
 +
        a1 -> s0;
 +
 
 +
subgraph cluster_1 {
 +
                node [style=filled];
 +
 
 +
        subgraph cluster_11 {
 +
      e0 -> e1;
 +
                      e0 -> e2;
 +
                      e0 -> e3;
 +
                      e1 -> e0;
 +
                      e2 -> e0;
 +
                      e3 -> e0;
 +
                      label = "System Evaluation";
 +
      color=blue
 +
                }
 +
                subgraph cluster_10 {
 +
                        l1 -> l0;
 +
                        label = "Laptop";
 +
        color=blue
 +
                }
 +
                e2 -> c0;
 +
label = "Prebuild";
 +
color=blue
 +
}
 +
 
 +
        e0 -> c0;
 +
        e1 -> c0;
 +
        c0 -> t0;
 +
        c0 -> b0;
 +
        e0 -> t0;
 +
        e1 -> s1;
 +
        e2 -> s1;
 +
        e3 -> s1;
 +
        s1 -> b0;
 +
        s1 -> ab;
 +
        l0 -> lb;
 +
        l1 -> t0;
 +
 
 +
subgraph cluster_2 {
 +
node [style=filled];
 +
t0 -> s2;
 +
label = "testing";
 +
                color=purple
 +
}
 +
 
 +
        t0 -> b0;
 +
        t0 -> r2;
 +
        t0 -> lb;
 +
        t0 -> ab;
 +
 
 +
subgraph cluster_3 {
 +
node [style=filled];
 +
b0 -> bq;
 +
                lb -> lq;
 +
                ab -> aq;
 +
label = "Build";
 +
                color=purple
 +
}
 +
 
 +
 
 +
subgraph cluster_6 {
 +
node [style=filled];
 +
 +
label = "laptop build";
 +
                color=purple
 +
}
 +
subgraph cluster_4 {
 +
node [style=filled];
 +
r0;
 +
                r1 -> r2;
 +
                r1 -> r4;
 +
                r2 -> r5;
 +
                r3;
 +
label = "recycling";
 +
}
 +
r0 [shape=Msquare];
 +
r1 [shape=hexagon];
 +
r2 [shape=hexagon];
 +
r3 [shape=Msquare];
 +
        r4 [shape=Msquare];
 +
        r5 [shape=Msquare];
 +
 
 +
a0 [shape=hexagon];
 +
a1 [shape=hexagon];
 +
 
 +
        s0 [shape=house];
 +
        s1 [shape=house];
 +
        s2 [shape=house];
 +
        s3 [shape=house];
 +
        s4 [shape=house];
 +
        s5 [shape=house];
 +
 
 +
        e0 [shape=box];
 +
        e1 [shape=box];
 +
        c0 [shape=box];
 +
        b0 [shape=box];
 +
        bq [shape=box];
 +
 
 +
        b0 -> e0
 +
        start -> p0;
 +
start -> a0;
 +
start -> e0;
 +
        start -> l1;
 +
        start -> c0;
 +
        e0 -> r1;
 +
        bq -> s3;
 +
        aq -> s3;
 +
        lq -> s5;
 +
 
 +
start [shape=hexagon];
 +
}
 +
</graphviz>
 +
 
 +
== L ==
 +
<graphvizr>
 +
digraph G {
 +
 
 +
Policy_idea -> Read_Policies
 +
Policy_intrest -> Read_Policies
 +
Read_Policies -> Link_to_List
 +
Read_Policies -> Policy_still_relivent
 +
Read_Policies -> More_info_needed
 +
Link_to_List -> Look_for_link
 +
Policy_still_relivent -> ask_the_question
 +
More_info_needed -> ask_the_question
 +
ask_the_question -> document
 +
Look_for_link -> document
 +
document -> Read_Policies
 +
}
 +
</graphvizr>
 +
* [[Policy Development]]
 +
* [[Policies]]
 +
* [[Policy and Structure Class]]

Latest revision as of 11:49, 28 November 2007

R

We are doing things

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.

L

<graphvizr> digraph G {

Policy_idea -> Read_Policies Policy_intrest -> Read_Policies Read_Policies -> Link_to_List Read_Policies -> Policy_still_relivent Read_Policies -> More_info_needed Link_to_List -> Look_for_link Policy_still_relivent -> ask_the_question More_info_needed -> ask_the_question ask_the_question -> document Look_for_link -> document document -> Read_Policies } </graphvizr>