summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/uri.rb1
-rw-r--r--lib/uri/ldaps.rb12
3 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9c0e825f79..cddf6a2ce9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
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