aboutsummaryrefslogtreecommitdiff
path: root/ovsdb/ovsdb-doc.in
AgeCommit message (Collapse)Author
2011-08-24docs: Fix some manpage syntax errors found with "groff".Ben Pfaff
2011-07-26ovsdb-doc: Fix definition of .TQ macro.Ben Pfaff
.TP's argument is an optional indentation width, not a string. The string goes on the next line. vswitch.xml didn't actually cause .TQ to be used before, so this wasn't a problem, but an upcoming commit does add a use, so this commit fixes the problem in advance.
2011-06-21ovsdb-doc: Add support for references to specific keys.Ben Pfaff
Now a specific key can be referenced with syntax like <ref table="Bridge" column="other-config" key="datapath-id"/>. Also fixes up an existing place that needed this feature already (and had a typo, too).
2011-06-06ovsdb: Implement table uniqueness constraints ("indexes").Ben Pfaff
2011-05-26ovsdb-doc: Omit E-R diagram from ASCII version of manpage.Ben Pfaff
The E-R diagram is illegible when rendered in ASCII, so exclude it from that version only. The E-R diagram is still included in other versions of the manpage (e.g. for PostScript output).
2011-05-24ovsdb: Annotate E-R diagram with number of allowed values.Ben Pfaff
This makes the diagram even more informative.
2011-03-10ovsdb: Implement garbage collection.Ben Pfaff
2010-11-29ovsdb: Remove trailing whitespaceEthan Jackson
This commit removes trailing whitespace from the files in the ovsdb directory.
2010-09-23ovsdb-doc: Implement new <option>, <ol> tags.Ben Pfaff
2010-08-25Implement initial Python bindings for Open vSwitch database.Ben Pfaff
These initial bindings pass a few hundred of the corresponding tests for C implementations of various bits of the Open vSwitch library API. The poorest part of them is actually the Python IDL interface in ovs.db.idl, which has not received enough attention yet. It appears to work, but it doesn't yet support writes (transactions) and it is difficult to use. I hope to improve it as it becomes clear what semantics Python applications actually want from an IDL.
2010-06-24vswitchd: Add entity-relationship diagram to ovs-vswitchd.conf.db.5.Ben Pfaff
I've updated http://openvswitch.org/ovs-vswitchd.conf.db.5.pdf with example output.
2010-04-20ovsdb-doc: Distinguish hyphens and minus signs in nroff output.Ben Pfaff
In nroff, a minus sign (\-) should generally be used in literal text, whereas hyphens are generally correct elsewhere. This roughly corresponds to bold versus non-bold text, so this commit makes ovsdb-doc output "-" that appears in input as a minus sign if it is bold or a hyphen if it is not.
2010-03-05Add documentation for the vswitch database schema.Ben Pfaff
We can do better than this (I already have some comments) but this is still much better than what we had.