Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | graphviz: tweak data structure slightly | Kartik K. Agaram | 2022-03-18 | 1 | -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 files | Kartik K. Agaram | 2022-03-18 | 1 | -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 dashboard | Kartik K. Agaram | 2022-03-18 | 1 | -0/+83 |
| | |||||
* | graphviz: done parsing directed graphs | Kartik K. Agaram | 2022-03-18 | 1 | -1/+83 |
| | | | | | This is mostly what I want since I'm interested in parsing the output of debtree. | ||||
* | graphviz: show error when lacking permissions | Kartik K. Agaram | 2022-03-18 | 1 | -4/+6 |
| | |||||
* | graphviz: don't interpret substrings as regexes | Kartik K. Agaram | 2022-03-18 | 1 | -5/+9 |
| | |||||
* | beginnings of a parser for .dot files | Kartik K. Agaram | 2022-03-18 | 1 | -0/+669 |
I'm following https://graphviz.org/doc/info/lang.html. Just tokenization so far. |