about summary refs log tree commit diff stats
path: root/graphviz.tlv
Commit message (Collapse)AuthorAgeFilesLines
* graphviz: tweak data structure slightlyKartik K. Agaram2022-03-181-4/+3
| | | | | | | A node's edges contain an associative array of target nodes rather than a linear array. This way we automatically dedup edges when we load multiple graphs.
* graphviz: read multiple .dot filesKartik K. Agaram2022-03-181-0/+30
| | | | | It's useful to be able to import dependencies for multiple packages at once, so that we can see common dependencies.
* graphviz: sketch of the dashboardKartik K. Agaram2022-03-181-0/+83
|
* graphviz: done parsing directed graphsKartik K. Agaram2022-03-181-1/+83
| | | | | This is mostly what I want since I'm interested in parsing the output of debtree.
* graphviz: show error when lacking permissionsKartik K. Agaram2022-03-181-4/+6
|
* graphviz: don't interpret substrings as regexesKartik K. Agaram2022-03-181-5/+9
|
* beginnings of a parser for .dot filesKartik K. Agaram2022-03-181-0/+669
I'm following https://graphviz.org/doc/info/lang.html. Just tokenization so far.