On Mon, Nov 16, 2015 at 8:00 PM, Craig L Russell <[email protected]> wrote: > We really need our own email notice for this project, No??
That will happen when we get our own repository. Which we still don't have: https://issues.apache.org/jira/browse/INFRA-10399 I'm now advocating that this repository be on GitHub (with notifications going to [email protected] or somesuch). Expect fireworks in tomorrow's board meeting. > So it appears that commit == deploy. Yay for us. Nope. Not yet. I saw the commit and deployed it. Auto-deploy will happen AFTER we get a repository (or I am allowed to use GitHub). > Now, I’d like to make room for the buttons on the right of the screen. Is > there a way to resize the columns? The ICLA stub column is too wide. Or when > I add the buttons will it resize automatically? Columns will resize automatically. You can control this with CSS and/or width attributes, but generally that's more trouble than it is worth. If you get too much data, what I have found to be helpful is to move some lesser used columns into title attributes. What I mean is something like: _td name, title: email titles become tool-tips, which mean that if you hover your cursor over the column you will see the data. Net: the data is still there when you need it, but doesn't clutter up the table. > Craig - Sam Ruby >> Begin forwarded message: >> >> From: [email protected] >> Subject: svn commit: r972640 - >> /infrastructure/trunk/projects/whimsy/www/secretary/icla-lint.cgi >> Date: November 16, 2015 at 3:03:58 PM PST >> To: [email protected] >> >> Author: clr >> Date: Mon Nov 16 23:03:58 2015 >> New Revision: 972640 >> >> Log: >> Update icla-lint >> >> Modified: >> infrastructure/trunk/projects/whimsy/www/secretary/icla-lint.cgi >> >> Modified: infrastructure/trunk/projects/whimsy/www/secretary/icla-lint.cgi >> ============================================================================== >> --- infrastructure/trunk/projects/whimsy/www/secretary/icla-lint.cgi >> (original) >> +++ infrastructure/trunk/projects/whimsy/www/secretary/icla-lint.cgi Mon Nov >> 16 23:03:58 2015 >> @@ -32,7 +32,7 @@ _html do >> >> _div do >> _input id: 'error', type: 'checkbox', checked: true >> - _label 'document not found', for: 'error' >> + _label 'icla not found', for: 'error' >> end >> >> _div do >> @@ -64,11 +64,12 @@ _html do >> _th 'availid' >> _th 'public name' >> _th 'issue' >> - _th 'field 5' >> + _th 'email' >> + _th 'ICLA stub' >> end >> >> document = File.read(input).untaint >> - document.scan(/^(\w.*?):.*?:(.*?):.*:(.*)/) do |(id, name, comment)| >> + document.scan(/^(\w.*?):.*?:(.*?):(.*?):(.*)/) do |(id, name, email, >> comment)| >> issue, note = nil, nil >> comment2 = comment.dup >> >> @@ -92,7 +93,7 @@ _html do >> end >> >> if not missing.empty? >> - issue, note = 'error', "document not found: >> #{missing.first.inspect}" >> + issue, note = 'error', "missing icla/#{missing.first.inspect}" >> end >> elsif comment =~ /^Treasurer;/ or comment =~ /^President;/ >> >> @@ -121,6 +122,7 @@ _html do >> end >> >> _td note >> + _td email >> _td comment2 >> end >> end >> > > Craig L Russell > Secretary, Apache Software Foundation > [email protected] http://db.apache.org/jdo > > >
