From b235c4dc11c4e9667e002ed65c8e6c455d22bd23 Mon Sep 17 00:00:00 2001 From: Alexandre Pretto Nunes Date: Mon, 25 Aug 2014 12:04:42 -0300 Subject: Remove temporary file --- web-ui/app/js/tmp.rb | 68 ---------------------------------------------------- 1 file changed, 68 deletions(-) delete mode 100755 web-ui/app/js/tmp.rb (limited to 'web-ui/app') diff --git a/web-ui/app/js/tmp.rb b/web-ui/app/js/tmp.rb deleted file mode 100755 index c1a6fbf2..00000000 --- a/web-ui/app/js/tmp.rb +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env ruby - -def update_directory(directory) - Dir.entries(directory).each do | file | - path = "#{directory}/#{file}" - if File.directory?(path) - update_directory(path) unless (file =~ /^[.]+$/) - else - update_file(path) if file =~ /\.(js)$/ - end - end -end - -def update_file(filename) - tmpname = "#{filename}.orig" - `mv #{filename} #{tmpname}` - infile = File.open("#{tmpname}", "r") - outfile = File.open("#{filename}", "w") - replace_banner(infile, outfile) - `rm #{tmpname}` -end - -def replace_banner(infile, outfile) - in_banner = true - year = nil - infile.each_line do | line | - if in_banner - copyright_match = /Copyright \(c\) ([0-9]{4})/.match(line) - if copyright_match - year = copyright_match[1] - end - if !(line =~ /^\/\//) && !(line =~ /^[\/ ]\*/) - write_banner(outfile, year) - in_banner = false - end - end - if !in_banner - outfile.puts line - end - end -end - -def write_banner(outfile, year) - banner = <<-EOS -/* - * Copyright (c) %YEARS% ThoughtWorks, Inc. - * - * Pixelated is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Pixelated is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with Pixelated. If not, see . - */ - EOS - years = (year != "2014") ? "#{year}-2014" : year - banner.gsub!(/%YEARS%/, years) - outfile.write(banner) -end - -update_directory(ARGV[0]) - -- cgit v1.2.3