summaryrefslogtreecommitdiff
path: root/lib/table.man
Commit message (Collapse)AuthorAgeFilesLines
* table: Add --max-column-width option.Ben Pfaff2017-12-221-0/+5
| | | | | | | | This can make it easier to read tables that contain wide data in some columns. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Justin Pettit <jpettit@ovn.org>
* ovsdb-client: improve formatting option description in man pageLance Richardson2017-04-061-6/+6
| | | | | | | | | | Use correct option name for "--no-headings", remove duplicate "--no-heading" option in synopsis. Clarify description of "--data=json" option. Signed-off-by: Lance Richardson <lrichard@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* table: correct documented default format in man pagesLance Richardson2016-12-221-4/+4
| | | | | | | | | | | | | | | | | There are currently five users of the table formatting library, all of which default to "list" except for ovsdb-client which defaults to "table". The library current default is "table", and the table.man man page fragment only considers ovs-vsctl to use something other than "table" as a default.As a result, the man pages for ovn-sbctl and vtep-ctl are currently incorrect (these options aren't documented in the ovn-nbctl man page, which will need to be addressed in a future patch). Fix by making the library default format "list" and handling ovsdb-client as the exception. Signed-off-by: Lance Richardson <lrichard@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* ovsdb-client: Improve manpage.Ben Pfaff2012-02-021-1/+1
| | | | Signed-off-by: Ben Pfaff <blp@nicira.com>
* table: Fix typo in manpage.Ben Pfaff2011-03-101-1/+1
| | | | Reported-by: Paul Ingram <paul@nicira.com>
* ovs-vsctl: Add formatting options for the "list" and "find" commands.Ben Pfaff2011-02-081-3/+7
| | | | | | | The default format is the same as before (which the testsuite verifies). The most important use for the new formatting options is --bare, which outputs a format that is easy to parse from a shell script. An upcoming patch will start using that.
* table: Add new "bare" output formatting options.Ben Pfaff2011-02-081-2/+11
| | | | | | | --format=list corresponds to the output format that "ovs-vsctl list" has always used. --bare is easier for scripts to parse.
* ovsdb-client: Break table formatting into new library.Ben Pfaff2011-02-081-0/+58
This makes the table formatting functions available to other programs. ovs-vsctl will start using it soon on the "list" and "find" commands.