summaryrefslogtreecommitdiff
path: root/ovsdb/dot2pic
Commit message (Collapse)AuthorAgeFilesLines
* tests: Convert dot2pic build tool from Perl to Python.Ben Pfaff2017-11-261-59/+96
| | | | | | | | Perl is unfashionable and Python is more widely available and understood, so this commit converts one of the OVS uses of Perl into Python. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Aaron Conole <aconole@redhat.com>
* vswitchd: Improve the readability of the E-R diagram.Ben Pfaff2013-10-081-1/+8
| | | | | Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Justin Pettit <jpettit@nicira.com>
* Global replace of Nicira Networks.Raju Subramanian2012-05-021-1/+1
| | | | | | | | Replaced all instances of Nicira Networks(, Inc) to Nicira, Inc. Feature #10593 Signed-off-by: Raju Subramanian <rsubramanian@nicira.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
* ovsdb: Implement garbage collection.Ben Pfaff2011-03-101-1/+10
|
* dot2pic: Be less picky parsing "dot" output.Ben Pfaff2010-12-011-3/+4
| | | | | | | | | | | | | Some versions of "dot" put two spaces after the "node" keyword instead of one, which didn't match the regular expression used in dot2pic. This commit changes dot2pic not to care about the number of spaces in "node" and "graph" lines. (The "graph" lines weren't actually a problem but I don't see a reason to be picky about them either.) Different versions of "dot" still produce different output for the same input, but I don't see how to avoid that. Reported-by: Justin Pettit <jpettit@nicira.com>
* docs: Implement our own dot->pic translator.Ben Pfaff2010-11-051-0/+63
Recent versions of Graphviz no longer support output to PIC format, so this commit adds our own internal translator from dot's "plain" output format to PIC format. The "plain" format works best with slightly different "dot" input (advised by the Graphviz manual description of the "plain" format) so this commit also adjusts ovsdb-dot's output.