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/07/06 01:41:26 UTC

[whimsy] branch master updated (a06902a -> 5a1942a)

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

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


    from a06902a  disable modification until the project is set up
     new 9019840  drop entire bullet not just link if podling status is not found
     new 5a1942a  show Approved instead of Fixed for podling name searches

The 2 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:
 www/roster/views/ppmc/main.js.rb | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

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

[whimsy] 01/02: drop entire bullet not just link if podling status is not found

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

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

commit 9019840f95157ff01da3ee1a279db45799d11601
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Wed Jul 5 21:38:24 2017 -0400

    drop entire bullet not just link if podling status is not found
---
 www/roster/views/ppmc/main.js.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/roster/views/ppmc/main.js.rb b/www/roster/views/ppmc/main.js.rb
index 7e4f86b..3449073 100644
--- a/www/roster/views/ppmc/main.js.rb
+++ b/www/roster/views/ppmc/main.js.rb
@@ -115,8 +115,8 @@ class PPMC < React
     _h3 'Information'
     _ul do
       _li do
-        _a 'Podling Proposal', href: @ppmc.podlingStatus.proposal if @ppmc.podlingStatus.proposal
-      end
+        _a 'Podling Proposal', href: @ppmc.podlingStatus.proposal
+      end if @ppmc.podlingStatus.proposal
       _li "Incubating for "+@ppmc.duration+" days"
       _li do
         _a 'Prior Board Reports', href: '/board/minutes/' +

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

[whimsy] 02/02: show Approved instead of Fixed for podling name searches

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

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

commit 5a1942a2bf653490b3ffe732757af4e8472dae52
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Wed Jul 5 21:41:09 2017 -0400

    show Approved instead of Fixed for podling name searches
---
 www/roster/views/ppmc/main.js.rb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/www/roster/views/ppmc/main.js.rb b/www/roster/views/ppmc/main.js.rb
index 3449073..ff1450e 100644
--- a/www/roster/views/ppmc/main.js.rb
+++ b/www/roster/views/ppmc/main.js.rb
@@ -162,9 +162,11 @@ class PPMC < React
 
     # website and naming
     _h3 'Naming'
+    resolution = @ppmc.namesearch.resolution
+    resolution = 'Approved' if resolution == 'Fixed'
     _ul do
       _li do
-        _a "Podling name search (#{@ppmc.namesearch.resolution})", href: 'https://issues.apache.org/jira/browse/' + @ppmc.namesearch.issue
+        _a "Podling name search (#{resolution})", href: 'https://issues.apache.org/jira/browse/' + @ppmc.namesearch.issue
       end if @ppmc.namesearch
       _li.podlingWarning do
         _a "No Podling Name Search on file", href: 'https://incubator.apache.org/guides/names.html#name-search'

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