diff options
| author | Philipp Gesang <phg42.2a@gmail.com> | 2013-07-28 13:41:08 +0200 | 
|---|---|---|
| committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-07-28 13:41:08 +0200 | 
| commit | 7c72cc2dbdfd485c0c1d952c895a3d9347ce7a47 (patch) | |
| tree | 498b13f3152228d987058fd9975f648549c604c3 | |
| parent | e2adc36e81847b28fe1939bccfb2d07ccc39129a (diff) | |
| download | luaotfload-7c72cc2dbdfd485c0c1d952c895a3d9347ce7a47.tar.gz | |
update file graph
| -rw-r--r-- | filegraph.dot | 80 | 
1 files changed, 75 insertions, 5 deletions
diff --git a/filegraph.dot b/filegraph.dot index c8a07d3..e412279 100644 --- a/filegraph.dot +++ b/filegraph.dot @@ -51,18 +51,55 @@ strict digraph luaotfload_files { //looks weird with circo ...      merged_luatex_fonts -> font_age [label="luatex-fonts-enc.lua",                                       ltail=cluster_merged] +    fontdbutil -> fontdbutil_diagnostics [label="--diagnose"] + +    fontdbutil -> status [label="version information"] + +    fontdbutil_diagnostics -> status [constraint=no, label="hash files"] + +    merged_luatex_fonts -> characters [label="luaotfload-auxiliary.lua", +                                       ltail=cluster_merged] +      luaotfload_libs -> font_names [label="luaotfload-database.lua"] +    luaotfload_libs -> typo_krn   [label="luaotfload-extralibs.lua"] + +    mkstatus    -> status     [label="generates from distribution files", +                               style=dashed]      mkglyphlist -> font_age     [label="generates from glyphlist.txt",                                   style=dashed] -    subgraph { rank = same; mkglyphlist; fontdbutil; luaotfload } +    mkcharacters -> characters     [label="generates from Context’s char-def.lua", +                                    style=dashed] + +    subgraph { rank = same; +               mkcharacters; +               mkglyphlist; +               mkstatus; +               fontdbutil; +               luaotfload }  /* ····································································   * main files   * ································································· */ -    fontdbutil        [label  = "luaotfload-util\nmkluatexfontdb.lua", +    fontdbutil        [label  = "luaotfload-tool.lua\nmkluatexfontdb.lua", +                       shape  = rect, +                       width  = "3.2cm", +                       height = "1.2cm", +                       color  = "#01012222", +                       style  = "filled,rounded", +                       penwidth=2] + +    fontdbutil_diagnostics [label  = "luaotfload-diagnostics.lua", +                            shape  = rect, +                            width  = "3.2cm", +                            height = "1.2cm", +                            color  = "#01012222", +                            style  = "filled,rounded", +                            penwidth=2] + +    mkstatus          [label  = "mkstatus",                         shape  = rect,                         width  = "3.2cm",                         height = "1.2cm", @@ -78,6 +115,14 @@ strict digraph luaotfload_files { //looks weird with circo ...                         style  = "filled,rounded",                         penwidth=2] +    mkcharacters      [label  = "mkcharacters", +                       shape  = rect, +                       width  = "3.2cm", +                       height = "1.2cm", +                       color  = "#01012222", +                       style  = "filled,rounded", +                       penwidth=2] +      luaotfload        [label  = "luaotfload.lua",                         shape  = rect,                         width  = "3.2cm", @@ -102,11 +147,27 @@ strict digraph luaotfload_files { //looks weird with circo ...                         style  = "filled,rounded",                         penwidth=2] +    typo_krn [label  = "luaotfload-typo-krn.lua", +              shape  = rect, +              width  = "3.2cm", +              height = "1.2cm", +              color  = "#01012222", +              style  = "filled,rounded", +              penwidth=2] +  /* ····································································   * luaotfload files   * ································································· */ +    characters [style      = "filled,dashed", +                shape      = rect, +                width      = "3.2cm", +                fillcolor  = "#01012222", +                color      = grey40, +                style      = "filled,dotted,rounded", +                label      = "luaotfload-characters.lua"] +      font_age [style      = "filled,dashed",                shape      = rect,                width      = "3.2cm", @@ -123,6 +184,14 @@ strict digraph luaotfload_files { //looks weird with circo ...                  style      = "filled,dotted,rounded",                  label      = "luaotfload-names.lua\nluaotfload-names.luc"] +    status [style      = "filled,dashed", +            shape      = rect, +            width      = "3.2cm", +            fillcolor  = "#01012222", +            color      = grey40, +            style      = "filled,dotted,rounded", +            label      = "luaotfload-status.lua"] +      otfl_blacklist_cnf [style      = "filled,dashed",                          shape      = rect,                          width      = "3.2cm", @@ -139,9 +208,10 @@ strict digraph luaotfload_files { //looks weird with circo ...          label      = <              <table cellborder="0" bgcolor="#FFFFFFAA">                  <th> <td colspan="2"> <font point-size="12" face="Iwona Italic">Luaotfload Libraries</font> </td> </th> -                <tr> <td>luaotfload-auxiliary.lua</td> <td>luaotfload-features.lua</td> </tr> -                <tr> <td>luaotfload-override.lua</td>  <td>luaotfload-loaders.lua</td>  </tr> -                <tr> <td>luaotfload-database.lua</td>  <td>luaotfload-color.lua</td>    </tr> +                <tr> <td>luaotfload-auxiliary.lua</td>  <td>luaotfload-features.lua</td>    </tr> +                <tr> <td>luaotfload-override.lua</td>   <td>luaotfload-loaders.lua</td>     </tr> +                <tr> <td>luaotfload-database.lua</td>   <td>luaotfload-color.lua</td>       </tr> +                <tr> <td>luaotfload-extralibs.lua</td>  <td>luaotfload-letterspace.lua</td> </tr>              </table>          >,      ]  | 
