From bb40df57145d35be1199cb816f702702f6cd38b3 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Tue, 1 Mar 2016 18:12:48 -0500 Subject: [PATCH] Increase Plugin Name column width by 10 in devstack plugins list Change-Id: I62b1dca87ca8df4335a062caaf5e6a3e76e9101a --- data/devstack-plugins-registry.header | 6 +++--- tools/generate-devstack-plugins-list.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/data/devstack-plugins-registry.header b/data/devstack-plugins-registry.header index 687db0441c..82737bc59e 100644 --- a/data/devstack-plugins-registry.header +++ b/data/devstack-plugins-registry.header @@ -14,6 +14,6 @@ The following are plugins that a script has found in the openstack/ namespace, which includes but is not limited to official OpenStack projects. -+------------------+-------------------------------------------------------------------------+ -|Plugin Name |URL | -+------------------+-------------------------------------------------------------------------+ ++----------------------------+-------------------------------------------------------------------------+ +|Plugin Name |URL | ++----------------------------+-------------------------------------------------------------------------+ diff --git a/tools/generate-devstack-plugins-list.sh b/tools/generate-devstack-plugins-list.sh index b7817a0096..8a1f743b27 100644 --- a/tools/generate-devstack-plugins-list.sh +++ b/tools/generate-devstack-plugins-list.sh @@ -46,10 +46,10 @@ test -r data/devstack-plugins-registry.header && cat data/devstack-plugins-regis sorted_plugins=$(python tools/generate-devstack-plugins-list.py) for k in ${sorted_plugins}; do - project=${k:0:18} + project=${k:0:28} giturl="git://git.openstack.org/openstack/${k:0:26}" - printf "|%-18s|%-73s|\n" "${project}" "${giturl}" - printf "+------------------+-------------------------------------------------------------------------+\n" + printf "|%-28s|%-73s|\n" "${project}" "${giturl}" + printf "+----------------------------+-------------------------------------------------------------------------+\n" done test -r data/devstack-plugins-registry.footer && cat data/devstack-plugins-registry.footer