diff options
author | akira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-25 00:53:34 +0000 |
---|---|---|
committer | akira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-25 00:53:34 +0000 |
commit | 1c662c2b63a224539dfd9aaa57203d61d9b341f3 (patch) | |
tree | 5bf67403065f095003f7c901fd2a8b0d72c1e262 | |
parent | 6b63368278e32d3dc64468de30a7de8ab265599d (diff) |
* 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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/uri.rb | 1 | ||||
-rw-r--r-- | lib/uri/ldaps.rb | 12 |
3 files changed, 18 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Thu Oct 25 09:49:49 2007 akira yamada <[email protected]> + + * lib/uri.rb, lib/uri/ldaps.rb: added LDAPS + cheme. [ruby-dev:31896] + Wed Oct 25 06:23:14 2007 James Edward Gray II <[email protected]> * lib/xmlrpc/parser.rb (XMLRPC::Convert::dateTime): Fixing a bug that diff --git a/lib/uri.rb b/lib/uri.rb index 09c4f5fbcf..f7110f18fd 100644 --- a/lib/uri.rb +++ b/lib/uri.rb @@ -25,4 +25,5 @@ require 'uri/ftp' require 'uri/http' require 'uri/https' require 'uri/ldap' +require 'uri/ldaps' require 'uri/mailto' diff --git a/lib/uri/ldaps.rb b/lib/uri/ldaps.rb new file mode 100644 index 0000000000..6da333150f --- /dev/null +++ b/lib/uri/ldaps.rb @@ -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 |