Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/AnonR/anonr.TX.../opt/alt/ruby27/share/ruby/uri
File: https.rb
# frozen_string_literal: false
[0] Fix | Delete
# = uri/https.rb
[1] Fix | Delete
#
[2] Fix | Delete
# Author:: Akira Yamada <akira@ruby-lang.org>
[3] Fix | Delete
# License:: You can redistribute it and/or modify it under the same term as Ruby.
[4] Fix | Delete
# Revision:: $Id$
[5] Fix | Delete
#
[6] Fix | Delete
# See URI for general documentation
[7] Fix | Delete
#
[8] Fix | Delete
[9] Fix | Delete
require_relative 'http'
[10] Fix | Delete
[11] Fix | Delete
module URI
[12] Fix | Delete
[13] Fix | Delete
# The default port for HTTPS URIs is 443, and the scheme is 'https:' rather
[14] Fix | Delete
# than 'http:'. Other than that, HTTPS URIs are identical to HTTP URIs;
[15] Fix | Delete
# see URI::HTTP.
[16] Fix | Delete
class HTTPS < HTTP
[17] Fix | Delete
# A Default port of 443 for URI::HTTPS
[18] Fix | Delete
DEFAULT_PORT = 443
[19] Fix | Delete
end
[20] Fix | Delete
@@schemes['HTTPS'] = HTTPS
[21] Fix | Delete
end
[22] Fix | Delete
[23] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function