view contrib/assimilate_alien_loggers.rb @ 8507:7d0c4e508835

(issue1782) Select index based on km for step generation If we calculate from a larger KM to a smaller KM the larger index refers to the smaller KM so to correctly draw the steps with the assumption that the previous q is drawn together with the current q we have to select the next / prev index accordingly.
author Andre Heinecke <andre.heinecke@intevation.de>
date Tue, 16 Dec 2014 15:29:44 +0100
parents 8dd89da79eaa
children
line wrap: on
line source
# run like ruby -i -p assimilate_alien_loggers.rb FILES(or stdin)
# This will replace in-place and will result in wrong getLogger
# statements in certain inner-class scenarios! Be careful.

$last_class
if $_ =~ /class ([a-zA-Z0-9]+)/
  $last_class = "#{$1}.class"
end
if $_ =~ /getLogger/
  gsub(/getLogger[ ]*\(.*\)/, "getLogger(#{$last_class})")
end

http://dive4elements.wald.intevation.org