view contrib/assimilate_alien_loggers.rb @ 8612:b5854a9b101c

(issue869) Add spacer for multiline items This works because single line values now have a height of 15 + spacer (which amounts to the 20 it was before). Multiline columns can have any height as this is generated automatically on breaks to show all text. We now add +5 there so that they have at least some space.
author Andre Heinecke <andre.heinecke@intevation.de>
date Tue, 24 Mar 2015 15:22:16 +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