1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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:
akira 2007-10-25 00:53:34 +00:00
parent 6b63368278
commit 1c662c2b63
3 changed files with 18 additions and 0 deletions

View file

@ -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>
* lib/xmlrpc/parser.rb (XMLRPC::Convert::dateTime): Fixing a bug that

View file

@ -25,4 +25,5 @@ require 'uri/ftp'
require 'uri/http'
require 'uri/https'
require 'uri/ldap'
require 'uri/ldaps'
require 'uri/mailto'

12
lib/uri/ldaps.rb Normal file
View 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