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/04/25 13:50:38 UTC

[whimsy] branch master updated (4e2e3aa -> 5e8cb64)

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  4e2e3aa   Insensitive sort on name; move table out of panel
       new  17d686f   fix WHIMSY-86
       new  5e8cb64   check for the correct file

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


Summary of changes:
 tools/site-check.rb     | 2 +-
 www/test/site-check.cgi | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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

[whimsy] 02/02: check for the correct file

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 5e8cb64d8e412f0ad96616ed1c45d10a1ade9d10
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Tue Apr 25 09:50:17 2017 -0400

    check for the correct file
---
 www/test/site-check.cgi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/test/site-check.cgi b/www/test/site-check.cgi
index afa62c6..b235426 100755
--- a/www/test/site-check.cgi
+++ b/www/test/site-check.cgi
@@ -20,7 +20,7 @@ _html do
 
   _body? do
 
-    local_copy = File.expand_path('../public/site-check.json').untaint
+    local_copy = File.expand_path('../public/site-scan.json').untaint
 
     if File.exist? local_copy
       crawl_time = File.mtime(local_copy).rfc2822

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

[whimsy] 01/02: fix WHIMSY-86

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 17d686f0d95c7cfbeb947f1311d5e64d8efa911c
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Tue Apr 25 09:27:28 2017 -0400

    fix WHIMSY-86
---
 tools/site-check.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/site-check.rb b/tools/site-check.rb
index 9fd7382..2343838 100755
--- a/tools/site-check.rb
+++ b/tools/site-check.rb
@@ -72,7 +72,7 @@ committees.sort_by {|committee| committee.name}.each do |committee|
       end
     end
 
-    if a.text.downcase.strip =~ /licenses?/
+    if a.text.downcase.strip =~ /licenses?/ and a['href'].include? 'apache.org'
       data[:license] = uri + a['href'].strip 
     end
 

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