Browse code

Increase Plugin Name column width by 10 in devstack plugins list

Change-Id: I62b1dca87ca8df4335a062caaf5e6a3e76e9101a

Clint Adams authored on 2016/03/02 08:12:48
Showing 2 changed files
... ...
@@ -14,6 +14,6 @@ The following are plugins that a script has found in the openstack/
14 14
 namespace, which includes but is not limited to official OpenStack
15 15
 projects.
16 16
 
17
-+------------------+-------------------------------------------------------------------------+
18
-|Plugin Name       |URL                                                                      |
19
-+------------------+-------------------------------------------------------------------------+
17
++----------------------------+-------------------------------------------------------------------------+
18
+|Plugin Name                 |URL                                                                      |
19
++----------------------------+-------------------------------------------------------------------------+
... ...
@@ -46,10 +46,10 @@ test -r data/devstack-plugins-registry.header && cat data/devstack-plugins-regis
46 46
 sorted_plugins=$(python tools/generate-devstack-plugins-list.py)
47 47
 
48 48
 for k in ${sorted_plugins}; do
49
-    project=${k:0:18}
49
+    project=${k:0:28}
50 50
     giturl="git://git.openstack.org/openstack/${k:0:26}"
51
-    printf "|%-18s|%-73s|\n" "${project}" "${giturl}"
52
-    printf "+------------------+-------------------------------------------------------------------------+\n"
51
+    printf "|%-28s|%-73s|\n" "${project}" "${giturl}"
52
+    printf "+----------------------------+-------------------------------------------------------------------------+\n"
53 53
 done
54 54
 
55 55
 test -r data/devstack-plugins-registry.footer && cat data/devstack-plugins-registry.footer