source: extensions/gsdl-video/trunk/installed/cmdline/lib/ruby/1.8/uri/https.rb@ 18425

Last change on this file since 18425 was 18425, checked in by davidb, 15 years ago

Video extension to Greenstone

File size: 498 bytes
Line 
1#
2# = uri/https.rb
3#
4# Author:: Akira Yamada <[email protected]>
5# License:: You can redistribute it and/or modify it under the same term as Ruby.
6# Revision:: $Id: https.rb 11747 2007-02-15 02:41:45Z knu $
7#
8
9require 'uri/http'
10
11module URI
12
13 # The default port for HTTPS URIs is 443, and the scheme is 'https:' rather
14 # than 'http:'. Other than that, HTTPS URIs are identical to HTTP URIs;
15 # see URI::HTTP.
16 class HTTPS < HTTP
17 DEFAULT_PORT = 443
18 end
19 @@schemes['HTTPS'] = HTTPS
20end
Note: See TracBrowser for help on using the repository browser.