view contrib/find_alien_loggers.rb @ 8443:df65f24af5bc

(issue1762) Use getValue to obtain dateRange values The getToValue was always the initial value regardless of what has been entered in the form. According to the documentation both getToValue and getFromValue should return the "initial value" of the form field. But wether this means the value before validation corrections or the value the field is initialized with (which is also not true in both cases as the field is set only after creation) It returned the real value for the from date but not for the to date. With an explicit getValue we workaround this issue.
author Andre Heinecke <andre.heinecke@intevation.de>
date Wed, 22 Oct 2014 17:33:43 +0200
parents 06ebfc33578d
children
line wrap: on
line source
#!/usr/bin/env ruby
# encoding: UTF-8

# Use like
#   grep -ri getLogger src/ | ruby find_alien_loggers.rb
# Prints guesses about java source files where wrong logger is used to stderr.
ARGF.each_line do |line|
  module_name = line.scan(/\/([^\/]*)\.java/)
  next if module_name.nil?
  next if module_name[0].nil?
  module_name = module_name[0][0]
  STDERR.puts line unless line.include?("#{module_name}.class")
end

http://dive4elements.wald.intevation.org