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/08/09 01:19:43 UTC

[whimsy] branch master updated (ef378d9 -> be2e725)

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 ef378d9  guard against bad data
     new b0595e3  advertise TL Website Link Checks
     new be2e725  check that URLs look like URLs

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/index.html |  2 +-
 www/site.cgi   | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

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

[whimsy] 02/02: check that URLs look like URLs

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 be2e725e9515af20c301229e7e9839e94c564872
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Tue Aug 8 21:19:14 2017 -0400

    check that URLs look like URLs
---
 www/site.cgi | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/www/site.cgi b/www/site.cgi
index 4cee420..3e09dce 100755
--- a/www/site.cgi
+++ b/www/site.cgi
@@ -22,11 +22,11 @@ CHECKS = {
   'image'  => %r{.},
   # TODO more checks needed here, e.g. ASF registered and 3rd party marks
   'trademarks'  => %r{trademarks of [Tt]he Apache Software Foundation},
-  'events'      => %r{apache.org/events/current-event},
-  'license'     => %r{apache.org/licenses/$}, # should link to parent license page only
-  'sponsorship' => %r{apache.org/foundation/sponsorship},
-  'security'    => %r{apache.org/[Ss]ecurity},
-  'thanks'      => %r{apache.org/foundation/thanks},
+  'events'      => %r{^https?://.*apache.org/events/current-event},
+  'license'     => %r{^https?://.*apache.org/licenses/$}, # should link to parent license page only
+  'sponsorship' => %r{^https?://.*apache.org/foundation/sponsorship},
+  'security'    => %r{^https?://.*apache.org/[Ss]ecurity},
+  'thanks'      => %r{^https?://.*apache.org/foundation/thanks},
 }
 DOCS = {
   'uri'         => ['https://www.apache.org/foundation/marks/pmcs#websites',

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

[whimsy] 01/02: advertise TL Website Link Checks

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 b0595e3581f72e0e7cbda2e3725770d0579cbcb5
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Tue Aug 8 21:18:52 2017 -0400

    advertise TL Website Link Checks
---
 www/index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/index.html b/www/index.html
index 2fd6920..6f46286 100644
--- a/www/index.html
+++ b/www/index.html
@@ -95,10 +95,10 @@
             </div>
             <div class="panel-body">
               <ul>
-                <li><a href="https://www.apache.org/foundation/board/calendar.html">Board Minutes Collated by Date</a></li>
                 <li><a href="board/minutes/">Board Minutes Collated by PMC/officer/topic</a></li>
                 <li><a href="incubator/podlings/by-age">Incubator podlings by age</a></li>
                 <li><a href="public/">Generated JSON data files</a></li>
+                <li><a href="site/">TLP Website Link Checks</a></li>
               </ul>
             </div>
           </div>

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