Changes between Version 7 and Version 8 of jazz/preseed_ubuntu


Ignore:
Timestamp:
Oct 27, 2011, 11:51:20 AM (13 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/preseed_ubuntu

    v7 v8  
    9090digraph G {
    9191  rankdir=LR;
    92   subgraph advanced {
    93     node [style=filled];
    94     label = "Advanced options";
    95     "adtxt.cfg";
    96     "adgtk.cfg";
    97     color=red;
    98   }
    99   subgraph main {
    100     node[shape=box,width=1.0];
     92  subgraph cluster_1 {
     93    node [shape=box,width=1.0,style=filled];
     94    label = "main";
    10195    "isolinux.cfg" -> "menu.cfg";
    10296    "menu.cfg" -> "stdmenu.cfg" -> "splash.png";
    10397    "menu.cfg" -> "txt.cfg";
    10498    "menu.cfg" -> "gtk.cfg";
     99    color=blue
     100  }
     101  subgraph cluster_2 {
     102    node [style=filled];
     103    label = "advanced";
    105104    "menu.cfg" -> "adtxt.cfg";
    106105    "menu.cfg" -> "adgtk.cfg";
     106    color=red
     107  }
     108  subgraph cluster_3 {
     109    node [style=filled];
     110    label = "command line";
    107111    "menu.cfg" -> "prompt.cfg" -> "exithelp.cfg";
    108112    "prompt.cfg" -> "menu.cfg";
    109113    "prompt.cfg" -> "f1.txt ~ f10.txt";
     114    color=green
    110115  }
    111116}