Changesets can be listed by changeset number.
The Git repository is here.
Changeset 467
Have to disable SSL checking *internally* for news feed integration within Radiant since our old Ruby version is unhappy with the new SHA-2 SSL certificates to which we just upgraded.
- Comitted by: rool
- Date: Sunday November 09 03:03:28 2014 (over 9 years ago)
Affected files:
rool/rails/radiant/trunk/vendor/extensions/news_tag/lib/news_tag.rb:
prev. | current | |
cert_chain = ENV['SSL_CERT_CHAIN'] | ||
https = Net::HTTP.new(uri.host, uri.port) | ||
https.use_ssl = true | ||
74 | | |
74 | https.verify_mode = OpenSSL::SSL::VERIFY_NONE # OpenSSL::SSL::VERIFY_PEER | |
https.ca_file = cert_chain unless (cert_chain.nil? || cert_chain.empty?) | ||
feed_data = https.start do |http| |