You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2017/09/21 23:01:43 UTC

[whimsy] branch agenda_on_vue updated (2d5eb80 -> 2cbab49)

This is an automated email from the ASF dual-hosted git repository.

rubys pushed a change to branch agenda_on_vue
in repository https://gitbox.apache.org/repos/asf/whimsy.git.


    from 2d5eb80  redo adjournment state; convert self.forceUpdate calls to Vue
     add 4f90669  skip non-standard agenda in parsing for historical comments
     add 7bda857  correct names of files to be committed in icla2
     add 1117afc  point to the reporting page
     add 730791b  fix bug on creating new projects
     add 59860a7  Refactor and provide indication of unsupported URLs
     add 6b01290  mapping for DRAT
     add 5849de6  recover if site doesn't exist
     add b23af2e  provide default for second argument
     add b732276  better check for a non-standard agenda format
     new 2cbab49  Merge branch 'master' into agenda_on_vue

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lib/whimsy/asf/agenda.rb                           |   3 +-
 lib/whimsy/asf/committee.rb                        |   1 +
 tools/site-scan.rb                                 |  24 ++--
 www/board/agenda/data/reminder1.txt                |   5 +-
 www/board/agenda/data/reminder2.txt                |   5 +-
 www/board/agenda/views/actions/todos.json.rb       |   8 +-
 .../workbench/views/actions/icla2.json.rb          |   3 +-
 www/site.cgi                                       | 124 ++++++++++++---------
 8 files changed, 108 insertions(+), 65 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@whimsical.apache.org" <co...@whimsical.apache.org>'].

[whimsy] 01/01: Merge branch 'master' into agenda_on_vue

Posted by ru...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch agenda_on_vue
in repository https://gitbox.apache.org/repos/asf/whimsy.git

commit 2cbab49a86c18d9a54fe02f401ab29a64064cf76
Merge: 2d5eb80 b732276
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Thu Sep 21 18:51:53 2017 -0400

    Merge branch 'master' into agenda_on_vue

 lib/whimsy/asf/agenda.rb                           |   3 +-
 lib/whimsy/asf/committee.rb                        |   1 +
 tools/site-scan.rb                                 |  24 ++--
 www/board/agenda/data/reminder1.txt                |   5 +-
 www/board/agenda/data/reminder2.txt                |   5 +-
 www/board/agenda/views/actions/todos.json.rb       |   8 +-
 .../workbench/views/actions/icla2.json.rb          |   3 +-
 www/site.cgi                                       | 124 ++++++++++++---------
 8 files changed, 108 insertions(+), 65 deletions(-)

diff --cc lib/whimsy/asf/agenda.rb
index 30acc90,d13a56c..1a3f063
--- a/lib/whimsy/asf/agenda.rb
+++ b/lib/whimsy/asf/agenda.rb
@@@ -95,14 -95,12 +95,15 @@@ class ASF::Board::Agend
        @sections[section][:index] = index if @sections[section]
      end
  
 +    # quick exit if none found -- non-standard format agenda
 +    return [] if @sections.empty?
 +
      # look for flags
      flagged_reports = Hash[@file[/ \d\. Committee Reports.*?\n\s+A\./m].
-       scan(/# (.*?) \[(.*)\]/)]
+       scan(/# (.*?) \[(.*)\]/)] rescue {}
  
      president = @sections.values.find {|item| item['title'] == 'President'}
+     return [] unless president # quick exit if non-standard format agenda
      preports = Range.new(*president['report'][/\d+ through \d+\.$/].scan(/\d+/)) 
      # cleanup text and comment whitespace, add flags
      @sections.each do |section, hash|

-- 
To stop receiving notification emails like this one, please contact
"commits@whimsical.apache.org" <co...@whimsical.apache.org>.