Update jquery ui version.

This commit is contained in:
BoHung Chiu 2022-08-03 11:13:31 +08:00
parent a64a749774
commit fcb49c9576
2 changed files with 148 additions and 140 deletions

View File

@ -41,7 +41,7 @@ class Filefield
},:status=>0} , },:status=>0} ,
"accessibility"=>{:files=>{'back_end@html@erb'=>{:status=>0, :sc=>@app_path+'/updatefiles/accessibility/', :dest=>@views_path+'layouts/'}, "accessibility"=>{:files=>{'back_end@html@erb'=>{:status=>0, :sc=>@app_path+'/updatefiles/accessibility/', :dest=>@views_path+'layouts/'},
'_form@html@erb'=>{:status=>0, :sc=>@app_path+'/updatefiles/accessibility/', :dest=>@views_path+'page_parts/'}, '_form@html@erb'=>{:status=>0, :sc=>@app_path+'/updatefiles/accessibility/', :dest=>@views_path+'page_parts/'},
'jquery-ui-1@12@1/'=>{:status=>0, :sc=>@app_path+'/updatefiles/accessibility/', :dest=>Rails.root.to_s + '/app/assets/stylesheets/lib/jquery-ui-1.12.1/'}, 'jquery-ui-1@13@2/'=>{:status=>0, :sc=>@app_path+'/updatefiles/accessibility/', :dest=>Rails.root.to_s + '/app/assets/stylesheets/lib/jquery-ui-1.13.2/'},
'orbit_bar/'=>{:status=>0, :sc=>@app_path+'/updatefiles/accessibility/', :dest=>@views_path+'orbit_bar/'} 'orbit_bar/'=>{:status=>0, :sc=>@app_path+'/updatefiles/accessibility/', :dest=>@views_path+'orbit_bar/'}
},:status=>0} },:status=>0}
} }

View File

