From null at cozmixng.org Sun Aug 12 05:40:05 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Sun, 12 Aug 2012 14:40:05 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] test: categorize Generalized Time tests Message-ID: <20120812054017.D22A6940BDE@jenkins.clear-code.com> Kouhei Sutou 2012-08-12 14:40:05 +0900 (Sun, 12 Aug 2012) New Revision: 8c96afac39ab3da03b9793023d78dd44f1a9b505 https://github.com/activeldap/activeldap/commit/8c96afac39ab3da03b9793023d78dd44f1a9b505 Log: test: categorize Generalized Time tests Modified files: test/test_syntax.rb Modified: test/test_syntax.rb (+40 -26) =================================================================== --- test/test_syntax.rb 2012-08-12 14:39:41 +0900 (b59a72d) +++ test/test_syntax.rb 2012-08-12 14:40:05 +0900 (b5589ce) @@ -91,33 +91,47 @@ class TestSyntax < Test::Unit::TestCase assert_dn_type_cast("cn=test", 'Distinguished Name') end - def test_generalized_time_type_cast - assert_type_cast_without_validation(nil, nil, "Generalized Time") - assert_type_cast(Time.parse("1994/12/16 10:32:12"), "19941216103212", - "Generalized Time") - assert_type_cast(Time.parse("1994/12/16 10:32:12Z"), "19941216103212Z", - "Generalized Time") - assert_type_cast(Time.parse("1994/12/16 10:32:12.345 +09:00"), - "19941216103212.345+0900", - "Generalized Time") - begin - Time.utc(1601) - assert_type_cast(Time.utc(1601, 1, 1, 0, 4, 17), - "16010101000417.0Z", - "Generalized Time") - rescue ArgumentError - assert_type_cast(Time.at(0), - "16010101000417.0Z", - "Generalized Time") - end + class TestGeneralizedTime < self + class TestTypeCast < self + def test_nil + assert_type_cast_without_validation(nil, nil, "Generalized Time") + end + + def test_timezone_none + assert_type_cast(Time.parse("1994/12/16 10:32:12"), + "19941216103212") + end + + def test_timezone_Z + assert_type_cast(Time.parse("1994/12/16 10:32:12Z"), + "19941216103212Z") + end + + def test_timezon + assert_type_cast(Time.parse("1994/12/16 10:32:12.345 +09:00"), + "19941216103212.345+0900") + end + + def test_before_posix_time + time_can_handle_before_posix_time = false + begin + Time.utc(1601) + time_can_handle_before_posix_time = true + rescue ArgumentError + end + + if time_can_handle_before_posix_time + assert_type_cast(Time.utc(1601, 1, 1, 0, 4, 17), + "16010101000417.0Z") + else + assert_type_cast(Time.at(0), + "16010101000417.0Z") + end + end - begin - Time.at(-1) - rescue ArgumentError - if $!.message == "argument out of range" - assert_type_cast(Time.parse("1969/12/31 23:59:59 +00:00"), - "19691231235959+0000", - "Generalized Time") + private + def assert_type_cast(type_casted_value, original_value) + super(type_casted_value, original_value, "Generalized Time") end end end -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Sun Aug 12 05:39:41 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Sun, 12 Aug 2012 14:39:41 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] test: fix wrong syntax name Message-ID: <20120812054017.BAC7A9400E6@jenkins.clear-code.com> Kouhei Sutou 2012-08-12 14:39:41 +0900 (Sun, 12 Aug 2012) New Revision: c3b98188723dddf70277b7285163c89ae27cabc3 https://github.com/activeldap/activeldap/commit/c3b98188723dddf70277b7285163c89ae27cabc3 Log: test: fix wrong syntax name Modified files: test/test_syntax.rb Modified: test/test_syntax.rb (+1 -1) =================================================================== --- test/test_syntax.rb 2012-07-22 23:07:53 +0900 (a2a1bcc) +++ test/test_syntax.rb 2012-08-12 14:39:41 +0900 (b59a72d) @@ -123,7 +123,7 @@ class TestSyntax < Test::Unit::TestCase end def test_integer_type_cast - assert_type_cast_without_validation(nil, nil, "Generalized Time") + assert_type_cast_without_validation(nil, nil, "Integer") assert_type_cast(1321, "1321", "Integer") end -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Sun Aug 12 05:47:42 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Sun, 12 Aug 2012 14:47:42 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] test: categorize Generalize Time validation tests Message-ID: <20120812055228.D6FDD9400E6@jenkins.clear-code.com> Kouhei Sutou 2012-08-12 14:47:42 +0900 (Sun, 12 Aug 2012) New Revision: fa4a7bca7b3d249fdfd0629b49651e6c26e0fd5a https://github.com/activeldap/activeldap/commit/fa4a7bca7b3d249fdfd0629b49651e6c26e0fd5a Log: test: categorize Generalize Time validation tests Modified files: test/test_syntax.rb Modified: test/test_syntax.rb (+58 -20) =================================================================== --- test/test_syntax.rb 2012-08-12 14:40:05 +0900 (b5589ce) +++ test/test_syntax.rb 2012-08-12 14:47:42 +0900 (4068fc1) @@ -92,9 +92,14 @@ class TestSyntax < Test::Unit::TestCase end class TestGeneralizedTime < self + private + def syntax_name + "Generalized Time" + end + class TestTypeCast < self def test_nil - assert_type_cast_without_validation(nil, nil, "Generalized Time") + assert_type_cast_without_validation(nil, nil, syntax_name) end def test_timezone_none @@ -107,7 +112,7 @@ class TestSyntax < Test::Unit::TestCase "19941216103212Z") end - def test_timezon + def test_timezone_difference assert_type_cast(Time.parse("1994/12/16 10:32:12.345 +09:00"), "19941216103212.345+0900") end @@ -131,7 +136,57 @@ class TestSyntax < Test::Unit::TestCase private def assert_type_cast(type_casted_value, original_value) - super(type_casted_value, original_value, "Generalized Time") + super(type_casted_value, original_value, syntax_name) + end + end + + class TestValidate < self + class TestValid < self + def test_no_timezone + assert_valid("19941216103201") + end + + def test_timezone_Z + assert_valid("19941216103212Z") + end + + def test_timezone_difference + assert_valid("19941216103230+0900") + end + + def test_fraction_separator_period + assert_valid("20080107034615.0Z") + end + + def test_fraction_separator_comma + assert_valid("20080107034615,123-0900") + end + + private + def assert_valid(value) + super(value, syntax_name) + end + end + + class TestInvalid < self + def test_year_only + value = "1994" + params = [value.inspect, %w(month day hour minute second).join(", ")] + assert_invalid(_("%s has missing components: %s") % params, + value) + end + + def test_year_month_day_hour_minute + value = "199412161032" + params = [value.inspect, %w(second).join(", ")] + assert_invalid(_("%s has missing components: %s") % params, + value) + end + + private + def assert_invalid(reason, value) + super(reason, value, syntax_name) + end end end end @@ -213,23 +268,6 @@ class TestSyntax < Test::Unit::TestCase value, "Directory String") end - def test_generalized_time_validate - assert_valid("19941216103201", "Generalized Time") - assert_valid("19941216103212Z", "Generalized Time") - assert_valid("19941216103230+0900", "Generalized Time") - assert_valid("20080107034615.0Z", "Generalized Time") - assert_valid("20080107034615,123-0900", "Generalized Time") - - value = "1994" - params = [value.inspect, %w(month day hour minute second).join(", ")] - assert_invalid(_("%s has missing components: %s") % params, - value, "Generalized Time") - value = "199412161032" - params = [value.inspect, %w(second).join(", ")] - assert_invalid(_("%s has missing components: %s") % params, - value, "Generalized Time") - end - def test_integer_validate assert_valid("1321", "Integer") -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Sun Aug 12 05:52:16 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Sun, 12 Aug 2012 14:52:16 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] syntax: fix optional parameter second is treated as required in Generalized Time Message-ID: <20120812055228.F40EB940BDE@jenkins.clear-code.com> Kouhei Sutou 2012-08-12 14:52:16 +0900 (Sun, 12 Aug 2012) New Revision: f2b8be21f72f8fad666e6ae0f66c6a5942a23da1 https://github.com/activeldap/activeldap/commit/f2b8be21f72f8fad666e6ae0f66c6a5942a23da1 Log: syntax: fix optional parameter second is treated as required in Generalized Time GitHub: fix #43 Reported by @masche842. Thanks!!! Modified files: lib/active_ldap/schema/syntaxes.rb test/test_syntax.rb Modified: lib/active_ldap/schema/syntaxes.rb (+4 -4) =================================================================== --- lib/active_ldap/schema/syntaxes.rb 2012-08-12 14:47:42 +0900 (fe79c87) +++ lib/active_ldap/schema/syntaxes.rb 2012-08-12 14:52:16 +0900 (b1a2add) @@ -180,10 +180,10 @@ module ActiveLdap return value if value.nil? or value.is_a?(Time) match_data = FORMAT.match(value) if match_data - required_components = match_data.to_a[1, 6] + required_components = match_data.to_a[1, 5] return value if required_components.any?(&:nil?) - year, month, day, hour, minute, second = - required_components.collect(&:to_i) + year, month, day, hour, minute = required_components.collect(&:to_i) + second = match_data[-3].to_i fraction = match_data[-2] fraction = fraction.to_f if fraction time_zone = match_data[-1] @@ -226,7 +226,7 @@ module ActiveLdap if match_data date_data = match_data.to_a[1..-1] missing_components = [] - required_components = %w(year month day hour minute second) + required_components = %w(year month day hour minute) required_components.each_with_index do |component, i| missing_components << component unless date_data[i] end Modified: test/test_syntax.rb (+13 -4) =================================================================== --- test/test_syntax.rb 2012-08-12 14:47:42 +0900 (4068fc1) +++ test/test_syntax.rb 2012-08-12 14:52:16 +0900 (5638b86) @@ -117,6 +117,11 @@ class TestSyntax < Test::Unit::TestCase "19941216103212.345+0900") end + def test_year_month_day_hour_minute + assert_type_cast(Time.parse("2008/01/07 03:46:00"), + "200801070346") + end + def test_before_posix_time time_can_handle_before_posix_time = false begin @@ -162,6 +167,10 @@ class TestSyntax < Test::Unit::TestCase assert_valid("20080107034615,123-0900") end + def test_year_month_day_hour_minute + assert_valid("199412161032") + end + private def assert_valid(value) super(value, syntax_name) @@ -171,14 +180,14 @@ class TestSyntax < Test::Unit::TestCase class TestInvalid < self def test_year_only value = "1994" - params = [value.inspect, %w(month day hour minute second).join(", ")] + params = [value.inspect, %w(month day hour minute).join(", ")] assert_invalid(_("%s has missing components: %s") % params, value) end - def test_year_month_day_hour_minute - value = "199412161032" - params = [value.inspect, %w(second).join(", ")] + def test_year_month_day_hour_only + value = "1994121610" + params = [value.inspect, %w(minute).join(", ")] assert_invalid(_("%s has missing components: %s") % params, value) end -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Mon Aug 13 14:06:27 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Mon, 13 Aug 2012 23:06:27 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Use :cgi driver for Locale #39 Message-ID: <20120813140640.336D6940422@jenkins.clear-code.com> Kouhei Sutou 2012-08-13 23:06:27 +0900 (Mon, 13 Aug 2012) New Revision: f45d97006aa1a0952670de4e99afb4edbd8d6a43 https://github.com/activeldap/activeldap/commit/f45d97006aa1a0952670de4e99afb4edbd8d6a43 Log: Use :cgi driver for Locale #39 Modified files: lib/active_ldap/railtie.rb Modified: lib/active_ldap/railtie.rb (+3 -0) =================================================================== --- lib/active_ldap/railtie.rb 2012-08-12 14:52:16 +0900 (2ea2f67) +++ lib/active_ldap/railtie.rb 2012-08-13 23:06:27 +0900 (d733092) @@ -1,6 +1,9 @@ +require "locale" require 'active_ldap' require 'rails' +Locale.init(:driver => :cgi) + module ActiveLdap class Railtie < Rails::Railtie config.app_generators.orm :active_ldap -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 12:39:33 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 21:39:33 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] 3.1.2 -> 3.2.0 Message-ID: <20120828123944.D7ECA940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 21:39:33 +0900 (Tue, 28 Aug 2012) New Revision: c76dee90dfecc2b257fd0ef6f74f78c2e02fedc6 https://github.com/activeldap/activeldap/commit/c76dee90dfecc2b257fd0ef6f74f78c2e02fedc6 Log: 3.1.2 -> 3.2.0 Modified files: lib/active_ldap/version.rb Modified: lib/active_ldap/version.rb (+1 -1) =================================================================== --- lib/active_ldap/version.rb 2012-08-13 23:06:27 +0900 (54c90e9) +++ lib/active_ldap/version.rb 2012-08-28 21:39:33 +0900 (31feb6f) @@ -1,3 +1,3 @@ module ActiveLdap - VERSION = "3.1.2" + VERSION = "3.2.0" end -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 12:59:50 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 21:59:50 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Add 3.2.0 entry Message-ID: <20120828130002.37874940C16@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 21:59:50 +0900 (Tue, 28 Aug 2012) New Revision: fa11146cabb09ce62a302274e205e66aa5799e84 https://github.com/activeldap/activeldap/commit/fa11146cabb09ce62a302274e205e66aa5799e84 Log: Add 3.2.0 entry Modified files: doc/text/news.textile Modified: doc/text/news.textile (+38 -0) =================================================================== --- doc/text/news.textile 2012-08-28 21:44:57 +0900 (17ca182) +++ doc/text/news.textile 2012-08-28 21:59:50 +0900 (94cf6ab) @@ -1,5 +1,43 @@ h1. News +h2(#3-1-1). 3.2.0: 2011-08-29 + +* [GitHUb:#39] Supported Rails 3.2.8. [Reported by Ben Langfeld] +* [GitHub:#13] Don't use deprecated Gem.available?. [Patch by sailesh] +* [GitHub:#19] Supported new entry by @ha_many :wrap at . [Patch by Alex Tomlins] +* Supported @:only@ option in XML output. +* [GitHub:#14] Supported nil as single value. [Reported by n3llyb0y] +* [GitHub:#20] Supported ActiveModel::MassAssignmentSecurity. + [Reported by mihu] +* [GitHub:#24] Supported Ruby 1.9 style Hash syntax in generator. + [Patch by ursm] +* [GitHub:#25][GitHub:#39] Supported ActiveMode;::Dirty. + [Patch by mihu][Reported by Ben Langfeld] +* [GitHub:#26] Improved speed for dirty. [Patch by mihu] +* [GitHub:#28] Improved speed for initialization. [Patch by mihu] +* [GitHub:#29] Added .gemspec. [Suggested by mklappstuhl] +* [GitHub:#34] Removed an unused method. [Patch by mihu] +* [GitHub:#37] Improved will_paginate support. [Patch by Craig White] +* [GitHub:#40] Added missing test files to .gemspec. [Reported by V?t Ondruch] +* [GitHub:#41] Improved speed for find. [Patch by unixmechanic] +* Changed i18n backend to gettext from fast_gettext again. +* [GitHub:#42] Fixed a bug that optional second is required for GeneralizedTime. + [Reported by masche842] + +h3. Thanks + +* sailesh +* Alex Tomlins +* n3llyb0y +* mihu +* ursm +* Ben Langfeld +* mklappstuhl +* Craig White +* V?t Ondruch +* unixmechanic +* masche842 + h2(#3-1-1). 3.1.1: 2011-11-03 * Supported Rails 3.1.1. -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 12:44:57 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 21:44:57 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Required ActiveModel 3.2.6 -> 3.2.8 Message-ID: <20120828130002.1BB25940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 21:44:57 +0900 (Tue, 28 Aug 2012) New Revision: 38530ff7a211e2310e00063755164e66c7463fca https://github.com/activeldap/activeldap/commit/38530ff7a211e2310e00063755164e66c7463fca Log: Required ActiveModel 3.2.6 -> 3.2.8 Modified files: activeldap.gemspec Modified: activeldap.gemspec (+1 -1) =================================================================== --- activeldap.gemspec 2012-08-28 21:39:33 +0900 (4c4edde) +++ activeldap.gemspec 2012-08-28 21:44:57 +0900 (11cc3e6) @@ -42,7 +42,7 @@ Gem::Specification.new do |spec| EOF spec.license = "Ruby's or GPLv2 or later" - spec.add_dependency("activemodel", ["~> 3.2.6"]) + spec.add_dependency("activemodel", ["~> 3.2.8"]) spec.add_dependency("locale") spec.add_dependency("gettext") spec.add_dependency("gettext_i18n_rails") -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 13:00:41 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 22:00:41 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Define missing base_dir Message-ID: <20120828130054.0A242940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 22:00:41 +0900 (Tue, 28 Aug 2012) New Revision: 119a7b10ad8b1b2e4af3111d1396dfa3c6090a69 https://github.com/activeldap/activeldap/commit/119a7b10ad8b1b2e4af3111d1396dfa3c6090a69 Log: Define missing base_dir Modified files: Rakefile Modified: Rakefile (+2 -0) =================================================================== --- Rakefile 2012-08-28 21:59:50 +0900 (088ac05) +++ Rakefile 2012-08-28 22:00:41 +0900 (11e8f0f) @@ -17,6 +17,8 @@ $KCODE = "u" if RUBY_VERSION < "1.9" project_name = "ActiveLdap" +base_dir = File.dirname(__FILE__) + helper = Bundler::GemHelper.new(base_dir) helper.install spec = helper.gemspec -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 13:01:18 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 22:01:18 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Fix ID Message-ID: <20120828130130.9F264940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 22:01:18 +0900 (Tue, 28 Aug 2012) New Revision: 50ea315ce567dc34bf423fad6160a75be62098e1 https://github.com/activeldap/activeldap/commit/50ea315ce567dc34bf423fad6160a75be62098e1 Log: Fix ID Modified files: doc/text/news.textile Modified: doc/text/news.textile (+1 -1) =================================================================== --- doc/text/news.textile 2012-08-28 22:00:41 +0900 (94cf6ab) +++ doc/text/news.textile 2012-08-28 22:01:18 +0900 (923df10) @@ -1,6 +1,6 @@ h1. News -h2(#3-1-1). 3.2.0: 2011-08-29 +h2(#3-2-0). 3.2.0: 2011-08-29 * [GitHUb:#39] Supported Rails 3.2.8. [Reported by Ben Langfeld] * [GitHub:#13] Don't use deprecated Gem.available?. [Patch by sailesh] -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 13:01:38 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 22:01:38 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Fix year Message-ID: <20120828130201.51B1D940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 22:01:38 +0900 (Tue, 28 Aug 2012) New Revision: eebb701148eeca2445d874fa65665d6adafd74a7 https://github.com/activeldap/activeldap/commit/eebb701148eeca2445d874fa65665d6adafd74a7 Log: Fix year Modified files: doc/text/news.textile Modified: doc/text/news.textile (+1 -1) =================================================================== --- doc/text/news.textile 2012-08-28 22:01:18 +0900 (923df10) +++ doc/text/news.textile 2012-08-28 22:01:38 +0900 (659736e) @@ -1,6 +1,6 @@ h1. News -h2(#3-2-0). 3.2.0: 2011-08-29 +h2(#3-2-0). 3.2.0: 2012-08-29 * [GitHUb:#39] Supported Rails 3.2.8. [Reported by Ben Langfeld] * [GitHub:#13] Don't use deprecated Gem.available?. [Patch by sailesh] -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 13:09:05 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 22:09:05 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Fix typos Message-ID: <20120828130918.01E9E940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 22:09:05 +0900 (Tue, 28 Aug 2012) New Revision: 65e0e7c3b82bab1601c171e5e25d26f7eeda7586 https://github.com/activeldap/activeldap/commit/65e0e7c3b82bab1601c171e5e25d26f7eeda7586 Log: Fix typos Modified files: doc/text/news.textile Modified: doc/text/news.textile (+2 -2) =================================================================== --- doc/text/news.textile 2012-08-28 22:01:38 +0900 (659736e) +++ doc/text/news.textile 2012-08-28 22:09:05 +0900 (6148b79) @@ -2,7 +2,7 @@ h1. News h2(#3-2-0). 3.2.0: 2012-08-29 -* [GitHUb:#39] Supported Rails 3.2.8. [Reported by Ben Langfeld] +* [GitHub:#39] Supported Rails 3.2.8. [Reported by Ben Langfeld] * [GitHub:#13] Don't use deprecated Gem.available?. [Patch by sailesh] * [GitHub:#19] Supported new entry by @ha_many :wrap at . [Patch by Alex Tomlins] * Supported @:only@ option in XML output. @@ -11,7 +11,7 @@ h2(#3-2-0). 3.2.0: 2012-08-29 [Reported by mihu] * [GitHub:#24] Supported Ruby 1.9 style Hash syntax in generator. [Patch by ursm] -* [GitHub:#25][GitHub:#39] Supported ActiveMode;::Dirty. +* [GitHub:#25][GitHub:#39] Supported ActiveModel::Dirty. [Patch by mihu][Reported by Ben Langfeld] * [GitHub:#26] Improved speed for dirty. [Patch by mihu] * [GitHub:#28] Improved speed for initialization. [Patch by mihu] -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 13:11:23 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 22:11:23 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Update po Message-ID: <20120828131222.A500E940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 22:11:23 +0900 (Tue, 28 Aug 2012) New Revision: 5670d445e78e321a8fca91460a4dc461b6d6dea2 https://github.com/activeldap/activeldap/commit/5670d445e78e321a8fca91460a4dc461b6d6dea2 Log: Update po Modified files: doc/po/ja.po Modified: doc/po/ja.po (+28718 -32854) =================================================================== --- doc/po/ja.po 2012-08-28 22:09:05 +0900 (ce2c285) +++ doc/po/ja.po 2012-08-28 22:11:23 +0900 (9d42219) @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: ActiveLdap 3.1.0\n" -"POT-Creation-Date: 2011-11-03 23:08+0900\n" -"PO-Revision-Date: 2011-11-03 23:09+0900\n" +"POT-Creation-Date: 2012-08-28 22:09+0900\n" +"PO-Revision-Date: 2012-08-28 22:08+0900\n" "Last-Translator: Kouhei Sutou \n" "Language-Team: Japanese\n" "Language: ja\n" @@ -27,3310 +27,2717 @@ msgstr "????: ???? — ActiveLdap" #: doc/reference/en/file.rails.html:17(script) #: doc/reference/en/_index.html:15(script) #: doc/reference/en/LDAP.html:17(script) -msgid "relpath = ''; if (relpath != '') relpath += '/';" -msgstr "" - -#: doc/reference/en/file.news.html:29(script) -#: doc/reference/en/file.development.html:29(script) -#: doc/reference/en/top-level-namespace.html:29(script) -#: doc/reference/en/Net/LDAP/Entry.html:29(script) -#: doc/reference/en/Net/LDAP.html:29(script) -#: doc/reference/en/index.html:29(script) -#: doc/reference/en/ActiveLdap/ActionController.html:29(script) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:29(script) -#: doc/reference/en/ActiveLdap/Escape.html:29(script) -#: doc/reference/en/ActiveLdap/Compatible.html:29(script) -#: doc/reference/en/ActiveLdap/LdapError.html:29(script) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:29(script) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif.html:29(script) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:29(script) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:29(script) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:29(script) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:29(script) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:29(script) -#: doc/reference/en/ActiveLdap/Generators.html:29(script) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:29(script) -#: doc/reference/en/ActiveLdap/Railtie.html:29(script) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:29(script) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:29(script) -#: doc/reference/en/ActiveLdap/Persistence.html:29(script) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:29(script) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:29(script) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:29(script) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:29(script) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:29(script) -#: doc/reference/en/ActiveLdap/Acts.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter.html:29(script) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:29(script) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:29(script) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:29(script) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:29(script) -#: doc/reference/en/ActiveLdap/Connection.html:29(script) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:29(script) -#: doc/reference/en/ActiveLdap/Schema.html:29(script) -#: doc/reference/en/ActiveLdap/DeleteError.html:29(script) -#: doc/reference/en/ActiveLdap/Validations.html:29(script) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:29(script) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:29(script) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:29(script) -#: doc/reference/en/ActiveLdap/Attributes.html:29(script) -#: doc/reference/en/ActiveLdap/TimeoutError.html:29(script) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:29(script) -#: doc/reference/en/ActiveLdap/Base.html:29(script) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:29(script) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:29(script) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:29(script) -#: doc/reference/en/ActiveLdap/Association.html:29(script) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:29(script) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:29(script) -#: doc/reference/en/ActiveLdap/NotImplemented.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:29(script) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:29(script) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:29(script) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:29(script) -#: doc/reference/en/ActiveLdap/SaveError.html:29(script) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:29(script) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:29(script) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:29(script) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:29(script) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:29(script) -#: doc/reference/en/ActiveLdap/ObjectClass.html:29(script) -#: doc/reference/en/ActiveLdap/UserPassword.html:29(script) -#: doc/reference/en/ActiveLdap/Command.html:29(script) -#: doc/reference/en/ActiveLdap/ConnectionError.html:29(script) -#: doc/reference/en/ActiveLdap/Populate.html:29(script) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:29(script) -#: doc/reference/en/ActiveLdap/Error.html:29(script) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:29(script) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:29(script) -#: doc/reference/en/ActiveLdap/Association/Collection.html:29(script) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:29(script) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:29(script) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:29(script) -#: doc/reference/en/ActiveLdap/Association/Children.html:29(script) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:29(script) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:29(script) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:29(script) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:29(script) -#: doc/reference/en/ActiveLdap/Helper.html:29(script) -#: doc/reference/en/ActiveLdap/Railties.html:29(script) -#: doc/reference/en/ActiveLdap/HumanReadable.html:29(script) -#: doc/reference/en/ActiveLdap/Callbacks.html:29(script) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/Find.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/Common.html:29(script) -#: doc/reference/en/ActiveLdap/Operations/Update.html:29(script) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:29(script) -#: doc/reference/en/ActiveLdap/Associations.html:29(script) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:29(script) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:29(script) -#: doc/reference/en/ActiveLdap/Configuration.html:29(script) -#: doc/reference/en/ActiveLdap/Operations.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:29(script) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:29(script) -#: doc/reference/en/ActiveLdap/Xml.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:29(script) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:29(script) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:29(script) -#: doc/reference/en/ActiveLdap.html:29(script) -#: doc/reference/en/Net.html:29(script) -#: doc/reference/en/file.README.html:29(script) -#: doc/reference/en/LDAP/Conn.html:29(script) -#: doc/reference/en/LDAP/Mod.html:29(script) -#: doc/reference/en/file.tutorial.html:29(script) -#: doc/reference/en/Timeout.html:29(script) -#: doc/reference/en/file.rails.html:29(script) -#: doc/reference/en/_index.html:27(script) -#: doc/reference/en/LDAP.html:29(script) -msgid "if (window.top.frames.main) document.body.className = 'frames';" -msgstr "" - -#: doc/reference/en/file.news.html:36(a) -#: doc/reference/en/file.development.html:36(a) -#: doc/reference/en/top-level-namespace.html:36(a) -#: doc/reference/en/index.html:36(a) doc/reference/en/file.README.html:36(a) -#: doc/reference/en/file.tutorial.html:36(a) -#: doc/reference/en/file.rails.html:36(a) +msgid "" +"hasFrames = window.top.frames.main ? true : false; relpath = ''; framesUrl = " +"\"frames.html#!\" + escape(window.location.href);" +msgstr "" + +#: doc/reference/en/file.news.html:34(a) +#: doc/reference/en/file.development.html:34(a) +#: doc/reference/en/top-level-namespace.html:34(a) +#: doc/reference/en/index.html:34(a) doc/reference/en/file.README.html:34(a) +#: doc/reference/en/file.tutorial.html:34(a) +#: doc/reference/en/file.rails.html:34(a) msgid "Index" msgstr "??" -#: doc/reference/en/file.news.html:37(span) +#: doc/reference/en/file.news.html:35(span) msgid "File: news" msgstr "????: ????" -#: doc/reference/en/file.news.html:40(span) -#: doc/reference/en/file.development.html:40(span) -#: doc/reference/en/top-level-namespace.html:42(span) -#: doc/reference/en/Net/LDAP/Entry.html:42(span) -#: doc/reference/en/Net/LDAP/Entry.html:194(span) -#: doc/reference/en/Net/LDAP/Entry.html:196(span) -#: doc/reference/en/Net/LDAP.html:42(span) -#: doc/reference/en/index.html:40(span) -#: doc/reference/en/ActiveLdap/ActionController.html:42(span) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:42(span) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:410(span) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:458(span) -#: doc/reference/en/ActiveLdap/Escape.html:42(span) -#: doc/reference/en/ActiveLdap/Escape.html:164(span) -#: doc/reference/en/ActiveLdap/Escape.html:165(span) -#: doc/reference/en/ActiveLdap/Escape.html:193(span) -#: doc/reference/en/ActiveLdap/Escape.html:194(span) -#: doc/reference/en/ActiveLdap/Compatible.html:42(span) -#: doc/reference/en/ActiveLdap/Compatible.html:164(span) +#: doc/reference/en/file.news.html:38(span) +#: doc/reference/en/file.development.html:38(span) +#: doc/reference/en/top-level-namespace.html:40(span) +#: doc/reference/en/Net/LDAP/Entry.html:40(span) +#: doc/reference/en/Net/LDAP/Entry.html:271(span) +#: doc/reference/en/Net/LDAP/Entry.html:273(span) +#: doc/reference/en/Net/LDAP/Entry.html:310(span) +#: doc/reference/en/Net/LDAP/Entry.html:312(span) +#: doc/reference/en/Net/LDAP.html:40(span) +#: doc/reference/en/index.html:38(span) +#: doc/reference/en/ActiveLdap/ActionController.html:40(span) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:40(span) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:427(span) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:476(span) +#: doc/reference/en/ActiveLdap/Escape.html:40(span) +#: doc/reference/en/ActiveLdap/Escape.html:177(span) +#: doc/reference/en/ActiveLdap/Escape.html:178(span) +#: doc/reference/en/ActiveLdap/Escape.html:207(span) +#: doc/reference/en/ActiveLdap/Escape.html:208(span) +#: doc/reference/en/ActiveLdap/Compatible.html:40(span) #: doc/reference/en/ActiveLdap/Compatible.html:195(span) -#: doc/reference/en/ActiveLdap/LdapError.html:42(span) -#: doc/reference/en/ActiveLdap/LdapError.html:209(span) -#: doc/reference/en/ActiveLdap/LdapError.html:211(span) -#: doc/reference/en/ActiveLdap/LdapError.html:212(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:576(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:582(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:584(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:620(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:622(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:796(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:797(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:799(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:801(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:805(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:868(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:870(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:873(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:874(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:915(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:916(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:917(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:919(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:920(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:922(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:923(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:925(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:926(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:928(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:929(span) +#: doc/reference/en/ActiveLdap/Compatible.html:198(span) +#: doc/reference/en/ActiveLdap/Compatible.html:202(span) +#: doc/reference/en/ActiveLdap/Compatible.html:203(span) +#: doc/reference/en/ActiveLdap/Compatible.html:209(span) +#: doc/reference/en/ActiveLdap/Compatible.html:243(span) +#: doc/reference/en/ActiveLdap/LdapError.html:40(span) +#: doc/reference/en/ActiveLdap/LdapError.html:213(span) +#: doc/reference/en/ActiveLdap/LdapError.html:215(span) +#: doc/reference/en/ActiveLdap/LdapError.html:223(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:601(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:607(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:609(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:646(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:648(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:826(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:827(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:829(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:831(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:835(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:900(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:902(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:905(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:906(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:948(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:949(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:950(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:952(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:953(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:955(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:956(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:958(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:959(span) #: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:961(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1000(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1001(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1002(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1006(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1008(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1042(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1111(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1192(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1193(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1199(span) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:42(span) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:158(span) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:160(span) -#: doc/reference/en/ActiveLdap/Ldif.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif.html:365(span) -#: doc/reference/en/ActiveLdap/Ldif.html:495(span) -#: doc/reference/en/ActiveLdap/Ldif.html:496(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:42(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:305(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:307(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:308(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:309(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:401(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:443(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:444(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:446(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:448(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:452(span) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:143(span) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:144(span) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:42(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:962(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:995(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1035(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1036(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1037(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1041(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1043(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1079(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1150(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1232(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1233(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1239(span) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:40(span) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:171(span) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:173(span) +#: doc/reference/en/ActiveLdap/Ldif.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif.html:382(span) +#: doc/reference/en/ActiveLdap/Ldif.html:511(span) +#: doc/reference/en/ActiveLdap/Ldif.html:512(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:40(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:319(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:321(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:322(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:323(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:415(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:458(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:459(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:461(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:463(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:467(span) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:155(span) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:156(span) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:40(span) #: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:269(span) #: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:272(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:42(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:255(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:256(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:257(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:259(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:260(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:306(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:307(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:310(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:313(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:316(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:358(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:359(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:360(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:361(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:363(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:365(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:40(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:262(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:263(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:264(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:266(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:267(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:314(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:315(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:318(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:321(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:324(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:367(span) #: doc/reference/en/ActiveLdap/GetText/Parser.html:368(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:421(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:422(span) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:42(span) -#: doc/reference/en/ActiveLdap/Generators.html:42(span) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:42(span) -#: doc/reference/en/ActiveLdap/Railtie.html:42(span) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:42(span) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:145(span) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:147(span) -#: doc/reference/en/ActiveLdap/Persistence.html:42(span) -#: doc/reference/en/ActiveLdap/Persistence.html:330(span) -#: doc/reference/en/ActiveLdap/Persistence.html:331(span) -#: doc/reference/en/ActiveLdap/Persistence.html:391(span) -#: doc/reference/en/ActiveLdap/Persistence.html:392(span) -#: doc/reference/en/ActiveLdap/Persistence.html:437(span) -#: doc/reference/en/ActiveLdap/Persistence.html:593(span) -#: doc/reference/en/ActiveLdap/Persistence.html:624(span) -#: doc/reference/en/ActiveLdap/Persistence.html:626(span) -#: doc/reference/en/ActiveLdap/Persistence.html:674(span) -#: doc/reference/en/ActiveLdap/Persistence.html:675(span) -#: doc/reference/en/ActiveLdap/Persistence.html:677(span) -#: doc/reference/en/ActiveLdap/Persistence.html:684(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:42(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:257(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:258(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:292(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:330(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:331(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:368(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:397(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:431(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:432(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:434(span) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:42(span) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:194(span) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:221(span) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:248(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:42(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:369(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:370(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:372(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:374(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:377(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:431(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:432(span) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:40(span) +#: doc/reference/en/ActiveLdap/Generators.html:40(span) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:40(span) +#: doc/reference/en/ActiveLdap/Railtie.html:40(span) +#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:40(span) +#: doc/reference/en/ActiveLdap/Persistence.html:40(span) +#: doc/reference/en/ActiveLdap/Persistence.html:368(span) +#: doc/reference/en/ActiveLdap/Persistence.html:369(span) +#: doc/reference/en/ActiveLdap/Persistence.html:431(span) +#: doc/reference/en/ActiveLdap/Persistence.html:432(span) +#: doc/reference/en/ActiveLdap/Persistence.html:476(span) +#: doc/reference/en/ActiveLdap/Persistence.html:631(span) +#: doc/reference/en/ActiveLdap/Persistence.html:635(span) +#: doc/reference/en/ActiveLdap/Persistence.html:638(span) +#: doc/reference/en/ActiveLdap/Persistence.html:639(span) +#: doc/reference/en/ActiveLdap/Persistence.html:686(span) +#: doc/reference/en/ActiveLdap/Persistence.html:718(span) +#: doc/reference/en/ActiveLdap/Persistence.html:720(span) +#: doc/reference/en/ActiveLdap/Persistence.html:769(span) +#: doc/reference/en/ActiveLdap/Persistence.html:770(span) +#: doc/reference/en/ActiveLdap/Persistence.html:772(span) +#: doc/reference/en/ActiveLdap/Persistence.html:779(span) +#: doc/reference/en/ActiveLdap/Persistence.html:780(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:40(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:239(span) #: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:241(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:243(span) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:147(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:397(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:398(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:400(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:436(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:437(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:440(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:476(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:477(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:478(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:479(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:480(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:520(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:521(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:524(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:527(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:563(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:564(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:566(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:602(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:603(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:606(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:639(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:640(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:673(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:674(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:723(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:730(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:731(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:735(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:770(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:771(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:773(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:809(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:810(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:813(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:846(span) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:159(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:421(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:422(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:424(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:461(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:462(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:465(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:502(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:503(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:504(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:505(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:506(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:547(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:548(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:551(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:554(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:591(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:592(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:594(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:631(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:632(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:635(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:669(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:670(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:704(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:705(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:755(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:758(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:762(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:763(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:765(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:767(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:803(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:804(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:806(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:843(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:844(span) #: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:847(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:880(span) #: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:881(span) -#: doc/reference/en/ActiveLdap/Acts.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter.html:42(span) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:42(span) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:42(span) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:185(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:42(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:279(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:281(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:285(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:286(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:314(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:366(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:367(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:369(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:371(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:417(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:422(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:423(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:425(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:428(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:491(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:498(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:535(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:538(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:207(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:209(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:270(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:273(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:275(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:313(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:370(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:375(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:384(span) -#: doc/reference/en/ActiveLdap/Connection.html:42(span) -#: doc/reference/en/ActiveLdap/Connection.html:330(span) -#: doc/reference/en/ActiveLdap/Connection.html:331(span) -#: doc/reference/en/ActiveLdap/Connection.html:434(span) -#: doc/reference/en/ActiveLdap/Connection.html:474(span) -#: doc/reference/en/ActiveLdap/Connection.html:475(span) -#: doc/reference/en/ActiveLdap/Connection.html:477(span) -#: doc/reference/en/ActiveLdap/Connection.html:479(span) -#: doc/reference/en/ActiveLdap/Connection.html:481(span) -#: doc/reference/en/ActiveLdap/Connection.html:515(span) -#: doc/reference/en/ActiveLdap/Connection.html:517(span) -#: doc/reference/en/ActiveLdap/Connection.html:520(span) -#: doc/reference/en/ActiveLdap/Connection.html:521(span) -#: doc/reference/en/ActiveLdap/Connection.html:551(span) -#: doc/reference/en/ActiveLdap/Connection.html:592(span) -#: doc/reference/en/ActiveLdap/Connection.html:595(span) -#: doc/reference/en/ActiveLdap/Connection.html:659(span) -#: doc/reference/en/ActiveLdap/Connection.html:660(span) -#: doc/reference/en/ActiveLdap/Connection.html:661(span) -#: doc/reference/en/ActiveLdap/Connection.html:662(span) -#: doc/reference/en/ActiveLdap/Connection.html:665(span) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:42(span) -#: doc/reference/en/ActiveLdap/Schema.html:42(span) -#: doc/reference/en/ActiveLdap/Schema.html:603(span) -#: doc/reference/en/ActiveLdap/Schema.html:604(span) -#: doc/reference/en/ActiveLdap/Schema.html:644(span) -#: doc/reference/en/ActiveLdap/Schema.html:645(span) -#: doc/reference/en/ActiveLdap/Schema.html:646(span) -#: doc/reference/en/ActiveLdap/Schema.html:677(span) -#: doc/reference/en/ActiveLdap/Schema.html:678(span) -#: doc/reference/en/ActiveLdap/Schema.html:679(span) -#: doc/reference/en/ActiveLdap/Schema.html:713(span) -#: doc/reference/en/ActiveLdap/Schema.html:714(span) -#: doc/reference/en/ActiveLdap/Schema.html:715(span) -#: doc/reference/en/ActiveLdap/Schema.html:747(span) -#: doc/reference/en/ActiveLdap/Schema.html:748(span) -#: doc/reference/en/ActiveLdap/Schema.html:749(span) -#: doc/reference/en/ActiveLdap/Schema.html:785(span) -#: doc/reference/en/ActiveLdap/Schema.html:788(span) -#: doc/reference/en/ActiveLdap/Schema.html:789(span) -#: doc/reference/en/ActiveLdap/Schema.html:791(span) -#: doc/reference/en/ActiveLdap/Schema.html:857(span) -#: doc/reference/en/ActiveLdap/Schema.html:860(span) -#: doc/reference/en/ActiveLdap/Schema.html:861(span) -#: doc/reference/en/ActiveLdap/Schema.html:865(span) -#: doc/reference/en/ActiveLdap/Schema.html:866(span) -#: doc/reference/en/ActiveLdap/Schema.html:869(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:882(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:916(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:917(span) +#: doc/reference/en/ActiveLdap/Acts.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter.html:40(span) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:40(span) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:40(span) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:189(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:40(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:292(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:294(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:298(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:299(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:328(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:378(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:379(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:381(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:383(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:430(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:435(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:436(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:438(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:441(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:503(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:510(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:548(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:551(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:210(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:213(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:215(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:278(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:283(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:292(span) +#: doc/reference/en/ActiveLdap/Connection.html:40(span) +#: doc/reference/en/ActiveLdap/Connection.html:350(span) +#: doc/reference/en/ActiveLdap/Connection.html:351(span) +#: doc/reference/en/ActiveLdap/Connection.html:456(span) +#: doc/reference/en/ActiveLdap/Connection.html:497(span) +#: doc/reference/en/ActiveLdap/Connection.html:498(span) +#: doc/reference/en/ActiveLdap/Connection.html:500(span) +#: doc/reference/en/ActiveLdap/Connection.html:502(span) +#: doc/reference/en/ActiveLdap/Connection.html:504(span) +#: doc/reference/en/ActiveLdap/Connection.html:539(span) +#: doc/reference/en/ActiveLdap/Connection.html:541(span) +#: doc/reference/en/ActiveLdap/Connection.html:544(span) +#: doc/reference/en/ActiveLdap/Connection.html:545(span) +#: doc/reference/en/ActiveLdap/Connection.html:576(span) +#: doc/reference/en/ActiveLdap/Connection.html:618(span) +#: doc/reference/en/ActiveLdap/Connection.html:621(span) +#: doc/reference/en/ActiveLdap/Connection.html:687(span) +#: doc/reference/en/ActiveLdap/Connection.html:688(span) +#: doc/reference/en/ActiveLdap/Connection.html:689(span) +#: doc/reference/en/ActiveLdap/Connection.html:690(span) +#: doc/reference/en/ActiveLdap/Connection.html:693(span) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:40(span) +#: doc/reference/en/ActiveLdap/Schema.html:40(span) +#: doc/reference/en/ActiveLdap/Schema.html:612(span) +#: doc/reference/en/ActiveLdap/Schema.html:613(span) +#: doc/reference/en/ActiveLdap/Schema.html:654(span) +#: doc/reference/en/ActiveLdap/Schema.html:655(span) +#: doc/reference/en/ActiveLdap/Schema.html:656(span) +#: doc/reference/en/ActiveLdap/Schema.html:688(span) +#: doc/reference/en/ActiveLdap/Schema.html:689(span) +#: doc/reference/en/ActiveLdap/Schema.html:690(span) +#: doc/reference/en/ActiveLdap/Schema.html:725(span) +#: doc/reference/en/ActiveLdap/Schema.html:726(span) +#: doc/reference/en/ActiveLdap/Schema.html:727(span) +#: doc/reference/en/ActiveLdap/Schema.html:760(span) +#: doc/reference/en/ActiveLdap/Schema.html:761(span) +#: doc/reference/en/ActiveLdap/Schema.html:762(span) +#: doc/reference/en/ActiveLdap/Schema.html:799(span) +#: doc/reference/en/ActiveLdap/Schema.html:802(span) +#: doc/reference/en/ActiveLdap/Schema.html:803(span) +#: doc/reference/en/ActiveLdap/Schema.html:805(span) +#: doc/reference/en/ActiveLdap/Schema.html:873(span) +#: doc/reference/en/ActiveLdap/Schema.html:876(span) #: doc/reference/en/ActiveLdap/Schema.html:877(span) -#: doc/reference/en/ActiveLdap/Schema.html:884(span) -#: doc/reference/en/ActiveLdap/Schema.html:885(span) +#: doc/reference/en/ActiveLdap/Schema.html:881(span) +#: doc/reference/en/ActiveLdap/Schema.html:883(span) #: doc/reference/en/ActiveLdap/Schema.html:886(span) -#: doc/reference/en/ActiveLdap/Schema.html:944(span) -#: doc/reference/en/ActiveLdap/Schema.html:945(span) -#: doc/reference/en/ActiveLdap/Schema.html:974(span) -#: doc/reference/en/ActiveLdap/Schema.html:975(span) -#: doc/reference/en/ActiveLdap/Schema.html:1000(span) -#: doc/reference/en/ActiveLdap/Schema.html:1002(span) -#: doc/reference/en/ActiveLdap/Schema.html:1003(span) -#: doc/reference/en/ActiveLdap/Schema.html:1034(span) -#: doc/reference/en/ActiveLdap/Schema.html:1035(span) -#: doc/reference/en/ActiveLdap/Schema.html:1036(span) -#: doc/reference/en/ActiveLdap/Schema.html:1067(span) -#: doc/reference/en/ActiveLdap/Schema.html:1068(span) -#: doc/reference/en/ActiveLdap/Schema.html:1069(span) -#: doc/reference/en/ActiveLdap/Schema.html:1100(span) -#: doc/reference/en/ActiveLdap/Schema.html:1101(span) -#: doc/reference/en/ActiveLdap/Schema.html:1102(span) -#: doc/reference/en/ActiveLdap/Schema.html:1136(span) -#: doc/reference/en/ActiveLdap/Schema.html:1137(span) -#: doc/reference/en/ActiveLdap/Schema.html:1138(span) -#: doc/reference/en/ActiveLdap/Schema.html:1168(span) -#: doc/reference/en/ActiveLdap/Schema.html:1169(span) -#: doc/reference/en/ActiveLdap/Schema.html:1199(span) -#: doc/reference/en/ActiveLdap/Schema.html:1200(span) -#: doc/reference/en/ActiveLdap/Schema.html:1201(span) -#: doc/reference/en/ActiveLdap/Schema.html:1232(span) -#: doc/reference/en/ActiveLdap/Schema.html:1233(span) -#: doc/reference/en/ActiveLdap/Schema.html:1234(span) -#: doc/reference/en/ActiveLdap/Schema.html:1268(span) -#: doc/reference/en/ActiveLdap/Schema.html:1269(span) -#: doc/reference/en/ActiveLdap/Schema.html:1270(span) -#: doc/reference/en/ActiveLdap/Schema.html:1300(span) -#: doc/reference/en/ActiveLdap/Schema.html:1301(span) -#: doc/reference/en/ActiveLdap/DeleteError.html:42(span) -#: doc/reference/en/ActiveLdap/Validations.html:42(span) -#: doc/reference/en/ActiveLdap/Validations.html:241(span) -#: doc/reference/en/ActiveLdap/Validations.html:270(span) -#: doc/reference/en/ActiveLdap/Validations.html:271(span) -#: doc/reference/en/ActiveLdap/Validations.html:323(span) -#: doc/reference/en/ActiveLdap/Validations.html:324(span) -#: doc/reference/en/ActiveLdap/Validations.html:325(span) -#: doc/reference/en/ActiveLdap/Validations.html:383(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:42(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:376(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:383(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:385(span) +#: doc/reference/en/ActiveLdap/Schema.html:894(span) +#: doc/reference/en/ActiveLdap/Schema.html:901(span) +#: doc/reference/en/ActiveLdap/Schema.html:902(span) +#: doc/reference/en/ActiveLdap/Schema.html:903(span) +#: doc/reference/en/ActiveLdap/Schema.html:962(span) +#: doc/reference/en/ActiveLdap/Schema.html:963(span) +#: doc/reference/en/ActiveLdap/Schema.html:991(span) +#: doc/reference/en/ActiveLdap/Schema.html:992(span) +#: doc/reference/en/ActiveLdap/Schema.html:1016(span) +#: doc/reference/en/ActiveLdap/Schema.html:1018(span) +#: doc/reference/en/ActiveLdap/Schema.html:1019(span) +#: doc/reference/en/ActiveLdap/Schema.html:1052(span) +#: doc/reference/en/ActiveLdap/Schema.html:1053(span) +#: doc/reference/en/ActiveLdap/Schema.html:1054(span) +#: doc/reference/en/ActiveLdap/Schema.html:1087(span) +#: doc/reference/en/ActiveLdap/Schema.html:1088(span) +#: doc/reference/en/ActiveLdap/Schema.html:1089(span) +#: doc/reference/en/ActiveLdap/Schema.html:1121(span) +#: doc/reference/en/ActiveLdap/Schema.html:1122(span) +#: doc/reference/en/ActiveLdap/Schema.html:1123(span) +#: doc/reference/en/ActiveLdap/Schema.html:1158(span) +#: doc/reference/en/ActiveLdap/Schema.html:1159(span) +#: doc/reference/en/ActiveLdap/Schema.html:1160(span) +#: doc/reference/en/ActiveLdap/Schema.html:1191(span) +#: doc/reference/en/ActiveLdap/Schema.html:1192(span) +#: doc/reference/en/ActiveLdap/Schema.html:1223(span) +#: doc/reference/en/ActiveLdap/Schema.html:1224(span) +#: doc/reference/en/ActiveLdap/Schema.html:1225(span) +#: doc/reference/en/ActiveLdap/Schema.html:1257(span) +#: doc/reference/en/ActiveLdap/Schema.html:1258(span) +#: doc/reference/en/ActiveLdap/Schema.html:1259(span) +#: doc/reference/en/ActiveLdap/Schema.html:1294(span) +#: doc/reference/en/ActiveLdap/Schema.html:1295(span) +#: doc/reference/en/ActiveLdap/Schema.html:1296(span) +#: doc/reference/en/ActiveLdap/Schema.html:1327(span) +#: doc/reference/en/ActiveLdap/Schema.html:1328(span) +#: doc/reference/en/ActiveLdap/DeleteError.html:40(span) +#: doc/reference/en/ActiveLdap/Validations.html:40(span) +#: doc/reference/en/ActiveLdap/Validations.html:253(span) +#: doc/reference/en/ActiveLdap/Validations.html:283(span) +#: doc/reference/en/ActiveLdap/Validations.html:284(span) +#: doc/reference/en/ActiveLdap/Validations.html:337(span) +#: doc/reference/en/ActiveLdap/Validations.html:338(span) +#: doc/reference/en/ActiveLdap/Validations.html:339(span) +#: doc/reference/en/ActiveLdap/Validations.html:399(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:40(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:381(span) #: doc/reference/en/ActiveLdap/LdifInvalid.html:388(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:392(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:42(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:568(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:570(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:663(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:664(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:665(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:667(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:696(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:697(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:731(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:732(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:769(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:771(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:772(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:776(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:779(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:42(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:154(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:156(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:157(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:158(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:159(span) -#: doc/reference/en/ActiveLdap/Attributes.html:42(span) -#: doc/reference/en/ActiveLdap/Attributes.html:157(span) -#: doc/reference/en/ActiveLdap/Attributes.html:159(span) -#: doc/reference/en/ActiveLdap/Attributes.html:160(span) -#: doc/reference/en/ActiveLdap/Attributes.html:161(span) -#: doc/reference/en/ActiveLdap/TimeoutError.html:42(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:42(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:209(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:263(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:264(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:266(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:267(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:268(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:270(span) -#: doc/reference/en/ActiveLdap/Base.html:42(span) -#: doc/reference/en/ActiveLdap/Base.html:1843(span) -#: doc/reference/en/ActiveLdap/Base.html:1854(span) -#: doc/reference/en/ActiveLdap/Base.html:1858(span) -#: doc/reference/en/ActiveLdap/Base.html:1861(span) -#: doc/reference/en/ActiveLdap/Base.html:1864(span) -#: doc/reference/en/ActiveLdap/Base.html:1954(span) -#: doc/reference/en/ActiveLdap/Base.html:1959(span) -#: doc/reference/en/ActiveLdap/Base.html:1962(span) -#: doc/reference/en/ActiveLdap/Base.html:1964(span) -#: doc/reference/en/ActiveLdap/Base.html:1970(span) -#: doc/reference/en/ActiveLdap/Base.html:1973(span) -#: doc/reference/en/ActiveLdap/Base.html:1976(span) -#: doc/reference/en/ActiveLdap/Base.html:1978(span) -#: doc/reference/en/ActiveLdap/Base.html:1980(span) -#: doc/reference/en/ActiveLdap/Base.html:2091(span) -#: doc/reference/en/ActiveLdap/Base.html:2171(span) -#: doc/reference/en/ActiveLdap/Base.html:2240(span) -#: doc/reference/en/ActiveLdap/Base.html:2242(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:390(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:393(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:397(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:40(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:588(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:590(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:683(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:684(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:685(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:687(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:717(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:718(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:753(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:754(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:792(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:794(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:795(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:799(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:802(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:40(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:162(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:164(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:165(span) +#: doc/reference/en/ActiveLdap/Attributes.html:40(span) +#: doc/reference/en/ActiveLdap/Attributes.html:169(span) +#: doc/reference/en/ActiveLdap/Attributes.html:171(span) +#: doc/reference/en/ActiveLdap/Attributes.html:172(span) +#: doc/reference/en/ActiveLdap/Attributes.html:173(span) +#: doc/reference/en/ActiveLdap/TimeoutError.html:40(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:40(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:219(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:275(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:276(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:278(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:279(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:281(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:283(span) +#: doc/reference/en/ActiveLdap/Base.html:40(span) +#: doc/reference/en/ActiveLdap/Base.html:1791(span) +#: doc/reference/en/ActiveLdap/Base.html:1802(span) +#: doc/reference/en/ActiveLdap/Base.html:1806(span) +#: doc/reference/en/ActiveLdap/Base.html:1809(span) +#: doc/reference/en/ActiveLdap/Base.html:1812(span) +#: doc/reference/en/ActiveLdap/Base.html:1923(span) +#: doc/reference/en/ActiveLdap/Base.html:2002(span) +#: doc/reference/en/ActiveLdap/Base.html:2093(span) +#: doc/reference/en/ActiveLdap/Base.html:2095(span) +#: doc/reference/en/ActiveLdap/Base.html:2152(span) +#: doc/reference/en/ActiveLdap/Base.html:2156(span) +#: doc/reference/en/ActiveLdap/Base.html:2157(span) +#: doc/reference/en/ActiveLdap/Base.html:2159(span) +#: doc/reference/en/ActiveLdap/Base.html:2195(span) +#: doc/reference/en/ActiveLdap/Base.html:2196(span) +#: doc/reference/en/ActiveLdap/Base.html:2197(span) +#: doc/reference/en/ActiveLdap/Base.html:2199(span) #: doc/reference/en/ActiveLdap/Base.html:2278(span) -#: doc/reference/en/ActiveLdap/Base.html:2282(span) +#: doc/reference/en/ActiveLdap/Base.html:2280(span) #: doc/reference/en/ActiveLdap/Base.html:2283(span) -#: doc/reference/en/ActiveLdap/Base.html:2285(span) -#: doc/reference/en/ActiveLdap/Base.html:2320(span) -#: doc/reference/en/ActiveLdap/Base.html:2321(span) +#: doc/reference/en/ActiveLdap/Base.html:2284(span) #: doc/reference/en/ActiveLdap/Base.html:2322(span) -#: doc/reference/en/ActiveLdap/Base.html:2324(span) -#: doc/reference/en/ActiveLdap/Base.html:2402(span) -#: doc/reference/en/ActiveLdap/Base.html:2404(span) -#: doc/reference/en/ActiveLdap/Base.html:2407(span) -#: doc/reference/en/ActiveLdap/Base.html:2408(span) -#: doc/reference/en/ActiveLdap/Base.html:2445(span) -#: doc/reference/en/ActiveLdap/Base.html:2486(span) -#: doc/reference/en/ActiveLdap/Base.html:2552(span) -#: doc/reference/en/ActiveLdap/Base.html:2553(span) -#: doc/reference/en/ActiveLdap/Base.html:2558(span) -#: doc/reference/en/ActiveLdap/Base.html:2627(span) -#: doc/reference/en/ActiveLdap/Base.html:2629(span) -#: doc/reference/en/ActiveLdap/Base.html:2632(span) -#: doc/reference/en/ActiveLdap/Base.html:2721(span) -#: doc/reference/en/ActiveLdap/Base.html:2751(span) -#: doc/reference/en/ActiveLdap/Base.html:2783(span) -#: doc/reference/en/ActiveLdap/Base.html:2784(span) -#: doc/reference/en/ActiveLdap/Base.html:2891(span) -#: doc/reference/en/ActiveLdap/Base.html:2897(span) -#: doc/reference/en/ActiveLdap/Base.html:2903(span) -#: doc/reference/en/ActiveLdap/Base.html:2924(span) -#: doc/reference/en/ActiveLdap/Base.html:2957(span) -#: doc/reference/en/ActiveLdap/Base.html:3013(span) -#: doc/reference/en/ActiveLdap/Base.html:3014(span) -#: doc/reference/en/ActiveLdap/Base.html:3015(span) -#: doc/reference/en/ActiveLdap/Base.html:3017(span) -#: doc/reference/en/ActiveLdap/Base.html:3067(span) -#: doc/reference/en/ActiveLdap/Base.html:3068(span) -#: doc/reference/en/ActiveLdap/Base.html:3069(span) -#: doc/reference/en/ActiveLdap/Base.html:3103(span) -#: doc/reference/en/ActiveLdap/Base.html:3105(span) -#: doc/reference/en/ActiveLdap/Base.html:3107(span) -#: doc/reference/en/ActiveLdap/Base.html:3136(span) -#: doc/reference/en/ActiveLdap/Base.html:3137(span) -#: doc/reference/en/ActiveLdap/Base.html:3191(span) -#: doc/reference/en/ActiveLdap/Base.html:3192(span) -#: doc/reference/en/ActiveLdap/Base.html:3243(span) -#: doc/reference/en/ActiveLdap/Base.html:3244(span) -#: doc/reference/en/ActiveLdap/Base.html:3245(span) -#: doc/reference/en/ActiveLdap/Base.html:3287(span) -#: doc/reference/en/ActiveLdap/Base.html:3347(span) -#: doc/reference/en/ActiveLdap/Base.html:3350(span) -#: doc/reference/en/ActiveLdap/Base.html:3353(span) -#: doc/reference/en/ActiveLdap/Base.html:3355(span) -#: doc/reference/en/ActiveLdap/Base.html:3358(span) -#: doc/reference/en/ActiveLdap/Base.html:3360(span) -#: doc/reference/en/ActiveLdap/Base.html:3421(span) -#: doc/reference/en/ActiveLdap/Base.html:3474(span) -#: doc/reference/en/ActiveLdap/Base.html:3475(span) -#: doc/reference/en/ActiveLdap/Base.html:3476(span) -#: doc/reference/en/ActiveLdap/Base.html:3480(span) -#: doc/reference/en/ActiveLdap/Base.html:3482(span) -#: doc/reference/en/ActiveLdap/Base.html:3617(span) -#: doc/reference/en/ActiveLdap/Base.html:3618(span) -#: doc/reference/en/ActiveLdap/Base.html:3646(span) -#: doc/reference/en/ActiveLdap/Base.html:3647(span) -#: doc/reference/en/ActiveLdap/Base.html:3723(span) -#: doc/reference/en/ActiveLdap/Base.html:3724(span) -#: doc/reference/en/ActiveLdap/Base.html:3757(span) -#: doc/reference/en/ActiveLdap/Base.html:3783(span) -#: doc/reference/en/ActiveLdap/Base.html:3814(span) -#: doc/reference/en/ActiveLdap/Base.html:3868(span) -#: doc/reference/en/ActiveLdap/Base.html:3869(span) -#: doc/reference/en/ActiveLdap/Base.html:3930(span) -#: doc/reference/en/ActiveLdap/Base.html:3952(span) -#: doc/reference/en/ActiveLdap/Base.html:3953(span) -#: doc/reference/en/ActiveLdap/Base.html:4051(span) -#: doc/reference/en/ActiveLdap/Base.html:4052(span) -#: doc/reference/en/ActiveLdap/Base.html:4053(span) -#: doc/reference/en/ActiveLdap/Base.html:4082(span) -#: doc/reference/en/ActiveLdap/Base.html:4126(span) -#: doc/reference/en/ActiveLdap/Base.html:4127(span) -#: doc/reference/en/ActiveLdap/Base.html:4128(span) -#: doc/reference/en/ActiveLdap/Base.html:4130(span) -#: doc/reference/en/ActiveLdap/Base.html:4131(span) -#: doc/reference/en/ActiveLdap/Base.html:4208(span) -#: doc/reference/en/ActiveLdap/Base.html:4285(span) -#: doc/reference/en/ActiveLdap/Base.html:4289(span) -#: doc/reference/en/ActiveLdap/Base.html:4292(span) -#: doc/reference/en/ActiveLdap/Base.html:4293(span) -#: doc/reference/en/ActiveLdap/Base.html:4352(span) -#: doc/reference/en/ActiveLdap/Base.html:4356(span) -#: doc/reference/en/ActiveLdap/Base.html:4358(span) -#: doc/reference/en/ActiveLdap/Base.html:4470(span) -#: doc/reference/en/ActiveLdap/Base.html:4471(span) -#: doc/reference/en/ActiveLdap/Base.html:4572(span) -#: doc/reference/en/ActiveLdap/Base.html:4601(span) -#: doc/reference/en/ActiveLdap/Base.html:4700(span) -#: doc/reference/en/ActiveLdap/Base.html:4702(span) -#: doc/reference/en/ActiveLdap/Base.html:4710(span) -#: doc/reference/en/ActiveLdap/Base.html:4714(span) -#: doc/reference/en/ActiveLdap/Base.html:4755(span) -#: doc/reference/en/ActiveLdap/Base.html:4756(span) -#: doc/reference/en/ActiveLdap/Base.html:4798(span) -#: doc/reference/en/ActiveLdap/Base.html:4829(span) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:42(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:42(span) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:40(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:40(span) #: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:274(span) #: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:278(span) #: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:280(span) #: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:282(span) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:42(span) -#: doc/reference/en/ActiveLdap/Association.html:42(span) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:42(span) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:40(span) +#: doc/reference/en/ActiveLdap/Association.html:40(span) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:40(span) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:239(span) #: doc/reference/en/ActiveLdap/AdapterNotFound.html:241(span) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:243(span) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:42(span) -#: doc/reference/en/ActiveLdap/NotImplemented.html:42(span) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:40(span) +#: doc/reference/en/ActiveLdap/NotImplemented.html:40(span) +#: doc/reference/en/ActiveLdap/NotImplemented.html:239(span) #: doc/reference/en/ActiveLdap/NotImplemented.html:241(span) -#: doc/reference/en/ActiveLdap/NotImplemented.html:243(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:371(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:372(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:261(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:262(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:338(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:340(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:472(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:473(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:172(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:176(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:178(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:213(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:216(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:320(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:453(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:454(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:456(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:457(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:486(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:227(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:228(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:229(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:288(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:292(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:293(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:295(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:311(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:355(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:358(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:361(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:404(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:406(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:408(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:443(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:473(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:475(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:506(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:508(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:543(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:633(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:671(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:676(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:705(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:707(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:738(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:740(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:778(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:780(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:784(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:325(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:327(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:329(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:414(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:415(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:547(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:548(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:196(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:197(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:196(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:197(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:196(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:197(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:418(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:642(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:643(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:646(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:647(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:778(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:859(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:860(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:285(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:357(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:358(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:247(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:248(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:185(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:189(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:191(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:227(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:230(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:331(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:463(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:464(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:466(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:467(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:497(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:240(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:241(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:242(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:302(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:306(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:307(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:309(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:325(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:370(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:373(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:376(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:422(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:424(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:426(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:462(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:493(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:495(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:527(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:529(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:565(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:657(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:696(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:701(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:731(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:733(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:765(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:767(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:806(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:808(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:812(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:322(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:324(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:326(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:412(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:413(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:544(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:545(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:40(span) #: doc/reference/en/ActiveLdap/Ldif/Parser.html:287(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:391(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:392(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:289(span) #: doc/reference/en/ActiveLdap/Ldif/Parser.html:393(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:394(span) #: doc/reference/en/ActiveLdap/Ldif/Parser.html:395(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:398(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:399(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:405(span) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:237(span) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:238(span) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:237(span) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:238(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:261(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:262(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:42(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:413(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:421(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:424(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:426(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:427(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:431(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:433(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:686(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:690(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:734(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:744(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:798(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:800(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:802(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:805(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:169(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:170(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:171(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:172(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:205(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:207(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:208(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:209(span) -#: doc/reference/en/ActiveLdap/SaveError.html:42(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:330(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:388(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:465(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:467(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:469(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:476(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:480(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:531(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:533(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:537(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:540(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:542(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:596(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:598(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:602(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:604(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:606(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:607(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:614(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:615(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:643(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:674(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:676(span) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:42(span) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:42(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:42(span) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:42(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:42(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:269(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:270(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:304(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:305(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:334(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:363(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:391(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:392(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:429(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:431(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:433(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:42(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:343(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:374(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:375(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:408(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:410(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:441(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:442(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:470(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:471(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:499(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:528(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:562(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:564(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:566(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:601(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:603(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:605(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:678(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:686(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:687(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:690(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:691(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:694(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:696(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:698(span) -#: doc/reference/en/ActiveLdap/Command.html:42(span) -#: doc/reference/en/ActiveLdap/Command.html:212(span) -#: doc/reference/en/ActiveLdap/Command.html:216(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:397(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:400(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:401(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:407(span) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:229(span) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:230(span) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:229(span) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:230(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:247(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:248(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:40(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:428(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:436(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:439(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:441(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:442(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:446(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:448(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:699(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:703(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:748(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:758(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:811(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:813(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:815(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:818(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:182(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:183(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:184(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:185(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:219(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:221(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:222(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:223(span) +#: doc/reference/en/ActiveLdap/SaveError.html:40(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:348(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:408(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:487(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:489(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:491(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:498(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:502(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:554(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:556(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:560(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:563(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:565(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:620(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:622(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:626(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:628(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:630(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:631(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:638(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:639(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:668(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:700(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:702(span) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:183(span) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:40(span) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:40(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:40(span) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:40(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:40(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:286(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:287(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:322(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:323(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:353(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:383(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:412(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:413(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:451(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:453(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:455(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:40(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:364(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:365(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:366(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:396(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:397(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:431(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:433(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:465(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:466(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:495(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:496(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:525(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:526(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:555(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:556(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:590(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:592(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:594(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:595(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:596(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:630(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:632(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:634(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:635(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:636(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:708(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:716(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:717(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:720(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:721(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:724(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:726(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:728(span) +#: doc/reference/en/ActiveLdap/Command.html:40(span) #: doc/reference/en/ActiveLdap/Command.html:219(span) -#: doc/reference/en/ActiveLdap/Command.html:221(span) -#: doc/reference/en/ActiveLdap/Command.html:222(span) -#: doc/reference/en/ActiveLdap/Command.html:224(span) -#: doc/reference/en/ActiveLdap/Command.html:225(span) +#: doc/reference/en/ActiveLdap/Command.html:223(span) #: doc/reference/en/ActiveLdap/Command.html:226(span) +#: doc/reference/en/ActiveLdap/Command.html:228(span) #: doc/reference/en/ActiveLdap/Command.html:229(span) -#: doc/reference/en/ActiveLdap/Command.html:234(span) -#: doc/reference/en/ActiveLdap/Command.html:235(span) -#: doc/reference/en/ActiveLdap/Command.html:239(span) -#: doc/reference/en/ActiveLdap/Command.html:273(span) -#: doc/reference/en/ActiveLdap/Command.html:274(span) -#: doc/reference/en/ActiveLdap/Command.html:275(span) -#: doc/reference/en/ActiveLdap/Command.html:278(span) -#: doc/reference/en/ActiveLdap/ConnectionError.html:42(span) -#: doc/reference/en/ActiveLdap/Populate.html:42(span) -#: doc/reference/en/ActiveLdap/Populate.html:200(span) -#: doc/reference/en/ActiveLdap/Populate.html:202(span) -#: doc/reference/en/ActiveLdap/Populate.html:204(span) -#: doc/reference/en/ActiveLdap/Populate.html:209(span) -#: doc/reference/en/ActiveLdap/Populate.html:210(span) -#: doc/reference/en/ActiveLdap/Populate.html:213(span) -#: doc/reference/en/ActiveLdap/Populate.html:257(span) -#: doc/reference/en/ActiveLdap/Populate.html:259(span) -#: doc/reference/en/ActiveLdap/Populate.html:260(span) -#: doc/reference/en/ActiveLdap/Populate.html:262(span) -#: doc/reference/en/ActiveLdap/Populate.html:263(span) -#: doc/reference/en/ActiveLdap/Populate.html:268(span) -#: doc/reference/en/ActiveLdap/Populate.html:269(span) -#: doc/reference/en/ActiveLdap/Populate.html:308(span) -#: doc/reference/en/ActiveLdap/Populate.html:310(span) -#: doc/reference/en/ActiveLdap/Populate.html:311(span) -#: doc/reference/en/ActiveLdap/Populate.html:313(span) -#: doc/reference/en/ActiveLdap/Populate.html:314(span) -#: doc/reference/en/ActiveLdap/Populate.html:317(span) -#: doc/reference/en/ActiveLdap/Populate.html:318(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:42(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:288(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:290(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:291(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:292(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:410(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:412(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:413(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:414(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:418(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:419(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:420(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:422(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:424(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:429(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:434(span) -#: doc/reference/en/ActiveLdap/Error.html:42(span) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:42(span) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:42(span) +#: doc/reference/en/ActiveLdap/Command.html:231(span) +#: doc/reference/en/ActiveLdap/Command.html:232(span) +#: doc/reference/en/ActiveLdap/Command.html:233(span) +#: doc/reference/en/ActiveLdap/Command.html:236(span) +#: doc/reference/en/ActiveLdap/Command.html:241(span) +#: doc/reference/en/ActiveLdap/Command.html:242(span) +#: doc/reference/en/ActiveLdap/Command.html:246(span) +#: doc/reference/en/ActiveLdap/Command.html:281(span) +#: doc/reference/en/ActiveLdap/Command.html:282(span) +#: doc/reference/en/ActiveLdap/Command.html:283(span) +#: doc/reference/en/ActiveLdap/Command.html:286(span) +#: doc/reference/en/ActiveLdap/ConnectionError.html:40(span) +#: doc/reference/en/ActiveLdap/Populate.html:40(span) +#: doc/reference/en/ActiveLdap/Populate.html:214(span) +#: doc/reference/en/ActiveLdap/Populate.html:216(span) +#: doc/reference/en/ActiveLdap/Populate.html:218(span) +#: doc/reference/en/ActiveLdap/Populate.html:223(span) +#: doc/reference/en/ActiveLdap/Populate.html:224(span) +#: doc/reference/en/ActiveLdap/Populate.html:227(span) +#: doc/reference/en/ActiveLdap/Populate.html:272(span) +#: doc/reference/en/ActiveLdap/Populate.html:274(span) +#: doc/reference/en/ActiveLdap/Populate.html:275(span) +#: doc/reference/en/ActiveLdap/Populate.html:277(span) +#: doc/reference/en/ActiveLdap/Populate.html:278(span) +#: doc/reference/en/ActiveLdap/Populate.html:283(span) +#: doc/reference/en/ActiveLdap/Populate.html:284(span) +#: doc/reference/en/ActiveLdap/Populate.html:324(span) +#: doc/reference/en/ActiveLdap/Populate.html:326(span) +#: doc/reference/en/ActiveLdap/Populate.html:327(span) +#: doc/reference/en/ActiveLdap/Populate.html:329(span) +#: doc/reference/en/ActiveLdap/Populate.html:330(span) +#: doc/reference/en/ActiveLdap/Populate.html:333(span) +#: doc/reference/en/ActiveLdap/Populate.html:334(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:40(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:261(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:263(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:264(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:265(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:383(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:385(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:386(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:387(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:391(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:392(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:393(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:395(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:397(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:402(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:407(span) +#: doc/reference/en/ActiveLdap/Error.html:40(span) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:40(span) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:40(span) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:240(span) #: doc/reference/en/ActiveLdap/EntryInvalid.html:242(span) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:244(span) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:245(span) -#: doc/reference/en/ActiveLdap/Association/Collection.html:42(span) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:42(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:42(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:389(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:393(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:430(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:432(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:467(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:739(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:740(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:741(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:799(span) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:42(span) -#: doc/reference/en/ActiveLdap/Association/Children.html:42(span) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:42(span) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:42(span) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:42(span) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:226(span) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:230(span) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:231(span) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:42(span) -#: doc/reference/en/ActiveLdap/Helper.html:42(span) -#: doc/reference/en/ActiveLdap/Helper.html:285(span) -#: doc/reference/en/ActiveLdap/Helper.html:286(span) -#: doc/reference/en/ActiveLdap/Helper.html:318(span) -#: doc/reference/en/ActiveLdap/Helper.html:319(span) -#: doc/reference/en/ActiveLdap/Helper.html:402(span) -#: doc/reference/en/ActiveLdap/Helper.html:412(span) -#: doc/reference/en/ActiveLdap/Helper.html:413(span) -#: doc/reference/en/ActiveLdap/Helper.html:417(span) -#: doc/reference/en/ActiveLdap/Helper.html:421(span) -#: doc/reference/en/ActiveLdap/Helper.html:435(span) -#: doc/reference/en/ActiveLdap/Helper.html:439(span) -#: doc/reference/en/ActiveLdap/Helper.html:449(span) -#: doc/reference/en/ActiveLdap/Helper.html:450(span) -#: doc/reference/en/ActiveLdap/Helper.html:452(span) -#: doc/reference/en/ActiveLdap/Helper.html:457(span) -#: doc/reference/en/ActiveLdap/Helper.html:458(span) -#: doc/reference/en/ActiveLdap/Helper.html:490(span) -#: doc/reference/en/ActiveLdap/Helper.html:491(span) -#: doc/reference/en/ActiveLdap/Helper.html:523(span) -#: doc/reference/en/ActiveLdap/Helper.html:524(span) -#: doc/reference/en/ActiveLdap/Helper.html:556(span) -#: doc/reference/en/ActiveLdap/Helper.html:557(span) -#: doc/reference/en/ActiveLdap/Helper.html:589(span) -#: doc/reference/en/ActiveLdap/Helper.html:590(span) -#: doc/reference/en/ActiveLdap/Railties.html:42(span) -#: doc/reference/en/ActiveLdap/HumanReadable.html:42(span) -#: doc/reference/en/ActiveLdap/HumanReadable.html:158(span) -#: doc/reference/en/ActiveLdap/HumanReadable.html:160(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:42(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:242(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:282(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:283(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:323(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:324(span) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:42(span) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:243(span) +#: doc/reference/en/ActiveLdap/Association/Collection.html:40(span) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:40(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:40(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:409(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:413(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:451(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:453(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:489(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:768(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:769(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:770(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:830(span) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:40(span) +#: doc/reference/en/ActiveLdap/Association/Children.html:40(span) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:40(span) +#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:40(span) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:40(span) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:233(span) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:237(span) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:238(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Query.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Write.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/BeforeTypeCast.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Read.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:231(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:281(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:331(span) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:40(span) +#: doc/reference/en/ActiveLdap/Helper.html:40(span) +#: doc/reference/en/ActiveLdap/Helper.html:303(span) +#: doc/reference/en/ActiveLdap/Helper.html:304(span) +#: doc/reference/en/ActiveLdap/Helper.html:337(span) +#: doc/reference/en/ActiveLdap/Helper.html:338(span) +#: doc/reference/en/ActiveLdap/Helper.html:422(span) +#: doc/reference/en/ActiveLdap/Helper.html:432(span) +#: doc/reference/en/ActiveLdap/Helper.html:433(span) +#: doc/reference/en/ActiveLdap/Helper.html:437(span) +#: doc/reference/en/ActiveLdap/Helper.html:441(span) +#: doc/reference/en/ActiveLdap/Helper.html:455(span) +#: doc/reference/en/ActiveLdap/Helper.html:459(span) +#: doc/reference/en/ActiveLdap/Helper.html:469(span) +#: doc/reference/en/ActiveLdap/Helper.html:470(span) +#: doc/reference/en/ActiveLdap/Helper.html:472(span) +#: doc/reference/en/ActiveLdap/Helper.html:477(span) +#: doc/reference/en/ActiveLdap/Helper.html:478(span) +#: doc/reference/en/ActiveLdap/Helper.html:511(span) +#: doc/reference/en/ActiveLdap/Helper.html:512(span) +#: doc/reference/en/ActiveLdap/Helper.html:545(span) +#: doc/reference/en/ActiveLdap/Helper.html:546(span) +#: doc/reference/en/ActiveLdap/Helper.html:579(span) +#: doc/reference/en/ActiveLdap/Helper.html:580(span) +#: doc/reference/en/ActiveLdap/Helper.html:613(span) +#: doc/reference/en/ActiveLdap/Helper.html:614(span) +#: doc/reference/en/ActiveLdap/Railties.html:40(span) +#: doc/reference/en/ActiveLdap/HumanReadable.html:40(span) +#: doc/reference/en/ActiveLdap/HumanReadable.html:166(span) +#: doc/reference/en/ActiveLdap/HumanReadable.html:168(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:40(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:249(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:289(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:290(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:330(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:331(span) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:40(span) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:239(span) #: doc/reference/en/ActiveLdap/UnknownAttribute.html:241(span) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:243(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:231(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:232(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:259(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:295(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:296(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:301(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:304(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:307(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:309(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:351(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:352(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:393(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:394(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:231(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:232(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:234(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:236(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:279(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:281(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:284(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:287(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:289(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:295(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:329(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:332(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:334(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:335(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:367(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:368(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:370(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:413(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:415(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:418(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:421(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:424(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:143(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:144(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:144(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:145(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:146(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:147(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:151(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:152(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:158(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:159(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:163(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:164(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:143(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:144(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:223(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:225(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:227(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:228(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:262(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:264(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:265(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:294(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:295(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:323(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:324(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:202(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:203(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:276(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:277(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:241(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:242(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:267(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:302(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:303(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:308(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:311(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:314(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:316(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:358(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:359(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:400(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:401(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:214(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:216(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:219(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:222(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:224(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:230(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:265(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:268(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:270(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:271(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:315(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:317(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:320(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:323(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:326(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:155(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:156(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:156(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:157(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:158(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:159(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:163(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:164(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:170(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:171(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:175(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:176(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:155(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:156(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:238(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:240(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:242(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:243(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:278(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:280(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:281(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:311(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:312(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:341(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:342(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:215(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:216(span) #: doc/reference/en/ActiveLdap/Operations/Common.html:290(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:295(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:296(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:373(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:374(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:381(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:386(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:391(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:393(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:291(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:304(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:309(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:310(span) #: doc/reference/en/ActiveLdap/Operations/Common.html:394(span) #: doc/reference/en/ActiveLdap/Operations/Common.html:395(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:397(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:412(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:403(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:408(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:413(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:415(span) #: doc/reference/en/ActiveLdap/Operations/Common.html:416(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:418(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:422(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:231(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:233(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:236(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:269(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:272(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:275(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:305(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:307(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:347(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:348(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:353(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:356(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:417(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:419(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:434(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:435(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:438(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:440(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:442(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:449(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:225(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:227(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:230(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:264(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:267(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:270(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:301(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:303(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:354(span) #: doc/reference/en/ActiveLdap/Operations/Update.html:357(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:408(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:411(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:412(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:414(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:417(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:422(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:424(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:429(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:235(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:329(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:358(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:360(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:363(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:368(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:370(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:375(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:166(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:167(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:172(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:175(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:176(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:181(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:182(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:184(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:186(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:218(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:219(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:221(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:228(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:327(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:328(span) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:330(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:332(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:336(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:334(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:347(span) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:349(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:351(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:359(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:362(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:363(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:456(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:457(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:357(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:368(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:369(span) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:459(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:460(span) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:462(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:479(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:480(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:465(span) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:482(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:488(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:489(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:519(span) -#: doc/reference/en/ActiveLdap/Associations.html:42(span) -#: doc/reference/en/ActiveLdap/Associations.html:202(span) -#: doc/reference/en/ActiveLdap/Associations.html:204(span) -#: doc/reference/en/ActiveLdap/Associations.html:205(span) -#: doc/reference/en/ActiveLdap/Associations.html:245(span) -#: doc/reference/en/ActiveLdap/Associations.html:246(span) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:42(span) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:42(span) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:150(span) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:153(span) -#: doc/reference/en/ActiveLdap/Configuration.html:42(span) -#: doc/reference/en/ActiveLdap/Configuration.html:183(span) -#: doc/reference/en/ActiveLdap/Configuration.html:184(span) -#: doc/reference/en/ActiveLdap/Operations.html:42(span) -#: doc/reference/en/ActiveLdap/Operations.html:166(span) -#: doc/reference/en/ActiveLdap/Operations.html:169(span) -#: doc/reference/en/ActiveLdap/Operations.html:170(span) -#: doc/reference/en/ActiveLdap/Operations.html:171(span) -#: doc/reference/en/ActiveLdap/Operations.html:172(span) -#: doc/reference/en/ActiveLdap/Operations.html:173(span) -#: doc/reference/en/ActiveLdap/Operations.html:175(span) -#: doc/reference/en/ActiveLdap/Operations.html:176(span) -#: doc/reference/en/ActiveLdap/Operations.html:177(span) -#: doc/reference/en/ActiveLdap/Operations.html:178(span) -#: doc/reference/en/ActiveLdap/Operations.html:179(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:177(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:178(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:198(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:199(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:198(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:199(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:375(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:378(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:410(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:412(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:448(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:450(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:453(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:485(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:487(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:519(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:522(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:561(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:571(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:606(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:607(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:609(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:612(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:643(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:645(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:724(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:732(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:733(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:735(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:822(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:824(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:853(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:855(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:884(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:886(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:937(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:938(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:940(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:941(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:944(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:946(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:948(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:950(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:952(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:954(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1011(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1014(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1015(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1016(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1021(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1027(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1028(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1029(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1030(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1031(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1032(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1035(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1068(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1157(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1160(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1161(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1165(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1166(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1167(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1261(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1262(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1265(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1267(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1269(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1271(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1276(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1307(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1308(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1339(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1341(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1372(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1376(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1417(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1418(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1420(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1422(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1424(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1430(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:483(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:485(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:491(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:492(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:523(span) +#: doc/reference/en/ActiveLdap/Associations.html:40(span) +#: doc/reference/en/ActiveLdap/Associations.html:213(span) +#: doc/reference/en/ActiveLdap/Associations.html:215(span) +#: doc/reference/en/ActiveLdap/Associations.html:216(span) +#: doc/reference/en/ActiveLdap/Associations.html:257(span) +#: doc/reference/en/ActiveLdap/Associations.html:258(span) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:40(span) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:40(span) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:162(span) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:165(span) +#: doc/reference/en/ActiveLdap/Configuration.html:40(span) +#: doc/reference/en/ActiveLdap/Configuration.html:192(span) +#: doc/reference/en/ActiveLdap/Configuration.html:193(span) +#: doc/reference/en/ActiveLdap/Operations.html:40(span) +#: doc/reference/en/ActiveLdap/Operations.html:180(span) +#: doc/reference/en/ActiveLdap/Operations.html:183(span) +#: doc/reference/en/ActiveLdap/Operations.html:184(span) +#: doc/reference/en/ActiveLdap/Operations.html:185(span) +#: doc/reference/en/ActiveLdap/Operations.html:186(span) +#: doc/reference/en/ActiveLdap/Operations.html:187(span) +#: doc/reference/en/ActiveLdap/Operations.html:188(span) +#: doc/reference/en/ActiveLdap/Operations.html:189(span) +#: doc/reference/en/ActiveLdap/Operations.html:191(span) +#: doc/reference/en/ActiveLdap/Operations.html:192(span) +#: doc/reference/en/ActiveLdap/Operations.html:193(span) +#: doc/reference/en/ActiveLdap/Operations.html:194(span) +#: doc/reference/en/ActiveLdap/Operations.html:195(span) +#: doc/reference/en/ActiveLdap/GetText.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:183(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:184(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:205(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:206(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:205(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:206(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:384(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:387(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:420(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:422(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:459(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:461(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:464(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:497(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:499(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:532(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:535(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:575(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:585(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:621(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:622(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:624(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:627(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:659(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:661(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:743(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:751(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:752(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:754(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:841(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:843(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:873(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:875(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:905(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:907(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:959(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:960(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:962(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:963(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:966(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:968(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:970(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:972(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:974(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:976(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1034(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1037(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1038(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1039(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1044(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1050(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1051(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1052(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1053(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1054(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1055(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1058(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1092(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1183(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1186(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1187(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1191(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1192(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1193(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1289(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1290(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1293(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1295(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1297(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1299(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1304(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1336(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1337(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1369(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1371(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1403(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1406(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1407(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1449(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1450(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1452(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1454(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1456(span) #: doc/reference/en/ActiveLdap/Adapter/Base.html:1462(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1463(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1464(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1465(span) #: doc/reference/en/ActiveLdap/Adapter/Base.html:1495(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1524(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1525(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1526(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1611(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1612(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1627(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1630(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1635(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1637(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1685(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1686(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1688(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1694(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1696(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1697(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1703(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1496(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1497(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1498(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1529(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1559(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1560(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1561(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1648(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1649(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1664(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1667(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1672(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1674(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1723(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1724(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1726(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1732(span) #: doc/reference/en/ActiveLdap/Adapter/Base.html:1734(span) #: doc/reference/en/ActiveLdap/Adapter/Base.html:1735(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:399(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:402(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:405(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:406(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:408(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:440(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:474(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:476(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:512(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:514(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:517(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:557(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:562(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:563(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:566(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:606(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:609(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:612(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:613(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:615(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:657(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:660(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:669(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:723(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:724(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:727(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:730(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:734(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:737(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:743(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:779(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:781(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:471(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:515(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:518(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:520(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:550(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:630(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:631(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:660(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:661(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:662(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:695(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:698(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:699(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:701(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:730(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:731(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:776(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:782(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:785(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:789(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:792(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:822(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:823(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:361(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:362(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:595(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:597(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:599(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:630(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:115(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:409(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:419(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:452(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:488(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:490(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:535(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:543(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:546(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:583(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:587(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:621(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:624(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:626(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:670(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:673(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:682(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:734(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:735(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:744(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:747(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:753(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:787(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:789(span) -#: doc/reference/en/ActiveLdap/Xml.html:42(span) -#: doc/reference/en/ActiveLdap/Xml.html:205(span) -#: doc/reference/en/ActiveLdap/Xml.html:243(span) -#: doc/reference/en/ActiveLdap/Xml.html:244(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:385(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:387(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:389(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:158(span) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:225(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:226(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:263(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:249(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:250(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:251(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:255(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:314(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:315(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:316(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1741(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1773(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1774(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:410(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:413(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:416(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:417(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:419(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:452(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:487(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:489(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:526(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:528(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:531(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:572(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:577(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:578(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:581(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:622(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:625(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:628(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:629(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:631(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:674(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:677(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:686(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:741(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:742(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:745(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:748(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:752(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:755(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:761(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:798(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:800(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:480(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:525(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:528(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:530(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:561(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:643(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:644(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:674(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:675(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:676(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:710(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:713(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:714(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:716(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:746(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:747(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:793(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:799(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:802(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:806(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:809(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:840(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:841(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:375(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:376(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:608(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:610(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:612(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:644(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:413(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:423(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:457(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:494(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:496(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:542(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:550(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:553(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:591(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:595(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:630(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:633(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:635(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:680(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:683(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:692(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:745(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:746(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:755(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:758(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:764(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:799(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:801(span) +#: doc/reference/en/ActiveLdap/Xml.html:40(span) +#: doc/reference/en/ActiveLdap/Xml.html:216(span) +#: doc/reference/en/ActiveLdap/Xml.html:255(span) +#: doc/reference/en/ActiveLdap/Xml.html:256(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:170(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:229(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:230(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:268(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:252(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:253(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:254(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:258(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:318(span) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:319(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:321(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:326(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:333(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:334(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:320(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:323(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:324(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:330(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:337(span) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:338(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:225(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:226(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:261(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:263(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:271(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:300(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:351(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:352(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:380(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:381(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:225(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:226(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:263(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:266(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:228(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:271(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:408(span) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:411(span) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:415(span) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:42(span) -#: doc/reference/en/ActiveLdap.html:42(span) -#: doc/reference/en/ActiveLdap.html:241(span) -#: doc/reference/en/ActiveLdap.html:245(span) -#: doc/reference/en/ActiveLdap.html:248(span) -#: doc/reference/en/ActiveLdap.html:249(span) -#: doc/reference/en/ActiveLdap.html:304(span) -#: doc/reference/en/Net.html:42(span) -#: doc/reference/en/file.README.html:40(span) -#: doc/reference/en/LDAP/Conn.html:42(span) -#: doc/reference/en/LDAP/Conn.html:293(span) -#: doc/reference/en/LDAP/Conn.html:328(span) -#: doc/reference/en/LDAP/Conn.html:420(span) -#: doc/reference/en/LDAP/Conn.html:422(span) -#: doc/reference/en/LDAP/Conn.html:426(span) -#: doc/reference/en/LDAP/Conn.html:428(span) -#: doc/reference/en/LDAP/Mod.html:42(span) -#: doc/reference/en/LDAP/Mod.html:238(span) -#: doc/reference/en/LDAP/Mod.html:239(span) -#: doc/reference/en/LDAP/Mod.html:242(span) -#: doc/reference/en/file.tutorial.html:40(span) -#: doc/reference/en/file.tutorial.html:135(span) -#: doc/reference/en/file.tutorial.html:139(span) -#: doc/reference/en/file.tutorial.html:229(span) -#: doc/reference/en/file.tutorial.html:245(span) -#: doc/reference/en/file.tutorial.html:253(span) -#: doc/reference/en/file.tutorial.html:322(span) -#: doc/reference/en/file.tutorial.html:343(span) -#: doc/reference/en/file.tutorial.html:350(span) -#: doc/reference/en/file.tutorial.html:356(span) -#: doc/reference/en/file.tutorial.html:370(span) -#: doc/reference/en/file.tutorial.html:392(span) -#: doc/reference/en/file.tutorial.html:414(span) -#: doc/reference/en/file.tutorial.html:539(span) -#: doc/reference/en/file.tutorial.html:540(span) -#: doc/reference/en/file.tutorial.html:541(span) -#: doc/reference/en/file.tutorial.html:560(span) -#: doc/reference/en/file.tutorial.html:563(span) -#: doc/reference/en/file.tutorial.html:566(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:342(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:229(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:230(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:266(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:268(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:277(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:307(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:359(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:360(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:389(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:390(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:229(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:230(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:268(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:271(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:232(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:276(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:40(span) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:40(span) +#: doc/reference/en/ActiveLdap.html:40(span) +#: doc/reference/en/ActiveLdap.html:244(span) +#: doc/reference/en/ActiveLdap.html:248(span) +#: doc/reference/en/ActiveLdap.html:251(span) +#: doc/reference/en/ActiveLdap.html:252(span) +#: doc/reference/en/Net.html:40(span) +#: doc/reference/en/file.README.html:38(span) +#: doc/reference/en/LDAP/Conn.html:40(span) +#: doc/reference/en/LDAP/Conn.html:332(span) +#: doc/reference/en/LDAP/Conn.html:368(span) +#: doc/reference/en/LDAP/Conn.html:462(span) +#: doc/reference/en/LDAP/Conn.html:464(span) +#: doc/reference/en/LDAP/Conn.html:468(span) +#: doc/reference/en/LDAP/Conn.html:470(span) +#: doc/reference/en/LDAP/Mod.html:40(span) +#: doc/reference/en/LDAP/Mod.html:251(span) +#: doc/reference/en/LDAP/Mod.html:252(span) +#: doc/reference/en/LDAP/Mod.html:255(span) +#: doc/reference/en/file.tutorial.html:38(span) +#: doc/reference/en/file.tutorial.html:421(span) +#: doc/reference/en/file.tutorial.html:546(span) +#: doc/reference/en/file.tutorial.html:547(span) +#: doc/reference/en/file.tutorial.html:548(span) #: doc/reference/en/file.tutorial.html:567(span) -#: doc/reference/en/file.tutorial.html:571(span) -#: doc/reference/en/file.tutorial.html:572(span) -#: doc/reference/en/file.tutorial.html:589(span) -#: doc/reference/en/file.tutorial.html:590(span) -#: doc/reference/en/file.tutorial.html:591(span) -#: doc/reference/en/file.tutorial.html:610(span) -#: doc/reference/en/file.tutorial.html:613(span) -#: doc/reference/en/file.tutorial.html:616(span) +#: doc/reference/en/file.tutorial.html:570(span) +#: doc/reference/en/file.tutorial.html:573(span) +#: doc/reference/en/file.tutorial.html:574(span) +#: doc/reference/en/file.tutorial.html:578(span) +#: doc/reference/en/file.tutorial.html:579(span) +#: doc/reference/en/file.tutorial.html:596(span) +#: doc/reference/en/file.tutorial.html:597(span) +#: doc/reference/en/file.tutorial.html:598(span) #: doc/reference/en/file.tutorial.html:617(span) -#: doc/reference/en/file.tutorial.html:621(span) -#: doc/reference/en/file.tutorial.html:636(span) -#: doc/reference/en/file.tutorial.html:637(span) -#: doc/reference/en/file.tutorial.html:638(span) -#: doc/reference/en/file.tutorial.html:657(span) -#: doc/reference/en/file.tutorial.html:660(span) -#: doc/reference/en/file.tutorial.html:663(span) +#: doc/reference/en/file.tutorial.html:620(span) +#: doc/reference/en/file.tutorial.html:623(span) +#: doc/reference/en/file.tutorial.html:624(span) +#: doc/reference/en/file.tutorial.html:628(span) +#: doc/reference/en/file.tutorial.html:643(span) +#: doc/reference/en/file.tutorial.html:644(span) +#: doc/reference/en/file.tutorial.html:645(span) #: doc/reference/en/file.tutorial.html:664(span) -#: doc/reference/en/file.tutorial.html:668(span) -#: doc/reference/en/file.tutorial.html:677(span) -#: doc/reference/en/file.tutorial.html:685(span) -#: doc/reference/en/file.tutorial.html:698(span) -#: doc/reference/en/file.tutorial.html:751(span) -#: doc/reference/en/file.tutorial.html:761(span) -#: doc/reference/en/file.tutorial.html:763(span) -#: doc/reference/en/file.tutorial.html:771(span) -#: doc/reference/en/file.tutorial.html:780(span) -#: doc/reference/en/file.tutorial.html:784(span) -#: doc/reference/en/file.tutorial.html:786(span) -#: doc/reference/en/file.tutorial.html:830(span) -#: doc/reference/en/file.tutorial.html:831(span) -#: doc/reference/en/Timeout.html:42(span) -#: doc/reference/en/Timeout.html:160(span) -#: doc/reference/en/Timeout.html:161(span) -#: doc/reference/en/file.rails.html:40(span) -#: doc/reference/en/_index.html:38(span) doc/reference/en/LDAP.html:42(span) +#: doc/reference/en/file.tutorial.html:667(span) +#: doc/reference/en/file.tutorial.html:670(span) +#: doc/reference/en/file.tutorial.html:671(span) +#: doc/reference/en/file.tutorial.html:675(span) +#: doc/reference/en/file.tutorial.html:705(span) +#: doc/reference/en/Timeout.html:40(span) +#: doc/reference/en/Timeout.html:219(span) +#: doc/reference/en/Timeout.html:224(span) +#: doc/reference/en/Timeout.html:228(span) +#: doc/reference/en/Timeout.html:230(span) +#: doc/reference/en/Timeout.html:232(span) +#: doc/reference/en/Timeout.html:241(span) +#: doc/reference/en/Timeout.html:243(span) +#: doc/reference/en/Timeout.html:249(span) +#: doc/reference/en/Timeout.html:251(span) +#: doc/reference/en/Timeout.html:253(span) +#: doc/reference/en/Timeout.html:263(span) +#: doc/reference/en/Timeout.html:266(span) +#: doc/reference/en/Timeout.html:268(span) +#: doc/reference/en/file.rails.html:38(span) +#: doc/reference/en/_index.html:33(span) doc/reference/en/LDAP.html:40(span) msgid "(" msgstr "" -#: doc/reference/en/file.news.html:40(a) -#: doc/reference/en/file.development.html:40(a) -#: doc/reference/en/top-level-namespace.html:42(a) -#: doc/reference/en/Net/LDAP/Entry.html:42(a) -#: doc/reference/en/Net/LDAP.html:42(a) doc/reference/en/index.html:40(a) -#: doc/reference/en/ActiveLdap/ActionController.html:42(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:42(a) -#: doc/reference/en/ActiveLdap/Escape.html:42(a) -#: doc/reference/en/ActiveLdap/Compatible.html:42(a) -#: doc/reference/en/ActiveLdap/LdapError.html:42(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:42(a) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:42(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:42(a) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:42(a) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:42(a) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:42(a) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:42(a) -#: doc/reference/en/ActiveLdap/Generators.html:42(a) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:42(a) -#: doc/reference/en/ActiveLdap/Railtie.html:42(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:42(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:42(a) -#: doc/reference/en/ActiveLdap/Persistence.html:42(a) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:42(a) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:42(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:42(a) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:42(a) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:42(a) -#: doc/reference/en/ActiveLdap/Acts.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter.html:42(a) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:42(a) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:42(a) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:42(a) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:42(a) -#: doc/reference/en/ActiveLdap/Connection.html:42(a) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:42(a) -#: doc/reference/en/ActiveLdap/Schema.html:42(a) -#: doc/reference/en/ActiveLdap/DeleteError.html:42(a) -#: doc/reference/en/ActiveLdap/Validations.html:42(a) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:42(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:42(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:42(a) -#: doc/reference/en/ActiveLdap/Attributes.html:42(a) -#: doc/reference/en/ActiveLdap/TimeoutError.html:42(a) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:42(a) -#: doc/reference/en/ActiveLdap/Base.html:42(a) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:42(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:42(a) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:42(a) -#: doc/reference/en/ActiveLdap/Association.html:42(a) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:42(a) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:42(a) -#: doc/reference/en/ActiveLdap/NotImplemented.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:42(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:42(a) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:42(a) -#: doc/reference/en/ActiveLdap/SaveError.html:42(a) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:42(a) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:42(a) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:42(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:42(a) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:42(a) -#: doc/reference/en/ActiveLdap/ObjectClass.html:42(a) -#: doc/reference/en/ActiveLdap/UserPassword.html:42(a) -#: doc/reference/en/ActiveLdap/Command.html:42(a) -#: doc/reference/en/ActiveLdap/ConnectionError.html:42(a) -#: doc/reference/en/ActiveLdap/Populate.html:42(a) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:42(a) -#: doc/reference/en/ActiveLdap/Error.html:42(a) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:42(a) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:42(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:42(a) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:42(a) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:42(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:42(a) -#: doc/reference/en/ActiveLdap/Association/Children.html:42(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:42(a) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:42(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:42(a) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:42(a) -#: doc/reference/en/ActiveLdap/Helper.html:42(a) -#: doc/reference/en/ActiveLdap/Railties.html:42(a) -#: doc/reference/en/ActiveLdap/HumanReadable.html:42(a) -#: doc/reference/en/ActiveLdap/Callbacks.html:42(a) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/Find.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/Common.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/Update.html:42(a) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:42(a) -#: doc/reference/en/ActiveLdap/Associations.html:42(a) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:42(a) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:42(a) -#: doc/reference/en/ActiveLdap/Configuration.html:42(a) -#: doc/reference/en/ActiveLdap/Operations.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:42(a) -#: doc/reference/en/ActiveLdap/Xml.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:42(a) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:42(a) -#: doc/reference/en/ActiveLdap.html:42(a) doc/reference/en/Net.html:42(a) -#: doc/reference/en/file.README.html:40(a) -#: doc/reference/en/LDAP/Conn.html:42(a) doc/reference/en/LDAP/Mod.html:42(a) -#: doc/reference/en/file.tutorial.html:40(a) -#: doc/reference/en/Timeout.html:42(a) doc/reference/en/file.rails.html:40(a) -#: doc/reference/en/_index.html:38(a) doc/reference/en/LDAP.html:42(a) +#: doc/reference/en/file.news.html:38(a) +#: doc/reference/en/file.development.html:38(a) +#: doc/reference/en/top-level-namespace.html:40(a) +#: doc/reference/en/Net/LDAP/Entry.html:40(a) +#: doc/reference/en/Net/LDAP.html:40(a) doc/reference/en/index.html:38(a) +#: doc/reference/en/ActiveLdap/ActionController.html:40(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:40(a) +#: doc/reference/en/ActiveLdap/Escape.html:40(a) +#: doc/reference/en/ActiveLdap/Compatible.html:40(a) +#: doc/reference/en/ActiveLdap/LdapError.html:40(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:40(a) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif.html:40(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:40(a) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:40(a) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:40(a) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:40(a) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:40(a) +#: doc/reference/en/ActiveLdap/Generators.html:40(a) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:40(a) +#: doc/reference/en/ActiveLdap/Railtie.html:40(a) +#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:40(a) +#: doc/reference/en/ActiveLdap/Persistence.html:40(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:40(a) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:40(a) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:40(a) +#: doc/reference/en/ActiveLdap/Acts.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter.html:40(a) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:40(a) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:40(a) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:40(a) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:40(a) +#: doc/reference/en/ActiveLdap/Connection.html:40(a) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:40(a) +#: doc/reference/en/ActiveLdap/Schema.html:40(a) +#: doc/reference/en/ActiveLdap/DeleteError.html:40(a) +#: doc/reference/en/ActiveLdap/Validations.html:40(a) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:40(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:40(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:40(a) +#: doc/reference/en/ActiveLdap/Attributes.html:40(a) +#: doc/reference/en/ActiveLdap/TimeoutError.html:40(a) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:40(a) +#: doc/reference/en/ActiveLdap/Base.html:40(a) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:40(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:40(a) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:40(a) +#: doc/reference/en/ActiveLdap/Association.html:40(a) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:40(a) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:40(a) +#: doc/reference/en/ActiveLdap/NotImplemented.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:40(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:40(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:40(a) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:40(a) +#: doc/reference/en/ActiveLdap/SaveError.html:40(a) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:40(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:40(a) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:40(a) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:40(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:40(a) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:40(a) +#: doc/reference/en/ActiveLdap/ObjectClass.html:40(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:40(a) +#: doc/reference/en/ActiveLdap/Command.html:40(a) +#: doc/reference/en/ActiveLdap/ConnectionError.html:40(a) +#: doc/reference/en/ActiveLdap/Populate.html:40(a) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:40(a) +#: doc/reference/en/ActiveLdap/Error.html:40(a) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:40(a) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:40(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:40(a) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:40(a) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:40(a) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:40(a) +#: doc/reference/en/ActiveLdap/Association/Children.html:40(a) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:40(a) +#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:40(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:40(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Query.html:40(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Write.html:40(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/BeforeTypeCast.html:40(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Read.html:40(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:40(a) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:40(a) +#: doc/reference/en/ActiveLdap/Helper.html:40(a) +#: doc/reference/en/ActiveLdap/Railties.html:40(a) +#: doc/reference/en/ActiveLdap/HumanReadable.html:40(a) +#: doc/reference/en/ActiveLdap/Callbacks.html:40(a) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/Find.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/Common.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/Update.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:40(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:40(a) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:40(a) +#: doc/reference/en/ActiveLdap/Associations.html:40(a) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:40(a) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:40(a) +#: doc/reference/en/ActiveLdap/Configuration.html:40(a) +#: doc/reference/en/ActiveLdap/Operations.html:40(a) +#: doc/reference/en/ActiveLdap/GetText.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:40(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:40(a) +#: doc/reference/en/ActiveLdap/Xml.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:40(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:40(a) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:40(a) +#: doc/reference/en/ActiveLdap.html:40(a) doc/reference/en/Net.html:40(a) +#: doc/reference/en/file.README.html:38(a) +#: doc/reference/en/LDAP/Conn.html:40(a) doc/reference/en/LDAP/Mod.html:40(a) +#: doc/reference/en/file.tutorial.html:38(a) +#: doc/reference/en/Timeout.html:40(a) doc/reference/en/file.rails.html:38(a) +#: doc/reference/en/_index.html:33(a) doc/reference/en/LDAP.html:40(a) msgid "no frames" msgstr "??????" -#: doc/reference/en/file.news.html:40(span) -#: doc/reference/en/file.development.html:40(span) -#: doc/reference/en/top-level-namespace.html:42(span) -#: doc/reference/en/Net/LDAP/Entry.html:42(span) -#: doc/reference/en/Net/LDAP/Entry.html:194(span) -#: doc/reference/en/Net/LDAP/Entry.html:196(span) -#: doc/reference/en/Net/LDAP.html:42(span) -#: doc/reference/en/index.html:40(span) -#: doc/reference/en/ActiveLdap/ActionController.html:42(span) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:42(span) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:410(span) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:458(span) -#: doc/reference/en/ActiveLdap/Escape.html:42(span) -#: doc/reference/en/ActiveLdap/Escape.html:164(span) -#: doc/reference/en/ActiveLdap/Escape.html:165(span) -#: doc/reference/en/ActiveLdap/Escape.html:193(span) -#: doc/reference/en/ActiveLdap/Escape.html:194(span) -#: doc/reference/en/ActiveLdap/Compatible.html:42(span) -#: doc/reference/en/ActiveLdap/Compatible.html:164(span) +#: doc/reference/en/file.news.html:38(span) +#: doc/reference/en/file.development.html:38(span) +#: doc/reference/en/top-level-namespace.html:40(span) +#: doc/reference/en/top-level-namespace.html:102(span) +#: doc/reference/en/Net/LDAP/Entry.html:40(span) +#: doc/reference/en/Net/LDAP/Entry.html:271(span) +#: doc/reference/en/Net/LDAP/Entry.html:273(span) +#: doc/reference/en/Net/LDAP/Entry.html:310(span) +#: doc/reference/en/Net/LDAP/Entry.html:312(span) +#: doc/reference/en/Net/LDAP.html:40(span) +#: doc/reference/en/index.html:38(span) +#: doc/reference/en/ActiveLdap/ActionController.html:40(span) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:40(span) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:427(span) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:476(span) +#: doc/reference/en/ActiveLdap/Escape.html:40(span) +#: doc/reference/en/ActiveLdap/Escape.html:177(span) +#: doc/reference/en/ActiveLdap/Escape.html:178(span) +#: doc/reference/en/ActiveLdap/Escape.html:207(span) +#: doc/reference/en/ActiveLdap/Escape.html:208(span) +#: doc/reference/en/ActiveLdap/Compatible.html:40(span) #: doc/reference/en/ActiveLdap/Compatible.html:195(span) -#: doc/reference/en/ActiveLdap/LdapError.html:42(span) -#: doc/reference/en/ActiveLdap/LdapError.html:209(span) -#: doc/reference/en/ActiveLdap/LdapError.html:211(span) -#: doc/reference/en/ActiveLdap/LdapError.html:212(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:576(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:582(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:584(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:620(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:622(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:796(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:797(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:799(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:801(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:805(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:868(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:872(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:873(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:874(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:915(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:916(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:917(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:919(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:920(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:922(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:924(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:925(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:926(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:928(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:929(span) +#: doc/reference/en/ActiveLdap/Compatible.html:198(span) +#: doc/reference/en/ActiveLdap/Compatible.html:202(span) +#: doc/reference/en/ActiveLdap/Compatible.html:203(span) +#: doc/reference/en/ActiveLdap/Compatible.html:209(span) +#: doc/reference/en/ActiveLdap/Compatible.html:243(span) +#: doc/reference/en/ActiveLdap/LdapError.html:40(span) +#: doc/reference/en/ActiveLdap/LdapError.html:213(span) +#: doc/reference/en/ActiveLdap/LdapError.html:215(span) +#: doc/reference/en/ActiveLdap/LdapError.html:223(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:601(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:607(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:609(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:646(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:648(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:826(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:827(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:829(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:831(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:835(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:900(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:904(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:905(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:906(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:948(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:949(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:950(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:952(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:953(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:955(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:957(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:958(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:959(span) #: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:961(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1000(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1001(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1002(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1006(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1008(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1042(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1111(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1192(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1193(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1199(span) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:42(span) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:158(span) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:160(span) -#: doc/reference/en/ActiveLdap/Ldif.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif.html:365(span) -#: doc/reference/en/ActiveLdap/Ldif.html:495(span) -#: doc/reference/en/ActiveLdap/Ldif.html:496(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:42(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:305(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:307(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:308(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:309(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:401(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:443(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:444(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:446(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:448(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:452(span) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:143(span) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:144(span) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:42(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:962(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:995(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1035(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1036(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1037(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1041(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1043(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1079(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1150(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1232(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1233(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1239(span) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:40(span) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:171(span) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:173(span) +#: doc/reference/en/ActiveLdap/Ldif.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif.html:382(span) +#: doc/reference/en/ActiveLdap/Ldif.html:511(span) +#: doc/reference/en/ActiveLdap/Ldif.html:512(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:40(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:319(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:321(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:322(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:323(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:415(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:458(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:459(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:461(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:463(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:467(span) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:155(span) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:156(span) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:40(span) #: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:269(span) #: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:272(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:42(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:255(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:256(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:257(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:259(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:260(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:306(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:307(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:310(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:313(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:316(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:358(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:359(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:360(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:361(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:363(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:365(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:40(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:262(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:263(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:264(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:266(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:267(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:314(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:315(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:318(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:321(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:324(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:367(span) #: doc/reference/en/ActiveLdap/GetText/Parser.html:368(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:421(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:422(span) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:42(span) -#: doc/reference/en/ActiveLdap/Generators.html:42(span) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:42(span) -#: doc/reference/en/ActiveLdap/Railtie.html:42(span) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:42(span) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:145(span) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:147(span) -#: doc/reference/en/ActiveLdap/Persistence.html:42(span) -#: doc/reference/en/ActiveLdap/Persistence.html:330(span) -#: doc/reference/en/ActiveLdap/Persistence.html:331(span) -#: doc/reference/en/ActiveLdap/Persistence.html:391(span) -#: doc/reference/en/ActiveLdap/Persistence.html:392(span) -#: doc/reference/en/ActiveLdap/Persistence.html:437(span) -#: doc/reference/en/ActiveLdap/Persistence.html:593(span) -#: doc/reference/en/ActiveLdap/Persistence.html:624(span) -#: doc/reference/en/ActiveLdap/Persistence.html:626(span) -#: doc/reference/en/ActiveLdap/Persistence.html:674(span) -#: doc/reference/en/ActiveLdap/Persistence.html:675(span) -#: doc/reference/en/ActiveLdap/Persistence.html:677(span) -#: doc/reference/en/ActiveLdap/Persistence.html:687(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:42(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:257(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:258(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:292(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:330(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:331(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:368(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:397(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:431(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:432(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:434(span) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:42(span) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:194(span) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:221(span) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:248(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:42(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:369(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:370(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:372(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:374(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:377(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:431(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:432(span) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:40(span) +#: doc/reference/en/ActiveLdap/Generators.html:40(span) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:40(span) +#: doc/reference/en/ActiveLdap/Railtie.html:40(span) +#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:40(span) +#: doc/reference/en/ActiveLdap/Persistence.html:40(span) +#: doc/reference/en/ActiveLdap/Persistence.html:368(span) +#: doc/reference/en/ActiveLdap/Persistence.html:369(span) +#: doc/reference/en/ActiveLdap/Persistence.html:431(span) +#: doc/reference/en/ActiveLdap/Persistence.html:432(span) +#: doc/reference/en/ActiveLdap/Persistence.html:476(span) +#: doc/reference/en/ActiveLdap/Persistence.html:631(span) +#: doc/reference/en/ActiveLdap/Persistence.html:635(span) +#: doc/reference/en/ActiveLdap/Persistence.html:638(span) +#: doc/reference/en/ActiveLdap/Persistence.html:639(span) +#: doc/reference/en/ActiveLdap/Persistence.html:686(span) +#: doc/reference/en/ActiveLdap/Persistence.html:718(span) +#: doc/reference/en/ActiveLdap/Persistence.html:720(span) +#: doc/reference/en/ActiveLdap/Persistence.html:769(span) +#: doc/reference/en/ActiveLdap/Persistence.html:770(span) +#: doc/reference/en/ActiveLdap/Persistence.html:772(span) +#: doc/reference/en/ActiveLdap/Persistence.html:780(span) +#: doc/reference/en/ActiveLdap/Persistence.html:782(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:40(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:239(span) #: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:241(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:243(span) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:147(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:397(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:398(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:400(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:436(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:437(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:440(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:476(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:477(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:478(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:479(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:480(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:520(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:521(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:524(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:527(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:563(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:564(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:566(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:602(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:603(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:606(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:639(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:640(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:673(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:674(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:723(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:730(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:731(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:735(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:770(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:771(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:773(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:809(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:810(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:813(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:846(span) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:159(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:421(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:422(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:424(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:461(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:462(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:465(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:502(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:503(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:504(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:505(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:506(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:547(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:548(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:551(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:554(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:591(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:592(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:594(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:631(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:632(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:635(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:669(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:670(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:704(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:705(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:755(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:758(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:762(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:763(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:765(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:767(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:803(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:804(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:806(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:843(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:844(span) #: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:847(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:880(span) #: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:881(span) -#: doc/reference/en/ActiveLdap/Acts.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter.html:42(span) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:42(span) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:42(span) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:185(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:42(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:279(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:282(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:285(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:286(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:314(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:366(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:367(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:369(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:371(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:417(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:422(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:423(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:425(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:428(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:491(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:498(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:535(span) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:538(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:207(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:209(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:270(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:273(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:275(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:313(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:370(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:375(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:384(span) -#: doc/reference/en/ActiveLdap/Connection.html:42(span) -#: doc/reference/en/ActiveLdap/Connection.html:330(span) -#: doc/reference/en/ActiveLdap/Connection.html:331(span) -#: doc/reference/en/ActiveLdap/Connection.html:434(span) -#: doc/reference/en/ActiveLdap/Connection.html:474(span) -#: doc/reference/en/ActiveLdap/Connection.html:475(span) -#: doc/reference/en/ActiveLdap/Connection.html:477(span) -#: doc/reference/en/ActiveLdap/Connection.html:479(span) -#: doc/reference/en/ActiveLdap/Connection.html:481(span) -#: doc/reference/en/ActiveLdap/Connection.html:515(span) -#: doc/reference/en/ActiveLdap/Connection.html:519(span) -#: doc/reference/en/ActiveLdap/Connection.html:520(span) -#: doc/reference/en/ActiveLdap/Connection.html:521(span) -#: doc/reference/en/ActiveLdap/Connection.html:551(span) -#: doc/reference/en/ActiveLdap/Connection.html:592(span) -#: doc/reference/en/ActiveLdap/Connection.html:595(span) -#: doc/reference/en/ActiveLdap/Connection.html:659(span) -#: doc/reference/en/ActiveLdap/Connection.html:660(span) -#: doc/reference/en/ActiveLdap/Connection.html:661(span) -#: doc/reference/en/ActiveLdap/Connection.html:662(span) -#: doc/reference/en/ActiveLdap/Connection.html:665(span) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:42(span) -#: doc/reference/en/ActiveLdap/Schema.html:42(span) -#: doc/reference/en/ActiveLdap/Schema.html:603(span) -#: doc/reference/en/ActiveLdap/Schema.html:604(span) -#: doc/reference/en/ActiveLdap/Schema.html:644(span) -#: doc/reference/en/ActiveLdap/Schema.html:645(span) -#: doc/reference/en/ActiveLdap/Schema.html:646(span) -#: doc/reference/en/ActiveLdap/Schema.html:677(span) -#: doc/reference/en/ActiveLdap/Schema.html:678(span) -#: doc/reference/en/ActiveLdap/Schema.html:679(span) -#: doc/reference/en/ActiveLdap/Schema.html:713(span) -#: doc/reference/en/ActiveLdap/Schema.html:714(span) -#: doc/reference/en/ActiveLdap/Schema.html:715(span) -#: doc/reference/en/ActiveLdap/Schema.html:747(span) -#: doc/reference/en/ActiveLdap/Schema.html:748(span) -#: doc/reference/en/ActiveLdap/Schema.html:749(span) -#: doc/reference/en/ActiveLdap/Schema.html:785(span) -#: doc/reference/en/ActiveLdap/Schema.html:788(span) -#: doc/reference/en/ActiveLdap/Schema.html:789(span) -#: doc/reference/en/ActiveLdap/Schema.html:791(span) -#: doc/reference/en/ActiveLdap/Schema.html:857(span) -#: doc/reference/en/ActiveLdap/Schema.html:860(span) -#: doc/reference/en/ActiveLdap/Schema.html:861(span) -#: doc/reference/en/ActiveLdap/Schema.html:865(span) -#: doc/reference/en/ActiveLdap/Schema.html:866(span) -#: doc/reference/en/ActiveLdap/Schema.html:869(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:882(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:916(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:917(span) +#: doc/reference/en/ActiveLdap/Acts.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter.html:40(span) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:40(span) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:40(span) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:189(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:40(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:292(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:295(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:298(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:299(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:328(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:378(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:379(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:381(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:383(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:430(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:435(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:436(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:438(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:441(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:503(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:510(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:548(span) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:551(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:210(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:213(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:215(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:278(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:283(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:292(span) +#: doc/reference/en/ActiveLdap/Connection.html:40(span) +#: doc/reference/en/ActiveLdap/Connection.html:350(span) +#: doc/reference/en/ActiveLdap/Connection.html:351(span) +#: doc/reference/en/ActiveLdap/Connection.html:456(span) +#: doc/reference/en/ActiveLdap/Connection.html:497(span) +#: doc/reference/en/ActiveLdap/Connection.html:498(span) +#: doc/reference/en/ActiveLdap/Connection.html:500(span) +#: doc/reference/en/ActiveLdap/Connection.html:502(span) +#: doc/reference/en/ActiveLdap/Connection.html:504(span) +#: doc/reference/en/ActiveLdap/Connection.html:539(span) +#: doc/reference/en/ActiveLdap/Connection.html:543(span) +#: doc/reference/en/ActiveLdap/Connection.html:544(span) +#: doc/reference/en/ActiveLdap/Connection.html:545(span) +#: doc/reference/en/ActiveLdap/Connection.html:576(span) +#: doc/reference/en/ActiveLdap/Connection.html:618(span) +#: doc/reference/en/ActiveLdap/Connection.html:621(span) +#: doc/reference/en/ActiveLdap/Connection.html:687(span) +#: doc/reference/en/ActiveLdap/Connection.html:688(span) +#: doc/reference/en/ActiveLdap/Connection.html:689(span) +#: doc/reference/en/ActiveLdap/Connection.html:690(span) +#: doc/reference/en/ActiveLdap/Connection.html:693(span) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:40(span) +#: doc/reference/en/ActiveLdap/Schema.html:40(span) +#: doc/reference/en/ActiveLdap/Schema.html:612(span) +#: doc/reference/en/ActiveLdap/Schema.html:613(span) +#: doc/reference/en/ActiveLdap/Schema.html:654(span) +#: doc/reference/en/ActiveLdap/Schema.html:655(span) +#: doc/reference/en/ActiveLdap/Schema.html:656(span) +#: doc/reference/en/ActiveLdap/Schema.html:688(span) +#: doc/reference/en/ActiveLdap/Schema.html:689(span) +#: doc/reference/en/ActiveLdap/Schema.html:690(span) +#: doc/reference/en/ActiveLdap/Schema.html:725(span) +#: doc/reference/en/ActiveLdap/Schema.html:726(span) +#: doc/reference/en/ActiveLdap/Schema.html:727(span) +#: doc/reference/en/ActiveLdap/Schema.html:760(span) +#: doc/reference/en/ActiveLdap/Schema.html:761(span) +#: doc/reference/en/ActiveLdap/Schema.html:762(span) +#: doc/reference/en/ActiveLdap/Schema.html:799(span) +#: doc/reference/en/ActiveLdap/Schema.html:802(span) +#: doc/reference/en/ActiveLdap/Schema.html:803(span) +#: doc/reference/en/ActiveLdap/Schema.html:805(span) +#: doc/reference/en/ActiveLdap/Schema.html:873(span) +#: doc/reference/en/ActiveLdap/Schema.html:876(span) #: doc/reference/en/ActiveLdap/Schema.html:877(span) -#: doc/reference/en/ActiveLdap/Schema.html:884(span) -#: doc/reference/en/ActiveLdap/Schema.html:885(span) +#: doc/reference/en/ActiveLdap/Schema.html:881(span) +#: doc/reference/en/ActiveLdap/Schema.html:883(span) #: doc/reference/en/ActiveLdap/Schema.html:886(span) -#: doc/reference/en/ActiveLdap/Schema.html:944(span) -#: doc/reference/en/ActiveLdap/Schema.html:945(span) -#: doc/reference/en/ActiveLdap/Schema.html:974(span) -#: doc/reference/en/ActiveLdap/Schema.html:975(span) -#: doc/reference/en/ActiveLdap/Schema.html:1000(span) -#: doc/reference/en/ActiveLdap/Schema.html:1002(span) -#: doc/reference/en/ActiveLdap/Schema.html:1003(span) -#: doc/reference/en/ActiveLdap/Schema.html:1034(span) -#: doc/reference/en/ActiveLdap/Schema.html:1035(span) -#: doc/reference/en/ActiveLdap/Schema.html:1036(span) -#: doc/reference/en/ActiveLdap/Schema.html:1067(span) -#: doc/reference/en/ActiveLdap/Schema.html:1068(span) -#: doc/reference/en/ActiveLdap/Schema.html:1069(span) -#: doc/reference/en/ActiveLdap/Schema.html:1100(span) -#: doc/reference/en/ActiveLdap/Schema.html:1101(span) -#: doc/reference/en/ActiveLdap/Schema.html:1102(span) -#: doc/reference/en/ActiveLdap/Schema.html:1136(span) -#: doc/reference/en/ActiveLdap/Schema.html:1137(span) -#: doc/reference/en/ActiveLdap/Schema.html:1138(span) -#: doc/reference/en/ActiveLdap/Schema.html:1168(span) -#: doc/reference/en/ActiveLdap/Schema.html:1169(span) -#: doc/reference/en/ActiveLdap/Schema.html:1199(span) -#: doc/reference/en/ActiveLdap/Schema.html:1200(span) -#: doc/reference/en/ActiveLdap/Schema.html:1201(span) -#: doc/reference/en/ActiveLdap/Schema.html:1232(span) -#: doc/reference/en/ActiveLdap/Schema.html:1233(span) -#: doc/reference/en/ActiveLdap/Schema.html:1234(span) -#: doc/reference/en/ActiveLdap/Schema.html:1268(span) -#: doc/reference/en/ActiveLdap/Schema.html:1269(span) -#: doc/reference/en/ActiveLdap/Schema.html:1270(span) -#: doc/reference/en/ActiveLdap/Schema.html:1300(span) -#: doc/reference/en/ActiveLdap/Schema.html:1301(span) -#: doc/reference/en/ActiveLdap/DeleteError.html:42(span) -#: doc/reference/en/ActiveLdap/Validations.html:42(span) -#: doc/reference/en/ActiveLdap/Validations.html:241(span) -#: doc/reference/en/ActiveLdap/Validations.html:270(span) -#: doc/reference/en/ActiveLdap/Validations.html:271(span) -#: doc/reference/en/ActiveLdap/Validations.html:323(span) -#: doc/reference/en/ActiveLdap/Validations.html:324(span) -#: doc/reference/en/ActiveLdap/Validations.html:325(span) -#: doc/reference/en/ActiveLdap/Validations.html:383(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:42(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:376(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:383(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:385(span) +#: doc/reference/en/ActiveLdap/Schema.html:894(span) +#: doc/reference/en/ActiveLdap/Schema.html:901(span) +#: doc/reference/en/ActiveLdap/Schema.html:902(span) +#: doc/reference/en/ActiveLdap/Schema.html:903(span) +#: doc/reference/en/ActiveLdap/Schema.html:962(span) +#: doc/reference/en/ActiveLdap/Schema.html:963(span) +#: doc/reference/en/ActiveLdap/Schema.html:991(span) +#: doc/reference/en/ActiveLdap/Schema.html:992(span) +#: doc/reference/en/ActiveLdap/Schema.html:1016(span) +#: doc/reference/en/ActiveLdap/Schema.html:1018(span) +#: doc/reference/en/ActiveLdap/Schema.html:1019(span) +#: doc/reference/en/ActiveLdap/Schema.html:1052(span) +#: doc/reference/en/ActiveLdap/Schema.html:1053(span) +#: doc/reference/en/ActiveLdap/Schema.html:1054(span) +#: doc/reference/en/ActiveLdap/Schema.html:1087(span) +#: doc/reference/en/ActiveLdap/Schema.html:1088(span) +#: doc/reference/en/ActiveLdap/Schema.html:1089(span) +#: doc/reference/en/ActiveLdap/Schema.html:1121(span) +#: doc/reference/en/ActiveLdap/Schema.html:1122(span) +#: doc/reference/en/ActiveLdap/Schema.html:1123(span) +#: doc/reference/en/ActiveLdap/Schema.html:1158(span) +#: doc/reference/en/ActiveLdap/Schema.html:1159(span) +#: doc/reference/en/ActiveLdap/Schema.html:1160(span) +#: doc/reference/en/ActiveLdap/Schema.html:1191(span) +#: doc/reference/en/ActiveLdap/Schema.html:1192(span) +#: doc/reference/en/ActiveLdap/Schema.html:1223(span) +#: doc/reference/en/ActiveLdap/Schema.html:1224(span) +#: doc/reference/en/ActiveLdap/Schema.html:1225(span) +#: doc/reference/en/ActiveLdap/Schema.html:1257(span) +#: doc/reference/en/ActiveLdap/Schema.html:1258(span) +#: doc/reference/en/ActiveLdap/Schema.html:1259(span) +#: doc/reference/en/ActiveLdap/Schema.html:1294(span) +#: doc/reference/en/ActiveLdap/Schema.html:1295(span) +#: doc/reference/en/ActiveLdap/Schema.html:1296(span) +#: doc/reference/en/ActiveLdap/Schema.html:1327(span) +#: doc/reference/en/ActiveLdap/Schema.html:1328(span) +#: doc/reference/en/ActiveLdap/DeleteError.html:40(span) +#: doc/reference/en/ActiveLdap/Validations.html:40(span) +#: doc/reference/en/ActiveLdap/Validations.html:253(span) +#: doc/reference/en/ActiveLdap/Validations.html:283(span) +#: doc/reference/en/ActiveLdap/Validations.html:284(span) +#: doc/reference/en/ActiveLdap/Validations.html:337(span) +#: doc/reference/en/ActiveLdap/Validations.html:338(span) +#: doc/reference/en/ActiveLdap/Validations.html:339(span) +#: doc/reference/en/ActiveLdap/Validations.html:399(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:40(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:381(span) #: doc/reference/en/ActiveLdap/LdifInvalid.html:388(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:392(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:42(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:568(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:570(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:663(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:664(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:665(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:667(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:696(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:697(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:731(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:732(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:769(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:771(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:772(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:776(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:779(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:42(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:154(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:156(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:157(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:158(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:159(span) -#: doc/reference/en/ActiveLdap/Attributes.html:42(span) -#: doc/reference/en/ActiveLdap/Attributes.html:157(span) -#: doc/reference/en/ActiveLdap/Attributes.html:159(span) -#: doc/reference/en/ActiveLdap/Attributes.html:160(span) -#: doc/reference/en/ActiveLdap/Attributes.html:161(span) -#: doc/reference/en/ActiveLdap/TimeoutError.html:42(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:42(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:209(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:263(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:264(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:266(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:267(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:268(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:270(span) -#: doc/reference/en/ActiveLdap/Base.html:42(span) -#: doc/reference/en/ActiveLdap/Base.html:1843(span) -#: doc/reference/en/ActiveLdap/Base.html:1854(span) -#: doc/reference/en/ActiveLdap/Base.html:1858(span) -#: doc/reference/en/ActiveLdap/Base.html:1861(span) -#: doc/reference/en/ActiveLdap/Base.html:1865(span) -#: doc/reference/en/ActiveLdap/Base.html:1954(span) -#: doc/reference/en/ActiveLdap/Base.html:1959(span) -#: doc/reference/en/ActiveLdap/Base.html:1962(span) -#: doc/reference/en/ActiveLdap/Base.html:1964(span) -#: doc/reference/en/ActiveLdap/Base.html:1970(span) -#: doc/reference/en/ActiveLdap/Base.html:1973(span) -#: doc/reference/en/ActiveLdap/Base.html:1976(span) -#: doc/reference/en/ActiveLdap/Base.html:1978(span) -#: doc/reference/en/ActiveLdap/Base.html:1980(span) -#: doc/reference/en/ActiveLdap/Base.html:2091(span) -#: doc/reference/en/ActiveLdap/Base.html:2171(span) -#: doc/reference/en/ActiveLdap/Base.html:2240(span) -#: doc/reference/en/ActiveLdap/Base.html:2242(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:390(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:393(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:397(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:40(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:588(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:590(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:683(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:684(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:685(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:687(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:717(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:718(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:753(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:754(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:792(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:794(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:795(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:799(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:802(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:40(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:162(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:164(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:165(span) +#: doc/reference/en/ActiveLdap/Attributes.html:40(span) +#: doc/reference/en/ActiveLdap/Attributes.html:169(span) +#: doc/reference/en/ActiveLdap/Attributes.html:171(span) +#: doc/reference/en/ActiveLdap/Attributes.html:172(span) +#: doc/reference/en/ActiveLdap/Attributes.html:173(span) +#: doc/reference/en/ActiveLdap/TimeoutError.html:40(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:40(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:219(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:275(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:276(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:278(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:279(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:281(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:283(span) +#: doc/reference/en/ActiveLdap/Base.html:40(span) +#: doc/reference/en/ActiveLdap/Base.html:1791(span) +#: doc/reference/en/ActiveLdap/Base.html:1802(span) +#: doc/reference/en/ActiveLdap/Base.html:1806(span) +#: doc/reference/en/ActiveLdap/Base.html:1809(span) +#: doc/reference/en/ActiveLdap/Base.html:1813(span) +#: doc/reference/en/ActiveLdap/Base.html:1923(span) +#: doc/reference/en/ActiveLdap/Base.html:2002(span) +#: doc/reference/en/ActiveLdap/Base.html:2093(span) +#: doc/reference/en/ActiveLdap/Base.html:2095(span) +#: doc/reference/en/ActiveLdap/Base.html:2096(span) +#: doc/reference/en/ActiveLdap/Base.html:2103(span) +#: doc/reference/en/ActiveLdap/Base.html:2152(span) +#: doc/reference/en/ActiveLdap/Base.html:2157(span) +#: doc/reference/en/ActiveLdap/Base.html:2159(span) +#: doc/reference/en/ActiveLdap/Base.html:2195(span) +#: doc/reference/en/ActiveLdap/Base.html:2196(span) +#: doc/reference/en/ActiveLdap/Base.html:2197(span) +#: doc/reference/en/ActiveLdap/Base.html:2199(span) #: doc/reference/en/ActiveLdap/Base.html:2278(span) +#: doc/reference/en/ActiveLdap/Base.html:2282(span) #: doc/reference/en/ActiveLdap/Base.html:2283(span) -#: doc/reference/en/ActiveLdap/Base.html:2285(span) -#: doc/reference/en/ActiveLdap/Base.html:2320(span) -#: doc/reference/en/ActiveLdap/Base.html:2321(span) +#: doc/reference/en/ActiveLdap/Base.html:2284(span) #: doc/reference/en/ActiveLdap/Base.html:2322(span) -#: doc/reference/en/ActiveLdap/Base.html:2324(span) -#: doc/reference/en/ActiveLdap/Base.html:2402(span) -#: doc/reference/en/ActiveLdap/Base.html:2406(span) -#: doc/reference/en/ActiveLdap/Base.html:2407(span) -#: doc/reference/en/ActiveLdap/Base.html:2408(span) -#: doc/reference/en/ActiveLdap/Base.html:2445(span) -#: doc/reference/en/ActiveLdap/Base.html:2486(span) -#: doc/reference/en/ActiveLdap/Base.html:2552(span) -#: doc/reference/en/ActiveLdap/Base.html:2553(span) -#: doc/reference/en/ActiveLdap/Base.html:2558(span) -#: doc/reference/en/ActiveLdap/Base.html:2627(span) -#: doc/reference/en/ActiveLdap/Base.html:2629(span) -#: doc/reference/en/ActiveLdap/Base.html:2632(span) -#: doc/reference/en/ActiveLdap/Base.html:2721(span) -#: doc/reference/en/ActiveLdap/Base.html:2751(span) -#: doc/reference/en/ActiveLdap/Base.html:2783(span) -#: doc/reference/en/ActiveLdap/Base.html:2784(span) -#: doc/reference/en/ActiveLdap/Base.html:2891(span) -#: doc/reference/en/ActiveLdap/Base.html:2897(span) -#: doc/reference/en/ActiveLdap/Base.html:2903(span) -#: doc/reference/en/ActiveLdap/Base.html:2924(span) -#: doc/reference/en/ActiveLdap/Base.html:2957(span) -#: doc/reference/en/ActiveLdap/Base.html:3013(span) -#: doc/reference/en/ActiveLdap/Base.html:3014(span) -#: doc/reference/en/ActiveLdap/Base.html:3015(span) -#: doc/reference/en/ActiveLdap/Base.html:3017(span) -#: doc/reference/en/ActiveLdap/Base.html:3067(span) -#: doc/reference/en/ActiveLdap/Base.html:3068(span) -#: doc/reference/en/ActiveLdap/Base.html:3069(span) -#: doc/reference/en/ActiveLdap/Base.html:3071(span) -#: doc/reference/en/ActiveLdap/Base.html:3103(span) -#: doc/reference/en/ActiveLdap/Base.html:3105(span) -#: doc/reference/en/ActiveLdap/Base.html:3107(span) -#: doc/reference/en/ActiveLdap/Base.html:3136(span) -#: doc/reference/en/ActiveLdap/Base.html:3137(span) -#: doc/reference/en/ActiveLdap/Base.html:3191(span) -#: doc/reference/en/ActiveLdap/Base.html:3192(span) -#: doc/reference/en/ActiveLdap/Base.html:3243(span) -#: doc/reference/en/ActiveLdap/Base.html:3244(span) -#: doc/reference/en/ActiveLdap/Base.html:3245(span) -#: doc/reference/en/ActiveLdap/Base.html:3287(span) -#: doc/reference/en/ActiveLdap/Base.html:3347(span) -#: doc/reference/en/ActiveLdap/Base.html:3350(span) -#: doc/reference/en/ActiveLdap/Base.html:3353(span) -#: doc/reference/en/ActiveLdap/Base.html:3355(span) -#: doc/reference/en/ActiveLdap/Base.html:3358(span) -#: doc/reference/en/ActiveLdap/Base.html:3360(span) -#: doc/reference/en/ActiveLdap/Base.html:3421(span) -#: doc/reference/en/ActiveLdap/Base.html:3474(span) -#: doc/reference/en/ActiveLdap/Base.html:3475(span) -#: doc/reference/en/ActiveLdap/Base.html:3476(span) -#: doc/reference/en/ActiveLdap/Base.html:3480(span) -#: doc/reference/en/ActiveLdap/Base.html:3482(span) -#: doc/reference/en/ActiveLdap/Base.html:3617(span) -#: doc/reference/en/ActiveLdap/Base.html:3618(span) -#: doc/reference/en/ActiveLdap/Base.html:3646(span) -#: doc/reference/en/ActiveLdap/Base.html:3647(span) -#: doc/reference/en/ActiveLdap/Base.html:3723(span) -#: doc/reference/en/ActiveLdap/Base.html:3724(span) -#: doc/reference/en/ActiveLdap/Base.html:3757(span) -#: doc/reference/en/ActiveLdap/Base.html:3783(span) -#: doc/reference/en/ActiveLdap/Base.html:3814(span) -#: doc/reference/en/ActiveLdap/Base.html:3868(span) -#: doc/reference/en/ActiveLdap/Base.html:3869(span) -#: doc/reference/en/ActiveLdap/Base.html:3930(span) -#: doc/reference/en/ActiveLdap/Base.html:3952(span) -#: doc/reference/en/ActiveLdap/Base.html:3953(span) -#: doc/reference/en/ActiveLdap/Base.html:4051(span) -#: doc/reference/en/ActiveLdap/Base.html:4052(span) -#: doc/reference/en/ActiveLdap/Base.html:4053(span) -#: doc/reference/en/ActiveLdap/Base.html:4082(span) -#: doc/reference/en/ActiveLdap/Base.html:4126(span) -#: doc/reference/en/ActiveLdap/Base.html:4127(span) -#: doc/reference/en/ActiveLdap/Base.html:4128(span) -#: doc/reference/en/ActiveLdap/Base.html:4130(span) -#: doc/reference/en/ActiveLdap/Base.html:4131(span) -#: doc/reference/en/ActiveLdap/Base.html:4208(span) -#: doc/reference/en/ActiveLdap/Base.html:4285(span) -#: doc/reference/en/ActiveLdap/Base.html:4289(span) -#: doc/reference/en/ActiveLdap/Base.html:4292(span) -#: doc/reference/en/ActiveLdap/Base.html:4293(span) -#: doc/reference/en/ActiveLdap/Base.html:4352(span) -#: doc/reference/en/ActiveLdap/Base.html:4356(span) -#: doc/reference/en/ActiveLdap/Base.html:4358(span) -#: doc/reference/en/ActiveLdap/Base.html:4470(span) -#: doc/reference/en/ActiveLdap/Base.html:4471(span) -#: doc/reference/en/ActiveLdap/Base.html:4572(span) -#: doc/reference/en/ActiveLdap/Base.html:4601(span) -#: doc/reference/en/ActiveLdap/Base.html:4700(span) -#: doc/reference/en/ActiveLdap/Base.html:4702(span) -#: doc/reference/en/ActiveLdap/Base.html:4710(span) -#: doc/reference/en/ActiveLdap/Base.html:4714(span) -#: doc/reference/en/ActiveLdap/Base.html:4755(span) -#: doc/reference/en/ActiveLdap/Base.html:4756(span) -#: doc/reference/en/ActiveLdap/Base.html:4798(span) -#: doc/reference/en/ActiveLdap/Base.html:4829(span) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:42(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:42(span) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:40(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:40(span) #: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:274(span) #: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:278(span) #: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:280(span) #: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:282(span) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:42(span) -#: doc/reference/en/ActiveLdap/Association.html:42(span) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:42(span) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:40(span) +#: doc/reference/en/ActiveLdap/Association.html:40(span) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:40(span) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:239(span) #: doc/reference/en/ActiveLdap/AdapterNotFound.html:241(span) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:243(span) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:42(span) -#: doc/reference/en/ActiveLdap/NotImplemented.html:42(span) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:40(span) +#: doc/reference/en/ActiveLdap/NotImplemented.html:40(span) +#: doc/reference/en/ActiveLdap/NotImplemented.html:239(span) #: doc/reference/en/ActiveLdap/NotImplemented.html:241(span) -#: doc/reference/en/ActiveLdap/NotImplemented.html:243(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:371(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:372(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:261(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:262(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:338(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:340(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:472(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:473(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:172(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:176(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:178(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:213(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:216(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:320(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:453(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:454(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:456(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:457(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:486(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:227(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:228(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:229(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:288(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:292(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:293(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:295(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:311(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:355(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:358(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:361(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:404(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:406(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:408(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:443(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:473(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:475(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:506(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:508(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:543(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:633(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:671(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:676(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:705(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:707(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:738(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:740(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:778(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:780(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:784(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:42(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:357(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:358(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:247(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:248(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:185(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:189(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:191(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:227(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:230(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:331(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:463(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:464(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:466(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:467(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:497(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:240(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:241(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:242(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:302(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:306(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:307(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:309(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:325(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:370(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:373(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:376(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:422(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:424(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:426(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:462(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:493(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:495(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:527(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:529(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:565(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:657(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:696(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:701(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:731(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:733(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:765(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:767(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:806(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:808(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:812(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:323(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:324(span) #: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:326(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:327(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:329(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:414(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:415(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:547(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:548(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:196(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:197(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:196(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:197(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:196(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:197(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:418(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:642(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:643(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:646(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:647(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:778(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:859(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:860(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:285(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:412(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:413(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:544(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:545(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:40(span) #: doc/reference/en/ActiveLdap/Ldif/Parser.html:287(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:391(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:392(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:289(span) #: doc/reference/en/ActiveLdap/Ldif/Parser.html:393(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:394(span) #: doc/reference/en/ActiveLdap/Ldif/Parser.html:395(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:398(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:399(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:405(span) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:237(span) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:238(span) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:237(span) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:238(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:261(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:262(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:42(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:413(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:421(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:424(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:426(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:427(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:431(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:433(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:686(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:690(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:734(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:744(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:798(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:800(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:802(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:805(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:169(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:170(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:171(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:172(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:205(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:207(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:208(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:209(span) -#: doc/reference/en/ActiveLdap/SaveError.html:42(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:330(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:388(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:465(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:467(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:469(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:476(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:480(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:531(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:533(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:537(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:541(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:542(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:596(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:598(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:602(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:604(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:606(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:607(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:614(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:615(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:643(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:674(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:676(span) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:42(span) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:42(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:42(span) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:42(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:42(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:269(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:270(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:304(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:305(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:334(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:363(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:391(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:392(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:429(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:431(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:433(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:42(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:343(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:374(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:375(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:408(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:410(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:441(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:442(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:470(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:471(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:499(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:528(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:562(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:564(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:566(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:601(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:603(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:605(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:678(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:686(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:687(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:690(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:691(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:694(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:696(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:698(span) -#: doc/reference/en/ActiveLdap/Command.html:42(span) -#: doc/reference/en/ActiveLdap/Command.html:212(span) -#: doc/reference/en/ActiveLdap/Command.html:216(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:397(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:400(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:401(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:407(span) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:229(span) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:230(span) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:229(span) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:230(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:247(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:248(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:40(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:428(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:436(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:439(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:441(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:442(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:446(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:448(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:699(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:703(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:748(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:758(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:811(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:813(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:815(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:818(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:182(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:183(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:184(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:185(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:219(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:221(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:222(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:223(span) +#: doc/reference/en/ActiveLdap/SaveError.html:40(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:348(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:408(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:487(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:489(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:491(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:498(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:502(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:554(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:556(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:560(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:564(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:565(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:620(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:622(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:626(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:628(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:630(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:631(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:638(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:639(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:668(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:700(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:702(span) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:183(span) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:40(span) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:40(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:40(span) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:40(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:40(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:286(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:287(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:322(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:323(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:353(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:383(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:412(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:413(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:451(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:453(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:455(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:40(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:364(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:365(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:366(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:396(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:397(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:431(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:433(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:465(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:466(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:495(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:496(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:525(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:526(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:555(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:556(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:590(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:592(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:594(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:595(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:596(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:630(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:632(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:634(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:635(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:636(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:708(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:716(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:717(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:720(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:721(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:724(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:726(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:728(span) +#: doc/reference/en/ActiveLdap/Command.html:40(span) #: doc/reference/en/ActiveLdap/Command.html:219(span) -#: doc/reference/en/ActiveLdap/Command.html:222(span) -#: doc/reference/en/ActiveLdap/Command.html:224(span) -#: doc/reference/en/ActiveLdap/Command.html:225(span) +#: doc/reference/en/ActiveLdap/Command.html:223(span) #: doc/reference/en/ActiveLdap/Command.html:226(span) #: doc/reference/en/ActiveLdap/Command.html:229(span) -#: doc/reference/en/ActiveLdap/Command.html:234(span) -#: doc/reference/en/ActiveLdap/Command.html:235(span) -#: doc/reference/en/ActiveLdap/Command.html:239(span) -#: doc/reference/en/ActiveLdap/Command.html:273(span) -#: doc/reference/en/ActiveLdap/Command.html:274(span) -#: doc/reference/en/ActiveLdap/Command.html:275(span) -#: doc/reference/en/ActiveLdap/Command.html:278(span) -#: doc/reference/en/ActiveLdap/ConnectionError.html:42(span) -#: doc/reference/en/ActiveLdap/Populate.html:42(span) -#: doc/reference/en/ActiveLdap/Populate.html:200(span) -#: doc/reference/en/ActiveLdap/Populate.html:202(span) -#: doc/reference/en/ActiveLdap/Populate.html:204(span) -#: doc/reference/en/ActiveLdap/Populate.html:209(span) -#: doc/reference/en/ActiveLdap/Populate.html:210(span) -#: doc/reference/en/ActiveLdap/Populate.html:213(span) -#: doc/reference/en/ActiveLdap/Populate.html:257(span) -#: doc/reference/en/ActiveLdap/Populate.html:259(span) -#: doc/reference/en/ActiveLdap/Populate.html:260(span) -#: doc/reference/en/ActiveLdap/Populate.html:262(span) -#: doc/reference/en/ActiveLdap/Populate.html:266(span) -#: doc/reference/en/ActiveLdap/Populate.html:268(span) -#: doc/reference/en/ActiveLdap/Populate.html:269(span) -#: doc/reference/en/ActiveLdap/Populate.html:308(span) -#: doc/reference/en/ActiveLdap/Populate.html:310(span) -#: doc/reference/en/ActiveLdap/Populate.html:311(span) -#: doc/reference/en/ActiveLdap/Populate.html:313(span) -#: doc/reference/en/ActiveLdap/Populate.html:316(span) -#: doc/reference/en/ActiveLdap/Populate.html:317(span) -#: doc/reference/en/ActiveLdap/Populate.html:318(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:42(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:288(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:290(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:291(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:292(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:410(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:412(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:413(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:414(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:418(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:419(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:420(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:422(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:424(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:429(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:434(span) -#: doc/reference/en/ActiveLdap/Error.html:42(span) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:42(span) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:42(span) +#: doc/reference/en/ActiveLdap/Command.html:231(span) +#: doc/reference/en/ActiveLdap/Command.html:232(span) +#: doc/reference/en/ActiveLdap/Command.html:233(span) +#: doc/reference/en/ActiveLdap/Command.html:236(span) +#: doc/reference/en/ActiveLdap/Command.html:241(span) +#: doc/reference/en/ActiveLdap/Command.html:242(span) +#: doc/reference/en/ActiveLdap/Command.html:246(span) +#: doc/reference/en/ActiveLdap/Command.html:281(span) +#: doc/reference/en/ActiveLdap/Command.html:282(span) +#: doc/reference/en/ActiveLdap/Command.html:283(span) +#: doc/reference/en/ActiveLdap/Command.html:286(span) +#: doc/reference/en/ActiveLdap/ConnectionError.html:40(span) +#: doc/reference/en/ActiveLdap/Populate.html:40(span) +#: doc/reference/en/ActiveLdap/Populate.html:214(span) +#: doc/reference/en/ActiveLdap/Populate.html:216(span) +#: doc/reference/en/ActiveLdap/Populate.html:218(span) +#: doc/reference/en/ActiveLdap/Populate.html:223(span) +#: doc/reference/en/ActiveLdap/Populate.html:224(span) +#: doc/reference/en/ActiveLdap/Populate.html:227(span) +#: doc/reference/en/ActiveLdap/Populate.html:272(span) +#: doc/reference/en/ActiveLdap/Populate.html:274(span) +#: doc/reference/en/ActiveLdap/Populate.html:275(span) +#: doc/reference/en/ActiveLdap/Populate.html:277(span) +#: doc/reference/en/ActiveLdap/Populate.html:281(span) +#: doc/reference/en/ActiveLdap/Populate.html:283(span) +#: doc/reference/en/ActiveLdap/Populate.html:284(span) +#: doc/reference/en/ActiveLdap/Populate.html:324(span) +#: doc/reference/en/ActiveLdap/Populate.html:326(span) +#: doc/reference/en/ActiveLdap/Populate.html:327(span) +#: doc/reference/en/ActiveLdap/Populate.html:329(span) +#: doc/reference/en/ActiveLdap/Populate.html:332(span) +#: doc/reference/en/ActiveLdap/Populate.html:333(span) +#: doc/reference/en/ActiveLdap/Populate.html:334(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:40(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:261(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:263(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:264(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:265(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:383(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:385(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:386(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:387(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:391(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:392(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:393(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:395(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:397(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:402(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:407(span) +#: doc/reference/en/ActiveLdap/Error.html:40(span) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:40(span) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:40(span) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:240(span) #: doc/reference/en/ActiveLdap/EntryInvalid.html:242(span) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:244(span) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:245(span) -#: doc/reference/en/ActiveLdap/Association/Collection.html:42(span) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:42(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:42(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:389(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:393(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:430(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:432(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:467(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:739(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:740(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:741(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:799(span) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:42(span) -#: doc/reference/en/ActiveLdap/Association/Children.html:42(span) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:42(span) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:42(span) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:42(span) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:226(span) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:230(span) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:231(span) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:42(span) -#: doc/reference/en/ActiveLdap/Helper.html:42(span) -#: doc/reference/en/ActiveLdap/Helper.html:285(span) -#: doc/reference/en/ActiveLdap/Helper.html:286(span) -#: doc/reference/en/ActiveLdap/Helper.html:318(span) -#: doc/reference/en/ActiveLdap/Helper.html:319(span) -#: doc/reference/en/ActiveLdap/Helper.html:402(span) -#: doc/reference/en/ActiveLdap/Helper.html:412(span) -#: doc/reference/en/ActiveLdap/Helper.html:413(span) -#: doc/reference/en/ActiveLdap/Helper.html:417(span) -#: doc/reference/en/ActiveLdap/Helper.html:421(span) -#: doc/reference/en/ActiveLdap/Helper.html:435(span) -#: doc/reference/en/ActiveLdap/Helper.html:439(span) -#: doc/reference/en/ActiveLdap/Helper.html:450(span) -#: doc/reference/en/ActiveLdap/Helper.html:452(span) -#: doc/reference/en/ActiveLdap/Helper.html:457(span) -#: doc/reference/en/ActiveLdap/Helper.html:458(span) -#: doc/reference/en/ActiveLdap/Helper.html:490(span) -#: doc/reference/en/ActiveLdap/Helper.html:491(span) -#: doc/reference/en/ActiveLdap/Helper.html:523(span) -#: doc/reference/en/ActiveLdap/Helper.html:524(span) -#: doc/reference/en/ActiveLdap/Helper.html:556(span) -#: doc/reference/en/ActiveLdap/Helper.html:557(span) -#: doc/reference/en/ActiveLdap/Helper.html:589(span) -#: doc/reference/en/ActiveLdap/Helper.html:590(span) -#: doc/reference/en/ActiveLdap/Railties.html:42(span) -#: doc/reference/en/ActiveLdap/HumanReadable.html:42(span) -#: doc/reference/en/ActiveLdap/HumanReadable.html:158(span) -#: doc/reference/en/ActiveLdap/HumanReadable.html:160(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:42(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:242(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:282(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:283(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:323(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:324(span) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:42(span) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:243(span) +#: doc/reference/en/ActiveLdap/Association/Collection.html:40(span) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:40(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:40(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:409(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:413(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:451(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:453(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:489(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:768(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:769(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:770(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:830(span) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:40(span) +#: doc/reference/en/ActiveLdap/Association/Children.html:40(span) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:40(span) +#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:40(span) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:40(span) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:233(span) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:237(span) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:238(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Query.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Write.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/BeforeTypeCast.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Read.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:40(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:231(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:281(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:331(span) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:40(span) +#: doc/reference/en/ActiveLdap/Helper.html:40(span) +#: doc/reference/en/ActiveLdap/Helper.html:303(span) +#: doc/reference/en/ActiveLdap/Helper.html:304(span) +#: doc/reference/en/ActiveLdap/Helper.html:337(span) +#: doc/reference/en/ActiveLdap/Helper.html:338(span) +#: doc/reference/en/ActiveLdap/Helper.html:422(span) +#: doc/reference/en/ActiveLdap/Helper.html:432(span) +#: doc/reference/en/ActiveLdap/Helper.html:433(span) +#: doc/reference/en/ActiveLdap/Helper.html:437(span) +#: doc/reference/en/ActiveLdap/Helper.html:441(span) +#: doc/reference/en/ActiveLdap/Helper.html:455(span) +#: doc/reference/en/ActiveLdap/Helper.html:459(span) +#: doc/reference/en/ActiveLdap/Helper.html:470(span) +#: doc/reference/en/ActiveLdap/Helper.html:472(span) +#: doc/reference/en/ActiveLdap/Helper.html:477(span) +#: doc/reference/en/ActiveLdap/Helper.html:478(span) +#: doc/reference/en/ActiveLdap/Helper.html:511(span) +#: doc/reference/en/ActiveLdap/Helper.html:512(span) +#: doc/reference/en/ActiveLdap/Helper.html:545(span) +#: doc/reference/en/ActiveLdap/Helper.html:546(span) +#: doc/reference/en/ActiveLdap/Helper.html:579(span) +#: doc/reference/en/ActiveLdap/Helper.html:580(span) +#: doc/reference/en/ActiveLdap/Helper.html:613(span) +#: doc/reference/en/ActiveLdap/Helper.html:614(span) +#: doc/reference/en/ActiveLdap/Railties.html:40(span) +#: doc/reference/en/ActiveLdap/HumanReadable.html:40(span) +#: doc/reference/en/ActiveLdap/HumanReadable.html:166(span) +#: doc/reference/en/ActiveLdap/HumanReadable.html:168(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:40(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:249(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:289(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:290(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:330(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:331(span) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:40(span) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:239(span) #: doc/reference/en/ActiveLdap/UnknownAttribute.html:241(span) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:243(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:231(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:232(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:259(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:295(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:296(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:301(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:304(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:307(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:309(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:351(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:352(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:393(span) -#: doc/reference/en/ActiveLdap/Operations/Find.html:394(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:231(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:232(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:234(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:236(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:279(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:281(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:284(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:287(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:289(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:295(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:329(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:332(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:334(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:335(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:367(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:368(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:370(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:413(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:415(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:418(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:421(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:424(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:143(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:144(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:144(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:146(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:147(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:151(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:152(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:158(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:159(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:164(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:143(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:144(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:223(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:225(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:227(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:228(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:262(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:264(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:265(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:294(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:295(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:323(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:324(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:202(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:203(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:276(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:277(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:241(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:242(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:267(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:302(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:303(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:308(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:311(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:314(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:316(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:358(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:359(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:400(span) +#: doc/reference/en/ActiveLdap/Operations/Find.html:401(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:214(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:216(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:219(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:222(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:224(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:230(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:265(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:268(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:270(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:271(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:315(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:317(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:320(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:323(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:326(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:155(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:156(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:156(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:158(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:159(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:163(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:164(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:170(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:171(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:176(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:155(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:156(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:238(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:240(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:242(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:243(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:278(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:280(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:281(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:311(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:312(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:341(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:342(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:215(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:216(span) #: doc/reference/en/ActiveLdap/Operations/Common.html:290(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:295(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:296(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:373(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:374(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:381(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:386(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:391(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:393(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:291(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:304(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:309(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:310(span) #: doc/reference/en/ActiveLdap/Operations/Common.html:394(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:396(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:397(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:412(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:395(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:403(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:408(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:413(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:415(span) #: doc/reference/en/ActiveLdap/Operations/Common.html:416(span) #: doc/reference/en/ActiveLdap/Operations/Common.html:418(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:422(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:42(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:231(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:233(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:236(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:269(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:272(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:275(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:305(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:308(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:347(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:348(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:353(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:356(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:419(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:434(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:435(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:438(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:440(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:442(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:449(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:225(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:227(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:230(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:264(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:267(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:270(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:301(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:304(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:354(span) #: doc/reference/en/ActiveLdap/Operations/Update.html:357(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:408(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:411(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:412(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:414(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:417(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:422(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:424(span) -#: doc/reference/en/ActiveLdap/Operations/Update.html:429(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:42(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:235(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:329(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:358(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:360(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:363(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:368(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:370(span) +#: doc/reference/en/ActiveLdap/Operations/Update.html:375(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:166(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:167(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:172(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:175(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:176(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:40(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:181(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:182(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:184(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:186(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:218(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:219(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:221(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:40(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:228(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:327(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:328(span) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:330(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:332(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:336(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:350(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:351(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:359(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:362(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:363(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:456(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:457(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:334(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:348(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:349(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:357(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:358(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:368(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:369(span) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:459(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:460(span) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:462(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:479(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:481(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:465(span) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:482(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:488(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:489(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:519(span) -#: doc/reference/en/ActiveLdap/Associations.html:42(span) -#: doc/reference/en/ActiveLdap/Associations.html:202(span) -#: doc/reference/en/ActiveLdap/Associations.html:204(span) -#: doc/reference/en/ActiveLdap/Associations.html:205(span) -#: doc/reference/en/ActiveLdap/Associations.html:245(span) -#: doc/reference/en/ActiveLdap/Associations.html:246(span) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:42(span) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:42(span) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:150(span) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:153(span) -#: doc/reference/en/ActiveLdap/Configuration.html:42(span) -#: doc/reference/en/ActiveLdap/Configuration.html:183(span) -#: doc/reference/en/ActiveLdap/Configuration.html:184(span) -#: doc/reference/en/ActiveLdap/Operations.html:42(span) -#: doc/reference/en/ActiveLdap/Operations.html:166(span) -#: doc/reference/en/ActiveLdap/Operations.html:169(span) -#: doc/reference/en/ActiveLdap/Operations.html:170(span) -#: doc/reference/en/ActiveLdap/Operations.html:171(span) -#: doc/reference/en/ActiveLdap/Operations.html:172(span) -#: doc/reference/en/ActiveLdap/Operations.html:173(span) -#: doc/reference/en/ActiveLdap/Operations.html:175(span) -#: doc/reference/en/ActiveLdap/Operations.html:176(span) -#: doc/reference/en/ActiveLdap/Operations.html:177(span) -#: doc/reference/en/ActiveLdap/Operations.html:178(span) -#: doc/reference/en/ActiveLdap/Operations.html:179(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:177(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:178(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:198(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:199(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:198(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:199(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:375(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:378(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:410(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:412(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:448(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:450(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:453(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:485(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:487(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:519(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:522(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:561(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:571(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:606(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:607(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:609(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:612(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:643(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:645(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:724(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:732(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:733(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:735(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:822(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:824(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:853(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:855(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:884(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:886(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:937(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:938(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:940(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:941(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:944(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:946(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:948(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:950(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:952(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:954(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1011(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1014(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1015(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1016(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1021(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1027(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1028(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1029(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1030(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1031(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1032(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1035(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1068(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1157(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1160(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1161(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1165(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1166(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1167(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1261(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1262(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1265(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1267(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1269(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1271(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1276(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1307(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1308(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1339(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1341(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1372(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1376(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1417(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1418(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1420(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1422(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1424(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1430(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:484(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:485(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:491(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:492(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:523(span) +#: doc/reference/en/ActiveLdap/Associations.html:40(span) +#: doc/reference/en/ActiveLdap/Associations.html:213(span) +#: doc/reference/en/ActiveLdap/Associations.html:215(span) +#: doc/reference/en/ActiveLdap/Associations.html:216(span) +#: doc/reference/en/ActiveLdap/Associations.html:257(span) +#: doc/reference/en/ActiveLdap/Associations.html:258(span) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:40(span) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:40(span) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:162(span) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:165(span) +#: doc/reference/en/ActiveLdap/Configuration.html:40(span) +#: doc/reference/en/ActiveLdap/Configuration.html:192(span) +#: doc/reference/en/ActiveLdap/Configuration.html:193(span) +#: doc/reference/en/ActiveLdap/Operations.html:40(span) +#: doc/reference/en/ActiveLdap/Operations.html:180(span) +#: doc/reference/en/ActiveLdap/Operations.html:183(span) +#: doc/reference/en/ActiveLdap/Operations.html:184(span) +#: doc/reference/en/ActiveLdap/Operations.html:185(span) +#: doc/reference/en/ActiveLdap/Operations.html:186(span) +#: doc/reference/en/ActiveLdap/Operations.html:187(span) +#: doc/reference/en/ActiveLdap/Operations.html:188(span) +#: doc/reference/en/ActiveLdap/Operations.html:189(span) +#: doc/reference/en/ActiveLdap/Operations.html:191(span) +#: doc/reference/en/ActiveLdap/Operations.html:192(span) +#: doc/reference/en/ActiveLdap/Operations.html:193(span) +#: doc/reference/en/ActiveLdap/Operations.html:194(span) +#: doc/reference/en/ActiveLdap/Operations.html:195(span) +#: doc/reference/en/ActiveLdap/GetText.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:183(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:184(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:205(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:206(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:205(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:206(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:384(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:387(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:420(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:422(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:459(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:461(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:464(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:497(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:499(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:532(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:535(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:575(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:585(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:621(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:622(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:624(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:627(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:659(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:661(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:743(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:751(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:752(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:754(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:841(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:843(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:873(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:875(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:905(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:907(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:959(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:960(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:962(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:963(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:966(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:968(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:970(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:972(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:974(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:976(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1034(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1037(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1038(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1039(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1044(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1050(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1051(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1052(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1053(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1054(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1055(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1058(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1092(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1183(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1186(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1187(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1191(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1192(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1193(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1289(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1290(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1293(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1295(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1297(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1299(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1304(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1336(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1337(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1369(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1371(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1403(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1406(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1407(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1449(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1450(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1452(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1454(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1456(span) #: doc/reference/en/ActiveLdap/Adapter/Base.html:1462(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1463(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1464(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1465(span) #: doc/reference/en/ActiveLdap/Adapter/Base.html:1495(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1524(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1525(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1526(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1611(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1612(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1627(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1634(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1635(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1637(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1685(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1686(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1688(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1694(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1696(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1697(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1703(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1496(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1497(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1498(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1529(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1559(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1560(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1561(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1648(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1649(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1664(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1671(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1672(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1674(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1723(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1724(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1726(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1732(span) #: doc/reference/en/ActiveLdap/Adapter/Base.html:1734(span) #: doc/reference/en/ActiveLdap/Adapter/Base.html:1735(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:399(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:402(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:405(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:406(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:408(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:440(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:474(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:476(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:512(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:514(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:517(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:557(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:562(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:564(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:566(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:606(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:609(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:612(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:613(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:615(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:657(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:660(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:669(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:723(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:724(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:727(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:731(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:734(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:737(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:743(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:779(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:781(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:471(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:515(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:518(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:520(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:550(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:630(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:631(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:660(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:661(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:662(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:695(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:698(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:699(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:701(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:730(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:731(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:776(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:782(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:785(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:789(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:792(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:822(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:823(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:361(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:362(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:595(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:597(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:599(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:630(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:42(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:115(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:409(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:419(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:452(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:488(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:490(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:535(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:543(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:546(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:583(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:587(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:621(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:626(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:670(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:673(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:685(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:734(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:735(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:744(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:747(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:753(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:787(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:789(span) -#: doc/reference/en/ActiveLdap/Xml.html:42(span) -#: doc/reference/en/ActiveLdap/Xml.html:205(span) -#: doc/reference/en/ActiveLdap/Xml.html:243(span) -#: doc/reference/en/ActiveLdap/Xml.html:244(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:385(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:387(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:389(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:158(span) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:225(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:226(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:263(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:249(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:250(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:251(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:255(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:314(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:315(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:316(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1741(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1773(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1774(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:410(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:413(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:416(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:417(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:419(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:452(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:487(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:489(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:526(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:528(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:531(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:572(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:577(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:579(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:581(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:622(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:625(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:628(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:629(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:631(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:674(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:677(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:686(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:741(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:742(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:745(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:749(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:752(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:755(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:761(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:798(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:800(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:480(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:525(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:528(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:530(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:561(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:643(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:644(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:674(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:675(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:676(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:710(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:713(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:714(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:716(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:746(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:747(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:793(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:799(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:802(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:806(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:809(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:840(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:841(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:375(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:376(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:608(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:610(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:612(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:644(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:40(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:413(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:423(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:457(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:494(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:496(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:542(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:550(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:553(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:591(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:595(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:630(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:635(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:680(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:683(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:695(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:745(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:746(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:755(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:758(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:764(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:799(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:801(span) +#: doc/reference/en/ActiveLdap/Xml.html:40(span) +#: doc/reference/en/ActiveLdap/Xml.html:216(span) +#: doc/reference/en/ActiveLdap/Xml.html:255(span) +#: doc/reference/en/ActiveLdap/Xml.html:256(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:170(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:229(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:230(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:268(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:252(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:253(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:254(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:258(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:318(span) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:319(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:321(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:328(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:333(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:334(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:320(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:323(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:324(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:332(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:337(span) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:338(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:225(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:226(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:261(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:263(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:271(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:300(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:351(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:352(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:380(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:381(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:225(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:226(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:263(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:266(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:228(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:271(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:42(span) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:408(span) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:411(span) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:415(span) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:42(span) -#: doc/reference/en/ActiveLdap.html:42(span) -#: doc/reference/en/ActiveLdap.html:241(span) -#: doc/reference/en/ActiveLdap.html:247(span) -#: doc/reference/en/ActiveLdap.html:248(span) -#: doc/reference/en/ActiveLdap.html:249(span) -#: doc/reference/en/ActiveLdap.html:304(span) -#: doc/reference/en/Net.html:42(span) -#: doc/reference/en/file.README.html:40(span) -#: doc/reference/en/LDAP/Conn.html:42(span) -#: doc/reference/en/LDAP/Conn.html:293(span) -#: doc/reference/en/LDAP/Conn.html:328(span) -#: doc/reference/en/LDAP/Conn.html:420(span) -#: doc/reference/en/LDAP/Conn.html:423(span) -#: doc/reference/en/LDAP/Conn.html:426(span) -#: doc/reference/en/LDAP/Conn.html:428(span) -#: doc/reference/en/LDAP/Mod.html:42(span) -#: doc/reference/en/LDAP/Mod.html:238(span) -#: doc/reference/en/LDAP/Mod.html:239(span) -#: doc/reference/en/LDAP/Mod.html:242(span) -#: doc/reference/en/file.tutorial.html:40(span) -#: doc/reference/en/file.tutorial.html:135(span) -#: doc/reference/en/file.tutorial.html:139(span) -#: doc/reference/en/file.tutorial.html:229(span) -#: doc/reference/en/file.tutorial.html:245(span) -#: doc/reference/en/file.tutorial.html:253(span) -#: doc/reference/en/file.tutorial.html:322(span) -#: doc/reference/en/file.tutorial.html:350(span) -#: doc/reference/en/file.tutorial.html:356(span) -#: doc/reference/en/file.tutorial.html:371(span) -#: doc/reference/en/file.tutorial.html:392(span) -#: doc/reference/en/file.tutorial.html:423(span) -#: doc/reference/en/file.tutorial.html:539(span) -#: doc/reference/en/file.tutorial.html:540(span) -#: doc/reference/en/file.tutorial.html:541(span) -#: doc/reference/en/file.tutorial.html:560(span) -#: doc/reference/en/file.tutorial.html:564(span) -#: doc/reference/en/file.tutorial.html:566(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:342(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:229(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:230(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:266(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:268(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:277(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:307(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:359(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:360(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:389(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:390(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:229(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:230(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:268(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:271(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:232(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:276(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:40(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:40(span) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:40(span) +#: doc/reference/en/ActiveLdap.html:40(span) +#: doc/reference/en/ActiveLdap.html:244(span) +#: doc/reference/en/ActiveLdap.html:250(span) +#: doc/reference/en/ActiveLdap.html:251(span) +#: doc/reference/en/ActiveLdap.html:252(span) +#: doc/reference/en/Net.html:40(span) +#: doc/reference/en/file.README.html:38(span) +#: doc/reference/en/LDAP/Conn.html:40(span) +#: doc/reference/en/LDAP/Conn.html:332(span) +#: doc/reference/en/LDAP/Conn.html:368(span) +#: doc/reference/en/LDAP/Conn.html:462(span) +#: doc/reference/en/LDAP/Conn.html:465(span) +#: doc/reference/en/LDAP/Conn.html:468(span) +#: doc/reference/en/LDAP/Conn.html:470(span) +#: doc/reference/en/LDAP/Mod.html:40(span) +#: doc/reference/en/LDAP/Mod.html:251(span) +#: doc/reference/en/LDAP/Mod.html:252(span) +#: doc/reference/en/LDAP/Mod.html:255(span) +#: doc/reference/en/file.tutorial.html:38(span) +#: doc/reference/en/file.tutorial.html:430(span) +#: doc/reference/en/file.tutorial.html:546(span) +#: doc/reference/en/file.tutorial.html:547(span) +#: doc/reference/en/file.tutorial.html:548(span) #: doc/reference/en/file.tutorial.html:567(span) #: doc/reference/en/file.tutorial.html:571(span) -#: doc/reference/en/file.tutorial.html:572(span) -#: doc/reference/en/file.tutorial.html:589(span) -#: doc/reference/en/file.tutorial.html:590(span) -#: doc/reference/en/file.tutorial.html:591(span) -#: doc/reference/en/file.tutorial.html:610(span) -#: doc/reference/en/file.tutorial.html:614(span) -#: doc/reference/en/file.tutorial.html:616(span) +#: doc/reference/en/file.tutorial.html:573(span) +#: doc/reference/en/file.tutorial.html:574(span) +#: doc/reference/en/file.tutorial.html:578(span) +#: doc/reference/en/file.tutorial.html:579(span) +#: doc/reference/en/file.tutorial.html:596(span) +#: doc/reference/en/file.tutorial.html:597(span) +#: doc/reference/en/file.tutorial.html:598(span) #: doc/reference/en/file.tutorial.html:617(span) #: doc/reference/en/file.tutorial.html:621(span) -#: doc/reference/en/file.tutorial.html:636(span) -#: doc/reference/en/file.tutorial.html:637(span) -#: doc/reference/en/file.tutorial.html:638(span) -#: doc/reference/en/file.tutorial.html:657(span) -#: doc/reference/en/file.tutorial.html:661(span) -#: doc/reference/en/file.tutorial.html:663(span) +#: doc/reference/en/file.tutorial.html:623(span) +#: doc/reference/en/file.tutorial.html:624(span) +#: doc/reference/en/file.tutorial.html:628(span) +#: doc/reference/en/file.tutorial.html:643(span) +#: doc/reference/en/file.tutorial.html:644(span) +#: doc/reference/en/file.tutorial.html:645(span) #: doc/reference/en/file.tutorial.html:664(span) #: doc/reference/en/file.tutorial.html:668(span) -#: doc/reference/en/file.tutorial.html:677(span) -#: doc/reference/en/file.tutorial.html:685(span) -#: doc/reference/en/file.tutorial.html:698(span) -#: doc/reference/en/file.tutorial.html:751(span) -#: doc/reference/en/file.tutorial.html:761(span) -#: doc/reference/en/file.tutorial.html:763(span) -#: doc/reference/en/file.tutorial.html:771(span) -#: doc/reference/en/file.tutorial.html:780(span) -#: doc/reference/en/file.tutorial.html:784(span) -#: doc/reference/en/file.tutorial.html:786(span) -#: doc/reference/en/file.tutorial.html:830(span) -#: doc/reference/en/file.tutorial.html:831(span) -#: doc/reference/en/Timeout.html:42(span) -#: doc/reference/en/Timeout.html:160(span) -#: doc/reference/en/Timeout.html:161(span) -#: doc/reference/en/file.rails.html:40(span) -#: doc/reference/en/_index.html:38(span) doc/reference/en/LDAP.html:42(span) +#: doc/reference/en/file.tutorial.html:670(span) +#: doc/reference/en/file.tutorial.html:671(span) +#: doc/reference/en/file.tutorial.html:675(span) +#: doc/reference/en/file.tutorial.html:705(span) +#: doc/reference/en/Timeout.html:40(span) +#: doc/reference/en/Timeout.html:219(span) +#: doc/reference/en/Timeout.html:224(span) +#: doc/reference/en/Timeout.html:228(span) +#: doc/reference/en/Timeout.html:230(span) +#: doc/reference/en/Timeout.html:232(span) +#: doc/reference/en/Timeout.html:241(span) +#: doc/reference/en/Timeout.html:243(span) +#: doc/reference/en/Timeout.html:249(span) +#: doc/reference/en/Timeout.html:251(span) +#: doc/reference/en/Timeout.html:253(span) +#: doc/reference/en/Timeout.html:263(span) +#: doc/reference/en/Timeout.html:266(span) +#: doc/reference/en/Timeout.html:268(span) +#: doc/reference/en/file.rails.html:38(span) +#: doc/reference/en/_index.html:33(span) doc/reference/en/LDAP.html:40(span) msgid ")" msgstr "" -#: doc/reference/en/file.news.html:45(a) -#: doc/reference/en/file.development.html:45(a) -#: doc/reference/en/top-level-namespace.html:47(a) +#: doc/reference/en/file.news.html:44(a) +#: doc/reference/en/file.development.html:44(a) +#: doc/reference/en/top-level-namespace.html:46(a) #: doc/reference/en/class_list.html:28(h1) -#: doc/reference/en/Net/LDAP/Entry.html:47(a) -#: doc/reference/en/Net/LDAP.html:47(a) doc/reference/en/index.html:45(a) -#: doc/reference/en/ActiveLdap/ActionController.html:47(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:47(a) -#: doc/reference/en/ActiveLdap/Escape.html:47(a) -#: doc/reference/en/ActiveLdap/Compatible.html:47(a) -#: doc/reference/en/ActiveLdap/LdapError.html:47(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:47(a) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif.html:47(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:47(a) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:47(a) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:47(a) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:47(a) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:47(a) -#: doc/reference/en/ActiveLdap/Generators.html:47(a) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:47(a) -#: doc/reference/en/ActiveLdap/Railtie.html:47(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:47(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:47(a) -#: doc/reference/en/ActiveLdap/Persistence.html:47(a) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:47(a) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:47(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:47(a) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:47(a) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:47(a) -#: doc/reference/en/ActiveLdap/Acts.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter.html:47(a) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:47(a) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:47(a) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:47(a) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:47(a) -#: doc/reference/en/ActiveLdap/Connection.html:47(a) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:47(a) -#: doc/reference/en/ActiveLdap/Schema.html:47(a) -#: doc/reference/en/ActiveLdap/DeleteError.html:47(a) -#: doc/reference/en/ActiveLdap/Validations.html:47(a) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:47(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:47(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:47(a) -#: doc/reference/en/ActiveLdap/Attributes.html:47(a) -#: doc/reference/en/ActiveLdap/TimeoutError.html:47(a) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:47(a) -#: doc/reference/en/ActiveLdap/Base.html:47(a) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:47(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:47(a) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:47(a) -#: doc/reference/en/ActiveLdap/Association.html:47(a) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:47(a) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:47(a) -#: doc/reference/en/ActiveLdap/NotImplemented.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:47(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:47(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:47(a) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:47(a) -#: doc/reference/en/ActiveLdap/SaveError.html:47(a) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:47(a) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:47(a) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:47(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:47(a) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:47(a) -#: doc/reference/en/ActiveLdap/ObjectClass.html:47(a) -#: doc/reference/en/ActiveLdap/UserPassword.html:47(a) -#: doc/reference/en/ActiveLdap/Command.html:47(a) -#: doc/reference/en/ActiveLdap/ConnectionError.html:47(a) -#: doc/reference/en/ActiveLdap/Populate.html:47(a) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:47(a) -#: doc/reference/en/ActiveLdap/Error.html:47(a) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:47(a) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:47(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:47(a) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:47(a) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:47(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:47(a) -#: doc/reference/en/ActiveLdap/Association/Children.html:47(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:47(a) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:47(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:47(a) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:47(a) -#: doc/reference/en/ActiveLdap/Helper.html:47(a) -#: doc/reference/en/ActiveLdap/Railties.html:47(a) -#: doc/reference/en/ActiveLdap/HumanReadable.html:47(a) -#: doc/reference/en/ActiveLdap/Callbacks.html:47(a) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/Find.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/Common.html:47(a) -#: doc/reference/en/ActiveLdap/Operations/Update.html:47(a) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:47(a) -#: doc/reference/en/ActiveLdap/Associations.html:47(a) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:47(a) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:47(a) -#: doc/reference/en/ActiveLdap/Configuration.html:47(a) -#: doc/reference/en/ActiveLdap/Operations.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:47(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:47(a) -#: doc/reference/en/ActiveLdap/Xml.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:47(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:47(a) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:47(a) -#: doc/reference/en/ActiveLdap.html:47(a) doc/reference/en/Net.html:47(a) -#: doc/reference/en/file.README.html:45(a) -#: doc/reference/en/LDAP/Conn.html:47(a) doc/reference/en/LDAP/Mod.html:47(a) -#: doc/reference/en/file.tutorial.html:45(a) -#: doc/reference/en/Timeout.html:47(a) doc/reference/en/file.rails.html:45(a) -#: doc/reference/en/_index.html:43(a) doc/reference/en/LDAP.html:47(a) +#: doc/reference/en/Net/LDAP/Entry.html:46(a) +#: doc/reference/en/Net/LDAP.html:46(a) doc/reference/en/index.html:44(a) +#: doc/reference/en/ActiveLdap/ActionController.html:46(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:46(a) +#: doc/reference/en/ActiveLdap/Escape.html:46(a) +#: doc/reference/en/ActiveLdap/Compatible.html:46(a) +#: doc/reference/en/ActiveLdap/LdapError.html:46(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:46(a) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif.html:46(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:46(a) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:46(a) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:46(a) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:46(a) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:46(a) +#: doc/reference/en/ActiveLdap/Generators.html:46(a) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:46(a) +#: doc/reference/en/ActiveLdap/Railtie.html:46(a) +#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:46(a) +#: doc/reference/en/ActiveLdap/Persistence.html:46(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:46(a) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:46(a) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:46(a) +#: doc/reference/en/ActiveLdap/Acts.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter.html:46(a) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:46(a) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:46(a) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:46(a) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:46(a) +#: doc/reference/en/ActiveLdap/Connection.html:46(a) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:46(a) +#: doc/reference/en/ActiveLdap/Schema.html:46(a) +#: doc/reference/en/ActiveLdap/DeleteError.html:46(a) +#: doc/reference/en/ActiveLdap/Validations.html:46(a) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:46(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:46(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:46(a) +#: doc/reference/en/ActiveLdap/Attributes.html:46(a) +#: doc/reference/en/ActiveLdap/TimeoutError.html:46(a) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:46(a) +#: doc/reference/en/ActiveLdap/Base.html:46(a) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:46(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:46(a) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:46(a) +#: doc/reference/en/ActiveLdap/Association.html:46(a) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:46(a) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:46(a) +#: doc/reference/en/ActiveLdap/NotImplemented.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:46(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:46(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:46(a) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:46(a) +#: doc/reference/en/ActiveLdap/SaveError.html:46(a) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:46(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:46(a) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:46(a) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:46(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:46(a) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:46(a) +#: doc/reference/en/ActiveLdap/ObjectClass.html:46(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:46(a) +#: doc/reference/en/ActiveLdap/Command.html:46(a) +#: doc/reference/en/ActiveLdap/ConnectionError.html:46(a) +#: doc/reference/en/ActiveLdap/Populate.html:46(a) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:46(a) +#: doc/reference/en/ActiveLdap/Error.html:46(a) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:46(a) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:46(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:46(a) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:46(a) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:46(a) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:46(a) +#: doc/reference/en/ActiveLdap/Association/Children.html:46(a) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:46(a) +#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:46(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:46(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Query.html:46(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Write.html:46(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/BeforeTypeCast.html:46(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Read.html:46(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:46(a) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:46(a) +#: doc/reference/en/ActiveLdap/Helper.html:46(a) +#: doc/reference/en/ActiveLdap/Railties.html:46(a) +#: doc/reference/en/ActiveLdap/HumanReadable.html:46(a) +#: doc/reference/en/ActiveLdap/Callbacks.html:46(a) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/Find.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/Common.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/Update.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:46(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:46(a) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:46(a) +#: doc/reference/en/ActiveLdap/Associations.html:46(a) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:46(a) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:46(a) +#: doc/reference/en/ActiveLdap/Configuration.html:46(a) +#: doc/reference/en/ActiveLdap/Operations.html:46(a) +#: doc/reference/en/ActiveLdap/GetText.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:46(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:46(a) +#: doc/reference/en/ActiveLdap/Xml.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:46(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:46(a) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:46(a) +#: doc/reference/en/ActiveLdap.html:46(a) doc/reference/en/Net.html:46(a) +#: doc/reference/en/file.README.html:44(a) +#: doc/reference/en/LDAP/Conn.html:46(a) doc/reference/en/LDAP/Mod.html:46(a) +#: doc/reference/en/file.tutorial.html:44(a) +#: doc/reference/en/Timeout.html:46(a) doc/reference/en/file.rails.html:44(a) +#: doc/reference/en/_index.html:39(a) doc/reference/en/LDAP.html:46(a) msgid "Class List" msgstr "?????" -#: doc/reference/en/file.news.html:47(a) -#: doc/reference/en/file.development.html:47(a) -#: doc/reference/en/top-level-namespace.html:49(a) -#: doc/reference/en/method_list.html:28(h1) -#: doc/reference/en/Net/LDAP/Entry.html:49(a) -#: doc/reference/en/Net/LDAP.html:49(a) doc/reference/en/index.html:47(a) -#: doc/reference/en/ActiveLdap/ActionController.html:49(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:49(a) -#: doc/reference/en/ActiveLdap/Escape.html:49(a) -#: doc/reference/en/ActiveLdap/Compatible.html:49(a) -#: doc/reference/en/ActiveLdap/LdapError.html:49(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:49(a) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif.html:49(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:49(a) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:49(a) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:49(a) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:49(a) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:49(a) -#: doc/reference/en/ActiveLdap/Generators.html:49(a) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:49(a) -#: doc/reference/en/ActiveLdap/Railtie.html:49(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:49(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:49(a) -#: doc/reference/en/ActiveLdap/Persistence.html:49(a) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:49(a) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:49(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:49(a) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:49(a) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:49(a) -#: doc/reference/en/ActiveLdap/Acts.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter.html:49(a) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:49(a) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:49(a) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:49(a) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:49(a) -#: doc/reference/en/ActiveLdap/Connection.html:49(a) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:49(a) -#: doc/reference/en/ActiveLdap/Schema.html:49(a) -#: doc/reference/en/ActiveLdap/DeleteError.html:49(a) -#: doc/reference/en/ActiveLdap/Validations.html:49(a) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:49(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:49(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:49(a) -#: doc/reference/en/ActiveLdap/Attributes.html:49(a) -#: doc/reference/en/ActiveLdap/TimeoutError.html:49(a) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:49(a) -#: doc/reference/en/ActiveLdap/Base.html:49(a) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:49(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:49(a) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:49(a) -#: doc/reference/en/ActiveLdap/Association.html:49(a) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:49(a) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:49(a) -#: doc/reference/en/ActiveLdap/NotImplemented.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:49(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:49(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:49(a) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:49(a) -#: doc/reference/en/ActiveLdap/SaveError.html:49(a) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:49(a) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:49(a) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:49(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:49(a) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:49(a) -#: doc/reference/en/ActiveLdap/ObjectClass.html:49(a) -#: doc/reference/en/ActiveLdap/UserPassword.html:49(a) -#: doc/reference/en/ActiveLdap/Command.html:49(a) -#: doc/reference/en/ActiveLdap/ConnectionError.html:49(a) -#: doc/reference/en/ActiveLdap/Populate.html:49(a) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:49(a) -#: doc/reference/en/ActiveLdap/Error.html:49(a) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:49(a) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:49(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:49(a) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:49(a) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:49(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:49(a) -#: doc/reference/en/ActiveLdap/Association/Children.html:49(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:49(a) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:49(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:49(a) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:49(a) -#: doc/reference/en/ActiveLdap/Helper.html:49(a) -#: doc/reference/en/ActiveLdap/Railties.html:49(a) -#: doc/reference/en/ActiveLdap/HumanReadable.html:49(a) -#: doc/reference/en/ActiveLdap/Callbacks.html:49(a) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/Find.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/Common.html:49(a) -#: doc/reference/en/ActiveLdap/Operations/Update.html:49(a) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:49(a) -#: doc/reference/en/ActiveLdap/Associations.html:49(a) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:49(a) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:49(a) -#: doc/reference/en/ActiveLdap/Configuration.html:49(a) -#: doc/reference/en/ActiveLdap/Operations.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:49(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:49(a) -#: doc/reference/en/ActiveLdap/Xml.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:49(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:49(a) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:49(a) -#: doc/reference/en/ActiveLdap.html:49(a) doc/reference/en/Net.html:49(a) -#: doc/reference/en/file.README.html:47(a) -#: doc/reference/en/LDAP/Conn.html:49(a) doc/reference/en/LDAP/Mod.html:49(a) -#: doc/reference/en/file.tutorial.html:47(a) -#: doc/reference/en/Timeout.html:49(a) doc/reference/en/file.rails.html:47(a) -#: doc/reference/en/_index.html:45(a) doc/reference/en/LDAP.html:49(a) -msgid "Method List" -msgstr "??????" - #: doc/reference/en/file.news.html:49(a) #: doc/reference/en/file.development.html:49(a) #: doc/reference/en/top-level-namespace.html:51(a) +#: doc/reference/en/method_list.html:28(h1) #: doc/reference/en/Net/LDAP/Entry.html:51(a) #: doc/reference/en/Net/LDAP.html:51(a) doc/reference/en/index.html:49(a) #: doc/reference/en/ActiveLdap/ActionController.html:51(a) @@ -3350,10 +2757,7 @@ msgstr "??????" #: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:51(a) #: doc/reference/en/ActiveLdap/Railtie.html:51(a) #: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:51(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:51(a) #: doc/reference/en/ActiveLdap/Persistence.html:51(a) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:51(a) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:51(a) #: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:51(a) #: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:51(a) #: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:51(a) @@ -3384,17 +2788,12 @@ msgstr "??????" #: doc/reference/en/ActiveLdap/NotImplemented.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:51(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/Attributes.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/Record.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/Attribute.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/Scanner.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:51(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:51(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:51(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:51(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/Parser.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:51(a) #: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:51(a) @@ -3404,6 +2803,7 @@ msgstr "??????" #: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:51(a) #: doc/reference/en/ActiveLdap/SaveError.html:51(a) #: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:51(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:51(a) #: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:51(a) #: doc/reference/en/ActiveLdap/EntryNotSaved.html:51(a) #: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:51(a) @@ -3425,6 +2825,11 @@ msgstr "??????" #: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:51(a) #: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:51(a) #: doc/reference/en/ActiveLdap/Association/BelongsTo.html:51(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Query.html:51(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Write.html:51(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/BeforeTypeCast.html:51(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Read.html:51(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:51(a) #: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:51(a) #: doc/reference/en/ActiveLdap/Helper.html:51(a) #: doc/reference/en/ActiveLdap/Railties.html:51(a) @@ -3444,12 +2849,15 @@ msgstr "??????" #: doc/reference/en/ActiveLdap/Operations/LDIF.html:51(a) #: doc/reference/en/ActiveLdap/Operations/Common.html:51(a) #: doc/reference/en/ActiveLdap/Operations/Update.html:51(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:51(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:51(a) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:51(a) #: doc/reference/en/ActiveLdap/Associations.html:51(a) #: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:51(a) #: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:51(a) #: doc/reference/en/ActiveLdap/Configuration.html:51(a) #: doc/reference/en/ActiveLdap/Operations.html:51(a) +#: doc/reference/en/ActiveLdap/GetText.html:51(a) #: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:51(a) #: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:51(a) #: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:51(a) @@ -3463,9 +2871,7 @@ msgstr "??????" #: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:51(a) #: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:51(a) #: doc/reference/en/ActiveLdap/Xml.html:51(a) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:51(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:51(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:51(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:51(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:51(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:51(a) @@ -3482,522 +2888,836 @@ msgstr "??????" #: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:51(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:51(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:51(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:51(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:51(a) #: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:51(a) #: doc/reference/en/ActiveLdap.html:51(a) doc/reference/en/Net.html:51(a) #: doc/reference/en/file.README.html:49(a) #: doc/reference/en/LDAP/Conn.html:51(a) doc/reference/en/LDAP/Mod.html:51(a) #: doc/reference/en/file.tutorial.html:49(a) #: doc/reference/en/Timeout.html:51(a) doc/reference/en/file.rails.html:49(a) -#: doc/reference/en/file_list.html:28(h1) doc/reference/en/_index.html:47(a) -#: doc/reference/en/LDAP.html:51(a) +#: doc/reference/en/_index.html:44(a) doc/reference/en/LDAP.html:51(a) +msgid "Method List" +msgstr "??????" + +#: doc/reference/en/file.news.html:54(a) +#: doc/reference/en/file.development.html:54(a) +#: doc/reference/en/top-level-namespace.html:56(a) +#: doc/reference/en/Net/LDAP/Entry.html:56(a) +#: doc/reference/en/Net/LDAP.html:56(a) doc/reference/en/index.html:54(a) +#: doc/reference/en/ActiveLdap/ActionController.html:56(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:56(a) +#: doc/reference/en/ActiveLdap/Escape.html:56(a) +#: doc/reference/en/ActiveLdap/Compatible.html:56(a) +#: doc/reference/en/ActiveLdap/LdapError.html:56(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:56(a) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif.html:56(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:56(a) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:56(a) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:56(a) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:56(a) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:56(a) +#: doc/reference/en/ActiveLdap/Generators.html:56(a) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:56(a) +#: doc/reference/en/ActiveLdap/Railtie.html:56(a) +#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:56(a) +#: doc/reference/en/ActiveLdap/Persistence.html:56(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:56(a) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:56(a) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:56(a) +#: doc/reference/en/ActiveLdap/Acts.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter.html:56(a) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:56(a) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:56(a) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:56(a) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:56(a) +#: doc/reference/en/ActiveLdap/Connection.html:56(a) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:56(a) +#: doc/reference/en/ActiveLdap/Schema.html:56(a) +#: doc/reference/en/ActiveLdap/DeleteError.html:56(a) +#: doc/reference/en/ActiveLdap/Validations.html:56(a) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:56(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:56(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:56(a) +#: doc/reference/en/ActiveLdap/Attributes.html:56(a) +#: doc/reference/en/ActiveLdap/TimeoutError.html:56(a) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:56(a) +#: doc/reference/en/ActiveLdap/Base.html:56(a) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:56(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:56(a) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:56(a) +#: doc/reference/en/ActiveLdap/Association.html:56(a) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:56(a) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:56(a) +#: doc/reference/en/ActiveLdap/NotImplemented.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:56(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:56(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:56(a) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:56(a) +#: doc/reference/en/ActiveLdap/SaveError.html:56(a) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:56(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:56(a) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:56(a) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:56(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:56(a) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:56(a) +#: doc/reference/en/ActiveLdap/ObjectClass.html:56(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:56(a) +#: doc/reference/en/ActiveLdap/Command.html:56(a) +#: doc/reference/en/ActiveLdap/ConnectionError.html:56(a) +#: doc/reference/en/ActiveLdap/Populate.html:56(a) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:56(a) +#: doc/reference/en/ActiveLdap/Error.html:56(a) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:56(a) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:56(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:56(a) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:56(a) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:56(a) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:56(a) +#: doc/reference/en/ActiveLdap/Association/Children.html:56(a) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:56(a) +#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:56(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:56(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Query.html:56(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Write.html:56(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/BeforeTypeCast.html:56(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Read.html:56(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:56(a) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:56(a) +#: doc/reference/en/ActiveLdap/Helper.html:56(a) +#: doc/reference/en/ActiveLdap/Railties.html:56(a) +#: doc/reference/en/ActiveLdap/HumanReadable.html:56(a) +#: doc/reference/en/ActiveLdap/Callbacks.html:56(a) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/Find.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/Common.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/Update.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:56(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:56(a) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:56(a) +#: doc/reference/en/ActiveLdap/Associations.html:56(a) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:56(a) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:56(a) +#: doc/reference/en/ActiveLdap/Configuration.html:56(a) +#: doc/reference/en/ActiveLdap/Operations.html:56(a) +#: doc/reference/en/ActiveLdap/GetText.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:56(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:56(a) +#: doc/reference/en/ActiveLdap/Xml.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:56(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:56(a) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:56(a) +#: doc/reference/en/ActiveLdap.html:56(a) doc/reference/en/Net.html:56(a) +#: doc/reference/en/file.README.html:54(a) +#: doc/reference/en/LDAP/Conn.html:56(a) doc/reference/en/LDAP/Mod.html:56(a) +#: doc/reference/en/file.tutorial.html:54(a) +#: doc/reference/en/Timeout.html:56(a) doc/reference/en/file.rails.html:54(a) +#: doc/reference/en/file_list.html:28(h1) doc/reference/en/_index.html:49(a) +#: doc/reference/en/LDAP.html:56(a) msgid "File List" msgstr "??????" -#: doc/reference/en/file.news.html:57(h1) +#: doc/reference/en/file.news.html:64(h1) msgid "News" msgstr "????" -#: doc/reference/en/file.news.html:58(h2) +#: doc/reference/en/file.news.html:65(h2) +msgid "3.2.0: 2012-08-29" +msgstr "" + +#: doc/reference/en/file.news.html:67(li) +msgid "[GitHub:#39] Supported Rails 3.2.8. [Reported by Ben Langfeld]" +msgstr "[GitHub:#39] 3.2.8?? [Ben Langfeld?????]" + +#: doc/reference/en/file.news.html:68(li) +msgid "[GitHub:#13] Don?t use deprecated Gem.available?. [Patch by sailesh]" +msgstr "" +"[GitHub:#13] ????Gem.available???????????? [sailesh?????" +"???]" + +#: doc/reference/en/file.news.html:69(code) +msgid "ha_many :wrap" +msgstr "" + +#: doc/reference/en/file.news.html:69(li) +msgid "" +"[GitHub:#19] Supported new entry by . [Patch by Alex Tomlins]" +msgstr "" +"[GitHub:#19] ???????????????????? [Alex " +"Tomlins????????]" + +#: doc/reference/en/file.news.html:70(code) +msgid ":only" +msgstr "" + +#: doc/reference/en/file.news.html:70(span) +#: doc/reference/en/file.news.html:271(span) +msgid "XML" +msgstr "" + +#: doc/reference/en/file.news.html:70(li) +msgid "Supported option in output." +msgstr "??????????????????" + +#: doc/reference/en/file.news.html:71(li) +msgid "[GitHub:#14] Supported nil as single value. [Reported by n3llyb0y]" +msgstr "" +"[GitHub:#14] single value???nil?????????? [n3llyb0y?????]" + +#: doc/reference/en/file.news.html:72(li) +msgid "" +"[GitHub:#20] Supported ActiveModel::MassAssignmentSecurity. [Reported by " +"mihu]" +msgstr "" +"[GitHub:#20] ActiveModel::MassAssignmentSecurity??? [mihu?????]" + +#: doc/reference/en/file.news.html:74(li) +msgid "" +"[GitHub:#24] Supported Ruby 1.9 style Hash syntax in generator. [Patch by " +"ursm]" +msgstr "" +"[GitHub:#24] ????????Ruby 1.9?????Hash???????????" +"?? [ursm????????]" + +#: doc/reference/en/file.news.html:76(li) +msgid "" +"[GitHub:#25][GitHub:#39] Supported ActiveModel::Dirty. [Patch by mihu]" +"[Reported by Ben Langfeld]" +msgstr "" +"[GitHub:#25][GitHub:#39] ActiveModel::Dirty??? [mihu????????][Ben " +"Langfeld?????]" + +#: doc/reference/en/file.news.html:78(li) +msgid "[GitHub:#26] Improved speed for dirty. [Patch by mihu]" +msgstr "[GitHub:#26] dirty??????? [mihu????????]" + +#: doc/reference/en/file.news.html:79(li) +msgid "[GitHub:#28] Improved speed for initialization. [Patch by mihu]" +msgstr "[GitHub:#28] ???????????? [mihu????????]" + +#: doc/reference/en/file.news.html:80(li) +msgid "[GitHub:#29] Added .gemspec. [Suggested by mklappstuhl]" +msgstr "[GitHub:#29] .gemspec?????? [mklappstuhl?????]" + +#: doc/reference/en/file.news.html:81(li) +msgid "[GitHub:#34] Removed an unused method. [Patch by mihu]" +msgstr "[GitHub:#34] ???????????????? [mihu????????]" + +#: doc/reference/en/file.news.html:82(li) +msgid "[GitHub:#37] Improved will_paginate support. [Patch by Craig White]" +msgstr "" +"[GitHub:#37] will_paginate?????????? [Craig White????????]" + +#: doc/reference/en/file.news.html:83(li) +msgid "" +"[GitHub:#40] Added missing test files to .gemspec. [Reported by V?t Ondruch]" +msgstr "" +"[GitHub:#40] .gemspec?????????????? [V?t Ondruch?????]" + +#: doc/reference/en/file.news.html:84(li) +msgid "[GitHub:#41] Improved speed for find. [Patch by unixmechanic]" +msgstr "[GitHub:#41] find??????? [unixmechanic????????]" + +#: doc/reference/en/file.news.html:85(li) +msgid "Changed i18n backend to gettext from fast_gettext again." +msgstr "???????????fast_gettext??gettext????" + +#: doc/reference/en/file.news.html:86(li) +msgid "" +"[GitHub:#42] Fixed a bug that optional second is required for " +"GeneralizedTime. [Reported by masche842]" +msgstr "" +"[GitHub:#42] GeneralizedTime????????????????????????" +"?????? [masche842?????]" + +#: doc/reference/en/file.news.html:89(h3) +#: doc/reference/en/file.news.html:111(h3) +#: doc/reference/en/file.news.html:145(h3) doc/reference/en/index.html:111(h2) +#: doc/reference/en/file.README.html:111(h2) +msgid "Thanks" +msgstr "??" + +#: doc/reference/en/file.news.html:91(li) +msgid "sailesh" +msgstr "sailesh??" + +#: doc/reference/en/file.news.html:92(li) +#: doc/reference/en/file.news.html:115(li) +msgid "Alex Tomlins" +msgstr "Alex Tomlins??" + +#: doc/reference/en/file.news.html:93(li) +msgid "n3llyb0y" +msgstr "n3llyb0y??" + +#: doc/reference/en/file.news.html:94(li) +msgid "mihu" +msgstr "mihu??" + +#: doc/reference/en/file.news.html:95(li) +msgid "ursm" +msgstr "ursm??" + +#: doc/reference/en/file.news.html:96(li) +msgid "Ben Langfeld" +msgstr "Ben Langfeld??" + +#: doc/reference/en/file.news.html:97(li) +msgid "mklappstuhl" +msgstr "mklappstuhl??" + +#: doc/reference/en/file.news.html:98(li) +msgid "Craig White" +msgstr "Craig White??" + +#: doc/reference/en/file.news.html:99(li) +msgid "V?t Ondruch" +msgstr "V?t Ondruch??" + +#: doc/reference/en/file.news.html:100(li) +msgid "unixmechanic" +msgstr "unixmechanic??" + +#: doc/reference/en/file.news.html:101(li) +msgid "masche842" +msgstr "masche842??" + +#: doc/reference/en/file.news.html:103(h2) msgid "3.1.1: 2011-11-03" msgstr "" -#: doc/reference/en/file.news.html:60(li) +#: doc/reference/en/file.news.html:105(li) msgid "Supported Rails 3.1.1." msgstr "Rails 3.1.1???" -#: doc/reference/en/file.news.html:61(li) +#: doc/reference/en/file.news.html:106(li) msgid "[GitHub:#9] Fixed a typo in document. [warden]" msgstr "[GitHub:#9] ?????????????? [warden??]" -#: doc/reference/en/file.news.html:62(li) +#: doc/reference/en/file.news.html:107(li) msgid "[GitHub:#11] Added persisted?. [bklier]" msgstr "[GitHub:#11] persisted????????? [bklier??]" -#: doc/reference/en/file.news.html:63(span) +#: doc/reference/en/file.news.html:108(span) msgid "SSHA" msgstr "" -#: doc/reference/en/file.news.html:63(li) +#: doc/reference/en/file.news.html:108(li) msgid "" "[GitHub:#16] Supported 4 or more bytes salt for and SMD5. " "[Alex Tomlins]" -msgstr "[GitHub:#16] ?SMD5????4??????salt???? [Alex Tomlins??]" - -#: doc/reference/en/file.news.html:66(h3) -#: doc/reference/en/file.news.html:100(h3) doc/reference/en/index.html:104(h2) -#: doc/reference/en/file.README.html:104(h2) -msgid "Thanks" -msgstr "??" +msgstr "" +"[GitHub:#16] ?SMD5????4??????salt???? [Alex " +"Tomlins??]" -#: doc/reference/en/file.news.html:68(li) +#: doc/reference/en/file.news.html:113(li) msgid "warden" msgstr "warden??" -#: doc/reference/en/file.news.html:69(li) +#: doc/reference/en/file.news.html:114(li) msgid "bklier" msgstr "bklier??" -#: doc/reference/en/file.news.html:70(li) -msgid "Alex Tomlins" -msgstr "Alex Tomlins??" - -#: doc/reference/en/file.news.html:72(h2) +#: doc/reference/en/file.news.html:117(h2) msgid "3.1.0: 2011-07-09" msgstr "" -#: doc/reference/en/file.news.html:74(li) +#: doc/reference/en/file.news.html:119(li) msgid "" "Supported Rails 3.1.0.rc4. [Ryan Tandy, Narihiro Nakamura, Hidetoshi " "Yoshimoto]" msgstr "" "Rails 3.1.0.rc4??? [Ryan Tandy, Narihiro Nakamura, Hidetoshi Yoshimoto]" -#: doc/reference/en/file.news.html:76(li) +#: doc/reference/en/file.news.html:121(li) msgid "Removed ActiveRecord dependency and added ActiveModel dependency." msgstr "ActiveRecord???????ActiveModel???????????" -#: doc/reference/en/file.news.html:77(span) +#: doc/reference/en/file.news.html:122(span) msgid "YARD" msgstr "" -#: doc/reference/en/file.news.html:77(li) +#: doc/reference/en/file.news.html:122(li) msgid "Used instead of RDoc as documentation sysytem." msgstr "" "?????????????RDoc??????????????" -#: doc/reference/en/file.news.html:79(h2) +#: doc/reference/en/file.news.html:124(h2) msgid "1.2.4: 2011-05-13" msgstr "" -#: doc/reference/en/file.news.html:81(li) +#: doc/reference/en/file.news.html:126(li) msgid "" "Splited AL-Admin into other repository: https://github.com/activeldap/al-" "admin" msgstr "" -#: doc/reference/en/file.news.html:82(li) +#: doc/reference/en/file.news.html:127(li) msgid "" "[GitHub:#2] Fixed ?path po cound not be found? error by fast_gettext. [rbq]" msgstr "" -#: doc/reference/en/file.news.html:85(h2) +#: doc/reference/en/file.news.html:130(h2) msgid "1.2.3: 2011-04-30" msgstr "" -#: doc/reference/en/file.news.html:87(li) +#: doc/reference/en/file.news.html:132(li) msgid "[#40] Ignored nil value attribute. [christian.pennafort]" msgstr "" -#: doc/reference/en/file.news.html:89(li) +#: doc/reference/en/file.news.html:134(li) msgid "[#48] Escaped ?:? in filter value. [planetmcd]" msgstr "" -#: doc/reference/en/file.news.html:91(li) +#: doc/reference/en/file.news.html:136(li) msgid "Added missing rubygems require. [spoidar]" msgstr "" -#: doc/reference/en/file.news.html:93(li) +#: doc/reference/en/file.news.html:138(li) msgid "Used fast_gettext instead of gettext. [Peter Fern]" msgstr "" -#: doc/reference/en/file.news.html:95(li) +#: doc/reference/en/file.news.html:140(li) msgid "Supported Rails 2.3.11. [Kris Wehner]" msgstr "" -#: doc/reference/en/file.news.html:97(li) +#: doc/reference/en/file.news.html:142(li) msgid "Fixed wrong assertion in test. [Ryan Tandy]" msgstr "" -#: doc/reference/en/file.news.html:102(li) +#: doc/reference/en/file.news.html:147(li) msgid "christian.pennafort" msgstr "" -#: doc/reference/en/file.news.html:103(li) +#: doc/reference/en/file.news.html:148(li) msgid "planetmcd" msgstr "" -#: doc/reference/en/file.news.html:104(li) +#: doc/reference/en/file.news.html:149(li) msgid "spoidar" msgstr "" -#: doc/reference/en/file.news.html:105(li) +#: doc/reference/en/file.news.html:150(li) msgid "Peter Fern" msgstr "" -#: doc/reference/en/file.news.html:106(li) +#: doc/reference/en/file.news.html:151(li) msgid "Kris Wehner" msgstr "" -#: doc/reference/en/file.news.html:107(li) +#: doc/reference/en/file.news.html:152(li) msgid "Ryan Tandy" msgstr "" -#: doc/reference/en/file.news.html:109(h2) +#: doc/reference/en/file.news.html:154(h2) msgid "1.2.2: 2010-07-04" msgstr "" -#: doc/reference/en/file.news.html:111(li) +#: doc/reference/en/file.news.html:156(li) msgid "Supported ActiveRecord 2.3.8 and Rails 2.3.8." msgstr "" -#: doc/reference/en/file.news.html:112(li) +#: doc/reference/en/file.news.html:157(li) msgid "[#37] Fixed gem dependencies in Rakefile. [zachwily]" msgstr "" -#: doc/reference/en/file.news.html:113(li) +#: doc/reference/en/file.news.html:158(li) msgid "" "Fixed a bug that setting ?false? but ?nil? is returned. [Hideyuki Yasuda]" msgstr "" -#: doc/reference/en/file.news.html:114(span) -#: doc/reference/en/file.news.html:224(span) -#: doc/reference/en/file.news.html:278(span) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:287(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:405(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:39(span) -#: doc/reference/en/ActiveLdap/Operations.html:84(a) -#: doc/reference/en/ActiveLdap/Operations.html:171(span) -#: doc/reference/en/ActiveLdap/Operations.html:177(span) -#: doc/reference/en/_index.html:812(a) +#: doc/reference/en/file.news.html:159(span) +#: doc/reference/en/file.news.html:269(span) +#: doc/reference/en/file.news.html:323(span) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:289(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:407(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:37(span) +#: doc/reference/en/ActiveLdap/Operations.html:91(a) +#: doc/reference/en/ActiveLdap/Operations.html:185(span) +#: doc/reference/en/ActiveLdap/Operations.html:193(span) +#: doc/reference/en/_index.html:809(a) msgid "LDIF" msgstr "" -#: doc/reference/en/file.news.html:114(li) +#: doc/reference/en/file.news.html:159(li) msgid "" "Supported non-String attribute value as value. [Matt Mencel]" msgstr "" -#: doc/reference/en/file.news.html:115(span) -#: doc/reference/en/file.news.html:168(span) -#: doc/reference/en/file.news.html:299(span) -#: doc/reference/en/file.news.html:319(span) -#: doc/reference/en/file.news.html:324(span) -#: doc/reference/en/file.news.html:360(span) -#: doc/reference/en/file.news.html:362(span) +#: doc/reference/en/file.news.html:160(span) +#: doc/reference/en/file.news.html:213(span) +#: doc/reference/en/file.news.html:344(span) #: doc/reference/en/file.news.html:364(span) -#: doc/reference/en/file.news.html:422(span) -#: doc/reference/en/file.news.html:443(span) -#: doc/reference/en/file.news.html:466(span) -#: doc/reference/en/file.news.html:473(span) -#: doc/reference/en/file.news.html:481(span) -#: doc/reference/en/file.news.html:492(span) -#: doc/reference/en/file.news.html:503(span) -#: doc/reference/en/file.news.html:516(span) -#: doc/reference/en/file.news.html:522(span) -#: doc/reference/en/file.news.html:574(span) -#: doc/reference/en/top-level-namespace.html:81(a) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/Net/LDAP/Entry.html:37(a) -#: doc/reference/en/Net/LDAP.html:39(span) -#: doc/reference/en/index.html:58(span) doc/reference/en/index.html:65(span) -#: doc/reference/en/index.html:80(span) doc/reference/en/index.html:82(span) -#: doc/reference/en/index.html:84(span) doc/reference/en/index.html:85(span) -#: doc/reference/en/index.html:94(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:606(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:178(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:199(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:199(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:455(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:546(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:548(span) -#: doc/reference/en/Net.html:86(a) doc/reference/en/file.README.html:58(span) -#: doc/reference/en/file.README.html:65(span) -#: doc/reference/en/file.README.html:80(span) -#: doc/reference/en/file.README.html:82(span) -#: doc/reference/en/file.README.html:84(span) -#: doc/reference/en/file.README.html:85(span) -#: doc/reference/en/file.README.html:94(span) -#: doc/reference/en/LDAP/Conn.html:37(a) -#: doc/reference/en/LDAP/Conn.html:328(span) -#: doc/reference/en/LDAP/Mod.html:37(a) -#: doc/reference/en/file.tutorial.html:59(span) -#: doc/reference/en/file.tutorial.html:60(span) -#: doc/reference/en/file.tutorial.html:63(span) -#: doc/reference/en/file.tutorial.html:64(span) -#: doc/reference/en/file.tutorial.html:65(span) +#: doc/reference/en/file.news.html:369(span) +#: doc/reference/en/file.news.html:405(span) +#: doc/reference/en/file.news.html:407(span) +#: doc/reference/en/file.news.html:409(span) +#: doc/reference/en/file.news.html:467(span) +#: doc/reference/en/file.news.html:488(span) +#: doc/reference/en/file.news.html:511(span) +#: doc/reference/en/file.news.html:518(span) +#: doc/reference/en/file.news.html:526(span) +#: doc/reference/en/file.news.html:537(span) +#: doc/reference/en/file.news.html:548(span) +#: doc/reference/en/file.news.html:561(span) +#: doc/reference/en/file.news.html:567(span) +#: doc/reference/en/file.news.html:619(span) +#: doc/reference/en/top-level-namespace.html:88(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/Net/LDAP/Entry.html:35(a) +#: doc/reference/en/Net/LDAP.html:37(span) +#: doc/reference/en/index.html:65(span) doc/reference/en/index.html:72(span) +#: doc/reference/en/index.html:87(span) doc/reference/en/index.html:89(span) +#: doc/reference/en/index.html:91(span) doc/reference/en/index.html:92(span) +#: doc/reference/en/index.html:101(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:630(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:184(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:206(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:206(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:460(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:553(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:555(span) +#: doc/reference/en/Net.html:93(a) doc/reference/en/file.README.html:65(span) +#: doc/reference/en/file.README.html:72(span) +#: doc/reference/en/file.README.html:87(span) +#: doc/reference/en/file.README.html:89(span) +#: doc/reference/en/file.README.html:91(span) +#: doc/reference/en/file.README.html:92(span) +#: doc/reference/en/file.README.html:101(span) +#: doc/reference/en/LDAP/Conn.html:35(a) +#: doc/reference/en/LDAP/Conn.html:368(span) +#: doc/reference/en/LDAP/Mod.html:35(a) #: doc/reference/en/file.tutorial.html:66(span) #: doc/reference/en/file.tutorial.html:67(span) -#: doc/reference/en/file.tutorial.html:68(span) -#: doc/reference/en/file.tutorial.html:69(span) +#: doc/reference/en/file.tutorial.html:70(span) +#: doc/reference/en/file.tutorial.html:71(span) #: doc/reference/en/file.tutorial.html:72(span) -#: doc/reference/en/file.tutorial.html:81(span) -#: doc/reference/en/file.tutorial.html:82(span) -#: doc/reference/en/file.tutorial.html:83(span) -#: doc/reference/en/file.tutorial.html:84(span) +#: doc/reference/en/file.tutorial.html:73(span) +#: doc/reference/en/file.tutorial.html:74(span) +#: doc/reference/en/file.tutorial.html:75(span) +#: doc/reference/en/file.tutorial.html:76(span) +#: doc/reference/en/file.tutorial.html:79(span) +#: doc/reference/en/file.tutorial.html:88(span) +#: doc/reference/en/file.tutorial.html:89(span) +#: doc/reference/en/file.tutorial.html:90(span) #: doc/reference/en/file.tutorial.html:91(span) -#: doc/reference/en/file.tutorial.html:92(span) -#: doc/reference/en/file.tutorial.html:94(span) -#: doc/reference/en/file.tutorial.html:118(span) -#: doc/reference/en/file.tutorial.html:119(span) -#: doc/reference/en/file.tutorial.html:123(span) -#: doc/reference/en/file.tutorial.html:131(span) -#: doc/reference/en/file.tutorial.html:153(span) -#: doc/reference/en/file.tutorial.html:156(span) -#: doc/reference/en/file.tutorial.html:173(span) -#: doc/reference/en/file.tutorial.html:174(span) -#: doc/reference/en/file.tutorial.html:184(span) -#: doc/reference/en/file.tutorial.html:200(span) -#: doc/reference/en/file.tutorial.html:201(span) +#: doc/reference/en/file.tutorial.html:98(span) +#: doc/reference/en/file.tutorial.html:99(span) +#: doc/reference/en/file.tutorial.html:101(span) +#: doc/reference/en/file.tutorial.html:125(span) +#: doc/reference/en/file.tutorial.html:126(span) +#: doc/reference/en/file.tutorial.html:130(span) +#: doc/reference/en/file.tutorial.html:138(span) +#: doc/reference/en/file.tutorial.html:160(span) +#: doc/reference/en/file.tutorial.html:163(span) +#: doc/reference/en/file.tutorial.html:180(span) +#: doc/reference/en/file.tutorial.html:181(span) +#: doc/reference/en/file.tutorial.html:191(span) #: doc/reference/en/file.tutorial.html:207(span) -#: doc/reference/en/file.tutorial.html:218(span) -#: doc/reference/en/file.tutorial.html:234(span) -#: doc/reference/en/file.tutorial.html:303(span) -#: doc/reference/en/file.tutorial.html:335(span) -#: doc/reference/en/file.tutorial.html:363(span) -#: doc/reference/en/file.tutorial.html:366(span) -#: doc/reference/en/file.tutorial.html:367(span) -#: doc/reference/en/file.tutorial.html:385(span) -#: doc/reference/en/file.tutorial.html:390(span) -#: doc/reference/en/file.tutorial.html:402(span) -#: doc/reference/en/file.tutorial.html:405(span) +#: doc/reference/en/file.tutorial.html:208(span) +#: doc/reference/en/file.tutorial.html:214(span) +#: doc/reference/en/file.tutorial.html:225(span) +#: doc/reference/en/file.tutorial.html:241(span) +#: doc/reference/en/file.tutorial.html:310(span) +#: doc/reference/en/file.tutorial.html:342(span) +#: doc/reference/en/file.tutorial.html:370(span) +#: doc/reference/en/file.tutorial.html:373(span) +#: doc/reference/en/file.tutorial.html:374(span) +#: doc/reference/en/file.tutorial.html:392(span) +#: doc/reference/en/file.tutorial.html:397(span) #: doc/reference/en/file.tutorial.html:409(span) -#: doc/reference/en/file.tutorial.html:437(span) -#: doc/reference/en/file.tutorial.html:438(span) -#: doc/reference/en/file.tutorial.html:440(span) -#: doc/reference/en/file.tutorial.html:483(span) -#: doc/reference/en/file.tutorial.html:487(span) -#: doc/reference/en/file.tutorial.html:495(span) -#: doc/reference/en/file.tutorial.html:497(span) +#: doc/reference/en/file.tutorial.html:412(span) +#: doc/reference/en/file.tutorial.html:416(span) +#: doc/reference/en/file.tutorial.html:444(span) +#: doc/reference/en/file.tutorial.html:445(span) +#: doc/reference/en/file.tutorial.html:447(span) +#: doc/reference/en/file.tutorial.html:490(span) +#: doc/reference/en/file.tutorial.html:494(span) #: doc/reference/en/file.tutorial.html:502(span) +#: doc/reference/en/file.tutorial.html:504(span) #: doc/reference/en/file.tutorial.html:509(span) -#: doc/reference/en/file.tutorial.html:534(span) -#: doc/reference/en/file.tutorial.html:584(span) -#: doc/reference/en/file.tutorial.html:631(span) -#: doc/reference/en/file.tutorial.html:689(span) -#: doc/reference/en/file.tutorial.html:691(span) -#: doc/reference/en/file.tutorial.html:705(span) +#: doc/reference/en/file.tutorial.html:516(span) +#: doc/reference/en/file.tutorial.html:541(span) +#: doc/reference/en/file.tutorial.html:591(span) +#: doc/reference/en/file.tutorial.html:638(span) +#: doc/reference/en/file.tutorial.html:696(span) +#: doc/reference/en/file.tutorial.html:698(span) #: doc/reference/en/file.tutorial.html:712(span) -#: doc/reference/en/file.tutorial.html:776(span) -#: doc/reference/en/file.tutorial.html:777(span) -#: doc/reference/en/file.tutorial.html:791(span) -#: doc/reference/en/file.tutorial.html:792(span) -#: doc/reference/en/file.tutorial.html:820(span) -#: doc/reference/en/file.tutorial.html:822(span) -#: doc/reference/en/file.tutorial.html:825(span) -#: doc/reference/en/file.tutorial.html:844(span) -#: doc/reference/en/file.rails.html:64(span) -#: doc/reference/en/file.rails.html:65(span) -#: doc/reference/en/file.rails.html:77(span) -#: doc/reference/en/_index.html:800(a) doc/reference/en/_index.html:805(a) -#: doc/reference/en/LDAP.html:39(span) +#: doc/reference/en/file.tutorial.html:719(span) +#: doc/reference/en/file.tutorial.html:783(span) +#: doc/reference/en/file.tutorial.html:784(span) +#: doc/reference/en/file.tutorial.html:798(span) +#: doc/reference/en/file.tutorial.html:799(span) +#: doc/reference/en/file.tutorial.html:827(span) +#: doc/reference/en/file.tutorial.html:829(span) +#: doc/reference/en/file.tutorial.html:832(span) +#: doc/reference/en/file.tutorial.html:851(span) +#: doc/reference/en/file.rails.html:71(span) +#: doc/reference/en/file.rails.html:72(span) +#: doc/reference/en/file.rails.html:84(span) +#: doc/reference/en/_index.html:797(a) doc/reference/en/_index.html:804(a) +#: doc/reference/en/LDAP.html:37(span) msgid "LDAP" msgstr "" -#: doc/reference/en/file.news.html:115(li) +#: doc/reference/en/file.news.html:160(li) msgid "" "Worked with a server that uses ?objectclass? not " "?objectClass? as objectClass attribute name. [Tim Hermans]" msgstr "" -#: doc/reference/en/file.news.html:117(span) -#: doc/reference/en/file.news.html:362(span) -#: doc/reference/en/file.news.html:373(span) -#: doc/reference/en/index.html:94(span) doc/reference/en/index.html:179(span) -#: doc/reference/en/file.README.html:94(span) -#: doc/reference/en/file.README.html:179(span) -#: doc/reference/en/file.tutorial.html:452(span) -#: doc/reference/en/file.tutorial.html:453(span) -#: doc/reference/en/file.tutorial.html:791(span) -#: doc/reference/en/file.tutorial.html:794(span) +#: doc/reference/en/file.news.html:162(span) +#: doc/reference/en/file.news.html:407(span) +#: doc/reference/en/file.news.html:418(span) +#: doc/reference/en/index.html:101(span) doc/reference/en/index.html:186(span) +#: doc/reference/en/file.README.html:101(span) +#: doc/reference/en/file.README.html:186(span) +#: doc/reference/en/file.tutorial.html:459(span) +#: doc/reference/en/file.tutorial.html:460(span) +#: doc/reference/en/file.tutorial.html:798(span) +#: doc/reference/en/file.tutorial.html:801(span) msgid "SASL" msgstr "" -#: doc/reference/en/file.news.html:117(li) +#: doc/reference/en/file.news.html:162(li) msgid "" "[#41] Provide -option support, primarily for authzid " "[Anthony M. Martinez]" msgstr "" -#: doc/reference/en/file.news.html:119(li) +#: doc/reference/en/file.news.html:164(li) msgid "[#43] Error with to_xml [ilusi0n.x]" msgstr "" -#: doc/reference/en/file.news.html:120(li) +#: doc/reference/en/file.news.html:165(li) msgid "[#44] Accept ?0? and ?1? as boolean value [projekttabla]" msgstr "" -#: doc/reference/en/file.news.html:121(li) +#: doc/reference/en/file.news.html:166(li) msgid "" "[#27429] Fixed inverted validatation by validate_excluded_classes [Marc " "Dequ?nes]" msgstr "" -#: doc/reference/en/file.news.html:123(li) +#: doc/reference/en/file.news.html:168(li) msgid "" "Supported DN attribute value for assosiation replacement. [J?rg Herzinger]" msgstr "" -#: doc/reference/en/file.news.html:126(h2) +#: doc/reference/en/file.news.html:171(h2) msgid "1.2.1: 2009-12-15" msgstr "" -#: doc/reference/en/file.news.html:128(li) +#: doc/reference/en/file.news.html:173(li) msgid "Supported ActiveRecord 2.3.5 and Rails 2.3.5." msgstr "" -#: doc/reference/en/file.news.html:129(li) +#: doc/reference/en/file.news.html:174(li) msgid "Supported GetText 2.1.0 and Locale 2.0.5." msgstr "" -#: doc/reference/en/file.news.html:130(li) +#: doc/reference/en/file.news.html:175(li) msgid "belongs_to(:many) support DN attribute." msgstr "" -#: doc/reference/en/file.news.html:131(li) +#: doc/reference/en/file.news.html:176(li) msgid "" "[#31] ActiveLdap::Base#attributes returns data that reflects schema " "definition. [Alexey.Chebotar]" msgstr "" -#: doc/reference/en/file.news.html:133(li) +#: doc/reference/en/file.news.html:178(li) msgid "blocks DN attribute change by mass assignment with :id => ?." msgstr "" -#: doc/reference/en/file.news.html:134(li) +#: doc/reference/en/file.news.html:179(li) msgid "[#35] fix has_many association is broken. [culturespy]" msgstr "" -#: doc/reference/en/file.news.html:135(li) +#: doc/reference/en/file.news.html:180(li) msgid "Supported nested attribute options. [Hideyuki Yasuda]" msgstr "" -#: doc/reference/en/file.news.html:137(h2) +#: doc/reference/en/file.news.html:182(h2) msgid "1.2.0: 2009-09-22" msgstr "" -#: doc/reference/en/file.news.html:139(li) +#: doc/reference/en/file.news.html:184(li) msgid "Supported ActiveRecord 2.3.4 and Rails 2.3.4." msgstr "" -#: doc/reference/en/file.news.html:140(span) +#: doc/reference/en/file.news.html:185(span) msgid "IMCOMPATIBLE" msgstr "" -#: doc/reference/en/file.news.html:140(li) +#: doc/reference/en/file.news.html:185(li) msgid "" "[] [#23932] Inconsistant DN handling in object attributes " "[Marc Dequ?nes] (ActiveLdap::Base#dn and ActiveLdap::Base#base return " "ActiveLdap::DN not String)" msgstr "" -#: doc/reference/en/file.news.html:144(li) +#: doc/reference/en/file.news.html:189(li) msgid "" "[#26824] support operational attributes detection [Marc Dequ?nes] (added " "ActiveLdap::Schema::Attribute#directory_operation?)" msgstr "" -#: doc/reference/en/file.news.html:146(li) +#: doc/reference/en/file.news.html:191(li) msgid "[#27] Error saving an ActiveLDAP user [brad at lucky-dip.net]" msgstr "" -#: doc/reference/en/file.news.html:147(li) +#: doc/reference/en/file.news.html:192(li) msgid "" "[#29] Raised on modify_rdn_entry when rdn already exists [Alexey.Chebotar]" msgstr "" -#: doc/reference/en/file.news.html:148(li) +#: doc/reference/en/file.news.html:193(li) msgid "Added ActiveLdap::DN.parent." msgstr "" -#: doc/reference/en/file.news.html:149(span) +#: doc/reference/en/file.news.html:194(span) msgid "DTI" msgstr "" -#: doc/reference/en/file.news.html:150(span) -#: doc/reference/en/file.news.html:285(span) -#: doc/reference/en/file.tutorial.html:91(span) +#: doc/reference/en/file.news.html:195(span) +#: doc/reference/en/file.news.html:330(span) +#: doc/reference/en/file.tutorial.html:98(span) msgid "JNDI" msgstr "" -#: doc/reference/en/file.news.html:149(li) +#: doc/reference/en/file.news.html:194(li) msgid "" "Supported renaming an entry. Renaming other is only " "supported by backend." msgstr "" -#: doc/reference/en/file.news.html:152(h2) +#: doc/reference/en/file.news.html:197(h2) msgid "1.1.0: 2009-07-18" msgstr "" -#: doc/reference/en/file.news.html:154(li) +#: doc/reference/en/file.news.html:199(li) msgid "Improved tutorial. [Kazuaki Takase]" msgstr "" -#: doc/reference/en/file.news.html:157(span) -#: doc/reference/en/file.news.html:198(span) -#: doc/reference/en/file.news.html:289(span) -#: doc/reference/en/file.news.html:300(span) -#: doc/reference/en/file.news.html:324(span) -#: doc/reference/en/file.news.html:326(span) -#: doc/reference/en/file.news.html:329(span) +#: doc/reference/en/file.news.html:202(span) +#: doc/reference/en/file.news.html:243(span) +#: doc/reference/en/file.news.html:334(span) +#: doc/reference/en/file.news.html:345(span) +#: doc/reference/en/file.news.html:369(span) +#: doc/reference/en/file.news.html:371(span) #: doc/reference/en/file.news.html:374(span) -#: doc/reference/en/file.news.html:413(span) -#: doc/reference/en/file.news.html:414(span) -#: doc/reference/en/file.news.html:424(span) -#: doc/reference/en/file.news.html:425(span) -#: doc/reference/en/file.news.html:426(span) -#: doc/reference/en/file.news.html:428(span) -#: doc/reference/en/file.news.html:429(span) -#: doc/reference/en/file.news.html:430(span) -#: doc/reference/en/file.news.html:431(span) -#: doc/reference/en/file.news.html:432(span) -#: doc/reference/en/file.news.html:462(span) -#: doc/reference/en/index.html:112(span) doc/reference/en/index.html:129(span) -#: doc/reference/en/index.html:132(span) doc/reference/en/index.html:142(span) -#: doc/reference/en/index.html:154(span) doc/reference/en/index.html:155(span) -#: doc/reference/en/file.README.html:112(span) -#: doc/reference/en/file.README.html:129(span) -#: doc/reference/en/file.README.html:132(span) -#: doc/reference/en/file.README.html:142(span) -#: doc/reference/en/file.README.html:154(span) -#: doc/reference/en/file.README.html:155(span) -#: doc/reference/en/file.tutorial.html:82(span) -#: doc/reference/en/file.tutorial.html:801(span) +#: doc/reference/en/file.news.html:419(span) +#: doc/reference/en/file.news.html:458(span) +#: doc/reference/en/file.news.html:459(span) +#: doc/reference/en/file.news.html:469(span) +#: doc/reference/en/file.news.html:470(span) +#: doc/reference/en/file.news.html:471(span) +#: doc/reference/en/file.news.html:473(span) +#: doc/reference/en/file.news.html:474(span) +#: doc/reference/en/file.news.html:475(span) +#: doc/reference/en/file.news.html:476(span) +#: doc/reference/en/file.news.html:477(span) +#: doc/reference/en/file.news.html:507(span) +#: doc/reference/en/index.html:119(span) doc/reference/en/index.html:136(span) +#: doc/reference/en/index.html:139(span) doc/reference/en/index.html:149(span) +#: doc/reference/en/index.html:161(span) doc/reference/en/index.html:162(span) +#: doc/reference/en/file.README.html:119(span) +#: doc/reference/en/file.README.html:136(span) +#: doc/reference/en/file.README.html:139(span) +#: doc/reference/en/file.README.html:149(span) +#: doc/reference/en/file.README.html:161(span) +#: doc/reference/en/file.README.html:162(span) +#: doc/reference/en/file.tutorial.html:89(span) +#: doc/reference/en/file.tutorial.html:808(span) msgid "API" msgstr "" -#: doc/reference/en/file.news.html:159(li) +#: doc/reference/en/file.news.html:204(li) msgid "[#26] Supported to_xml for associations. [achemze]" msgstr "" -#: doc/reference/en/file.news.html:160(li) +#: doc/reference/en/file.news.html:205(li) msgid "" "ActiveLdap::Base.delete_all(filter=nil, options={}) ? ActiveLdap::Base." "delete_all(filter_or_options={}). Sure, old method signature is also still " "supported." msgstr "" -#: doc/reference/en/file.news.html:163(li) +#: doc/reference/en/file.news.html:208(li) msgid "" "belongs_to(:many) with :foreign_key is deprecated. Use :primary_key instead " "of :foreign_key. [Kazuaki Takase]" msgstr "" -#: doc/reference/en/file.news.html:165(li) +#: doc/reference/en/file.news.html:210(li) msgid "" "Means of has_many?s :primary_key and :foreign_key are inverted. [Kazuaki " "Takase]" msgstr "" -#: doc/reference/en/file.news.html:167(li) +#: doc/reference/en/file.news.html:212(li) msgid "" "[experimental] Added ldap_field ActionView helper to generate form fileds " "for a entry." msgstr "" -#: doc/reference/en/file.news.html:157(li) +#: doc/reference/en/file.news.html:202(li) msgid "" ":
    \n" "\t\t\t\n" @@ -4006,79 +3726,79 @@ msgid "" "\t\t\t
" msgstr "" -#: doc/reference/en/file.news.html:170(li) +#: doc/reference/en/file.news.html:215(li) msgid "Suppressed needless attributes updating." msgstr "" -#: doc/reference/en/file.news.html:155(li) +#: doc/reference/en/file.news.html:200(li) msgid "" "Improvements:
    \n" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:174(li) +#: doc/reference/en/file.news.html:219(li) msgid "Re-supported GetText." msgstr "" -#: doc/reference/en/file.news.html:175(li) +#: doc/reference/en/file.news.html:220(li) msgid "ActiveRecord 2.3.2 is only supported." msgstr "" -#: doc/reference/en/file.news.html:172(li) +#: doc/reference/en/file.news.html:217(li) msgid "" "Dependencies:
    \n" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:178(h2) +#: doc/reference/en/file.news.html:223(h2) msgid "1.0.9" msgstr "" -#: doc/reference/en/file.news.html:180(li) +#: doc/reference/en/file.news.html:225(li) msgid "Added documents in Japanese. [Kazuaki Takase]" msgstr "" -#: doc/reference/en/file.news.html:183(li) +#: doc/reference/en/file.news.html:228(li) msgid "[#20] [Ruby 1.9 Support] :: Running Tests [Alexey.Chebotar]" msgstr "" -#: doc/reference/en/file.news.html:181(li) +#: doc/reference/en/file.news.html:226(li) msgid "Supported Ruby 1.9.1.
" msgstr "" -#: doc/reference/en/file.news.html:187(li) +#: doc/reference/en/file.news.html:232(li) msgid "[#18] [Rails 2.3 Support] :: Running WEBrick Hangs [Alexey.Chebotar]" msgstr "" -#: doc/reference/en/file.news.html:185(li) +#: doc/reference/en/file.news.html:230(li) msgid "Supported Rails 2.3.2.
" msgstr "" -#: doc/reference/en/file.news.html:191(li) +#: doc/reference/en/file.news.html:236(li) msgid "Fixed blank values detection. [David Morton]" msgstr "" -#: doc/reference/en/file.news.html:192(li) +#: doc/reference/en/file.news.html:237(li) msgid "[#22] Ruby 1.8.6 p287 :: Undefined methods [Alexey.Chebotar]" msgstr "" -#: doc/reference/en/file.news.html:193(li) +#: doc/reference/en/file.news.html:238(li) msgid "Fixed gem loading. [Tiago Fernandes]" msgstr "" -#: doc/reference/en/file.news.html:194(li) +#: doc/reference/en/file.news.html:239(li) msgid "Fixed DN change via #base=. [David Morton]" msgstr "" -#: doc/reference/en/file.news.html:195(li) +#: doc/reference/en/file.news.html:240(li) msgid "Fixed infinite retry on timeout." msgstr "" -#: doc/reference/en/file.news.html:196(li) +#: doc/reference/en/file.news.html:241(li) msgid "Fixed needless reconnection." msgstr "" -#: doc/reference/en/file.news.html:189(li) +#: doc/reference/en/file.news.html:234(li) msgid "" "Bug fixes:
    \n" "\t\t\n" @@ -4088,68 +3808,68 @@ msgid "" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:200(li) +#: doc/reference/en/file.news.html:245(li) msgid "" "Removed needless instance methods: #prefix=, #dn_attribute=, #sort_by=, " "#order=, #required_classes=, #recommended_classes= and #excluded_classes. " "[David Morton]" msgstr "" -#: doc/reference/en/file.news.html:203(li) +#: doc/reference/en/file.news.html:248(li) msgid "Removed obsolete scafoold_al generator." msgstr "" -#: doc/reference/en/file.news.html:204(li) +#: doc/reference/en/file.news.html:249(li) msgid "Reduced default :retry_limit." msgstr "" -#: doc/reference/en/file.news.html:205(li) +#: doc/reference/en/file.news.html:250(li) msgid "Supported association as parameter. [Joe Francis]" msgstr "" -#: doc/reference/en/file.news.html:206(li) +#: doc/reference/en/file.news.html:251(li) msgid "Normalized schema attribute name. [Tim Hermans]" msgstr "" -#: doc/reference/en/file.news.html:207(li) +#: doc/reference/en/file.news.html:252(li) msgid "" "Suppressed AuthenticationError ? ConnectionError conversion on reconnection. " "[Kazuaki Takase]" msgstr "" -#: doc/reference/en/file.news.html:209(li) +#: doc/reference/en/file.news.html:254(li) msgid "Added ActiveLdap::Schema#dump." msgstr "" -#: doc/reference/en/file.news.html:210(li) +#: doc/reference/en/file.news.html:255(li) msgid "" "ActiveLdap::Base.establish_connection ? ActiveLdap::Base.setup_connection." msgstr "" -#: doc/reference/en/file.news.html:212(li) +#: doc/reference/en/file.news.html:257(li) msgid "Supported ActiveLdap::Base.find(:last)." msgstr "" -#: doc/reference/en/file.news.html:215(li) +#: doc/reference/en/file.news.html:260(li) msgid "ActiveLdap::Base.first" msgstr "" -#: doc/reference/en/file.news.html:216(li) +#: doc/reference/en/file.news.html:261(li) msgid "ActiveLdap::Base.last" msgstr "" -#: doc/reference/en/file.news.html:217(li) +#: doc/reference/en/file.news.html:262(li) msgid "ActiveLdap::Base.all" msgstr "" -#: doc/reference/en/file.news.html:213(li) +#: doc/reference/en/file.news.html:258(li) msgid "" "Added convenient methods:
    \n" "\t\t\t\n" "\t\t\t
" msgstr "" -#: doc/reference/en/file.news.html:198(li) +#: doc/reference/en/file.news.html:243(li) msgid "" " improvements:
    \n" "\t\t\n" @@ -4163,149 +3883,144 @@ msgid "" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:221(h2) +#: doc/reference/en/file.news.html:266(h2) msgid "1.0.2" msgstr "" -#: doc/reference/en/file.news.html:223(li) +#: doc/reference/en/file.news.html:268(li) msgid "Removed Base64 module use." msgstr "" -#: doc/reference/en/file.news.html:224(li) +#: doc/reference/en/file.news.html:269(li) msgid "Improved parser." msgstr "" -#: doc/reference/en/file.news.html:225(li) +#: doc/reference/en/file.news.html:270(li) msgid "Improved scheme parser." msgstr "" -#: doc/reference/en/file.news.html:226(span) -#: doc/reference/en/ActiveLdap/Base.html:4714(span) -msgid "XML" -msgstr "" - -#: doc/reference/en/file.news.html:226(li) +#: doc/reference/en/file.news.html:271(li) msgid "Supported Base64 in serialization." msgstr "" -#: doc/reference/en/file.news.html:227(span) -#: doc/reference/en/file.news.html:509(span) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:97(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:86(a) -#: doc/reference/en/file.tutorial.html:406(span) -#: doc/reference/en/_index.html:1275(a) +#: doc/reference/en/file.news.html:272(span) +#: doc/reference/en/file.news.html:554(span) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:104(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:93(a) +#: doc/reference/en/file.tutorial.html:413(span) +#: doc/reference/en/_index.html:1266(a) msgid "TLS" msgstr "" -#: doc/reference/en/file.news.html:227(li) +#: doc/reference/en/file.news.html:272(li) msgid "Supported options." msgstr "" -#: doc/reference/en/file.news.html:228(li) +#: doc/reference/en/file.news.html:273(li) msgid "Supported ActiveRecord 2.2.2." msgstr "" -#: doc/reference/en/file.news.html:229(li) +#: doc/reference/en/file.news.html:274(li) msgid "Supported Ruby on Rails 2.2.2." msgstr "" -#: doc/reference/en/file.news.html:230(li) +#: doc/reference/en/file.news.html:275(li) msgid "" "Used rails/init.rb and rails_generators/ directory structure convention for " "Rails and gem. rails/ directory will be removed after 1.0.2 is released." msgstr "" -#: doc/reference/en/file.news.html:232(li) +#: doc/reference/en/file.news.html:277(li) msgid "AL-Admin migrated to Ruby on Rails 2.2.2 form 2.0.2." msgstr "" -#: doc/reference/en/file.news.html:233(li) +#: doc/reference/en/file.news.html:278(li) msgid "Improved ActiveDirectory integration." msgstr "" -#: doc/reference/en/file.news.html:234(li) +#: doc/reference/en/file.news.html:279(li) msgid "Accepted :class_name for belong_to and has_many option." msgstr "" -#: doc/reference/en/file.news.html:235(li) +#: doc/reference/en/file.news.html:280(li) msgid "Improved default port guess." msgstr "" -#: doc/reference/en/file.news.html:238(li) +#: doc/reference/en/file.news.html:283(li) msgid "[#4] ModifyRecord#load doesn?t operate atomic. [gwarf12]" msgstr "" -#: doc/reference/en/file.news.html:239(li) +#: doc/reference/en/file.news.html:284(li) msgid "[#5] to_xml supports :except option. [baptiste.grenier]" msgstr "" -#: doc/reference/en/file.news.html:240(li) +#: doc/reference/en/file.news.html:285(li) msgid "[#6] to_xml uses ActiveResource format. [baptiste.grenier]" msgstr "" -#: doc/reference/en/file.news.html:241(li) +#: doc/reference/en/file.news.html:286(li) msgid "" "Out of ranged GeneralizedTime uses Time.at(0) as fallback value. [Richard " "Nicholas]" msgstr "" -#: doc/reference/en/file.news.html:243(span) -#: doc/reference/en/index.html:156(span) -#: doc/reference/en/file.README.html:156(span) +#: doc/reference/en/file.news.html:288(span) +#: doc/reference/en/index.html:163(span) +#: doc/reference/en/file.README.html:163(span) msgid "NISHIYAMA" msgstr "" -#: doc/reference/en/file.news.html:243(li) +#: doc/reference/en/file.news.html:288(li) msgid "ActiveLdap::Base#to_s uses #to_ldif. [Kazuhiro ]" msgstr "" -#: doc/reference/en/file.news.html:244(li) +#: doc/reference/en/file.news.html:289(li) msgid "Fixed excess prefix extraction. [Grzegorz Marsza?ek]" msgstr "" -#: doc/reference/en/file.news.html:245(li) +#: doc/reference/en/file.news.html:290(li) msgid "Skiped read only attribute validation. [???????]" msgstr "" -#: doc/reference/en/file.news.html:246(li) +#: doc/reference/en/file.news.html:291(li) msgid "Treated \"\" as empty value. [Ted Lepich]" msgstr "" -#: doc/reference/en/file.news.html:247(li) +#: doc/reference/en/file.news.html:292(li) msgid "" "[#9][#16] Reduced raising when DN value is invalid. [danger1986][Alexey." "Chebotar]" msgstr "" -#: doc/reference/en/file.news.html:249(li) +#: doc/reference/en/file.news.html:294(li) msgid "[#10][#12] Fixed needless ?,? is appeared. [michael.j.konopka]" msgstr "" -#: doc/reference/en/file.news.html:250(li) +#: doc/reference/en/file.news.html:295(li) msgid "[#11] Required missing ?active_ldap/user_password?. [michael.j.konopka]" msgstr "" -#: doc/reference/en/file.news.html:251(li) +#: doc/reference/en/file.news.html:296(li) msgid "" "[#13] Returned entries if has_many :wrap has nonexistent entry. [ingersoll]" msgstr "" -#: doc/reference/en/file.news.html:253(li) +#: doc/reference/en/file.news.html:298(li) msgid "[#15] Fixed type error on computing DN. [ery.lee]" msgstr "" -#: doc/reference/en/file.news.html:254(li) +#: doc/reference/en/file.news.html:299(li) msgid "?>=? filter operator doesn?t work. [id:dicdak]" msgstr "" -#: doc/reference/en/file.news.html:255(li) +#: doc/reference/en/file.news.html:300(li) msgid "" "[#17] ActiveLdap::Base.create doesn?t raise exception. [Alexey.Chebotar]" msgstr "" -#: doc/reference/en/file.news.html:236(li) +#: doc/reference/en/file.news.html:281(li) msgid "" "Bug fixes:
    \n" "\t\t\n" @@ -4324,190 +4039,190 @@ msgid "" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:258(h2) +#: doc/reference/en/file.news.html:303(h2) msgid "1.0.1" msgstr "" -#: doc/reference/en/file.news.html:260(li) +#: doc/reference/en/file.news.html:305(li) msgid "Fixed GetText integration." msgstr "" -#: doc/reference/en/file.news.html:261(li) +#: doc/reference/en/file.news.html:306(li) msgid "" "Fixed ActiveLdap::Base.find with ActiveLdap::DN. (Reported by Jeremy Pruitt)" msgstr "" -#: doc/reference/en/file.news.html:262(li) +#: doc/reference/en/file.news.html:307(li) msgid "Fixed associated bugs. (Reported by CultureSpy)" msgstr "" -#: doc/reference/en/file.news.html:263(li) +#: doc/reference/en/file.news.html:308(li) msgid "" "Supported ActiveLdap::Base#attribute_present? with nonexistence attribute. " "(Reported by Matt Mencel)" msgstr "" -#: doc/reference/en/file.news.html:265(li) +#: doc/reference/en/file.news.html:310(li) msgid "Added ActiveLdap::Base#.to_ldif_record." msgstr "" -#: doc/reference/en/file.news.html:266(li) +#: doc/reference/en/file.news.html:311(li) msgid "Improved inspect." msgstr "" -#: doc/reference/en/file.news.html:267(li) +#: doc/reference/en/file.news.html:312(li) msgid "Supported ActiveSupport 2.1.0." msgstr "" -#: doc/reference/en/file.news.html:269(h2) +#: doc/reference/en/file.news.html:314(h2) msgid "1.0.0" msgstr "" -#: doc/reference/en/file.news.html:271(span) -#: doc/reference/en/index.html:94(span) -#: doc/reference/en/file.README.html:94(span) -#: doc/reference/en/file.tutorial.html:452(span) -#: doc/reference/en/file.tutorial.html:791(span) -#: doc/reference/en/file.tutorial.html:794(span) +#: doc/reference/en/file.news.html:316(span) +#: doc/reference/en/index.html:101(span) +#: doc/reference/en/file.README.html:101(span) +#: doc/reference/en/file.tutorial.html:459(span) +#: doc/reference/en/file.tutorial.html:798(span) +#: doc/reference/en/file.tutorial.html:801(span) msgid "GSSAPI" msgstr "" -#: doc/reference/en/file.news.html:271(li) +#: doc/reference/en/file.news.html:316(li) msgid "" "Fixed auth failure. [#18764] (Reported by Lennon Day-" "Reynolds)" msgstr "" -#: doc/reference/en/file.news.html:272(li) +#: doc/reference/en/file.news.html:317(li) msgid "Supported Symbol as :dn_attribute_value. [#18921] (Requested by Nobody)" msgstr "" -#: doc/reference/en/file.news.html:273(li) +#: doc/reference/en/file.news.html:318(li) msgid "Improved DN attribute detection. (Reported by Iain Pople)" msgstr "" -#: doc/reference/en/file.news.html:274(li) +#: doc/reference/en/file.news.html:319(li) msgid "Avoided unnecesally modify operation. (Reported by Tilo)" msgstr "" -#: doc/reference/en/file.news.html:276(h2) +#: doc/reference/en/file.news.html:321(h2) msgid "0.10.0" msgstr "" -#: doc/reference/en/file.news.html:278(li) +#: doc/reference/en/file.news.html:323(li) msgid "Implemented parser." msgstr "" -#: doc/reference/en/file.news.html:281(li) +#: doc/reference/en/file.news.html:326(li) msgid "Added some validations." msgstr "" -#: doc/reference/en/file.news.html:282(span) +#: doc/reference/en/file.news.html:327(span) msgid "SINGLE" msgstr "" -#: doc/reference/en/file.news.html:282(span) +#: doc/reference/en/file.news.html:327(span) msgid "VALUE" msgstr "" -#: doc/reference/en/file.news.html:282(li) +#: doc/reference/en/file.news.html:327(li) msgid "" "Fixed - validation. [#17763] (Reported by " "Naoto Morishima)" msgstr "" -#: doc/reference/en/file.news.html:279(li) +#: doc/reference/en/file.news.html:324(li) msgid "" "Improved validation:
    \n" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:285(li) +#: doc/reference/en/file.news.html:330(li) msgid "Supported as backend." msgstr "" -#: doc/reference/en/file.news.html:286(li) +#: doc/reference/en/file.news.html:331(li) msgid "Improved auto reconnection." msgstr "" -#: doc/reference/en/file.news.html:287(li) +#: doc/reference/en/file.news.html:332(li) msgid "Supported Rails 2.0.2." msgstr "" -#: doc/reference/en/file.news.html:288(li) +#: doc/reference/en/file.news.html:333(li) msgid "Improved performance. (4x)" msgstr "" -#: doc/reference/en/file.news.html:289(span) -#: doc/reference/en/file.news.html:324(span) -#: doc/reference/en/file.news.html:326(span) -#: doc/reference/en/file.news.html:329(span) -#: doc/reference/en/file.news.html:424(span) -#: doc/reference/en/file.news.html:425(span) -#: doc/reference/en/file.news.html:426(span) +#: doc/reference/en/file.news.html:334(span) +#: doc/reference/en/file.news.html:369(span) +#: doc/reference/en/file.news.html:371(span) +#: doc/reference/en/file.news.html:374(span) +#: doc/reference/en/file.news.html:469(span) +#: doc/reference/en/file.news.html:470(span) +#: doc/reference/en/file.news.html:471(span) msgid "CHANGE" msgstr "" -#: doc/reference/en/file.news.html:289(li) +#: doc/reference/en/file.news.html:334(li) msgid "" "[ ]: removed ??binary? =>? from getter " "result." msgstr "" -#: doc/reference/en/file.news.html:291(pre) +#: doc/reference/en/file.news.html:336(code) msgid "" "e.g.: before: user.user_certificate # => {\"binary\" => ???} now: user." "user_certificate # => ???" msgstr "" -#: doc/reference/en/file.news.html:298(li) +#: doc/reference/en/file.news.html:343(li) msgid "Added :excluded_classed ldap_mapping option." msgstr "" -#: doc/reference/en/file.news.html:299(li) +#: doc/reference/en/file.news.html:344(li) msgid "Logged operation time used for operation." msgstr "" -#: doc/reference/en/file.news.html:302(span) -#: doc/reference/en/file.news.html:304(span) +#: doc/reference/en/file.news.html:347(span) +#: doc/reference/en/file.news.html:349(span) msgid "XXX" msgstr "" -#: doc/reference/en/file.news.html:302(li) +#: doc/reference/en/file.news.html:347(li) msgid "" "Accepted non String value for find(:value => ). " "(Suggested by Marc Dequ?n)" msgstr "" -#: doc/reference/en/file.news.html:304(li) +#: doc/reference/en/file.news.html:349(li) msgid "" "Accepted DN as ActiveLdap::Base.new(). (Reported by Jeremy " "Pruitt)" msgstr "" -#: doc/reference/en/file.news.html:306(li) +#: doc/reference/en/file.news.html:351(li) msgid "" "Treated empty password for smiple bind as anonymous bind. (Suggested by " "Bodaniel Jeans)" msgstr "" -#: doc/reference/en/file.news.html:308(li) +#: doc/reference/en/file.news.html:353(li) msgid "" "Ensured adding ?objectClass? for find?s :attribute value. [#16946] " "(Suggested by Nobody)" msgstr "" -#: doc/reference/en/file.news.html:310(li) +#: doc/reference/en/file.news.html:355(li) msgid "Fixed a GeneralizedTime type casting bug. (Reported by Bodaniel Jeanes)" msgstr "" -#: doc/reference/en/file.news.html:312(li) +#: doc/reference/en/file.news.html:357(li) msgid "" "Supported :base and :prefix search/find option value escaping. (Suggested by " "David Morton)" msgstr "" -#: doc/reference/en/file.news.html:300(li) +#: doc/reference/en/file.news.html:345(li) msgid "" "Improved :
    \n" "\t\t\n" @@ -4517,84 +4232,84 @@ msgid "" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:316(h2) +#: doc/reference/en/file.news.html:361(h2) msgid "0.9.0" msgstr "" -#: doc/reference/en/file.news.html:318(li) +#: doc/reference/en/file.news.html:363(li) msgid "Improved DN handling." msgstr "" -#: doc/reference/en/file.news.html:319(li) +#: doc/reference/en/file.news.html:364(li) msgid "Supported attribute value validation by schema." msgstr "" -#: doc/reference/en/file.news.html:320(li) +#: doc/reference/en/file.news.html:365(li) msgid "Changed RubyGems name: ruby-activeldap ? activeldap." msgstr "" -#: doc/reference/en/file.news.html:321(li) +#: doc/reference/en/file.news.html:366(li) msgid "Removed Log4r dependency." msgstr "" -#: doc/reference/en/file.news.html:324(li) +#: doc/reference/en/file.news.html:369(li) msgid "" "[ ]: establish_connection doesn?t connect " " server." msgstr "" -#: doc/reference/en/file.news.html:322(li) +#: doc/reference/en/file.news.html:367(li) msgid "Supported lazy connection establishing.
" msgstr "" -#: doc/reference/en/file.news.html:326(li) +#: doc/reference/en/file.news.html:371(li) msgid "" "[ ]: Removed ActiveLdap::" "Base#establish_connection." msgstr "" -#: doc/reference/en/file.news.html:327(li) +#: doc/reference/en/file.news.html:372(li) msgid "" "Added ActiveLdap::Base#bind. (use this instead of #establish_connection)" msgstr "" -#: doc/reference/en/file.news.html:328(li) +#: doc/reference/en/file.news.html:373(li) msgid "Supported implicit acts_as_tree." msgstr "" -#: doc/reference/en/file.news.html:329(li) +#: doc/reference/en/file.news.html:374(li) msgid "[ ]: Supported type casting." msgstr "" -#: doc/reference/en/file.news.html:330(li) +#: doc/reference/en/file.news.html:375(li) msgid "Supported :uri option in configuration." msgstr "" -#: doc/reference/en/file.news.html:333(li) +#: doc/reference/en/file.news.html:378(li) msgid "Followed Rails 2.0 changes." msgstr "" -#: doc/reference/en/file.news.html:336(span) +#: doc/reference/en/file.news.html:381(span) msgid "URL" msgstr "" -#: doc/reference/en/file.news.html:336(li) +#: doc/reference/en/file.news.html:381(li) msgid "Supported lang parameter in ." msgstr "" -#: doc/reference/en/file.news.html:337(li) +#: doc/reference/en/file.news.html:382(li) msgid "Improved design a bit. (Please someone help us!)" msgstr "" -#: doc/reference/en/file.news.html:338(li) +#: doc/reference/en/file.news.html:383(li) msgid "Supported schema inspection." msgstr "" -#: doc/reference/en/file.news.html:339(li) +#: doc/reference/en/file.news.html:384(li) msgid "Supported objectClass modifiation." msgstr "" -#: doc/reference/en/file.news.html:334(li) +#: doc/reference/en/file.news.html:379(li) msgid "" "AL-Admin:
    \n" "\t\t\t\n" @@ -4602,120 +4317,120 @@ msgid "" "\t\t\t
" msgstr "" -#: doc/reference/en/file.news.html:343(span) -#: doc/reference/en/ActiveLdap/Command.html:235(span) -#: doc/reference/en/LDAP/Mod.html:239(span) +#: doc/reference/en/file.news.html:388(span) +#: doc/reference/en/ActiveLdap/Command.html:242(span) +#: doc/reference/en/LDAP/Mod.html:252(span) msgid "VERSION" msgstr "" -#: doc/reference/en/file.news.html:343(li) +#: doc/reference/en/file.news.html:388(li) msgid "Added ActiveLdap:: check." msgstr "" -#: doc/reference/en/file.news.html:344(li) +#: doc/reference/en/file.news.html:389(li) msgid "Added model_active_ldap generator." msgstr "" -#: doc/reference/en/file.news.html:345(li) +#: doc/reference/en/file.news.html:390(li) msgid "Renamed scaffold_al generator to scaffold_active_ldap." msgstr "" -#: doc/reference/en/file.news.html:341(li) +#: doc/reference/en/file.news.html:386(li) msgid "" "Rails plugin:
    \n" "\t\t\t\n" "\t\t\t
" msgstr "" -#: doc/reference/en/file.news.html:331(li) +#: doc/reference/en/file.news.html:376(li) msgid "" "Improved Rails integration:
    \n" "\t\t\n" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:349(h2) +#: doc/reference/en/file.news.html:394(h2) msgid "0.8.3" msgstr "" -#: doc/reference/en/file.news.html:351(li) +#: doc/reference/en/file.news.html:396(li) msgid "Added AL-Admin Sample Rails app" msgstr "" -#: doc/reference/en/file.news.html:352(li) +#: doc/reference/en/file.news.html:397(li) msgid "Added Ruby-GetText-Package support" msgstr "" -#: doc/reference/en/file.news.html:353(li) +#: doc/reference/en/file.news.html:398(li) msgid "Added a Rails plugin" msgstr "" -#: doc/reference/en/file.news.html:354(li) +#: doc/reference/en/file.news.html:399(li) msgid "Improved schema handling" msgstr "" -#: doc/reference/en/file.news.html:355(li) +#: doc/reference/en/file.news.html:400(li) msgid "Improved performance" msgstr "" -#: doc/reference/en/file.news.html:356(li) +#: doc/reference/en/file.news.html:401(li) msgid "Many bug fixes" msgstr "" -#: doc/reference/en/file.news.html:358(h2) +#: doc/reference/en/file.news.html:403(h2) msgid "0.8.2" msgstr "" -#: doc/reference/en/file.news.html:362(li) +#: doc/reference/en/file.news.html:407(li) msgid "" "supported Digest-MD5 authentication with Net::" "." msgstr "" -#: doc/reference/en/file.news.html:360(li) +#: doc/reference/en/file.news.html:405(li) msgid "Added Net:: support!
" msgstr "" -#: doc/reference/en/file.news.html:366(li) +#: doc/reference/en/file.news.html:411(li) msgid "improved Sun DS support." msgstr "" -#: doc/reference/en/file.news.html:367(li) +#: doc/reference/en/file.news.html:412(li) msgid "improved ActiveDirectory support. Thanks to Ernie Miller!" msgstr "" -#: doc/reference/en/file.news.html:368(li) +#: doc/reference/en/file.news.html:413(li) msgid "improved Fedora-DS support. Thanks to Daniel Pfile!" msgstr "" -#: doc/reference/en/file.news.html:364(li) +#: doc/reference/en/file.news.html:409(li) msgid "" "improved server support:
    \n" "\t\t\n" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:372(li) +#: doc/reference/en/file.news.html:417(li) msgid "improved DN handling. Thanks to James Hughes!" msgstr "" -#: doc/reference/en/file.news.html:373(li) +#: doc/reference/en/file.news.html:418(li) msgid "improved bind." msgstr "" -#: doc/reference/en/file.news.html:374(li) +#: doc/reference/en/file.news.html:419(li) msgid "improved old check." msgstr "" -#: doc/reference/en/file.news.html:375(li) +#: doc/reference/en/file.news.html:420(li) msgid "improved schema handling. Thanks to Christoph Lipp!" msgstr "" -#: doc/reference/en/file.news.html:376(li) +#: doc/reference/en/file.news.html:421(li) msgid "improved filter notification." msgstr "" -#: doc/reference/en/file.news.html:370(li) +#: doc/reference/en/file.news.html:415(li) msgid "" "improved existing functions:
    \n" "\t\t\n" @@ -4724,43 +4439,43 @@ msgid "" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:380(li) +#: doc/reference/en/file.news.html:425(li) msgid "updated Rails realted documenation. Thanks to James Hughes!" msgstr "" -#: doc/reference/en/file.news.html:381(li) +#: doc/reference/en/file.news.html:426(li) msgid "" "updated documentation for the changes between 0.7.1 and 0.8.0. Thanks to " "Buzz Chopra!" msgstr "" -#: doc/reference/en/file.news.html:378(li) +#: doc/reference/en/file.news.html:423(li) msgid "" "updated documents:
    \n" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:386(li) +#: doc/reference/en/file.news.html:431(li) msgid "added scaffold_al generator for Rails." msgstr "" -#: doc/reference/en/file.news.html:387(li) +#: doc/reference/en/file.news.html:432(li) msgid "added required_classes to default filter value. Thanks to Jeff Hall!" msgstr "" -#: doc/reference/en/file.news.html:388(li) +#: doc/reference/en/file.news.html:433(li) msgid "added :recommended_classes option to ldap_mapping." msgstr "" -#: doc/reference/en/file.news.html:389(li) +#: doc/reference/en/file.news.html:434(li) msgid "added :sort_by and :order options to find." msgstr "" -#: doc/reference/en/file.news.html:390(li) +#: doc/reference/en/file.news.html:435(li) msgid "added ActiveLdap::Base#to_param for ActionController." msgstr "" -#: doc/reference/en/file.news.html:384(li) +#: doc/reference/en/file.news.html:429(li) msgid "" "added new features:
    \n" "\t\t\n" @@ -4769,289 +4484,286 @@ msgid "" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:394(li) +#: doc/reference/en/file.news.html:439(li) msgid "fixed rake install/uninstall." msgstr "" -#: doc/reference/en/file.news.html:395(li) +#: doc/reference/en/file.news.html:440(li) msgid "fixed typos. Thanks to Nobody!" msgstr "" -#: doc/reference/en/file.news.html:396(li) +#: doc/reference/en/file.news.html:441(li) msgid "fixed required_classes initialization. Thanks to James Hughes!" msgstr "" -#: doc/reference/en/file.news.html:392(li) +#: doc/reference/en/file.news.html:437(li) msgid "" "fixed some bugs:
    \n" "\t\t\n" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:399(h2) +#: doc/reference/en/file.news.html:444(h2) msgid "0.8.1" msgstr "" -#: doc/reference/en/file.news.html:401(li) +#: doc/reference/en/file.news.html:446(li) msgid "used Dependencies.load_paths." msgstr "" -#: doc/reference/en/file.news.html:402(li) +#: doc/reference/en/file.news.html:447(li) msgid "check whether attribute name is available or not." msgstr "" -#: doc/reference/en/file.news.html:403(li) +#: doc/reference/en/file.news.html:448(li) msgid "" "added test for find(:first, :attribute => ?xxx?, :value => ?yyy?)." msgstr "" -#: doc/reference/en/file.news.html:404(li) +#: doc/reference/en/file.news.html:449(li) msgid "supported ActiveSupport 1.4.0." msgstr "" -#: doc/reference/en/file.news.html:405(span) -#: doc/reference/en/file_list.html:43(a) doc/reference/en/_index.html:63(a) +#: doc/reference/en/file.news.html:450(span) +#: doc/reference/en/file_list.html:49(a) doc/reference/en/_index.html:67(a) msgid "README" msgstr "" -#: doc/reference/en/file.news.html:405(li) +#: doc/reference/en/file.news.html:450(li) msgid "" "make the dual licensing of ruby-activeldap clear in the ." msgstr "" -#: doc/reference/en/file.news.html:406(li) +#: doc/reference/en/file.news.html:451(li) msgid "followed edge Rails: don?t use Reloadable::Subclasses if doesn?t need." msgstr "" -#: doc/reference/en/file.news.html:407(li) +#: doc/reference/en/file.news.html:452(li) msgid "added examples/." msgstr "" -#: doc/reference/en/file.news.html:408(li) +#: doc/reference/en/file.news.html:453(li) msgid "removed debug code." msgstr "" -#: doc/reference/en/file.news.html:409(span) +#: doc/reference/en/file.news.html:454(span) msgid "MUST" msgstr "" -#: doc/reference/en/file.news.html:409(span) +#: doc/reference/en/file.news.html:454(span) msgid "MAY" msgstr "" -#: doc/reference/en/file.news.html:409(li) +#: doc/reference/en/file.news.html:454(li) msgid "" "normalized attribute name to support wrong attribute names in /." msgstr "" -#: doc/reference/en/file.news.html:410(li) +#: doc/reference/en/file.news.html:455(li) msgid "supported getting dn value by Base#[]." msgstr "" -#: doc/reference/en/file.news.html:411(li) +#: doc/reference/en/file.news.html:456(li) msgid "test/test_userls.rb: followed userls changes." msgstr "" -#: doc/reference/en/file.news.html:412(li) +#: doc/reference/en/file.news.html:457(li) msgid "update the doc href." msgstr "" -#: doc/reference/en/file.news.html:413(li) +#: doc/reference/en/file.news.html:458(li) msgid "" "provide a dumb example of how to use the old association(return_objects) " "style with the new awesome ." msgstr "" -#: doc/reference/en/file.news.html:414(li) +#: doc/reference/en/file.news.html:459(li) msgid "followed new ." msgstr "" -#: doc/reference/en/file.news.html:415(li) +#: doc/reference/en/file.news.html:460(li) msgid "removed a finished task: support Reloadable::Subclasses." msgstr "" -#: doc/reference/en/file.news.html:417(h2) +#: doc/reference/en/file.news.html:462(h2) msgid "0.8.0" msgstr "" -#: doc/reference/en/file.news.html:419(li) +#: doc/reference/en/file.news.html:464(li) msgid "Makefile/gemspec system replaced with Rakefile + Hoe" msgstr "" -#: doc/reference/en/file.news.html:420(li) +#: doc/reference/en/file.news.html:465(li) msgid "Bugfix: Allow base to be empty" msgstr "" -#: doc/reference/en/file.news.html:421(li) +#: doc/reference/en/file.news.html:466(li) msgid "" "Add support for Date, DateTime, and Time objects (patch from Patrick Cole)" msgstr "" -#: doc/reference/en/file.news.html:422(li) +#: doc/reference/en/file.news.html:467(li) msgid "" "Add support for a :filter argument to override the default attr=val " " search filter in find_all() and find() (patch from Patrick " "Cole)" msgstr "" -#: doc/reference/en/file.news.html:423(li) +#: doc/reference/en/file.news.html:468(li) msgid "" "Add Base#update_attributes(hash) method which does bulk updates to " "attributes (patch from Patrick Cole) and saves immediately" msgstr "" -#: doc/reference/en/file.news.html:424(li) +#: doc/reference/en/file.news.html:469(li) msgid "" " : #attributes now returns a Hash of " "attribute_name => clone(attribute_val)" msgstr "" -#: doc/reference/en/file.news.html:425(li) +#: doc/reference/en/file.news.html:470(li) msgid "" " : #attribute_names now returns an " "alphabetically sorted list of attribute names" msgstr "" -#: doc/reference/en/file.news.html:426(li) +#: doc/reference/en/file.news.html:471(li) msgid " ;" msgstr "" -#: doc/reference/en/file.news.html:427(li) +#: doc/reference/en/file.news.html:472(li) msgid "" "Added attributes=() as the implementation for update_attributes(hash) " "(without autosave)" msgstr "" -#: doc/reference/en/file.news.html:428(span) -#: doc/reference/en/file.news.html:429(span) -#: doc/reference/en/file.news.html:430(span) -#: doc/reference/en/file.news.html:431(span) -#: doc/reference/en/file.news.html:432(span) +#: doc/reference/en/file.news.html:473(span) +#: doc/reference/en/file.news.html:474(span) +#: doc/reference/en/file.news.html:475(span) +#: doc/reference/en/file.news.html:476(span) +#: doc/reference/en/file.news.html:477(span) msgid "TRANSITION" msgstr "" -#: doc/reference/en/file.news.html:428(li) +#: doc/reference/en/file.news.html:473(li) msgid "" " : Base#write is now deprecated. Please use " "Base#save" msgstr "" -#: doc/reference/en/file.news.html:429(li) +#: doc/reference/en/file.news.html:474(li) msgid "" " : Added SaveError exception (which is a " "subclass of WriteError for now)" msgstr "" -#: doc/reference/en/file.news.html:430(li) +#: doc/reference/en/file.news.html:475(li) msgid "" " : Base.connect() is now deprecated. Please " "use Base.establish_connection()" msgstr "" -#: doc/reference/en/file.news.html:431(li) +#: doc/reference/en/file.news.html:476(li) msgid "" " : Base.close() is now deprecated. Please " "use Base.remove_connection()" msgstr "" -#: doc/reference/en/file.news.html:432(li) +#: doc/reference/en/file.news.html:477(li) msgid "" " : :bind_format and :user of Base." "establish_connection() are now deprecated. Please use :bind_dn" msgstr "" -#: doc/reference/en/file.news.html:433(li) +#: doc/reference/en/file.news.html:478(li) msgid "" "Added update_attribute(name, value) to update one attribute and save " "immediately" msgstr "" -#: doc/reference/en/file.news.html:434(li) +#: doc/reference/en/file.news.html:479(li) msgid "#delete ? #destroy" msgstr "" -#: doc/reference/en/file.news.html:435(li) +#: doc/reference/en/file.news.html:480(li) msgid "Base.destroy_all" msgstr "" -#: doc/reference/en/file.news.html:436(li) +#: doc/reference/en/file.news.html:481(li) msgid "Base.delete(id) & Base.delete_all(filter)" msgstr "" -#: doc/reference/en/file.news.html:437(li) +#: doc/reference/en/file.news.html:482(li) msgid "add Base.exists?(dnattr_val)" msgstr "" -#: doc/reference/en/file.news.html:438(li) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:96(strong) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:189(strong) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:207(span) +#: doc/reference/en/file.news.html:483(li) msgid "attr_protected" msgstr "" -#: doc/reference/en/file.news.html:439(li) +#: doc/reference/en/file.news.html:484(li) msgid "" "Base.update(dnattr_val, attributes_hash) ? instantiate, update, save, return" msgstr "" -#: doc/reference/en/file.news.html:440(li) +#: doc/reference/en/file.news.html:485(li) msgid "Base.update_all(updates_hash, filter)" msgstr "" -#: doc/reference/en/file.news.html:441(li) +#: doc/reference/en/file.news.html:486(li) msgid "attribute_present?(attribute) ? if not empty/nil" msgstr "" -#: doc/reference/en/file.news.html:442(li) +#: doc/reference/en/file.news.html:487(li) msgid "has_attribute?(attr_name) ? if in hash" msgstr "" -#: doc/reference/en/file.news.html:443(li) +#: doc/reference/en/file.news.html:488(li) msgid "reload() (refetch from )" msgstr "" -#: doc/reference/en/file.news.html:444(li) +#: doc/reference/en/file.news.html:489(li) msgid "make save() return false on fail" msgstr "" -#: doc/reference/en/file.news.html:445(li) +#: doc/reference/en/file.news.html:490(li) msgid "make save!() raise EntryNotSaved exception" msgstr "" -#: doc/reference/en/file.news.html:446(li) +#: doc/reference/en/file.news.html:491(li) msgid "to_xml()" msgstr "" -#: doc/reference/en/file.news.html:449(li) +#: doc/reference/en/file.news.html:494(li) msgid "make @@active_connections and name them by" msgstr "" -#: doc/reference/en/file.news.html:447(li) +#: doc/reference/en/file.news.html:492(li) msgid "clear_active_connections!() ? Conn per class
" msgstr "" -#: doc/reference/en/file.news.html:451(li) +#: doc/reference/en/file.news.html:496(li) msgid "base_class() (just return the ancestor)" msgstr "" -#: doc/reference/en/file.news.html:454(li) +#: doc/reference/en/file.news.html:499(li) msgid "add_objectclass" msgstr "" -#: doc/reference/en/file.news.html:455(li) +#: doc/reference/en/file.news.html:500(li) msgid "remove_objectclass" msgstr "" -#: doc/reference/en/file.news.html:456(li) +#: doc/reference/en/file.news.html:501(li) msgid "replace_objectclass" msgstr "" -#: doc/reference/en/file.news.html:457(li) +#: doc/reference/en/file.news.html:502(li) msgid "disallow direct objectclass access?" msgstr "" -#: doc/reference/en/file.news.html:452(li) +#: doc/reference/en/file.news.html:497(li) msgid "" "Separate ObjectClass changes to live in ActiveLDAP::ObjectClass " "
    \n" @@ -5060,467 +4772,467 @@ msgid "" "\t\t
" msgstr "" -#: doc/reference/en/file.news.html:459(li) +#: doc/reference/en/file.news.html:504(li) msgid "support ActiveRecord::Validations." msgstr "" -#: doc/reference/en/file.news.html:460(li) +#: doc/reference/en/file.news.html:505(li) msgid "support ActiveRecord::Callbacks." msgstr "" -#: doc/reference/en/file.news.html:461(li) +#: doc/reference/en/file.news.html:506(li) msgid "" "rename to ActiveLdap from ActiveLDAP to integrate RoR easily and enforce " "many changes." msgstr "" -#: doc/reference/en/file.news.html:464(h2) +#: doc/reference/en/file.news.html:509(h2) msgid "0.7.4" msgstr "" -#: doc/reference/en/file.news.html:466(li) +#: doc/reference/en/file.news.html:511(li) msgid "" "Bugfix: do not base ::PrettyError on RuntimeError due to " "rescue evaluation." msgstr "" -#: doc/reference/en/file.news.html:467(li) +#: doc/reference/en/file.news.html:512(li) msgid "Bugfix: :return_objects was overriding :objects in find and find_all" msgstr "" -#: doc/reference/en/file.news.html:468(li) +#: doc/reference/en/file.news.html:513(li) msgid "Rollup exception code into smaller space reusing similar code." msgstr "" -#: doc/reference/en/file.news.html:470(h2) +#: doc/reference/en/file.news.html:515(h2) msgid "0.7.3" msgstr "" -#: doc/reference/en/file.news.html:472(li) +#: doc/reference/en/file.news.html:517(li) msgid "Made has_many and belongs_to use :return_objects value" msgstr "" -#: doc/reference/en/file.news.html:473(li) +#: doc/reference/en/file.news.html:518(li) msgid "" "Force generation of constants on import ? currently broken" msgstr "" -#: doc/reference/en/file.news.html:475(h2) +#: doc/reference/en/file.news.html:520(h2) msgid "0.7.2" msgstr "" -#: doc/reference/en/file.news.html:477(li) +#: doc/reference/en/file.news.html:522(li) msgid "Stopped overriding Conn.schema in ldap/schema ? now use schema2" msgstr "" -#: doc/reference/en/file.news.html:478(li) +#: doc/reference/en/file.news.html:523(li) msgid "" "Fix attributes being deleted when changing between objectclasses with shared " "attributes" msgstr "" -#: doc/reference/en/file.news.html:479(li) +#: doc/reference/en/file.news.html:524(li) msgid "Added schema attribute case insensitivity" msgstr "" -#: doc/reference/en/file.news.html:480(li) +#: doc/reference/en/file.news.html:525(li) msgid "Added case insensitivity to the attribute methods." msgstr "" -#: doc/reference/en/file.news.html:481(li) +#: doc/reference/en/file.news.html:526(li) msgid "" "Added scope override support to ldap_mapping via :scope " "argument. (ldap_mapping :scope => ::LDAP_SCOPE_SUBTREE, ?)" msgstr "" -#: doc/reference/en/file.news.html:482(li) +#: doc/reference/en/file.news.html:527(li) msgid "" "Fixed the bug where Klass.find() return nil (default arg for find/find_all " "now ?*?)" msgstr "" -#: doc/reference/en/file.news.html:483(li) +#: doc/reference/en/file.news.html:528(li) msgid "" "Added :return_objects to Base.connect()/configuration.rb ? When true, sets " "the default behavior in Base.find/find_all to return objects instead of just " "the dnattr string." msgstr "" -#: doc/reference/en/file.news.html:484(li) +#: doc/reference/en/file.news.html:529(li) msgid "Hid away several exposed private class methods (do_bind, etc)" msgstr "" -#: doc/reference/en/file.news.html:485(li) +#: doc/reference/en/file.news.html:530(li) msgid "Undefined dnattr for a class now raises a ConfigurationError" msgstr "" -#: doc/reference/en/file.news.html:486(li) +#: doc/reference/en/file.news.html:531(li) msgid "Centralized all connection management code where possible" msgstr "" -#: doc/reference/en/file.news.html:487(li) +#: doc/reference/en/file.news.html:532(li) msgid "" "Added Base.can_reconnect? which returns true if never connected or below " "the :retries limit" msgstr "" -#: doc/reference/en/file.news.html:488(li) +#: doc/reference/en/file.news.html:533(li) msgid "" "Added block support to Base.connection to ensure ?safe? connection usage. " "This is not just for internal library use. If you need to do something fancy " "with the connection object, use Base.connection do |conn| ?" msgstr "" -#: doc/reference/en/file.news.html:489(li) +#: doc/reference/en/file.news.html:534(li) msgid "Fixed object instantiation in Base#initialize when using full DNs" msgstr "" -#: doc/reference/en/file.news.html:490(li) +#: doc/reference/en/file.news.html:535(li) msgid "" "Added :parent_class option to ldap_mapping which allows for object.parent() " "to return an instantiated object using the parent DN. (ldap_mapping :" "parent_class => String, ?)" msgstr "" -#: doc/reference/en/file.news.html:491(li) +#: doc/reference/en/file.news.html:536(li) msgid "" "Fixed reconnect bug in Base#initialize (didn?t respect infinite retries)" msgstr "" -#: doc/reference/en/file.news.html:492(li) +#: doc/reference/en/file.news.html:537(li) msgid "" "Added(*) :timeout argument to allow timeouts on hanging " "connections" msgstr "" -#: doc/reference/en/file.news.html:493(li) +#: doc/reference/en/file.news.html:538(li) msgid "" "Added(*) :retry_on_timeout boolean option to allow disabling retries on " "timeouts" msgstr "" -#: doc/reference/en/file.news.html:494(li) +#: doc/reference/en/file.news.html:539(li) msgid "Added TimeoutError" msgstr "" -#: doc/reference/en/file.news.html:495(span) +#: doc/reference/en/file.news.html:540(span) msgid "SIGALRM" msgstr "" -#: doc/reference/en/file.news.html:495(li) +#: doc/reference/en/file.news.html:540(li) msgid "" "Added(*) a forking timeout using to interrupt handling." msgstr "" -#: doc/reference/en/file.news.html:496(li) +#: doc/reference/en/file.news.html:541(li) msgid "(*) Only works when RUBY_PLATFORM has ?linux? in it" msgstr "" -#: doc/reference/en/file.news.html:498(h2) +#: doc/reference/en/file.news.html:543(h2) msgid "0.7.1" msgstr "" -#: doc/reference/en/file.news.html:500(li) +#: doc/reference/en/file.news.html:545(li) msgid "Fix broken -W0 arg in activeldap.rb" msgstr "" -#: doc/reference/en/file.news.html:501(li) +#: doc/reference/en/file.news.html:546(li) msgid "attribute_method=: ?? and nil converted to ldap-pleasing [] values" msgstr "" -#: doc/reference/en/file.news.html:502(li) +#: doc/reference/en/file.news.html:547(li) msgid "Added checks in write and search for connection down (to reconnect)" msgstr "" -#: doc/reference/en/file.news.html:503(li) +#: doc/reference/en/file.news.html:548(li) msgid "" "Fixed broken idea of ::err2string exceptions. Instead took " "errcodes from ldap.c in Ruby/." msgstr "" -#: doc/reference/en/file.news.html:505(h2) +#: doc/reference/en/file.news.html:550(h2) msgid "0.7.0" msgstr "" -#: doc/reference/en/file.news.html:507(li) +#: doc/reference/en/file.news.html:552(li) msgid "" "ConnectionError thrown from #initialize when there is no connection and " "retry limit was exceeded" msgstr "" -#: doc/reference/en/file.news.html:508(li) +#: doc/reference/en/file.news.html:553(li) msgid "" "ConnectionError thrown when retries exceeded when no connection was created" msgstr "" -#: doc/reference/en/file.news.html:509(span) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:97(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:86(a) -#: doc/reference/en/_index.html:1190(a) +#: doc/reference/en/file.news.html:554(span) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:104(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:93(a) +#: doc/reference/en/_index.html:1188(a) msgid "SSL" msgstr "" -#: doc/reference/en/file.news.html:509(li) +#: doc/reference/en/file.news.html:554(li) msgid "" "Separated connection types: , , and plain " "using :method" msgstr "" -#: doc/reference/en/file.news.html:510(li) +#: doc/reference/en/file.news.html:555(li) msgid "Localized reconnect logic into Base.reconnect(force=false)" msgstr "" -#: doc/reference/en/file.news.html:511(span) +#: doc/reference/en/file.news.html:556(span) msgid "SIMPLE" msgstr "" -#: doc/reference/en/file.news.html:511(li) +#: doc/reference/en/file.news.html:556(li) msgid "" "Fixed password_block evaluation bug in do_bind() which broke re-binds and broke reconnect" msgstr "" -#: doc/reference/en/file.news.html:512(li) +#: doc/reference/en/file.news.html:557(li) msgid "Add support for config[:sasl_quiet] in Base.connect" msgstr "" -#: doc/reference/en/file.news.html:513(li) +#: doc/reference/en/file.news.html:558(li) msgid "" "(Delayed a case sensitivity patch for object classes and attributes due to " "weird errors)" msgstr "" -#: doc/reference/en/file.news.html:514(li) +#: doc/reference/en/file.news.html:559(li) msgid "" "Add :retry_wait to Base.connect to determine the timeout before retrying a " "connection" msgstr "" -#: doc/reference/en/file.news.html:515(li) +#: doc/reference/en/file.news.html:560(li) msgid "" "Fixed ActiveLDAP::Base.create_object() ? classes were enclosed in quotes" msgstr "" -#: doc/reference/en/file.news.html:516(span) -#: doc/reference/en/file.news.html:542(span) +#: doc/reference/en/file.news.html:561(span) +#: doc/reference/en/file.news.html:587(span) msgid "ONELEVEL" msgstr "" -#: doc/reference/en/file.news.html:516(li) +#: doc/reference/en/file.news.html:561(li) msgid "" "Added :ldap_scope Base.connect() argument to allow risk-seeking users to " "change the scope to something other than ." msgstr "" -#: doc/reference/en/file.news.html:517(li) +#: doc/reference/en/file.news.html:562(li) msgid "" "Cleaned up Configuration.rb to supply all default values for ActiveLDAP::" "Base.connect() and to use a constant instead of overriding class variables " "for no good reason." msgstr "" -#: doc/reference/en/file.news.html:518(li) +#: doc/reference/en/file.news.html:563(li) msgid "" "Added scrubbing for :base argument into Base.connect() to make sure a ? " "doesn?t get evaluated." msgstr "" -#: doc/reference/en/file.news.html:519(li) +#: doc/reference/en/file.news.html:564(li) msgid "Refactored Base.connect(). It is now much cleaner and easier to follow." msgstr "" -#: doc/reference/en/file.news.html:520(li) +#: doc/reference/en/file.news.html:565(li) msgid "" "Moved schema retrieval to after bind in case a server requires privileges to " "access it." msgstr "" -#: doc/reference/en/file.news.html:521(li) +#: doc/reference/en/file.news.html:566(li) msgid "" "Reworked the bind process to be a little prettier. A lot of work to do here " "still." msgstr "" -#: doc/reference/en/file.news.html:522(li) +#: doc/reference/en/file.news.html:567(li) msgid "" "Added ::err2exception(errno) which is the groundwork of a " "coming overhaul in user friendly error handling." msgstr "" -#: doc/reference/en/file.news.html:523(li) +#: doc/reference/en/file.news.html:568(li) msgid "" "Added support for Base::connect(.., :password => String, ?) to avoid " -"stupid Proc.new &&#8217;foo&&#8217;foo&#8217; crap" +"stupid Proc.new ?foo? crap" msgstr "" -#: doc/reference/en/file.news.html:524(li) +#: doc/reference/en/file.news.html:569(li) msgid "" "Add :store_password option. When this is set, :password is not cleared and :" "password_block is not re-evaluated on each rebind." msgstr "" -#: doc/reference/en/file.news.html:526(h2) +#: doc/reference/en/file.news.html:571(h2) msgid "0.6.0" msgstr "" -#: doc/reference/en/file.news.html:528(li) +#: doc/reference/en/file.news.html:573(li) msgid "Disallow blank DN attribute values on initialization" msgstr "" -#: doc/reference/en/file.news.html:529(li) +#: doc/reference/en/file.news.html:574(li) msgid "Fix bug reported by Maik Schmidt regarding object creation" msgstr "" -#: doc/reference/en/file.news.html:530(li) +#: doc/reference/en/file.news.html:575(li) msgid "Added error checking to disallow DN attribute value changes" msgstr "" -#: doc/reference/en/file.news.html:531(li) +#: doc/reference/en/file.news.html:576(li) msgid "Added AttributeAssignmentError (for above)" msgstr "" -#: doc/reference/en/file.news.html:532(li) +#: doc/reference/en/file.news.html:577(li) msgid "Import() and initialize() no longer call attribute_method=()" msgstr "" -#: doc/reference/en/file.news.html:533(li) +#: doc/reference/en/file.news.html:578(li) msgid "Added error condition if connection fails inside initialize()" msgstr "" -#: doc/reference/en/file.news.html:534(li) +#: doc/reference/en/file.news.html:579(li) msgid "Changes examples and tests to use ?dc=localdomain?" msgstr "" -#: doc/reference/en/file.news.html:535(li) +#: doc/reference/en/file.news.html:580(li) msgid "has_many() entries no longer return nil when empty" msgstr "" -#: doc/reference/en/file.news.html:537(h2) +#: doc/reference/en/file.news.html:582(h2) msgid "0.5.9" msgstr "" -#: doc/reference/en/file.news.html:539(li) +#: doc/reference/en/file.news.html:584(li) msgid "Change default base to dc=localdomain (as per Debian default)." msgstr "" -#: doc/reference/en/file.news.html:540(li) +#: doc/reference/en/file.news.html:585(li) msgid "schema2.rb:attr() now returns [] instead of ?? when empty." msgstr "" -#: doc/reference/en/file.news.html:541(li) +#: doc/reference/en/file.news.html:586(li) msgid "" "Lookup of new objects does not put dnattr()=value into the Base on lookup." msgstr "" -#: doc/reference/en/file.news.html:542(span) +#: doc/reference/en/file.news.html:587(span) msgid "SUBTREE" msgstr "" -#: doc/reference/en/file.news.html:542(li) +#: doc/reference/en/file.news.html:587(li) msgid "" "Scope is now use instead of as it broke " "object boundaries." msgstr "" -#: doc/reference/en/file.news.html:543(li) +#: doc/reference/en/file.news.html:588(li) msgid "Fixed @max_retries misuse." msgstr "" -#: doc/reference/en/file.news.html:544(li) +#: doc/reference/en/file.news.html:589(li) msgid "Added do_connect retries." msgstr "" -#: doc/reference/en/file.news.html:545(li) +#: doc/reference/en/file.news.html:590(li) msgid "Fixed find and find_all for the case ? find_all(?*?)." msgstr "" -#: doc/reference/en/file.news.html:546(li) +#: doc/reference/en/file.news.html:591(li) msgid "Fixed broken creation of objects from anonymous classes." msgstr "" -#: doc/reference/en/file.news.html:547(li) +#: doc/reference/en/file.news.html:592(li) msgid "Fixed broken use of ldap_mapping with anonymous classes." msgstr "" -#: doc/reference/en/file.news.html:549(h2) +#: doc/reference/en/file.news.html:594(h2) msgid "0.5.8: Bugfix galore" msgstr "" -#: doc/reference/en/file.news.html:551(li) +#: doc/reference/en/file.news.html:596(li) msgid "Allow nil ?prefix?" msgstr "" -#: doc/reference/en/file.news.html:552(li) +#: doc/reference/en/file.news.html:597(li) msgid "Fixed the dup bug with Anonymous patch." msgstr "" -#: doc/reference/en/file.news.html:553(li) +#: doc/reference/en/file.news.html:598(li) msgid "(maybe) Fixed stale connection problems by attempting reconn/bind." msgstr "" -#: doc/reference/en/file.news.html:554(li) +#: doc/reference/en/file.news.html:599(li) msgid "Hiding redefine warnings (for now)" msgstr "" -#: doc/reference/en/file.news.html:556(h2) +#: doc/reference/en/file.news.html:601(h2) msgid "0.5.7" msgstr "" -#: doc/reference/en/file.news.html:558(code) +#: doc/reference/en/file.news.html:603(code) msgid "data.default = [] bug that daniel" msgstr "" -#: doc/reference/en/file.news.html:558(li) +#: doc/reference/en/file.news.html:603(li) msgid "" "Fixed the nightrunner.com pointed out (and partially " "patched)." msgstr "" -#: doc/reference/en/file.news.html:561(h2) +#: doc/reference/en/file.news.html:606(h2) msgid "0.5.6" msgstr "" -#: doc/reference/en/file.news.html:563(li) +#: doc/reference/en/file.news.html:608(li) msgid "Added support for foreign_key => ?dn? in has_many." msgstr "" -#: doc/reference/en/file.news.html:565(h2) +#: doc/reference/en/file.news.html:610(h2) msgid "0.5.5" msgstr "" -#: doc/reference/en/file.news.html:567(li) +#: doc/reference/en/file.news.html:612(li) msgid "Remove @@logger.debug entries during build" msgstr "" -#: doc/reference/en/file.news.html:568(li) +#: doc/reference/en/file.news.html:613(li) msgid "Building -debug and regular gems and tarballs" msgstr "" -#: doc/reference/en/file.news.html:570(h2) +#: doc/reference/en/file.news.html:615(h2) msgid "0.5.4" msgstr "" -#: doc/reference/en/file.news.html:574(li) +#: doc/reference/en/file.news.html:619(li) msgid "" "Speeds up find and find_all by not accessing multiple times " "for data we already have." msgstr "" -#: doc/reference/en/file.news.html:572(li) +#: doc/reference/en/file.news.html:617(li) msgid "" "Added Base#import to streamline the Base.find and Base.find_all methods " "
" msgstr "" -#: doc/reference/en/file.news.html:577(li) +#: doc/reference/en/file.news.html:622(li) msgid "" "Added tests/benchmark which is a slightly modified version of excellent " "benchmarking code contributed by Ollivier Robert" msgstr "" -#: doc/reference/en/file.news.html:571(ul) +#: doc/reference/en/file.news.html:616(ul) msgid "" "\n" "\t-_-AT-_- keltia.freenix.fr>. 0.5.3 Changed " @@ -5634,58 +5346,59 @@ msgstr "" msgid "File: development — ActiveLdap" msgstr "????: ?? — ActiveLdap" -#: doc/reference/en/file.development.html:37(span) +#: doc/reference/en/file.development.html:35(span) msgid "File: development" msgstr "????: ??" -#: doc/reference/en/file.development.html:57(h1) +#: doc/reference/en/file.development.html:64(h1) msgid "Development" msgstr "??" -#: doc/reference/en/file.development.html:58(p) +#: doc/reference/en/file.development.html:65(p) msgid "Here is information for developers." msgstr "??????????" -#: doc/reference/en/file.development.html:59(h2) +#: doc/reference/en/file.development.html:66(h2) msgid "Repository" msgstr "?????" -#: doc/reference/en/file.development.html:60(a) +#: doc/reference/en/file.development.html:67(a) msgid "git repository on GitHub" msgstr "GitHub??git?????" -#: doc/reference/en/file.development.html:60(p) +#: doc/reference/en/file.development.html:67(p) msgid "" "ActiveLdap uses . Here is a list to get each source code." msgstr "" "ActiveLdap?????????????????????????" "?????" -#: doc/reference/en/file.development.html:64(a) +#: doc/reference/en/file.development.html:71(a) +#: doc/reference/en/file.rails.html:69(span) msgid "activeldap" msgstr "" -#: doc/reference/en/file.development.html:65(pre) +#: doc/reference/en/file.development.html:72(pre) msgid "% git clone https://github.com/activeldap/activeldap.git" msgstr "" -#: doc/reference/en/file.development.html:68(a) +#: doc/reference/en/file.development.html:75(a) msgid "al-admin" msgstr "" -#: doc/reference/en/file.development.html:69(pre) +#: doc/reference/en/file.development.html:76(pre) msgid "% git clone https://github.com/activeldap/al-admin.git" msgstr "" -#: doc/reference/en/file.development.html:73(h2) +#: doc/reference/en/file.development.html:80(h2) msgid "Issues" msgstr "??????" -#: doc/reference/en/file.development.html:74(a) +#: doc/reference/en/file.development.html:81(a) msgid "Issues on GitHub" msgstr "GitHub??Issues" -#: doc/reference/en/file.development.html:74(p) +#: doc/reference/en/file.development.html:81(p) msgid "" "ActiveLdap uses for issue tracking. Please submit a issue " "when you find an issue." @@ -5693,86 +5406,72 @@ msgstr "" "ActiveLdap?????????????????????????" "????????????????????????" -#: doc/reference/en/file.development.html:78(h2) +#: doc/reference/en/file.development.html:85(h2) msgid "Rails 3 support" msgstr "Rails 3??" -#: doc/reference/en/file.development.html:79(p) +#: doc/reference/en/file.development.html:86(p) msgid "Here is design about Rails 3 support." msgstr "Rails 3???????????" -#: doc/reference/en/file.development.html:80(h3) +#: doc/reference/en/file.development.html:87(h3) #: doc/reference/en/ActiveLdap/Base.html:1365(strong) -#: doc/reference/en/ActiveLdap/Base.html:2549(span) -#: doc/reference/en/ActiveLdap/Base.html:2552(span) -#: doc/reference/en/ActiveLdap/Base.html:4127(span) -#: doc/reference/en/ActiveLdap/Base.html:4224(strong) -#: doc/reference/en/ActiveLdap/Base.html:4241(span) -#: doc/reference/en/ActiveLdap/Base.html:4242(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:138(strong) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:426(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:497(strong) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:526(span) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:219(strong) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:145(strong) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:441(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:509(strong) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:539(span) msgid "must" msgstr "????" -#: doc/reference/en/file.development.html:82(li) +#: doc/reference/en/file.development.html:89(li) msgid "" "We add active_ldap/test_help.rb to support ActiveLdap fixture. We don?t " "write same codes into test_helper.rb like http://ruby-activeldap.rubyforge." "org/activeldap-fabrication/en/#Install" msgstr "" -#: doc/reference/en/file.development.html:86(h3) -#: doc/reference/en/ActiveLdap/Base.html:1296(strong) -#: doc/reference/en/ActiveLdap/Base.html:2550(span) -#: doc/reference/en/ActiveLdap/Base.html:2553(span) -#: doc/reference/en/ActiveLdap/Base.html:4128(span) -#: doc/reference/en/ActiveLdap/Base.html:4146(strong) -#: doc/reference/en/ActiveLdap/Base.html:4163(span) -#: doc/reference/en/ActiveLdap/Base.html:4164(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:111(strong) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:427(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:453(strong) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:482(span) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:198(strong) +#: doc/reference/en/file.development.html:93(h3) +#: doc/reference/en/ActiveLdap/Base.html:1343(strong) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:116(strong) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:442(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:466(strong) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:496(span) msgid "may" msgstr "???????" -#: doc/reference/en/file.development.html:88(li) +#: doc/reference/en/file.development.html:95(li) msgid "We support Warden." msgstr "Warden???" -#: doc/reference/en/file.development.html:89(li) +#: doc/reference/en/file.development.html:96(li) msgid "We support Devise" msgstr "Devise???" -#: doc/reference/en/file.development.html:90(li) +#: doc/reference/en/file.development.html:97(li) msgid "We support OmniAuth. (instead of Warden)" msgstr "?Warden??????OmniAuth???" -#: doc/reference/en/file.development.html:92(span) +#: doc/reference/en/file.development.html:99(span) msgid "DONE" msgstr "??" -#: doc/reference/en/file.development.html:94(li) +#: doc/reference/en/file.development.html:101(li) msgid "We don?t support Rails 3.0.?." msgstr "Rails 3.0.x???????" -#: doc/reference/en/file.development.html:95(li) +#: doc/reference/en/file.development.html:102(li) msgid "We provide active_ldap/railtie to initialize ActiveLdap." msgstr "ActiveLdap??????active_ldap/railtie????" -#: doc/reference/en/file.development.html:96(li) +#: doc/reference/en/file.development.html:103(li) msgid "We remove ActiveRecord dependency." msgstr "ActiveRecord????????" -#: doc/reference/en/file.development.html:97(li) +#: doc/reference/en/file.development.html:104(li) msgid "We depend on ActiveModel instead of ActiveRecord." msgstr "ActiveRecord?????ActiveModel????" -#: doc/reference/en/file.development.html:98(li) +#: doc/reference/en/file.development.html:105(li) msgid "" "We target to Rails 3.1.0. (Yes, it?s not released yet but it will be " "released before we support Rails 3.?.)" @@ -5780,7 +5479,7 @@ msgstr "" "Rails 3.1.0???????????3.1.0????????????????" "ActiveLdap?Rails 3??????????????????????" -#: doc/reference/en/file.development.html:100(li) +#: doc/reference/en/file.development.html:107(li) msgid "" "We update the documentation and ensure that the procedure for including " "ActiveLdap in a Rails 3 project is correct." @@ -5792,303 +5491,289 @@ msgstr "" msgid "Top Level Namespace — ActiveLdap" msgstr "????????????? — ActiveLdap" -#: doc/reference/en/top-level-namespace.html:39(span) -#: doc/reference/en/top-level-namespace.html:59(h1) -#: doc/reference/en/class_list.html:41(a) -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/top-level-namespace.html:37(span) +#: doc/reference/en/top-level-namespace.html:66(h1) +#: doc/reference/en/class_list.html:47(a) +#: doc/reference/en/class_list.html:48(small) msgid "Top Level Namespace" msgstr "?????????????" -#: doc/reference/en/top-level-namespace.html:77(h2) -#: doc/reference/en/Net/LDAP.html:95(h2) -#: doc/reference/en/ActiveLdap/ActionController.html:80(h2) -#: doc/reference/en/ActiveLdap/Ldif.html:99(h2) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:80(h2) -#: doc/reference/en/ActiveLdap/Generators.html:82(h2) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:96(h2) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:80(h2) -#: doc/reference/en/ActiveLdap/Acts.html:80(h2) -#: doc/reference/en/ActiveLdap/Adapter.html:82(h2) -#: doc/reference/en/ActiveLdap/Connection.html:80(h2) -#: doc/reference/en/ActiveLdap/Schema.html:101(h2) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:99(h2) -#: doc/reference/en/ActiveLdap/Attributes.html:80(h2) -#: doc/reference/en/ActiveLdap/Association.html:82(h2) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:103(h2) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:101(h2) -#: doc/reference/en/ActiveLdap/ObjectClass.html:80(h2) -#: doc/reference/en/ActiveLdap/UserPassword.html:80(h2) -#: doc/reference/en/ActiveLdap/Railties.html:80(h2) -#: doc/reference/en/ActiveLdap/HumanReadable.html:84(h2) -#: doc/reference/en/ActiveLdap/Callbacks.html:84(h2) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:80(h2) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:80(h2) -#: doc/reference/en/ActiveLdap/Associations.html:96(h2) -#: doc/reference/en/ActiveLdap/Configuration.html:97(h2) -#: doc/reference/en/ActiveLdap/Operations.html:80(h2) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:80(h2) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:97(h2) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:95(h2) -#: doc/reference/en/ActiveLdap/Xml.html:95(h2) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:80(h2) -#: doc/reference/en/ActiveLdap.html:86(h2) doc/reference/en/Net.html:80(h2) -#: doc/reference/en/LDAP.html:80(h2) +#: doc/reference/en/top-level-namespace.html:84(h2) +#: doc/reference/en/Net/LDAP.html:102(h2) +#: doc/reference/en/ActiveLdap/ActionController.html:87(h2) +#: doc/reference/en/ActiveLdap/Ldif.html:106(h2) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:87(h2) +#: doc/reference/en/ActiveLdap/Generators.html:89(h2) +#: doc/reference/en/ActiveLdap/Acts.html:87(h2) +#: doc/reference/en/ActiveLdap/Adapter.html:89(h2) +#: doc/reference/en/ActiveLdap/Connection.html:87(h2) +#: doc/reference/en/ActiveLdap/Schema.html:108(h2) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:106(h2) +#: doc/reference/en/ActiveLdap/Attributes.html:87(h2) +#: doc/reference/en/ActiveLdap/Association.html:89(h2) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:97(h2) +#: doc/reference/en/ActiveLdap/ObjectClass.html:87(h2) +#: doc/reference/en/ActiveLdap/UserPassword.html:87(h2) +#: doc/reference/en/ActiveLdap/Railties.html:87(h2) +#: doc/reference/en/ActiveLdap/HumanReadable.html:87(h2) +#: doc/reference/en/ActiveLdap/Callbacks.html:91(h2) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:87(h2) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:87(h2) +#: doc/reference/en/ActiveLdap/Associations.html:101(h2) +#: doc/reference/en/ActiveLdap/Configuration.html:102(h2) +#: doc/reference/en/ActiveLdap/Operations.html:87(h2) +#: doc/reference/en/ActiveLdap/GetText.html:91(h2) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:87(h2) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:104(h2) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:102(h2) +#: doc/reference/en/ActiveLdap/Xml.html:102(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:87(h2) +#: doc/reference/en/ActiveLdap.html:93(h2) doc/reference/en/Net.html:87(h2) +#: doc/reference/en/LDAP.html:87(h2) msgid "Defined Under Namespace" msgstr "" -#: doc/reference/en/top-level-namespace.html:81(strong) -#: doc/reference/en/ActiveLdap/ActionController.html:84(strong) -#: doc/reference/en/ActiveLdap/Ldif.html:103(strong) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:84(strong) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:100(strong) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:84(strong) -#: doc/reference/en/ActiveLdap/Acts.html:84(strong) -#: doc/reference/en/ActiveLdap/Connection.html:84(strong) -#: doc/reference/en/ActiveLdap/Schema.html:105(strong) -#: doc/reference/en/ActiveLdap/Attributes.html:84(strong) -#: doc/reference/en/ActiveLdap/Association.html:86(strong) -#: doc/reference/en/ActiveLdap/ObjectClass.html:84(strong) -#: doc/reference/en/ActiveLdap/UserPassword.html:84(strong) -#: doc/reference/en/ActiveLdap/Railties.html:84(strong) -#: doc/reference/en/ActiveLdap/HumanReadable.html:88(strong) -#: doc/reference/en/ActiveLdap/Callbacks.html:88(strong) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:84(strong) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:84(strong) -#: doc/reference/en/ActiveLdap/Associations.html:100(strong) -#: doc/reference/en/ActiveLdap/Configuration.html:101(strong) -#: doc/reference/en/ActiveLdap/Operations.html:84(strong) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:101(strong) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:99(strong) -#: doc/reference/en/ActiveLdap.html:90(strong) +#: doc/reference/en/top-level-namespace.html:88(strong) +#: doc/reference/en/ActiveLdap/ActionController.html:91(strong) +#: doc/reference/en/ActiveLdap/Ldif.html:110(strong) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:91(strong) +#: doc/reference/en/ActiveLdap/Acts.html:91(strong) +#: doc/reference/en/ActiveLdap/Connection.html:91(strong) +#: doc/reference/en/ActiveLdap/Schema.html:112(strong) +#: doc/reference/en/ActiveLdap/Attributes.html:91(strong) +#: doc/reference/en/ActiveLdap/Association.html:93(strong) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:101(strong) +#: doc/reference/en/ActiveLdap/ObjectClass.html:91(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:91(strong) +#: doc/reference/en/ActiveLdap/Railties.html:91(strong) +#: doc/reference/en/ActiveLdap/HumanReadable.html:91(strong) +#: doc/reference/en/ActiveLdap/Callbacks.html:95(strong) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:91(strong) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:91(strong) +#: doc/reference/en/ActiveLdap/Associations.html:105(strong) +#: doc/reference/en/ActiveLdap/Configuration.html:106(strong) +#: doc/reference/en/ActiveLdap/Operations.html:91(strong) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:108(strong) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:106(strong) +#: doc/reference/en/ActiveLdap.html:97(strong) msgid "Modules:" msgstr "?????:" -#: doc/reference/en/top-level-namespace.html:81(a) -#: doc/reference/en/method_list.html:974(small) -#: doc/reference/en/method_list.html:1710(small) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/index.html:57(h1) -#: doc/reference/en/ActiveLdap/ActionController.html:37(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:37(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:501(span) -#: doc/reference/en/ActiveLdap/Escape.html:37(a) -#: doc/reference/en/ActiveLdap/Compatible.html:37(a) -#: doc/reference/en/ActiveLdap/LdapError.html:37(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif.html:37(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:37(a) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:37(a) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:37(a) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:260(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:308(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:364(span) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:37(a) -#: doc/reference/en/ActiveLdap/Generators.html:37(a) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:37(a) -#: doc/reference/en/ActiveLdap/Railtie.html:37(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:37(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Persistence.html:37(a) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:37(a) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:37(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:37(a) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Acts.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter.html:37(a) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:37(a) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:37(a) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:37(a) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Connection.html:37(a) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:37(a) -#: doc/reference/en/ActiveLdap/Schema.html:37(a) -#: doc/reference/en/ActiveLdap/DeleteError.html:37(a) -#: doc/reference/en/ActiveLdap/Validations.html:37(a) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:37(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:37(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:37(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:74(a) -#: doc/reference/en/ActiveLdap/Attributes.html:37(a) -#: doc/reference/en/ActiveLdap/TimeoutError.html:37(a) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:37(a) -#: doc/reference/en/ActiveLdap/Base.html:37(a) -#: doc/reference/en/ActiveLdap/Base.html:2559(span) -#: doc/reference/en/ActiveLdap/Base.html:2561(span) -#: doc/reference/en/ActiveLdap/Base.html:3491(span) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:37(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:37(a) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:37(a) -#: doc/reference/en/ActiveLdap/Association.html:37(a) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:37(a) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:37(a) -#: doc/reference/en/ActiveLdap/NotImplemented.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:37(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:37(a) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/SaveError.html:37(a) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:37(a) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:37(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:37(a) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:37(a) -#: doc/reference/en/ActiveLdap/ObjectClass.html:37(a) -#: doc/reference/en/ActiveLdap/UserPassword.html:37(a) -#: doc/reference/en/ActiveLdap/Command.html:37(a) -#: doc/reference/en/ActiveLdap/ConnectionError.html:37(a) -#: doc/reference/en/ActiveLdap/Populate.html:37(a) -#: doc/reference/en/ActiveLdap/Populate.html:214(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:37(a) -#: doc/reference/en/ActiveLdap/Error.html:37(a) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:37(a) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:37(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:37(a) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:37(a) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:37(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:37(a) -#: doc/reference/en/ActiveLdap/Association/Children.html:37(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:37(a) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:37(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:37(a) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:37(a) -#: doc/reference/en/ActiveLdap/Helper.html:37(a) -#: doc/reference/en/ActiveLdap/Railties.html:37(a) -#: doc/reference/en/ActiveLdap/HumanReadable.html:37(a) -#: doc/reference/en/ActiveLdap/Callbacks.html:37(a) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/Find.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/Common.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/Update.html:37(a) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Associations.html:37(a) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:37(a) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:37(a) -#: doc/reference/en/ActiveLdap/Configuration.html:37(a) -#: doc/reference/en/ActiveLdap/Operations.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:37(a) -#: doc/reference/en/ActiveLdap/Xml.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:37(a) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:37(a) -#: doc/reference/en/ActiveLdap.html:39(span) -#: doc/reference/en/file.README.html:57(h1) -#: doc/reference/en/LDAP/Conn.html:255(span) -#: doc/reference/en/LDAP/Conn.html:258(span) -#: doc/reference/en/LDAP/Conn.html:260(span) -#: doc/reference/en/file.tutorial.html:121(span) -#: doc/reference/en/file.tutorial.html:125(span) -#: doc/reference/en/file.tutorial.html:167(span) -#: doc/reference/en/file.tutorial.html:237(span) -#: doc/reference/en/file.tutorial.html:266(span) -#: doc/reference/en/file.tutorial.html:307(span) -#: doc/reference/en/file.tutorial.html:520(span) +#: doc/reference/en/top-level-namespace.html:88(a) +#: doc/reference/en/method_list.html:964(small) +#: doc/reference/en/method_list.html:1676(small) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/index.html:64(h1) +#: doc/reference/en/ActiveLdap/ActionController.html:35(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:35(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:520(span) +#: doc/reference/en/ActiveLdap/Escape.html:35(a) +#: doc/reference/en/ActiveLdap/Compatible.html:35(a) +#: doc/reference/en/ActiveLdap/LdapError.html:35(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif.html:35(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:35(a) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:35(a) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:35(a) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:267(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:316(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:373(span) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:35(a) +#: doc/reference/en/ActiveLdap/Generators.html:35(a) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:35(a) +#: doc/reference/en/ActiveLdap/Railtie.html:35(a) +#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:35(a) +#: doc/reference/en/ActiveLdap/Persistence.html:35(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:35(a) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/Acts.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter.html:35(a) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:35(a) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:35(a) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:35(a) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/Connection.html:35(a) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:35(a) +#: doc/reference/en/ActiveLdap/Schema.html:35(a) +#: doc/reference/en/ActiveLdap/DeleteError.html:35(a) +#: doc/reference/en/ActiveLdap/Validations.html:35(a) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:35(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:35(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:35(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:81(a) +#: doc/reference/en/ActiveLdap/Attributes.html:35(a) +#: doc/reference/en/ActiveLdap/TimeoutError.html:35(a) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:35(a) +#: doc/reference/en/ActiveLdap/Base.html:35(a) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:35(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:35(a) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:35(a) +#: doc/reference/en/ActiveLdap/Association.html:35(a) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:35(a) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:35(a) +#: doc/reference/en/ActiveLdap/NotImplemented.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:35(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:35(a) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/SaveError.html:35(a) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:35(a) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:35(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:35(a) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:35(a) +#: doc/reference/en/ActiveLdap/ObjectClass.html:35(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:35(a) +#: doc/reference/en/ActiveLdap/Command.html:35(a) +#: doc/reference/en/ActiveLdap/ConnectionError.html:35(a) +#: doc/reference/en/ActiveLdap/Populate.html:35(a) +#: doc/reference/en/ActiveLdap/Populate.html:228(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:35(a) +#: doc/reference/en/ActiveLdap/Error.html:35(a) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:35(a) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:35(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:35(a) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:35(a) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:35(a) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:35(a) +#: doc/reference/en/ActiveLdap/Association/Children.html:35(a) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:35(a) +#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:35(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Query.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Write.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/BeforeTypeCast.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Read.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:35(a) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:35(a) +#: doc/reference/en/ActiveLdap/Helper.html:35(a) +#: doc/reference/en/ActiveLdap/Railties.html:35(a) +#: doc/reference/en/ActiveLdap/HumanReadable.html:35(a) +#: doc/reference/en/ActiveLdap/Callbacks.html:35(a) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/Find.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/Common.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/Update.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:35(a) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/Associations.html:35(a) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:35(a) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:35(a) +#: doc/reference/en/ActiveLdap/Configuration.html:35(a) +#: doc/reference/en/ActiveLdap/Operations.html:35(a) +#: doc/reference/en/ActiveLdap/GetText.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:35(a) +#: doc/reference/en/ActiveLdap/Xml.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:35(a) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:35(a) +#: doc/reference/en/ActiveLdap.html:37(span) +#: doc/reference/en/file.README.html:64(h1) +#: doc/reference/en/LDAP/Conn.html:293(span) +#: doc/reference/en/LDAP/Conn.html:296(span) +#: doc/reference/en/LDAP/Conn.html:298(span) +#: doc/reference/en/file.tutorial.html:174(span) +#: doc/reference/en/file.tutorial.html:314(span) #: doc/reference/en/file.tutorial.html:527(span) -#: doc/reference/en/file.tutorial.html:548(span) -#: doc/reference/en/file.tutorial.html:560(span) -#: doc/reference/en/file.tutorial.html:563(span) -#: doc/reference/en/file.tutorial.html:598(span) -#: doc/reference/en/file.tutorial.html:610(span) -#: doc/reference/en/file.tutorial.html:613(span) -#: doc/reference/en/file.tutorial.html:645(span) -#: doc/reference/en/file.tutorial.html:657(span) -#: doc/reference/en/file.tutorial.html:660(span) -#: doc/reference/en/file.tutorial.html:731(span) -#: doc/reference/en/file.tutorial.html:740(span) +#: doc/reference/en/file.tutorial.html:534(span) +#: doc/reference/en/file.tutorial.html:555(span) +#: doc/reference/en/file.tutorial.html:567(span) +#: doc/reference/en/file.tutorial.html:570(span) +#: doc/reference/en/file.tutorial.html:605(span) +#: doc/reference/en/file.tutorial.html:617(span) +#: doc/reference/en/file.tutorial.html:620(span) +#: doc/reference/en/file.tutorial.html:652(span) +#: doc/reference/en/file.tutorial.html:664(span) +#: doc/reference/en/file.tutorial.html:667(span) +#: doc/reference/en/file.tutorial.html:738(span) +#: doc/reference/en/file.tutorial.html:747(span) #: doc/reference/en/frames.html:7(title) -#: doc/reference/en/file.rails.html:109(span) -#: doc/reference/en/file.rails.html:117(span) -#: doc/reference/en/file.rails.html:135(span) -#: doc/reference/en/file.rails.html:143(span) -#: doc/reference/en/file.rails.html:162(span) -#: doc/reference/en/_index.html:6(title) doc/reference/en/_index.html:55(h1) -#: doc/reference/en/_index.html:103(a) +#: doc/reference/en/file.rails.html:116(span) +#: doc/reference/en/file.rails.html:124(span) +#: doc/reference/en/file.rails.html:142(span) +#: doc/reference/en/file.rails.html:150(span) +#: doc/reference/en/file.rails.html:169(span) +#: doc/reference/en/_index.html:6(title) doc/reference/en/_index.html:59(h1) +#: doc/reference/en/_index.html:107(a) msgid "ActiveLdap" msgstr "" -#: doc/reference/en/top-level-namespace.html:81(a) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/Net/LDAP/Entry.html:37(a) -#: doc/reference/en/Net/LDAP.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:455(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:546(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:548(span) -#: doc/reference/en/Net.html:39(span) doc/reference/en/_index.html:954(a) +#: doc/reference/en/top-level-namespace.html:88(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/Net/LDAP/Entry.html:35(a) +#: doc/reference/en/Net/LDAP.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:460(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:553(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:555(span) +#: doc/reference/en/Net.html:37(span) doc/reference/en/_index.html:951(a) msgid "Net" msgstr "" -#: doc/reference/en/top-level-namespace.html:81(a) -#: doc/reference/en/method_list.html:382(small) -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/Timeout.html:39(span) -#: doc/reference/en/Timeout.html:160(span) -#: doc/reference/en/_index.html:1289(a) +#: doc/reference/en/top-level-namespace.html:88(a) +#: doc/reference/en/method_list.html:364(small) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/Timeout.html:37(span) +#: doc/reference/en/Timeout.html:219(span) +#: doc/reference/en/_index.html:1280(a) msgid "Timeout" msgstr "" -#: doc/reference/en/top-level-namespace.html:78(p) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:104(p) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:81(p) +#: doc/reference/en/top-level-namespace.html:85(p) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:88(p) msgid "" " , , " msgstr "" +#: doc/reference/en/top-level-namespace.html:95(h2) +#: doc/reference/en/ActiveLdap/LdapError.html:107(h2) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:88(h2) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:88(h2) +#: doc/reference/en/ActiveLdap/Schema.html:119(h2) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:107(h2) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:103(h2) +#: doc/reference/en/ActiveLdap/Base.html:121(h2) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:88(h2) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:103(h2) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:107(h2) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:88(h2) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:107(h2) +#: doc/reference/en/ActiveLdap/Callbacks.html:102(h2) +#: doc/reference/en/ActiveLdap/Operations/Common.html:88(h2) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:88(h2) +#: doc/reference/en/ActiveLdap/Configuration.html:113(h2) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:105(h2) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:113(h2) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:115(h2) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:120(h2) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:115(h2) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:103(h2) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:88(h2) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:111(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:109(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:114(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:110(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:107(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:112(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:105(h2) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:110(h2) +#: doc/reference/en/ActiveLdap.html:106(h2) doc/reference/en/LDAP.html:98(h2) +msgid "Constant Summary" +msgstr "" + +#: doc/reference/en/top-level-namespace.html:99(dt) +msgid "ACTIVE_LDAP_CONNECTION_ADAPTERS =" +msgstr "" + +#: doc/reference/en/top-level-namespace.html:102(span) +msgid "%w(" +msgstr "" + +#: doc/reference/en/top-level-namespace.html:102(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:132(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:157(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:162(span) +msgid "ldap" +msgstr "" + +#: doc/reference/en/top-level-namespace.html:102(span) +msgid "net_ldap" +msgstr "" + +#: doc/reference/en/top-level-namespace.html:102(span) +msgid "jndi" +msgstr "" + #: doc/reference/en/method_list.html:21(script) #: doc/reference/en/class_list.html:21(script) #: doc/reference/en/file_list.html:21(script) @@ -6110,5216 +5877,5153 @@ msgstr "" msgid "Classes" msgstr "?????" -#: doc/reference/en/method_list.html:33(a) -#: doc/reference/en/class_list.html:33(a) -#: doc/reference/en/file_list.html:33(a) -msgid "Methods" -msgstr "??????" - #: doc/reference/en/method_list.html:35(a) #: doc/reference/en/class_list.html:35(a) #: doc/reference/en/file_list.html:35(a) +msgid "Methods" +msgstr "??????" + +#: doc/reference/en/method_list.html:39(a) +#: doc/reference/en/class_list.html:39(a) +#: doc/reference/en/file_list.html:39(a) msgid "Files" msgstr "??????" -#: doc/reference/en/method_list.html:38(div) -#: doc/reference/en/class_list.html:38(div) -#: doc/reference/en/file_list.html:38(div) +#: doc/reference/en/method_list.html:44(div) +#: doc/reference/en/class_list.html:44(div) +#: doc/reference/en/file_list.html:44(div) msgid "Search: " msgstr "??: " -#: doc/reference/en/method_list.html:44(a) +#: doc/reference/en/method_list.html:50(a) msgid "#+" msgstr "" -#: doc/reference/en/method_list.html:46(small) -#: doc/reference/en/method_list.html:54(small) -#: doc/reference/en/method_list.html:78(small) -#: doc/reference/en/method_list.html:110(small) -#: doc/reference/en/method_list.html:118(small) -#: doc/reference/en/method_list.html:710(small) -#: doc/reference/en/method_list.html:1510(small) -#: doc/reference/en/method_list.html:1550(small) -#: doc/reference/en/method_list.html:1734(small) -#: doc/reference/en/method_list.html:2102(small) -#: doc/reference/en/method_list.html:3166(small) -#: doc/reference/en/method_list.html:3190(small) -#: doc/reference/en/method_list.html:3294(small) -#: doc/reference/en/method_list.html:4062(small) -#: doc/reference/en/method_list.html:4238(small) -#: doc/reference/en/method_list.html:4246(small) -#: doc/reference/en/method_list.html:4422(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:74(li) +#: doc/reference/en/method_list.html:52(small) +#: doc/reference/en/method_list.html:60(small) +#: doc/reference/en/method_list.html:68(small) +#: doc/reference/en/method_list.html:108(small) +#: doc/reference/en/method_list.html:124(small) +#: doc/reference/en/method_list.html:700(small) +#: doc/reference/en/method_list.html:1476(small) +#: doc/reference/en/method_list.html:1516(small) +#: doc/reference/en/method_list.html:1708(small) +#: doc/reference/en/method_list.html:2268(small) +#: doc/reference/en/method_list.html:3108(small) +#: doc/reference/en/method_list.html:3156(small) +#: doc/reference/en/method_list.html:3236(small) +#: doc/reference/en/method_list.html:4004(small) +#: doc/reference/en/method_list.html:4132(small) +#: doc/reference/en/method_list.html:4188(small) +#: doc/reference/en/method_list.html:4364(small) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:81(li) msgid "ActiveLdap::DistinguishedName" msgstr "" -#: doc/reference/en/method_list.html:52(a) +#: doc/reference/en/method_list.html:58(a) msgid "#-" msgstr "" -#: doc/reference/en/method_list.html:60(a) -#: doc/reference/en/method_list.html:68(a) -#: doc/reference/en/method_list.html:76(a) -#: doc/reference/en/method_list.html:84(a) +#: doc/reference/en/method_list.html:66(a) +#: doc/reference/en/method_list.html:74(a) +#: doc/reference/en/method_list.html:82(a) +#: doc/reference/en/method_list.html:90(a) msgid "#<<" msgstr "" -#: doc/reference/en/method_list.html:62(small) -#: doc/reference/en/method_list.html:1150(small) -#: doc/reference/en/method_list.html:1414(small) -#: doc/reference/en/method_list.html:1606(small) -#: doc/reference/en/method_list.html:3430(small) -#: doc/reference/en/method_list.html:3470(small) -#: doc/reference/en/method_list.html:4030(small) -#: doc/reference/en/ActiveLdap/Association/Collection.html:76(li) -msgid "ActiveLdap::Association::Collection" +#: doc/reference/en/method_list.html:76(small) +#: doc/reference/en/method_list.html:180(small) +#: doc/reference/en/method_list.html:1380(small) +#: doc/reference/en/method_list.html:2252(small) +#: doc/reference/en/method_list.html:3132(small) +#: doc/reference/en/method_list.html:3284(small) +#: doc/reference/en/method_list.html:4140(small) +#: doc/reference/en/method_list.html:4540(small) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/ActiveLdap/Ldif.html:81(li) +msgid "ActiveLdap::Ldif" msgstr "" -#: doc/reference/en/method_list.html:70(small) -#: doc/reference/en/method_list.html:142(small) -#: doc/reference/en/method_list.html:1406(small) -#: doc/reference/en/method_list.html:2150(small) -#: doc/reference/en/method_list.html:3198(small) -#: doc/reference/en/method_list.html:3342(small) -#: doc/reference/en/method_list.html:4174(small) -#: doc/reference/en/method_list.html:4598(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveLdap/Ldif.html:74(li) -msgid "ActiveLdap::Ldif" +#: doc/reference/en/method_list.html:84(small) +#: doc/reference/en/method_list.html:1116(small) +#: doc/reference/en/method_list.html:1364(small) +#: doc/reference/en/method_list.html:1572(small) +#: doc/reference/en/method_list.html:3380(small) +#: doc/reference/en/method_list.html:3420(small) +#: doc/reference/en/method_list.html:3972(small) +#: doc/reference/en/ActiveLdap/Association/Collection.html:83(li) +msgid "ActiveLdap::Association::Collection" msgstr "" -#: doc/reference/en/method_list.html:86(small) -#: doc/reference/en/method_list.html:166(small) -#: doc/reference/en/method_list.html:366(small) -#: doc/reference/en/method_list.html:1398(small) -#: doc/reference/en/method_list.html:2142(small) -#: doc/reference/en/method_list.html:3126(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:78(li) +#: doc/reference/en/method_list.html:92(small) +#: doc/reference/en/method_list.html:164(small) +#: doc/reference/en/method_list.html:356(small) +#: doc/reference/en/method_list.html:1372(small) +#: doc/reference/en/method_list.html:1988(small) +#: doc/reference/en/method_list.html:3076(small) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:85(li) msgid "ActiveLdap::Ldif::ModifyRecord" msgstr "" -#: doc/reference/en/method_list.html:92(a) -#: doc/reference/en/method_list.html:100(a) -#: doc/reference/en/method_list.html:108(a) +#: doc/reference/en/method_list.html:98(a) +#: doc/reference/en/method_list.html:106(a) +#: doc/reference/en/method_list.html:114(a) msgid "#<=>" msgstr "" -#: doc/reference/en/method_list.html:94(small) -#: doc/reference/en/method_list.html:622(small) -#: doc/reference/en/method_list.html:1846(small) -#: doc/reference/en/method_list.html:2286(small) -#: doc/reference/en/method_list.html:2550(small) -#: doc/reference/en/method_list.html:3014(small) -#: doc/reference/en/method_list.html:4166(small) -#: doc/reference/en/method_list.html:4294(small) -#: doc/reference/en/method_list.html:4486(small) -#: doc/reference/en/method_list.html:4542(small) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:76(li) +#: doc/reference/en/method_list.html:100(small) +#: doc/reference/en/method_list.html:612(small) +#: doc/reference/en/method_list.html:1820(small) +#: doc/reference/en/method_list.html:2276(small) +#: doc/reference/en/method_list.html:2516(small) +#: doc/reference/en/method_list.html:2964(small) +#: doc/reference/en/method_list.html:4108(small) +#: doc/reference/en/method_list.html:4284(small) +#: doc/reference/en/method_list.html:4436(small) +#: doc/reference/en/method_list.html:4468(small) msgid "ActiveLdap::Schema::Syntax" msgstr "" -#: doc/reference/en/method_list.html:102(small) -#: doc/reference/en/method_list.html:390(small) -#: doc/reference/en/method_list.html:1246(small) -#: doc/reference/en/method_list.html:1518(small) -#: doc/reference/en/method_list.html:1742(small) -#: doc/reference/en/method_list.html:1894(small) -#: doc/reference/en/method_list.html:2350(small) -#: doc/reference/en/method_list.html:2886(small) -#: doc/reference/en/method_list.html:4158(small) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:74(li) +#: doc/reference/en/method_list.html:116(small) +#: doc/reference/en/method_list.html:372(small) +#: doc/reference/en/method_list.html:1220(small) +#: doc/reference/en/method_list.html:1492(small) +#: doc/reference/en/method_list.html:1700(small) +#: doc/reference/en/method_list.html:1876(small) +#: doc/reference/en/method_list.html:2308(small) +#: doc/reference/en/method_list.html:2852(small) +#: doc/reference/en/method_list.html:4092(small) msgid "ActiveLdap::Schema::Entry" msgstr "" -#: doc/reference/en/method_list.html:116(a) -#: doc/reference/en/method_list.html:124(a) -#: doc/reference/en/method_list.html:132(a) -#: doc/reference/en/method_list.html:140(a) -#: doc/reference/en/method_list.html:148(a) -#: doc/reference/en/method_list.html:156(a) -#: doc/reference/en/method_list.html:164(a) -#: doc/reference/en/method_list.html:172(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:205(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:215(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:265(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:275(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:160(a) +#: doc/reference/en/method_list.html:122(a) +#: doc/reference/en/method_list.html:130(a) +#: doc/reference/en/method_list.html:138(a) +#: doc/reference/en/method_list.html:146(a) +#: doc/reference/en/method_list.html:154(a) +#: doc/reference/en/method_list.html:162(a) +#: doc/reference/en/method_list.html:170(a) +#: doc/reference/en/method_list.html:178(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:188(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:199(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:259(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:270(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:170(a) #: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:191(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:130(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:126(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:170(a) #: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:191(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:205(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:215(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:188(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:199(a) msgid "#==" msgstr "" -#: doc/reference/en/method_list.html:126(small) -#: doc/reference/en/method_list.html:222(small) -#: doc/reference/en/method_list.html:230(small) -#: doc/reference/en/method_list.html:238(small) -#: doc/reference/en/method_list.html:262(small) -#: doc/reference/en/method_list.html:270(small) -#: doc/reference/en/method_list.html:486(small) -#: doc/reference/en/method_list.html:494(small) -#: doc/reference/en/method_list.html:510(small) -#: doc/reference/en/method_list.html:542(small) -#: doc/reference/en/method_list.html:550(small) -#: doc/reference/en/method_list.html:558(small) -#: doc/reference/en/method_list.html:566(small) -#: doc/reference/en/method_list.html:574(small) -#: doc/reference/en/method_list.html:582(small) -#: doc/reference/en/method_list.html:638(small) -#: doc/reference/en/method_list.html:766(small) -#: doc/reference/en/method_list.html:774(small) -#: doc/reference/en/method_list.html:822(small) -#: doc/reference/en/method_list.html:830(small) -#: doc/reference/en/method_list.html:1006(small) -#: doc/reference/en/method_list.html:1086(small) -#: doc/reference/en/method_list.html:1094(small) -#: doc/reference/en/method_list.html:1214(small) -#: doc/reference/en/method_list.html:1278(small) -#: doc/reference/en/method_list.html:1318(small) -#: doc/reference/en/method_list.html:1350(small) -#: doc/reference/en/method_list.html:1358(small) -#: doc/reference/en/method_list.html:1366(small) -#: doc/reference/en/method_list.html:1390(small) -#: doc/reference/en/method_list.html:1526(small) -#: doc/reference/en/method_list.html:1558(small) -#: doc/reference/en/method_list.html:1590(small) -#: doc/reference/en/method_list.html:1726(small) -#: doc/reference/en/method_list.html:1750(small) -#: doc/reference/en/method_list.html:1806(small) -#: doc/reference/en/method_list.html:1902(small) -#: doc/reference/en/method_list.html:1998(small) -#: doc/reference/en/method_list.html:2086(small) -#: doc/reference/en/method_list.html:2374(small) -#: doc/reference/en/method_list.html:2382(small) -#: doc/reference/en/method_list.html:2470(small) -#: doc/reference/en/method_list.html:2670(small) -#: doc/reference/en/method_list.html:2718(small) -#: doc/reference/en/method_list.html:2726(small) -#: doc/reference/en/method_list.html:2870(small) -#: doc/reference/en/method_list.html:3230(small) -#: doc/reference/en/method_list.html:3254(small) -#: doc/reference/en/method_list.html:3262(small) -#: doc/reference/en/method_list.html:3358(small) -#: doc/reference/en/method_list.html:3510(small) -#: doc/reference/en/method_list.html:3526(small) -#: doc/reference/en/method_list.html:3678(small) -#: doc/reference/en/method_list.html:3702(small) -#: doc/reference/en/method_list.html:3710(small) -#: doc/reference/en/method_list.html:3718(small) -#: doc/reference/en/method_list.html:3726(small) -#: doc/reference/en/method_list.html:3734(small) -#: doc/reference/en/method_list.html:3798(small) -#: doc/reference/en/method_list.html:3822(small) -#: doc/reference/en/method_list.html:4086(small) -#: doc/reference/en/method_list.html:4102(small) -#: doc/reference/en/method_list.html:4118(small) -#: doc/reference/en/method_list.html:4150(small) -#: doc/reference/en/method_list.html:4206(small) -#: doc/reference/en/method_list.html:4254(small) -#: doc/reference/en/method_list.html:4454(small) -#: doc/reference/en/method_list.html:4462(small) -#: doc/reference/en/method_list.html:4470(small) -#: doc/reference/en/method_list.html:4550(small) -#: doc/reference/en/ActiveLdap/Base.html:74(li) -#: doc/reference/en/ActiveLdap/Base.html:1792(a) -#: doc/reference/en/file.tutorial.html:395(h3) -msgid "ActiveLdap::Base" +#: doc/reference/en/method_list.html:132(small) +#: doc/reference/en/method_list.html:1036(small) +#: doc/reference/en/method_list.html:2148(small) +#: doc/reference/en/method_list.html:3964(small) +#: doc/reference/en/method_list.html:3988(small) +#: doc/reference/en/method_list.html:4164(small) +#: doc/reference/en/method_list.html:4212(small) +#: doc/reference/en/method_list.html:4524(small) +msgid "ActiveLdap::Ldif::ChangeRecord::Control" msgstr "" -#: doc/reference/en/method_list.html:134(small) -#: doc/reference/en/method_list.html:1046(small) -#: doc/reference/en/method_list.html:2262(small) -#: doc/reference/en/method_list.html:4022(small) -#: doc/reference/en/method_list.html:4054(small) -#: doc/reference/en/method_list.html:4190(small) -#: doc/reference/en/method_list.html:4278(small) -#: doc/reference/en/method_list.html:4582(small) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:74(li) -msgid "ActiveLdap::Ldif::ChangeRecord::Control" +#: doc/reference/en/method_list.html:140(small) +#: doc/reference/en/method_list.html:324(small) +#: doc/reference/en/method_list.html:732(small) +#: doc/reference/en/method_list.html:972(small) +#: doc/reference/en/method_list.html:1172(small) +#: doc/reference/en/method_list.html:2244(small) +#: doc/reference/en/method_list.html:2732(small) +#: doc/reference/en/method_list.html:2740(small) +#: doc/reference/en/method_list.html:2796(small) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:83(li) +msgid "ActiveLdap::Ldif::ChangeRecord" msgstr "" -#: doc/reference/en/method_list.html:150(small) -#: doc/reference/en/method_list.html:526(small) -#: doc/reference/en/method_list.html:1326(small) -#: doc/reference/en/method_list.html:2318(small) -#: doc/reference/en/method_list.html:4038(small) -#: doc/reference/en/method_list.html:4182(small) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:74(li) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:144(a) +#: doc/reference/en/method_list.html:148(small) +#: doc/reference/en/method_list.html:516(small) +#: doc/reference/en/method_list.html:1316(small) +#: doc/reference/en/method_list.html:2300(small) +#: doc/reference/en/method_list.html:3996(small) +#: doc/reference/en/method_list.html:4148(small) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:81(li) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:141(a) msgid "ActiveLdap::Ldif::Record" msgstr "" -#: doc/reference/en/method_list.html:158(small) -#: doc/reference/en/method_list.html:334(small) -#: doc/reference/en/method_list.html:742(small) -#: doc/reference/en/method_list.html:982(small) -#: doc/reference/en/method_list.html:1206(small) -#: doc/reference/en/method_list.html:2174(small) -#: doc/reference/en/method_list.html:2774(small) -#: doc/reference/en/method_list.html:2782(small) -#: doc/reference/en/method_list.html:2838(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:76(li) -msgid "ActiveLdap::Ldif::ChangeRecord" +#: doc/reference/en/method_list.html:156(small) +#: doc/reference/en/method_list.html:212(small) +#: doc/reference/en/method_list.html:220(small) +#: doc/reference/en/method_list.html:236(small) +#: doc/reference/en/method_list.html:252(small) +#: doc/reference/en/method_list.html:260(small) +#: doc/reference/en/method_list.html:436(small) +#: doc/reference/en/method_list.html:476(small) +#: doc/reference/en/method_list.html:484(small) +#: doc/reference/en/method_list.html:524(small) +#: doc/reference/en/method_list.html:532(small) +#: doc/reference/en/method_list.html:540(small) +#: doc/reference/en/method_list.html:548(small) +#: doc/reference/en/method_list.html:556(small) +#: doc/reference/en/method_list.html:564(small) +#: doc/reference/en/method_list.html:572(small) +#: doc/reference/en/method_list.html:644(small) +#: doc/reference/en/method_list.html:756(small) +#: doc/reference/en/method_list.html:764(small) +#: doc/reference/en/method_list.html:812(small) +#: doc/reference/en/method_list.html:820(small) +#: doc/reference/en/method_list.html:996(small) +#: doc/reference/en/method_list.html:1068(small) +#: doc/reference/en/method_list.html:1076(small) +#: doc/reference/en/method_list.html:1188(small) +#: doc/reference/en/method_list.html:1260(small) +#: doc/reference/en/method_list.html:1292(small) +#: doc/reference/en/method_list.html:1324(small) +#: doc/reference/en/method_list.html:1332(small) +#: doc/reference/en/method_list.html:1340(small) +#: doc/reference/en/method_list.html:1484(small) +#: doc/reference/en/method_list.html:1540(small) +#: doc/reference/en/method_list.html:1556(small) +#: doc/reference/en/method_list.html:1684(small) +#: doc/reference/en/method_list.html:1716(small) +#: doc/reference/en/method_list.html:1724(small) +#: doc/reference/en/method_list.html:1780(small) +#: doc/reference/en/method_list.html:1868(small) +#: doc/reference/en/method_list.html:1964(small) +#: doc/reference/en/method_list.html:2292(small) +#: doc/reference/en/method_list.html:2340(small) +#: doc/reference/en/method_list.html:2348(small) +#: doc/reference/en/method_list.html:2436(small) +#: doc/reference/en/method_list.html:2644(small) +#: doc/reference/en/method_list.html:2820(small) +#: doc/reference/en/method_list.html:3180(small) +#: doc/reference/en/method_list.html:3204(small) +#: doc/reference/en/method_list.html:3212(small) +#: doc/reference/en/method_list.html:3612(small) +#: doc/reference/en/method_list.html:3644(small) +#: doc/reference/en/method_list.html:3652(small) +#: doc/reference/en/method_list.html:3660(small) +#: doc/reference/en/method_list.html:3668(small) +#: doc/reference/en/method_list.html:3676(small) +#: doc/reference/en/method_list.html:3740(small) +#: doc/reference/en/method_list.html:3780(small) +#: doc/reference/en/method_list.html:4028(small) +#: doc/reference/en/method_list.html:4044(small) +#: doc/reference/en/method_list.html:4060(small) +#: doc/reference/en/method_list.html:4100(small) +#: doc/reference/en/method_list.html:4124(small) +#: doc/reference/en/method_list.html:4196(small) +#: doc/reference/en/method_list.html:4396(small) +#: doc/reference/en/method_list.html:4404(small) +#: doc/reference/en/method_list.html:4412(small) +#: doc/reference/en/method_list.html:4492(small) +#: doc/reference/en/ActiveLdap/Base.html:81(li) +#: doc/reference/en/ActiveLdap/Base.html:1741(a) +#: doc/reference/en/file.tutorial.html:402(h3) +msgid "ActiveLdap::Base" msgstr "" -#: doc/reference/en/method_list.html:174(small) -#: doc/reference/en/method_list.html:342(small) -#: doc/reference/en/method_list.html:478(small) -#: doc/reference/en/method_list.html:534(small) -#: doc/reference/en/method_list.html:1198(small) -#: doc/reference/en/method_list.html:1694(small) -#: doc/reference/en/method_list.html:2166(small) -#: doc/reference/en/method_list.html:3134(small) -#: doc/reference/en/method_list.html:3446(small) -#: doc/reference/en/method_list.html:4222(small) -#: doc/reference/en/method_list.html:4270(small) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:74(li) +#: doc/reference/en/method_list.html:172(small) +#: doc/reference/en/method_list.html:332(small) +#: doc/reference/en/method_list.html:452(small) +#: doc/reference/en/method_list.html:508(small) +#: doc/reference/en/method_list.html:1180(small) +#: doc/reference/en/method_list.html:1660(small) +#: doc/reference/en/method_list.html:2092(small) +#: doc/reference/en/method_list.html:3084(small) +#: doc/reference/en/method_list.html:3396(small) +#: doc/reference/en/method_list.html:4180(small) +#: doc/reference/en/method_list.html:4228(small) msgid "ActiveLdap::Ldif::ModifyRecord::Operation" msgstr "" -#: doc/reference/en/method_list.html:180(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:289(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) +#: doc/reference/en/method_list.html:186(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:297(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) msgid "#===" msgstr "" -#: doc/reference/en/method_list.html:182(small) -#: doc/reference/en/method_list.html:1614(small) -#: doc/reference/en/method_list.html:2182(small) -#: doc/reference/en/method_list.html:2622(small) -#: doc/reference/en/method_list.html:2630(small) -#: doc/reference/en/method_list.html:3286(small) -#: doc/reference/en/method_list.html:3366(small) -#: doc/reference/en/method_list.html:3462(small) -#: doc/reference/en/method_list.html:3518(small) -#: doc/reference/en/method_list.html:3982(small) -#: doc/reference/en/method_list.html:3998(small) -#: doc/reference/en/ActiveLdap/Association/Collection.html:293(a) +#: doc/reference/en/method_list.html:188(small) +#: doc/reference/en/method_list.html:1580(small) +#: doc/reference/en/method_list.html:2220(small) +#: doc/reference/en/method_list.html:2588(small) +#: doc/reference/en/method_list.html:2596(small) +#: doc/reference/en/method_list.html:3228(small) +#: doc/reference/en/method_list.html:3308(small) +#: doc/reference/en/method_list.html:3412(small) +#: doc/reference/en/method_list.html:3460(small) +#: doc/reference/en/method_list.html:3932(small) +#: doc/reference/en/method_list.html:3940(small) #: doc/reference/en/ActiveLdap/Association/Collection.html:301(a) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:74(li) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:175(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:183(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:309(a) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:81(li) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:180(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:188(a) msgid "ActiveLdap::Association::Proxy" msgstr "" -#: doc/reference/en/method_list.html:188(a) -msgid "#N_" -msgstr "" - -#: doc/reference/en/method_list.html:190(small) -#: doc/reference/en/method_list.html:198(small) -#: doc/reference/en/method_list.html:246(small) -#: doc/reference/en/method_list.html:1974(small) -#: doc/reference/en/method_list.html:2878(small) -#: doc/reference/en/method_list.html:3590(small) -msgid "ActiveLdap::GetTextFallback::Translation" -msgstr "" - -#: doc/reference/en/method_list.html:196(a) -msgid "#Nn_" -msgstr "" - -#: doc/reference/en/method_list.html:204(a) -#: doc/reference/en/method_list.html:220(a) +#: doc/reference/en/method_list.html:194(a) +#: doc/reference/en/method_list.html:210(a) msgid "#[]" msgstr "" -#: doc/reference/en/method_list.html:206(small) -#: doc/reference/en/method_list.html:750(small) -#: doc/reference/en/method_list.html:758(small) -#: doc/reference/en/method_list.html:838(small) -#: doc/reference/en/method_list.html:1502(small) -#: doc/reference/en/method_list.html:2310(small) -#: doc/reference/en/method_list.html:2558(small) -#: doc/reference/en/method_list.html:3246(small) -#: doc/reference/en/method_list.html:3638(small) -#: doc/reference/en/method_list.html:3646(small) -#: doc/reference/en/method_list.html:3654(small) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:74(li) +#: doc/reference/en/method_list.html:196(small) +#: doc/reference/en/method_list.html:740(small) +#: doc/reference/en/method_list.html:748(small) +#: doc/reference/en/method_list.html:836(small) +#: doc/reference/en/method_list.html:1468(small) +#: doc/reference/en/method_list.html:1980(small) +#: doc/reference/en/method_list.html:2524(small) +#: doc/reference/en/method_list.html:3196(small) +#: doc/reference/en/method_list.html:3580(small) +#: doc/reference/en/method_list.html:3588(small) +#: doc/reference/en/method_list.html:3596(small) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:81(li) msgid "ActiveLdap::Ldif::Scanner" msgstr "" -#: doc/reference/en/method_list.html:212(a) -#: doc/reference/en/ActiveLdap/Schema.html:961(span) -#: doc/reference/en/ActiveLdap/Base.html:695(strong) -#: doc/reference/en/ActiveLdap/Base.html:3082(strong) -#: doc/reference/en/ActiveLdap/Base.html:3103(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:130(strong) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:426(strong) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:443(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:106(strong) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:136(strong) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:158(span) +#: doc/reference/en/method_list.html:202(a) +#: doc/reference/en/ActiveLdap/Schema.html:978(span) +#: doc/reference/en/ActiveLdap/Base.html:701(strong) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:137(strong) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:443(strong) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:462(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:115(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:146(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:170(span) msgid "[]" msgstr "" -#: doc/reference/en/method_list.html:214(small) -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/method_list.html:204(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Schema::Syntaxes" msgstr "" -#: doc/reference/en/method_list.html:228(a) +#: doc/reference/en/method_list.html:218(a) +#: doc/reference/en/method_list.html:226(a) msgid "#[]=" msgstr "" -#: doc/reference/en/method_list.html:236(a) -#: doc/reference/en/method_list.html:244(a) +#: doc/reference/en/method_list.html:228(small) +#: doc/reference/en/method_list.html:420(small) +#: doc/reference/en/method_list.html:2228(small) +#: doc/reference/en/method_list.html:2324(small) +#: doc/reference/en/method_list.html:3092(small) +#: doc/reference/en/Net/LDAP/Entry.html:81(li) +msgid "Net::LDAP::Entry" +msgstr "" + +#: doc/reference/en/method_list.html:234(a) msgid "#_" msgstr "" -#: doc/reference/en/method_list.html:252(a) +#: doc/reference/en/method_list.html:242(a) msgid "#_initialize" msgstr "" -#: doc/reference/en/method_list.html:254(small) -#: doc/reference/en/method_list.html:2334(small) -#: doc/reference/en/method_list.html:3150(small) -#: doc/reference/en/method_list.html:4214(small) -#: doc/reference/en/LDAP/Mod.html:74(li) +#: doc/reference/en/method_list.html:244(small) +#: doc/reference/en/method_list.html:2180(small) +#: doc/reference/en/method_list.html:3100(small) +#: doc/reference/en/method_list.html:4116(small) +#: doc/reference/en/LDAP/Mod.html:81(li) msgid "LDAP::Mod" msgstr "" -#: doc/reference/en/method_list.html:260(a) -#: doc/reference/en/ActiveLdap/Base.html:157(strong) -#: doc/reference/en/ActiveLdap/Base.html:2003(strong) -#: doc/reference/en/ActiveLdap/Base.html:2032(span) +#: doc/reference/en/method_list.html:250(a) +#: doc/reference/en/ActiveLdap/Base.html:154(strong) +#: doc/reference/en/ActiveLdap/Base.html:1833(strong) +#: doc/reference/en/ActiveLdap/Base.html:1863(span) msgid "abstract_class" msgstr "" -#: doc/reference/en/method_list.html:268(a) -#: doc/reference/en/ActiveLdap/Base.html:203(strong) -#: doc/reference/en/ActiveLdap/Base.html:2051(strong) -#: doc/reference/en/ActiveLdap/Base.html:2090(span) -#: doc/reference/en/ActiveLdap/Base.html:2279(span) -#: doc/reference/en/ActiveLdap/Base.html:2544(span) +#: doc/reference/en/method_list.html:258(a) +#: doc/reference/en/ActiveLdap/Base.html:194(strong) +#: doc/reference/en/ActiveLdap/Base.html:1881(strong) +#: doc/reference/en/ActiveLdap/Base.html:1922(span) +#: doc/reference/en/ActiveLdap/Base.html:2153(span) msgid "abstract_class?" msgstr "" -#: doc/reference/en/method_list.html:276(a) +#: doc/reference/en/method_list.html:266(a) msgid "#active_connection_name" msgstr "" -#: doc/reference/en/method_list.html:278(small) -#: doc/reference/en/method_list.html:414(small) -#: doc/reference/en/method_list.html:798(small) -#: doc/reference/en/method_list.html:806(small) -#: doc/reference/en/method_list.html:926(small) -#: doc/reference/en/method_list.html:942(small) -#: doc/reference/en/method_list.html:966(small) -#: doc/reference/en/method_list.html:1062(small) -#: doc/reference/en/method_list.html:1574(small) -#: doc/reference/en/method_list.html:2390(small) -#: doc/reference/en/method_list.html:3374(small) -#: doc/reference/en/method_list.html:3414(small) -#: doc/reference/en/method_list.html:3494(small) -#: doc/reference/en/method_list.html:3542(small) -#: doc/reference/en/method_list.html:3686(small) -#: doc/reference/en/method_list.html:3838(small) -#: doc/reference/en/method_list.html:3870(small) -#: doc/reference/en/method_list.html:4014(small) +#: doc/reference/en/method_list.html:268(small) +#: doc/reference/en/method_list.html:396(small) +#: doc/reference/en/method_list.html:788(small) +#: doc/reference/en/method_list.html:796(small) +#: doc/reference/en/method_list.html:908(small) +#: doc/reference/en/method_list.html:940(small) +#: doc/reference/en/method_list.html:956(small) +#: doc/reference/en/method_list.html:1052(small) +#: doc/reference/en/method_list.html:1532(small) +#: doc/reference/en/method_list.html:2356(small) +#: doc/reference/en/method_list.html:3324(small) +#: doc/reference/en/method_list.html:3364(small) +#: doc/reference/en/method_list.html:3436(small) +#: doc/reference/en/method_list.html:3468(small) +#: doc/reference/en/method_list.html:3628(small) +#: doc/reference/en/method_list.html:3772(small) +#: doc/reference/en/method_list.html:3812(small) +#: doc/reference/en/method_list.html:3956(small) msgid "ActiveLdap::Connection::ClassMethods" msgstr "" -#: doc/reference/en/method_list.html:284(a) +#: doc/reference/en/method_list.html:274(a) msgid "#adapter" msgstr "" -#: doc/reference/en/method_list.html:286(small) -#: doc/reference/en/method_list.html:2062(small) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:78(li) +#: doc/reference/en/method_list.html:276(small) +#: doc/reference/en/method_list.html:2076(small) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:85(li) msgid "ActiveLdap::AdapterNotFound" msgstr "" -#: doc/reference/en/method_list.html:292(a) -#: doc/reference/en/method_list.html:300(a) -#: doc/reference/en/method_list.html:308(a) -#: doc/reference/en/method_list.html:316(a) -#: doc/reference/en/method_list.html:324(a) +#: doc/reference/en/method_list.html:282(a) +#: doc/reference/en/method_list.html:290(a) +#: doc/reference/en/method_list.html:298(a) +#: doc/reference/en/method_list.html:306(a) +#: doc/reference/en/method_list.html:314(a) msgid "#add" msgstr "" -#: doc/reference/en/method_list.html:294(small) -#: doc/reference/en/method_list.html:670(small) -#: doc/reference/en/method_list.html:726(small) -#: doc/reference/en/method_list.html:1134(small) -#: doc/reference/en/method_list.html:2094(small) -#: doc/reference/en/method_list.html:2742(small) -#: doc/reference/en/method_list.html:2830(small) -#: doc/reference/en/method_list.html:3598(small) -#: doc/reference/en/method_list.html:3750(small) -#: doc/reference/en/method_list.html:3862(small) -#: doc/reference/en/method_list.html:4374(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:74(li) -msgid "ActiveLdap::Adapter::JndiConnection" +#: doc/reference/en/method_list.html:284(small) +#: doc/reference/en/method_list.html:652(small) +#: doc/reference/en/method_list.html:676(small) +#: doc/reference/en/method_list.html:892(small) +#: doc/reference/en/method_list.html:1148(small) +#: doc/reference/en/method_list.html:2692(small) +#: doc/reference/en/method_list.html:2772(small) +#: doc/reference/en/method_list.html:3716(small) +#: doc/reference/en/method_list.html:4324(small) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:83(li) +msgid "ActiveLdap::Adapter::Ldap" msgstr "" -#: doc/reference/en/method_list.html:302(small) -#: doc/reference/en/method_list.html:662(small) -#: doc/reference/en/method_list.html:694(small) -#: doc/reference/en/method_list.html:734(small) -#: doc/reference/en/method_list.html:886(small) -#: doc/reference/en/method_list.html:934(small) -#: doc/reference/en/method_list.html:1174(small) -#: doc/reference/en/method_list.html:1302(small) -#: doc/reference/en/method_list.html:1494(small) -#: doc/reference/en/method_list.html:2022(small) -#: doc/reference/en/method_list.html:2406(small) -#: doc/reference/en/method_list.html:2438(small) -#: doc/reference/en/method_list.html:2638(small) -#: doc/reference/en/method_list.html:2766(small) -#: doc/reference/en/method_list.html:2798(small) -#: doc/reference/en/method_list.html:2926(small) -#: doc/reference/en/method_list.html:2942(small) -#: doc/reference/en/method_list.html:3334(small) -#: doc/reference/en/method_list.html:3486(small) -#: doc/reference/en/method_list.html:3566(small) -#: doc/reference/en/method_list.html:3670(small) -#: doc/reference/en/method_list.html:3758(small) -#: doc/reference/en/method_list.html:4366(small) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:343(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:74(li) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:360(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:370(a) -msgid "ActiveLdap::Adapter::Base" +#: doc/reference/en/method_list.html:292(small) +#: doc/reference/en/method_list.html:668(small) +#: doc/reference/en/method_list.html:852(small) +#: doc/reference/en/method_list.html:1164(small) +#: doc/reference/en/method_list.html:2708(small) +#: doc/reference/en/method_list.html:2788(small) +#: doc/reference/en/method_list.html:3684(small) +#: doc/reference/en/method_list.html:4316(small) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:83(li) +msgid "ActiveLdap::Adapter::Jndi" msgstr "" -#: doc/reference/en/method_list.html:310(small) -#: doc/reference/en/method_list.html:678(small) -#: doc/reference/en/method_list.html:902(small) -#: doc/reference/en/method_list.html:1190(small) -#: doc/reference/en/method_list.html:2750(small) -#: doc/reference/en/method_list.html:2822(small) -#: doc/reference/en/method_list.html:3766(small) -#: doc/reference/en/method_list.html:4358(small) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:76(li) -msgid "ActiveLdap::Adapter::Jndi" +#: doc/reference/en/method_list.html:300(small) +#: doc/reference/en/method_list.html:660(small) +#: doc/reference/en/method_list.html:724(small) +#: doc/reference/en/method_list.html:1108(small) +#: doc/reference/en/method_list.html:2172(small) +#: doc/reference/en/method_list.html:2724(small) +#: doc/reference/en/method_list.html:2756(small) +#: doc/reference/en/method_list.html:3524(small) +#: doc/reference/en/method_list.html:3724(small) +#: doc/reference/en/method_list.html:3804(small) +#: doc/reference/en/method_list.html:4308(small) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:81(li) +msgid "ActiveLdap::Adapter::JndiConnection" msgstr "" -#: doc/reference/en/method_list.html:318(small) -#: doc/reference/en/method_list.html:654(small) -#: doc/reference/en/method_list.html:686(small) -#: doc/reference/en/method_list.html:862(small) -#: doc/reference/en/method_list.html:1166(small) -#: doc/reference/en/method_list.html:2734(small) -#: doc/reference/en/method_list.html:2806(small) -#: doc/reference/en/method_list.html:3782(small) -#: doc/reference/en/method_list.html:4382(small) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:76(li) -msgid "ActiveLdap::Adapter::NetLdap" +#: doc/reference/en/method_list.html:308(small) +#: doc/reference/en/method_list.html:628(small) +#: doc/reference/en/method_list.html:684(small) +#: doc/reference/en/method_list.html:716(small) +#: doc/reference/en/method_list.html:876(small) +#: doc/reference/en/method_list.html:924(small) +#: doc/reference/en/method_list.html:1156(small) +#: doc/reference/en/method_list.html:1276(small) +#: doc/reference/en/method_list.html:1460(small) +#: doc/reference/en/method_list.html:2020(small) +#: doc/reference/en/method_list.html:2372(small) +#: doc/reference/en/method_list.html:2404(small) +#: doc/reference/en/method_list.html:2604(small) +#: doc/reference/en/method_list.html:2716(small) +#: doc/reference/en/method_list.html:2764(small) +#: doc/reference/en/method_list.html:2876(small) +#: doc/reference/en/method_list.html:2892(small) +#: doc/reference/en/method_list.html:3276(small) +#: doc/reference/en/method_list.html:3428(small) +#: doc/reference/en/method_list.html:3508(small) +#: doc/reference/en/method_list.html:3604(small) +#: doc/reference/en/method_list.html:3700(small) +#: doc/reference/en/method_list.html:4332(small) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:350(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:81(li) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:369(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:372(a) +msgid "ActiveLdap::Adapter::Base" msgstr "" -#: doc/reference/en/method_list.html:326(small) -#: doc/reference/en/method_list.html:646(small) -#: doc/reference/en/method_list.html:702(small) -#: doc/reference/en/method_list.html:870(small) -#: doc/reference/en/method_list.html:1158(small) -#: doc/reference/en/method_list.html:2758(small) -#: doc/reference/en/method_list.html:2814(small) -#: doc/reference/en/method_list.html:3774(small) -#: doc/reference/en/method_list.html:4390(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:76(li) -msgid "ActiveLdap::Adapter::Ldap" +#: doc/reference/en/method_list.html:316(small) +#: doc/reference/en/method_list.html:636(small) +#: doc/reference/en/method_list.html:692(small) +#: doc/reference/en/method_list.html:900(small) +#: doc/reference/en/method_list.html:1140(small) +#: doc/reference/en/method_list.html:2700(small) +#: doc/reference/en/method_list.html:2780(small) +#: doc/reference/en/method_list.html:3708(small) +#: doc/reference/en/method_list.html:4300(small) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:83(li) +msgid "ActiveLdap::Adapter::NetLdap" msgstr "" -#: doc/reference/en/method_list.html:332(a) -#: doc/reference/en/method_list.html:340(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:314(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:205(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:265(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:205(a) +#: doc/reference/en/method_list.html:322(a) +#: doc/reference/en/method_list.html:330(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:297(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:188(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:259(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:170(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:170(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:188(a) msgid "#add?" msgstr "" -#: doc/reference/en/method_list.html:348(a) +#: doc/reference/en/method_list.html:338(a) msgid "#add_class" msgstr "" -#: doc/reference/en/method_list.html:350(small) -#: doc/reference/en/method_list.html:790(small) -#: doc/reference/en/method_list.html:1470(small) -#: doc/reference/en/method_list.html:1958(small) -#: doc/reference/en/method_list.html:3390(small) -#: doc/reference/en/method_list.html:3454(small) -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/method_list.html:340(small) +#: doc/reference/en/method_list.html:780(small) +#: doc/reference/en/method_list.html:1436(small) +#: doc/reference/en/method_list.html:1892(small) +#: doc/reference/en/method_list.html:3340(small) +#: doc/reference/en/method_list.html:3404(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::ObjectClass" msgstr "" -#: doc/reference/en/method_list.html:356(a) +#: doc/reference/en/method_list.html:346(a) msgid "#add_entry" msgstr "" -#: doc/reference/en/method_list.html:358(small) -#: doc/reference/en/method_list.html:2790(small) -#: doc/reference/en/method_list.html:2846(small) -#: doc/reference/en/method_list.html:4438(small) -#: doc/reference/en/method_list.html:4446(small) +#: doc/reference/en/method_list.html:348(small) +#: doc/reference/en/method_list.html:2748(small) +#: doc/reference/en/method_list.html:2804(small) +#: doc/reference/en/method_list.html:4388(small) msgid "ActiveLdap::Operations::Update" msgstr "" -#: doc/reference/en/method_list.html:364(a) +#: doc/reference/en/method_list.html:354(a) msgid "#add_operation" msgstr "" -#: doc/reference/en/method_list.html:372(a) -msgid "#add_text_domain" -msgstr "" - -#: doc/reference/en/method_list.html:374(small) -#: doc/reference/en/method_list.html:1070(small) -#: doc/reference/en/method_list.html:1102(small) -#: doc/reference/en/class_list.html:42(small) -msgid "ActiveLdap::GetTextFallback" -msgstr "" - -#: doc/reference/en/method_list.html:380(a) -#: doc/reference/en/Timeout.html:98(strong) -#: doc/reference/en/Timeout.html:131(strong) -#: doc/reference/en/Timeout.html:160(span) +#: doc/reference/en/method_list.html:362(a) +#: doc/reference/en/Timeout.html:107(strong) +#: doc/reference/en/Timeout.html:140(strong) +#: doc/reference/en/Timeout.html:219(span) msgid "alarm" msgstr "" -#: doc/reference/en/method_list.html:388(a) +#: doc/reference/en/method_list.html:370(a) msgid "#aliases" msgstr "" -#: doc/reference/en/method_list.html:396(a) +#: doc/reference/en/method_list.html:378(a) msgid "#all" msgstr "" -#: doc/reference/en/method_list.html:398(small) -#: doc/reference/en/method_list.html:1678(small) -#: doc/reference/en/method_list.html:1686(small) -#: doc/reference/en/method_list.html:2414(small) +#: doc/reference/en/method_list.html:380(small) +#: doc/reference/en/method_list.html:1644(small) +#: doc/reference/en/method_list.html:1652(small) +#: doc/reference/en/method_list.html:2380(small) msgid "ActiveLdap::Operations::Find" msgstr "" -#: doc/reference/en/method_list.html:404(a) +#: doc/reference/en/method_list.html:386(a) msgid "#all_names" msgstr "" -#: doc/reference/en/method_list.html:406(small) -#: doc/reference/en/method_list.html:2006(small) -#: doc/reference/en/method_list.html:2678(small) -#: doc/reference/en/method_list.html:2854(small) -#: doc/reference/en/method_list.html:2910(small) -#: doc/reference/en/method_list.html:2982(small) -#: doc/reference/en/method_list.html:3102(small) -#: doc/reference/en/method_list.html:3350(small) -#: doc/reference/en/method_list.html:3694(small) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:74(li) +#: doc/reference/en/method_list.html:388(small) +#: doc/reference/en/method_list.html:2132(small) +#: doc/reference/en/method_list.html:2652(small) +#: doc/reference/en/method_list.html:2812(small) +#: doc/reference/en/method_list.html:2860(small) +#: doc/reference/en/method_list.html:2932(small) +#: doc/reference/en/method_list.html:3052(small) +#: doc/reference/en/method_list.html:3292(small) +#: doc/reference/en/method_list.html:3636(small) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:81(li) msgid "ActiveLdap::EntryAttribute" msgstr "" -#: doc/reference/en/method_list.html:412(a) +#: doc/reference/en/method_list.html:394(a) msgid "#allow_concurrency=" msgstr "" -#: doc/reference/en/method_list.html:420(a) +#: doc/reference/en/method_list.html:402(a) msgid "#ancestors" msgstr "" -#: doc/reference/en/method_list.html:422(small) -#: doc/reference/en/method_list.html:1918(small) -#: doc/reference/en/method_list.html:3158(small) -#: doc/reference/en/method_list.html:3174(small) -#: doc/reference/en/method_list.html:3558(small) -#: doc/reference/en/method_list.html:3806(small) -#: doc/reference/en/method_list.html:3854(small) -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/method_list.html:404(small) +#: doc/reference/en/method_list.html:1932(small) +#: doc/reference/en/method_list.html:3116(small) +#: doc/reference/en/method_list.html:3124(small) +#: doc/reference/en/method_list.html:3492(small) +#: doc/reference/en/method_list.html:3748(small) +#: doc/reference/en/method_list.html:3796(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Acts::Tree" msgstr "" -#: doc/reference/en/method_list.html:428(a) -#: doc/reference/en/ActiveLdap/Associations.html:122(strong) -#: doc/reference/en/ActiveLdap/Associations.html:182(strong) -#: doc/reference/en/ActiveLdap/Associations.html:202(span) +#: doc/reference/en/method_list.html:410(a) +#: doc/reference/en/ActiveLdap/Associations.html:129(strong) +#: doc/reference/en/ActiveLdap/Associations.html:191(strong) +#: doc/reference/en/ActiveLdap/Associations.html:213(span) msgid "append_features" msgstr "" -#: doc/reference/en/method_list.html:430(small) -#: doc/reference/en/method_list.html:814(small) -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/method_list.html:412(small) +#: doc/reference/en/method_list.html:804(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Associations" msgstr "" -#: doc/reference/en/method_list.html:436(a) -msgid "#assert_error_code" +#: doc/reference/en/method_list.html:418(a) +msgid "#aset_without_original_attribute_names" msgstr "" -#: doc/reference/en/method_list.html:438(small) -#: doc/reference/en/method_list.html:1534(small) -#: doc/reference/en/method_list.html:1542(small) -#: doc/reference/en/method_list.html:1662(small) -#: doc/reference/en/method_list.html:3790(small) -#: doc/reference/en/LDAP/Conn.html:74(li) -msgid "LDAP::Conn" +#: doc/reference/en/method_list.html:426(a) +msgid "#assert_error_code" msgstr "" -#: doc/reference/en/method_list.html:444(a) -msgid "#associated_class" +#: doc/reference/en/method_list.html:428(small) +#: doc/reference/en/method_list.html:1500(small) +#: doc/reference/en/method_list.html:1508(small) +#: doc/reference/en/method_list.html:1628(small) +#: doc/reference/en/method_list.html:3732(small) +#: doc/reference/en/LDAP/Conn.html:81(li) +msgid "LDAP::Conn" msgstr "" -#: doc/reference/en/method_list.html:446(small) -#: doc/reference/en/method_list.html:590(small) -#: doc/reference/en/method_list.html:1718(small) -#: doc/reference/en/method_list.html:3814(small) -msgid "ActiveLdap::Associations::ClassMethods" +#: doc/reference/en/method_list.html:434(a) +msgid "#assign_attributes" msgstr "" -#: doc/reference/en/method_list.html:452(a) -msgid "#attr_protected" +#: doc/reference/en/method_list.html:442(a) +msgid "#associated_class" msgstr "" -#: doc/reference/en/method_list.html:454(small) -#: doc/reference/en/method_list.html:718(small) -#: doc/reference/en/method_list.html:3278(small) -#: doc/reference/en/method_list.html:3382(small) -msgid "ActiveLdap::Attributes::ClassMethods" +#: doc/reference/en/method_list.html:444(small) +#: doc/reference/en/method_list.html:580(small) +#: doc/reference/en/method_list.html:1692(small) +#: doc/reference/en/method_list.html:3756(small) +msgid "ActiveLdap::Associations::ClassMethods" msgstr "" -#: doc/reference/en/method_list.html:460(a) -#: doc/reference/en/method_list.html:468(a) -#: doc/reference/en/method_list.html:476(a) +#: doc/reference/en/method_list.html:450(a) +#: doc/reference/en/method_list.html:458(a) +#: doc/reference/en/method_list.html:466(a) msgid "#attribute" msgstr "" -#: doc/reference/en/method_list.html:462(small) -#: doc/reference/en/method_list.html:2238(small) -#: doc/reference/en/method_list.html:4574(small) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:78(li) +#: doc/reference/en/method_list.html:460(small) +#: doc/reference/en/method_list.html:2012(small) +#: doc/reference/en/method_list.html:4516(small) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:85(li) msgid "ActiveLdap::AttributeValueInvalid" msgstr "" -#: doc/reference/en/method_list.html:470(small) -#: doc/reference/en/method_list.html:502(small) -#: doc/reference/en/method_list.html:518(small) -#: doc/reference/en/method_list.html:1310(small) -#: doc/reference/en/method_list.html:1382(small) -#: doc/reference/en/method_list.html:1478(small) -#: doc/reference/en/method_list.html:1598(small) -#: doc/reference/en/method_list.html:1670(small) -#: doc/reference/en/method_list.html:1910(small) -#: doc/reference/en/method_list.html:2302(small) -#: doc/reference/en/method_list.html:2494(small) -#: doc/reference/en/method_list.html:2502(small) -#: doc/reference/en/method_list.html:2526(small) -#: doc/reference/en/method_list.html:2918(small) -#: doc/reference/en/method_list.html:3086(small) -#: doc/reference/en/method_list.html:3094(small) -#: doc/reference/en/method_list.html:3110(small) -#: doc/reference/en/method_list.html:3502(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveLdap/Schema.html:74(li) +#: doc/reference/en/method_list.html:468(small) +#: doc/reference/en/method_list.html:492(small) +#: doc/reference/en/method_list.html:500(small) +#: doc/reference/en/method_list.html:1284(small) +#: doc/reference/en/method_list.html:1348(small) +#: doc/reference/en/method_list.html:1444(small) +#: doc/reference/en/method_list.html:1564(small) +#: doc/reference/en/method_list.html:1636(small) +#: doc/reference/en/method_list.html:1884(small) +#: doc/reference/en/method_list.html:2212(small) +#: doc/reference/en/method_list.html:2460(small) +#: doc/reference/en/method_list.html:2468(small) +#: doc/reference/en/method_list.html:2492(small) +#: doc/reference/en/method_list.html:2868(small) +#: doc/reference/en/method_list.html:3036(small) +#: doc/reference/en/method_list.html:3044(small) +#: doc/reference/en/method_list.html:3060(small) +#: doc/reference/en/method_list.html:3452(small) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/ActiveLdap/Schema.html:81(li) msgid "ActiveLdap::Schema" msgstr "" -#: doc/reference/en/method_list.html:484(a) +#: doc/reference/en/method_list.html:474(a) msgid "#attribute_names" msgstr "" -#: doc/reference/en/method_list.html:492(a) +#: doc/reference/en/method_list.html:482(a) msgid "#attribute_present?" msgstr "" -#: doc/reference/en/method_list.html:500(a) +#: doc/reference/en/method_list.html:490(a) msgid "#attribute_type" msgstr "" -#: doc/reference/en/method_list.html:508(a) -#: doc/reference/en/method_list.html:516(a) -#: doc/reference/en/method_list.html:524(a) -#: doc/reference/en/method_list.html:532(a) +#: doc/reference/en/method_list.html:498(a) +#: doc/reference/en/method_list.html:506(a) +#: doc/reference/en/method_list.html:514(a) +#: doc/reference/en/method_list.html:522(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:158(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:127(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:187(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:180(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:120(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:113(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:120(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:127(a) msgid "#attributes" msgstr "" -#: doc/reference/en/method_list.html:540(a) +#: doc/reference/en/method_list.html:530(a) msgid "#attributes=" msgstr "" -#: doc/reference/en/method_list.html:548(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:305(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:306(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:398(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:401(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:445(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:447(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:257(span) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:258(span) -#: doc/reference/en/ActiveLdap/Connection.html:330(span) -#: doc/reference/en/ActiveLdap/Connection.html:331(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:154(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:155(span) -#: doc/reference/en/ActiveLdap/Attributes.html:157(span) -#: doc/reference/en/ActiveLdap/Attributes.html:158(span) -#: doc/reference/en/ActiveLdap/Base.html:224(strong) -#: doc/reference/en/ActiveLdap/Base.html:852(strong) -#: doc/reference/en/ActiveLdap/Base.html:2102(strong) -#: doc/reference/en/ActiveLdap/Base.html:2141(span) -#: doc/reference/en/ActiveLdap/Base.html:2691(span) -#: doc/reference/en/ActiveLdap/Base.html:3372(strong) -#: doc/reference/en/ActiveLdap/Base.html:3389(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:537(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:269(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:270(span) -#: doc/reference/en/ActiveLdap/Populate.html:204(span) -#: doc/reference/en/ActiveLdap/Populate.html:267(span) -#: doc/reference/en/ActiveLdap/HumanReadable.html:158(span) -#: doc/reference/en/ActiveLdap/HumanReadable.html:160(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:225(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:392(span) -#: doc/reference/en/ActiveLdap/Associations.html:202(span) -#: doc/reference/en/ActiveLdap/Associations.html:204(span) -#: doc/reference/en/ActiveLdap/Associations.html:205(span) -#: doc/reference/en/ActiveLdap/Associations.html:206(span) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:150(span) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:151(span) -#: doc/reference/en/ActiveLdap/Configuration.html:183(span) -#: doc/reference/en/ActiveLdap/Configuration.html:184(span) -#: doc/reference/en/ActiveLdap/Operations.html:166(span) -#: doc/reference/en/ActiveLdap/Operations.html:168(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:607(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:609(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:612(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1613(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1627(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1628(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1630(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1689(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1694(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1697(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:724(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:727(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:731(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:776(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:785(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:735(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:737(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:744(span) -#: doc/reference/en/LDAP/Conn.html:420(span) -#: doc/reference/en/LDAP/Conn.html:422(span) -#: doc/reference/en/LDAP/Conn.html:426(span) -#: doc/reference/en/file.tutorial.html:539(span) -#: doc/reference/en/file.tutorial.html:540(span) -#: doc/reference/en/file.tutorial.html:541(span) -#: doc/reference/en/file.tutorial.html:589(span) -#: doc/reference/en/file.tutorial.html:590(span) -#: doc/reference/en/file.tutorial.html:591(span) -#: doc/reference/en/file.tutorial.html:636(span) -#: doc/reference/en/file.tutorial.html:637(span) -#: doc/reference/en/file.tutorial.html:638(span) +#: doc/reference/en/method_list.html:538(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:319(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:320(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:412(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:415(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:460(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:462(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:471(span) +#: doc/reference/en/ActiveLdap/Connection.html:350(span) +#: doc/reference/en/ActiveLdap/Connection.html:351(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:162(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:163(span) +#: doc/reference/en/ActiveLdap/Attributes.html:169(span) +#: doc/reference/en/ActiveLdap/Attributes.html:170(span) +#: doc/reference/en/ActiveLdap/Base.html:216(strong) +#: doc/reference/en/ActiveLdap/Base.html:884(strong) +#: doc/reference/en/ActiveLdap/Base.html:1933(strong) +#: doc/reference/en/ActiveLdap/Base.html:1971(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:560(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:286(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:287(span) +#: doc/reference/en/ActiveLdap/Populate.html:218(span) +#: doc/reference/en/ActiveLdap/Populate.html:282(span) +#: doc/reference/en/ActiveLdap/HumanReadable.html:166(span) +#: doc/reference/en/ActiveLdap/HumanReadable.html:168(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:240(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:414(span) +#: doc/reference/en/ActiveLdap/Associations.html:213(span) +#: doc/reference/en/ActiveLdap/Associations.html:215(span) +#: doc/reference/en/ActiveLdap/Associations.html:216(span) +#: doc/reference/en/ActiveLdap/Associations.html:217(span) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:162(span) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:163(span) +#: doc/reference/en/ActiveLdap/Configuration.html:192(span) +#: doc/reference/en/ActiveLdap/Configuration.html:193(span) +#: doc/reference/en/ActiveLdap/Operations.html:180(span) +#: doc/reference/en/ActiveLdap/Operations.html:182(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:622(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:624(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:627(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1650(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1664(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1665(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1667(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1727(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1732(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1735(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:742(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:745(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:749(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:793(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:802(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:746(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:748(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:755(span) +#: doc/reference/en/LDAP/Conn.html:462(span) +#: doc/reference/en/LDAP/Conn.html:464(span) +#: doc/reference/en/LDAP/Conn.html:468(span) +#: doc/reference/en/file.tutorial.html:546(span) +#: doc/reference/en/file.tutorial.html:547(span) +#: doc/reference/en/file.tutorial.html:548(span) +#: doc/reference/en/file.tutorial.html:596(span) +#: doc/reference/en/file.tutorial.html:597(span) +#: doc/reference/en/file.tutorial.html:598(span) +#: doc/reference/en/file.tutorial.html:643(span) +#: doc/reference/en/file.tutorial.html:644(span) +#: doc/reference/en/file.tutorial.html:645(span) msgid "base" msgstr "" -#: doc/reference/en/method_list.html:556(a) +#: doc/reference/en/method_list.html:546(a) msgid "#base" msgstr "" -#: doc/reference/en/method_list.html:564(a) -#: doc/reference/en/ActiveLdap/Base.html:248(strong) -#: doc/reference/en/ActiveLdap/Base.html:873(strong) -#: doc/reference/en/ActiveLdap/Base.html:2153(strong) -#: doc/reference/en/ActiveLdap/Base.html:2171(span) -#: doc/reference/en/ActiveLdap/Base.html:3401(strong) -#: doc/reference/en/ActiveLdap/Base.html:3421(span) -msgid "base=" +#: doc/reference/en/method_list.html:554(a) +msgid "#base=" msgstr "" -#: doc/reference/en/method_list.html:572(a) -msgid "#base=" +#: doc/reference/en/method_list.html:562(a) +#: doc/reference/en/ActiveLdap/Base.html:240(strong) +#: doc/reference/en/ActiveLdap/Base.html:906(strong) +#: doc/reference/en/ActiveLdap/Base.html:1982(strong) +#: doc/reference/en/ActiveLdap/Base.html:2002(span) +msgid "base=" msgstr "" -#: doc/reference/en/method_list.html:580(a) -#: doc/reference/en/ActiveLdap/Base.html:269(strong) -#: doc/reference/en/ActiveLdap/Base.html:2184(strong) -#: doc/reference/en/ActiveLdap/Base.html:2205(span) -#: doc/reference/en/ActiveLdap/Base.html:2209(span) -#: doc/reference/en/ActiveLdap/Base.html:2848(span) -#: doc/reference/en/ActiveLdap/Populate.html:200(span) -#: doc/reference/en/ActiveLdap/Populate.html:201(span) -#: doc/reference/en/ActiveLdap/Populate.html:202(span) -#: doc/reference/en/ActiveLdap/Populate.html:204(span) -#: doc/reference/en/ActiveLdap/Populate.html:213(span) -#: doc/reference/en/ActiveLdap/Populate.html:257(span) -#: doc/reference/en/ActiveLdap/Populate.html:258(span) -#: doc/reference/en/ActiveLdap/Populate.html:262(span) -#: doc/reference/en/ActiveLdap/Populate.html:308(span) -#: doc/reference/en/ActiveLdap/Populate.html:309(span) -#: doc/reference/en/ActiveLdap/Populate.html:313(span) +#: doc/reference/en/method_list.html:570(a) +#: doc/reference/en/ActiveLdap/Base.html:262(strong) +#: doc/reference/en/ActiveLdap/Base.html:2014(strong) +#: doc/reference/en/ActiveLdap/Base.html:2037(span) +#: doc/reference/en/ActiveLdap/Base.html:2041(span) +#: doc/reference/en/ActiveLdap/Populate.html:214(span) +#: doc/reference/en/ActiveLdap/Populate.html:215(span) +#: doc/reference/en/ActiveLdap/Populate.html:216(span) +#: doc/reference/en/ActiveLdap/Populate.html:218(span) +#: doc/reference/en/ActiveLdap/Populate.html:227(span) +#: doc/reference/en/ActiveLdap/Populate.html:272(span) +#: doc/reference/en/ActiveLdap/Populate.html:273(span) +#: doc/reference/en/ActiveLdap/Populate.html:277(span) +#: doc/reference/en/ActiveLdap/Populate.html:324(span) +#: doc/reference/en/ActiveLdap/Populate.html:325(span) +#: doc/reference/en/ActiveLdap/Populate.html:329(span) msgid "base_class" msgstr "" -#: doc/reference/en/method_list.html:588(a) +#: doc/reference/en/method_list.html:578(a) msgid "#belongs_to" msgstr "" -#: doc/reference/en/method_list.html:596(a) -#: doc/reference/en/method_list.html:604(a) +#: doc/reference/en/method_list.html:586(a) +#: doc/reference/en/method_list.html:594(a) msgid "#binary?" msgstr "" -#: doc/reference/en/method_list.html:598(small) -#: doc/reference/en/method_list.html:614(small) -#: doc/reference/en/method_list.html:1294(small) -#: doc/reference/en/method_list.html:1758(small) -#: doc/reference/en/method_list.html:1782(small) -#: doc/reference/en/method_list.html:2118(small) -#: doc/reference/en/method_list.html:3046(small) -#: doc/reference/en/method_list.html:3302(small) -#: doc/reference/en/method_list.html:3878(small) -#: doc/reference/en/method_list.html:3942(small) -#: doc/reference/en/method_list.html:3966(small) -#: doc/reference/en/method_list.html:3974(small) -#: doc/reference/en/method_list.html:4046(small) -#: doc/reference/en/method_list.html:4326(small) -#: doc/reference/en/method_list.html:4494(small) -#: doc/reference/en/method_list.html:4526(small) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:76(li) -msgid "ActiveLdap::Schema::Attribute" +#: doc/reference/en/method_list.html:588(small) +#: doc/reference/en/method_list.html:2060(small) +#: doc/reference/en/method_list.html:2844(small) +#: doc/reference/en/method_list.html:4012(small) +#: doc/reference/en/method_list.html:4020(small) +#: doc/reference/en/method_list.html:4220(small) +#: doc/reference/en/method_list.html:4532(small) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:81(li) +msgid "ActiveLdap::Adapter::JndiConnection::ModifyRecord" msgstr "" -#: doc/reference/en/method_list.html:606(small) -#: doc/reference/en/method_list.html:2294(small) -#: doc/reference/en/method_list.html:2902(small) -#: doc/reference/en/method_list.html:4070(small) -#: doc/reference/en/method_list.html:4078(small) -#: doc/reference/en/method_list.html:4286(small) -#: doc/reference/en/method_list.html:4590(small) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:74(li) -msgid "ActiveLdap::Adapter::JndiConnection::ModifyRecord" +#: doc/reference/en/method_list.html:596(small) +#: doc/reference/en/method_list.html:604(small) +#: doc/reference/en/method_list.html:1268(small) +#: doc/reference/en/method_list.html:1740(small) +#: doc/reference/en/method_list.html:1756(small) +#: doc/reference/en/method_list.html:2284(small) +#: doc/reference/en/method_list.html:2972(small) +#: doc/reference/en/method_list.html:3244(small) +#: doc/reference/en/method_list.html:3820(small) +#: doc/reference/en/method_list.html:3884(small) +#: doc/reference/en/method_list.html:3908(small) +#: doc/reference/en/method_list.html:3916(small) +#: doc/reference/en/method_list.html:3980(small) +#: doc/reference/en/method_list.html:4276(small) +#: doc/reference/en/method_list.html:4460(small) +#: doc/reference/en/method_list.html:4476(small) +msgid "ActiveLdap::Schema::Attribute" msgstr "" -#: doc/reference/en/method_list.html:612(a) +#: doc/reference/en/method_list.html:602(a) msgid "#binary_required?" msgstr "" -#: doc/reference/en/method_list.html:620(a) +#: doc/reference/en/method_list.html:610(a) msgid "#binary_transfer_required?" msgstr "" -#: doc/reference/en/method_list.html:628(a) -msgid "#binary_value?" +#: doc/reference/en/method_list.html:618(a) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:117(strong) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:192(strong) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:240(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:307(span) +msgid "binary_value?" msgstr "" -#: doc/reference/en/method_list.html:630(small) -#: doc/reference/en/method_list.html:1422(small) -#: doc/reference/en/method_list.html:3030(small) +#: doc/reference/en/method_list.html:620(small) +#: doc/reference/en/method_list.html:1388(small) +#: doc/reference/en/method_list.html:2980(small) msgid "ActiveLdap::Ldif::Attribute" msgstr "" -#: doc/reference/en/method_list.html:636(a) -#: doc/reference/en/method_list.html:644(a) -#: doc/reference/en/method_list.html:652(a) -#: doc/reference/en/method_list.html:660(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) +#: doc/reference/en/method_list.html:626(a) +#: doc/reference/en/method_list.html:634(a) +#: doc/reference/en/method_list.html:642(a) +#: doc/reference/en/method_list.html:650(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) msgid "#bind" msgstr "" -#: doc/reference/en/method_list.html:668(a) -#: doc/reference/en/method_list.html:676(a) -#: doc/reference/en/method_list.html:684(a) -#: doc/reference/en/method_list.html:692(a) -#: doc/reference/en/method_list.html:700(a) +#: doc/reference/en/method_list.html:658(a) +#: doc/reference/en/method_list.html:666(a) +#: doc/reference/en/method_list.html:674(a) +#: doc/reference/en/method_list.html:682(a) +#: doc/reference/en/method_list.html:690(a) msgid "#bind_as_anonymous" msgstr "" -#: doc/reference/en/method_list.html:708(a) +#: doc/reference/en/method_list.html:698(a) msgid "#blank?" msgstr "" -#: doc/reference/en/method_list.html:716(a) +#: doc/reference/en/method_list.html:706(a) msgid "#blank_value?" msgstr "" -#: doc/reference/en/method_list.html:724(a) -#: doc/reference/en/method_list.html:732(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:708(small) +#: doc/reference/en/method_list.html:3332(small) +msgid "ActiveLdap::Attributes::ClassMethods" +msgstr "" + +#: doc/reference/en/method_list.html:714(a) +#: doc/reference/en/method_list.html:722(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "#bound?" msgstr "" -#: doc/reference/en/method_list.html:740(a) +#: doc/reference/en/method_list.html:730(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:153(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:122(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:182(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:115(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:115(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:122(a) msgid "#change_type" msgstr "" -#: doc/reference/en/method_list.html:748(a) +#: doc/reference/en/method_list.html:738(a) msgid "#check" msgstr "" -#: doc/reference/en/method_list.html:756(a) +#: doc/reference/en/method_list.html:746(a) msgid "#check_separator" msgstr "" -#: doc/reference/en/method_list.html:764(a) -#: doc/reference/en/ActiveLdap/Base.html:290(strong) -#: doc/reference/en/ActiveLdap/Base.html:2221(strong) -#: doc/reference/en/ActiveLdap/Base.html:2240(span) +#: doc/reference/en/method_list.html:754(a) +#: doc/reference/en/ActiveLdap/Base.html:284(strong) +#: doc/reference/en/ActiveLdap/Base.html:2052(strong) +#: doc/reference/en/ActiveLdap/Base.html:2093(span) msgid "class_local_attr_accessor" msgstr "" -#: doc/reference/en/method_list.html:772(a) -#: doc/reference/en/ActiveLdap/Base.html:311(strong) -#: doc/reference/en/ActiveLdap/Base.html:2254(strong) -#: doc/reference/en/ActiveLdap/Base.html:2278(span) -#: doc/reference/en/ActiveLdap/Base.html:2285(span) +#: doc/reference/en/method_list.html:762(a) +#: doc/reference/en/ActiveLdap/Base.html:306(strong) +#: doc/reference/en/ActiveLdap/Base.html:2126(strong) +#: doc/reference/en/ActiveLdap/Base.html:2152(span) +#: doc/reference/en/ActiveLdap/Base.html:2159(span) msgid "class_of_active_ldap_descendant" msgstr "" -#: doc/reference/en/method_list.html:780(a) -#: doc/reference/en/method_list.html:788(a) +#: doc/reference/en/method_list.html:770(a) +#: doc/reference/en/method_list.html:778(a) msgid "#classes" msgstr "" -#: doc/reference/en/method_list.html:782(small) +#: doc/reference/en/method_list.html:772(small) msgid "ActiveLdap::ObjectClass::ClassMethods" msgstr "" -#: doc/reference/en/method_list.html:796(a) +#: doc/reference/en/method_list.html:786(a) msgid "#clear_active_connection_name" msgstr "" -#: doc/reference/en/method_list.html:804(a) +#: doc/reference/en/method_list.html:794(a) msgid "#clear_active_connections!" msgstr "" -#: doc/reference/en/method_list.html:812(a) +#: doc/reference/en/method_list.html:802(a) msgid "#clear_association_cache" msgstr "" -#: doc/reference/en/method_list.html:820(a) +#: doc/reference/en/method_list.html:810(a) msgid "#clear_connection_based_cache" msgstr "" -#: doc/reference/en/method_list.html:828(a) +#: doc/reference/en/method_list.html:818(a) msgid "#clear_object_class_based_cache" msgstr "" -#: doc/reference/en/method_list.html:836(a) -#: doc/reference/en/method_list.html:844(a) +#: doc/reference/en/method_list.html:826(a) +#: doc/reference/en/method_list.html:834(a) msgid "#column" msgstr "" -#: doc/reference/en/method_list.html:846(small) -#: doc/reference/en/method_list.html:2230(small) -#: doc/reference/en/method_list.html:2534(small) -#: doc/reference/en/method_list.html:2566(small) -#: doc/reference/en/method_list.html:2934(small) -#: doc/reference/en/method_list.html:3326(small) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:78(li) +#: doc/reference/en/method_list.html:828(small) +#: doc/reference/en/method_list.html:2156(small) +#: doc/reference/en/method_list.html:2500(small) +#: doc/reference/en/method_list.html:2532(small) +#: doc/reference/en/method_list.html:2884(small) +#: doc/reference/en/method_list.html:3268(small) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:85(li) msgid "ActiveLdap::LdifInvalid" msgstr "" -#: doc/reference/en/method_list.html:852(a) +#: doc/reference/en/method_list.html:842(a) msgid "#configuration" msgstr "" -#: doc/reference/en/method_list.html:854(small) -#: doc/reference/en/method_list.html:1078(small) -#: doc/reference/en/method_list.html:1118(small) -#: doc/reference/en/method_list.html:1126(small) -#: doc/reference/en/method_list.html:1446(small) -#: doc/reference/en/method_list.html:2702(small) -#: doc/reference/en/method_list.html:3270(small) -#: doc/reference/en/method_list.html:3398(small) -#: doc/reference/en/method_list.html:3422(small) +#: doc/reference/en/method_list.html:844(small) +#: doc/reference/en/method_list.html:1060(small) +#: doc/reference/en/method_list.html:1092(small) +#: doc/reference/en/method_list.html:1100(small) +#: doc/reference/en/method_list.html:1412(small) +#: doc/reference/en/method_list.html:2668(small) +#: doc/reference/en/method_list.html:3220(small) +#: doc/reference/en/method_list.html:3348(small) +#: doc/reference/en/method_list.html:3372(small) msgid "ActiveLdap::Configuration::ClassMethods" msgstr "" -#: doc/reference/en/method_list.html:860(a) -#: doc/reference/en/method_list.html:868(a) -#: doc/reference/en/method_list.html:876(a) -#: doc/reference/en/method_list.html:884(a) -#: doc/reference/en/method_list.html:892(a) -#: doc/reference/en/method_list.html:900(a) -#: doc/reference/en/method_list.html:908(a) +#: doc/reference/en/method_list.html:850(a) +#: doc/reference/en/method_list.html:858(a) +#: doc/reference/en/method_list.html:866(a) +#: doc/reference/en/method_list.html:874(a) +#: doc/reference/en/method_list.html:882(a) +#: doc/reference/en/method_list.html:890(a) +#: doc/reference/en/method_list.html:898(a) msgid "#connect" msgstr "" -#: doc/reference/en/method_list.html:878(small) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:76(li) +#: doc/reference/en/method_list.html:860(small) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:83(li) msgid "ActiveLdap::Adapter::Ldap::Method::Plain" msgstr "" -#: doc/reference/en/method_list.html:894(small) -#: doc/reference/en/method_list.html:3902(small) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:76(li) +#: doc/reference/en/method_list.html:868(small) +#: doc/reference/en/method_list.html:3852(small) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:83(li) msgid "ActiveLdap::Adapter::Ldap::Method::SSL" msgstr "" -#: doc/reference/en/method_list.html:910(small) -#: doc/reference/en/method_list.html:3926(small) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:76(li) +#: doc/reference/en/method_list.html:884(small) +#: doc/reference/en/method_list.html:3868(small) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:83(li) msgid "ActiveLdap::Adapter::Ldap::Method::TLS" msgstr "" -#: doc/reference/en/method_list.html:916(a) -#: doc/reference/en/method_list.html:924(a) +#: doc/reference/en/method_list.html:906(a) +#: doc/reference/en/method_list.html:914(a) msgid "#connected?" msgstr "" -#: doc/reference/en/method_list.html:918(small) -#: doc/reference/en/method_list.html:950(small) -#: doc/reference/en/method_list.html:958(small) -#: doc/reference/en/method_list.html:1566(small) -#: doc/reference/en/method_list.html:1942(small) -#: doc/reference/en/method_list.html:3406(small) -#: doc/reference/en/method_list.html:3534(small) -#: doc/reference/en/method_list.html:3662(small) -#: doc/reference/en/method_list.html:3830(small) -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/method_list.html:916(small) +#: doc/reference/en/method_list.html:932(small) +#: doc/reference/en/method_list.html:948(small) +#: doc/reference/en/method_list.html:1524(small) +#: doc/reference/en/method_list.html:1956(small) +#: doc/reference/en/method_list.html:3356(small) +#: doc/reference/en/method_list.html:3476(small) +#: doc/reference/en/method_list.html:3620(small) +#: doc/reference/en/method_list.html:3764(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Connection" msgstr "" -#: doc/reference/en/method_list.html:932(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:922(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "#connecting?" msgstr "" -#: doc/reference/en/method_list.html:940(a) -#: doc/reference/en/method_list.html:948(a) +#: doc/reference/en/method_list.html:930(a) +#: doc/reference/en/method_list.html:938(a) msgid "#connection" msgstr "" -#: doc/reference/en/method_list.html:956(a) -#: doc/reference/en/method_list.html:964(a) +#: doc/reference/en/method_list.html:946(a) +#: doc/reference/en/method_list.html:954(a) msgid "#connection=" msgstr "" -#: doc/reference/en/method_list.html:972(a) -#: doc/reference/en/ActiveLdap.html:152(strong) -#: doc/reference/en/ActiveLdap.html:213(strong) -#: doc/reference/en/ActiveLdap.html:241(span) +#: doc/reference/en/method_list.html:962(a) +#: doc/reference/en/ActiveLdap.html:150(strong) +#: doc/reference/en/ActiveLdap.html:214(strong) +#: doc/reference/en/ActiveLdap.html:244(span) msgid "const_missing" msgstr "" -#: doc/reference/en/method_list.html:980(a) +#: doc/reference/en/method_list.html:970(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:153(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:122(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:182(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:115(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:115(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:122(a) msgid "#controls" msgstr "" -#: doc/reference/en/method_list.html:988(a) +#: doc/reference/en/method_list.html:978(a) msgid "#convert_to_utf8_encoded_object" msgstr "" -#: doc/reference/en/method_list.html:990(small) -#: doc/reference/en/method_list.html:3934(small) +#: doc/reference/en/method_list.html:980(small) +#: doc/reference/en/method_list.html:3876(small) msgid "ActiveLdap::Compatible" msgstr "" -#: doc/reference/en/method_list.html:996(a) +#: doc/reference/en/method_list.html:986(a) msgid "#count" msgstr "" -#: doc/reference/en/method_list.html:998(small) -#: doc/reference/en/method_list.html:1582(small) -#: doc/reference/en/method_list.html:3742(small) +#: doc/reference/en/method_list.html:988(small) +#: doc/reference/en/method_list.html:1548(small) +#: doc/reference/en/method_list.html:3692(small) msgid "ActiveLdap::Operations::Common" msgstr "" -#: doc/reference/en/method_list.html:1004(a) -#: doc/reference/en/ActiveLdap/Persistence.html:96(strong) -#: doc/reference/en/ActiveLdap/Persistence.html:306(strong) -#: doc/reference/en/ActiveLdap/Persistence.html:328(span) -#: doc/reference/en/ActiveLdap/Persistence.html:363(span) -#: doc/reference/en/ActiveLdap/Base.html:332(strong) -#: doc/reference/en/ActiveLdap/Base.html:2297(strong) -#: doc/reference/en/ActiveLdap/Base.html:2320(span) -#: doc/reference/en/ActiveLdap/Base.html:2322(span) +#: doc/reference/en/method_list.html:994(a) +#: doc/reference/en/ActiveLdap/Persistence.html:105(strong) +#: doc/reference/en/ActiveLdap/Persistence.html:342(strong) +#: doc/reference/en/ActiveLdap/Persistence.html:366(span) +#: doc/reference/en/ActiveLdap/Persistence.html:402(span) +#: doc/reference/en/ActiveLdap/Base.html:328(strong) +#: doc/reference/en/ActiveLdap/Base.html:2170(strong) +#: doc/reference/en/ActiveLdap/Base.html:2195(span) +#: doc/reference/en/ActiveLdap/Base.html:2197(span) msgid "create" msgstr "" -#: doc/reference/en/method_list.html:1012(a) +#: doc/reference/en/method_list.html:1002(a) msgid "#create" msgstr "" -#: doc/reference/en/method_list.html:1014(small) -#: doc/reference/en/method_list.html:1038(small) -#: doc/reference/en/method_list.html:1142(small) -#: doc/reference/en/method_list.html:1270(small) -#: doc/reference/en/method_list.html:2950(small) -#: doc/reference/en/method_list.html:3238(small) -#: doc/reference/en/method_list.html:3606(small) -#: doc/reference/en/method_list.html:3630(small) -#: doc/reference/en/method_list.html:4430(small) +#: doc/reference/en/method_list.html:1004(small) +#: doc/reference/en/method_list.html:1028(small) +#: doc/reference/en/method_list.html:1124(small) +#: doc/reference/en/method_list.html:1236(small) +#: doc/reference/en/method_list.html:2900(small) +#: doc/reference/en/method_list.html:3188(small) +#: doc/reference/en/method_list.html:3300(small) +#: doc/reference/en/method_list.html:3540(small) +#: doc/reference/en/method_list.html:3564(small) +#: doc/reference/en/method_list.html:4380(small) msgid "ActiveLdap::Persistence" msgstr "" -#: doc/reference/en/method_list.html:1020(a) +#: doc/reference/en/method_list.html:1010(a) msgid "#create_ldap_yml" msgstr "" -#: doc/reference/en/method_list.html:1022(small) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:76(li) +#: doc/reference/en/method_list.html:1012(small) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:83(li) msgid "ActiveLdap::Generators::ScaffoldGenerator" msgstr "" -#: doc/reference/en/method_list.html:1028(a) +#: doc/reference/en/method_list.html:1018(a) msgid "#create_model" msgstr "" -#: doc/reference/en/method_list.html:1030(small) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:76(li) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:74(a) +#: doc/reference/en/method_list.html:1020(small) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:83(li) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:81(a) msgid "ActiveLdap::Generators::ModelGenerator" msgstr "" -#: doc/reference/en/method_list.html:1036(a) +#: doc/reference/en/method_list.html:1026(a) msgid "#create_or_update" msgstr "" -#: doc/reference/en/method_list.html:1044(a) +#: doc/reference/en/method_list.html:1034(a) msgid "#criticality?" msgstr "" -#: doc/reference/en/method_list.html:1052(a) -msgid "#crypt" +#: doc/reference/en/method_list.html:1042(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:115(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:344(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:364(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:366(span) +msgid "crypt" msgstr "" -#: doc/reference/en/method_list.html:1054(small) -#: doc/reference/en/method_list.html:1630(small) -#: doc/reference/en/method_list.html:1638(small) -#: doc/reference/en/method_list.html:1646(small) -#: doc/reference/en/method_list.html:1654(small) -#: doc/reference/en/method_list.html:2694(small) -#: doc/reference/en/method_list.html:3846(small) -#: doc/reference/en/method_list.html:3886(small) -#: doc/reference/en/method_list.html:3894(small) -#: doc/reference/en/method_list.html:4518(small) -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/method_list.html:1044(small) +#: doc/reference/en/method_list.html:1596(small) +#: doc/reference/en/method_list.html:1604(small) +#: doc/reference/en/method_list.html:1612(small) +#: doc/reference/en/method_list.html:1620(small) +#: doc/reference/en/method_list.html:2660(small) +#: doc/reference/en/method_list.html:3788(small) +#: doc/reference/en/method_list.html:3828(small) +#: doc/reference/en/method_list.html:3836(small) +#: doc/reference/en/method_list.html:4452(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::UserPassword" msgstr "" -#: doc/reference/en/method_list.html:1060(a) +#: doc/reference/en/method_list.html:1050(a) msgid "#default_adapter" msgstr "" -#: doc/reference/en/method_list.html:1068(a) -msgid "#default_available_locales=" -msgstr "" - -#: doc/reference/en/method_list.html:1076(a) +#: doc/reference/en/method_list.html:1058(a) msgid "#default_configuration" msgstr "" -#: doc/reference/en/method_list.html:1084(a) -msgid "#default_search_attribute" -msgstr "" - -#: doc/reference/en/method_list.html:1092(a) -#: doc/reference/en/ActiveLdap/Base.html:353(strong) -#: doc/reference/en/ActiveLdap/Base.html:957(strong) -#: doc/reference/en/ActiveLdap/Base.html:2338(strong) -#: doc/reference/en/ActiveLdap/Base.html:2355(span) -#: doc/reference/en/ActiveLdap/Base.html:3571(strong) -#: doc/reference/en/ActiveLdap/Base.html:3588(span) -#: doc/reference/en/ActiveLdap/Base.html:3589(span) +#: doc/reference/en/method_list.html:1066(a) +#: doc/reference/en/ActiveLdap/Base.html:350(strong) +#: doc/reference/en/ActiveLdap/Base.html:994(strong) +#: doc/reference/en/ActiveLdap/Base.html:2212(strong) +#: doc/reference/en/ActiveLdap/Base.html:2231(span) msgid "default_search_attribute" msgstr "" -#: doc/reference/en/method_list.html:1100(a) -msgid "#default_text_domain=" +#: doc/reference/en/method_list.html:1074(a) +msgid "#default_search_attribute" msgstr "" -#: doc/reference/en/method_list.html:1108(a) -#: doc/reference/en/ActiveLdap/LdapError.html:144(strong) -#: doc/reference/en/ActiveLdap/LdapError.html:190(strong) -#: doc/reference/en/ActiveLdap/LdapError.html:209(span) +#: doc/reference/en/method_list.html:1082(a) +#: doc/reference/en/ActiveLdap/LdapError.html:136(strong) +#: doc/reference/en/ActiveLdap/LdapError.html:185(strong) +#: doc/reference/en/ActiveLdap/LdapError.html:213(span) msgid "define" msgstr "" -#: doc/reference/en/method_list.html:1110(small) -#: doc/reference/en/ActiveLdap/LdapError.html:78(li) +#: doc/reference/en/method_list.html:1084(small) +#: doc/reference/en/ActiveLdap/LdapError.html:85(li) msgid "ActiveLdap::LdapError" msgstr "" -#: doc/reference/en/method_list.html:1116(a) +#: doc/reference/en/method_list.html:1090(a) msgid "#define_configuration" msgstr "" -#: doc/reference/en/method_list.html:1124(a) +#: doc/reference/en/method_list.html:1098(a) msgid "#defined_configurations" msgstr "" -#: doc/reference/en/method_list.html:1132(a) -#: doc/reference/en/method_list.html:1140(a) -#: doc/reference/en/method_list.html:1148(a) -#: doc/reference/en/method_list.html:1156(a) -#: doc/reference/en/method_list.html:1164(a) -#: doc/reference/en/method_list.html:1172(a) -#: doc/reference/en/method_list.html:1180(a) -#: doc/reference/en/method_list.html:1188(a) +#: doc/reference/en/method_list.html:1106(a) +#: doc/reference/en/method_list.html:1114(a) +#: doc/reference/en/method_list.html:1122(a) +#: doc/reference/en/method_list.html:1130(a) +#: doc/reference/en/method_list.html:1138(a) +#: doc/reference/en/method_list.html:1146(a) +#: doc/reference/en/method_list.html:1154(a) +#: doc/reference/en/method_list.html:1162(a) msgid "#delete" msgstr "" -#: doc/reference/en/method_list.html:1182(small) -#: doc/reference/en/method_list.html:1222(small) -#: doc/reference/en/method_list.html:1230(small) -#: doc/reference/en/method_list.html:1262(small) -#: doc/reference/en/method_list.html:1286(small) -msgid "ActiveLdap::Operations::Delete" +#: doc/reference/en/method_list.html:1132(small) +#: doc/reference/en/method_list.html:1244(small) +msgid "ActiveLdap::Operations::ClassOnlyDelete" msgstr "" -#: doc/reference/en/method_list.html:1196(a) -#: doc/reference/en/method_list.html:1204(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:314(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:205(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:265(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:205(a) +#: doc/reference/en/method_list.html:1170(a) +#: doc/reference/en/method_list.html:1178(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:297(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:188(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:259(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:170(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:170(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:188(a) msgid "#delete?" msgstr "" -#: doc/reference/en/method_list.html:1212(a) -#: doc/reference/en/method_list.html:1220(a) +#: doc/reference/en/method_list.html:1186(a) +#: doc/reference/en/method_list.html:1194(a) msgid "#delete_all" msgstr "" -#: doc/reference/en/method_list.html:1228(a) +#: doc/reference/en/method_list.html:1196(small) +#: doc/reference/en/method_list.html:1204(small) +#: doc/reference/en/method_list.html:1252(small) +msgid "ActiveLdap::Operations::Delete" +msgstr "" + +#: doc/reference/en/method_list.html:1202(a) msgid "#delete_entry" msgstr "" -#: doc/reference/en/method_list.html:1236(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:195(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:195(a) +#: doc/reference/en/method_list.html:1210(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:177(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:177(a) msgid "#delete_old_rdn?" msgstr "" -#: doc/reference/en/method_list.html:1238(small) -#: doc/reference/en/method_list.html:2054(small) -#: doc/reference/en/method_list.html:2958(small) -#: doc/reference/en/method_list.html:2966(small) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:78(li) +#: doc/reference/en/method_list.html:1212(small) +#: doc/reference/en/method_list.html:2044(small) +#: doc/reference/en/method_list.html:2908(small) +#: doc/reference/en/method_list.html:2916(small) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:85(li) msgid "ActiveLdap::Ldif::ModifyNameRecord" msgstr "" -#: doc/reference/en/method_list.html:1244(a) +#: doc/reference/en/method_list.html:1218(a) msgid "#description" msgstr "" -#: doc/reference/en/method_list.html:1252(a) -#: doc/reference/en/method_list.html:1260(a) -#: doc/reference/en/method_list.html:1268(a) +#: doc/reference/en/method_list.html:1226(a) +#: doc/reference/en/method_list.html:1234(a) +#: doc/reference/en/method_list.html:1242(a) msgid "#destroy" msgstr "" -#: doc/reference/en/method_list.html:1254(small) -#: doc/reference/en/method_list.html:2030(small) -#: doc/reference/en/method_list.html:4262(small) -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/method_list.html:1228(small) +#: doc/reference/en/method_list.html:2100(small) +#: doc/reference/en/method_list.html:4204(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Callbacks" msgstr "" -#: doc/reference/en/method_list.html:1276(a) -#: doc/reference/en/method_list.html:1284(a) +#: doc/reference/en/method_list.html:1250(a) +#: doc/reference/en/method_list.html:1258(a) msgid "#destroy_all" msgstr "" -#: doc/reference/en/method_list.html:1292(a) +#: doc/reference/en/method_list.html:1266(a) msgid "#directory_operation?" msgstr "" -#: doc/reference/en/method_list.html:1300(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:1274(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "#disconnect!" msgstr "" -#: doc/reference/en/method_list.html:1308(a) +#: doc/reference/en/method_list.html:1282(a) msgid "#dit_content_rule_attribute" msgstr "" -#: doc/reference/en/method_list.html:1316(a) -#: doc/reference/en/method_list.html:1324(a) -#: doc/reference/en/method_list.html:1332(a) -#: doc/reference/en/method_list.html:1340(a) +#: doc/reference/en/method_list.html:1290(a) +#: doc/reference/en/method_list.html:1298(a) +#: doc/reference/en/method_list.html:1306(a) +#: doc/reference/en/method_list.html:1314(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:158(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:127(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:187(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:180(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:120(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:113(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:120(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:127(a) msgid "#dn" msgstr "" -#: doc/reference/en/method_list.html:1334(small) -#: doc/reference/en/method_list.html:2206(small) -#: doc/reference/en/method_list.html:3206(small) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:74(li) -msgid "ActiveLdap::DistinguishedName::Parser" +#: doc/reference/en/method_list.html:1300(small) +#: doc/reference/en/method_list.html:1972(small) +#: doc/reference/en/method_list.html:3260(small) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:85(li) +msgid "ActiveLdap::DistinguishedNameInvalid" msgstr "" -#: doc/reference/en/method_list.html:1342(small) -#: doc/reference/en/method_list.html:2270(small) -#: doc/reference/en/method_list.html:3318(small) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:78(li) -msgid "ActiveLdap::DistinguishedNameInvalid" +#: doc/reference/en/method_list.html:1308(small) +#: doc/reference/en/method_list.html:2236(small) +#: doc/reference/en/method_list.html:3148(small) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:81(li) +msgid "ActiveLdap::DistinguishedName::Parser" msgstr "" -#: doc/reference/en/method_list.html:1348(a) +#: doc/reference/en/method_list.html:1322(a) msgid "#dn=" msgstr "" -#: doc/reference/en/method_list.html:1356(a) +#: doc/reference/en/method_list.html:1330(a) msgid "#dn_attribute" msgstr "" -#: doc/reference/en/method_list.html:1364(a) +#: doc/reference/en/method_list.html:1338(a) msgid "#dn_attribute_of_class" msgstr "" -#: doc/reference/en/method_list.html:1372(a) -#: doc/reference/en/method_list.html:1380(a) +#: doc/reference/en/method_list.html:1346(a) +#: doc/reference/en/method_list.html:1354(a) msgid "#dump" msgstr "" -#: doc/reference/en/method_list.html:1374(small) -#: doc/reference/en/method_list.html:2606(small) -#: doc/reference/en/method_list.html:4094(small) -#: doc/reference/en/method_list.html:4110(small) -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/method_list.html:1356(small) +#: doc/reference/en/method_list.html:2564(small) +#: doc/reference/en/method_list.html:4036(small) +#: doc/reference/en/method_list.html:4052(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Operations::LDIF" msgstr "" -#: doc/reference/en/method_list.html:1388(a) -#: doc/reference/en/method_list.html:1396(a) -#: doc/reference/en/method_list.html:1404(a) -#: doc/reference/en/method_list.html:1412(a) +#: doc/reference/en/method_list.html:1362(a) +#: doc/reference/en/method_list.html:1370(a) +#: doc/reference/en/method_list.html:1378(a) msgid "#each" msgstr "" -#: doc/reference/en/method_list.html:1420(a) -#: doc/reference/en/method_list.html:1428(a) -msgid "#encode" +#: doc/reference/en/method_list.html:1386(a) +#: doc/reference/en/method_list.html:1394(a) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:105(strong) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:158(strong) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:185(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:191(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:139(strong) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:258(strong) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:302(span) +msgid "encode" msgstr "" -#: doc/reference/en/method_list.html:1430(small) -#: doc/reference/en/method_list.html:2974(small) +#: doc/reference/en/method_list.html:1396(small) +#: doc/reference/en/method_list.html:2924(small) msgid "ActiveLdap::Ldif::Attributes" msgstr "" -#: doc/reference/en/method_list.html:1436(a) -msgid "#ensure_base" +#: doc/reference/en/method_list.html:1402(a) +#: doc/reference/en/ActiveLdap/Populate.html:105(strong) +#: doc/reference/en/ActiveLdap/Populate.html:180(strong) +#: doc/reference/en/ActiveLdap/Populate.html:214(span) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:184(span) +msgid "ensure_base" msgstr "" -#: doc/reference/en/method_list.html:1438(small) -#: doc/reference/en/method_list.html:1454(small) -#: doc/reference/en/method_list.html:1462(small) +#: doc/reference/en/method_list.html:1404(small) +#: doc/reference/en/method_list.html:1420(small) +#: doc/reference/en/method_list.html:1428(small) msgid "ActiveLdap::Populate" msgstr "" -#: doc/reference/en/method_list.html:1444(a) +#: doc/reference/en/method_list.html:1410(a) msgid "#ensure_configuration" msgstr "" -#: doc/reference/en/method_list.html:1452(a) -msgid "#ensure_dc" +#: doc/reference/en/method_list.html:1418(a) +#: doc/reference/en/ActiveLdap/Populate.html:127(strong) +#: doc/reference/en/ActiveLdap/Populate.html:227(span) +#: doc/reference/en/ActiveLdap/Populate.html:240(strong) +#: doc/reference/en/ActiveLdap/Populate.html:272(span) +msgid "ensure_dc" msgstr "" -#: doc/reference/en/method_list.html:1460(a) -msgid "#ensure_ou" +#: doc/reference/en/method_list.html:1426(a) +#: doc/reference/en/ActiveLdap/Populate.html:149(strong) +#: doc/reference/en/ActiveLdap/Populate.html:296(strong) +#: doc/reference/en/ActiveLdap/Populate.html:324(span) +msgid "ensure_ou" msgstr "" -#: doc/reference/en/method_list.html:1468(a) +#: doc/reference/en/method_list.html:1434(a) msgid "#ensure_recommended_classes" msgstr "" -#: doc/reference/en/method_list.html:1476(a) -#: doc/reference/en/method_list.html:1484(a) +#: doc/reference/en/method_list.html:1442(a) +#: doc/reference/en/method_list.html:1450(a) msgid "#entry" msgstr "" -#: doc/reference/en/method_list.html:1486(small) -#: doc/reference/en/method_list.html:2046(small) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:78(li) +#: doc/reference/en/method_list.html:1452(small) +#: doc/reference/en/method_list.html:2084(small) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:85(li) msgid "ActiveLdap::EntryInvalid" msgstr "" -#: doc/reference/en/method_list.html:1492(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:1458(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "#entry_attribute" msgstr "" -#: doc/reference/en/method_list.html:1500(a) +#: doc/reference/en/method_list.html:1466(a) msgid "#eos?" msgstr "" -#: doc/reference/en/method_list.html:1508(a) -#: doc/reference/en/method_list.html:1516(a) -#: doc/reference/en/method_list.html:1524(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:362(a) +#: doc/reference/en/method_list.html:1474(a) +#: doc/reference/en/method_list.html:1482(a) +#: doc/reference/en/method_list.html:1490(a) msgid "#eql?" msgstr "" -#: doc/reference/en/method_list.html:1532(a) +#: doc/reference/en/method_list.html:1498(a) msgid "#error_code" msgstr "" -#: doc/reference/en/method_list.html:1540(a) +#: doc/reference/en/method_list.html:1506(a) msgid "#error_message" msgstr "" -#: doc/reference/en/method_list.html:1548(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:164(strong) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:642(strong) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:663(span) +#: doc/reference/en/method_list.html:1514(a) +#: doc/reference/en/ActiveLdap/Persistence.html:780(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:168(strong) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:660(strong) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:683(span) msgid "escape_value" msgstr "" -#: doc/reference/en/method_list.html:1556(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:286(strong) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:846(strong) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:868(span) -#: doc/reference/en/ActiveLdap/Connection.html:199(strong) -#: doc/reference/en/ActiveLdap/Connection.html:493(strong) -#: doc/reference/en/ActiveLdap/Connection.html:515(span) -#: doc/reference/en/ActiveLdap/Base.html:374(strong) -#: doc/reference/en/ActiveLdap/Base.html:2367(strong) -#: doc/reference/en/ActiveLdap/Base.html:2402(span) -msgid "establish_connection" +#: doc/reference/en/method_list.html:1522(a) +#: doc/reference/en/method_list.html:1530(a) +msgid "#establish_connection" msgstr "" -#: doc/reference/en/method_list.html:1564(a) -#: doc/reference/en/method_list.html:1572(a) -msgid "#establish_connection" +#: doc/reference/en/method_list.html:1538(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:300(strong) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:876(strong) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:900(span) +#: doc/reference/en/ActiveLdap/Connection.html:212(strong) +#: doc/reference/en/ActiveLdap/Connection.html:515(strong) +#: doc/reference/en/ActiveLdap/Connection.html:539(span) +#: doc/reference/en/ActiveLdap/Base.html:372(strong) +#: doc/reference/en/ActiveLdap/Base.html:2242(strong) +#: doc/reference/en/ActiveLdap/Base.html:2278(span) +msgid "establish_connection" msgstr "" -#: doc/reference/en/method_list.html:1580(a) -#: doc/reference/en/method_list.html:1588(a) +#: doc/reference/en/method_list.html:1546(a) +#: doc/reference/en/method_list.html:1554(a) msgid "#exist?" msgstr "" -#: doc/reference/en/method_list.html:1596(a) +#: doc/reference/en/method_list.html:1562(a) msgid "#exist_name?" msgstr "" -#: doc/reference/en/method_list.html:1604(a) -#: doc/reference/en/method_list.html:1612(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) +#: doc/reference/en/method_list.html:1570(a) +#: doc/reference/en/method_list.html:1578(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) msgid "#exists?" msgstr "" -#: doc/reference/en/method_list.html:1620(a) +#: doc/reference/en/method_list.html:1586(a) msgid "#extract_all_in_schema" msgstr "" -#: doc/reference/en/method_list.html:1622(small) -#: doc/reference/en/method_list.html:2222(small) -#: doc/reference/en/method_list.html:3214(small) -#: doc/reference/en/method_list.html:4006(small) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:74(li) +#: doc/reference/en/method_list.html:1588(small) +#: doc/reference/en/method_list.html:1996(small) +#: doc/reference/en/method_list.html:3140(small) +#: doc/reference/en/method_list.html:3948(small) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:81(li) msgid "ActiveLdap::GetText::Parser" msgstr "" -#: doc/reference/en/method_list.html:1628(a) -msgid "#extract_salt_at_pos" +#: doc/reference/en/method_list.html:1594(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:137(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:376(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:396(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:466(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:496(span) +msgid "extract_salt_at_pos" msgstr "" -#: doc/reference/en/method_list.html:1636(a) -msgid "#extract_salt_for_crypt" +#: doc/reference/en/method_list.html:1602(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:159(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:408(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:431(span) +msgid "extract_salt_for_crypt" msgstr "" -#: doc/reference/en/method_list.html:1644(a) -msgid "#extract_salt_for_smd5" +#: doc/reference/en/method_list.html:1610(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:181(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:446(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:465(span) +msgid "extract_salt_for_smd5" msgstr "" -#: doc/reference/en/method_list.html:1652(a) -msgid "#extract_salt_for_ssha" +#: doc/reference/en/method_list.html:1618(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:203(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:476(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:495(span) +msgid "extract_salt_for_ssha" msgstr "" -#: doc/reference/en/method_list.html:1660(a) +#: doc/reference/en/method_list.html:1626(a) msgid "#failed?" msgstr "" -#: doc/reference/en/method_list.html:1668(a) +#: doc/reference/en/method_list.html:1634(a) msgid "#fetch" msgstr "" -#: doc/reference/en/method_list.html:1676(a) +#: doc/reference/en/method_list.html:1642(a) msgid "#find" msgstr "" -#: doc/reference/en/method_list.html:1684(a) +#: doc/reference/en/method_list.html:1650(a) msgid "#first" msgstr "" -#: doc/reference/en/method_list.html:1692(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:160(a) +#: doc/reference/en/method_list.html:1658(a) msgid "#full_attribute_name" msgstr "" -#: doc/reference/en/method_list.html:1700(a) -msgid "#generate" +#: doc/reference/en/method_list.html:1666(a) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:119(strong) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:150(strong) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:171(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:365(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:594(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:634(span) +msgid "generate" msgstr "" -#: doc/reference/en/method_list.html:1702(small) +#: doc/reference/en/method_list.html:1668(small) msgid "ActiveLdap::UserPassword::Salt" msgstr "" -#: doc/reference/en/method_list.html:1708(a) -#: doc/reference/en/ActiveLdap.html:173(strong) -#: doc/reference/en/ActiveLdap.html:264(strong) -#: doc/reference/en/ActiveLdap.html:303(span) +#: doc/reference/en/method_list.html:1674(a) +#: doc/reference/en/ActiveLdap.html:172(strong) +#: doc/reference/en/ActiveLdap.html:266(strong) +#: doc/reference/en/ActiveLdap.html:307(span) msgid "get_text_supported?" msgstr "" -#: doc/reference/en/method_list.html:1716(a) +#: doc/reference/en/method_list.html:1682(a) +msgid "#gettext" +msgstr "" + +#: doc/reference/en/method_list.html:1690(a) msgid "#has_many" msgstr "" -#: doc/reference/en/method_list.html:1724(a) -#: doc/reference/en/method_list.html:1732(a) -#: doc/reference/en/method_list.html:1740(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:362(a) +#: doc/reference/en/method_list.html:1698(a) +#: doc/reference/en/method_list.html:1706(a) +#: doc/reference/en/method_list.html:1714(a) msgid "#hash" msgstr "" -#: doc/reference/en/method_list.html:1748(a) +#: doc/reference/en/method_list.html:1722(a) msgid "#have_attribute?" msgstr "" -#: doc/reference/en/method_list.html:1756(a) -#: doc/reference/en/method_list.html:1764(a) +#: doc/reference/en/method_list.html:1730(a) +#: doc/reference/en/method_list.html:1738(a) msgid "#human_attribute_description" msgstr "" -#: doc/reference/en/method_list.html:1766(small) -#: doc/reference/en/method_list.html:1774(small) -#: doc/reference/en/method_list.html:1790(small) -#: doc/reference/en/method_list.html:1798(small) -#: doc/reference/en/method_list.html:1814(small) -#: doc/reference/en/method_list.html:1822(small) -#: doc/reference/en/method_list.html:1830(small) -#: doc/reference/en/method_list.html:1838(small) -#: doc/reference/en/method_list.html:1854(small) -#: doc/reference/en/method_list.html:1862(small) -#: doc/reference/en/method_list.html:1870(small) -#: doc/reference/en/method_list.html:1878(small) -#: doc/reference/en/method_list.html:1886(small) +#: doc/reference/en/method_list.html:1732(small) +#: doc/reference/en/method_list.html:1748(small) +#: doc/reference/en/method_list.html:1764(small) +#: doc/reference/en/method_list.html:1772(small) +#: doc/reference/en/method_list.html:1788(small) +#: doc/reference/en/method_list.html:1796(small) +#: doc/reference/en/method_list.html:1804(small) +#: doc/reference/en/method_list.html:1812(small) +#: doc/reference/en/method_list.html:1828(small) +#: doc/reference/en/method_list.html:1836(small) +#: doc/reference/en/method_list.html:1844(small) +#: doc/reference/en/method_list.html:1852(small) +#: doc/reference/en/method_list.html:1860(small) msgid "ActiveLdap::HumanReadable::ClassMethods" msgstr "" -#: doc/reference/en/method_list.html:1772(a) +#: doc/reference/en/method_list.html:1746(a) msgid "#human_attribute_description_msgid" msgstr "" -#: doc/reference/en/method_list.html:1780(a) -#: doc/reference/en/method_list.html:1788(a) +#: doc/reference/en/method_list.html:1754(a) +#: doc/reference/en/method_list.html:1762(a) msgid "#human_attribute_name" msgstr "" -#: doc/reference/en/method_list.html:1796(a) +#: doc/reference/en/method_list.html:1770(a) msgid "#human_attribute_name_msgid" msgstr "" -#: doc/reference/en/method_list.html:1804(a) -#: doc/reference/en/ActiveLdap/Base.html:398(strong) -#: doc/reference/en/ActiveLdap/Base.html:2419(strong) -#: doc/reference/en/ActiveLdap/Base.html:2445(span) +#: doc/reference/en/method_list.html:1778(a) +#: doc/reference/en/ActiveLdap/Base.html:396(strong) +#: doc/reference/en/ActiveLdap/Base.html:2294(strong) +#: doc/reference/en/ActiveLdap/Base.html:2322(span) msgid "human_name" msgstr "" -#: doc/reference/en/method_list.html:1812(a) +#: doc/reference/en/method_list.html:1786(a) msgid "#human_object_class_description" msgstr "" -#: doc/reference/en/method_list.html:1820(a) +#: doc/reference/en/method_list.html:1794(a) msgid "#human_object_class_description_msgid" msgstr "" -#: doc/reference/en/method_list.html:1828(a) +#: doc/reference/en/method_list.html:1802(a) msgid "#human_object_class_name" msgstr "" -#: doc/reference/en/method_list.html:1836(a) +#: doc/reference/en/method_list.html:1810(a) msgid "#human_object_class_name_msgid" msgstr "" -#: doc/reference/en/method_list.html:1844(a) +#: doc/reference/en/method_list.html:1818(a) msgid "#human_readable?" msgstr "" -#: doc/reference/en/method_list.html:1852(a) +#: doc/reference/en/method_list.html:1826(a) msgid "#human_readable_format" msgstr "" -#: doc/reference/en/method_list.html:1860(a) +#: doc/reference/en/method_list.html:1834(a) msgid "#human_syntax_description" msgstr "" -#: doc/reference/en/method_list.html:1868(a) +#: doc/reference/en/method_list.html:1842(a) msgid "#human_syntax_description_msgid" msgstr "" -#: doc/reference/en/method_list.html:1876(a) +#: doc/reference/en/method_list.html:1850(a) msgid "#human_syntax_name" msgstr "" -#: doc/reference/en/method_list.html:1884(a) +#: doc/reference/en/method_list.html:1858(a) msgid "#human_syntax_name_msgid" msgstr "" -#: doc/reference/en/method_list.html:1892(a) -#: doc/reference/en/method_list.html:1900(a) +#: doc/reference/en/method_list.html:1866(a) +#: doc/reference/en/method_list.html:1874(a) msgid "#id" msgstr "" -#: doc/reference/en/method_list.html:1908(a) +#: doc/reference/en/method_list.html:1882(a) msgid "#ids" msgstr "" -#: doc/reference/en/method_list.html:1916(a) -#: doc/reference/en/method_list.html:1924(a) -#: doc/reference/en/method_list.html:1932(a) -#: doc/reference/en/method_list.html:1940(a) -#: doc/reference/en/method_list.html:1948(a) -#: doc/reference/en/method_list.html:1956(a) -#: doc/reference/en/method_list.html:1964(a) -#: doc/reference/en/method_list.html:1972(a) -#: doc/reference/en/method_list.html:1980(a) -#: doc/reference/en/method_list.html:1988(a) -#: doc/reference/en/ActiveLdap/LdapError.html:179(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:106(strong) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:283(strong) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:305(span) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:230(a) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:134(a) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:134(a) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:96(strong) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:240(strong) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:257(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:203(a) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:156(a) -#: doc/reference/en/ActiveLdap/Connection.html:106(strong) -#: doc/reference/en/ActiveLdap/Connection.html:313(strong) -#: doc/reference/en/ActiveLdap/Connection.html:330(span) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:149(a) -#: doc/reference/en/ActiveLdap/Schema.html:564(a) -#: doc/reference/en/ActiveLdap/DeleteError.html:149(a) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:324(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:526(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:100(strong) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:130(strong) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:154(span) -#: doc/reference/en/ActiveLdap/Attributes.html:106(strong) -#: doc/reference/en/ActiveLdap/Attributes.html:136(strong) -#: doc/reference/en/ActiveLdap/Attributes.html:157(span) -#: doc/reference/en/ActiveLdap/TimeoutError.html:149(a) -#: doc/reference/en/ActiveLdap/Base.html:1744(a) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:134(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:230(a) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:149(a) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:203(a) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:134(a) -#: doc/reference/en/ActiveLdap/NotImplemented.html:203(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:334(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:225(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:283(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:285(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:376(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:247(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:201(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:140(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:201(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:225(a) -#: doc/reference/en/ActiveLdap/SaveError.html:149(a) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:150(a) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:134(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:134(a) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:134(a) -#: doc/reference/en/ActiveLdap/ObjectClass.html:106(strong) -#: doc/reference/en/ActiveLdap/ObjectClass.html:252(strong) -#: doc/reference/en/ActiveLdap/ObjectClass.html:269(span) -#: doc/reference/en/ActiveLdap/Command.html:158(a) -#: doc/reference/en/ActiveLdap/ConnectionError.html:149(a) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:247(a) -#: doc/reference/en/ActiveLdap/Error.html:128(a) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:149(a) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:203(a) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:134(a) -#: doc/reference/en/ActiveLdap/HumanReadable.html:110(strong) -#: doc/reference/en/ActiveLdap/HumanReadable.html:140(strong) -#: doc/reference/en/ActiveLdap/HumanReadable.html:158(span) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:203(a) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:134(a) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:96(strong) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:126(strong) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:150(span) -#: doc/reference/en/ActiveLdap/Configuration.html:136(strong) -#: doc/reference/en/ActiveLdap/Configuration.html:166(strong) -#: doc/reference/en/ActiveLdap/Configuration.html:183(span) -#: doc/reference/en/ActiveLdap/Operations.html:106(strong) -#: doc/reference/en/ActiveLdap/Operations.html:136(strong) -#: doc/reference/en/ActiveLdap/Operations.html:166(span) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:339(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:676(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:356(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:366(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:521(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:531(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:194(a) +#: doc/reference/en/method_list.html:1890(a) +#: doc/reference/en/method_list.html:1898(a) +#: doc/reference/en/method_list.html:1906(a) +#: doc/reference/en/method_list.html:1914(a) +#: doc/reference/en/method_list.html:1922(a) +#: doc/reference/en/method_list.html:1930(a) +#: doc/reference/en/method_list.html:1938(a) +#: doc/reference/en/method_list.html:1946(a) +#: doc/reference/en/method_list.html:1954(a) +#: doc/reference/en/ActiveLdap/LdapError.html:174(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:115(strong) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:295(strong) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:319(span) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:229(a) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:129(a) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:129(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:200(a) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:158(a) +#: doc/reference/en/ActiveLdap/Connection.html:115(strong) +#: doc/reference/en/ActiveLdap/Connection.html:331(strong) +#: doc/reference/en/ActiveLdap/Connection.html:350(span) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:142(a) +#: doc/reference/en/ActiveLdap/Schema.html:572(a) +#: doc/reference/en/ActiveLdap/DeleteError.html:142(a) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:328(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:545(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:109(strong) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:140(strong) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:162(span) +#: doc/reference/en/ActiveLdap/Attributes.html:115(strong) +#: doc/reference/en/ActiveLdap/Attributes.html:146(strong) +#: doc/reference/en/ActiveLdap/Attributes.html:169(span) +#: doc/reference/en/ActiveLdap/TimeoutError.html:142(a) +#: doc/reference/en/ActiveLdap/Base.html:1693(a) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:129(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:229(a) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:142(a) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:200(a) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:129(a) +#: doc/reference/en/ActiveLdap/NotImplemented.html:200(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:319(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:210(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:293(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:281(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:373(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:248(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:192(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:137(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:192(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:210(a) +#: doc/reference/en/ActiveLdap/SaveError.html:142(a) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:143(a) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:129(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:129(a) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:129(a) +#: doc/reference/en/ActiveLdap/ObjectClass.html:115(strong) +#: doc/reference/en/ActiveLdap/ObjectClass.html:267(strong) +#: doc/reference/en/ActiveLdap/ObjectClass.html:286(span) +#: doc/reference/en/ActiveLdap/Command.html:163(a) +#: doc/reference/en/ActiveLdap/ConnectionError.html:142(a) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:219(a) +#: doc/reference/en/ActiveLdap/Error.html:129(a) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:142(a) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:200(a) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:129(a) +#: doc/reference/en/ActiveLdap/HumanReadable.html:115(strong) +#: doc/reference/en/ActiveLdap/HumanReadable.html:146(strong) +#: doc/reference/en/ActiveLdap/HumanReadable.html:166(span) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:200(a) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:129(a) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:105(strong) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:136(strong) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:162(span) +#: doc/reference/en/ActiveLdap/Configuration.html:142(strong) +#: doc/reference/en/ActiveLdap/Configuration.html:173(strong) +#: doc/reference/en/ActiveLdap/Configuration.html:192(span) +#: doc/reference/en/ActiveLdap/Operations.html:115(strong) +#: doc/reference/en/ActiveLdap/Operations.html:146(strong) +#: doc/reference/en/ActiveLdap/Operations.html:180(span) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:346(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:694(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:365(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:368(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:196(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:141(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:141(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:141(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:213(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:194(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:214(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:196(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:141(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:244(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:248(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:145(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:141(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:141(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:194(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:194(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:196(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:196(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:141(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:155(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:149(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:141(a) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:134(a) -#: doc/reference/en/ActiveLdap.html:203(a) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:129(a) +#: doc/reference/en/ActiveLdap.html:204(a) msgid "included" msgstr "" -#: doc/reference/en/method_list.html:1926(small) -#: doc/reference/en/class_list.html:42(small) -msgid "ActiveLdap::HumanReadable" +#: doc/reference/en/method_list.html:1900(small) +#: doc/reference/en/class_list.html:48(small) +msgid "ActiveLdap::Configuration" msgstr "" -#: doc/reference/en/method_list.html:1934(small) -#: doc/reference/en/class_list.html:42(small) -msgid "ActiveLdap::Operations" +#: doc/reference/en/method_list.html:1908(small) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:96(a) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:157(a) +msgid "ActiveLdap::GetTextSupport" msgstr "" -#: doc/reference/en/method_list.html:1950(small) +#: doc/reference/en/method_list.html:1916(small) msgid "ActiveLdap::ActionController::LdapBenchmarking" msgstr "" -#: doc/reference/en/method_list.html:1966(small) -#: doc/reference/en/class_list.html:42(small) -msgid "ActiveLdap::Attributes" +#: doc/reference/en/method_list.html:1924(small) +#: doc/reference/en/class_list.html:48(small) +msgid "ActiveLdap::Operations" msgstr "" -#: doc/reference/en/method_list.html:1982(small) -#: doc/reference/en/class_list.html:42(small) -msgid "ActiveLdap::Configuration" +#: doc/reference/en/method_list.html:1940(small) +#: doc/reference/en/class_list.html:48(small) +msgid "ActiveLdap::HumanReadable" msgstr "" -#: doc/reference/en/method_list.html:1990(small) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:89(a) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:155(a) -msgid "ActiveLdap::GetTextSupport" +#: doc/reference/en/method_list.html:1948(small) +#: doc/reference/en/class_list.html:48(small) +msgid "ActiveLdap::Attributes" msgstr "" -#: doc/reference/en/method_list.html:1996(a) -#: doc/reference/en/ActiveLdap/Base.html:419(strong) -#: doc/reference/en/ActiveLdap/Base.html:2466(strong) -#: doc/reference/en/ActiveLdap/Base.html:2486(span) +#: doc/reference/en/method_list.html:1962(a) +#: doc/reference/en/ActiveLdap/Base.html:418(strong) msgid "inherited" msgstr "" -#: doc/reference/en/method_list.html:2004(a) -#: doc/reference/en/method_list.html:2012(a) -#: doc/reference/en/method_list.html:2020(a) -#: doc/reference/en/method_list.html:2028(a) -#: doc/reference/en/method_list.html:2036(a) -#: doc/reference/en/method_list.html:2044(a) -#: doc/reference/en/method_list.html:2052(a) -#: doc/reference/en/method_list.html:2060(a) -#: doc/reference/en/method_list.html:2068(a) -#: doc/reference/en/method_list.html:2076(a) -#: doc/reference/en/method_list.html:2084(a) -#: doc/reference/en/method_list.html:2092(a) -#: doc/reference/en/method_list.html:2100(a) -#: doc/reference/en/method_list.html:2108(a) -#: doc/reference/en/method_list.html:2116(a) -#: doc/reference/en/method_list.html:2124(a) -#: doc/reference/en/method_list.html:2132(a) -#: doc/reference/en/method_list.html:2140(a) -#: doc/reference/en/method_list.html:2148(a) -#: doc/reference/en/method_list.html:2156(a) -#: doc/reference/en/method_list.html:2164(a) -#: doc/reference/en/method_list.html:2172(a) -#: doc/reference/en/method_list.html:2180(a) -#: doc/reference/en/method_list.html:2188(a) -#: doc/reference/en/method_list.html:2196(a) -#: doc/reference/en/method_list.html:2204(a) -#: doc/reference/en/method_list.html:2212(a) -#: doc/reference/en/method_list.html:2220(a) -#: doc/reference/en/method_list.html:2228(a) -#: doc/reference/en/method_list.html:2236(a) -#: doc/reference/en/method_list.html:2244(a) -#: doc/reference/en/method_list.html:2252(a) -#: doc/reference/en/method_list.html:2260(a) -#: doc/reference/en/method_list.html:2268(a) -#: doc/reference/en/method_list.html:2276(a) -#: doc/reference/en/method_list.html:2284(a) -#: doc/reference/en/method_list.html:2292(a) -#: doc/reference/en/method_list.html:2300(a) -#: doc/reference/en/method_list.html:2308(a) -#: doc/reference/en/method_list.html:2316(a) -#: doc/reference/en/method_list.html:2324(a) -#: doc/reference/en/method_list.html:2332(a) -#: doc/reference/en/method_list.html:2340(a) -#: doc/reference/en/method_list.html:2348(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:130(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:289(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:1970(a) +#: doc/reference/en/method_list.html:1978(a) +#: doc/reference/en/method_list.html:1986(a) +#: doc/reference/en/method_list.html:1994(a) +#: doc/reference/en/method_list.html:2002(a) +#: doc/reference/en/method_list.html:2010(a) +#: doc/reference/en/method_list.html:2018(a) +#: doc/reference/en/method_list.html:2026(a) +#: doc/reference/en/method_list.html:2034(a) +#: doc/reference/en/method_list.html:2042(a) +#: doc/reference/en/method_list.html:2050(a) +#: doc/reference/en/method_list.html:2058(a) +#: doc/reference/en/method_list.html:2066(a) +#: doc/reference/en/method_list.html:2074(a) +#: doc/reference/en/method_list.html:2082(a) +#: doc/reference/en/method_list.html:2090(a) +#: doc/reference/en/method_list.html:2098(a) +#: doc/reference/en/method_list.html:2106(a) +#: doc/reference/en/method_list.html:2114(a) +#: doc/reference/en/method_list.html:2122(a) +#: doc/reference/en/method_list.html:2130(a) +#: doc/reference/en/method_list.html:2138(a) +#: doc/reference/en/method_list.html:2146(a) +#: doc/reference/en/method_list.html:2154(a) +#: doc/reference/en/method_list.html:2162(a) +#: doc/reference/en/method_list.html:2170(a) +#: doc/reference/en/method_list.html:2178(a) +#: doc/reference/en/method_list.html:2186(a) +#: doc/reference/en/method_list.html:2194(a) +#: doc/reference/en/method_list.html:2202(a) +#: doc/reference/en/method_list.html:2210(a) +#: doc/reference/en/method_list.html:2218(a) +#: doc/reference/en/method_list.html:2226(a) +#: doc/reference/en/method_list.html:2234(a) +#: doc/reference/en/method_list.html:2242(a) +#: doc/reference/en/method_list.html:2250(a) +#: doc/reference/en/method_list.html:2258(a) +#: doc/reference/en/method_list.html:2266(a) +#: doc/reference/en/method_list.html:2274(a) +#: doc/reference/en/method_list.html:2282(a) +#: doc/reference/en/method_list.html:2290(a) +#: doc/reference/en/method_list.html:2298(a) +#: doc/reference/en/method_list.html:2306(a) +#: doc/reference/en/method_list.html:2314(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:126(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:297(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "#initialize" msgstr "" -#: doc/reference/en/method_list.html:2014(small) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:78(li) -msgid "ActiveLdap::Ldif::AddRecord" -msgstr "" - -#: doc/reference/en/method_list.html:2038(small) -#: doc/reference/en/method_list.html:4230(small) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:74(li) -msgid "ActiveLdap::Xml::Serializer" +#: doc/reference/en/method_list.html:2004(small) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:87(li) +msgid "ActiveLdap::Ldif::ModifyRDNRecord" msgstr "" -#: doc/reference/en/method_list.html:2070(small) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:80(li) +#: doc/reference/en/method_list.html:2028(small) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:87(li) msgid "ActiveLdap::Ldif::ModifyDNRecord" msgstr "" -#: doc/reference/en/method_list.html:2078(small) -#: doc/reference/en/method_list.html:2894(small) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:78(li) +#: doc/reference/en/method_list.html:2036(small) +#: doc/reference/en/method_list.html:2836(small) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:85(li) msgid "ActiveLdap::UnknownAttribute" msgstr "" -#: doc/reference/en/method_list.html:2110(small) -#: doc/reference/en/method_list.html:2358(small) -#: doc/reference/en/Net/LDAP/Entry.html:74(li) -msgid "Net::LDAP::Entry" +#: doc/reference/en/method_list.html:2052(small) +#: doc/reference/en/method_list.html:2612(small) +#: doc/reference/en/method_list.html:2628(small) +#: doc/reference/en/method_list.html:3068(small) +#: doc/reference/en/method_list.html:3444(small) +#: doc/reference/en/method_list.html:3500(small) +#: doc/reference/en/method_list.html:3516(small) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:83(li) +msgid "ActiveLdap::LogSubscriber" msgstr "" -#: doc/reference/en/method_list.html:2126(small) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:80(li) -msgid "ActiveLdap::Ldif::ModifyRDNRecord" +#: doc/reference/en/method_list.html:2068(small) +#: doc/reference/en/method_list.html:2508(small) +#: doc/reference/en/method_list.html:3164(small) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:81(li) +msgid "ActiveLdap::Ldif::Parser" msgstr "" -#: doc/reference/en/method_list.html:2134(small) -#: doc/reference/en/method_list.html:2646(small) -#: doc/reference/en/method_list.html:2662(small) -#: doc/reference/en/method_list.html:3118(small) -#: doc/reference/en/method_list.html:3478(small) -#: doc/reference/en/method_list.html:3574(small) -#: doc/reference/en/method_list.html:3582(small) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:76(li) -msgid "ActiveLdap::LogSubscriber" +#: doc/reference/en/method_list.html:2108(small) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:85(li) +msgid "ActiveLdap::Ldif::DeleteRecord" msgstr "" -#: doc/reference/en/method_list.html:2158(small) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:76(li) -msgid "ActiveLdap::Ldif::ModifyRecord::DeleteOperation" +#: doc/reference/en/method_list.html:2116(small) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:85(li) +msgid "ActiveLdap::Ldif::AddRecord" msgstr "" -#: doc/reference/en/method_list.html:2190(small) -#: doc/reference/en/method_list.html:2366(small) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:78(li) -msgid "ActiveLdap::DistinguishedNameInputInvalid" +#: doc/reference/en/method_list.html:2124(small) +#: doc/reference/en/method_list.html:3924(small) +#: doc/reference/en/ActiveLdap/NotImplemented.html:85(li) +msgid "ActiveLdap::NotImplemented" msgstr "" -#: doc/reference/en/method_list.html:2198(small) -#: doc/reference/en/method_list.html:3990(small) -#: doc/reference/en/ActiveLdap/NotImplemented.html:78(li) -msgid "ActiveLdap::NotImplemented" +#: doc/reference/en/method_list.html:2140(small) +#: doc/reference/en/method_list.html:2636(small) +#: doc/reference/en/method_list.html:2828(small) +#: doc/reference/en/method_list.html:3892(small) +#: doc/reference/en/method_list.html:3900(small) +msgid "ActiveLdap::Schema::ObjectClass" msgstr "" -#: doc/reference/en/method_list.html:2214(small) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:76(li) +#: doc/reference/en/method_list.html:2164(small) msgid "ActiveLdap::Ldif::ModifyRecord::AddOperation" msgstr "" -#: doc/reference/en/method_list.html:2246(small) -#: doc/reference/en/method_list.html:4198(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveLdap/Xml.html:74(li) -msgid "ActiveLdap::Xml" +#: doc/reference/en/method_list.html:2188(small) +msgid "ActiveLdap::Ldif::ModifyRecord::DeleteOperation" msgstr "" -#: doc/reference/en/method_list.html:2254(small) -#: doc/reference/en/method_list.html:2686(small) -#: doc/reference/en/method_list.html:2862(small) -#: doc/reference/en/method_list.html:3950(small) -#: doc/reference/en/method_list.html:3958(small) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:76(li) -msgid "ActiveLdap::Schema::ObjectClass" +#: doc/reference/en/method_list.html:2196(small) +#: doc/reference/en/method_list.html:2332(small) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:85(li) +msgid "ActiveLdap::DistinguishedNameInputInvalid" msgstr "" -#: doc/reference/en/method_list.html:2278(small) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:78(li) -msgid "ActiveLdap::Ldif::DeleteRecord" +#: doc/reference/en/method_list.html:2204(small) +msgid "ActiveLdap::Ldif::ModifyRecord::ReplaceOperation" msgstr "" -#: doc/reference/en/method_list.html:2326(small) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:76(li) -msgid "ActiveLdap::Ldif::ModifyRecord::ReplaceOperation" +#: doc/reference/en/method_list.html:2260(small) +#: doc/reference/en/method_list.html:4172(small) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/ActiveLdap/Xml.html:81(li) +msgid "ActiveLdap::Xml" msgstr "" -#: doc/reference/en/method_list.html:2342(small) -#: doc/reference/en/method_list.html:2542(small) -#: doc/reference/en/method_list.html:3182(small) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:74(li) -msgid "ActiveLdap::Ldif::Parser" +#: doc/reference/en/method_list.html:2316(small) +#: doc/reference/en/method_list.html:4156(small) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:81(li) +msgid "ActiveLdap::Xml::Serializer" msgstr "" -#: doc/reference/en/method_list.html:2356(a) +#: doc/reference/en/method_list.html:2322(a) msgid "#initialize_without_original_attribute_names" msgstr "" -#: doc/reference/en/method_list.html:2364(a) +#: doc/reference/en/method_list.html:2330(a) msgid "#input" msgstr "" -#: doc/reference/en/method_list.html:2372(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:464(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:452(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:243(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:738(span) -#: doc/reference/en/ActiveLdap/Base.html:440(strong) -#: doc/reference/en/ActiveLdap/Base.html:1275(strong) -#: doc/reference/en/ActiveLdap/Base.html:1866(span) -#: doc/reference/en/ActiveLdap/Base.html:2501(strong) -#: doc/reference/en/ActiveLdap/Base.html:2541(span) -#: doc/reference/en/ActiveLdap/Base.html:3017(span) -#: doc/reference/en/ActiveLdap/Base.html:4093(strong) -#: doc/reference/en/ActiveLdap/Base.html:4122(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:564(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:603(span) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:335(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1702(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:742(span) -#: doc/reference/en/LDAP/Mod.html:328(span) -msgid "inspect" +#: doc/reference/en/method_list.html:2338(a) +msgid "#inspect" msgstr "" -#: doc/reference/en/method_list.html:2380(a) -msgid "#inspect" +#: doc/reference/en/method_list.html:2346(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:482(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:467(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:241(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:770(span) +#: doc/reference/en/ActiveLdap/Base.html:440(strong) +#: doc/reference/en/ActiveLdap/Base.html:1321(strong) +#: doc/reference/en/ActiveLdap/Base.html:1814(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:592(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:632(span) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:271(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1740(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:760(span) +#: doc/reference/en/LDAP/Mod.html:344(span) +msgid "inspect" msgstr "" -#: doc/reference/en/method_list.html:2388(a) +#: doc/reference/en/method_list.html:2354(a) msgid "#instantiate_adapter" msgstr "" -#: doc/reference/en/method_list.html:2396(a) +#: doc/reference/en/method_list.html:2362(a) msgid "#instantiate_with_callbacks" msgstr "" -#: doc/reference/en/method_list.html:2398(small) -#: doc/reference/en/method_list.html:2710(small) +#: doc/reference/en/method_list.html:2364(small) +#: doc/reference/en/method_list.html:2676(small) msgid "ActiveLdap::Callbacks::ClassMethods" msgstr "" -#: doc/reference/en/method_list.html:2404(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:191(strong) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:804(strong) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:822(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:2370(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:187(strong) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:821(strong) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:841(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "jndi_connection" msgstr "" -#: doc/reference/en/method_list.html:2412(a) +#: doc/reference/en/method_list.html:2378(a) msgid "#last" msgstr "" -#: doc/reference/en/method_list.html:2420(a) +#: doc/reference/en/method_list.html:2386(a) msgid "#ldap_attribute_description_gettext" msgstr "" -#: doc/reference/en/method_list.html:2422(small) -#: doc/reference/en/method_list.html:2430(small) -#: doc/reference/en/method_list.html:2446(small) -#: doc/reference/en/method_list.html:2478(small) -#: doc/reference/en/method_list.html:2486(small) -#: doc/reference/en/method_list.html:2510(small) -#: doc/reference/en/method_list.html:2518(small) +#: doc/reference/en/method_list.html:2388(small) +#: doc/reference/en/method_list.html:2396(small) +#: doc/reference/en/method_list.html:2412(small) +#: doc/reference/en/method_list.html:2444(small) +#: doc/reference/en/method_list.html:2452(small) +#: doc/reference/en/method_list.html:2476(small) +#: doc/reference/en/method_list.html:2484(small) msgid "ActiveLdap::Helper" msgstr "" -#: doc/reference/en/method_list.html:2428(a) +#: doc/reference/en/method_list.html:2394(a) msgid "#ldap_attribute_name_gettext" msgstr "" -#: doc/reference/en/method_list.html:2436(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:212(strong) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:835(strong) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:853(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:2402(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:209(strong) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:853(strong) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:873(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "ldap_connection" msgstr "" -#: doc/reference/en/method_list.html:2444(a) +#: doc/reference/en/method_list.html:2410(a) msgid "#ldap_field" msgstr "" -#: doc/reference/en/method_list.html:2452(a) -msgid "#ldap_filter_escape" +#: doc/reference/en/method_list.html:2418(a) +#: doc/reference/en/ActiveLdap/Escape.html:105(strong) +#: doc/reference/en/ActiveLdap/Escape.html:158(strong) +#: doc/reference/en/ActiveLdap/Escape.html:177(span) +msgid "ldap_filter_escape" msgstr "" -#: doc/reference/en/method_list.html:2454(small) -#: doc/reference/en/method_list.html:2462(small) +#: doc/reference/en/method_list.html:2420(small) +#: doc/reference/en/method_list.html:2428(small) msgid "ActiveLdap::Escape" msgstr "" -#: doc/reference/en/method_list.html:2460(a) -msgid "#ldap_filter_unescape" +#: doc/reference/en/method_list.html:2426(a) +#: doc/reference/en/ActiveLdap/Escape.html:127(strong) +#: doc/reference/en/ActiveLdap/Escape.html:188(strong) +#: doc/reference/en/ActiveLdap/Escape.html:207(span) +msgid "ldap_filter_unescape" msgstr "" -#: doc/reference/en/method_list.html:2468(a) -#: doc/reference/en/ActiveLdap/Base.html:461(strong) -#: doc/reference/en/ActiveLdap/Base.html:2576(strong) -#: doc/reference/en/ActiveLdap/Base.html:2590(span) -#: doc/reference/en/ActiveLdap/Base.html:2627(span) -#: doc/reference/en/ActiveLdap/Populate.html:263(span) -#: doc/reference/en/ActiveLdap/Populate.html:314(span) -#: doc/reference/en/file.tutorial.html:126(span) -#: doc/reference/en/file.tutorial.html:162(h5) -#: doc/reference/en/file.tutorial.html:168(span) -#: doc/reference/en/file.tutorial.html:238(span) -#: doc/reference/en/file.tutorial.html:267(span) -#: doc/reference/en/file.tutorial.html:308(span) -#: doc/reference/en/file.tutorial.html:521(span) +#: doc/reference/en/method_list.html:2434(a) +#: doc/reference/en/ActiveLdap/Base.html:462(strong) +#: doc/reference/en/ActiveLdap/Populate.html:278(span) +#: doc/reference/en/ActiveLdap/Populate.html:330(span) +#: doc/reference/en/file.tutorial.html:169(h5) +#: doc/reference/en/file.tutorial.html:175(span) +#: doc/reference/en/file.tutorial.html:315(span) #: doc/reference/en/file.tutorial.html:528(span) -#: doc/reference/en/file.tutorial.html:732(span) -#: doc/reference/en/file.tutorial.html:741(span) -#: doc/reference/en/file.rails.html:110(span) -#: doc/reference/en/file.rails.html:118(span) -#: doc/reference/en/file.rails.html:136(span) -#: doc/reference/en/file.rails.html:144(span) -#: doc/reference/en/file.rails.html:163(span) +#: doc/reference/en/file.tutorial.html:535(span) +#: doc/reference/en/file.tutorial.html:739(span) +#: doc/reference/en/file.tutorial.html:748(span) +#: doc/reference/en/file.rails.html:117(span) +#: doc/reference/en/file.rails.html:125(span) +#: doc/reference/en/file.rails.html:143(span) +#: doc/reference/en/file.rails.html:151(span) +#: doc/reference/en/file.rails.html:170(span) msgid "ldap_mapping" msgstr "" -#: doc/reference/en/method_list.html:2476(a) +#: doc/reference/en/method_list.html:2442(a) msgid "#ldap_object_class_description_gettext" msgstr "" -#: doc/reference/en/method_list.html:2484(a) +#: doc/reference/en/method_list.html:2450(a) msgid "#ldap_object_class_name_gettext" msgstr "" -#: doc/reference/en/method_list.html:2492(a) +#: doc/reference/en/method_list.html:2458(a) msgid "#ldap_syntax" msgstr "" -#: doc/reference/en/method_list.html:2500(a) +#: doc/reference/en/method_list.html:2466(a) msgid "#ldap_syntax_attribute" msgstr "" -#: doc/reference/en/method_list.html:2508(a) +#: doc/reference/en/method_list.html:2474(a) msgid "#ldap_syntax_description_gettext" msgstr "" -#: doc/reference/en/method_list.html:2516(a) +#: doc/reference/en/method_list.html:2482(a) msgid "#ldap_syntax_name_gettext" msgstr "" -#: doc/reference/en/method_list.html:2524(a) +#: doc/reference/en/method_list.html:2490(a) msgid "#ldap_syntaxes" msgstr "" -#: doc/reference/en/method_list.html:2532(a) -#: doc/reference/en/method_list.html:2540(a) +#: doc/reference/en/method_list.html:2498(a) +#: doc/reference/en/method_list.html:2506(a) msgid "#ldif" msgstr "" -#: doc/reference/en/method_list.html:2548(a) +#: doc/reference/en/method_list.html:2514(a) msgid "#length" msgstr "" -#: doc/reference/en/method_list.html:2556(a) -#: doc/reference/en/method_list.html:2564(a) +#: doc/reference/en/method_list.html:2522(a) +#: doc/reference/en/method_list.html:2530(a) msgid "#line" msgstr "" -#: doc/reference/en/method_list.html:2572(a) -#: doc/reference/en/method_list.html:2580(a) -#: doc/reference/en/method_list.html:2588(a) -#: doc/reference/en/method_list.html:2596(a) -#: doc/reference/en/method_list.html:2604(a) -#: doc/reference/en/method_list.html:2612(a) +#: doc/reference/en/method_list.html:2538(a) +#: doc/reference/en/method_list.html:2546(a) +#: doc/reference/en/method_list.html:2554(a) +#: doc/reference/en/method_list.html:2562(a) +#: doc/reference/en/method_list.html:2570(a) +#: doc/reference/en/method_list.html:2578(a) msgid "#load" msgstr "" -#: doc/reference/en/method_list.html:2574(small) -msgid "ActiveLdap::Operations::LDIF::AddRecordLoadable" +#: doc/reference/en/method_list.html:2540(small) +#: doc/reference/en/class_list.html:48(small) +msgid "ActiveLdap::Operations::LDIF::ModifyRecordLoadable" msgstr "" -#: doc/reference/en/method_list.html:2582(small) -msgid "ActiveLdap::Operations::LDIF::DeleteRecordLoadable" +#: doc/reference/en/method_list.html:2548(small) +msgid "ActiveLdap::Operations::LDIF::AddRecordLoadable" msgstr "" -#: doc/reference/en/method_list.html:2590(small) +#: doc/reference/en/method_list.html:2556(small) msgid "ActiveLdap::Operations::LDIF::ContentRecordLoadable" msgstr "" -#: doc/reference/en/method_list.html:2598(small) -#: doc/reference/en/class_list.html:42(small) -msgid "ActiveLdap::Operations::LDIF::ModifyRecordLoadable" +#: doc/reference/en/method_list.html:2572(small) +msgid "ActiveLdap::Operations::LDIF::ModifyNameRecordLoadable" msgstr "" -#: doc/reference/en/method_list.html:2614(small) -msgid "ActiveLdap::Operations::LDIF::ModifyNameRecordLoadable" +#: doc/reference/en/method_list.html:2580(small) +msgid "ActiveLdap::Operations::LDIF::DeleteRecordLoadable" msgstr "" -#: doc/reference/en/method_list.html:2620(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:289(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) +#: doc/reference/en/method_list.html:2586(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:297(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) msgid "#loaded" msgstr "" -#: doc/reference/en/method_list.html:2628(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:289(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) +#: doc/reference/en/method_list.html:2594(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:297(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) msgid "#loaded?" msgstr "" -#: doc/reference/en/method_list.html:2636(a) -#: doc/reference/en/method_list.html:2644(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:2602(a) +#: doc/reference/en/method_list.html:2610(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "#log_info" msgstr "" -#: doc/reference/en/method_list.html:2652(a) +#: doc/reference/en/method_list.html:2618(a) msgid "#log_process_action" msgstr "" -#: doc/reference/en/method_list.html:2654(small) +#: doc/reference/en/method_list.html:2620(small) msgid "ActiveLdap::Railties::ControllerRuntime::ClassMethods" msgstr "" -#: doc/reference/en/method_list.html:2660(a) +#: doc/reference/en/method_list.html:2626(a) msgid "#logger" msgstr "" -#: doc/reference/en/method_list.html:2668(a) -#: doc/reference/en/method_list.html:2676(a) -#: doc/reference/en/method_list.html:2684(a) +#: doc/reference/en/method_list.html:2634(a) +#: doc/reference/en/method_list.html:2642(a) +#: doc/reference/en/method_list.html:2650(a) msgid "#may" msgstr "" -#: doc/reference/en/method_list.html:2692(a) -msgid "#md5" +#: doc/reference/en/method_list.html:2658(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:225(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:506(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:525(span) +msgid "md5" msgstr "" -#: doc/reference/en/method_list.html:2700(a) +#: doc/reference/en/method_list.html:2666(a) msgid "#merge_configuration" msgstr "" -#: doc/reference/en/method_list.html:2708(a) +#: doc/reference/en/method_list.html:2674(a) msgid "#method_added" msgstr "" -#: doc/reference/en/method_list.html:2716(a) -msgid "#method_missing" +#: doc/reference/en/method_list.html:2682(a) +msgid "#methods" msgstr "" -#: doc/reference/en/method_list.html:2724(a) -msgid "#methods" +#: doc/reference/en/method_list.html:2684(small) +#: doc/reference/en/class_list.html:48(small) +msgid "ActiveLdap::AttributeMethods" msgstr "" -#: doc/reference/en/method_list.html:2732(a) -#: doc/reference/en/method_list.html:2740(a) -#: doc/reference/en/method_list.html:2748(a) -#: doc/reference/en/method_list.html:2756(a) -#: doc/reference/en/method_list.html:2764(a) +#: doc/reference/en/method_list.html:2690(a) +#: doc/reference/en/method_list.html:2698(a) +#: doc/reference/en/method_list.html:2706(a) +#: doc/reference/en/method_list.html:2714(a) +#: doc/reference/en/method_list.html:2722(a) msgid "#modify" msgstr "" -#: doc/reference/en/method_list.html:2772(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:314(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:205(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:265(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:205(a) +#: doc/reference/en/method_list.html:2730(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:297(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:188(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:259(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:170(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:170(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:188(a) msgid "#modify?" msgstr "" -#: doc/reference/en/method_list.html:2780(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:314(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:205(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:265(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:205(a) +#: doc/reference/en/method_list.html:2738(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:297(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:188(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:259(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:170(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:170(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:188(a) msgid "#modify_dn?" msgstr "" -#: doc/reference/en/method_list.html:2788(a) +#: doc/reference/en/method_list.html:2746(a) msgid "#modify_entry" msgstr "" -#: doc/reference/en/method_list.html:2796(a) -#: doc/reference/en/method_list.html:2804(a) -#: doc/reference/en/method_list.html:2812(a) -#: doc/reference/en/method_list.html:2820(a) -#: doc/reference/en/method_list.html:2828(a) +#: doc/reference/en/method_list.html:2754(a) +#: doc/reference/en/method_list.html:2762(a) +#: doc/reference/en/method_list.html:2770(a) +#: doc/reference/en/method_list.html:2778(a) +#: doc/reference/en/method_list.html:2786(a) msgid "#modify_rdn" msgstr "" -#: doc/reference/en/method_list.html:2836(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:314(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:205(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:265(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:181(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:205(a) +#: doc/reference/en/method_list.html:2794(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:297(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:188(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:259(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:170(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:170(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:188(a) msgid "#modify_rdn?" msgstr "" -#: doc/reference/en/method_list.html:2844(a) +#: doc/reference/en/method_list.html:2802(a) msgid "#modify_rdn_entry" msgstr "" -#: doc/reference/en/method_list.html:2852(a) -#: doc/reference/en/method_list.html:2860(a) -#: doc/reference/en/method_list.html:2868(a) +#: doc/reference/en/method_list.html:2810(a) +#: doc/reference/en/method_list.html:2818(a) +#: doc/reference/en/method_list.html:2826(a) msgid "#must" msgstr "" -#: doc/reference/en/method_list.html:2876(a) -msgid "#n_" -msgstr "" - -#: doc/reference/en/method_list.html:2884(a) -#: doc/reference/en/method_list.html:2892(a) -#: doc/reference/en/method_list.html:2900(a) +#: doc/reference/en/method_list.html:2834(a) +#: doc/reference/en/method_list.html:2842(a) +#: doc/reference/en/method_list.html:2850(a) msgid "#name" msgstr "" -#: doc/reference/en/method_list.html:2908(a) -#: doc/reference/en/method_list.html:2916(a) +#: doc/reference/en/method_list.html:2858(a) +#: doc/reference/en/method_list.html:2866(a) msgid "#names" msgstr "" -#: doc/reference/en/method_list.html:2924(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:2874(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "#naming_contexts" msgstr "" -#: doc/reference/en/method_list.html:2932(a) +#: doc/reference/en/method_list.html:2882(a) msgid "#nearest" msgstr "" -#: doc/reference/en/method_list.html:2940(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:233(strong) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:866(strong) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:884(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:2890(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:231(strong) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:885(strong) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:905(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "net_ldap_connection" msgstr "" -#: doc/reference/en/method_list.html:2948(a) +#: doc/reference/en/method_list.html:2898(a) msgid "#new_entry?" msgstr "" -#: doc/reference/en/method_list.html:2956(a) +#: doc/reference/en/method_list.html:2906(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:117(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:117(a) msgid "#new_rdn" msgstr "" -#: doc/reference/en/method_list.html:2964(a) +#: doc/reference/en/method_list.html:2914(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:117(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:117(a) msgid "#new_superior" msgstr "" -#: doc/reference/en/method_list.html:2972(a) -#: doc/reference/en/method_list.html:2980(a) +#: doc/reference/en/method_list.html:2922(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:794(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:795(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:127(strong) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:189(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:204(strong) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:227(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:466(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:467(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:315(strong) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:699(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:701(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:703(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:717(strong) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:748(span) +msgid "normalize" +msgstr "" + +#: doc/reference/en/method_list.html:2930(a) msgid "#normalize" msgstr "" -#: doc/reference/en/method_list.html:2988(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:357(a) +#: doc/reference/en/method_list.html:2938(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:371(a) msgid "#normalize_attribute" msgstr "" -#: doc/reference/en/method_list.html:2990(small) -#: doc/reference/en/method_list.html:2998(small) -#: doc/reference/en/method_list.html:3006(small) -#: doc/reference/en/method_list.html:4398(small) -#: doc/reference/en/method_list.html:4406(small) -#: doc/reference/en/method_list.html:4414(small) +#: doc/reference/en/method_list.html:2940(small) +#: doc/reference/en/method_list.html:2948(small) +#: doc/reference/en/method_list.html:2956(small) +#: doc/reference/en/method_list.html:4340(small) +#: doc/reference/en/method_list.html:4348(small) +#: doc/reference/en/method_list.html:4356(small) msgid "ActiveLdap::Attributes::Normalizable" msgstr "" -#: doc/reference/en/method_list.html:2996(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:357(a) +#: doc/reference/en/method_list.html:2946(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:371(a) msgid "#normalize_attribute_name" msgstr "" -#: doc/reference/en/method_list.html:3004(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:357(a) +#: doc/reference/en/method_list.html:2954(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:371(a) msgid "#normalize_attribute_options" msgstr "" -#: doc/reference/en/method_list.html:3012(a) -#: doc/reference/en/method_list.html:3020(a) -#: doc/reference/en/method_list.html:3028(a) -#: doc/reference/en/method_list.html:3036(a) -#: doc/reference/en/method_list.html:3044(a) -#: doc/reference/en/method_list.html:3052(a) -#: doc/reference/en/method_list.html:3060(a) -#: doc/reference/en/method_list.html:3068(a) -#: doc/reference/en/method_list.html:3076(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:135(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:145(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:131(a) +#: doc/reference/en/method_list.html:2962(a) +#: doc/reference/en/method_list.html:2970(a) +#: doc/reference/en/method_list.html:2986(a) +#: doc/reference/en/method_list.html:2994(a) +#: doc/reference/en/method_list.html:3002(a) +#: doc/reference/en/method_list.html:3010(a) +#: doc/reference/en/method_list.html:3018(a) +#: doc/reference/en/method_list.html:3026(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:134(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:138(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:130(a) msgid "#normalize_value" msgstr "" -#: doc/reference/en/method_list.html:3022(small) -#: doc/reference/en/method_list.html:4302(small) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:76(li) -msgid "ActiveLdap::Schema::Syntaxes::Integer" +#: doc/reference/en/method_list.html:2978(a) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:299(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:230(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:161(strong) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:338(strong) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:370(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:373(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:376(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:131(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:206(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:229(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:149(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:224(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:252(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:131(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:206(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:229(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:150(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:258(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:277(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:390(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:131(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:206(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:229(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:131(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:206(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:232(span) +msgid "normalize_value" msgstr "" -#: doc/reference/en/method_list.html:3038(small) -#: doc/reference/en/method_list.html:4342(small) -#: doc/reference/en/method_list.html:4502(small) -#: doc/reference/en/method_list.html:4534(small) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:74(li) -msgid "ActiveLdap::Schema::Syntaxes::Base" +#: doc/reference/en/method_list.html:2988(small) +#: doc/reference/en/method_list.html:4244(small) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:83(li) +msgid "ActiveLdap::Schema::Syntaxes::BitString" msgstr "" -#: doc/reference/en/method_list.html:3054(small) -#: doc/reference/en/method_list.html:4310(small) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:76(li) -msgid "ActiveLdap::Schema::Syntaxes::Boolean" +#: doc/reference/en/method_list.html:2996(small) +#: doc/reference/en/method_list.html:4292(small) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:83(li) +msgid "ActiveLdap::Schema::Syntaxes::Integer" +msgstr "" + +#: doc/reference/en/method_list.html:3004(small) +#: doc/reference/en/method_list.html:4236(small) +#: doc/reference/en/method_list.html:4428(small) +#: doc/reference/en/method_list.html:4484(small) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:81(li) +msgid "ActiveLdap::Schema::Syntaxes::Base" msgstr "" -#: doc/reference/en/method_list.html:3062(small) -#: doc/reference/en/method_list.html:4350(small) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:76(li) +#: doc/reference/en/method_list.html:3012(small) +#: doc/reference/en/method_list.html:4268(small) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:83(li) msgid "ActiveLdap::Schema::Syntaxes::GeneralizedTime" msgstr "" -#: doc/reference/en/method_list.html:3070(small) -#: doc/reference/en/method_list.html:4318(small) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:76(li) +#: doc/reference/en/method_list.html:3020(small) +#: doc/reference/en/method_list.html:4260(small) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:83(li) msgid "ActiveLdap::Schema::Syntaxes::DistinguishedName" msgstr "" -#: doc/reference/en/method_list.html:3078(small) -#: doc/reference/en/method_list.html:4334(small) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:76(li) -msgid "ActiveLdap::Schema::Syntaxes::BitString" +#: doc/reference/en/method_list.html:3028(small) +#: doc/reference/en/method_list.html:4252(small) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:83(li) +msgid "ActiveLdap::Schema::Syntaxes::Boolean" msgstr "" -#: doc/reference/en/method_list.html:3084(a) +#: doc/reference/en/method_list.html:3034(a) msgid "#object_class" msgstr "" -#: doc/reference/en/method_list.html:3092(a) +#: doc/reference/en/method_list.html:3042(a) msgid "#object_class_attribute" msgstr "" -#: doc/reference/en/method_list.html:3100(a) -#: doc/reference/en/method_list.html:3108(a) +#: doc/reference/en/method_list.html:3050(a) +#: doc/reference/en/method_list.html:3058(a) msgid "#object_classes" msgstr "" -#: doc/reference/en/method_list.html:3116(a) +#: doc/reference/en/method_list.html:3066(a) msgid "#odd?" msgstr "" -#: doc/reference/en/method_list.html:3124(a) +#: doc/reference/en/method_list.html:3074(a) msgid "#operations" msgstr "" -#: doc/reference/en/method_list.html:3132(a) +#: doc/reference/en/method_list.html:3082(a) msgid "#options" msgstr "" -#: doc/reference/en/method_list.html:3140(a) +#: doc/reference/en/method_list.html:3090(a) msgid "#original_attribute_names" msgstr "" -#: doc/reference/en/method_list.html:3142(small) -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/Net/LDAP.html:74(li) -msgid "Net::LDAP" -msgstr "" - -#: doc/reference/en/method_list.html:3148(a) +#: doc/reference/en/method_list.html:3098(a) msgid "#original_to_s" msgstr "" -#: doc/reference/en/method_list.html:3156(a) -#: doc/reference/en/method_list.html:3164(a) +#: doc/reference/en/method_list.html:3106(a) +#: doc/reference/en/method_list.html:3114(a) msgid "#parent" msgstr "" -#: doc/reference/en/method_list.html:3172(a) +#: doc/reference/en/method_list.html:3122(a) msgid "#parent=" msgstr "" -#: doc/reference/en/method_list.html:3180(a) -#: doc/reference/en/method_list.html:3204(a) -#: doc/reference/en/method_list.html:3212(a) -msgid "#parse" -msgstr "" - -#: doc/reference/en/method_list.html:3188(a) -#: doc/reference/en/method_list.html:3196(a) -#: doc/reference/en/ActiveLdap/Ldif.html:188(strong) -#: doc/reference/en/ActiveLdap/Ldif.html:478(strong) -#: doc/reference/en/ActiveLdap/Ldif.html:495(span) -#: doc/reference/en/ActiveLdap/Ldif.html:496(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:169(strong) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:329(strong) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:358(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:359(span) -#: doc/reference/en/ActiveLdap/Persistence.html:677(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:185(strong) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:679(strong) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:696(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:697(span) -#: doc/reference/en/ActiveLdap/Base.html:2721(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:217(strong) +#: doc/reference/en/method_list.html:3130(a) +#: doc/reference/en/method_list.html:3154(a) +#: doc/reference/en/ActiveLdap/Ldif.html:199(strong) +#: doc/reference/en/ActiveLdap/Ldif.html:492(strong) +#: doc/reference/en/ActiveLdap/Ldif.html:511(span) +#: doc/reference/en/ActiveLdap/Ldif.html:512(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:172(strong) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:336(strong) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:367(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:368(span) +#: doc/reference/en/ActiveLdap/Persistence.html:772(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:190(strong) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:698(strong) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:717(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:718(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:216(strong) #: doc/reference/en/ActiveLdap/Ldif/Parser.html:355(strong) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:388(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:602(span) -#: doc/reference/en/ActiveLdap/Populate.html:204(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:217(strong) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:361(strong) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:406(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:264(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:263(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:390(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:626(span) +#: doc/reference/en/ActiveLdap/Populate.html:218(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:187(strong) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:332(strong) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:379(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:280(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:268(span) msgid "parse" msgstr "" -#: doc/reference/en/method_list.html:3220(a) -msgid "#parse_options" +#: doc/reference/en/method_list.html:3138(a) +#: doc/reference/en/method_list.html:3146(a) +#: doc/reference/en/method_list.html:3162(a) +msgid "#parse" +msgstr "" + +#: doc/reference/en/method_list.html:3170(a) +#: doc/reference/en/ActiveLdap/Command.html:109(strong) +#: doc/reference/en/ActiveLdap/Command.html:173(strong) +#: doc/reference/en/ActiveLdap/Command.html:219(span) +#: doc/reference/en/file.tutorial.html:555(span) +#: doc/reference/en/file.tutorial.html:605(span) +#: doc/reference/en/file.tutorial.html:652(span) +msgid "parse_options" msgstr "" -#: doc/reference/en/method_list.html:3222(small) -#: doc/reference/en/method_list.html:3310(small) +#: doc/reference/en/method_list.html:3172(small) +#: doc/reference/en/method_list.html:3252(small) msgid "ActiveLdap::Command" msgstr "" -#: doc/reference/en/method_list.html:3228(a) -#: doc/reference/en/ActiveLdap/Base.html:486(strong) -#: doc/reference/en/ActiveLdap/Base.html:2652(strong) +#: doc/reference/en/method_list.html:3178(a) +#: doc/reference/en/ActiveLdap/Base.html:487(strong) msgid "parsed_base" msgstr "" -#: doc/reference/en/method_list.html:3236(a) +#: doc/reference/en/method_list.html:3186(a) msgid "#persisted?" msgstr "" -#: doc/reference/en/method_list.html:3244(a) +#: doc/reference/en/method_list.html:3194(a) msgid "#position" msgstr "" -#: doc/reference/en/method_list.html:3252(a) -#: doc/reference/en/ActiveLdap/Base.html:510(strong) -#: doc/reference/en/ActiveLdap/Base.html:2633(span) -#: doc/reference/en/ActiveLdap/Base.html:2703(strong) -#: doc/reference/en/ActiveLdap/Base.html:2720(span) -#: doc/reference/en/ActiveLdap/Populate.html:209(span) -#: doc/reference/en/ActiveLdap/Populate.html:213(span) -#: doc/reference/en/ActiveLdap/Populate.html:257(span) -#: doc/reference/en/ActiveLdap/Populate.html:267(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:277(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:282(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:290(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:378(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:389(span) -#: doc/reference/en/ActiveLdap/Operations/Common.html:392(span) +#: doc/reference/en/method_list.html:3202(a) +#: doc/reference/en/ActiveLdap/Base.html:511(strong) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:188(span) +#: doc/reference/en/ActiveLdap/Populate.html:223(span) +#: doc/reference/en/ActiveLdap/Populate.html:227(span) +#: doc/reference/en/ActiveLdap/Populate.html:272(span) +#: doc/reference/en/ActiveLdap/Populate.html:282(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:291(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:296(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:304(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:399(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:411(span) +#: doc/reference/en/ActiveLdap/Operations/Common.html:414(span) msgid "prefix" msgstr "" -#: doc/reference/en/method_list.html:3260(a) -#: doc/reference/en/ActiveLdap/Base.html:531(strong) -#: doc/reference/en/ActiveLdap/Base.html:2732(strong) -#: doc/reference/en/ActiveLdap/Base.html:2751(span) +#: doc/reference/en/method_list.html:3210(a) +#: doc/reference/en/ActiveLdap/Base.html:533(strong) msgid "prefix=" msgstr "" -#: doc/reference/en/method_list.html:3268(a) +#: doc/reference/en/method_list.html:3218(a) msgid "#prepare_configuration" msgstr "" -#: doc/reference/en/method_list.html:3276(a) -msgid "#protected_attributes" -msgstr "" - -#: doc/reference/en/method_list.html:3284(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:289(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) +#: doc/reference/en/method_list.html:3226(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:297(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) msgid "#proxy_respond_to?" msgstr "" -#: doc/reference/en/method_list.html:3292(a) +#: doc/reference/en/method_list.html:3234(a) msgid "#rdns" msgstr "" -#: doc/reference/en/method_list.html:3300(a) +#: doc/reference/en/method_list.html:3242(a) msgid "#read_only?" msgstr "" -#: doc/reference/en/method_list.html:3308(a) -msgid "#read_password" +#: doc/reference/en/method_list.html:3250(a) +#: doc/reference/en/ActiveLdap/Command.html:131(strong) +#: doc/reference/en/ActiveLdap/Command.html:257(strong) +#: doc/reference/en/ActiveLdap/Command.html:281(span) +#: doc/reference/en/file.tutorial.html:567(span) +#: doc/reference/en/file.tutorial.html:617(span) +#: doc/reference/en/file.tutorial.html:664(span) +msgid "read_password" msgstr "" -#: doc/reference/en/method_list.html:3316(a) -#: doc/reference/en/method_list.html:3324(a) +#: doc/reference/en/method_list.html:3258(a) +#: doc/reference/en/method_list.html:3266(a) msgid "#reason" msgstr "" -#: doc/reference/en/method_list.html:3332(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:3274(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "#rebind" msgstr "" -#: doc/reference/en/method_list.html:3340(a) +#: doc/reference/en/method_list.html:3282(a) msgid "#records" msgstr "" -#: doc/reference/en/method_list.html:3348(a) +#: doc/reference/en/method_list.html:3290(a) msgid "#register" msgstr "" -#: doc/reference/en/method_list.html:3356(a) -#: doc/reference/en/method_list.html:3364(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:289(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) +#: doc/reference/en/method_list.html:3298(a) +#: doc/reference/en/method_list.html:3306(a) +#: doc/reference/en/method_list.html:3314(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:297(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) msgid "#reload" msgstr "" -#: doc/reference/en/method_list.html:3372(a) +#: doc/reference/en/method_list.html:3316(small) +#: doc/reference/en/method_list.html:3548(small) +#: doc/reference/en/method_list.html:3572(small) +msgid "ActiveLdap::AttributeMethods::Dirty" +msgstr "" + +#: doc/reference/en/method_list.html:3322(a) msgid "#remove_active_connections!" msgstr "" -#: doc/reference/en/method_list.html:3380(a) +#: doc/reference/en/method_list.html:3330(a) msgid "#remove_blank_value" msgstr "" -#: doc/reference/en/method_list.html:3388(a) +#: doc/reference/en/method_list.html:3338(a) msgid "#remove_class" msgstr "" -#: doc/reference/en/method_list.html:3396(a) +#: doc/reference/en/method_list.html:3346(a) msgid "#remove_configuration_by_configuration" msgstr "" -#: doc/reference/en/method_list.html:3404(a) -#: doc/reference/en/method_list.html:3412(a) +#: doc/reference/en/method_list.html:3354(a) +#: doc/reference/en/method_list.html:3362(a) msgid "#remove_connection" msgstr "" -#: doc/reference/en/method_list.html:3420(a) +#: doc/reference/en/method_list.html:3370(a) msgid "#remove_connection_related_configuration" msgstr "" -#: doc/reference/en/method_list.html:3428(a) -#: doc/reference/en/method_list.html:3436(a) +#: doc/reference/en/method_list.html:3378(a) +#: doc/reference/en/method_list.html:3386(a) msgid "#replace" msgstr "" -#: doc/reference/en/method_list.html:3438(small) -#: doc/reference/en/method_list.html:4478(small) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:76(li) +#: doc/reference/en/method_list.html:3388(small) +#: doc/reference/en/method_list.html:4420(small) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:83(li) msgid "ActiveLdap::Association::BelongsTo" msgstr "" -#: doc/reference/en/method_list.html:3444(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:160(a) +#: doc/reference/en/method_list.html:3394(a) msgid "#replace?" msgstr "" -#: doc/reference/en/method_list.html:3452(a) +#: doc/reference/en/method_list.html:3402(a) msgid "#replace_class" msgstr "" -#: doc/reference/en/method_list.html:3460(a) -#: doc/reference/en/method_list.html:3468(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) +#: doc/reference/en/method_list.html:3410(a) +#: doc/reference/en/method_list.html:3418(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) msgid "#reset" msgstr "" -#: doc/reference/en/method_list.html:3476(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:115(strong) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:333(strong) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:351(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:370(strong) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1022(strong) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1041(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1043(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:583(strong) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1537(strong) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1555(span) -msgid "reset_runtime" +#: doc/reference/en/method_list.html:3426(a) +#: doc/reference/en/method_list.html:3434(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) +msgid "#reset_runtime" msgstr "" -#: doc/reference/en/method_list.html:3484(a) -#: doc/reference/en/method_list.html:3492(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) -msgid "#reset_runtime" +#: doc/reference/en/method_list.html:3442(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:122(strong) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:346(strong) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:366(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:388(strong) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1056(strong) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1078(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1081(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:596(strong) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1571(strong) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1591(span) +msgid "reset_runtime" msgstr "" -#: doc/reference/en/method_list.html:3500(a) +#: doc/reference/en/method_list.html:3450(a) msgid "#resolve_name" msgstr "" -#: doc/reference/en/method_list.html:3508(a) -#: doc/reference/en/method_list.html:3516(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:289(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) +#: doc/reference/en/method_list.html:3458(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:297(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) msgid "#respond_to?" msgstr "" -#: doc/reference/en/method_list.html:3524(a) -msgid "#respond_to_without_attributes?" -msgstr "" - -#: doc/reference/en/method_list.html:3532(a) -#: doc/reference/en/method_list.html:3540(a) +#: doc/reference/en/method_list.html:3466(a) +#: doc/reference/en/method_list.html:3474(a) msgid "#retrieve_connection" msgstr "" -#: doc/reference/en/method_list.html:3548(a) -#: doc/reference/en/method_list.html:3556(a) +#: doc/reference/en/method_list.html:3482(a) +#: doc/reference/en/method_list.html:3490(a) msgid "#root" msgstr "" -#: doc/reference/en/method_list.html:3550(small) +#: doc/reference/en/method_list.html:3484(small) msgid "ActiveLdap::Acts::Tree::ClassMethods" msgstr "" -#: doc/reference/en/method_list.html:3564(a) -msgid "#runtime" +#: doc/reference/en/method_list.html:3498(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:144(strong) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:367(span) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:378(strong) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:397(span) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:477(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:145(strong) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:773(strong) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:803(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1592(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1593(span) +msgid "runtime" msgstr "" -#: doc/reference/en/method_list.html:3572(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:136(strong) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:352(span) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:364(strong) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:381(span) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:410(span) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:459(span) +#: doc/reference/en/method_list.html:3506(a) #: doc/reference/en/ActiveLdap/Adapter/Jndi.html:135(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:148(strong) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:756(strong) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:785(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1556(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1557(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:131(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:141(a) -msgid "runtime" +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:132(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:135(a) +msgid "#runtime" msgstr "" -#: doc/reference/en/method_list.html:3580(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:157(strong) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:393(strong) +#: doc/reference/en/method_list.html:3514(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:166(strong) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:408(strong) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:427(span) msgid "runtime=" msgstr "" -#: doc/reference/en/method_list.html:3588(a) -msgid "#s_" -msgstr "" - -#: doc/reference/en/method_list.html:3596(a) +#: doc/reference/en/method_list.html:3522(a) msgid "#sasl_bind" msgstr "" -#: doc/reference/en/method_list.html:3604(a) -#: doc/reference/en/method_list.html:3612(a) -#: doc/reference/en/file.tutorial.html:384(h4) +#: doc/reference/en/method_list.html:3530(a) +#: doc/reference/en/method_list.html:3538(a) +#: doc/reference/en/method_list.html:3546(a) +#: doc/reference/en/file.tutorial.html:391(h4) msgid "#save" msgstr "" -#: doc/reference/en/method_list.html:3614(small) -#: doc/reference/en/method_list.html:3622(small) -#: doc/reference/en/method_list.html:4510(small) -#: doc/reference/en/method_list.html:4558(small) -#: doc/reference/en/method_list.html:4566(small) +#: doc/reference/en/method_list.html:3532(small) +#: doc/reference/en/method_list.html:3556(small) +#: doc/reference/en/method_list.html:4444(small) +#: doc/reference/en/method_list.html:4500(small) +#: doc/reference/en/method_list.html:4508(small) msgid "ActiveLdap::Validations" msgstr "" -#: doc/reference/en/method_list.html:3620(a) -#: doc/reference/en/method_list.html:3628(a) +#: doc/reference/en/method_list.html:3554(a) +#: doc/reference/en/method_list.html:3562(a) +#: doc/reference/en/method_list.html:3570(a) msgid "#save!" msgstr "" -#: doc/reference/en/method_list.html:3636(a) +#: doc/reference/en/method_list.html:3578(a) msgid "#scan" msgstr "" -#: doc/reference/en/method_list.html:3644(a) +#: doc/reference/en/method_list.html:3586(a) msgid "#scan_separator" msgstr "" -#: doc/reference/en/method_list.html:3652(a) +#: doc/reference/en/method_list.html:3594(a) msgid "#scan_separators" msgstr "" -#: doc/reference/en/method_list.html:3660(a) -#: doc/reference/en/method_list.html:3668(a) -#: doc/reference/en/method_list.html:3676(a) -#: doc/reference/en/method_list.html:3684(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:329(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:346(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/method_list.html:3602(a) +#: doc/reference/en/method_list.html:3610(a) +#: doc/reference/en/method_list.html:3618(a) +#: doc/reference/en/method_list.html:3626(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:335(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:354(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:357(a) msgid "#schema" msgstr "" -#: doc/reference/en/method_list.html:3692(a) +#: doc/reference/en/method_list.html:3634(a) msgid "#schemata" msgstr "" -#: doc/reference/en/method_list.html:3700(a) +#: doc/reference/en/method_list.html:3642(a) msgid "#scope" msgstr "" -#: doc/reference/en/method_list.html:3708(a) +#: doc/reference/en/method_list.html:3650(a) msgid "#scope=" msgstr "" -#: doc/reference/en/method_list.html:3716(a) -#: doc/reference/en/ActiveLdap/Base.html:552(strong) -#: doc/reference/en/ActiveLdap/Base.html:1491(strong) -#: doc/reference/en/ActiveLdap/Base.html:2765(strong) -#: doc/reference/en/ActiveLdap/Base.html:2783(span) -#: doc/reference/en/ActiveLdap/Base.html:4452(strong) -#: doc/reference/en/ActiveLdap/Base.html:4470(span) +#: doc/reference/en/method_list.html:3658(a) +#: doc/reference/en/ActiveLdap/Base.html:555(strong) +#: doc/reference/en/ActiveLdap/Base.html:1431(strong) msgid "scope=" msgstr "" -#: doc/reference/en/method_list.html:3724(a) +#: doc/reference/en/method_list.html:3666(a) msgid "#scope_of_class" msgstr "" -#: doc/reference/en/method_list.html:3732(a) -#: doc/reference/en/ActiveLdap/Base.html:573(strong) -#: doc/reference/en/ActiveLdap/Base.html:2796(strong) +#: doc/reference/en/method_list.html:3674(a) +#: doc/reference/en/ActiveLdap/Base.html:577(strong) msgid "scope_without_validation=" msgstr "" -#: doc/reference/en/method_list.html:3740(a) -#: doc/reference/en/method_list.html:3748(a) -#: doc/reference/en/method_list.html:3756(a) -#: doc/reference/en/method_list.html:3764(a) -#: doc/reference/en/method_list.html:3772(a) -#: doc/reference/en/method_list.html:3780(a) +#: doc/reference/en/method_list.html:3682(a) +#: doc/reference/en/method_list.html:3690(a) +#: doc/reference/en/method_list.html:3698(a) +#: doc/reference/en/method_list.html:3706(a) +#: doc/reference/en/method_list.html:3714(a) +#: doc/reference/en/method_list.html:3722(a) msgid "#search" msgstr "" -#: doc/reference/en/method_list.html:3788(a) +#: doc/reference/en/method_list.html:3730(a) msgid "#search_with_limit" msgstr "" -#: doc/reference/en/method_list.html:3796(a) -#: doc/reference/en/ActiveLdap/Base.html:594(strong) -#: doc/reference/en/ActiveLdap/Base.html:2446(span) -#: doc/reference/en/ActiveLdap/Base.html:2821(strong) -#: doc/reference/en/ActiveLdap/Base.html:2845(span) +#: doc/reference/en/method_list.html:3738(a) +#: doc/reference/en/ActiveLdap/Base.html:599(strong) +#: doc/reference/en/ActiveLdap/Base.html:2323(span) msgid "self_and_descendants_from_active_ldap" msgstr "" -#: doc/reference/en/method_list.html:3804(a) +#: doc/reference/en/method_list.html:3746(a) msgid "#self_and_siblings" msgstr "" -#: doc/reference/en/method_list.html:3812(a) +#: doc/reference/en/method_list.html:3754(a) msgid "#set_associated_class" msgstr "" -#: doc/reference/en/method_list.html:3820(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:436(strong) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:805(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:874(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1169(strong) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1192(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:260(span) -#: doc/reference/en/ActiveLdap/Connection.html:283(strong) -#: doc/reference/en/ActiveLdap/Connection.html:481(span) -#: doc/reference/en/ActiveLdap/Connection.html:521(span) -#: doc/reference/en/ActiveLdap/Connection.html:637(strong) -#: doc/reference/en/ActiveLdap/Connection.html:659(span) -#: doc/reference/en/ActiveLdap/Base.html:615(strong) -#: doc/reference/en/ActiveLdap/Base.html:2408(span) -#: doc/reference/en/ActiveLdap/Base.html:2864(strong) -#: doc/reference/en/ActiveLdap/Base.html:2957(span) -#: doc/reference/en/ActiveLdap/Base.html:3482(span) -#: doc/reference/en/file.tutorial.html:121(span) -#: doc/reference/en/file.tutorial.html:403(h5) -#: doc/reference/en/file.tutorial.html:414(span) -#: doc/reference/en/file.tutorial.html:563(span) -#: doc/reference/en/file.tutorial.html:613(span) -#: doc/reference/en/file.tutorial.html:660(span) -#: doc/reference/en/file.tutorial.html:782(span) -#: doc/reference/en/file.tutorial.html:786(span) -msgid "setup_connection" +#: doc/reference/en/method_list.html:3762(a) +#: doc/reference/en/method_list.html:3770(a) +msgid "#setup_connection" msgstr "" -#: doc/reference/en/method_list.html:3828(a) -#: doc/reference/en/method_list.html:3836(a) -msgid "#setup_connection" +#: doc/reference/en/method_list.html:3778(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:456(strong) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:835(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:906(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1207(strong) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1232(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:267(span) +#: doc/reference/en/ActiveLdap/Connection.html:300(strong) +#: doc/reference/en/ActiveLdap/Connection.html:504(span) +#: doc/reference/en/ActiveLdap/Connection.html:545(span) +#: doc/reference/en/ActiveLdap/Connection.html:663(strong) +#: doc/reference/en/ActiveLdap/Connection.html:687(span) +#: doc/reference/en/ActiveLdap/Base.html:621(strong) +#: doc/reference/en/ActiveLdap/Base.html:2284(span) +#: doc/reference/en/file.tutorial.html:410(h5) +#: doc/reference/en/file.tutorial.html:421(span) +#: doc/reference/en/file.tutorial.html:570(span) +#: doc/reference/en/file.tutorial.html:620(span) +#: doc/reference/en/file.tutorial.html:667(span) +msgid "setup_connection" msgstr "" -#: doc/reference/en/method_list.html:3844(a) -msgid "#sha" +#: doc/reference/en/method_list.html:3786(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:247(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:536(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:555(span) +msgid "sha" msgstr "" -#: doc/reference/en/method_list.html:3852(a) +#: doc/reference/en/method_list.html:3794(a) msgid "#siblings" msgstr "" -#: doc/reference/en/method_list.html:3860(a) +#: doc/reference/en/method_list.html:3802(a) msgid "#simple_bind" msgstr "" -#: doc/reference/en/method_list.html:3868(a) +#: doc/reference/en/method_list.html:3810(a) msgid "#single_threaded_active_connections" msgstr "" -#: doc/reference/en/method_list.html:3876(a) +#: doc/reference/en/method_list.html:3818(a) msgid "#single_value?" msgstr "" -#: doc/reference/en/method_list.html:3884(a) -msgid "#smd5" +#: doc/reference/en/method_list.html:3826(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:269(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:566(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:590(span) +msgid "smd5" msgstr "" -#: doc/reference/en/method_list.html:3892(a) -msgid "#ssha" +#: doc/reference/en/method_list.html:3834(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:291(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:606(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:630(span) +msgid "ssha" msgstr "" -#: doc/reference/en/method_list.html:3900(a) -#: doc/reference/en/method_list.html:3908(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:150(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:171(a) +#: doc/reference/en/method_list.html:3842(a) +#: doc/reference/en/method_list.html:3850(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:154(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:176(a) msgid "#ssl?" msgstr "" -#: doc/reference/en/method_list.html:3910(small) -#: doc/reference/en/method_list.html:3918(small) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:74(li) +#: doc/reference/en/method_list.html:3844(small) +#: doc/reference/en/method_list.html:3860(small) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:81(li) msgid "ActiveLdap::Adapter::Ldap::Method::Base" msgstr "" -#: doc/reference/en/method_list.html:3916(a) -#: doc/reference/en/method_list.html:3924(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:150(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:171(a) +#: doc/reference/en/method_list.html:3858(a) +#: doc/reference/en/method_list.html:3866(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:154(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:176(a) msgid "#start_tls?" msgstr "" -#: doc/reference/en/method_list.html:3932(a) +#: doc/reference/en/method_list.html:3874(a) msgid "#string_to_lines" msgstr "" -#: doc/reference/en/method_list.html:3940(a) +#: doc/reference/en/method_list.html:3882(a) msgid "#super_attribute" msgstr "" -#: doc/reference/en/method_list.html:3948(a) +#: doc/reference/en/method_list.html:3890(a) msgid "#super_class?" msgstr "" -#: doc/reference/en/method_list.html:3956(a) +#: doc/reference/en/method_list.html:3898(a) msgid "#super_classes" msgstr "" -#: doc/reference/en/method_list.html:3964(a) +#: doc/reference/en/method_list.html:3906(a) msgid "#syntax" msgstr "" -#: doc/reference/en/method_list.html:3972(a) +#: doc/reference/en/method_list.html:3914(a) msgid "#syntax_description" msgstr "" -#: doc/reference/en/method_list.html:3980(a) -#: doc/reference/en/method_list.html:3988(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:289(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) +#: doc/reference/en/method_list.html:3922(a) +#: doc/reference/en/method_list.html:3930(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:297(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) msgid "#target" msgstr "" -#: doc/reference/en/method_list.html:3996(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:289(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:171(a) +#: doc/reference/en/method_list.html:3938(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:297(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:176(a) msgid "#target=" msgstr "" -#: doc/reference/en/method_list.html:4004(a) +#: doc/reference/en/method_list.html:3946(a) msgid "#target?" msgstr "" -#: doc/reference/en/method_list.html:4012(a) +#: doc/reference/en/method_list.html:3954(a) msgid "#thread_safe_active_connections" msgstr "" -#: doc/reference/en/method_list.html:4020(a) +#: doc/reference/en/method_list.html:3962(a) msgid "#to_a" msgstr "" -#: doc/reference/en/method_list.html:4028(a) +#: doc/reference/en/method_list.html:3970(a) msgid "#to_ary" msgstr "" -#: doc/reference/en/method_list.html:4036(a) -#: doc/reference/en/method_list.html:4044(a) -#: doc/reference/en/method_list.html:4052(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:324(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:215(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:275(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:366(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:191(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:130(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:191(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:215(a) +#: doc/reference/en/method_list.html:3978(a) +#: doc/reference/en/method_list.html:3986(a) +#: doc/reference/en/method_list.html:3994(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:308(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:199(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:270(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:362(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:181(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:126(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:181(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:199(a) msgid "#to_hash" msgstr "" -#: doc/reference/en/method_list.html:4060(a) +#: doc/reference/en/method_list.html:4002(a) msgid "#to_human_readable_format" msgstr "" -#: doc/reference/en/method_list.html:4068(a) +#: doc/reference/en/method_list.html:4010(a) msgid "#to_java_attribute" msgstr "" -#: doc/reference/en/method_list.html:4076(a) +#: doc/reference/en/method_list.html:4018(a) msgid "#to_java_modification_item" msgstr "" -#: doc/reference/en/method_list.html:4084(a) +#: doc/reference/en/method_list.html:4026(a) msgid "#to_key" msgstr "" -#: doc/reference/en/method_list.html:4092(a) -#: doc/reference/en/method_list.html:4100(a) +#: doc/reference/en/method_list.html:4034(a) +#: doc/reference/en/method_list.html:4042(a) msgid "#to_ldif" msgstr "" -#: doc/reference/en/method_list.html:4108(a) -#: doc/reference/en/method_list.html:4116(a) +#: doc/reference/en/method_list.html:4050(a) +#: doc/reference/en/method_list.html:4058(a) msgid "#to_ldif_record" msgstr "" -#: doc/reference/en/method_list.html:4124(a) -#: doc/reference/en/method_list.html:4132(a) -#: doc/reference/en/method_list.html:4140(a) +#: doc/reference/en/method_list.html:4066(a) +#: doc/reference/en/method_list.html:4074(a) +#: doc/reference/en/method_list.html:4082(a) msgid "#to_modify_entries" msgstr "" -#: doc/reference/en/method_list.html:4126(small) +#: doc/reference/en/method_list.html:4068(small) msgid "" "ActiveLdap::Operations::LDIF::ModifyRecordLoadable::" "ReplaceOperationModifiable" msgstr "" -#: doc/reference/en/method_list.html:4134(small) +#: doc/reference/en/method_list.html:4076(small) msgid "" -"ActiveLdap::Operations::LDIF::ModifyRecordLoadable::DeleteOperationModifiable" +"ActiveLdap::Operations::LDIF::ModifyRecordLoadable::AddOperationModifiable" msgstr "" -#: doc/reference/en/method_list.html:4142(small) +#: doc/reference/en/method_list.html:4084(small) msgid "" -"ActiveLdap::Operations::LDIF::ModifyRecordLoadable::AddOperationModifiable" +"ActiveLdap::Operations::LDIF::ModifyRecordLoadable::DeleteOperationModifiable" msgstr "" -#: doc/reference/en/method_list.html:4148(a) -#: doc/reference/en/method_list.html:4156(a) -#: doc/reference/en/method_list.html:4164(a) +#: doc/reference/en/method_list.html:4090(a) +#: doc/reference/en/method_list.html:4098(a) +#: doc/reference/en/method_list.html:4106(a) msgid "#to_param" msgstr "" -#: doc/reference/en/method_list.html:4172(a) -#: doc/reference/en/method_list.html:4180(a) -#: doc/reference/en/method_list.html:4188(a) -#: doc/reference/en/method_list.html:4196(a) -#: doc/reference/en/method_list.html:4204(a) -#: doc/reference/en/method_list.html:4212(a) -#: doc/reference/en/method_list.html:4220(a) -#: doc/reference/en/method_list.html:4228(a) -#: doc/reference/en/method_list.html:4236(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:324(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:215(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:275(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:366(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:160(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:191(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:130(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:191(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:215(a) +#: doc/reference/en/method_list.html:4114(a) +#: doc/reference/en/method_list.html:4122(a) +#: doc/reference/en/method_list.html:4130(a) +#: doc/reference/en/method_list.html:4138(a) +#: doc/reference/en/method_list.html:4146(a) +#: doc/reference/en/method_list.html:4154(a) +#: doc/reference/en/method_list.html:4162(a) +#: doc/reference/en/method_list.html:4170(a) +#: doc/reference/en/method_list.html:4178(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:308(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:199(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:270(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:362(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:181(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:126(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:181(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:199(a) msgid "#to_s" msgstr "" -#: doc/reference/en/method_list.html:4244(a) +#: doc/reference/en/method_list.html:4186(a) msgid "#to_str" msgstr "" -#: doc/reference/en/method_list.html:4252(a) +#: doc/reference/en/method_list.html:4194(a) msgid "#to_xml" msgstr "" -#: doc/reference/en/method_list.html:4260(a) +#: doc/reference/en/method_list.html:4202(a) msgid "#touch" msgstr "" -#: doc/reference/en/method_list.html:4268(a) -#: doc/reference/en/method_list.html:4276(a) -#: doc/reference/en/method_list.html:4284(a) +#: doc/reference/en/method_list.html:4210(a) +#: doc/reference/en/method_list.html:4218(a) +#: doc/reference/en/method_list.html:4226(a) msgid "#type" msgstr "" -#: doc/reference/en/method_list.html:4292(a) -#: doc/reference/en/method_list.html:4300(a) -#: doc/reference/en/method_list.html:4308(a) -#: doc/reference/en/method_list.html:4316(a) -#: doc/reference/en/method_list.html:4324(a) -#: doc/reference/en/method_list.html:4332(a) -#: doc/reference/en/method_list.html:4340(a) -#: doc/reference/en/method_list.html:4348(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:135(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:145(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:131(a) +#: doc/reference/en/method_list.html:4234(a) +#: doc/reference/en/method_list.html:4242(a) +#: doc/reference/en/method_list.html:4250(a) +#: doc/reference/en/method_list.html:4258(a) +#: doc/reference/en/method_list.html:4266(a) +#: doc/reference/en/method_list.html:4274(a) +#: doc/reference/en/method_list.html:4282(a) +#: doc/reference/en/method_list.html:4290(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:134(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:138(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:130(a) msgid "#type_cast" msgstr "" -#: doc/reference/en/method_list.html:4356(a) -#: doc/reference/en/method_list.html:4364(a) -#: doc/reference/en/method_list.html:4372(a) -#: doc/reference/en/method_list.html:4380(a) -#: doc/reference/en/method_list.html:4388(a) +#: doc/reference/en/method_list.html:4298(a) +#: doc/reference/en/method_list.html:4306(a) +#: doc/reference/en/method_list.html:4314(a) +#: doc/reference/en/method_list.html:4322(a) +#: doc/reference/en/method_list.html:4330(a) msgid "#unbind" msgstr "" -#: doc/reference/en/method_list.html:4396(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:357(a) +#: doc/reference/en/method_list.html:4338(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:371(a) msgid "#unnormalize_attribute" msgstr "" -#: doc/reference/en/method_list.html:4404(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:357(a) +#: doc/reference/en/method_list.html:4346(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:371(a) msgid "#unnormalize_attribute_options" msgstr "" -#: doc/reference/en/method_list.html:4412(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:357(a) +#: doc/reference/en/method_list.html:4354(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:371(a) msgid "#unnormalize_attributes" msgstr "" -#: doc/reference/en/method_list.html:4420(a) +#: doc/reference/en/method_list.html:4362(a) msgid "#unshift" msgstr "" -#: doc/reference/en/method_list.html:4428(a) -#: doc/reference/en/method_list.html:4436(a) +#: doc/reference/en/method_list.html:4370(a) +#: doc/reference/en/method_list.html:4378(a) msgid "#update" msgstr "" -#: doc/reference/en/method_list.html:4444(a) +#: doc/reference/en/method_list.html:4372(small) +msgid "ActiveLdap::Operations::ClassOnlyUpdate" +msgstr "" + +#: doc/reference/en/method_list.html:4386(a) msgid "#update_all" msgstr "" -#: doc/reference/en/method_list.html:4452(a) +#: doc/reference/en/method_list.html:4394(a) msgid "#update_attribute" msgstr "" -#: doc/reference/en/method_list.html:4460(a) +#: doc/reference/en/method_list.html:4402(a) msgid "#update_attributes" msgstr "" -#: doc/reference/en/method_list.html:4468(a) +#: doc/reference/en/method_list.html:4410(a) msgid "#update_attributes!" msgstr "" -#: doc/reference/en/method_list.html:4476(a) +#: doc/reference/en/method_list.html:4418(a) msgid "#updated?" msgstr "" -#: doc/reference/en/method_list.html:4484(a) -#: doc/reference/en/method_list.html:4492(a) -#: doc/reference/en/method_list.html:4500(a) -#: doc/reference/en/method_list.html:4508(a) -#: doc/reference/en/method_list.html:4516(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:184(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:131(a) +#: doc/reference/en/method_list.html:4426(a) +#: doc/reference/en/method_list.html:4434(a) +#: doc/reference/en/method_list.html:4442(a) +#: doc/reference/en/method_list.html:4458(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:185(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:130(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:203(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:184(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:135(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:184(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:184(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:145(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:131(a) -#: doc/reference/en/file.tutorial.html:381(h4) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:185(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:134(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:185(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:185(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:138(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:130(a) +#: doc/reference/en/file.tutorial.html:388(h4) msgid "#valid?" msgstr "" -#: doc/reference/en/method_list.html:4524(a) -#: doc/reference/en/method_list.html:4532(a) -#: doc/reference/en/method_list.html:4540(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:184(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:131(a) +#: doc/reference/en/method_list.html:4450(a) +#: doc/reference/en/ActiveLdap/Validations.html:157(strong) +#: doc/reference/en/ActiveLdap/Validations.html:254(span) +#: doc/reference/en/ActiveLdap/Validations.html:284(span) +#: doc/reference/en/ActiveLdap/Validations.html:294(strong) +#: doc/reference/en/ActiveLdap/Validations.html:337(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:313(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:646(strong) +#: doc/reference/en/ActiveLdap/UserPassword.html:708(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:194(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:318(strong) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:359(span) +msgid "valid?" +msgstr "" + +#: doc/reference/en/method_list.html:4466(a) +#: doc/reference/en/method_list.html:4474(a) +#: doc/reference/en/method_list.html:4482(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:185(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:130(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:203(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:184(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:135(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:184(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:184(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:131(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:145(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:131(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:185(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:134(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:185(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:185(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:130(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:138(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:130(a) msgid "#validate" msgstr "" -#: doc/reference/en/method_list.html:4548(a) -#: doc/reference/en/ActiveLdap/Base.html:640(strong) -#: doc/reference/en/ActiveLdap/Base.html:2784(span) -#: doc/reference/en/ActiveLdap/Base.html:2971(strong) -#: doc/reference/en/ActiveLdap/Base.html:3013(span) -#: doc/reference/en/ActiveLdap/Base.html:4471(span) +#: doc/reference/en/method_list.html:4490(a) +#: doc/reference/en/ActiveLdap/Base.html:645(strong) msgid "validate_scope" msgstr "" -#: doc/reference/en/method_list.html:4556(a) +#: doc/reference/en/method_list.html:4498(a) msgid "#validation_skip_attributes" msgstr "" -#: doc/reference/en/method_list.html:4564(a) +#: doc/reference/en/method_list.html:4506(a) msgid "#validation_skip_attributes=" msgstr "" -#: doc/reference/en/method_list.html:4572(a) -#: doc/reference/en/method_list.html:4580(a) +#: doc/reference/en/method_list.html:4514(a) +#: doc/reference/en/method_list.html:4522(a) msgid "#value" msgstr "" -#: doc/reference/en/method_list.html:4588(a) +#: doc/reference/en/method_list.html:4530(a) msgid "#values" msgstr "" -#: doc/reference/en/method_list.html:4596(a) +#: doc/reference/en/method_list.html:4538(a) msgid "#version" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/ActionController.html:39(span) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:37(a) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:96(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/ActionController.html:37(span) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:35(a) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:100(a) msgid "ActionController" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/ActionController.html:84(a) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:39(span) -#: doc/reference/en/_index.html:826(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/ActionController.html:91(a) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:37(span) +#: doc/reference/en/_index.html:823(a) msgid "LdapBenchmarking" msgstr "" -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::ActionController" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:37(a) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Acts.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:108(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:35(a) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/Acts.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:112(a) msgid "Acts" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:39(span) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Acts.html:84(a) -#: doc/reference/en/_index.html:1308(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:37(span) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/Acts.html:91(a) +#: doc/reference/en/_index.html:1292(a) msgid "Tree" msgstr "" -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Acts" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:39(span) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:84(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:307(span) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:39(span) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:100(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:39(span) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:39(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:39(span) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:39(span) -#: doc/reference/en/ActiveLdap/Connection.html:84(a) -#: doc/reference/en/ActiveLdap/Connection.html:331(span) -#: doc/reference/en/ActiveLdap/Attributes.html:84(a) -#: doc/reference/en/ActiveLdap/Attributes.html:159(span) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:39(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:39(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:84(a) -#: doc/reference/en/ActiveLdap/ObjectClass.html:270(span) -#: doc/reference/en/ActiveLdap/HumanReadable.html:88(a) -#: doc/reference/en/ActiveLdap/HumanReadable.html:160(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:88(a) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:39(span) -#: doc/reference/en/ActiveLdap/Associations.html:100(a) -#: doc/reference/en/ActiveLdap/Associations.html:204(span) -#: doc/reference/en/ActiveLdap/Configuration.html:101(a) -#: doc/reference/en/ActiveLdap/Configuration.html:184(span) -#: doc/reference/en/_index.html:320(a) doc/reference/en/_index.html:327(a) -#: doc/reference/en/_index.html:334(a) doc/reference/en/_index.html:341(a) -#: doc/reference/en/_index.html:348(a) doc/reference/en/_index.html:355(a) -#: doc/reference/en/_index.html:362(a) doc/reference/en/_index.html:369(a) -#: doc/reference/en/_index.html:376(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:37(span) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:91(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:321(span) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:37(span) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:37(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:37(span) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:37(span) +#: doc/reference/en/ActiveLdap/Connection.html:91(a) +#: doc/reference/en/ActiveLdap/Connection.html:351(span) +#: doc/reference/en/ActiveLdap/Attributes.html:91(a) +#: doc/reference/en/ActiveLdap/Attributes.html:171(span) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:37(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:37(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:91(a) +#: doc/reference/en/ActiveLdap/ObjectClass.html:287(span) +#: doc/reference/en/ActiveLdap/HumanReadable.html:91(a) +#: doc/reference/en/ActiveLdap/HumanReadable.html:168(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:95(a) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:37(span) +#: doc/reference/en/ActiveLdap/Associations.html:105(a) +#: doc/reference/en/ActiveLdap/Associations.html:215(span) +#: doc/reference/en/ActiveLdap/Configuration.html:106(a) +#: doc/reference/en/ActiveLdap/Configuration.html:193(span) +#: doc/reference/en/_index.html:324(a) doc/reference/en/_index.html:331(a) +#: doc/reference/en/_index.html:338(a) doc/reference/en/_index.html:345(a) +#: doc/reference/en/_index.html:352(a) doc/reference/en/_index.html:359(a) +#: doc/reference/en/_index.html:366(a) doc/reference/en/_index.html:373(a) msgid "ClassMethods" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:797(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:919(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:929(span) -#: doc/reference/en/ActiveLdap/Adapter.html:39(span) -#: doc/reference/en/ActiveLdap/Connection.html:475(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:37(a) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:115(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:827(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:952(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:962(span) +#: doc/reference/en/ActiveLdap/Adapter.html:37(span) +#: doc/reference/en/ActiveLdap/Connection.html:498(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:35(a) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:119(a) msgid "Adapter" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:501(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:797(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:919(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:929(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:260(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:308(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:364(span) -#: doc/reference/en/ActiveLdap/Adapter.html:88(a) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:313(span) -#: doc/reference/en/ActiveLdap/Connection.html:475(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:74(a) -#: doc/reference/en/ActiveLdap/Base.html:39(span) -#: doc/reference/en/ActiveLdap/Base.html:101(p) -#: doc/reference/en/ActiveLdap/Base.html:1751(a) -#: doc/reference/en/ActiveLdap/Base.html:2206(span) -#: doc/reference/en/ActiveLdap/Base.html:2279(span) -#: doc/reference/en/ActiveLdap/Base.html:2542(span) -#: doc/reference/en/ActiveLdap/Command.html:225(span) -#: doc/reference/en/ActiveLdap/Populate.html:201(span) -#: doc/reference/en/ActiveLdap/Populate.html:258(span) -#: doc/reference/en/ActiveLdap/Populate.html:309(span) -#: doc/reference/en/ActiveLdap/Helper.html:286(span) -#: doc/reference/en/ActiveLdap/Helper.html:319(span) -#: doc/reference/en/ActiveLdap/Helper.html:491(span) -#: doc/reference/en/ActiveLdap/Helper.html:524(span) -#: doc/reference/en/ActiveLdap/Helper.html:557(span) -#: doc/reference/en/ActiveLdap/Helper.html:590(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:69(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:74(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:149(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:69(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:74(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:170(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:69(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:74(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:170(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:86(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:69(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:74(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:120(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:520(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:827(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:952(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:962(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:267(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:316(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:373(span) +#: doc/reference/en/ActiveLdap/Adapter.html:95(a) +#: doc/reference/en/ActiveLdap/Connection.html:498(span) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:81(a) +#: doc/reference/en/ActiveLdap/Base.html:37(span) +#: doc/reference/en/ActiveLdap/Base.html:109(p) +#: doc/reference/en/ActiveLdap/Base.html:1700(a) +#: doc/reference/en/ActiveLdap/Base.html:2038(span) +#: doc/reference/en/ActiveLdap/Base.html:2153(span) +#: doc/reference/en/ActiveLdap/Command.html:232(span) +#: doc/reference/en/ActiveLdap/Populate.html:215(span) +#: doc/reference/en/ActiveLdap/Populate.html:273(span) +#: doc/reference/en/ActiveLdap/Populate.html:325(span) +#: doc/reference/en/ActiveLdap/Helper.html:304(span) +#: doc/reference/en/ActiveLdap/Helper.html:338(span) +#: doc/reference/en/ActiveLdap/Helper.html:512(span) +#: doc/reference/en/ActiveLdap/Helper.html:546(span) +#: doc/reference/en/ActiveLdap/Helper.html:580(span) +#: doc/reference/en/ActiveLdap/Helper.html:614(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:76(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:81(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:153(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:76(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:81(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:175(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:76(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:81(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:175(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:93(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:76(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:81(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:126(a) #: doc/reference/en/ActiveLdap/Adapter/Jndi.html:134(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:328(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:683(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:69(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:74(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:116(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:130(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:345(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:69(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:74(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:334(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:701(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:76(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:81(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:123(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:131(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:353(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:76(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:81(a) #: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:126(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:140(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:355(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:159(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:183(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:130(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:130(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:130(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:125(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:134(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:356(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:171(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:184(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:129(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:129(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:129(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:131(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:202(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:183(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:130(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:110(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:134(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:130(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:130(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:183(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:183(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:130(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:112(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:144(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:106(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:130(a) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/file.tutorial.html:121(span) -#: doc/reference/en/file.tutorial.html:125(span) -#: doc/reference/en/file.tutorial.html:167(span) -#: doc/reference/en/file.tutorial.html:237(span) -#: doc/reference/en/file.tutorial.html:266(span) -#: doc/reference/en/file.tutorial.html:307(span) -#: doc/reference/en/file.tutorial.html:370(span) -#: doc/reference/en/file.tutorial.html:414(span) -#: doc/reference/en/file.tutorial.html:520(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:184(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:129(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:37(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:117(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:133(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:129(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:129(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:184(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:184(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:129(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:115(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:137(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:76(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:81(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:113(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:129(a) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/file.tutorial.html:174(span) +#: doc/reference/en/file.tutorial.html:314(span) +#: doc/reference/en/file.tutorial.html:421(span) #: doc/reference/en/file.tutorial.html:527(span) -#: doc/reference/en/file.tutorial.html:563(span) -#: doc/reference/en/file.tutorial.html:613(span) -#: doc/reference/en/file.tutorial.html:660(span) -#: doc/reference/en/file.tutorial.html:731(span) -#: doc/reference/en/file.tutorial.html:740(span) -#: doc/reference/en/file.tutorial.html:780(span) -#: doc/reference/en/file.tutorial.html:784(span) -#: doc/reference/en/file.rails.html:109(span) -#: doc/reference/en/file.rails.html:117(span) -#: doc/reference/en/file.rails.html:135(span) -#: doc/reference/en/file.rails.html:143(span) -#: doc/reference/en/file.rails.html:162(span) -#: doc/reference/en/_index.html:235(a) doc/reference/en/_index.html:242(a) -#: doc/reference/en/_index.html:249(a) doc/reference/en/_index.html:256(a) +#: doc/reference/en/file.tutorial.html:534(span) +#: doc/reference/en/file.tutorial.html:570(span) +#: doc/reference/en/file.tutorial.html:620(span) +#: doc/reference/en/file.tutorial.html:667(span) +#: doc/reference/en/file.tutorial.html:738(span) +#: doc/reference/en/file.tutorial.html:747(span) +#: doc/reference/en/file.rails.html:116(span) +#: doc/reference/en/file.rails.html:124(span) +#: doc/reference/en/file.rails.html:142(span) +#: doc/reference/en/file.rails.html:150(span) +#: doc/reference/en/file.rails.html:169(span) +#: doc/reference/en/_index.html:232(a) doc/reference/en/_index.html:239(a) +#: doc/reference/en/_index.html:246(a) doc/reference/en/_index.html:253(a) msgid "Base" msgstr "" -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Adapter" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < " "Object" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter.html:88(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:824(span) -#: doc/reference/en/_index.html:778(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Adapter.html:95(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:843(span) +#: doc/reference/en/_index.html:775(a) msgid "Jndi" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < Base" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter.html:88(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:453(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:438(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:37(a) -#: doc/reference/en/_index.html:785(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Adapter.html:95(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:464(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:446(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:35(a) +#: doc/reference/en/_index.html:782(a) msgid "JndiConnection" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " " "< Object" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:341(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:99(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:329(a) -#: doc/reference/en/_index.html:918(a) doc/reference/en/_index.html:925(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:326(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:106(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:342(a) +#: doc/reference/en/_index.html:915(a) doc/reference/en/_index.html:922(a) msgid "ModifyRecord" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:99(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:39(span) -#: doc/reference/en/_index.html:1232(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:106(a) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/Scope.html:37(span) +#: doc/reference/en/_index.html:1230(a) msgid "Scope" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter.html:88(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:855(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:39(span) -#: doc/reference/en/_index.html:819(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Adapter.html:95(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:875(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:37(span) +#: doc/reference/en/_index.html:816(a) msgid "Ldap" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " " "< Base" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:37(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:101(a) -#: doc/reference/en/_index.html:869(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:35(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:108(a) +#: doc/reference/en/_index.html:866(a) msgid "Method" msgstr "" -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Adapter::Ldap::Method" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:97(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:86(a) -#: doc/reference/en/_index.html:1087(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:104(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method.html:93(a) +#: doc/reference/en/_index.html:1070(a) msgid "Plain" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter.html:88(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:886(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:39(span) -#: doc/reference/en/_index.html:959(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Adapter.html:95(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:907(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:37(span) +#: doc/reference/en/_index.html:956(a) msgid "NetLdap" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:920(span) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:39(span) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:211(a) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:122(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:953(span) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:37(span) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:208(a) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:126(a) msgid "AdapterNotFound" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < Error" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:39(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:129(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:37(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:133(a) msgid "AdapterNotSpecified" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:309(span) -#: doc/reference/en/ActiveLdap/Association.html:39(span) -#: doc/reference/en/ActiveLdap/Association/Collection.html:37(a) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:37(a) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:37(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:37(a) -#: doc/reference/en/ActiveLdap/Association/Children.html:37(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:37(a) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:37(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:37(a) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:346(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:356(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:472(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:474(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:164(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:323(span) +#: doc/reference/en/ActiveLdap/Association.html:37(span) +#: doc/reference/en/ActiveLdap/Association/Collection.html:35(a) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:35(a) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:35(a) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:35(a) +#: doc/reference/en/ActiveLdap/Association/Children.html:35(a) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:35(a) +#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:35(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:35(a) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:344(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:354(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:475(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:477(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:161(a) msgid "Association" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Association.html:90(a) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:97(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:39(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:356(span) -#: doc/reference/en/_index.html:263(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Association.html:97(a) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:104(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:37(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:354(span) +#: doc/reference/en/_index.html:267(a) msgid "BelongsTo" msgstr "" -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Association" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < Proxy" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Association.html:90(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:103(a) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:39(span) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:346(span) -#: doc/reference/en/_index.html:270(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Association.html:97(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:110(a) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:37(span) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:344(span) +#: doc/reference/en/_index.html:274(a) msgid "BelongsToMany" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < " "Collection" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:309(span) -#: doc/reference/en/ActiveLdap/Association.html:90(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:103(a) -#: doc/reference/en/ActiveLdap/Association/Children.html:39(span) -#: doc/reference/en/_index.html:313(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:323(span) +#: doc/reference/en/ActiveLdap/Association.html:97(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:110(a) +#: doc/reference/en/ActiveLdap/Association/Children.html:37(span) +#: doc/reference/en/_index.html:317(a) msgid "Children" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Association.html:90(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:39(span) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:69(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Association.html:97(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:37(span) #: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:76(a) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:128(a) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:97(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:69(a) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:83(a) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:122(a) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:104(a) #: doc/reference/en/ActiveLdap/Association/HasMany.html:76(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:144(a) -#: doc/reference/en/ActiveLdap/Association/Children.html:69(a) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:83(a) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:132(a) #: doc/reference/en/ActiveLdap/Association/Children.html:76(a) -#: doc/reference/en/ActiveLdap/Association/Children.html:128(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:69(a) +#: doc/reference/en/ActiveLdap/Association/Children.html:83(a) +#: doc/reference/en/ActiveLdap/Association/Children.html:122(a) #: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:76(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:144(a) -#: doc/reference/en/_index.html:383(a) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:83(a) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:132(a) +#: doc/reference/en/_index.html:394(a) msgid "Collection" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Association.html:90(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:103(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:39(span) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:74(a) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:474(span) -#: doc/reference/en/_index.html:713(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Association.html:97(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:110(a) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:37(span) +#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:81(a) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:477(span) +#: doc/reference/en/_index.html:710(a) msgid "HasMany" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Association.html:86(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:91(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:91(a) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:39(span) -#: doc/reference/en/_index.html:720(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Association.html:93(a) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:98(a) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:98(a) +#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:37(span) +#: doc/reference/en/_index.html:717(a) msgid "HasManyUtils" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Association.html:90(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:103(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:39(span) -#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:74(a) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:472(span) -#: doc/reference/en/_index.html:727(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Association.html:97(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:110(a) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:37(span) +#: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:81(a) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:475(span) +#: doc/reference/en/_index.html:724(a) msgid "HasManyWrap" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Association.html:90(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:69(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:74(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:288(a) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:74(a) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:39(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:357(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:74(a) -#: doc/reference/en/ActiveLdap/Association/Children.html:74(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:74(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:69(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:74(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:170(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:230(span) -#: doc/reference/en/_index.html:1115(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Association.html:97(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:76(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:81(a) +#: doc/reference/en/ActiveLdap/Association/Collection.html:296(a) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:81(a) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:37(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:376(a) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:81(a) +#: doc/reference/en/ActiveLdap/Association/Children.html:81(a) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:81(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:76(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:81(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:175(a) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:237(span) +#: doc/reference/en/_index.html:1098(a) msgid "Proxy" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Associations.html:39(span) -#: doc/reference/en/ActiveLdap/Associations.html:82(p) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:171(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/Associations.html:37(span) +#: doc/reference/en/ActiveLdap/Associations.html:90(p) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:168(a) msgid "Associations" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:39(span) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:101(p) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:192(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:37(span) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:109(p) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:182(a) msgid "AttributeAssignmentError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:39(span) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:238(a) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:199(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:37(span) +#: doc/reference/en/ActiveLdap/AttributeMethods/Query.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Write.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/BeforeTypeCast.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Read.html:35(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:35(a) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:189(a) +#, fuzzy +msgid "AttributeMethods" +msgstr "??????" + +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:101(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/BeforeTypeCast.html:37(span) +#: doc/reference/en/_index.html:260(a) +msgid "BeforeTypeCast" +msgstr "" + +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:101(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:37(span) +#: doc/reference/en/_index.html:542(a) +msgid "Dirty" +msgstr "" + +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:101(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Query.html:37(span) +#: doc/reference/en/_index.html:1116(a) +msgid "Query" +msgstr "" + +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:101(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Read.html:37(span) +#: doc/reference/en/_index.html:1145(a) +msgid "Read" +msgstr "" + +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:101(a) +#: doc/reference/en/ActiveLdap/AttributeMethods/Write.html:37(span) +#: doc/reference/en/_index.html:1351(a) +msgid "Write" +msgstr "" + +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:37(span) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:237(a) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:196(a) msgid "AttributeValueInvalid" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:103(a) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:37(a) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Attributes.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:456(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:457(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:646(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:647(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:860(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:206(a) -#: doc/reference/en/_index.html:213(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:110(a) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:35(a) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/Attributes.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:466(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:467(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:203(a) +#: doc/reference/en/_index.html:210(a) msgid "Attributes" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:39(span) -#: doc/reference/en/ActiveLdap/Attributes.html:84(a) -#: doc/reference/en/ActiveLdap/Attributes.html:160(span) -#: doc/reference/en/ActiveLdap/Attributes.html:161(span) -#: doc/reference/en/_index.html:966(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:37(span) +#: doc/reference/en/ActiveLdap/Attributes.html:91(a) +#: doc/reference/en/ActiveLdap/Attributes.html:172(span) +#: doc/reference/en/ActiveLdap/Attributes.html:173(span) +#: doc/reference/en/_index.html:963(a) msgid "Normalizable" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:39(span) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:101(p) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1036(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:456(span) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/file.tutorial.html:490(h4) -#: doc/reference/en/_index.html:220(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:37(span) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:109(p) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1059(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:461(span) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/file.tutorial.html:497(h4) +#: doc/reference/en/_index.html:217(a) msgid "AuthenticationError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Callbacks.html:39(span) -#: doc/reference/en/ActiveLdap/Callbacks.html:253(a) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:299(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/Callbacks.html:37(span) +#: doc/reference/en/ActiveLdap/Callbacks.html:259(a) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:303(a) msgid "Callbacks" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:74(a) -#: doc/reference/en/ActiveLdap/Command.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) -#: doc/reference/en/file.tutorial.html:548(span) -#: doc/reference/en/file.tutorial.html:560(span) -#: doc/reference/en/file.tutorial.html:598(span) -#: doc/reference/en/file.tutorial.html:610(span) -#: doc/reference/en/file.tutorial.html:645(span) -#: doc/reference/en/file.tutorial.html:657(span) -#: doc/reference/en/_index.html:390(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:81(a) +#: doc/reference/en/ActiveLdap/Command.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) +#: doc/reference/en/file.tutorial.html:555(span) +#: doc/reference/en/file.tutorial.html:567(span) +#: doc/reference/en/file.tutorial.html:605(span) +#: doc/reference/en/file.tutorial.html:617(span) +#: doc/reference/en/file.tutorial.html:652(span) +#: doc/reference/en/file.tutorial.html:664(span) +#: doc/reference/en/_index.html:401(a) msgid "Command" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Compatible.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:633(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:404(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Compatible.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:657(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:415(a) msgid "Compatible" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Command.html:226(span) -#: doc/reference/en/ActiveLdap/Configuration.html:39(span) -#: doc/reference/en/ActiveLdap/Configuration.html:82(p) -#: doc/reference/en/ActiveLdap.html:90(a) -#: doc/reference/en/file.rails.html:76(h2) doc/reference/en/_index.html:411(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/Command.html:233(span) +#: doc/reference/en/ActiveLdap/Configuration.html:37(span) +#: doc/reference/en/ActiveLdap/Configuration.html:90(p) +#: doc/reference/en/ActiveLdap.html:97(a) +#: doc/reference/en/file.rails.html:83(h2) doc/reference/en/_index.html:422(a) msgid "Configuration" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Base.html:2989(a) -#: doc/reference/en/ActiveLdap/Base.html:3016(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:604(span) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:607(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:39(span) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:101(p) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:418(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:628(span) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:631(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:37(span) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:109(p) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:429(a) msgid "ConfigurationError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Connection.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:546(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:432(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/Connection.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:553(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:443(a) msgid "Connection" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:479(span) -#: doc/reference/en/ActiveLdap/ConnectionError.html:39(span) -#: doc/reference/en/ActiveLdap/ConnectionError.html:101(p) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:549(span) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/LDAP/Conn.html:258(span) -#: doc/reference/en/file.tutorial.html:493(h4) -#: doc/reference/en/_index.html:439(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:501(span) +#: doc/reference/en/ActiveLdap/ConnectionError.html:37(span) +#: doc/reference/en/ActiveLdap/ConnectionError.html:109(p) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:556(span) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/LDAP/Conn.html:296(span) +#: doc/reference/en/file.tutorial.html:500(h4) +#: doc/reference/en/_index.html:450(a) msgid "ConnectionError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:803(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1073(a) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1108(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1112(span) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1116(span) -#: doc/reference/en/ActiveLdap/Base.html:2559(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:39(span) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/ActiveLdap.html:249(span) -#: doc/reference/en/_index.html:446(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:833(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1112(a) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1147(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1151(span) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1155(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:37(span) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/ActiveLdap.html:252(span) +#: doc/reference/en/_index.html:457(a) msgid "ConnectionNotSetup" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/DeleteError.html:39(span) -#: doc/reference/en/ActiveLdap/DeleteError.html:101(p) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:335(span) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/file.tutorial.html:482(h4) -#: doc/reference/en/_index.html:503(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/DeleteError.html:37(span) +#: doc/reference/en/ActiveLdap/DeleteError.html:109(p) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:271(span) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/file.tutorial.html:489(h4) +#: doc/reference/en/_index.html:507(a) msgid "DeleteError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:39(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:533(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:74(a) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/ActiveLdap.html:124(span) -#: doc/reference/en/_index.html:545(a) doc/reference/en/_index.html:552(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:37(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:552(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:81(a) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:37(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/ActiveLdap.html:128(span) +#: doc/reference/en/_index.html:549(a) doc/reference/en/_index.html:556(a) msgid "DistinguishedName" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif.html:496(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:39(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:222(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:105(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:697(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:254(a) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:39(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:254(a) -#: doc/reference/en/_index.html:1059(a) doc/reference/en/_index.html:1066(a) -#: doc/reference/en/_index.html:1073(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif.html:512(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:37(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:228(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:112(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:718(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:244(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:255(a) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:37(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:226(a) +#: doc/reference/en/ActiveLdap/GetText.html:81(a) +#: doc/reference/en/ActiveLdap/GetText.html:97(a) +#: doc/reference/en/_index.html:1042(a) doc/reference/en/_index.html:1049(a) +#: doc/reference/en/_index.html:1056(a) msgid "Parser" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:39(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:211(a) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:292(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:559(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:37(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:208(a) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:265(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:563(a) msgid "DistinguishedNameInputInvalid" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Connection.html:435(span) -#: doc/reference/en/ActiveLdap/Base.html:3991(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:39(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:238(a) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:946(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:264(span) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:566(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Connection.html:457(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:37(span) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:237(a) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:968(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:269(span) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:570(a) msgid "DistinguishedNameInvalid" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Base.html:3991(span) -#: doc/reference/en/ActiveLdap/Base.html:4542(span) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:39(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:573(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:37(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:577(a) msgid "DistinguishedNameNotSetError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:39(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:948(span) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:602(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:37(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:970(span) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:599(a) msgid "EntryAlreadyExist" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:74(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:39(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:364(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1341(span) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:609(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:81(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:37(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:378(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1371(span) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:606(a) msgid "EntryAttribute" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Validations.html:271(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:39(span) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:211(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:616(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Validations.html:284(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:37(span) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:208(a) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:613(a) msgid "EntryInvalid" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Base.html:4289(span) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:39(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:944(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1276(span) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:623(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Persistence.html:635(span) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:37(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:966(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1304(span) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:620(a) msgid "EntryNotFound" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Persistence.html:626(span) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:39(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:630(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Persistence.html:720(span) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:37(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:627(a) msgid "EntryNotSaved" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/LdapError.html:69(a) +#: doc/reference/en/class_list.html:48(a) #: doc/reference/en/ActiveLdap/LdapError.html:76(a) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:69(a) +#: doc/reference/en/ActiveLdap/LdapError.html:83(a) #: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:76(a) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:69(a) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:83(a) #: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:76(a) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:69(a) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:83(a) #: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:76(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:69(a) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:83(a) #: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:76(a) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:69(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:83(a) #: doc/reference/en/ActiveLdap/AuthenticationError.html:76(a) -#: doc/reference/en/ActiveLdap/DeleteError.html:69(a) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:83(a) #: doc/reference/en/ActiveLdap/DeleteError.html:76(a) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:69(a) +#: doc/reference/en/ActiveLdap/DeleteError.html:83(a) #: doc/reference/en/ActiveLdap/LdifInvalid.html:76(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:74(a) -#: doc/reference/en/ActiveLdap/TimeoutError.html:69(a) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:83(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:81(a) #: doc/reference/en/ActiveLdap/TimeoutError.html:76(a) -#: doc/reference/en/ActiveLdap/Base.html:2282(span) -#: doc/reference/en/ActiveLdap/Base.html:2561(span) -#: doc/reference/en/ActiveLdap/Base.html:3491(span) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:69(a) +#: doc/reference/en/ActiveLdap/TimeoutError.html:83(a) +#: doc/reference/en/ActiveLdap/Base.html:2156(span) #: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:76(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:69(a) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:83(a) #: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:76(a) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:69(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:83(a) #: doc/reference/en/ActiveLdap/ObjectClassError.html:76(a) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:69(a) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:83(a) #: doc/reference/en/ActiveLdap/AdapterNotFound.html:76(a) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:69(a) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:83(a) #: doc/reference/en/ActiveLdap/OperationNotPermitted.html:76(a) -#: doc/reference/en/ActiveLdap/NotImplemented.html:69(a) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:83(a) #: doc/reference/en/ActiveLdap/NotImplemented.html:76(a) -#: doc/reference/en/ActiveLdap/SaveError.html:69(a) +#: doc/reference/en/ActiveLdap/NotImplemented.html:83(a) #: doc/reference/en/ActiveLdap/SaveError.html:76(a) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:69(a) +#: doc/reference/en/ActiveLdap/SaveError.html:83(a) #: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:76(a) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:69(a) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:83(a) #: doc/reference/en/ActiveLdap/EntryNotSaved.html:76(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:69(a) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:83(a) #: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:76(a) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:69(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:83(a) #: doc/reference/en/ActiveLdap/EntryNotFound.html:76(a) -#: doc/reference/en/ActiveLdap/ConnectionError.html:69(a) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:83(a) #: doc/reference/en/ActiveLdap/ConnectionError.html:76(a) -#: doc/reference/en/ActiveLdap/Error.html:39(span) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:69(a) +#: doc/reference/en/ActiveLdap/ConnectionError.html:83(a) +#: doc/reference/en/ActiveLdap/Error.html:37(span) #: doc/reference/en/ActiveLdap/ConfigurationError.html:76(a) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:69(a) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:83(a) #: doc/reference/en/ActiveLdap/EntryInvalid.html:76(a) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:69(a) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:83(a) #: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:76(a) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:69(a) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:83(a) #: doc/reference/en/ActiveLdap/UnknownAttribute.html:76(a) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:333(span) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:69(a) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:83(a) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:269(span) #: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:76(a) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:69(a) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:83(a) #: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:76(a) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/Timeout.html:160(span) doc/reference/en/_index.html:637(a) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:83(a) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/Timeout.html:219(span) doc/reference/en/_index.html:634(a) msgid "Error" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < " "StandardError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Escape.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:644(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Escape.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:641(a) msgid "Escape" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Generators.html:39(span) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:37(a) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:37(a) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:681(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Generators.html:37(span) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:35(a) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:35(a) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:678(a) msgid "Generators" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Generators.html:88(a) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:39(span) -#: doc/reference/en/_index.html:883(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Generators.html:95(a) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:37(span) +#: doc/reference/en/_index.html:880(a) msgid "ModelGenerator" msgstr "" -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Generators" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < " "NamedBase" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Generators.html:88(a) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:39(span) -#: doc/reference/en/_index.html:1211(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Generators.html:95(a) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:37(span) +#: doc/reference/en/_index.html:1209(a) msgid "ScaffoldGenerator" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:37(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:156(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:159(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:160(span) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:161(span) -#: doc/reference/en/ActiveLdap.html:90(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:35(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:164(span) +#: doc/reference/en/ActiveLdap/GetText.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:685(a) msgid "GetText" msgstr "" -#: doc/reference/en/class_list.html:42(small) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:87(a) +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:94(a) msgid "ActiveLdap::GetText" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:37(a) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:688(a) -msgid "GetTextFallback" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:39(span) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:84(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:156(span) -#: doc/reference/en/_index.html:1301(a) -msgid "Translation" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/LdapError.html:178(a) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:229(a) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:133(a) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:133(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:202(a) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:148(a) -#: doc/reference/en/ActiveLdap/Schema.html:87(a) -#: doc/reference/en/ActiveLdap/Schema.html:563(a) -#: doc/reference/en/ActiveLdap/DeleteError.html:148(a) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:323(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:87(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:525(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:39(span) -#: doc/reference/en/ActiveLdap/TimeoutError.html:148(a) -#: doc/reference/en/ActiveLdap/Base.html:87(a) -#: doc/reference/en/ActiveLdap/Base.html:1743(a) -#: doc/reference/en/ActiveLdap/Base.html:2489(span) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:133(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:229(a) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:148(a) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:202(a) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:133(a) -#: doc/reference/en/ActiveLdap/NotImplemented.html:202(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:333(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:224(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:87(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:282(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:284(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:375(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:87(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:246(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:200(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:139(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:200(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:224(a) -#: doc/reference/en/ActiveLdap/SaveError.html:148(a) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:149(a) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:133(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:133(a) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:133(a) -#: doc/reference/en/ActiveLdap/Command.html:72(a) -#: doc/reference/en/ActiveLdap/Command.html:157(a) -#: doc/reference/en/ActiveLdap/ConnectionError.html:148(a) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:87(a) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:246(a) -#: doc/reference/en/ActiveLdap/Error.html:89(a) -#: doc/reference/en/ActiveLdap/Error.html:127(a) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:148(a) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:202(a) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:133(a) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:202(a) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:133(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:338(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:87(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:675(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:355(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:365(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:89(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:530(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:193(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/LdapError.html:173(a) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:228(a) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:128(a) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:128(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:199(a) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:141(a) +#: doc/reference/en/ActiveLdap/Schema.html:94(a) +#: doc/reference/en/ActiveLdap/Schema.html:571(a) +#: doc/reference/en/ActiveLdap/DeleteError.html:141(a) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:327(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:94(a) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:544(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:37(span) +#: doc/reference/en/ActiveLdap/TimeoutError.html:141(a) +#: doc/reference/en/ActiveLdap/Base.html:94(a) +#: doc/reference/en/ActiveLdap/Base.html:1692(a) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:128(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:228(a) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:141(a) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:199(a) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:128(a) +#: doc/reference/en/ActiveLdap/NotImplemented.html:199(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:318(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:209(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:94(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:292(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:280(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:372(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:94(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:247(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:191(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:136(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:191(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:209(a) +#: doc/reference/en/ActiveLdap/SaveError.html:141(a) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:142(a) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:128(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:128(a) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:128(a) +#: doc/reference/en/ActiveLdap/Command.html:79(a) +#: doc/reference/en/ActiveLdap/Command.html:162(a) +#: doc/reference/en/ActiveLdap/ConnectionError.html:141(a) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:94(a) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:218(a) +#: doc/reference/en/ActiveLdap/Error.html:96(a) +#: doc/reference/en/ActiveLdap/Error.html:128(a) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:141(a) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:199(a) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:128(a) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:199(a) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:128(a) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:345(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:94(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:693(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:364(a) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:367(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:195(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:140(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:140(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:140(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:212(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:193(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:213(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:195(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:140(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:87(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:243(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:94(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:247(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:144(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:140(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:140(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:193(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:193(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:195(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:195(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:140(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:154(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:148(a) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:140(a) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:133(a) -#: doc/reference/en/ActiveLdap.html:70(a) -#: doc/reference/en/ActiveLdap.html:90(a) -#: doc/reference/en/ActiveLdap.html:202(a) doc/reference/en/_index.html:695(a) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:128(a) +#: doc/reference/en/ActiveLdap.html:77(a) +#: doc/reference/en/ActiveLdap.html:97(a) +#: doc/reference/en/ActiveLdap.html:203(a) doc/reference/en/_index.html:692(a) msgid "GetTextSupport" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Helper.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:734(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Helper.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:731(a) msgid "Helper" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/HumanReadable.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:89(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:520(a) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:741(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/HumanReadable.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:738(a) msgid "HumanReadable" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/LdapError.html:39(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:943(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:945(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:947(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:949(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:951(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:953(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1270(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1275(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1423(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1427(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1429(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1699(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:455(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:548(span) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/LDAP/Conn.html:255(span) -#: doc/reference/en/LDAP/Conn.html:260(span) -#: doc/reference/en/_index.html:833(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/LdapError.html:37(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:965(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:967(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:969(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:971(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:973(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:975(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1298(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1303(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1455(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1459(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1461(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1737(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:460(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:555(span) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/LDAP/Conn.html:293(span) +#: doc/reference/en/LDAP/Conn.html:298(span) +#: doc/reference/en/_index.html:830(a) msgid "LdapError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif.html:335(a) -#: doc/reference/en/ActiveLdap/Base.html:4572(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:224(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:228(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:264(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:295(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:324(span) -#: doc/reference/en/ActiveLdap.html:94(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif.html:351(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:239(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:243(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:280(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:312(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:342(span) +#: doc/reference/en/ActiveLdap.html:101(a) #: doc/reference/en/ActiveLdap.html:118(span) -#: doc/reference/en/_index.html:840(a) +#: doc/reference/en/_index.html:837(a) msgid "Ldif" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:99(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:208(a) -#: doc/reference/en/_index.html:150(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:106(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:199(a) +#: doc/reference/en/_index.html:147(a) msgid "AddRecord" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < " "ChangeRecord" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:103(a) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:437(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:521(span) -#: doc/reference/en/ActiveLdap/Schema.html:109(a) -#: doc/reference/en/ActiveLdap/Schema.html:646(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:178(span) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:216(span) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:859(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:101(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:39(span) -#: doc/reference/en/_index.html:178(a) doc/reference/en/_index.html:185(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:110(a) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:462(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:548(span) +#: doc/reference/en/ActiveLdap/Schema.html:656(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:191(span) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:230(span) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:37(span) +#: doc/reference/en/_index.html:175(a) msgid "Attribute" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:69(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) #: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:76(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:168(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:313(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:76(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:134(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:204(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:37(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:101(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:69(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:83(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:152(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:296(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:83(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:121(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:187(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:108(a) #: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:76(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:183(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:264(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:383(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:69(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:83(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:181(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:258(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:380(a) #: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:76(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:120(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:180(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:69(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:83(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:169(a) #: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:76(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:120(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:180(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:76(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:134(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:204(a) -#: doc/reference/en/_index.html:306(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:83(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:169(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:83(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:121(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:187(a) +#: doc/reference/en/_index.html:310(a) msgid "ChangeRecord" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " " "< Record" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:307(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:107(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:163(span) -#: doc/reference/en/_index.html:467(a) -msgid "Control" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:101(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:39(span) -#: doc/reference/en/_index.html:453(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:108(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:37(span) +#: doc/reference/en/_index.html:464(a) msgid "ContentRecord" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < " "Record" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:99(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:208(a) -#: doc/reference/en/_index.html:524(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:106(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:199(a) +#: doc/reference/en/_index.html:521(a) msgid "DeleteRecord" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:232(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:101(a) -#: doc/reference/en/_index.html:890(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:217(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:108(a) +#: doc/reference/en/_index.html:887(a) msgid "ModifyDNRecord" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < " "ModifyNameRecord" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:69(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:78(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:126(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:194(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:292(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:99(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:69(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:78(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:126(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:194(a) -#: doc/reference/en/_index.html:897(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:76(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:85(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:116(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:176(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:288(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:106(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:76(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:85(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:116(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:176(a) +#: doc/reference/en/_index.html:894(a) msgid "ModifyNameRecord" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:101(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:232(a) -#: doc/reference/en/_index.html:911(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:108(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:217(a) +#: doc/reference/en/_index.html:908(a) msgid "ModifyRDNRecord" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " " "< ChangeRecord" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:109(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:167(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:97(a) -#: doc/reference/en/_index.html:136(a) -msgid "AddOperation" -msgstr "" - -#: doc/reference/en/class_list.html:42(li) -msgid "" -" < " -"Operation" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:109(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:167(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:97(a) -#: doc/reference/en/_index.html:510(a) -msgid "DeleteOperation" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:109(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:69(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:110(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:159(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:69(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:110(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:159(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:69(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:110(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:159(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:386(a) -#: doc/reference/en/_index.html:1023(a) -msgid "Operation" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:109(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:167(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:97(a) -#: doc/reference/en/_index.html:1154(a) -msgid "ReplaceOperation" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:176(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:323(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:142(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:214(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:290(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:191(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:274(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:69(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:187(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:365(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:128(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:190(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:69(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:114(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:129(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:128(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:190(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:74(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:142(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:214(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:228(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:324(span) -#: doc/reference/en/_index.html:1147(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:81(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:157(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:307(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:81(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:126(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:198(a) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:300(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:81(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:186(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:269(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:76(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:81(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:179(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:361(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:81(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:119(a) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:180(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:76(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:81(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:112(a) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:125(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:81(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:119(a) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:180(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:81(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:126(a) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:198(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:243(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:342(span) +#: doc/reference/en/_index.html:1152(a) msgid "Record" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif.html:107(a) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:39(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:372(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:391(span) -#: doc/reference/en/_index.html:1218(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif.html:114(a) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:37(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:389(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:393(span) +#: doc/reference/en/_index.html:1216(a) msgid "Scanner" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:39(span) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:332(a) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:847(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:37(span) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:336(a) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:844(a) msgid "LdifInvalid" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:39(span) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:283(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:854(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:37(span) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:296(a) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:851(a) msgid "LogSubscriber" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < " "LogSubscriber" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/NotImplemented.html:39(span) -#: doc/reference/en/ActiveLdap/NotImplemented.html:211(a) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:660(span) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:673(span) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:973(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/NotImplemented.html:37(span) +#: doc/reference/en/ActiveLdap/NotImplemented.html:208(a) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:677(span) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:683(span) +#: doc/reference/en/ActiveLdap.html:101(a) doc/reference/en/_index.html:970(a) msgid "NotImplemented" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:603(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:674(span) -#: doc/reference/en/ActiveLdap/Schema.html:109(a) -#: doc/reference/en/ActiveLdap/Schema.html:1201(span) -#: doc/reference/en/ActiveLdap/ObjectClass.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:101(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:1002(a) -#: doc/reference/en/_index.html:1009(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:35(a) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:632(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:705(span) +#: doc/reference/en/ActiveLdap/Schema.html:1225(span) +#: doc/reference/en/ActiveLdap/ObjectClass.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:999(a) msgid "ObjectClass" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:39(span) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:101(p) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/file.tutorial.html:498(h4) -#: doc/reference/en/_index.html:1016(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:37(span) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:109(p) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/file.tutorial.html:505(h4) +#: doc/reference/en/_index.html:1006(a) msgid "ObjectClassError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:39(span) -#: doc/reference/en/ActiveLdap/Populate.html:214(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:954(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1271(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1424(span) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:1030(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:37(span) +#: doc/reference/en/ActiveLdap/Populate.html:228(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:976(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1299(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1456(span) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/_index.html:1013(a) msgid "OperationNotPermitted" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/Find.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/Common.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/Update.html:37(a) -#: doc/reference/en/ActiveLdap/Operations.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:1037(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/Find.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/Common.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/Update.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:35(a) +#: doc/reference/en/ActiveLdap/Operations.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:1020(a) msgid "Operations" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/Common.html:39(span) -#: doc/reference/en/ActiveLdap/Operations.html:84(a) -#: doc/reference/en/ActiveLdap/Operations.html:169(span) -#: doc/reference/en/ActiveLdap/Operations.html:175(span) -#: doc/reference/en/_index.html:397(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:37(span) +#: doc/reference/en/ActiveLdap/Operations.html:91(a) +#: doc/reference/en/ActiveLdap/Operations.html:187(span) +#: doc/reference/en/_index.html:380(a) +msgid "ClassOnlyDelete" +msgstr "" + +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:37(span) +#: doc/reference/en/ActiveLdap/Operations.html:91(a) +#: doc/reference/en/ActiveLdap/Operations.html:189(span) +#: doc/reference/en/_index.html:387(a) +msgid "ClassOnlyUpdate" +msgstr "" + +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/Common.html:37(span) +#: doc/reference/en/ActiveLdap/Operations.html:91(a) +#: doc/reference/en/ActiveLdap/Operations.html:183(span) +#: doc/reference/en/ActiveLdap/Operations.html:191(span) +#: doc/reference/en/_index.html:408(a) msgid "Common" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:39(span) -#: doc/reference/en/ActiveLdap/Operations.html:84(a) -#: doc/reference/en/ActiveLdap/Operations.html:172(span) -#: doc/reference/en/ActiveLdap/Operations.html:178(span) -#: doc/reference/en/_index.html:496(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:37(span) +#: doc/reference/en/ActiveLdap/Operations.html:91(a) +#: doc/reference/en/ActiveLdap/Operations.html:186(span) +#: doc/reference/en/ActiveLdap/Operations.html:194(span) +#: doc/reference/en/_index.html:500(a) msgid "Delete" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/Find.html:39(span) -#: doc/reference/en/ActiveLdap/Operations.html:84(a) -#: doc/reference/en/ActiveLdap/Operations.html:170(span) -#: doc/reference/en/ActiveLdap/Operations.html:176(span) -#: doc/reference/en/_index.html:659(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/Find.html:37(span) +#: doc/reference/en/ActiveLdap/Operations.html:91(a) +#: doc/reference/en/ActiveLdap/Operations.html:184(span) +#: doc/reference/en/ActiveLdap/Operations.html:192(span) +#: doc/reference/en/_index.html:656(a) msgid "Find" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:39(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:84(a) -#: doc/reference/en/_index.html:157(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:37(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:91(a) +#: doc/reference/en/_index.html:154(a) msgid "AddRecordLoadable" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:39(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:84(a) -#: doc/reference/en/_index.html:460(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:37(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:91(a) +#: doc/reference/en/_index.html:471(a) msgid "ContentRecordLoadable" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:39(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:84(a) -#: doc/reference/en/_index.html:531(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:37(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:91(a) +#: doc/reference/en/_index.html:528(a) msgid "DeleteRecordLoadable" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:39(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:84(a) -#: doc/reference/en/_index.html:904(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:37(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:91(a) +#: doc/reference/en/_index.html:901(a) msgid "ModifyNameRecordLoadable" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:37(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:39(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:84(a) -#: doc/reference/en/_index.html:932(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:35(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:37(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:91(a) +#: doc/reference/en/_index.html:929(a) msgid "ModifyRecordLoadable" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:39(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:84(a) -#: doc/reference/en/_index.html:143(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:37(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:91(a) +#: doc/reference/en/_index.html:140(a) msgid "AddOperationModifiable" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:39(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:84(a) -#: doc/reference/en/_index.html:517(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:37(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:91(a) +#: doc/reference/en/_index.html:514(a) msgid "DeleteOperationModifiable" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:39(span) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:84(a) -#: doc/reference/en/_index.html:1161(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:37(span) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:91(a) +#: doc/reference/en/_index.html:1159(a) msgid "ReplaceOperationModifiable" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Operations/Update.html:39(span) -#: doc/reference/en/ActiveLdap/Operations.html:84(a) -#: doc/reference/en/ActiveLdap/Operations.html:173(span) -#: doc/reference/en/ActiveLdap/Operations.html:179(span) -#: doc/reference/en/_index.html:1330(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Operations/Update.html:37(span) +#: doc/reference/en/ActiveLdap/Operations.html:91(a) +#: doc/reference/en/ActiveLdap/Operations.html:188(span) +#: doc/reference/en/ActiveLdap/Operations.html:195(span) +#: doc/reference/en/_index.html:1314(a) msgid "Update" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Persistence.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:1080(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Persistence.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:1063(a) msgid "Persistence" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Populate.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:1094(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Populate.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:1077(a) msgid "Populate" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Railtie.html:39(span) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:1133(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Railtie.html:37(span) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/_index.html:1131(a) msgid "Railtie" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < " "Railtie" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:37(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Railties.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:1140(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:35(a) +#: doc/reference/en/ActiveLdap/Railties.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:1138(a) msgid "Railties" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:39(span) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:37(a) -#: doc/reference/en/ActiveLdap/Railties.html:84(a) -#: doc/reference/en/_index.html:474(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:37(span) +#: doc/reference/en/ActiveLdap/Railties.html:91(a) +#: doc/reference/en/_index.html:478(a) msgid "ControllerRuntime" msgstr "" -#: doc/reference/en/class_list.html:42(small) +#: doc/reference/en/class_list.html:48(small) msgid "ActiveLdap::Railties" msgstr "" -#: doc/reference/en/class_list.html:42(small) -msgid "ActiveLdap::Railties::ControllerRuntime" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:39(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:952(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1430(span) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:1168(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:37(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:974(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1462(span) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/_index.html:1166(a) msgid "RequiredAttributeMissed" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:39(span) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:1175(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:37(span) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/_index.html:1173(a) msgid "RequiredObjectClassMissed" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/SaveError.html:39(span) -#: doc/reference/en/ActiveLdap/SaveError.html:101(p) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/file.tutorial.html:485(h4) -#: doc/reference/en/_index.html:1204(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/SaveError.html:37(span) +#: doc/reference/en/ActiveLdap/SaveError.html:109(p) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/file.tutorial.html:492(h4) +#: doc/reference/en/_index.html:1202(a) msgid "SaveError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:437(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:521(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:603(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:674(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:810(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:881(span) -#: doc/reference/en/ActiveLdap/Schema.html:39(span) -#: doc/reference/en/ActiveLdap/Schema.html:571(a) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:74(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1635(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1637(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:37(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:1225(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:462(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:548(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:632(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:705(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:844(span) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:917(span) +#: doc/reference/en/ActiveLdap/Schema.html:37(span) +#: doc/reference/en/ActiveLdap/Schema.html:579(a) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:81(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1672(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1674(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:35(a) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/_index.html:1223(a) msgid "Schema" msgstr "" -#: doc/reference/en/class_list.html:42(li) -msgid "" -" < Entry" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/Net/LDAP/Entry.html:39(span) -#: doc/reference/en/Net/LDAP/Entry.html:164(a) -#: doc/reference/en/Net/LDAP.html:101(a) -#: doc/reference/en/ActiveLdap/Schema.html:109(a) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:351(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:161(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:540(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:156(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:269(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:69(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:74(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:143(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:361(a) -#: doc/reference/en/_index.html:588(a) doc/reference/en/_index.html:595(a) -msgid "Entry" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:810(span) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:881(span) -#: doc/reference/en/ActiveLdap/Schema.html:109(a) -#: doc/reference/en/ActiveLdap/Schema.html:1069(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:101(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:370(a) -#: doc/reference/en/_index.html:1253(a) -msgid "Syntax" -msgstr "" - -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema.html:105(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:37(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:418(span) -#: doc/reference/en/_index.html:1260(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema.html:112(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:37(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:35(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:35(a) +#: doc/reference/en/_index.html:1251(a) msgid "Syntaxes" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/_index.html:277(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:37(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/_index.html:281(a) msgid "BitString" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:512(tt) +#: doc/reference/en/class_list.html:48(a) #: doc/reference/en/ActiveLdap/LogSubscriber.html:530(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:672(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:690(tt) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:382(tt) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:400(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:449(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:473(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:506(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:527(tt) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:220(tt) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:238(tt) -#: doc/reference/en/ActiveLdap/Connection.html:348(tt) -#: doc/reference/en/ActiveLdap/Connection.html:366(tt) -#: doc/reference/en/ActiveLdap/Schema.html:905(tt) -#: doc/reference/en/ActiveLdap/Schema.html:923(tt) -#: doc/reference/en/ActiveLdap/Validations.html:282(tt) -#: doc/reference/en/ActiveLdap/Validations.html:300(tt) -#: doc/reference/en/ActiveLdap/Base.html:2051(tt) -#: doc/reference/en/ActiveLdap/Base.html:2069(tt) -#: doc/reference/en/ActiveLdap/Base.html:3203(tt) -#: doc/reference/en/ActiveLdap/Base.html:3221(tt) -#: doc/reference/en/ActiveLdap/Base.html:3826(tt) -#: doc/reference/en/ActiveLdap/Base.html:3847(tt) -#: doc/reference/en/ActiveLdap/Base.html:3880(tt) -#: doc/reference/en/ActiveLdap/Base.html:3908(tt) -#: doc/reference/en/ActiveLdap/Base.html:4007(tt) -#: doc/reference/en/ActiveLdap/Base.html:4029(tt) -#: doc/reference/en/ActiveLdap/Base.html:4308(tt) -#: doc/reference/en/ActiveLdap/Base.html:4326(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:487(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:505(tt) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:181(tt) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:199(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:554(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:572(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:441(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:459(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:561(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:579(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:612(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:630(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:663(tt) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:550(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:698(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:718(tt) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:390(tt) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:410(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:487(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:511(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:543(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:565(tt) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:158(tt) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:178(tt) +#: doc/reference/en/ActiveLdap/Connection.html:367(tt) +#: doc/reference/en/ActiveLdap/Connection.html:387(tt) +#: doc/reference/en/ActiveLdap/Schema.html:921(tt) +#: doc/reference/en/ActiveLdap/Schema.html:941(tt) +#: doc/reference/en/ActiveLdap/Validations.html:294(tt) +#: doc/reference/en/ActiveLdap/Validations.html:314(tt) +#: doc/reference/en/ActiveLdap/Base.html:1881(tt) +#: doc/reference/en/ActiveLdap/Base.html:1901(tt) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:192(tt) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:212(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:575(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:595(tt) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:435(tt) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:455(tt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:557(tt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:577(tt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:609(tt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:629(tt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:661(tt) #: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:681(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:714(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:732(tt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:713(tt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:733(tt) #: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:765(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:783(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:658(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:676(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:709(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:727(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:789(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:807(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:618(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:636(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:479(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:497(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:561(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:579(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:699(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:717(tt) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:250(tt) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:268(tt) -#: doc/reference/en/ActiveLdap/Operations/Common.html:214(tt) -#: doc/reference/en/ActiveLdap/Operations/Common.html:236(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:166(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:184(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:217(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:235(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:210(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:228(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:210(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:228(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1080(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1098(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1178(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1196(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:562(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:580(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:520(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:538(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:312(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:330(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:39(span) -#: doc/reference/en/ActiveLdap.html:264(tt) -#: doc/reference/en/ActiveLdap.html:282(tt) -#: doc/reference/en/LDAP/Conn.html:342(tt) -#: doc/reference/en/LDAP/Conn.html:360(tt) doc/reference/en/_index.html:284(a) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:785(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:646(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:666(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:500(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:520(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:584(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:604(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:726(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:746(tt) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:256(tt) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:276(tt) +#: doc/reference/en/ActiveLdap/Operations/Common.html:226(tt) +#: doc/reference/en/ActiveLdap/Operations/Common.html:250(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:177(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:197(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:229(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:249(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:216(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:236(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:216(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:236(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1103(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1123(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1203(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1223(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:572(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:592(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:530(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:550(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:318(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:338(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:37(span) +#: doc/reference/en/ActiveLdap.html:266(tt) +#: doc/reference/en/ActiveLdap.html:286(tt) +#: doc/reference/en/LDAP/Conn.html:381(tt) +#: doc/reference/en/LDAP/Conn.html:401(tt) doc/reference/en/_index.html:288(a) msgid "Boolean" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/_index.html:481(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:37(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/_index.html:485(a) msgid "CountryString" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/_index.html:538(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:37(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/_index.html:535(a) msgid "DirectoryString" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/_index.html:674(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:37(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/_index.html:671(a) msgid "GeneralizedTime" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:398(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:226(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:266(span) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:411(span) -#: doc/reference/en/_index.html:756(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:400(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:37(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:230(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:271(span) +#: doc/reference/en/_index.html:753(a) msgid "Integer" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/_index.html:771(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:37(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/_index.html:768(a) msgid "JPEG" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/_index.html:947(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:37(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/_index.html:944(a) msgid "NameAndOptionalUID" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:39(span) -#: doc/reference/en/_index.html:980(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:37(span) +#: doc/reference/en/_index.html:977(a) msgid "NumericString" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:39(span) -#: doc/reference/en/_index.html:995(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:37(span) +#: doc/reference/en/_index.html:992(a) msgid "OID" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:39(span) -#: doc/reference/en/_index.html:1044(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:37(span) +#: doc/reference/en/_index.html:1027(a) msgid "OtherMailbox" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:39(span) -#: doc/reference/en/_index.html:1101(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:37(span) +#: doc/reference/en/_index.html:1084(a) msgid "PostalAddress" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:101(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:39(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:69(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:108(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:37(span) #: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:76(a) -#: doc/reference/en/_index.html:1108(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:83(a) +#: doc/reference/en/_index.html:1091(a) msgid "PrintableString" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:86(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:99(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:39(span) -#: doc/reference/en/_index.html:1282(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:93(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:106(a) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:37(span) +#: doc/reference/en/_index.html:1273(a) msgid "TelephoneNumber" msgstr "" -#: doc/reference/en/class_list.html:42(li) +#: doc/reference/en/class_list.html:48(li) msgid "" " < " "PrintableString" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:39(span) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:950(span) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:1246(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:37(span) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:972(span) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/_index.html:1244(a) msgid "StrongAuthenticationRequired" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/TimeoutError.html:39(span) -#: doc/reference/en/ActiveLdap/TimeoutError.html:101(p) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:1294(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/TimeoutError.html:37(span) +#: doc/reference/en/ActiveLdap/TimeoutError.html:109(p) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/_index.html:1285(a) msgid "TimeoutError" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Error.html:103(a) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:39(span) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:211(a) -#: doc/reference/en/ActiveLdap.html:94(a) doc/reference/en/_index.html:1323(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Error.html:110(a) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:37(span) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:208(a) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/_index.html:1307(a) msgid "UnknownAttribute" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:37(a) -#: doc/reference/en/ActiveLdap/UserPassword.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:1337(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:35(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:1321(a) msgid "UserPassword" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:39(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:84(a) -#: doc/reference/en/ActiveLdap/UserPassword.html:566(span) -#: doc/reference/en/ActiveLdap/UserPassword.html:605(span) -#: doc/reference/en/_index.html:1197(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:37(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:91(a) +#: doc/reference/en/ActiveLdap/UserPassword.html:365(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:594(span) +#: doc/reference/en/ActiveLdap/UserPassword.html:634(span) +#: doc/reference/en/_index.html:1195(a) msgid "Salt" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Validations.html:39(span) -#: doc/reference/en/ActiveLdap.html:90(a) doc/reference/en/_index.html:1352(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Validations.html:37(span) +#: doc/reference/en/ActiveLdap.html:97(a) doc/reference/en/_index.html:1336(a) msgid "Validations" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:37(a) -#: doc/reference/en/ActiveLdap/Xml.html:39(span) -#: doc/reference/en/ActiveLdap/Xml.html:174(a) -#: doc/reference/en/ActiveLdap.html:94(a) -#: doc/reference/en/ActiveLdap.html:112(span) -#: doc/reference/en/_index.html:1367(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:35(a) +#: doc/reference/en/ActiveLdap/Xml.html:37(span) +#: doc/reference/en/ActiveLdap/Xml.html:184(a) +#: doc/reference/en/ActiveLdap.html:101(a) +#: doc/reference/en/ActiveLdap.html:113(span) +#: doc/reference/en/_index.html:1366(a) msgid "Xml" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:39(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:177(a) -#: doc/reference/en/ActiveLdap/Xml.html:101(a) -#: doc/reference/en/ActiveLdap/Xml.html:244(span) -#: doc/reference/en/_index.html:1239(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:37(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:186(a) +#: doc/reference/en/ActiveLdap/Xml.html:108(a) +#: doc/reference/en/ActiveLdap/Xml.html:256(span) +#: doc/reference/en/_index.html:1237(a) msgid "Serializer" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:178(span) -#: doc/reference/en/LDAP/Conn.html:39(span) -#: doc/reference/en/_index.html:425(a) doc/reference/en/LDAP.html:86(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:184(span) +#: doc/reference/en/LDAP/Conn.html:37(span) +#: doc/reference/en/_index.html:436(a) doc/reference/en/LDAP.html:93(a) msgid "Conn" msgstr "" -#: doc/reference/en/class_list.html:42(a) -#: doc/reference/en/LDAP/Mod.html:39(span) -#: doc/reference/en/LDAP/Mod.html:206(a) doc/reference/en/_index.html:876(a) -#: doc/reference/en/LDAP.html:86(a) +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/LDAP/Mod.html:37(span) +#: doc/reference/en/LDAP/Mod.html:218(a) doc/reference/en/_index.html:873(a) +#: doc/reference/en/LDAP.html:93(a) msgid "Mod" msgstr "" +#: doc/reference/en/class_list.html:48(a) +#: doc/reference/en/Net/LDAP/Entry.html:37(span) +#: doc/reference/en/Net/LDAP/Entry.html:240(a) +#: doc/reference/en/Net/LDAP.html:108(a) doc/reference/en/_index.html:592(a) +msgid "Entry" +msgstr "" + +#: doc/reference/en/class_list.html:48(small) +#: doc/reference/en/Net/LDAP.html:81(li) +msgid "Net::LDAP" +msgstr "" + #: doc/reference/en/Net/LDAP/Entry.html:6(title) msgid "Class: Net::LDAP::Entry — ActiveLdap" msgstr "" @@ -11330,7 +11034,6 @@ msgstr "" #: doc/reference/en/ActiveLdap/Acts/Tree.html:17(script) #: doc/reference/en/ActiveLdap/GetText/Parser.html:17(script) #: doc/reference/en/ActiveLdap/Railties/ControllerRuntime.html:17(script) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:17(script) #: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:17(script) #: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:17(script) #: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:17(script) @@ -11362,11 +11065,18 @@ msgstr "" #: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:17(script) #: doc/reference/en/ActiveLdap/Association/HasManyUtils.html:17(script) #: doc/reference/en/ActiveLdap/Association/BelongsTo.html:17(script) +#: doc/reference/en/ActiveLdap/AttributeMethods/Query.html:17(script) +#: doc/reference/en/ActiveLdap/AttributeMethods/Write.html:17(script) +#: doc/reference/en/ActiveLdap/AttributeMethods/BeforeTypeCast.html:17(script) +#: doc/reference/en/ActiveLdap/AttributeMethods/Read.html:17(script) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:17(script) #: doc/reference/en/ActiveLdap/Operations/Find.html:17(script) #: doc/reference/en/ActiveLdap/Operations/Delete.html:17(script) #: doc/reference/en/ActiveLdap/Operations/LDIF.html:17(script) #: doc/reference/en/ActiveLdap/Operations/Common.html:17(script) #: doc/reference/en/ActiveLdap/Operations/Update.html:17(script) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:17(script) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:17(script) #: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:17(script) #: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:17(script) #: doc/reference/en/ActiveLdap/Adapter/Jndi.html:17(script) @@ -11374,6451 +11084,6510 @@ msgstr "" #: doc/reference/en/ActiveLdap/Adapter/Ldap.html:17(script) #: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:17(script) #: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:17(script) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:17(script) #: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:17(script) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:17(script) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:17(script) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:17(script) -msgid "relpath = '../..'; if (relpath != '') relpath += '/';" -msgstr "" - -#: doc/reference/en/Net/LDAP/Entry.html:36(a) -#: doc/reference/en/ActiveLdap/Escape.html:36(a) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:36(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:36(a) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:36(a) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:36(a) -#: doc/reference/en/ActiveLdap/Error.html:36(a) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:36(a) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:36(a) +msgid "" +"hasFrames = window.top.frames.main ? true : false; relpath = '../../'; " +"framesUrl = \"../../frames.html#!\" + escape(window.location.href);" +msgstr "" + +#: doc/reference/en/Net/LDAP/Entry.html:34(a) +#: doc/reference/en/ActiveLdap/Escape.html:34(a) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:34(a) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:34(a) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:34(a) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:34(a) +#: doc/reference/en/ActiveLdap/Error.html:34(a) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:34(a) msgid "Index (E)" msgstr "" -#: doc/reference/en/Net/LDAP/Entry.html:59(h1) +#: doc/reference/en/Net/LDAP/Entry.html:66(h1) msgid "Class: Net::LDAP::Entry" msgstr "" -#: doc/reference/en/Net/LDAP/Entry.html:67(dt) -#: doc/reference/en/Net/LDAP.html:67(dt) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:67(dt) -#: doc/reference/en/ActiveLdap/LdapError.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif.html:67(dt) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:67(dt) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:67(dt) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:67(dt) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:67(dt) -#: doc/reference/en/ActiveLdap/Railtie.html:67(dt) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:67(dt) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:67(dt) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:67(dt) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema.html:67(dt) -#: doc/reference/en/ActiveLdap/DeleteError.html:67(dt) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:67(dt) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:67(dt) -#: doc/reference/en/ActiveLdap/TimeoutError.html:67(dt) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:67(dt) -#: doc/reference/en/ActiveLdap/Base.html:67(dt) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:67(dt) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:67(dt) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:67(dt) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:67(dt) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:67(dt) -#: doc/reference/en/ActiveLdap/NotImplemented.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:67(dt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:67(dt) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:67(dt) -#: doc/reference/en/ActiveLdap/SaveError.html:67(dt) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:67(dt) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:67(dt) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:67(dt) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:67(dt) -#: doc/reference/en/ActiveLdap/ConnectionError.html:67(dt) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:67(dt) -#: doc/reference/en/ActiveLdap/Error.html:67(dt) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:67(dt) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:67(dt) -#: doc/reference/en/ActiveLdap/Association/Collection.html:67(dt) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:67(dt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:67(dt) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:67(dt) -#: doc/reference/en/ActiveLdap/Association/Children.html:67(dt) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:67(dt) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:67(dt) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:67(dt) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:67(dt) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:67(dt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:67(dt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:67(dt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:67(dt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:67(dt) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:67(dt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:67(dt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:67(dt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:67(dt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:67(dt) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:67(dt) -#: doc/reference/en/ActiveLdap/Xml.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:67(dt) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:67(dt) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:67(dt) -#: doc/reference/en/LDAP/Conn.html:67(dt) -#: doc/reference/en/LDAP/Mod.html:67(dt) +#: doc/reference/en/Net/LDAP/Entry.html:74(dt) +#: doc/reference/en/Net/LDAP.html:74(dt) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:74(dt) +#: doc/reference/en/ActiveLdap/LdapError.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif.html:74(dt) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:74(dt) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:74(dt) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:74(dt) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:74(dt) +#: doc/reference/en/ActiveLdap/Railtie.html:74(dt) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:74(dt) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:74(dt) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:74(dt) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema.html:74(dt) +#: doc/reference/en/ActiveLdap/DeleteError.html:74(dt) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:74(dt) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:74(dt) +#: doc/reference/en/ActiveLdap/TimeoutError.html:74(dt) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:74(dt) +#: doc/reference/en/ActiveLdap/Base.html:74(dt) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:74(dt) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:74(dt) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:74(dt) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:74(dt) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:74(dt) +#: doc/reference/en/ActiveLdap/NotImplemented.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:74(dt) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:74(dt) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:74(dt) +#: doc/reference/en/ActiveLdap/SaveError.html:74(dt) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:74(dt) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:74(dt) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:74(dt) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:74(dt) +#: doc/reference/en/ActiveLdap/ConnectionError.html:74(dt) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:74(dt) +#: doc/reference/en/ActiveLdap/Error.html:74(dt) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:74(dt) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:74(dt) +#: doc/reference/en/ActiveLdap/Association/Collection.html:74(dt) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:74(dt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:74(dt) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:74(dt) +#: doc/reference/en/ActiveLdap/Association/Children.html:74(dt) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:74(dt) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:74(dt) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:74(dt) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:74(dt) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:74(dt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:74(dt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:74(dt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:74(dt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:74(dt) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:74(dt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:74(dt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:74(dt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:74(dt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:74(dt) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:74(dt) +#: doc/reference/en/ActiveLdap/Xml.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:74(dt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:74(dt) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:74(dt) +#: doc/reference/en/LDAP/Conn.html:74(dt) +#: doc/reference/en/LDAP/Mod.html:74(dt) msgid "Inherits:" msgstr "" -#: doc/reference/en/Net/LDAP/Entry.html:69(span) -#: doc/reference/en/Net/LDAP/Entry.html:72(li) -#: doc/reference/en/Net/LDAP/Entry.html:214(tt) -#: doc/reference/en/Net/LDAP.html:69(span) -#: doc/reference/en/Net/LDAP.html:72(li) -#: doc/reference/en/Net/LDAP.html:151(tt) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:72(li) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:333(tt) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:364(tt) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:393(tt) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:428(tt) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:483(tt) -#: doc/reference/en/ActiveLdap/Escape.html:147(tt) -#: doc/reference/en/ActiveLdap/Escape.html:176(tt) -#: doc/reference/en/ActiveLdap/Compatible.html:147(tt) -#: doc/reference/en/ActiveLdap/Compatible.html:176(tt) -#: doc/reference/en/ActiveLdap/LdapError.html:72(li) -#: doc/reference/en/ActiveLdap/LdapError.html:190(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:510(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:539(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:596(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:635(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:723(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:770(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:817(tt) +#: doc/reference/en/Net/LDAP/Entry.html:76(span) +#: doc/reference/en/Net/LDAP/Entry.html:79(li) +#: doc/reference/en/Net/LDAP/Entry.html:290(tt) +#: doc/reference/en/Net/LDAP/Entry.html:322(tt) +#: doc/reference/en/Net/LDAP/Entry.html:348(tt) +#: doc/reference/en/Net/LDAP/Entry.html:374(tt) +#: doc/reference/en/Net/LDAP.html:76(span) +#: doc/reference/en/Net/LDAP.html:79(li) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:79(li) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:346(tt) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:378(tt) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:408(tt) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:444(tt) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:500(tt) +#: doc/reference/en/ActiveLdap/Escape.html:158(tt) +#: doc/reference/en/ActiveLdap/Escape.html:188(tt) +#: doc/reference/en/ActiveLdap/Compatible.html:158(tt) +#: doc/reference/en/ActiveLdap/Compatible.html:224(tt) +#: doc/reference/en/ActiveLdap/LdapError.html:79(li) +#: doc/reference/en/ActiveLdap/LdapError.html:185(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:533(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:563(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:620(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:660(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:750(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:798(tt) #: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:846(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:885(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:940(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:973(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1022(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1055(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1128(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1169(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1210(tt) -#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1243(tt) -#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:139(tt) -#: doc/reference/en/ActiveLdap/Ldif.html:69(span) -#: doc/reference/en/ActiveLdap/Ldif.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif.html:386(tt) -#: doc/reference/en/ActiveLdap/Ldif.html:430(tt) -#: doc/reference/en/ActiveLdap/Ldif.html:478(tt) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:283(tt) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:328(tt) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:376(tt) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:413(tt) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:468(tt) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:513(tt) -#: doc/reference/en/ActiveLdap/Acts/Tree.html:557(tt) -#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:126(tt) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:72(li) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:291(tt) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:335(tt) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:69(span) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:72(li) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:278(tt) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:329(tt) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:72(li) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:72(li) -#: doc/reference/en/ActiveLdap/Railtie.html:72(li) -#: doc/reference/en/ActiveLdap/Railties/ControllerRuntime/ClassMethods.html:126(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:306(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:345(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:374(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:403(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:560(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:605(tt) -#: doc/reference/en/ActiveLdap/Persistence.html:638(tt) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:240(tt) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:275(tt) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:304(tt) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:351(tt) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:380(tt) -#: doc/reference/en/ActiveLdap/GetTextFallback/Translation.html:409(tt) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:178(tt) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:205(tt) -#: doc/reference/en/ActiveLdap/GetTextFallback.html:232(tt) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:72(li) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:262(tt) -#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:126(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:378(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:411(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:456(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:491(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:544(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:577(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:622(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:651(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:690(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:751(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:784(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:829(tt) -#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:858(tt) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:72(li) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:146(tt) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:72(li) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:167(tt) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:244(tt) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:297(tt) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:326(tt) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:382(tt) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:447(tt) -#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:514(tt) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:189(tt) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:293(tt) -#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:326(tt) -#: doc/reference/en/ActiveLdap/Connection.html:313(tt) -#: doc/reference/en/ActiveLdap/Connection.html:399(tt) -#: doc/reference/en/ActiveLdap/Connection.html:450(tt) -#: doc/reference/en/ActiveLdap/Connection.html:493(tt) -#: doc/reference/en/ActiveLdap/Connection.html:532(tt) -#: doc/reference/en/ActiveLdap/Connection.html:563(tt) -#: doc/reference/en/ActiveLdap/Connection.html:608(tt) -#: doc/reference/en/ActiveLdap/Connection.html:637(tt) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:72(li) -#: doc/reference/en/ActiveLdap/Schema.html:69(span) -#: doc/reference/en/ActiveLdap/Schema.html:72(li) -#: doc/reference/en/ActiveLdap/Schema.html:625(tt) -#: doc/reference/en/ActiveLdap/Schema.html:658(tt) -#: doc/reference/en/ActiveLdap/Schema.html:691(tt) -#: doc/reference/en/ActiveLdap/Schema.html:728(tt) -#: doc/reference/en/ActiveLdap/Schema.html:761(tt) -#: doc/reference/en/ActiveLdap/Schema.html:804(tt) -#: doc/reference/en/ActiveLdap/Schema.html:956(tt) -#: doc/reference/en/ActiveLdap/Schema.html:1015(tt) -#: doc/reference/en/ActiveLdap/Schema.html:1048(tt) -#: doc/reference/en/ActiveLdap/Schema.html:1081(tt) -#: doc/reference/en/ActiveLdap/Schema.html:1114(tt) -#: doc/reference/en/ActiveLdap/Schema.html:1151(tt) -#: doc/reference/en/ActiveLdap/Schema.html:1180(tt) -#: doc/reference/en/ActiveLdap/Schema.html:1213(tt) -#: doc/reference/en/ActiveLdap/Schema.html:1246(tt) -#: doc/reference/en/ActiveLdap/Schema.html:1283(tt) -#: doc/reference/en/ActiveLdap/DeleteError.html:72(li) -#: doc/reference/en/ActiveLdap/Validations.html:224(tt) -#: doc/reference/en/ActiveLdap/Validations.html:253(tt) -#: doc/reference/en/ActiveLdap/Validations.html:337(tt) -#: doc/reference/en/ActiveLdap/Validations.html:366(tt) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:72(li) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:411(tt) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:455(tt) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:499(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:876(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:916(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:972(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1006(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1056(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1092(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1166(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1207(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1249(tt) +#: doc/reference/en/ActiveLdap/Connection/ClassMethods.html:1283(tt) +#: doc/reference/en/ActiveLdap/UserPassword/Salt.html:150(tt) +#: doc/reference/en/ActiveLdap/Ldif.html:76(span) +#: doc/reference/en/ActiveLdap/Ldif.html:79(li) +#: doc/reference/en/ActiveLdap/Ldif.html:401(tt) +#: doc/reference/en/ActiveLdap/Ldif.html:444(tt) +#: doc/reference/en/ActiveLdap/Ldif.html:492(tt) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:295(tt) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:341(tt) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:388(tt) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:426(tt) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:482(tt) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:527(tt) +#: doc/reference/en/ActiveLdap/Acts/Tree.html:570(tt) +#: doc/reference/en/ActiveLdap/Acts/Tree/ClassMethods.html:136(tt) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:79(li) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:289(tt) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:332(tt) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:76(span) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:79(li) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:284(tt) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:336(tt) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:79(li) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:79(li) +#: doc/reference/en/ActiveLdap/Railtie.html:79(li) +#: doc/reference/en/ActiveLdap/Persistence.html:342(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:382(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:412(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:442(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:597(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:653(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:697(tt) +#: doc/reference/en/ActiveLdap/Persistence.html:731(tt) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:79(li) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:258(tt) +#: doc/reference/en/ActiveLdap/ObjectClass/ClassMethods.html:136(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:400(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:434(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:480(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:516(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:570(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:604(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:650(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:680(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:720(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:782(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:816(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:862(tt) +#: doc/reference/en/ActiveLdap/HumanReadable/ClassMethods.html:892(tt) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:79(li) +#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:154(tt) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:79(li) +#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:169(tt) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:256(tt) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:309(tt) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:339(tt) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:393(tt) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:459(tt) +#: doc/reference/en/ActiveLdap/Attributes/Normalizable.html:525(tt) +#: doc/reference/en/ActiveLdap/Attributes/ClassMethods.html:232(tt) +#: doc/reference/en/ActiveLdap/Connection.html:331(tt) +#: doc/reference/en/ActiveLdap/Connection.html:419(tt) +#: doc/reference/en/ActiveLdap/Connection.html:471(tt) +#: doc/reference/en/ActiveLdap/Connection.html:515(tt) +#: doc/reference/en/ActiveLdap/Connection.html:555(tt) +#: doc/reference/en/ActiveLdap/Connection.html:587(tt) +#: doc/reference/en/ActiveLdap/Connection.html:633(tt) +#: doc/reference/en/ActiveLdap/Connection.html:663(tt) +#: doc/reference/en/ActiveLdap/AuthenticationError.html:79(li) +#: doc/reference/en/ActiveLdap/Schema.html:76(span) +#: doc/reference/en/ActiveLdap/Schema.html:79(li) +#: doc/reference/en/ActiveLdap/Schema.html:633(tt) +#: doc/reference/en/ActiveLdap/Schema.html:667(tt) +#: doc/reference/en/ActiveLdap/Schema.html:701(tt) +#: doc/reference/en/ActiveLdap/Schema.html:739(tt) +#: doc/reference/en/ActiveLdap/Schema.html:773(tt) +#: doc/reference/en/ActiveLdap/Schema.html:817(tt) +#: doc/reference/en/ActiveLdap/Schema.html:973(tt) +#: doc/reference/en/ActiveLdap/Schema.html:1030(tt) +#: doc/reference/en/ActiveLdap/Schema.html:1066(tt) +#: doc/reference/en/ActiveLdap/Schema.html:1100(tt) +#: doc/reference/en/ActiveLdap/Schema.html:1134(tt) +#: doc/reference/en/ActiveLdap/Schema.html:1172(tt) +#: doc/reference/en/ActiveLdap/Schema.html:1202(tt) +#: doc/reference/en/ActiveLdap/Schema.html:1236(tt) +#: doc/reference/en/ActiveLdap/Schema.html:1270(tt) +#: doc/reference/en/ActiveLdap/Schema.html:1308(tt) +#: doc/reference/en/ActiveLdap/DeleteError.html:79(li) +#: doc/reference/en/ActiveLdap/Validations.html:234(tt) +#: doc/reference/en/ActiveLdap/Validations.html:264(tt) +#: doc/reference/en/ActiveLdap/Validations.html:350(tt) +#: doc/reference/en/ActiveLdap/Validations.html:380(tt) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:79(li) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:414(tt) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:457(tt) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:500(tt) #: doc/reference/en/ActiveLdap/LdifInvalid.html:543(tt) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:587(tt) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:69(span) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:72(li) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:594(tt) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:642(tt) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:679(tt) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:714(tt) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:743(tt) -#: doc/reference/en/ActiveLdap/GetTextSupport.html:130(tt) -#: doc/reference/en/ActiveLdap/Attributes.html:136(tt) -#: doc/reference/en/ActiveLdap/TimeoutError.html:72(li) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:69(span) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:72(li) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:231(tt) -#: doc/reference/en/ActiveLdap/Base.html:69(span) -#: doc/reference/en/ActiveLdap/Base.html:72(li) -#: doc/reference/en/ActiveLdap/Base.html:1887(tt) -#: doc/reference/en/ActiveLdap/Base.html:2003(tt) -#: doc/reference/en/ActiveLdap/Base.html:2102(tt) -#: doc/reference/en/ActiveLdap/Base.html:2153(tt) -#: doc/reference/en/ActiveLdap/Base.html:2184(tt) -#: doc/reference/en/ActiveLdap/Base.html:2221(tt) -#: doc/reference/en/ActiveLdap/Base.html:2254(tt) -#: doc/reference/en/ActiveLdap/Base.html:2297(tt) -#: doc/reference/en/ActiveLdap/Base.html:2338(tt) -#: doc/reference/en/ActiveLdap/Base.html:2367(tt) -#: doc/reference/en/ActiveLdap/Base.html:2419(tt) -#: doc/reference/en/ActiveLdap/Base.html:2466(tt) -#: doc/reference/en/ActiveLdap/Base.html:2501(tt) -#: doc/reference/en/ActiveLdap/Base.html:2576(tt) -#: doc/reference/en/ActiveLdap/Base.html:2652(tt) -#: doc/reference/en/ActiveLdap/Base.html:2703(tt) -#: doc/reference/en/ActiveLdap/Base.html:2732(tt) -#: doc/reference/en/ActiveLdap/Base.html:2765(tt) -#: doc/reference/en/ActiveLdap/Base.html:2796(tt) -#: doc/reference/en/ActiveLdap/Base.html:2821(tt) -#: doc/reference/en/ActiveLdap/Base.html:2864(tt) -#: doc/reference/en/ActiveLdap/Base.html:2971(tt) -#: doc/reference/en/ActiveLdap/Base.html:3034(tt) -#: doc/reference/en/ActiveLdap/Base.html:3082(tt) -#: doc/reference/en/ActiveLdap/Base.html:3119(tt) -#: doc/reference/en/ActiveLdap/Base.html:3148(tt) -#: doc/reference/en/ActiveLdap/Base.html:3158(tt) -#: doc/reference/en/ActiveLdap/Base.html:3256(tt) -#: doc/reference/en/ActiveLdap/Base.html:3299(tt) -#: doc/reference/en/ActiveLdap/Base.html:3372(tt) -#: doc/reference/en/ActiveLdap/Base.html:3401(tt) -#: doc/reference/en/ActiveLdap/Base.html:3436(tt) -#: doc/reference/en/ActiveLdap/Base.html:3507(tt) -#: doc/reference/en/ActiveLdap/Base.html:3540(tt) -#: doc/reference/en/ActiveLdap/Base.html:3571(tt) -#: doc/reference/en/ActiveLdap/Base.html:3600(tt) -#: doc/reference/en/ActiveLdap/Base.html:3629(tt) -#: doc/reference/en/ActiveLdap/Base.html:3658(tt) -#: doc/reference/en/ActiveLdap/Base.html:3702(tt) -#: doc/reference/en/ActiveLdap/Base.html:3735(tt) -#: doc/reference/en/ActiveLdap/Base.html:3768(tt) -#: doc/reference/en/ActiveLdap/Base.html:3793(tt) -#: doc/reference/en/ActiveLdap/Base.html:3941(tt) -#: doc/reference/en/ActiveLdap/Base.html:4064(tt) -#: doc/reference/en/ActiveLdap/Base.html:4093(tt) -#: doc/reference/en/ActiveLdap/Base.html:4146(tt) -#: doc/reference/en/ActiveLdap/Base.html:4175(tt) -#: doc/reference/en/ActiveLdap/Base.html:4224(tt) -#: doc/reference/en/ActiveLdap/Base.html:4253(tt) -#: doc/reference/en/ActiveLdap/Base.html:4369(tt) -#: doc/reference/en/ActiveLdap/Base.html:4394(tt) -#: doc/reference/en/ActiveLdap/Base.html:4423(tt) -#: doc/reference/en/ActiveLdap/Base.html:4452(tt) -#: doc/reference/en/ActiveLdap/Base.html:4483(tt) -#: doc/reference/en/ActiveLdap/Base.html:4508(tt) -#: doc/reference/en/ActiveLdap/Base.html:4554(tt) -#: doc/reference/en/ActiveLdap/Base.html:4583(tt) -#: doc/reference/en/ActiveLdap/Base.html:4612(tt) -#: doc/reference/en/ActiveLdap/Base.html:4641(tt) -#: doc/reference/en/ActiveLdap/Base.html:4670(tt) -#: doc/reference/en/ActiveLdap/Base.html:4725(tt) -#: doc/reference/en/ActiveLdap/Base.html:4768(tt) -#: doc/reference/en/ActiveLdap/Base.html:4811(tt) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:72(li) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:72(li) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:301(tt) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:345(tt) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:72(li) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:72(li) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:262(tt) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:72(li) -#: doc/reference/en/ActiveLdap/NotImplemented.html:72(li) -#: doc/reference/en/ActiveLdap/NotImplemented.html:262(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:392(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:69(span) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:360(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:404(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:452(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:538(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:567(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:604(tt) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:147(tt) -#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:192(tt) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:69(span) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:341(tt) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:385(tt) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:433(tt) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:468(tt) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:497(tt) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:246(tt) -#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:325(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:69(span) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:426(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:455(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:486(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:519(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:607(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:646(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:687(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:718(tt) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:751(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:349(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:393(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:436(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:480(tt) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:528(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:69(span) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:441(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:485(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:529(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:573(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:621(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:760(tt) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:840(tt) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:69(span) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:72(li) +#: doc/reference/en/ActiveLdap/LdifInvalid.html:586(tt) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:76(span) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:79(li) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:612(tt) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:660(tt) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:698(tt) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:734(tt) +#: doc/reference/en/ActiveLdap/DistinguishedName.html:764(tt) +#: doc/reference/en/ActiveLdap/GetTextSupport.html:140(tt) +#: doc/reference/en/ActiveLdap/Attributes.html:146(tt) +#: doc/reference/en/ActiveLdap/TimeoutError.html:79(li) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:76(span) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:79(li) +#: doc/reference/en/ActiveLdap/Xml/Serializer.html:240(tt) +#: doc/reference/en/ActiveLdap/Base.html:76(span) +#: doc/reference/en/ActiveLdap/Base.html:79(li) +#: doc/reference/en/ActiveLdap/Base.html:1833(tt) +#: doc/reference/en/ActiveLdap/Base.html:1933(tt) +#: doc/reference/en/ActiveLdap/Base.html:1982(tt) +#: doc/reference/en/ActiveLdap/Base.html:2014(tt) +#: doc/reference/en/ActiveLdap/Base.html:2052(tt) +#: doc/reference/en/ActiveLdap/Base.html:2126(tt) +#: doc/reference/en/ActiveLdap/Base.html:2170(tt) +#: doc/reference/en/ActiveLdap/Base.html:2212(tt) +#: doc/reference/en/ActiveLdap/Base.html:2242(tt) +#: doc/reference/en/ActiveLdap/Base.html:2294(tt) +#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:79(li) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:79(li) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:299(tt) +#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:342(tt) +#: doc/reference/en/ActiveLdap/ObjectClassError.html:79(li) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:79(li) +#: doc/reference/en/ActiveLdap/AdapterNotFound.html:258(tt) +#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:79(li) +#: doc/reference/en/ActiveLdap/NotImplemented.html:79(li) +#: doc/reference/en/ActiveLdap/NotImplemented.html:258(tt) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:79(li) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:376(tt) +#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:79(li) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:158(tt) +#: doc/reference/en/ActiveLdap/Ldif/Attributes.html:204(tt) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:76(span) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:79(li) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:350(tt) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:393(tt) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:441(tt) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:477(tt) +#: doc/reference/en/ActiveLdap/Ldif/Record.html:507(tt) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:258(tt) +#: doc/reference/en/ActiveLdap/Ldif/Attribute.html:338(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:76(span) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:79(li) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:443(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:473(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:505(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:539(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:629(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:669(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:711(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:743(tt) +#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:777(tt) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:79(li) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:344(tt) +#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:387(tt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:79(li) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:432(tt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:475(tt) +#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:523(tt) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:76(span) +#: doc/reference/en/ActiveLdap/Ldif/Parser.html:79(li) #: doc/reference/en/ActiveLdap/Ldif/Parser.html:307(tt) #: doc/reference/en/ActiveLdap/Ldif/Parser.html:355(tt) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:72(li) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:72(li) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:69(span) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:72(li) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:453(tt) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:497(tt) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:541(tt) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:585(tt) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:633(tt) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:662(tt) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:705(tt) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:758(tt) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:149(tt) -#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:184(tt) -#: doc/reference/en/ActiveLdap/SaveError.html:72(li) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:313(tt) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:342(tt) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:371(tt) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:400(tt) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:429(tt) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:496(tt) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:561(tt) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:626(tt) -#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:655(tt) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:72(li) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:72(li) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:72(li) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:72(li) -#: doc/reference/en/ActiveLdap/ObjectClass.html:252(tt) -#: doc/reference/en/ActiveLdap/ObjectClass.html:287(tt) -#: doc/reference/en/ActiveLdap/ObjectClass.html:316(tt) -#: doc/reference/en/ActiveLdap/ObjectClass.html:345(tt) -#: doc/reference/en/ActiveLdap/ObjectClass.html:374(tt) -#: doc/reference/en/ActiveLdap/ObjectClass.html:403(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:325(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:356(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:387(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:424(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:453(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:482(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:511(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:540(tt) -#: doc/reference/en/ActiveLdap/UserPassword.html:579(tt) -#: doc/reference/en/ActiveLdap/Command.html:168(tt) -#: doc/reference/en/ActiveLdap/Command.html:251(tt) -#: doc/reference/en/ActiveLdap/ConnectionError.html:72(li) -#: doc/reference/en/ActiveLdap/Populate.html:168(tt) -#: doc/reference/en/ActiveLdap/Populate.html:227(tt) -#: doc/reference/en/ActiveLdap/Populate.html:282(tt) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:69(span) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:72(li) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:313(tt) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:361(tt) -#: doc/reference/en/ActiveLdap/Error.html:72(li) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:72(li) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:72(li) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:264(tt) -#: doc/reference/en/ActiveLdap/Association/Collection.html:72(li) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:72(li) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:69(span) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:72(li) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:412(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:450(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:532(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:612(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:637(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:668(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:752(tt) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:781(tt) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:72(li) -#: doc/reference/en/ActiveLdap/Association/Children.html:72(li) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:72(li) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:72(li) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:197(tt) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:72(li) -#: doc/reference/en/ActiveLdap/Helper.html:264(tt) -#: doc/reference/en/ActiveLdap/Helper.html:297(tt) -#: doc/reference/en/ActiveLdap/Helper.html:330(tt) -#: doc/reference/en/ActiveLdap/Helper.html:469(tt) -#: doc/reference/en/ActiveLdap/Helper.html:502(tt) -#: doc/reference/en/ActiveLdap/Helper.html:535(tt) -#: doc/reference/en/ActiveLdap/Helper.html:568(tt) -#: doc/reference/en/ActiveLdap/HumanReadable.html:140(tt) -#: doc/reference/en/ActiveLdap/Callbacks.html:212(tt) -#: doc/reference/en/ActiveLdap/Callbacks.html:294(tt) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:72(li) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:262(tt) -#: doc/reference/en/ActiveLdap/Operations/Find.html:201(tt) -#: doc/reference/en/ActiveLdap/Operations/Find.html:243(tt) -#: doc/reference/en/ActiveLdap/Operations/Find.html:321(tt) -#: doc/reference/en/ActiveLdap/Operations/Find.html:363(tt) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:210(tt) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:247(tt) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:306(tt) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:347(tt) -#: doc/reference/en/ActiveLdap/Operations/Delete.html:382(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:126(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:126(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:126(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:126(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:126(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:126(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:136(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:126(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:199(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:242(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:277(tt) -#: doc/reference/en/ActiveLdap/Operations/LDIF.html:306(tt) -#: doc/reference/en/ActiveLdap/Operations/Common.html:185(tt) -#: doc/reference/en/ActiveLdap/Operations/Common.html:307(tt) -#: doc/reference/en/ActiveLdap/Operations/Update.html:210(tt) -#: doc/reference/en/ActiveLdap/Operations/Update.html:247(tt) -#: doc/reference/en/ActiveLdap/Operations/Update.html:286(tt) -#: doc/reference/en/ActiveLdap/Operations/Update.html:319(tt) -#: doc/reference/en/ActiveLdap/Operations/Update.html:370(tt) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:218(tt) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:247(tt) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:375(tt) -#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:501(tt) -#: doc/reference/en/ActiveLdap/Associations.html:182(tt) -#: doc/reference/en/ActiveLdap/Associations.html:223(tt) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:72(li) -#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:126(tt) -#: doc/reference/en/ActiveLdap/Configuration.html:166(tt) -#: doc/reference/en/ActiveLdap/Operations.html:136(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:69(span) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:72(li) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:72(li) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:160(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:72(li) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:181(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:72(li) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:181(tt) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:72(li) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:355(tt) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:390(tt) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:425(tt) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:466(tt) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:499(tt) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:534(tt) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:583(tt) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:624(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:69(span) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:72(li) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:756(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:804(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:835(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:866(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:903(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:966(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1051(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1131(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1229(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1288(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1321(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1352(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1387(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1442(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1477(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1506(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1537(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1568(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1649(tt) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:1716(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:72(li) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:372(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:421(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:454(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:489(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:530(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:579(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:628(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:681(tt) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:760(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:69(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:72(li) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:494(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:531(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:613(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:642(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:673(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:712(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:743(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:804(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:835(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:69(span) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:72(li) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:384(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:428(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:472(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:571(tt) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:612(tt) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:72(li) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:382(tt) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:431(tt) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:468(tt) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:503(tt) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:562(tt) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:599(tt) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:638(tt) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:697(tt) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:766(tt) -#: doc/reference/en/ActiveLdap/Xml.html:69(span) -#: doc/reference/en/ActiveLdap/Xml.html:72(li) -#: doc/reference/en/ActiveLdap/Xml.html:226(tt) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:69(span) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:410(tt) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:454(tt) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:498(tt) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:542(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:136(tt) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:204(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:241(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:223(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:270(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:204(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:241(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:69(span) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:254(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:283(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:363(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:204(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:241(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:204(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:247(tt) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:72(li) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:437(tt) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:72(li) -#: doc/reference/en/ActiveLdap.html:213(tt) -#: doc/reference/en/LDAP/Conn.html:69(span) -#: doc/reference/en/LDAP/Conn.html:72(li) -#: doc/reference/en/LDAP/Conn.html:225(tt) -#: doc/reference/en/LDAP/Conn.html:272(tt) -#: doc/reference/en/LDAP/Conn.html:305(tt) -#: doc/reference/en/LDAP/Conn.html:393(tt) -#: doc/reference/en/LDAP/Mod.html:69(span) -#: doc/reference/en/LDAP/Mod.html:72(li) -#: doc/reference/en/LDAP/Mod.html:260(tt) -#: doc/reference/en/LDAP/Mod.html:285(tt) -#: doc/reference/en/LDAP/Mod.html:310(tt) -#: doc/reference/en/Timeout.html:131(tt) +#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:79(li) +#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:79(li) +#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:79(li) +#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:79(li) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:76(span) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:79(li) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:466(tt) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:509(tt) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:552(tt) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:595(tt) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:643(tt) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:673(tt) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:717(tt) +#: doc/reference/en/ActiveLdap/EntryAttribute.html:771(tt) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:160(tt) +#: doc/reference/en/ActiveLdap/Callbacks/ClassMethods.html:196(tt) +#: doc/reference/en/ActiveLdap/SaveError.html:79(li) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:329(tt) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:359(tt) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:389(tt) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:419(tt) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:449(tt) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:517(tt) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:583(tt) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:649(tt) +#: doc/reference/en/ActiveLdap/Configuration/ClassMethods.html:679(tt) +#: doc/reference/en/ActiveLdap/AttributeMethods.html:158(tt) +#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:79(li) +#: doc/reference/en/ActiveLdap/EntryNotSaved.html:79(li) +#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:79(li) +#: doc/reference/en/ActiveLdap/EntryNotFound.html:79(li) +#: doc/reference/en/ActiveLdap/ObjectClass.html:267(tt) +#: doc/reference/en/ActiveLdap/ObjectClass.html:303(tt) +#: doc/reference/en/ActiveLdap/ObjectClass.html:333(tt) +#: doc/reference/en/ActiveLdap/ObjectClass.html:363(tt) +#: doc/reference/en/ActiveLdap/ObjectClass.html:393(tt) +#: doc/reference/en/ActiveLdap/ObjectClass.html:423(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:344(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:376(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:408(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:446(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:476(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:506(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:536(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:566(tt) +#: doc/reference/en/ActiveLdap/UserPassword.html:606(tt) +#: doc/reference/en/ActiveLdap/Command.html:173(tt) +#: doc/reference/en/ActiveLdap/Command.html:257(tt) +#: doc/reference/en/ActiveLdap/ConnectionError.html:79(li) +#: doc/reference/en/ActiveLdap/Populate.html:180(tt) +#: doc/reference/en/ActiveLdap/Populate.html:240(tt) +#: doc/reference/en/ActiveLdap/Populate.html:296(tt) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:76(span) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:79(li) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:284(tt) +#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:332(tt) +#: doc/reference/en/ActiveLdap/Error.html:79(li) +#: doc/reference/en/ActiveLdap/ConfigurationError.html:79(li) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:79(li) +#: doc/reference/en/ActiveLdap/EntryInvalid.html:260(tt) +#: doc/reference/en/ActiveLdap/Association/Collection.html:79(li) +#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:79(li) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:76(span) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:79(li) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:431(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:470(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:554(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:636(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:662(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:694(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:780(tt) +#: doc/reference/en/ActiveLdap/Association/Proxy.html:810(tt) +#: doc/reference/en/ActiveLdap/Association/HasMany.html:79(li) +#: doc/reference/en/ActiveLdap/Association/Children.html:79(li) +#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:79(li) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:79(li) +#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:202(tt) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:198(tt) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:245(tt) +#: doc/reference/en/ActiveLdap/AttributeMethods/Dirty.html:297(tt) +#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:79(li) +#: doc/reference/en/ActiveLdap/Helper.html:280(tt) +#: doc/reference/en/ActiveLdap/Helper.html:314(tt) +#: doc/reference/en/ActiveLdap/Helper.html:348(tt) +#: doc/reference/en/ActiveLdap/Helper.html:488(tt) +#: doc/reference/en/ActiveLdap/Helper.html:522(tt) +#: doc/reference/en/ActiveLdap/Helper.html:556(tt) +#: doc/reference/en/ActiveLdap/Helper.html:590(tt) +#: doc/reference/en/ActiveLdap/HumanReadable.html:146(tt) +#: doc/reference/en/ActiveLdap/Callbacks.html:218(tt) +#: doc/reference/en/ActiveLdap/Callbacks.html:300(tt) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:79(li) +#: doc/reference/en/ActiveLdap/UnknownAttribute.html:258(tt) +#: doc/reference/en/ActiveLdap/Operations/Find.html:210(tt) +#: doc/reference/en/ActiveLdap/Operations/Find.html:252(tt) +#: doc/reference/en/ActiveLdap/Operations/Find.html:327(tt) +#: doc/reference/en/ActiveLdap/Operations/Find.html:369(tt) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:180(tt) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:240(tt) +#: doc/reference/en/ActiveLdap/Operations/Delete.html:282(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF/DeleteRecordLoadable.html:136(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyNameRecordLoadable.html:136(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/DeleteOperationModifiable.html:136(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/AddOperationModifiable.html:136(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable/ReplaceOperationModifiable.html:136(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF/AddRecordLoadable.html:136(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ModifyRecordLoadable.html:146(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF/ContentRecordLoadable.html:136(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:212(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:256(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:292(tt) +#: doc/reference/en/ActiveLdap/Operations/LDIF.html:322(tt) +#: doc/reference/en/ActiveLdap/Operations/Common.html:196(tt) +#: doc/reference/en/ActiveLdap/Operations/Common.html:320(tt) +#: doc/reference/en/ActiveLdap/Operations/Update.html:202(tt) +#: doc/reference/en/ActiveLdap/Operations/Update.html:240(tt) +#: doc/reference/en/ActiveLdap/Operations/Update.html:280(tt) +#: doc/reference/en/ActiveLdap/Operations/Update.html:314(tt) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyUpdate.html:136(tt) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:158(tt) +#: doc/reference/en/ActiveLdap/Operations/ClassOnlyDelete.html:196(tt) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:209(tt) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:239(tt) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:380(tt) +#: doc/reference/en/ActiveLdap/Associations/ClassMethods.html:503(tt) +#: doc/reference/en/ActiveLdap/Associations.html:191(tt) +#: doc/reference/en/ActiveLdap/Associations.html:233(tt) +#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:79(li) +#: doc/reference/en/ActiveLdap/ActionController/LdapBenchmarking.html:136(tt) +#: doc/reference/en/ActiveLdap/Configuration.html:173(tt) +#: doc/reference/en/ActiveLdap/Operations.html:146(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:76(span) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:79(li) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:79(li) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:164(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:79(li) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:186(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:79(li) +#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:186(tt) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:79(li) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:362(tt) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:398(tt) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:434(tt) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:476(tt) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:510(tt) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:546(tt) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:596(tt) +#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:638(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:76(span) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:79(li) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:773(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:821(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:853(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:885(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:923(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:987(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1073(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1155(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1255(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1315(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1349(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1381(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1417(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1473(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1509(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1539(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1571(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1603(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1685(tt) +#: doc/reference/en/ActiveLdap/Adapter/Base.html:1753(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:79(li) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:381(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:431(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:465(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:501(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:543(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:593(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:643(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:697(tt) +#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:777(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:76(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:79(li) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:502(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:540(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:624(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:654(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:686(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:726(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:758(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:820(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:852(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:76(span) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:79(li) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:396(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:439(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:482(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:582(tt) +#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:624(tt) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:79(li) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:384(tt) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:434(tt) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:472(tt) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:508(tt) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:568(tt) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:606(tt) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:646(tt) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:706(tt) +#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:776(tt) +#: doc/reference/en/ActiveLdap/Xml.html:76(span) +#: doc/reference/en/ActiveLdap/Xml.html:79(li) +#: doc/reference/en/ActiveLdap/Xml.html:236(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes.html:146(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:206(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:244(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:224(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:272(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:206(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:244(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:76(span) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:258(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:288(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:370(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:206(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:244(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:206(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:250(tt) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:79(li) +#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:79(li) +#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:79(li) +#: doc/reference/en/ActiveLdap.html:214(tt) +#: doc/reference/en/LDAP/Conn.html:76(span) +#: doc/reference/en/LDAP/Conn.html:79(li) +#: doc/reference/en/LDAP/Conn.html:239(tt) +#: doc/reference/en/LDAP/Conn.html:309(tt) +#: doc/reference/en/LDAP/Conn.html:343(tt) +#: doc/reference/en/LDAP/Conn.html:433(tt) +#: doc/reference/en/LDAP/Mod.html:76(span) +#: doc/reference/en/LDAP/Mod.html:79(li) +#: doc/reference/en/LDAP/Mod.html:272(tt) +#: doc/reference/en/LDAP/Mod.html:298(tt) +#: doc/reference/en/LDAP/Mod.html:324(tt) +#: doc/reference/en/Timeout.html:140(tt) msgid "Object" msgstr "" -#: doc/reference/en/Net/LDAP/Entry.html:77(a) -#: doc/reference/en/Net/LDAP.html:77(a) -#: doc/reference/en/ActiveLdap/LogSubscriber.html:79(a) -#: doc/reference/en/ActiveLdap/LdapError.html:81(a) -#: doc/reference/en/ActiveLdap/Ldif.html:77(a) -#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:81(a) -#: doc/reference/en/ActiveLdap/GetText/Parser.html:77(a) -#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:81(a) -#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:81(a) -#: doc/reference/en/ActiveLdap/Railtie.html:79(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:81(a) -#: doc/reference/en/ActiveLdap/Generators/ScaffoldGenerator.html:79(a) -#: doc/reference/en/ActiveLdap/Generators/ModelGenerator.html:79(a) -#: doc/reference/en/ActiveLdap/AuthenticationError.html:81(a) -#: doc/reference/en/ActiveLdap/Schema.html:77(a) -#: doc/reference/en/ActiveLdap/DeleteError.html:81(a) -#: doc/reference/en/ActiveLdap/LdifInvalid.html:81(a) -#: doc/reference/en/ActiveLdap/DistinguishedName.html:77(a) -#: doc/reference/en/ActiveLdap/TimeoutError.html:81(a) -#: doc/reference/en/ActiveLdap/Xml/Serializer.html:77(a) -#: doc/reference/en/ActiveLdap/Base.html:77(a) -#: doc/reference/en/ActiveLdap/AdapterNotSpecified.html:81(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameInvalid.html:81(a) -#: doc/reference/en/ActiveLdap/ObjectClassError.html:81(a) -#: doc/reference/en/ActiveLdap/AdapterNotFound.html:81(a) -#: doc/reference/en/ActiveLdap/OperationNotPermitted.html:81(a) -#: doc/reference/en/ActiveLdap/NotImplemented.html:81(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord.html:81(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyDNRecord.html:83(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord/Control.html:77(a) -#: doc/reference/en/ActiveLdap/Ldif/Record.html:77(a) -#: doc/reference/en/ActiveLdap/Ldif/Scanner.html:77(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyNameRecord.html:81(a) -#: doc/reference/en/ActiveLdap/Ldif/ChangeRecord.html:79(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/AddOperation.html:79(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/ReplaceOperation.html:79(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/DeleteOperation.html:79(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRecord/Operation.html:77(a) -#: doc/reference/en/ActiveLdap/Ldif/Parser.html:77(a) -#: doc/reference/en/ActiveLdap/Ldif/AddRecord.html:81(a) -#: doc/reference/en/ActiveLdap/Ldif/ContentRecord.html:79(a) -#: doc/reference/en/ActiveLdap/Ldif/DeleteRecord.html:81(a) -#: doc/reference/en/ActiveLdap/Ldif/ModifyRDNRecord.html:83(a) -#: doc/reference/en/ActiveLdap/EntryAttribute.html:77(a) -#: doc/reference/en/ActiveLdap/SaveError.html:81(a) -#: doc/reference/en/ActiveLdap/AttributeAssignmentError.html:81(a) -#: doc/reference/en/ActiveLdap/EntryNotSaved.html:81(a) -#: doc/reference/en/ActiveLdap/DistinguishedNameNotSetError.html:81(a) -#: doc/reference/en/ActiveLdap/EntryNotFound.html:81(a) -#: doc/reference/en/ActiveLdap/ConnectionError.html:81(a) -#: doc/reference/en/ActiveLdap/DistinguishedName/Parser.html:77(a) -#: doc/reference/en/ActiveLdap/Error.html:79(a) -#: doc/reference/en/ActiveLdap/ConfigurationError.html:81(a) -#: doc/reference/en/ActiveLdap/EntryInvalid.html:81(a) -#: doc/reference/en/ActiveLdap/Association/Collection.html:79(a) -#: doc/reference/en/ActiveLdap/Association/BelongsToMany.html:81(a) -#: doc/reference/en/ActiveLdap/Association/Proxy.html:77(a) -#: doc/reference/en/ActiveLdap/Association/HasMany.html:81(a) -#: doc/reference/en/ActiveLdap/Association/Children.html:81(a) -#: doc/reference/en/ActiveLdap/Association/HasManyWrap.html:81(a) -#: doc/reference/en/ActiveLdap/Association/BelongsTo.html:79(a) -#: doc/reference/en/ActiveLdap/ConnectionNotSetup.html:81(a) -#: doc/reference/en/ActiveLdap/UnknownAttribute.html:81(a) -#: doc/reference/en/ActiveLdap/RequiredAttributeMissed.html:81(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Base.html:77(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/Plain.html:79(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/TLS.html:79(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap/Method/SSL.html:79(a) -#: doc/reference/en/ActiveLdap/Adapter/Jndi.html:79(a) -#: doc/reference/en/ActiveLdap/Adapter/Base.html:77(a) -#: doc/reference/en/ActiveLdap/Adapter/Ldap.html:79(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection.html:77(a) -#: doc/reference/en/ActiveLdap/Adapter/JndiConnection/ModifyRecord.html:77(a) -#: doc/reference/en/ActiveLdap/Adapter/NetLdap.html:79(a) -#: doc/reference/en/ActiveLdap/Xml.html:77(a) -#: doc/reference/en/ActiveLdap/Schema/Entry.html:77(a) -#: doc/reference/en/ActiveLdap/Schema/Attribute.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/BitString.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/CountryString.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/JPEG.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DirectoryString.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/GeneralizedTime.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/DistinguishedName.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NameAndOptionalUID.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Base.html:77(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PrintableString.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/PostalAddress.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OID.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Integer.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/Boolean.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/OtherMailbox.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/TelephoneNumber.html:81(a) -#: doc/reference/en/ActiveLdap/Schema/Syntaxes/NumericString.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/ObjectClass.html:79(a) -#: doc/reference/en/ActiveLdap/Schema/Syntax.html:79(a) -#: doc/reference/en/ActiveLdap/RequiredObjectClassMissed.html:81(a) -#: doc/reference/en/LDAP/Conn.html:77(a) doc/reference/en/LDAP/Mod.html:77(a) +#: doc/reference/en/Net/LDAP/Entry.html:84(a) +#: doc/reference/en/Net/LDAP.html:84(a) +#: doc/reference/en/ActiveLdap/LogSubscriber.html:86(a) +#: doc/reference/en/ActiveLdap/LdapError.html:88(a) +#: doc/reference/en/ActiveLdap/Ldif.html:84(a) +#: doc/reference/en/ActiveLdap/AttributeValueInvalid.html:88(a) +#: doc/reference/en/ActiveLdap/GetText/Parser.html:84(a) +#: doc/reference/en/ActiveLdap/StrongAuthenticationRequired.html:88(a) +#: doc/reference/en/ActiveLdap/EntryAlreadyExist.html:88(a) +#: doc/reference/en/ActiveLdap/Railtie.html:86(a) +#: doc/reference/en/ActiveLdap/DistinguishedNameInputInvalid.html:88(a) ... truncated to 1.0MB From null at cozmixng.org Tue Aug 28 14:13:17 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 23:13:17 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] 3.2.0 released! Message-ID: <20120828141330.5CEFC940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 23:13:17 +0900 (Tue, 28 Aug 2012) New Revision: 5ad197fd200fe734d345f1048e449134c0ce17ef https://github.com/activeldap/activeldap/commit/5ad197fd200fe734d345f1048e449134c0ce17ef Log: 3.2.0 released! Modified files: doc/html/index.html doc/html/index.html.ja Modified: doc/html/index.html (+2 -2) =================================================================== --- doc/html/index.html 2012-08-28 22:11:23 +0900 (5f47879) +++ doc/html/index.html 2012-08-28 23:13:17 +0900 (6f6fa97) @@ -43,10 +43,10 @@

ActiveLdap: The latest release

- 3.1.1 is the latest release. It had been released at 2011-11-03. + 3.2.0 is the latest release. It had been released at 2012-08-29.

- This version supports Rails 3.1.1. + This version supports Rails 3.2.8.

ActiveLdap: Install

Modified: doc/html/index.html.ja (+2 -2) =================================================================== --- doc/html/index.html.ja 2012-08-28 22:11:23 +0900 (a9a7dac) +++ doc/html/index.html.ja 2012-08-28 23:13:17 +0900 (d2c7c8b) @@ -43,10 +43,10 @@

ActiveLdap: ??????

- 2011-11-03????????3.1.1?????????? + 2012-08-29????????3.2.0??????????

- ????????Rails 3.1.1????????? + ????????Rails 3.2.8?????????

ActiveLdap: ??????

-------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 14:14:25 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 23:14:25 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Add missing spec. Message-ID: <20120828141439.3F418940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 23:14:25 +0900 (Tue, 28 Aug 2012) New Revision: bb29cc637a3b91e795f07bd43501952b6e5ab32a https://github.com/activeldap/activeldap/commit/bb29cc637a3b91e795f07bd43501952b6e5ab32a Log: Add missing spec. Modified files: Rakefile Modified: Rakefile (+1 -1) =================================================================== --- Rakefile 2012-08-28 23:13:17 +0900 (11e8f0f) +++ Rakefile 2012-08-28 23:14:25 +0900 (f197dd2) @@ -272,7 +272,7 @@ task :publish => ["html:publish", "reference:publish"] desc "Tag the current revision." task :tag do - sh("git", "tag", "-a", version, "-m", "release #{version}!!!") + sh("git", "tag", "-a", version, "-m", "release #{spec.version}!!!") end # vim: syntax=ruby -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 14:14:44 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 23:14:44 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Get version from spec Message-ID: <20120828141605.63A7D940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 23:14:44 +0900 (Tue, 28 Aug 2012) New Revision: 21deca1c0d5f3c180480a1bd26f3b6ef3e222c7d https://github.com/activeldap/activeldap/commit/21deca1c0d5f3c180480a1bd26f3b6ef3e222c7d Log: Get version from spec Modified files: Rakefile Modified: Rakefile (+3 -1) =================================================================== --- Rakefile 2012-08-28 23:14:25 +0900 (f197dd2) +++ Rakefile 2012-08-28 23:14:44 +0900 (74abd12) @@ -23,6 +23,8 @@ helper = Bundler::GemHelper.new(base_dir) helper.install spec = helper.gemspec +version = spec.version.to_s + Rake::TestTask.new(:test) do |test| test.libs << "lib" test.libs << "test" @@ -272,7 +274,7 @@ task :publish => ["html:publish", "reference:publish"] desc "Tag the current revision." task :tag do - sh("git", "tag", "-a", version, "-m", "release #{spec.version}!!!") + sh("git", "tag", "-a", version, "-m", "release #{version}!!!") end # vim: syntax=ruby -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Tue Aug 28 14:16:42 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Tue, 28 Aug 2012 23:16:42 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] 3.2.0 -> 3.2.1 Message-ID: <20120828141654.A2203940622@jenkins.clear-code.com> Kouhei Sutou 2012-08-28 23:16:42 +0900 (Tue, 28 Aug 2012) New Revision: e72441688873f5893f9a035c195d49f6197be94c https://github.com/activeldap/activeldap/commit/e72441688873f5893f9a035c195d49f6197be94c Log: 3.2.0 -> 3.2.1 Modified files: lib/active_ldap/version.rb Modified: lib/active_ldap/version.rb (+1 -1) =================================================================== --- lib/active_ldap/version.rb 2012-08-28 23:14:44 +0900 (31feb6f) +++ lib/active_ldap/version.rb 2012-08-28 23:16:42 +0900 (20d2a1a) @@ -1,3 +1,3 @@ module ActiveLdap - VERSION = "3.2.0" + VERSION = "3.2.1" end -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Fri Aug 31 12:59:18 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Fri, 31 Aug 2012 21:59:18 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] test: group delete tests Message-ID: <20120831125930.652CF94027A@jenkins.clear-code.com> Kouhei Sutou 2012-08-31 21:59:18 +0900 (Fri, 31 Aug 2012) New Revision: 58842ec0a64662951cd2996597a110cfaaaf672a https://github.com/activeldap/activeldap/commit/58842ec0a64662951cd2996597a110cfaaaf672a Log: test: group delete tests Modified files: test/test_base.rb Modified: test/test_base.rb (+34 -24) =================================================================== --- test/test_base.rb 2012-08-28 23:16:42 +0900 (4aae5dd) +++ test/test_base.rb 2012-08-31 21:59:18 +0900 (c8f55d8) @@ -791,35 +791,45 @@ class TestBase < Test::Unit::TestCase end end - def test_delete - make_temporary_user do |user1,| - make_temporary_user do |user2,| - make_temporary_user do |user3,| - assert(@user_class.exists?(user1.uid)) - @user_class.delete(user1.dn) - assert(!@user_class.exists?(user1.uid)) + class TestDelete < self + class TestClass < self + def test_by_dn + make_temporary_user do |user,| + assert(@user_class.exists?(user.uid)) + @user_class.delete(user.dn) + assert(!@user_class.exists?(user.uid)) + end + end - assert(@user_class.exists?(user2.dn)) - @user_class.delete(user2.uid) - assert(!@user_class.exists?(user2.dn)) + def test_by_dn_value + make_temporary_user do |user,| + assert(@user_class.exists?(user.dn)) + @user_class.delete(user.uid) + assert(!@user_class.exists?(user.dn)) + end + end - assert(@user_class.exists?(user3.dn)) - @user_class.delete("uid=#{user3.uid}") - assert(!@user_class.exists?(user3.dn)) + def test_by_dn_attribute + make_temporary_user do |user,| + assert(@user_class.exists?(user.dn)) + @user_class.delete("uid=#{user.uid}") + assert(!@user_class.exists?(user.dn)) end end - end - make_temporary_user do |user1,| - make_temporary_user do |user2,| - make_temporary_user do |user3,| - assert(@user_class.exists?(user1.uid)) - assert(@user_class.exists?(user2.uid)) - assert(@user_class.exists?(user3.uid)) - @user_class.delete([user1.dn, user2.uid, "uid=#{user3.uid}"]) - assert(!@user_class.exists?(user1.uid)) - assert(!@user_class.exists?(user2.uid)) - assert(!@user_class.exists?(user3.uid)) + def test_multiple + make_temporary_user do |user1,| + make_temporary_user do |user2,| + make_temporary_user do |user3,| + assert(@user_class.exists?(user1.uid)) + assert(@user_class.exists?(user2.uid)) + assert(@user_class.exists?(user3.uid)) + @user_class.delete([user1.dn, user2.uid, "uid=#{user3.uid}"]) + assert(!@user_class.exists?(user1.uid)) + assert(!@user_class.exists?(user2.uid)) + assert(!@user_class.exists?(user3.uid)) + end + end end end end -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Fri Aug 31 13:08:36 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Fri, 31 Aug 2012 22:08:36 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Work delete again. Message-ID: <20120831131041.E390B94027A@jenkins.clear-code.com> Kouhei Sutou 2012-08-31 22:08:36 +0900 (Fri, 31 Aug 2012) New Revision: 172f6e8b77f684e7206ffbae25ae362a097a42ad https://github.com/activeldap/activeldap/commit/172f6e8b77f684e7206ffbae25ae362a097a42ad Log: Work delete again. Reported by Craig White. Thanks!!! Modified files: lib/active_ldap/persistence.rb test/test_base.rb Modified: lib/active_ldap/persistence.rb (+8 -1) =================================================================== --- lib/active_ldap/persistence.rb 2012-08-31 21:59:18 +0900 (6aa00f4) +++ lib/active_ldap/persistence.rb 2012-08-31 22:08:36 +0900 (8ccf4dd) @@ -21,7 +21,14 @@ module ActiveLdap end def delete(options={}) - super(dn, options) + if persisted? + default_options = { + :connection => connection, + } + self.class.delete_entry(dn, default_options.merge(options)) + end + @new_entry = true + freeze end # save Modified: test/test_base.rb (+18 -0) =================================================================== --- test/test_base.rb 2012-08-31 21:59:18 +0900 (c8f55d8) +++ test/test_base.rb 2012-08-31 22:08:36 +0900 (4846c31) @@ -833,6 +833,24 @@ class TestBase < Test::Unit::TestCase end end end + + class TestInstance < self + def test_no_options + make_temporary_user do |user,| + assert(@user_class.exists?(user.uid)) + user.delete + assert(!@user_class.exists?(user.uid)) + end + end + + def test_frozen + make_temporary_user do |user,| + assert_false(user.frozen?) + user.delete + assert_true(user.frozen?) + end + end + end end def test_inherit_base -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Fri Aug 31 13:10:31 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Fri, 31 Aug 2012 22:10:31 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] test: split file Message-ID: <20120831131042.07232940C4C@jenkins.clear-code.com> Kouhei Sutou 2012-08-31 22:10:31 +0900 (Fri, 31 Aug 2012) New Revision: ac6dbfbd66fec65540e5f5fbf715a544df4f022e https://github.com/activeldap/activeldap/commit/ac6dbfbd66fec65540e5f5fbf715a544df4f022e Log: test: split file Added files: test/test_persistence.rb Modified files: test/test_base.rb Modified: test/test_base.rb (+0 -62) =================================================================== --- test/test_base.rb 2012-08-31 22:08:36 +0900 (4846c31) +++ test/test_base.rb 2012-08-31 22:10:31 +0900 (49877bd) @@ -791,68 +791,6 @@ class TestBase < Test::Unit::TestCase end end - class TestDelete < self - class TestClass < self - def test_by_dn - make_temporary_user do |user,| - assert(@user_class.exists?(user.uid)) - @user_class.delete(user.dn) - assert(!@user_class.exists?(user.uid)) - end - end - - def test_by_dn_value - make_temporary_user do |user,| - assert(@user_class.exists?(user.dn)) - @user_class.delete(user.uid) - assert(!@user_class.exists?(user.dn)) - end - end - - def test_by_dn_attribute - make_temporary_user do |user,| - assert(@user_class.exists?(user.dn)) - @user_class.delete("uid=#{user.uid}") - assert(!@user_class.exists?(user.dn)) - end - end - - def test_multiple - make_temporary_user do |user1,| - make_temporary_user do |user2,| - make_temporary_user do |user3,| - assert(@user_class.exists?(user1.uid)) - assert(@user_class.exists?(user2.uid)) - assert(@user_class.exists?(user3.uid)) - @user_class.delete([user1.dn, user2.uid, "uid=#{user3.uid}"]) - assert(!@user_class.exists?(user1.uid)) - assert(!@user_class.exists?(user2.uid)) - assert(!@user_class.exists?(user3.uid)) - end - end - end - end - end - - class TestInstance < self - def test_no_options - make_temporary_user do |user,| - assert(@user_class.exists?(user.uid)) - user.delete - assert(!@user_class.exists?(user.uid)) - end - end - - def test_frozen - make_temporary_user do |user,| - assert_false(user.frozen?) - user.delete - assert_true(user.frozen?) - end - end - end - end - def test_inherit_base sub_user_class = Class.new(@user_class) sub_user_class.ldap_mapping :prefix => "ou=Sub" Added: test/test_persistence.rb (+69 -0) 100644 =================================================================== --- /dev/null +++ test/test_persistence.rb 2012-08-31 22:10:31 +0900 (956bf2c) @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- + +require 'al-test-utils' + +class TestPersistence < Test::Unit::TestCase + include AlTestUtils + + class TestDelete < self + class TestClass < self + def test_by_dn + make_temporary_user do |user,| + assert(@user_class.exists?(user.uid)) + @user_class.delete(user.dn) + assert(!@user_class.exists?(user.uid)) + end + end + + def test_by_dn_value + make_temporary_user do |user,| + assert(@user_class.exists?(user.dn)) + @user_class.delete(user.uid) + assert(!@user_class.exists?(user.dn)) + end + end + + def test_by_dn_attribute + make_temporary_user do |user,| + assert(@user_class.exists?(user.dn)) + @user_class.delete("uid=#{user.uid}") + assert(!@user_class.exists?(user.dn)) + end + end + + def test_multiple + make_temporary_user do |user1,| + make_temporary_user do |user2,| + make_temporary_user do |user3,| + assert(@user_class.exists?(user1.uid)) + assert(@user_class.exists?(user2.uid)) + assert(@user_class.exists?(user3.uid)) + @user_class.delete([user1.dn, user2.uid, "uid=#{user3.uid}"]) + assert(!@user_class.exists?(user1.uid)) + assert(!@user_class.exists?(user2.uid)) + assert(!@user_class.exists?(user3.uid)) + end + end + end + end + end + + class TestInstance < self + def test_no_options + make_temporary_user do |user,| + assert(@user_class.exists?(user.uid)) + user.delete + assert(!@user_class.exists?(user.uid)) + end + end + + def test_frozen + make_temporary_user do |user,| + assert_false(user.frozen?) + user.delete + assert_true(user.frozen?) + end + end + end + end +end -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Fri Aug 31 13:16:14 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Fri, 31 Aug 2012 22:16:14 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Freeze destroyed object Message-ID: <20120831131625.2325C94027A@jenkins.clear-code.com> Kouhei Sutou 2012-08-31 22:16:14 +0900 (Fri, 31 Aug 2012) New Revision: dcd06877724eee75aa1736e57334685b11d985ec https://github.com/activeldap/activeldap/commit/dcd06877724eee75aa1736e57334685b11d985ec Log: Freeze destroyed object Modified files: lib/active_ldap/persistence.rb test/test_persistence.rb Modified: lib/active_ldap/persistence.rb (+2 -2) =================================================================== --- lib/active_ldap/persistence.rb 2012-08-31 22:10:31 +0900 (8ccf4dd) +++ lib/active_ldap/persistence.rb 2012-08-31 22:16:14 +0900 (34ea700) @@ -16,8 +16,8 @@ module ActiveLdap # # Delete this entry from LDAP def destroy - self.class.delete(dn) - @new_entry = true + # TODO: support deleting relations + delete end def delete(options={}) Modified: test/test_persistence.rb (+63 -1) =================================================================== --- test/test_persistence.rb 2012-08-31 22:10:31 +0900 (956bf2c) +++ test/test_persistence.rb 2012-08-31 22:16:14 +0900 (fc547a6) @@ -5,6 +5,68 @@ require 'al-test-utils' class TestPersistence < Test::Unit::TestCase include AlTestUtils + class TestDestroy < self + class TestClass < self + def test_by_dn + make_temporary_user do |user,| + assert(@user_class.exists?(user.uid)) + @user_class.destroy(user.dn) + assert(!@user_class.exists?(user.uid)) + end + end + + def test_by_dn_value + make_temporary_user do |user,| + assert(@user_class.exists?(user.dn)) + @user_class.destroy(user.uid) + assert(!@user_class.exists?(user.dn)) + end + end + + def test_by_dn_attribute + make_temporary_user do |user,| + assert(@user_class.exists?(user.dn)) + @user_class.destroy("uid=#{user.uid}") + assert(!@user_class.exists?(user.dn)) + end + end + + def test_multiple + make_temporary_user do |user1,| + make_temporary_user do |user2,| + make_temporary_user do |user3,| + assert(@user_class.exists?(user1.uid)) + assert(@user_class.exists?(user2.uid)) + assert(@user_class.exists?(user3.uid)) + @user_class.destroy([user1.dn, user2.uid, "uid=#{user3.uid}"]) + assert(!@user_class.exists?(user1.uid)) + assert(!@user_class.exists?(user2.uid)) + assert(!@user_class.exists?(user3.uid)) + end + end + end + end + end + + class TestInstance < self + def test_existence + make_temporary_user do |user,| + assert(@user_class.exists?(user.uid)) + user.destroy + assert(!@user_class.exists?(user.uid)) + end + end + + def test_frozen + make_temporary_user do |user,| + assert_false(user.frozen?) + user.destroy + assert_true(user.frozen?) + end + end + end + end + class TestDelete < self class TestClass < self def test_by_dn @@ -49,7 +111,7 @@ class TestPersistence < Test::Unit::TestCase end class TestInstance < self - def test_no_options + def test_existence make_temporary_user do |user,| assert(@user_class.exists?(user.uid)) user.delete -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Fri Aug 31 13:21:00 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Fri, 31 Aug 2012 22:21:00 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Add 3.2.1 entry Message-ID: <20120831132113.5011694027A@jenkins.clear-code.com> Kouhei Sutou 2012-08-31 22:21:00 +0900 (Fri, 31 Aug 2012) New Revision: e88a647d7e4bbc65d69e6a54a28033739d367456 https://github.com/activeldap/activeldap/commit/e88a647d7e4bbc65d69e6a54a28033739d367456 Log: Add 3.2.1 entry Modified files: doc/text/news.textile Modified: doc/text/news.textile (+9 -0) =================================================================== --- doc/text/news.textile 2012-08-31 22:16:14 +0900 (6148b79) +++ doc/text/news.textile 2012-08-31 22:21:00 +0900 (3db1bbe) @@ -1,5 +1,14 @@ h1. News +h2(#3-2-1). 3.2.1: 2012-08-31 + +* Fixed a bug that ActiveLdap::Base#delete doesn't work. + [Reported by Craig White] + +h3. Thanks + +* Craig White + h2(#3-2-0). 3.2.0: 2012-08-29 * [GitHub:#39] Supported Rails 3.2.8. [Reported by Ben Langfeld] -------------- next part -------------- An HTML attachment was scrubbed... URL: From null at cozmixng.org Fri Aug 31 13:23:03 2012 From: null at cozmixng.org (Kouhei Sutou) Date: Fri, 31 Aug 2012 22:23:03 +0900 Subject: [activeldap-commit] activeldap/activeldap [master] Update messages Message-ID: <20120831132318.5F52F94027A@jenkins.clear-code.com> Kouhei Sutou 2012-08-31 22:23:03 +0900 (Fri, 31 Aug 2012) New Revision: 27afc7418c247e8600ae1078503c30c1649c5810 https://github.com/activeldap/activeldap/commit/27afc7418c247e8600ae1078503c30c1649c5810 Log: Update messages Modified files: doc/po/ja.po Modified: doc/po/ja.po (+819 -783) =================================================================== --- doc/po/ja.po 2012-08-31 22:21:00 +0900 (9d42219) +++ doc/po/ja.po 2012-08-31 22:23:03 +0900 (1cc4f70) @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: ActiveLdap 3.1.0\n" -"POT-Creation-Date: 2012-08-28 22:09+0900\n" -"PO-Revision-Date: 2012-08-28 22:08+0900\n" +"POT-Creation-Date: 2012-08-31 22:22+0900\n" +"PO-Revision-Date: 2012-08-31 22:22+0900\n" "Last-Translator: Kouhei Sutou \n" "Language-Team: Japanese\n" "Language: ja\n" @@ -164,21 +164,20 @@ msgstr "????: ????" #: doc/reference/en/ActiveLdap/Persistence.html:40(span) #: doc/reference/en/ActiveLdap/Persistence.html:368(span) #: doc/reference/en/ActiveLdap/Persistence.html:369(span) -#: doc/reference/en/ActiveLdap/Persistence.html:431(span) -#: doc/reference/en/ActiveLdap/Persistence.html:432(span) -#: doc/reference/en/ActiveLdap/Persis