mansi75 commented on code in PR #56:
URL: https://github.com/apache/fineract-site/pull/56#discussion_r2985101340


##########
scripts/run_whimsy_checks.rb:
##########
@@ -0,0 +1,73 @@
+#!/usr/bin/env ruby
+# Extracted from 
https://github.com/apache/whimsy/blob/master/tools/site-scan.rb
+# Only includes site parsing logic - no ASF/LDAP/committee dependencies
+
+require 'net/http'
+require 'nokogiri'
+require 'uri'
+require 'json'
+
+# Copied directly from site-scan.rb
+def squash(text)
+  text.scrub.gsub(/[[:space:]]+/, ' ').strip
+end
+
+# Copied directly from site-scan.rb
+def get_link_text(anode)
+  bits = []
+  anode.traverse do |node|
+    if node.name == 'text'
+      bits << node.text unless node.parent.name == 'span' and
+        node.parent.attribute('class')&.value&.end_with?('sr-only')
+    end
+  end
+  squash(bits.join(' '))
+end
+
+# Copied from sitestandards.rb COMMON_CHECKS patterns
+CHECKS = {
+  'foundation'  => { url: /apache\.org/,                              text: 
nil },
+  'license'     => { url: /^https?:\/\/.*apache\.org\/licenses\/?$/,  text: 
/^license$/i },
+  'thanks'      => { url: nil, text: /^(thanks|sponsors|thanks to our 
sponsors)$/i },
+  'security'    => { url: nil, text: /^security$/i },
+  'sponsorship' => { url: nil, text: /^(sponsorship|sponsor|donate)$/i },
+  'privacy'     => { url: nil, text: /^privacy$/i },
+  'events'      => { url: /apache\.org\/events\/current-event/, text: nil },
+}

Review Comment:
   @meonkeys Please leave it open, I have implemented the above changes, I will 
push the update then you may review once. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to