Documenting new changes in History.rdoc.
This commit is contained in:
parent
7ae8e28550
commit
73b8fad1f1
3 changed files with 8 additions and 2 deletions
|
@ -12,9 +12,12 @@
|
||||||
previously only known as Filter.pres.
|
previously only known as Filter.pres.
|
||||||
* Cleaned up Net::LDAP::Filter::FilterParser to handle branches better.
|
* Cleaned up Net::LDAP::Filter::FilterParser to handle branches better.
|
||||||
Fixed some of the regular expressions to be more canonically defined.
|
Fixed some of the regular expressions to be more canonically defined.
|
||||||
|
* Correctly handles single-branch branches.
|
||||||
* Cleaned up the string representation of Filter objects.
|
* Cleaned up the string representation of Filter objects.
|
||||||
* Added experimental support for RFC4515 extensible matching (e.g.,
|
* Added experimental support for RFC4515 extensible matching (e.g.,
|
||||||
"(cn:caseExactMatch:=Fred Flintstone)"); provided by "nowhereman".
|
"(cn:caseExactMatch:=Fred Flintstone)"); provided by "nowhereman".
|
||||||
|
* Net::LDAP::DN class representing an automatically escaping/unescaping
|
||||||
|
distinguished name for LDAP queries.
|
||||||
* Minor Enhancements:
|
* Minor Enhancements:
|
||||||
* SSL capabilities will be enabled or disabled based on whether we can load
|
* SSL capabilities will be enabled or disabled based on whether we can load
|
||||||
OpenSSL successfully or not.
|
OpenSSL successfully or not.
|
||||||
|
@ -23,6 +26,7 @@
|
||||||
related to BER-encoding values. This will make extracting Net::BER from
|
related to BER-encoding values. This will make extracting Net::BER from
|
||||||
Net::LDAP easier in the future.
|
Net::LDAP easier in the future.
|
||||||
* Added some unit tests for the BER core extensions.
|
* Added some unit tests for the BER core extensions.
|
||||||
|
* Paging controls are only sent where they are supported.
|
||||||
* Documentation Changes:
|
* Documentation Changes:
|
||||||
* Core class extension methods under Net::BER.
|
* Core class extension methods under Net::BER.
|
||||||
* Extensive changes to Net::BER documentation.
|
* Extensive changes to Net::BER documentation.
|
||||||
|
|
|
@ -20,6 +20,7 @@ lib/net/ber/core_ext/string.rb
|
||||||
lib/net/ber/core_ext/true_class.rb
|
lib/net/ber/core_ext/true_class.rb
|
||||||
lib/net/ldap.rb
|
lib/net/ldap.rb
|
||||||
lib/net/ldap/dataset.rb
|
lib/net/ldap/dataset.rb
|
||||||
|
lib/net/ldap/dn.rb
|
||||||
lib/net/ldap/entry.rb
|
lib/net/ldap/entry.rb
|
||||||
lib/net/ldap/filter.rb
|
lib/net/ldap/filter.rb
|
||||||
lib/net/ldap/password.rb
|
lib/net/ldap/password.rb
|
||||||
|
@ -31,6 +32,7 @@ spec/spec.opts
|
||||||
spec/spec_helper.rb
|
spec/spec_helper.rb
|
||||||
spec/unit/ber/ber_spec.rb
|
spec/unit/ber/ber_spec.rb
|
||||||
spec/unit/ber/core_ext/string_spec.rb
|
spec/unit/ber/core_ext/string_spec.rb
|
||||||
|
spec/unit/ldap/dn_spec.rb
|
||||||
spec/unit/ldap/entry_spec.rb
|
spec/unit/ldap/entry_spec.rb
|
||||||
spec/unit/ldap/filter_spec.rb
|
spec/unit/ldap/filter_spec.rb
|
||||||
spec/unit/ldap_spec.rb
|
spec/unit/ldap_spec.rb
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = %q{net-ldap}
|
s.name = %q{net-ldap}
|
||||||
s.version = "0.2.20110317215300"
|
s.version = "0.2.20110317223538"
|
||||||
|
|
||||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||||
s.authors = ["Francis Cianfrocca", "Emiel van de Laar", "Rory O'Connell", "Kaspar Schiess", "Austin Ziegler"]
|
s.authors = ["Francis Cianfrocca", "Emiel van de Laar", "Rory O'Connell", "Kaspar Schiess", "Austin Ziegler"]
|
||||||
|
@ -20,7 +20,7 @@ Our roadmap for Net::LDAP 1.0 is to gain full <em>client</em> compliance with
|
||||||
the most recent LDAP RFCs (4510–4519, plutions of 4520–4532).}
|
the most recent LDAP RFCs (4510–4519, plutions of 4520–4532).}
|
||||||
s.email = ["blackhedd@rubyforge.org", "gemiel@gmail.com", "rory.ocon@gmail.com", "kaspar.schiess@absurd.li", "austin@rubyforge.org"]
|
s.email = ["blackhedd@rubyforge.org", "gemiel@gmail.com", "rory.ocon@gmail.com", "kaspar.schiess@absurd.li", "austin@rubyforge.org"]
|
||||||
s.extra_rdoc_files = ["Manifest.txt", "Contributors.rdoc", "Hacking.rdoc", "History.rdoc", "License.rdoc", "README.rdoc"]
|
s.extra_rdoc_files = ["Manifest.txt", "Contributors.rdoc", "Hacking.rdoc", "History.rdoc", "License.rdoc", "README.rdoc"]
|
||||||
s.files = [".autotest", ".rspec", "Contributors.rdoc", "Hacking.rdoc", "History.rdoc", "License.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "autotest/discover.rb", "lib/net-ldap.rb", "lib/net/ber.rb", "lib/net/ber/ber_parser.rb", "lib/net/ber/core_ext.rb", "lib/net/ber/core_ext/array.rb", "lib/net/ber/core_ext/bignum.rb", "lib/net/ber/core_ext/false_class.rb", "lib/net/ber/core_ext/fixnum.rb", "lib/net/ber/core_ext/string.rb", "lib/net/ber/core_ext/true_class.rb", "lib/net/ldap.rb", "lib/net/ldap/dataset.rb", "lib/net/ldap/entry.rb", "lib/net/ldap/filter.rb", "lib/net/ldap/password.rb", "lib/net/ldap/pdu.rb", "lib/net/snmp.rb", "net-ldap.gemspec", "spec/integration/ssl_ber_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/unit/ber/ber_spec.rb", "spec/unit/ber/core_ext/string_spec.rb", "spec/unit/ldap/entry_spec.rb", "spec/unit/ldap/filter_spec.rb", "spec/unit/ldap_spec.rb", "test/common.rb", "test/test_entry.rb", "test/test_filter.rb", "test/test_ldap_connection.rb", "test/test_ldif.rb", "test/test_password.rb", "test/test_rename.rb", "test/test_snmp.rb", "test/testdata.ldif", "testserver/ldapserver.rb", "testserver/testdata.ldif", ".gemtest"]
|
s.files = [".autotest", ".rspec", "Contributors.rdoc", "Hacking.rdoc", "History.rdoc", "License.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "autotest/discover.rb", "lib/net-ldap.rb", "lib/net/ber.rb", "lib/net/ber/ber_parser.rb", "lib/net/ber/core_ext.rb", "lib/net/ber/core_ext/array.rb", "lib/net/ber/core_ext/bignum.rb", "lib/net/ber/core_ext/false_class.rb", "lib/net/ber/core_ext/fixnum.rb", "lib/net/ber/core_ext/string.rb", "lib/net/ber/core_ext/true_class.rb", "lib/net/ldap.rb", "lib/net/ldap/dataset.rb", "lib/net/ldap/dn.rb", "lib/net/ldap/entry.rb", "lib/net/ldap/filter.rb", "lib/net/ldap/password.rb", "lib/net/ldap/pdu.rb", "lib/net/snmp.rb", "net-ldap.gemspec", "spec/integration/ssl_ber_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/unit/ber/ber_spec.rb", "spec/unit/ber/core_ext/string_spec.rb", "spec/unit/ldap/dn_spec.rb", "spec/unit/ldap/entry_spec.rb", "spec/unit/ldap/filter_spec.rb", "spec/unit/ldap_spec.rb", "test/common.rb", "test/test_entry.rb", "test/test_filter.rb", "test/test_ldap_connection.rb", "test/test_ldif.rb", "test/test_password.rb", "test/test_rename.rb", "test/test_snmp.rb", "test/testdata.ldif", "testserver/ldapserver.rb", "testserver/testdata.ldif", ".gemtest"]
|
||||||
s.homepage = %q{http://net-ldap.rubyforge.org/}
|
s.homepage = %q{http://net-ldap.rubyforge.org/}
|
||||||
s.rdoc_options = ["--main", "README.rdoc"]
|
s.rdoc_options = ["--main", "README.rdoc"]
|
||||||
s.require_paths = ["lib"]
|
s.require_paths = ["lib"]
|
||||||
|
|
Loading…
Reference in a new issue