From 6499556b09719ebb41839014437fc6ea0d4f54d4 Mon Sep 17 00:00:00 2001 From: Ghanshyam Mann Date: Tue, 11 May 2021 16:48:05 -0500 Subject: [PATCH] Add email and irc nick for SIG chair/co-chair Having email id and IRC nick in doc will help to eaisly reachout the SIG chair/co-chair. Change-Id: I6e13771e1e8e9393bd135db54d52911e98f09263 --- doc/source/_exts/sigtable.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/_exts/sigtable.py b/doc/source/_exts/sigtable.py index e912009..8ea32c7 100644 --- a/doc/source/_exts/sigtable.py +++ b/doc/source/_exts/sigtable.py @@ -28,7 +28,7 @@ class SIGTable(Table): """Insert the members table using the referenced file as source. """ HEADERS = ('Name', 'Status', 'Chairs', 'Scope') - WIDTHS = [15, 15, 25, 60] + WIDTHS = [15, 15, 40, 80] option_spec = {'class': directives.class_option, 'name': directives.unchanged, @@ -104,7 +104,7 @@ class SIGTable(Table): elif h.lower() == "chairs": chairs = [] for chair in all_teams[team]['chairs']: - chairs.append("%s
" % (chair['name'])) + chairs.append("%s (%s,
%s)

" % (chair['name'], chair['irc'], chair['email'])) cell = "".join(chairs) entry = nodes.entry() para = nodes.raw('', cell, format='html') @@ -127,7 +127,7 @@ class SIGTable(Table): class RetiredSIGTable(SIGTable): HEADERS = ('Name', 'Status', 'Chairs', 'Scope', 'Reason') - WIDTHS = [15, 15, 25, 60, 60] + WIDTHS = [15, 15, 40, 60, 60] def setup(app): app.add_directive('sigtable', SIGTable)