{ "info": { "author": "Josh Bialkowski", "author_email": "josh.bialkowski@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "================\nBuildbot Sitenav\n================\n\nIntroduction\n============\n\nA very simple buildbot UI plugin providing a menu-item with configurable\nlinks. This plugin is intended to help integrate the buildbot master web\ninterface with some larger site structure. For example, you can add links to\nyour code review / code hosting service, bug tracker, discussion page, etc.\n\n.. figure:: https://github.com/cheshirekow/buildbot_sitenav/raw/master/doc/screenshot.png\n :align: center\n\n Screenshot of the buildbot UI menu including the sitnav plugin.\n\n\nInstallation\n============\n\nInstall the `buildbot-sitenav` package into the python environment you use\nfor executing the buildbot master. That probably means something like this::\n\n pip install buildbot-sitenav\n\nAdd the plugin to the `'www'` config section of `master.cfg` for your\nbuildmaster. e.g.::\n\n c['www'] = {\n \"plugins\": {\n \"waterfall_view\": {},\n \"console_view\": {},\n \"grid_view\": {},\n \"sitenav\": {\n \"label\" : \"Navigation\",\n \"links\" : [\n [\"home\", \"/\"],\n [\"gerrit\", \"/gerrit\"],\n [\"forum\", \"/forum\"]\n ]\n }\n },\n }\n\nThe config dictionary for the `sitenav` plugin includes two keys:\n\n* `'label'`: *optional*, specifies the text to use for the button label in the\n menu. The default is \"Site Nav\".\n* `'links'`: *required*, specifies a list of links to add in the submenu. Each\n item in the list is a pair (a list of two elements), composed of\n `[\"