@ -2,147 +2,155 @@
$:.push File.expand_path("../lib", __FILE__) $:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version: # Maintain your gem's version:
require "patchfile/version" require "patchfile/version"
app_path = File.expand_path(__dir__) bundle_update_flag = ARGV[0]=='update' || ARGV[0]=='install'
dir_pwd = ENV['PWD'] if bundle_update_flag
template_path = dir_pwd + '/app/templates' app_path = File.expand_path(__dir__)
all_template = Dir.glob(template_path+'/*/') dir_pwd = ENV['PWD']
#if !Dir.exist?("#{ENV['PWD']}"+"/app/assets/stylesheets/lib/jquery-ui-1.12.1/") template_path = dir_pwd + '/app/templates'
puts "copying jquery-ui" all_template = Dir.glob(template_path+'/*/')
begin #if !Dir.exist?("#{ENV['PWD']}"+"/app/assets/stylesheets/lib/jquery-ui-1.12.1/")
`cp -rf "#{app_path}/updatefiles/javascripts/." "#{dir_pwd}/app/assets/javascripts/"` puts "copying jquery-ui"
`cp -r "#{app_path}/updatefiles/accessibility/jquery-ui-1.12.1/." "#{dir_pwd}/app/assets/stylesheets/lib/jquery-ui-1.12.1/"` begin
rescue `cp -rf "#{app_path}/updatefiles/javascripts/." "#{dir_pwd}/app/assets/javascripts/"`
puts "There is an error in coppying jquery-ui" `cp -r "#{app_path}/updatefiles/accessibility/jquery-ui-1.13.2/." "#{dir_pwd}/app/assets/stylesheets/lib/jquery-ui-1.13.2/"`
end rescue
#end puts "There is an error in coppying jquery-ui"
@original_dir = Dir.pwd end
`cd "#{dir_pwd}" && git add app/templates/ app/assets built_in_extensions.rb config/mongoid.yml bin/ && cd "#{@original_dir}"` #using git to add modified files and to avoid git pull not working #end
#Add patchfile to Admin area @original_dir = Dir.pwd
@patchfile_li = File.read(app_path+"/patchfile_li.txt").force_encoding('UTF-8') `cd "#{dir_pwd}" && git add app/templates/ app/assets built_in_extensions.rb config/mongoid.yml bin/ && cd "#{@original_dir}"` #using git to add modified files and to avoid git pull not working
@patchfile_li_choices = File.read(app_path+"/patchfile_li_choices.txt").force_encoding('UTF-8') #Add patchfile to Admin area
@file_text = File.read(dir_pwd+'/app/views/shared/_side_bar.html.erb').force_encoding('UTF-8') @patchfile_li = File.read(app_path+"/patchfile_li.txt").force_encoding('UTF-8')
if !@file_text.include?('<div class="patchfile sub-nav-block icons-megaphone">') @patchfile_li_choices = File.read(app_path+"/patchfile_li_choices.txt").force_encoding('UTF-8')
@indert_index = @file_text.index('</nav>') @file_text = File.read(dir_pwd+'/app/views/shared/_side_bar.html.erb').force_encoding('UTF-8')
unless @indert_index.nil? if !@file_text.include?('<div class="patchfile sub-nav-block icons-megaphone">')
@file_text.insert(@indert_index , @patchfile_li_choices) @indert_index = @file_text.index('</nav>')
end unless @indert_index.nil?
end @file_text.insert(@indert_index , @patchfile_li_choices)
if !@file_text.include?('patchfile_li') end
@indert_index = @file_text.index('<li title="<%= t(\'site_info\') %>">') end
unless @indert_index.nil? if !@file_text.include?('patchfile_li')
@file_text.insert(@indert_index , @patchfile_li) @indert_index = @file_text.index('<li title="<%= t(\'site_info\') %>">')
end unless @indert_index.nil?
end @file_text.insert(@indert_index , @patchfile_li)
begin end
f = File.open(dir_pwd+'/app/views/shared/_side_bar.html.erb','w') end
f.write(@file_text) begin
f.close f = File.open(dir_pwd+'/app/views/shared/_side_bar.html.erb','w')
puts "finish change patchfile in #{dir_pwd}/app/views/shared" f.write(@file_text)
rescue f.close
puts "Permission denied in #{dir_pwd}/app/views/shared" puts "finish change patchfile in #{dir_pwd}/app/views/shared"
end rescue
change_text = '<a title="{{site_title_1}}" class="navbar-brand" href="{{home_link_1}}"><img class="site-logo" src="{{logo_url_1}}" alt="Site Logo"></a><script>$(document).ready(function(){var url =$(\'.site-logo\').eq(0).attr(\'src\');if(url == "/assets/default-site-logo.png"){$(\'.navbar-brand\').eq(0).remove();};if($(\'.navbar-brand\').length == 2){$(\'.site-logo\').css(\'height\',\'auto\')};$(\'.site-logo\').eq(0).css(\'margin-right\',0);$(\'.navbar-brand\').css(\'padding-right\',0)})</script><a title="{{site_title}}" class="navbar-brand" href="{{home_link}}"><img class="site-logo" src="{{logo_url}}" alt="Site Logo"> {{site_name}}</a>' puts "Permission denied in #{dir_pwd}/app/views/shared"
change_text_fix = '<a title="{{site_title_1}}" class="" href="{{home_link_1}}"><img class="site-logo" src="{{logo_url_1}}" alt="Site Logo"></a><script>$(document).ready(function(){var url =$(\'.site-logo\').eq(0).attr(\'src\');if(url == "/assets/default-site-logo.png"){$(\'.navbar-brand\').eq(0).remove();};if($(\'.navbar-brand\').length == 2){$(\'.site-logo\').css(\'height\',\'auto\')};$(\'.site-logo\').eq(0).css(\'margin-right\',0);$(\'.navbar-brand\').css(\'padding-right\',0)})</script><a title="{{site_title}}" class="" href="{{home_link}}"><img class="site-logo" src="{{logo_url}}" alt="Site Logo"> {{site_name}}</a>' end
change_text_fix1 = '<a title="{{site_title_1}}" class="" href="{{home_link_1}}"><img class="site-logo" src="{{logo_url_1}}" alt="Site Logo"></a><script>$(document).ready(function(){var url =$(\'.site-logo\').eq(0).attr(\'src\');if(url == "/assets/default-site-logo.png"){if($(\'.navbar-brand\').length != 0){$(\'.navbar-brand\').eq(0).remove();}else{$(\'.site-title >a\').eq(0).remove();}};if($(\'.navbar-brand\').length == 2 || $(\'.site-title >a\').length == 2){$(\'.site-logo\').css(\'height\',\'auto\')};$(\'.site-logo\').eq(0).css(\'margin-right\',0);$(\'.navbar-brand\').css(\'padding-right\',0)})</script><a title="{{site_title}}" class="" href="{{home_link}}"><img class="site-logo" src="{{logo_url}}" alt="Site Logo"> {{site_name}}</a>' change_text = '<a title="{{site_title_1}}" class="navbar-brand" href="{{home_link_1}}"><img class="site-logo" src="{{logo_url_1}}" alt="Site Logo"></a><script>$(document).ready(function(){var url =$(\'.site-logo\').eq(0).attr(\'src\');if(url == "/assets/default-site-logo.png"){$(\'.navbar-brand\').eq(0).remove();};if($(\'.navbar-brand\').length == 2){$(\'.site-logo\').css(\'height\',\'auto\')};$(\'.site-logo\').eq(0).css(\'margin-right\',0);$(\'.navbar-brand\').css(\'padding-right\',0)})</script><a title="{{site_title}}" class="navbar-brand" href="{{home_link}}"><img class="site-logo" src="{{logo_url}}" alt="Site Logo"> {{site_name}}</a>'
all_template.each do |folder| change_text_fix = '<a title="{{site_title_1}}" class="" href="{{home_link_1}}"><img class="site-logo" src="{{logo_url_1}}" alt="Site Logo"></a><script>$(document).ready(function(){var url =$(\'.site-logo\').eq(0).attr(\'src\');if(url == "/assets/default-site-logo.png"){$(\'.navbar-brand\').eq(0).remove();};if($(\'.navbar-brand\').length == 2){$(\'.site-logo\').css(\'height\',\'auto\')};$(\'.site-logo\').eq(0).css(\'margin-right\',0);$(\'.navbar-brand\').css(\'padding-right\',0)})</script><a title="{{site_title}}" class="" href="{{home_link}}"><img class="site-logo" src="{{logo_url}}" alt="Site Logo"> {{site_name}}</a>'
if !folder.include?('mobile') change_text_fix1 = '<a title="{{site_title_1}}" class="" href="{{home_link_1}}"><img class="site-logo" src="{{logo_url_1}}" alt="Site Logo"></a><script>$(document).ready(function(){var url =$(\'.site-logo\').eq(0).attr(\'src\');if(url == "/assets/default-site-logo.png"){if($(\'.navbar-brand\').length != 0){$(\'.navbar-brand\').eq(0).remove();}else{$(\'.site-title >a\').eq(0).remove();}};if($(\'.navbar-brand\').length == 2 || $(\'.site-title >a\').length == 2){$(\'.site-logo\').css(\'height\',\'auto\')};$(\'.site-logo\').eq(0).css(\'margin-right\',0);$(\'.navbar-brand\').css(\'padding-right\',0)})</script><a title="{{site_title}}" class="" href="{{home_link}}"><img class="site-logo" src="{{logo_url}}" alt="Site Logo"> {{site_name}}</a>'
begin all_template.each do |folder|
filename = folder+'partial/_head.html.erb' if !folder.include?('mobile')
texts = File.read(filename).force_encoding('UTF-8') begin
new_texts = texts.gsub(/<.*javascript_include_tag.*bootstrap.*>/,"<%= javascript_include_tag \"bootstrap.min\"%>") filename = folder+'partial/_head.html.erb'
bootstrap_count = 0 texts = File.read(filename).force_encoding('UTF-8')
new_texts = new_texts.gsub("<%= javascript_include_tag \"bootstrap.min\"%>"){|t| new_texts = texts.gsub(/<.*javascript_include_tag.*bootstrap.*>/,"<%= javascript_include_tag \"bootstrap.min\"%>")
bootstrap_count += 1 bootstrap_count = 0
(bootstrap_count > 1) ? "" : t new_texts = new_texts.gsub("<%= javascript_include_tag \"bootstrap.min\"%>"){|t|
} bootstrap_count += 1
if new_texts.include?('jquery_prefix') (bootstrap_count > 1) ? "" : t
new_texts = new_texts.gsub(/<.*javascript_include_tag.*\/jquery\.min.*>|<.*javascript_include_tag.*\/jquery-1\.11\.0\.min.*>/,"<%= javascript_include_tag \"jquery.min\"%>") }
else if new_texts.include?('jquery_prefix')
new_texts = new_texts.gsub(/<%= javascript_include_tag \"jquery.min\"%>/,"<%= javascript_include_tag \"jquery.min\"%>\n\t<%= javascript_include_tag \"jquery_prefix\"%>") new_texts = new_texts.gsub(/<.*javascript_include_tag.*\/jquery\.min.*>|<.*javascript_include_tag.*\/jquery-1\.11\.0\.min.*>/,"<%= javascript_include_tag \"jquery.min\"%>")
end else
if texts != new_texts new_texts = new_texts.gsub(/<%= javascript_include_tag \"jquery.min\"%>/,"<%= javascript_include_tag \"jquery.min\"%>\n\t<%= javascript_include_tag \"jquery_prefix\"%>")
File.open(filename,'w') do |f| end
f.write new_texts if texts != new_texts
end File.open(filename,'w') do |f|
end f.write new_texts
rescue => e end
puts "#{e.inspect}\nnot found #{folder}partial/_head.html.erb" end
end rescue => e
puts "#{e.inspect}\nnot found #{folder}partial/_head.html.erb"
end
begin begin
begin begin
require 'nokogiri' require 'nokogiri'
rescue ScriptError => e rescue ScriptError => e
system('gem install nokogiri -v 1.7.0.1') system('gem install nokogiri -v 1.7.0.1')
require 'nokogiri' gem_home = ENV["GEM_HOME"]
end if gem_home.present?
puts "changing header.html.erb in #{folder}/home/header.html.erb" $LOAD_PATH << "#{gem_home}/gems/nokogiri-1.7.0.1/lib"
if folder.split('/')[-1] != 'mobile' $LOAD_PATH << "#{gem_home}/extensions/#{RUBY_PLATFORM}/#{RUBY_VERSION}/nokogiri-1.7.0.1"
filename = folder+'home/header.html.erb' require 'nokogiri'
texts = File.read(filename).force_encoding('UTF-8') end
texts_html = Nokogiri::HTML.parse(texts) end
if texts_html.css('.navbar-brand').length == 1 puts "changing header.html.erb in #{folder}/home/header.html.erb"
new_texts = texts.gsub(texts_html.css('.navbar-brand').to_s.gsub("%7B",'{').gsub('%7D','}'),change_text) if folder.split('/')[-1] != 'mobile'
File.open(filename,'w') do |f| filename = folder+'home/header.html.erb'
f.write new_texts texts = File.read(filename).force_encoding('UTF-8')
end texts_html = Nokogiri::HTML.parse(texts)
elsif texts_html.css('.site-title >a').length == 1 && texts_html.css('.navbar-brand').length == 0 if texts_html.css('.navbar-brand').length == 1
new_texts = texts.gsub(texts_html.css('.site-title >a').to_s.gsub("%7B",'{').gsub('%7D','}'),change_text_fix1) new_texts = texts.gsub(texts_html.css('.navbar-brand').to_s.gsub("%7B",'{').gsub('%7D','}'),change_text)
File.open(filename,'w') do |f| File.open(filename,'w') do |f|
f.write new_texts f.write new_texts
end end
elsif texts_html.css('.site-title >a.navbar-brand').length == 2 elsif texts_html.css('.site-title >a').length == 1 && texts_html.css('.navbar-brand').length == 0
new_texts = texts.gsub(change_text,change_text_fix1) new_texts = texts.gsub(texts_html.css('.site-title >a').to_s.gsub("%7B",'{').gsub('%7D','}'),change_text_fix1)
File.open(filename,'w') do |f| File.open(filename,'w') do |f|
f.write new_texts f.write new_texts
end end
elsif texts.include? change_text_fix elsif texts_html.css('.site-title >a.navbar-brand').length == 2
new_texts = texts.gsub(change_text_fix,change_text_fix1) new_texts = texts.gsub(change_text,change_text_fix1)
File.open(filename,'w') do |f| File.open(filename,'w') do |f|
f.write new_texts f.write new_texts
end end
end elsif texts.include? change_text_fix
end new_texts = texts.gsub(change_text_fix,change_text_fix1)
rescue => e File.open(filename,'w') do |f|
puts "#{e.inspect}\nnot found #{folder}home/header.html.erb" f.write new_texts
end end
end end
end
rescue => e
puts "#{e.inspect}\nnot found #{folder}home/header.html.erb"
end
end
end
#begin
# system("cp -f #{app_path}/updatefiles/application_helper.rb #{dir_pwd}/app/helpers/application_helper.rb")
#rescue => e
# puts e.backtrace
#end
#change_html_old = 'html.gsub("%7B%7Blogo_url_1%7D%7D",((site.site_logo_1.url.nil? ? "/assets/default-site-logo.png" : site.site_logo_1.url) rescue "/assets/default-site-logo.pngs"))'
#change_html_new = 'html.gsub("%7B%7Blogo_url_1%7D%7D",((site.site_logo_1.url.nil? ? "/assets/default-site-logo.png" : site.site_logo_1.url) rescue "/assets/default-site-logo.png"))'
#begin
# @file_text = File.read(ENV['PWD']+'/app/helpers/application_helper.rb')
# File.open(ENV['PWD']+'/app/helpers/application_helper.rb_new','w+') do |f|
# f.chmod 0777
# if @file_text.include?(change_html_old)
# @file_text = @file_text.gsub(change_html_old,change_html_new)
# elsif (!@file_text.include?(change_html_old) && !@file_text.include?(change_html_new))
# insert_index = @file_text.index('html.gsub("%7B%7Blogo_url%7D%7D"')
# @file_text.insert(insert_index,change_html_new+"\n")
# end
# f.write(@file_text)
# end
# system("cp #{ENV['PWD']+'/app/helpers/application_helper.rb_new'} #{ENV['PWD']+'/app/helpers/application_helper.rb'}")
# puts "finish change application_helper.rb in #{ENV['PWD']}/app/helpers/"
#rescue => e
# puts "Permission denied in #{ENV['PWD']}/app/helpers/application_helper.rb"
#end
end end
#begin
# system("cp -f #{app_path}/updatefiles/application_helper.rb #{dir_pwd}/app/helpers/application_helper.rb")
#rescue => e
# puts e.backtrace
#end
#change_html_old = 'html.gsub("%7B%7Blogo_url_1%7D%7D",((site.site_logo_1.url.nil? ? "/assets/default-site-logo.png" : site.site_logo_1.url) rescue "/assets/default-site-logo.pngs"))'
#change_html_new = 'html.gsub("%7B%7Blogo_url_1%7D%7D",((site.site_logo_1.url.nil? ? "/assets/default-site-logo.png" : site.site_logo_1.url) rescue "/assets/default-site-logo.png"))'
#begin
# @file_text = File.read(ENV['PWD']+'/app/helpers/application_helper.rb')
# File.open(ENV['PWD']+'/app/helpers/application_helper.rb_new','w+') do |f|
# f.chmod 0777
# if @file_text.include?(change_html_old)
# @file_text = @file_text.gsub(change_html_old,change_html_new)
# elsif (!@file_text.include?(change_html_old) && !@file_text.include?(change_html_new))
# insert_index = @file_text.index('html.gsub("%7B%7Blogo_url%7D%7D"')
# @file_text.insert(insert_index,change_html_new+"\n")
# end
# f.write(@file_text)
# end
# system("cp #{ENV['PWD']+'/app/helpers/application_helper.rb_new'} #{ENV['PWD']+'/app/helpers/application_helper.rb'}")
# puts "finish change application_helper.rb in #{ENV['PWD']}/app/helpers/"
#rescue => e
# puts "Permission denied in #{ENV['PWD']}/app/helpers/application_helper.rb"
#end
# Describe your gem and declare its dependencies: # Describe your gem and declare its dependencies:
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "patchfile" s.name = "patchfile"
s.version = Patchfile::VERSION s.version = Patchfile::VERSION
s.authors = ["Ruling Digital"] s.authors = ["Ruling Digital"]
s.email = ["orbit@rulingcom.com"] s.email = ["bohung@rulingcom.com"]
s.homepage = "http://www.rulingcom.com" s.homepage = "http://www.rulingcom.com"
s.summary = "Patch_file for Orbit" s.summary = "Patch file for Orbit"
s.description = "Patch_file for Orbit" s.description = "Patch file for Orbit"
s.license = "MIT" s.license = "MIT"
s.add_dependency "nokogiri" s.add_dependency "nokogiri"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"] s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"] s.test_files = Dir["test/**/*"]
end end