* lib/uri.rb, lib/uri/ldaps.rb: added LDAPS
cheme. [ruby-dev:31896] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6b63368278
commit
1c662c2b63
@ -1,3 +1,8 @@
|
|||||||
|
Thu Oct 25 09:49:49 2007 akira yamada <akira@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/uri.rb, lib/uri/ldaps.rb: added LDAPS
|
||||||
|
cheme. [ruby-dev:31896]
|
||||||
|
|
||||||
Wed Oct 25 06:23:14 2007 James Edward Gray II <jeg2@ruby-lang.org>
|
Wed Oct 25 06:23:14 2007 James Edward Gray II <jeg2@ruby-lang.org>
|
||||||
|
|
||||||
* lib/xmlrpc/parser.rb (XMLRPC::Convert::dateTime): Fixing a bug that
|
* lib/xmlrpc/parser.rb (XMLRPC::Convert::dateTime): Fixing a bug that
|
||||||
|
@ -25,4 +25,5 @@ require 'uri/ftp'
|
|||||||
require 'uri/http'
|
require 'uri/http'
|
||||||
require 'uri/https'
|
require 'uri/https'
|
||||||
require 'uri/ldap'
|
require 'uri/ldap'
|
||||||
|
require 'uri/ldaps'
|
||||||
require 'uri/mailto'
|
require 'uri/mailto'
|
||||||
|
12
lib/uri/ldaps.rb
Normal file
12
lib/uri/ldaps.rb
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
require 'uri/ldap'
|
||||||
|
|
||||||
|
module URI
|
||||||
|
|
||||||
|
# The default port for LDAPS URIs is 636, and the scheme is 'ldaps:' rather
|
||||||
|
# than 'ldap:'. Other than that, LDAPS URIs are identical to LDAP URIs;
|
||||||
|
# see URI::LDAP.
|
||||||
|
class LDAPS < LDAP
|
||||||
|
DEFAULT_PORT = 636
|
||||||
|
end
|
||||||
|
@@schemes['LDAPS'] = LDAPS
|
||||||
|
end
|
Loading…
x
Reference in New Issue
Block a user