activeldap 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. data/CHANGES +61 -0
  2. data/README +8 -1
  3. data/Rakefile +4 -1
  4. data/benchmark/bench-al.rb +12 -2
  5. data/examples/al-admin/app/controllers/account_controller.rb +4 -3
  6. data/examples/al-admin/app/controllers/application.rb +5 -2
  7. data/examples/al-admin/app/controllers/directory_controller.rb +3 -1
  8. data/examples/al-admin/app/controllers/users_controller.rb +19 -4
  9. data/examples/al-admin/app/controllers/welcome_controller.rb +4 -2
  10. data/examples/al-admin/app/helpers/application_helper.rb +7 -1
  11. data/examples/al-admin/app/helpers/url_helper.rb +4 -0
  12. data/examples/al-admin/app/models/ldap_user.rb +4 -0
  13. data/examples/al-admin/app/views/_entry/{_attributes_information.rhtml → _attributes_information.html.erb} +0 -0
  14. data/examples/al-admin/app/views/_entry/{_entry.rhtml → _entry.html.erb} +0 -0
  15. data/examples/al-admin/app/views/_schema/{_aliases.rhtml → _aliases.html.erb} +0 -0
  16. data/examples/al-admin/app/views/_switcher/{_after.rhtml → _after.html.erb} +0 -0
  17. data/examples/al-admin/app/views/_switcher/{_before.rhtml → _before.html.erb} +0 -0
  18. data/examples/al-admin/app/views/account/{login.rhtml → login.html.erb} +0 -0
  19. data/examples/al-admin/app/views/account/{sign_up.rhtml → sign_up.html.erb} +0 -0
  20. data/examples/al-admin/app/views/attributes/{_attributes.rhtml → _attributes.html.erb} +0 -0
  21. data/examples/al-admin/app/views/attributes/{_detail.rhtml → _detail.html.erb} +0 -0
  22. data/examples/al-admin/app/views/attributes/{index.rhtml → index.html.erb} +0 -0
  23. data/examples/al-admin/app/views/attributes/{show.rhtml → show.html.erb} +0 -0
  24. data/examples/al-admin/app/views/directory/{_tree.rhtml → _tree.html.erb} +0 -0
  25. data/examples/al-admin/app/views/directory/{_tree_view_js.rhtml → _tree_view_js.html.erb} +4 -5
  26. data/examples/al-admin/app/views/directory/{index.rhtml → index.html.erb} +0 -0
  27. data/examples/al-admin/app/views/directory/{populate.rhtml → populate.html.erb} +0 -0
  28. data/examples/al-admin/app/views/layouts/{_footer.rhtml → _footer.html.erb} +0 -0
  29. data/examples/al-admin/app/views/layouts/{_header_menu.rhtml → _header_menu.html.erb} +0 -0
  30. data/examples/al-admin/app/views/layouts/{_main_menu.rhtml → _main_menu.html.erb} +0 -0
  31. data/examples/al-admin/app/views/layouts/{application.rhtml → application.html.erb} +3 -2
  32. data/examples/al-admin/app/views/object_classes/{_attributes.rhtml → _attributes.html.erb} +0 -0
  33. data/examples/al-admin/app/views/object_classes/{_object_classes.rhtml → _object_classes.html.erb} +0 -0
  34. data/examples/al-admin/app/views/object_classes/{index.rhtml → index.html.erb} +0 -0
  35. data/examples/al-admin/app/views/object_classes/{show.rhtml → show.html.erb} +0 -0
  36. data/examples/al-admin/app/views/syntaxes/{_detail.rhtml → _detail.html.erb} +0 -0
  37. data/examples/al-admin/app/views/syntaxes/{_syntaxes.rhtml → _syntaxes.html.erb} +0 -0
  38. data/examples/al-admin/app/views/syntaxes/{index.rhtml → index.html.erb} +0 -0
  39. data/examples/al-admin/app/views/syntaxes/{show.rhtml → show.html.erb} +0 -0
  40. data/examples/al-admin/app/views/users/{_attributes_update_form.rhtml → _attributes_update_form.html.erb} +0 -0
  41. data/examples/al-admin/app/views/users/{_form.rhtml → _form.html.erb} +0 -0
  42. data/examples/al-admin/app/views/users/{_object_classes_update_form.rhtml → _object_classes_update_form.html.erb} +7 -1
  43. data/examples/al-admin/app/views/users/{_password_change_form.rhtml → _password_change_form.html.erb} +0 -0
  44. data/examples/al-admin/app/views/users/{edit.rhtml → edit.html.erb} +0 -0
  45. data/examples/al-admin/app/views/users/{index.rhtml → index.html.erb} +0 -0
  46. data/examples/al-admin/app/views/users/{show.rhtml → show.html.erb} +0 -0
  47. data/examples/al-admin/app/views/welcome/{index.rhtml → index.html.erb} +0 -0
  48. data/examples/al-admin/config/boot.rb +96 -32
  49. data/examples/al-admin/config/environment.rb +30 -36
  50. data/examples/al-admin/config/environments/development.rb +2 -5
  51. data/examples/al-admin/config/environments/production.rb +1 -0
  52. data/examples/al-admin/config/environments/test.rb +4 -1
  53. data/examples/al-admin/config/initializers/exception_notifier.rb +2 -0
  54. data/examples/al-admin/config/initializers/gettext.rb +1 -0
  55. data/examples/al-admin/config/initializers/inflections.rb +10 -0
  56. data/examples/al-admin/config/initializers/mime_types.rb +5 -0
  57. data/examples/al-admin/config/initializers/ralative_url_support.rb +1 -0
  58. data/examples/al-admin/config/routes.rb +24 -12
  59. data/examples/al-admin/lib/authenticated_system.rb +1 -1
  60. data/examples/al-admin/lib/tasks/gettext.rake +1 -1
  61. data/examples/al-admin/po/en/al-admin.po +102 -100
  62. data/examples/al-admin/po/ja/al-admin.po +112 -110
  63. data/examples/al-admin/po/nl/al-admin.po +117 -110
  64. data/examples/al-admin/public/javascripts/controls.js +484 -354
  65. data/examples/al-admin/public/javascripts/dragdrop.js +88 -58
  66. data/examples/al-admin/public/javascripts/effects.js +396 -364
  67. data/examples/al-admin/public/javascripts/prototype.js +2817 -1107
  68. data/examples/al-admin/public/stylesheets/base.css +5 -0
  69. data/examples/al-admin/script/performance/request +3 -0
  70. data/lib/active_ldap.rb +13 -10
  71. data/lib/active_ldap/adapter/base.rb +159 -43
  72. data/lib/active_ldap/adapter/jndi.rb +175 -0
  73. data/lib/active_ldap/adapter/jndi_connection.rb +180 -0
  74. data/lib/active_ldap/adapter/ldap.rb +91 -46
  75. data/lib/active_ldap/adapter/ldap_ext.rb +19 -5
  76. data/lib/active_ldap/adapter/net_ldap.rb +52 -44
  77. data/lib/active_ldap/association/has_many_wrap.rb +1 -1
  78. data/lib/active_ldap/attributes.rb +20 -95
  79. data/lib/active_ldap/base.rb +195 -186
  80. data/lib/active_ldap/callbacks.rb +33 -0
  81. data/lib/active_ldap/command.rb +3 -3
  82. data/lib/active_ldap/connection.rb +21 -3
  83. data/lib/active_ldap/distinguished_name.rb +18 -11
  84. data/lib/active_ldap/entry_attribute.rb +78 -0
  85. data/lib/active_ldap/human_readable.rb +20 -0
  86. data/lib/active_ldap/ldif.rb +860 -10
  87. data/lib/active_ldap/object_class.rb +6 -4
  88. data/lib/active_ldap/operations.rb +129 -22
  89. data/lib/active_ldap/schema.rb +118 -9
  90. data/lib/active_ldap/schema/syntaxes.rb +33 -16
  91. data/lib/active_ldap/validations.rb +74 -65
  92. data/po/en/active-ldap.po +378 -768
  93. data/po/ja/active-ldap.po +935 -868
  94. data/rails/plugin/active_ldap/init.rb +40 -2
  95. data/test/al-test-utils.rb +78 -58
  96. data/test/command.rb +51 -1
  97. data/test/test-unit-ext/priority.rb +29 -6
  98. data/test/test_adapter.rb +21 -2
  99. data/test/test_attributes.rb +13 -0
  100. data/test/test_base.rb +51 -1
  101. data/test/test_connection.rb +2 -1
  102. data/test/test_connection_per_class.rb +55 -1
  103. data/test/test_connection_per_dn.rb +29 -1
  104. data/test/test_find.rb +73 -0
  105. data/test/test_ldif.rb +1829 -15
  106. data/test/test_load.rb +126 -0
  107. data/test/test_object_class.rb +23 -5
  108. data/test/test_schema.rb +28 -0
  109. data/test/test_syntax.rb +22 -11
  110. data/test/test_user.rb +16 -25
  111. data/test/test_useradd-binary.rb +1 -1
  112. data/test/test_usermod-binary-add-time.rb +1 -1
  113. data/test/test_usermod-binary-add.rb +1 -1
  114. data/test/test_validation.rb +100 -22
  115. metadata +77 -71
  116. data/data/locale/en/LC_MESSAGES/active-ldap.mo +0 -0
  117. data/data/locale/ja/LC_MESSAGES/active-ldap.mo +0 -0
  118. data/examples/al-admin/app/views/layouts/_flash_box.rhtml +0 -4
  119. data/examples/al-admin/public/stylesheets/common.css +0 -2
  120. data/examples/al-admin/script/breakpointer +0 -3
@@ -32,6 +32,7 @@ module ActiveLdap
32
32
  end
33
33
 
34
34
  validate_on_create :validate_duplicated_dn_creation
35
+ validate :validate_excluded_classes
35
36
  validate :validate_required_ldap_values
36
37
  validate :validate_ldap_values
37
38
 
@@ -51,11 +52,6 @@ module ActiveLdap
51
52
  end
52
53
  alias_method_chain :save!, :active_ldap_support
53
54
 
54
- def valid?
55
- ensure_apply_object_class
56
- super
57
- end
58
-
59
55
  private
60
56
  def run_validations_with_active_ldap_support(validation_method)
61
57
  run_validations_without_active_ldap_support(validation_method)
@@ -78,94 +74,107 @@ module ActiveLdap
78
74
  end
79
75
  end
80
76
 
77
+ def validate_excluded_classes
78
+ return if self.class.excluded_classes.empty?
79
+
80
+ _schema = schema
81
+ unexpected_classes = self.class.excluded_classes.collect do |name|
82
+ _schema.object_class(name)
83
+ end
84
+ unexpected_classes -= classes.collect do |name|
85
+ _schema.object_class(name)
86
+ end
87
+ return if unexpected_classes.empty?
88
+
89
+ names = unexpected_classes.collect do |object_class|
90
+ self.class.human_object_class_name(object_class)
91
+ end
92
+ if ActiveLdap.get_text_supported?
93
+ format = n_("%{fn} has excluded value: %s",
94
+ "%{fn} has excluded values: %s",
95
+ names.size)
96
+ else
97
+ format = n_("has excluded value: %s",
98
+ "has excluded values: %s",
99
+ names.size)
100
+ end
101
+ errors.add("objectClass", format % names.join(', '))
102
+ end
103
+
81
104
  # validate_required_ldap_values
82
105
  #
83
106
  # Basic validation:
84
107
  # - Verify that every 'MUST' specified in the schema has a value defined
85
108
  def validate_required_ldap_values
109
+ _schema = nil
86
110
  # Make sure all MUST attributes have a value
87
- @object_classes.each do |object_class|
111
+ entry_attribute.object_classes.each do |object_class|
88
112
  object_class.must.each do |required_attribute|
89
113
  # Normalize to ensure we catch schema problems
90
114
  # needed?
91
115
  real_name = to_real_attribute_name(required_attribute.name, true)
92
116
  raise UnknownAttribute.new(required_attribute) if real_name.nil?
93
- # # Set default if it wasn't yet set.
94
- # @data[real_name] ||= [] # need?
117
+
95
118
  value = @data[real_name] || []
96
- # Check for missing requirements.
97
- if value.empty?
98
- _schema = schema
99
- aliases = required_attribute.aliases.collect do |name|
100
- self.class.human_attribute_name(name)
119
+ next unless self.class.blank_value?(value)
120
+
121
+ _schema ||= schema
122
+ aliases = required_attribute.aliases.collect do |name|
123
+ self.class.human_attribute_name(name)
124
+ end
125
+ args = [self.class.human_object_class_name(object_class)]
126
+ if ActiveLdap.get_text_supported?
127
+ if aliases.empty?
128
+ format = _("%{fn} is required attribute by objectClass '%s'")
129
+ else
130
+ format = _("%{fn} is required attribute by objectClass " \
131
+ "'%s': aliases: %s")
132
+ args << aliases.join(', ')
101
133
  end
102
- args = [self.class.human_object_class_name(object_class)]
103
- if ActiveLdap.get_text_supported?
104
- if aliases.empty?
105
- format = _("%{fn} is required attribute by objectClass '%s'")
106
- else
107
- format = _("%{fn} is required attribute by objectClass " \
108
- "'%s': aliases: %s")
109
- args << aliases.join(', ')
110
- end
134
+ else
135
+ if aliases.empty?
136
+ format = "is required attribute by objectClass '%s'"
111
137
  else
112
- if aliases.empty?
113
- format = "is required attribute by objectClass '%s'"
114
- else
115
- format = "is required attribute by objectClass '%s'" \
116
- ": aliases: %s"
117
- args << aliases.join(', ')
118
- end
138
+ format = "is required attribute by objectClass '%s'" \
139
+ ": aliases: %s"
140
+ args << aliases.join(', ')
119
141
  end
120
- errors.add(real_name, format % args)
121
142
  end
143
+ errors.add(real_name, format % args)
122
144
  end
123
145
  end
124
146
  end
125
147
 
126
148
  def validate_ldap_values
127
- @attribute_schemata.each do |name, attribute|
128
- self[name, true].each do |value|
129
- validate_ldap_value(attribute, name, value)
130
- end
149
+ entry_attribute.schemata.each do |name, attribute|
150
+ value = self[name]
151
+ next if value.nil?
152
+ validate_ldap_value(attribute, name, value)
131
153
  end
132
154
  end
133
155
 
134
- def validate_ldap_value(attribute, name, value, option=nil)
135
- case value
136
- when Hash
137
- value.each do |sub_option, val|
138
- validate_ldap_value(attribute, name, val,
139
- [option, sub_option].compact.join(";"))
140
- end
141
- when Array
142
- value.each do |val|
143
- validate_ldap_value(attribute, name, val, option)
156
+ def validate_ldap_value(attribute, name, value)
157
+ failed_reason, option = attribute.validate(value)
158
+ return if failed_reason.nil?
159
+ params = [self.class.human_readable_format(value),
160
+ self.class.human_syntax_description(attribute.syntax),
161
+ failed_reason]
162
+ if ActiveLdap.get_text_supported?
163
+ if option
164
+ format =
165
+ _("%{fn} (%s) has invalid format: %s: required syntax: %s: %s")
166
+ else
167
+ format = _("%{fn} has invalid format: %s: required syntax: %s: %s")
144
168
  end
145
169
  else
146
- failed_reason = attribute.validate(value)
147
- if failed_reason
148
- params = [value,
149
- self.class.human_syntax_description(attribute.syntax),
150
- failed_reason]
151
- if ActiveLdap.get_text_supported?
152
- if option
153
- format =
154
- _("%{fn} (%s) has invalid format: %s: required syntax: %s: %s")
155
- else
156
- format = _("%{fn} has invalid format: %s: required syntax: %s: %s")
157
- end
158
- else
159
- if option
160
- format = _("(%s) has invalid format: %s: required syntax: %s: %s")
161
- else
162
- format = _("has invalid format: %s: required syntax: %s: %s")
163
- end
164
- end
165
- params.unshift(option) if option
166
- errors.add(name, format % params)
170
+ if option
171
+ format = _("(%s) has invalid format: %s: required syntax: %s: %s")
172
+ else
173
+ format = _("has invalid format: %s: required syntax: %s: %s")
167
174
  end
168
175
  end
176
+ params.unshift(option) if option
177
+ errors.add(name, format % params)
169
178
  end
170
179
  end
171
180
  end
@@ -5,8 +5,8 @@
5
5
  #
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: Ruby/ActiveLdap 0.9.0\n"
9
- "POT-Creation-Date: 2007-11-04 12:09+0900\n"
8
+ "Project-Id-Version: Ruby/ActiveLdap 0.10.0\n"
9
+ "POT-Creation-Date: 2008-02-10 22:36+0900\n"
10
10
  "PO-Revision-Date: 2007-08-19 09:49+0900\n"
11
11
  "Last-Translator: Kouhei Sutou <kou@cozmixng.org>\n"
12
12
  "Language-Team: English\n"
@@ -191,6 +191,10 @@ msgstr ""
191
191
  msgid "LDAP|Attribute|drink"
192
192
  msgstr ""
193
193
 
194
+ #: -:-
195
+ msgid "LDAP|Attribute|dynamicSubtrees"
196
+ msgstr ""
197
+
194
198
  #: -:-
195
199
  msgid "LDAP|Attribute|email"
196
200
  msgstr ""
@@ -211,6 +215,14 @@ msgstr ""
211
215
  msgid "LDAP|Attribute|enhancedSearchGuide"
212
216
  msgstr ""
213
217
 
218
+ #: -:-
219
+ msgid "LDAP|Attribute|entryDN"
220
+ msgstr ""
221
+
222
+ #: -:-
223
+ msgid "LDAP|Attribute|entryTtl"
224
+ msgstr ""
225
+
214
226
  #: -:-
215
227
  msgid "LDAP|Attribute|entryUUID"
216
228
  msgstr ""
@@ -443,382 +455,6 @@ msgstr ""
443
455
  msgid "LDAP|Attribute|objectClasses"
444
456
  msgstr ""
445
457
 
446
- #: -:-
447
- msgid "LDAP|Attribute|olcAccess"
448
- msgstr ""
449
-
450
- #: -:-
451
- msgid "LDAP|Attribute|olcAllows"
452
- msgstr ""
453
-
454
- #: -:-
455
- msgid "LDAP|Attribute|olcArgsFile"
456
- msgstr ""
457
-
458
- #: -:-
459
- msgid "LDAP|Attribute|olcAttributeOptions"
460
- msgstr ""
461
-
462
- #: -:-
463
- msgid "LDAP|Attribute|olcAttributeTypes"
464
- msgstr ""
465
-
466
- #: -:-
467
- msgid "LDAP|Attribute|olcAuthIDRewrite"
468
- msgstr ""
469
-
470
- #: -:-
471
- msgid "LDAP|Attribute|olcAuthzPolicy"
472
- msgstr ""
473
-
474
- #: -:-
475
- msgid "LDAP|Attribute|olcAuthzRegexp"
476
- msgstr ""
477
-
478
- #: -:-
479
- msgid "LDAP|Attribute|olcBackend"
480
- msgstr ""
481
-
482
- #: -:-
483
- msgid "LDAP|Attribute|olcConcurrency"
484
- msgstr ""
485
-
486
- #: -:-
487
- msgid "LDAP|Attribute|olcConfigDir"
488
- msgstr ""
489
-
490
- #: -:-
491
- msgid "LDAP|Attribute|olcConfigFile"
492
- msgstr ""
493
-
494
- #: -:-
495
- msgid "LDAP|Attribute|olcConnMaxPending"
496
- msgstr ""
497
-
498
- #: -:-
499
- msgid "LDAP|Attribute|olcConnMaxPendingAuth"
500
- msgstr ""
501
-
502
- #: -:-
503
- msgid "LDAP|Attribute|olcDatabase"
504
- msgstr ""
505
-
506
- #: -:-
507
- msgid "LDAP|Attribute|olcDbCacheFree"
508
- msgstr ""
509
-
510
- #: -:-
511
- msgid "LDAP|Attribute|olcDbCacheSize"
512
- msgstr ""
513
-
514
- #: -:-
515
- msgid "LDAP|Attribute|olcDbCheckpoint"
516
- msgstr ""
517
-
518
- #: -:-
519
- msgid "LDAP|Attribute|olcDbConfig"
520
- msgstr ""
521
-
522
- #: -:-
523
- msgid "LDAP|Attribute|olcDbDirectory"
524
- msgstr ""
525
-
526
- #: -:-
527
- msgid "LDAP|Attribute|olcDbDirtyRead"
528
- msgstr ""
529
-
530
- #: -:-
531
- msgid "LDAP|Attribute|olcDbIDLcacheSize"
532
- msgstr ""
533
-
534
- #: -:-
535
- msgid "LDAP|Attribute|olcDbIndex"
536
- msgstr ""
537
-
538
- #: -:-
539
- msgid "LDAP|Attribute|olcDbLinearIndex"
540
- msgstr ""
541
-
542
- #: -:-
543
- msgid "LDAP|Attribute|olcDbLockDetect"
544
- msgstr ""
545
-
546
- #: -:-
547
- msgid "LDAP|Attribute|olcDbMode"
548
- msgstr ""
549
-
550
- #: -:-
551
- msgid "LDAP|Attribute|olcDbNoSync"
552
- msgstr ""
553
-
554
- #: -:-
555
- msgid "LDAP|Attribute|olcDbSearchStack"
556
- msgstr ""
557
-
558
- #: -:-
559
- msgid "LDAP|Attribute|olcDbShmKey"
560
- msgstr ""
561
-
562
- #: -:-
563
- msgid "LDAP|Attribute|olcDefaultSearchBase"
564
- msgstr ""
565
-
566
- #: -:-
567
- msgid "LDAP|Attribute|olcDisallows"
568
- msgstr ""
569
-
570
- #: -:-
571
- msgid "LDAP|Attribute|olcDitContentRules"
572
- msgstr ""
573
-
574
- #: -:-
575
- msgid "LDAP|Attribute|olcGentleHUP"
576
- msgstr ""
577
-
578
- #: -:-
579
- msgid "LDAP|Attribute|olcIdleTimeout"
580
- msgstr ""
581
-
582
- #: -:-
583
- msgid "LDAP|Attribute|olcInclude"
584
- msgstr ""
585
-
586
- #: -:-
587
- msgid "LDAP|Attribute|olcIndexSubstrAnyLen"
588
- msgstr ""
589
-
590
- #: -:-
591
- msgid "LDAP|Attribute|olcIndexSubstrAnyStep"
592
- msgstr ""
593
-
594
- #: -:-
595
- msgid "LDAP|Attribute|olcIndexSubstrIfMaxLen"
596
- msgstr ""
597
-
598
- #: -:-
599
- msgid "LDAP|Attribute|olcIndexSubstrIfMinLen"
600
- msgstr ""
601
-
602
- #: -:-
603
- msgid "LDAP|Attribute|olcLastMod"
604
- msgstr ""
605
-
606
- #: -:-
607
- msgid "LDAP|Attribute|olcLimits"
608
- msgstr ""
609
-
610
- #: -:-
611
- msgid "LDAP|Attribute|olcLocalSSF"
612
- msgstr ""
613
-
614
- #: -:-
615
- msgid "LDAP|Attribute|olcLogFile"
616
- msgstr ""
617
-
618
- #: -:-
619
- msgid "LDAP|Attribute|olcLogLevel"
620
- msgstr ""
621
-
622
- #: -:-
623
- msgid "LDAP|Attribute|olcMaxDerefDepth"
624
- msgstr ""
625
-
626
- #: -:-
627
- msgid "LDAP|Attribute|olcModuleLoad"
628
- msgstr ""
629
-
630
- #: -:-
631
- msgid "LDAP|Attribute|olcModulePath"
632
- msgstr ""
633
-
634
- #: -:-
635
- msgid "LDAP|Attribute|olcObjectClasses"
636
- msgstr ""
637
-
638
- #: -:-
639
- msgid "LDAP|Attribute|olcObjectIdentifier"
640
- msgstr ""
641
-
642
- #: -:-
643
- msgid "LDAP|Attribute|olcOverlay"
644
- msgstr ""
645
-
646
- #: -:-
647
- msgid "LDAP|Attribute|olcPasswordCryptSaltFormat"
648
- msgstr ""
649
-
650
- #: -:-
651
- msgid "LDAP|Attribute|olcPasswordHash"
652
- msgstr ""
653
-
654
- #: -:-
655
- msgid "LDAP|Attribute|olcPidFile"
656
- msgstr ""
657
-
658
- #: -:-
659
- msgid "LDAP|Attribute|olcPlugin"
660
- msgstr ""
661
-
662
- #: -:-
663
- msgid "LDAP|Attribute|olcPluginLogFile"
664
- msgstr ""
665
-
666
- #: -:-
667
- msgid "LDAP|Attribute|olcReadOnly"
668
- msgstr ""
669
-
670
- #: -:-
671
- msgid "LDAP|Attribute|olcReferral"
672
- msgstr ""
673
-
674
- #: -:-
675
- msgid "LDAP|Attribute|olcReplica"
676
- msgstr ""
677
-
678
- #: -:-
679
- msgid "LDAP|Attribute|olcReplicaArgsFile"
680
- msgstr ""
681
-
682
- #: -:-
683
- msgid "LDAP|Attribute|olcReplicaPidFile"
684
- msgstr ""
685
-
686
- #: -:-
687
- msgid "LDAP|Attribute|olcReplicationInterval"
688
- msgstr ""
689
-
690
- #: -:-
691
- msgid "LDAP|Attribute|olcReplogFile"
692
- msgstr ""
693
-
694
- #: -:-
695
- msgid "LDAP|Attribute|olcRequires"
696
- msgstr ""
697
-
698
- #: -:-
699
- msgid "LDAP|Attribute|olcRestrict"
700
- msgstr ""
701
-
702
- #: -:-
703
- msgid "LDAP|Attribute|olcReverseLookup"
704
- msgstr ""
705
-
706
- #: -:-
707
- msgid "LDAP|Attribute|olcRootDN"
708
- msgstr ""
709
-
710
- #: -:-
711
- msgid "LDAP|Attribute|olcRootDSE"
712
- msgstr ""
713
-
714
- #: -:-
715
- msgid "LDAP|Attribute|olcRootPW"
716
- msgstr ""
717
-
718
- #: -:-
719
- msgid "LDAP|Attribute|olcSaslHost"
720
- msgstr ""
721
-
722
- #: -:-
723
- msgid "LDAP|Attribute|olcSaslRealm"
724
- msgstr ""
725
-
726
- #: -:-
727
- msgid "LDAP|Attribute|olcSaslSecProps"
728
- msgstr ""
729
-
730
- #: -:-
731
- msgid "LDAP|Attribute|olcSchemaDN"
732
- msgstr ""
733
-
734
- #: -:-
735
- msgid "LDAP|Attribute|olcSecurity"
736
- msgstr ""
737
-
738
- #: -:-
739
- msgid "LDAP|Attribute|olcSizeLimit"
740
- msgstr ""
741
-
742
- #: -:-
743
- msgid "LDAP|Attribute|olcSockbufMaxIncoming"
744
- msgstr ""
745
-
746
- #: -:-
747
- msgid "LDAP|Attribute|olcSockbufMaxIncomingAuth"
748
- msgstr ""
749
-
750
- #: -:-
751
- msgid "LDAP|Attribute|olcSrvtab"
752
- msgstr ""
753
-
754
- #: -:-
755
- msgid "LDAP|Attribute|olcSubordinate"
756
- msgstr ""
757
-
758
- #: -:-
759
- msgid "LDAP|Attribute|olcSuffix"
760
- msgstr ""
761
-
762
- #: -:-
763
- msgid "LDAP|Attribute|olcSyncrepl"
764
- msgstr ""
765
-
766
- #: -:-
767
- msgid "LDAP|Attribute|olcTLSCACertificateFile"
768
- msgstr ""
769
-
770
- #: -:-
771
- msgid "LDAP|Attribute|olcTLSCACertificatePath"
772
- msgstr ""
773
-
774
- #: -:-
775
- msgid "LDAP|Attribute|olcTLSCRLCheck"
776
- msgstr ""
777
-
778
- #: -:-
779
- msgid "LDAP|Attribute|olcTLSCertificateFile"
780
- msgstr ""
781
-
782
- #: -:-
783
- msgid "LDAP|Attribute|olcTLSCertificateKeyFile"
784
- msgstr ""
785
-
786
- #: -:-
787
- msgid "LDAP|Attribute|olcTLSCipherSuite"
788
- msgstr ""
789
-
790
- #: -:-
791
- msgid "LDAP|Attribute|olcTLSDHParamFile"
792
- msgstr ""
793
-
794
- #: -:-
795
- msgid "LDAP|Attribute|olcTLSRandFile"
796
- msgstr ""
797
-
798
- #: -:-
799
- msgid "LDAP|Attribute|olcTLSVerifyClient"
800
- msgstr ""
801
-
802
- #: -:-
803
- msgid "LDAP|Attribute|olcThreads"
804
- msgstr ""
805
-
806
- #: -:-
807
- msgid "LDAP|Attribute|olcTimeLimit"
808
- msgstr ""
809
-
810
- #: -:-
811
- msgid "LDAP|Attribute|olcToolThreads"
812
- msgstr ""
813
-
814
- #: -:-
815
- msgid "LDAP|Attribute|olcUpdateDN"
816
- msgstr ""
817
-
818
- #: -:-
819
- msgid "LDAP|Attribute|olcUpdateRef"
820
- msgstr ""
821
-
822
458
  #: -:-
823
459
  msgid "LDAP|Attribute|oncRpcNumber"
824
460
  msgstr ""
@@ -1305,11 +941,11 @@ msgstr ""
1305
941
 
1306
942
  #: -:-
1307
943
  msgid ""
1308
- "LDAP|Description|Attribute|aliasedObjectName|RFC2256: name of aliased object"
944
+ "LDAP|Description|Attribute|aliasedObjectName|RFC4512: name of aliased object"
1309
945
  msgstr ""
1310
946
 
1311
947
  #: -:-
1312
- msgid "LDAP|Description|Attribute|altServer|RFC2252: alternative servers"
948
+ msgid "LDAP|Description|Attribute|altServer|RFC4512: alternative servers"
1313
949
  msgstr ""
1314
950
 
1315
951
  #: -:-
@@ -1325,7 +961,7 @@ msgid ""
1325
961
  msgstr ""
1326
962
 
1327
963
  #: -:-
1328
- msgid "LDAP|Description|Attribute|attributeTypes|RFC2252: attribute types"
964
+ msgid "LDAP|Description|Attribute|attributeTypes|RFC4512: attribute types"
1329
965
  msgstr ""
1330
966
 
1331
967
  #: -:-
@@ -1374,7 +1010,7 @@ msgstr ""
1374
1010
 
1375
1011
  #: -:-
1376
1012
  msgid ""
1377
- "LDAP|Description|Attribute|cn|RFC2256: common name(s) for which the entity "
1013
+ "LDAP|Description|Attribute|cn|RFC4519: common name(s) for which the entity "
1378
1014
  "is known by"
1379
1015
  msgstr ""
1380
1016
 
@@ -1384,12 +1020,12 @@ msgstr ""
1384
1020
 
1385
1021
  #: -:-
1386
1022
  msgid ""
1387
- "LDAP|Description|Attribute|createTimestamp|RFC2252: time which object was "
1023
+ "LDAP|Description|Attribute|createTimestamp|RFC4512: time which object was "
1388
1024
  "created"
1389
1025
  msgstr ""
1390
1026
 
1391
1027
  #: -:-
1392
- msgid "LDAP|Description|Attribute|creatorsName|RFC2252: name of creator"
1028
+ msgid "LDAP|Description|Attribute|creatorsName|RFC4512: name of creator"
1393
1029
  msgstr ""
1394
1030
 
1395
1031
  #: -:-
@@ -1427,7 +1063,7 @@ msgid ""
1427
1063
  msgstr ""
1428
1064
 
1429
1065
  #: -:-
1430
- msgid "LDAP|Description|Attribute|description|RFC2256: descriptive information"
1066
+ msgid "LDAP|Description|Attribute|description|RFC4519: descriptive information"
1431
1067
  msgstr ""
1432
1068
 
1433
1069
  #: -:-
@@ -1444,7 +1080,7 @@ msgstr ""
1444
1080
 
1445
1081
  #: -:-
1446
1082
  msgid ""
1447
- "LDAP|Description|Attribute|distinguishedName|RFC2256: common supertype of DN "
1083
+ "LDAP|Description|Attribute|distinguishedName|RFC4519: common supertype of DN "
1448
1084
  "attributes"
1449
1085
  msgstr ""
1450
1086
 
@@ -1490,6 +1126,10 @@ msgstr ""
1490
1126
  msgid "LDAP|Description|Attribute|drink|RFC1274: favorite drink"
1491
1127
  msgstr ""
1492
1128
 
1129
+ #: -:-
1130
+ msgid "LDAP|Description|Attribute|dynamicSubtrees|RFC2589: dynamic subtrees"
1131
+ msgstr ""
1132
+
1493
1133
  #: -:-
1494
1134
  msgid ""
1495
1135
  "LDAP|Description|Attribute|email|RFC3280: legacy attribute for email "
@@ -1513,6 +1153,14 @@ msgid ""
1513
1153
  "LDAP|Description|Attribute|enhancedSearchGuide|RFC2256: enhanced search guide"
1514
1154
  msgstr ""
1515
1155
 
1156
+ #: -:-
1157
+ msgid "LDAP|Description|Attribute|entryDN|DN of the entry"
1158
+ msgstr ""
1159
+
1160
+ #: -:-
1161
+ msgid "LDAP|Description|Attribute|entryTtl|RFC2589: entry time-to-live"
1162
+ msgstr ""
1163
+
1516
1164
  #: -:-
1517
1165
  msgid "LDAP|Description|Attribute|entryUUID|UUID of the entry"
1518
1166
  msgstr ""
@@ -1535,8 +1183,8 @@ msgstr ""
1535
1183
 
1536
1184
  #: -:-
1537
1185
  msgid ""
1538
- "LDAP|Description|Attribute|gidNumber|An integer uniquely identifying a group "
1539
- "in an administrative domain"
1186
+ "LDAP|Description|Attribute|gidNumber|RFC2307: An integer uniquely "
1187
+ "identifying a group in an administrative domain"
1540
1188
  msgstr ""
1541
1189
 
1542
1190
  #: -:-
@@ -1546,272 +1194,157 @@ msgid ""
1546
1194
  msgstr ""
1547
1195
 
1548
1196
  #: -:-
1549
- msgid "LDAP|Description|Attribute|hasSubordinates|X.501: entry has children"
1550
- msgstr ""
1551
-
1552
- #: -:-
1553
- msgid ""
1554
- "LDAP|Description|Attribute|homeDirectory|The absolute path to the home "
1555
- "directory"
1556
- msgstr ""
1557
-
1558
- #: -:-
1559
- msgid "LDAP|Description|Attribute|homePhone|RFC1274: home telephone number"
1560
- msgstr ""
1561
-
1562
- #: -:-
1563
- msgid ""
1564
- "LDAP|Description|Attribute|homePostalAddress|RFC1274: home postal address"
1565
- msgstr ""
1566
-
1567
- #: -:-
1568
- msgid "LDAP|Description|Attribute|host|RFC1274: host computer"
1569
- msgstr ""
1570
-
1571
- #: -:-
1572
- msgid "LDAP|Description|Attribute|houseIdentifier|RFC2256: house identifier"
1573
- msgstr ""
1574
-
1575
- #: -:-
1576
- msgid "LDAP|Description|Attribute|info|RFC1274: general information"
1577
- msgstr ""
1578
-
1579
- #: -:-
1580
- msgid ""
1581
- "LDAP|Description|Attribute|initials|RFC2256: initials of some or all of "
1582
- "names, but not the surname(s)."
1583
- msgstr ""
1584
-
1585
- #: -:-
1586
- msgid ""
1587
- "LDAP|Description|Attribute|internationaliSDNNumber|RFC2256: international "
1588
- "ISDN number"
1589
- msgstr ""
1590
-
1591
- #: -:-
1592
- msgid "LDAP|Description|Attribute|ipHostNumber|IP address"
1593
- msgstr ""
1594
-
1595
- #: -:-
1596
- msgid "LDAP|Description|Attribute|ipNetmaskNumber|IP netmask"
1597
- msgstr ""
1598
-
1599
- #: -:-
1600
- msgid "LDAP|Description|Attribute|ipNetworkNumber|IP network"
1601
- msgstr ""
1602
-
1603
- #: -:-
1604
- msgid "LDAP|Description|Attribute|janetMailbox|RFC1274: Janet mailbox"
1605
- msgstr ""
1606
-
1607
- #: -:-
1608
- msgid "LDAP|Description|Attribute|jpegPhoto|RFC2798: a JPEG image"
1609
- msgstr ""
1610
-
1611
- #: -:-
1612
- msgid ""
1613
- "LDAP|Description|Attribute|knowledgeInformation|RFC2256: knowledge "
1614
- "information"
1615
- msgstr ""
1616
-
1617
- #: -:-
1618
- msgid ""
1619
- "LDAP|Description|Attribute|labeledURI|RFC2079: Uniform Resource Identifier "
1620
- "with optional label"
1621
- msgstr ""
1622
-
1623
- #: -:-
1624
- msgid "LDAP|Description|Attribute|ldapSyntaxes|RFC2252: LDAP syntaxes"
1625
- msgstr ""
1626
-
1627
- #: -:-
1628
- msgid "LDAP|Description|Attribute|loginShell|The path to the login shell"
1629
- msgstr ""
1630
-
1631
- #: -:-
1632
- msgid ""
1633
- "LDAP|Description|Attribute|l|RFC2256: locality which this object resides in"
1634
- msgstr ""
1635
-
1636
- #: -:-
1637
- msgid "LDAP|Description|Attribute|macAddress|MAC address"
1638
- msgstr ""
1639
-
1640
- #: -:-
1641
- msgid ""
1642
- "LDAP|Description|Attribute|mailPreferenceOption|RFC1274: mail preference "
1643
- "option"
1644
- msgstr ""
1645
-
1646
- #: -:-
1647
- msgid "LDAP|Description|Attribute|mail|RFC1274: RFC822 Mailbox"
1648
- msgstr ""
1649
-
1650
- #: -:-
1651
- msgid "LDAP|Description|Attribute|manager|RFC1274: DN of manager"
1652
- msgstr ""
1653
-
1654
- #: -:-
1655
- msgid "LDAP|Description|Attribute|matchingRuleUse|RFC2252: matching rule uses"
1656
- msgstr ""
1657
-
1658
- #: -:-
1659
- msgid "LDAP|Description|Attribute|matchingRules|RFC2252: matching rules"
1660
- msgstr ""
1661
-
1662
- #: -:-
1663
- msgid "LDAP|Description|Attribute|member|RFC2256: member of a group"
1197
+ msgid "LDAP|Description|Attribute|hasSubordinates|X.501: entry has children"
1664
1198
  msgstr ""
1665
1199
 
1666
1200
  #: -:-
1667
- msgid "LDAP|Description|Attribute|mobile|RFC1274: mobile telephone number"
1201
+ msgid ""
1202
+ "LDAP|Description|Attribute|homeDirectory|The absolute path to the home "
1203
+ "directory"
1668
1204
  msgstr ""
1669
1205
 
1670
1206
  #: -:-
1671
- msgid "LDAP|Description|Attribute|modifiersName|RFC2252: name of last modifier"
1207
+ msgid "LDAP|Description|Attribute|homePhone|RFC1274: home telephone number"
1672
1208
  msgstr ""
1673
1209
 
1674
1210
  #: -:-
1675
1211
  msgid ""
1676
- "LDAP|Description|Attribute|modifyTimestamp|RFC2252: time which object was "
1677
- "last modified"
1212
+ "LDAP|Description|Attribute|homePostalAddress|RFC1274: home postal address"
1678
1213
  msgstr ""
1679
1214
 
1680
1215
  #: -:-
1681
- msgid ""
1682
- "LDAP|Description|Attribute|name|RFC2256: common supertype of name attributes"
1216
+ msgid "LDAP|Description|Attribute|host|RFC1274: host computer"
1683
1217
  msgstr ""
1684
1218
 
1685
1219
  #: -:-
1686
- msgid "LDAP|Description|Attribute|namingContexts|RFC2252: naming contexts"
1220
+ msgid "LDAP|Description|Attribute|houseIdentifier|RFC2256: house identifier"
1687
1221
  msgstr ""
1688
1222
 
1689
1223
  #: -:-
1690
- msgid "LDAP|Description|Attribute|nisNetgroupTriple|Netgroup triple"
1224
+ msgid "LDAP|Description|Attribute|info|RFC1274: general information"
1691
1225
  msgstr ""
1692
1226
 
1693
1227
  #: -:-
1694
- msgid "LDAP|Description|Attribute|objectClasses|RFC2252: object classes"
1228
+ msgid ""
1229
+ "LDAP|Description|Attribute|initials|RFC2256: initials of some or all of "
1230
+ "names, but not the surname(s)."
1695
1231
  msgstr ""
1696
1232
 
1697
1233
  #: -:-
1698
1234
  msgid ""
1699
- "LDAP|Description|Attribute|objectClass|RFC2256: object classes of the entity"
1235
+ "LDAP|Description|Attribute|internationaliSDNNumber|RFC2256: international "
1236
+ "ISDN number"
1700
1237
  msgstr ""
1701
1238
 
1702
1239
  #: -:-
1703
- msgid "LDAP|Description|Attribute|olcAccess|Access Control List"
1240
+ msgid "LDAP|Description|Attribute|ipHostNumber|IP address"
1704
1241
  msgstr ""
1705
1242
 
1706
1243
  #: -:-
1707
- msgid "LDAP|Description|Attribute|olcAllows|Allowed set of deprecated features"
1244
+ msgid "LDAP|Description|Attribute|ipNetmaskNumber|IP netmask"
1708
1245
  msgstr ""
1709
1246
 
1710
1247
  #: -:-
1711
- msgid ""
1712
- "LDAP|Description|Attribute|olcArgsFile|File for slapd command line options"
1248
+ msgid "LDAP|Description|Attribute|ipNetworkNumber|IP network"
1713
1249
  msgstr ""
1714
1250
 
1715
1251
  #: -:-
1716
- msgid "LDAP|Description|Attribute|olcAttributeTypes|OpenLDAP attributeTypes"
1252
+ msgid "LDAP|Description|Attribute|janetMailbox|RFC1274: Janet mailbox"
1717
1253
  msgstr ""
1718
1254
 
1719
1255
  #: -:-
1720
- msgid "LDAP|Description|Attribute|olcBackend|A type of backend"
1256
+ msgid "LDAP|Description|Attribute|jpegPhoto|RFC2798: a JPEG image"
1721
1257
  msgstr ""
1722
1258
 
1723
1259
  #: -:-
1724
1260
  msgid ""
1725
- "LDAP|Description|Attribute|olcConfigDir|Directory for slapd configuration "
1726
- "backend"
1261
+ "LDAP|Description|Attribute|knowledgeInformation|RFC2256: knowledge "
1262
+ "information"
1727
1263
  msgstr ""
1728
1264
 
1729
1265
  #: -:-
1730
1266
  msgid ""
1731
- "LDAP|Description|Attribute|olcConfigFile|File for slapd configuration "
1732
- "directives"
1267
+ "LDAP|Description|Attribute|labeledURI|RFC2079: Uniform Resource Identifier "
1268
+ "with optional label"
1733
1269
  msgstr ""
1734
1270
 
1735
1271
  #: -:-
1736
- msgid ""
1737
- "LDAP|Description|Attribute|olcDatabase|The backend type for a database "
1738
- "instance"
1272
+ msgid "LDAP|Description|Attribute|ldapSyntaxes|RFC4512: LDAP syntaxes"
1739
1273
  msgstr ""
1740
1274
 
1741
1275
  #: -:-
1742
- msgid ""
1743
- "LDAP|Description|Attribute|olcDbCacheFree|Number of extra entries to free "
1744
- "when max is reached"
1276
+ msgid "LDAP|Description|Attribute|loginShell|The path to the login shell"
1745
1277
  msgstr ""
1746
1278
 
1747
1279
  #: -:-
1748
- msgid "LDAP|Description|Attribute|olcDbCacheSize|Entry cache size in entries"
1280
+ msgid ""
1281
+ "LDAP|Description|Attribute|l|RFC2256: locality which this object resides in"
1749
1282
  msgstr ""
1750
1283
 
1751
1284
  #: -:-
1752
- msgid ""
1753
- "LDAP|Description|Attribute|olcDbCheckpoint|Database checkpoint interval in "
1754
- "kbytes and minutes"
1285
+ msgid "LDAP|Description|Attribute|macAddress|MAC address"
1755
1286
  msgstr ""
1756
1287
 
1757
1288
  #: -:-
1758
1289
  msgid ""
1759
- "LDAP|Description|Attribute|olcDbConfig|BerkeleyDB DB_CONFIG configuration "
1760
- "directives"
1290
+ "LDAP|Description|Attribute|mailPreferenceOption|RFC1274: mail preference "
1291
+ "option"
1761
1292
  msgstr ""
1762
1293
 
1763
1294
  #: -:-
1764
- msgid ""
1765
- "LDAP|Description|Attribute|olcDbDirectory|Directory for database content"
1295
+ msgid "LDAP|Description|Attribute|mail|RFC1274: RFC822 Mailbox"
1766
1296
  msgstr ""
1767
1297
 
1768
1298
  #: -:-
1769
- msgid ""
1770
- "LDAP|Description|Attribute|olcDbDirtyRead|Allow reads of uncommitted data"
1299
+ msgid "LDAP|Description|Attribute|manager|RFC1274: DN of manager"
1771
1300
  msgstr ""
1772
1301
 
1773
1302
  #: -:-
1774
- msgid "LDAP|Description|Attribute|olcDbIDLcacheSize|IDL cache size in IDLs"
1303
+ msgid "LDAP|Description|Attribute|matchingRuleUse|RFC4512: matching rule uses"
1775
1304
  msgstr ""
1776
1305
 
1777
1306
  #: -:-
1778
- msgid "LDAP|Description|Attribute|olcDbIndex|Attribute index parameters"
1307
+ msgid "LDAP|Description|Attribute|matchingRules|RFC4512: matching rules"
1779
1308
  msgstr ""
1780
1309
 
1781
1310
  #: -:-
1782
- msgid ""
1783
- "LDAP|Description|Attribute|olcDbLinearIndex|Index attributes one at a time"
1311
+ msgid "LDAP|Description|Attribute|member|RFC2256: member of a group"
1784
1312
  msgstr ""
1785
1313
 
1786
1314
  #: -:-
1787
- msgid "LDAP|Description|Attribute|olcDbLockDetect|Deadlock detection algorithm"
1315
+ msgid "LDAP|Description|Attribute|mobile|RFC1274: mobile telephone number"
1788
1316
  msgstr ""
1789
1317
 
1790
1318
  #: -:-
1791
- msgid "LDAP|Description|Attribute|olcDbMode|Unix permissions of database files"
1319
+ msgid "LDAP|Description|Attribute|modifiersName|RFC4512: name of last modifier"
1792
1320
  msgstr ""
1793
1321
 
1794
1322
  #: -:-
1795
1323
  msgid ""
1796
- "LDAP|Description|Attribute|olcDbNoSync|Disable synchronous database writes"
1324
+ "LDAP|Description|Attribute|modifyTimestamp|RFC4512: time which object was "
1325
+ "last modified"
1797
1326
  msgstr ""
1798
1327
 
1799
1328
  #: -:-
1800
1329
  msgid ""
1801
- "LDAP|Description|Attribute|olcDbSearchStack|Depth of search stack in IDLs"
1330
+ "LDAP|Description|Attribute|name|RFC4519: common supertype of name attributes"
1802
1331
  msgstr ""
1803
1332
 
1804
1333
  #: -:-
1805
- msgid "LDAP|Description|Attribute|olcDbShmKey|Key for shared memory region"
1334
+ msgid "LDAP|Description|Attribute|namingContexts|RFC4512: naming contexts"
1806
1335
  msgstr ""
1807
1336
 
1808
1337
  #: -:-
1809
- msgid ""
1810
- "LDAP|Description|Attribute|olcDitContentRules|OpenLDAP DIT content rules"
1338
+ msgid "LDAP|Description|Attribute|nisNetgroupTriple|Netgroup triple"
1339
+ msgstr ""
1340
+
1341
+ #: -:-
1342
+ msgid "LDAP|Description|Attribute|objectClasses|RFC4512: object classes"
1811
1343
  msgstr ""
1812
1344
 
1813
1345
  #: -:-
1814
- msgid "LDAP|Description|Attribute|olcObjectClasses|OpenLDAP object classes"
1346
+ msgid ""
1347
+ "LDAP|Description|Attribute|objectClass|RFC4512: object classes of the entity"
1815
1348
  msgstr ""
1816
1349
 
1817
1350
  #: -:-
@@ -1899,7 +1432,7 @@ msgid ""
1899
1432
  msgstr ""
1900
1433
 
1901
1434
  #: -:-
1902
- msgid "LDAP|Description|Attribute|ref|namedref: subordinate referral URL"
1435
+ msgid "LDAP|Description|Attribute|ref|RFC3296: subordinate referral URL"
1903
1436
  msgstr ""
1904
1437
 
1905
1438
  #: -:-
@@ -2156,7 +1689,7 @@ msgid "LDAP|Description|Attribute|secretary|RFC1274: DN of secretary"
2156
1689
  msgstr ""
2157
1690
 
2158
1691
  #: -:-
2159
- msgid "LDAP|Description|Attribute|seeAlso|RFC2256: DN of related object"
1692
+ msgid "LDAP|Description|Attribute|seeAlso|RFC4519: DN of related object"
2160
1693
  msgstr ""
2161
1694
 
2162
1695
  #: -:-
@@ -2182,8 +1715,8 @@ msgstr ""
2182
1715
 
2183
1716
  #: -:-
2184
1717
  msgid ""
2185
- "LDAP|Description|Attribute|structuralObjectClass|X.500(93): structural "
2186
- "object class of entry"
1718
+ "LDAP|Description|Attribute|structuralObjectClass|RFC4512: structural object "
1719
+ "class of entry"
2187
1720
  msgstr ""
2188
1721
 
2189
1722
  #: -:-
@@ -2194,7 +1727,7 @@ msgstr ""
2194
1727
 
2195
1728
  #: -:-
2196
1729
  msgid ""
2197
- "LDAP|Description|Attribute|subschemaSubentry|RFC2252: name of controlling "
1730
+ "LDAP|Description|Attribute|subschemaSubentry|RFC4512: name of controlling "
2198
1731
  "subschema entry"
2199
1732
  msgstr ""
2200
1733
 
@@ -2222,29 +1755,30 @@ msgid ""
2222
1755
  msgstr ""
2223
1756
 
2224
1757
  #: -:-
2225
- msgid "LDAP|Description|Attribute|supportedControl|RFC2252: supported controls"
1758
+ msgid "LDAP|Description|Attribute|supportedControl|RFC4512: supported controls"
2226
1759
  msgstr ""
2227
1760
 
2228
1761
  #: -:-
2229
1762
  msgid ""
2230
- "LDAP|Description|Attribute|supportedExtension|RFC2252: supported extended "
1763
+ "LDAP|Description|Attribute|supportedExtension|RFC4512: supported extended "
2231
1764
  "operations"
2232
1765
  msgstr ""
2233
1766
 
2234
1767
  #: -:-
2235
1768
  msgid ""
2236
- "LDAP|Description|Attribute|supportedFeatures|features supported by the server"
1769
+ "LDAP|Description|Attribute|supportedFeatures|RFC4512: features supported by "
1770
+ "the server"
2237
1771
  msgstr ""
2238
1772
 
2239
1773
  #: -:-
2240
1774
  msgid ""
2241
- "LDAP|Description|Attribute|supportedLDAPVersion|RFC2252: supported LDAP "
1775
+ "LDAP|Description|Attribute|supportedLDAPVersion|RFC4512: supported LDAP "
2242
1776
  "versions"
2243
1777
  msgstr ""
2244
1778
 
2245
1779
  #: -:-
2246
1780
  msgid ""
2247
- "LDAP|Description|Attribute|supportedSASLMechanisms|RFC2252: supported SASL "
1781
+ "LDAP|Description|Attribute|supportedSASLMechanisms|RFC4512: supported SASL "
2248
1782
  "mechanisms"
2249
1783
  msgstr ""
2250
1784
 
@@ -2269,12 +1803,12 @@ msgstr ""
2269
1803
 
2270
1804
  #: -:-
2271
1805
  msgid ""
2272
- "LDAP|Description|Attribute|uidNumber|An integer uniquely identifying a user "
2273
- "in an administrative domain"
1806
+ "LDAP|Description|Attribute|uidNumber|RFC2307: An integer uniquely "
1807
+ "identifying a user in an administrative domain"
2274
1808
  msgstr ""
2275
1809
 
2276
1810
  #: -:-
2277
- msgid "LDAP|Description|Attribute|uid|RFC1274: user identifier"
1811
+ msgid "LDAP|Description|Attribute|uid|RFC4519: user identifier"
2278
1812
  msgstr ""
2279
1813
 
2280
1814
  #: -:-
@@ -2303,7 +1837,7 @@ msgid ""
2303
1837
  msgstr ""
2304
1838
 
2305
1839
  #: -:-
2306
- msgid "LDAP|Description|Attribute|userPassword|RFC2256/2307: password of user"
1840
+ msgid "LDAP|Description|Attribute|userPassword|RFC4519/2307: password of user"
2307
1841
  msgstr ""
2308
1842
 
2309
1843
  #: -:-
@@ -2332,12 +1866,31 @@ msgid ""
2332
1866
  "identifier"
2333
1867
  msgstr ""
2334
1868
 
1869
+ #: -:-
1870
+ msgid ""
1871
+ "LDAP|Description|ObjectClass|OpenLDAPdisplayableObject|OpenLDAP Displayable "
1872
+ "Object"
1873
+ msgstr ""
1874
+
1875
+ #: -:-
1876
+ msgid "LDAP|Description|ObjectClass|OpenLDAPorg|OpenLDAP Organizational Object"
1877
+ msgstr ""
1878
+
1879
+ #: -:-
1880
+ msgid ""
1881
+ "LDAP|Description|ObjectClass|OpenLDAPou|OpenLDAP Organizational Unit Object"
1882
+ msgstr ""
1883
+
1884
+ #: -:-
1885
+ msgid "LDAP|Description|ObjectClass|OpenLDAPperson|OpenLDAP Person"
1886
+ msgstr ""
1887
+
2335
1888
  #: -:-
2336
1889
  msgid "LDAP|Description|ObjectClass|OpenLDAProotDSE|OpenLDAP Root DSE object"
2337
1890
  msgstr ""
2338
1891
 
2339
1892
  #: -:-
2340
- msgid "LDAP|Description|ObjectClass|alias|RFC2256: an alias"
1893
+ msgid "LDAP|Description|ObjectClass|alias|RFC4512: an alias"
2341
1894
  msgstr ""
2342
1895
 
2343
1896
  #: -:-
@@ -2389,9 +1942,13 @@ msgid ""
2389
1942
  "to an domain"
2390
1943
  msgstr ""
2391
1944
 
1945
+ #: -:-
1946
+ msgid "LDAP|Description|ObjectClass|dynamicObject|RFC2589: Dynamic Object"
1947
+ msgstr ""
1948
+
2392
1949
  #: -:-
2393
1950
  msgid ""
2394
- "LDAP|Description|ObjectClass|extensibleObject|RFC2252: extensible object"
1951
+ "LDAP|Description|ObjectClass|extensibleObject|RFC4512: extensible object"
2395
1952
  msgstr ""
2396
1953
 
2397
1954
  #: -:-
@@ -2455,61 +2012,6 @@ msgstr ""
2455
2012
  msgid "LDAP|Description|ObjectClass|nisObject|An entry in a NIS map"
2456
2013
  msgstr ""
2457
2014
 
2458
- #: -:-
2459
- msgid ""
2460
- "LDAP|Description|ObjectClass|olcBackendConfig|OpenLDAP Backend-specific "
2461
- "options"
2462
- msgstr ""
2463
-
2464
- #: -:-
2465
- msgid "LDAP|Description|ObjectClass|olcBdbConfig|BDB backend configuration"
2466
- msgstr ""
2467
-
2468
- #: -:-
2469
- msgid "LDAP|Description|ObjectClass|olcConfig|OpenLDAP configuration object"
2470
- msgstr ""
2471
-
2472
- #: -:-
2473
- msgid ""
2474
- "LDAP|Description|ObjectClass|olcDatabaseConfig|OpenLDAP Database-specific "
2475
- "options"
2476
- msgstr ""
2477
-
2478
- #: -:-
2479
- msgid ""
2480
- "LDAP|Description|ObjectClass|olcFrontendConfig|OpenLDAP frontend "
2481
- "configuration"
2482
- msgstr ""
2483
-
2484
- #: -:-
2485
- msgid ""
2486
- "LDAP|Description|ObjectClass|olcGlobal|OpenLDAP Global configuration options"
2487
- msgstr ""
2488
-
2489
- #: -:-
2490
- msgid ""
2491
- "LDAP|Description|ObjectClass|olcIncludeFile|OpenLDAP configuration include "
2492
- "file"
2493
- msgstr ""
2494
-
2495
- #: -:-
2496
- msgid "LDAP|Description|ObjectClass|olcLdifConfig|LDIF backend configuration"
2497
- msgstr ""
2498
-
2499
- #: -:-
2500
- msgid "LDAP|Description|ObjectClass|olcModuleList|OpenLDAP dynamic module info"
2501
- msgstr ""
2502
-
2503
- #: -:-
2504
- msgid ""
2505
- "LDAP|Description|ObjectClass|olcOverlayConfig|OpenLDAP Overlay-specific "
2506
- "options"
2507
- msgstr ""
2508
-
2509
- #: -:-
2510
- msgid "LDAP|Description|ObjectClass|olcSchemaConfig|OpenLDAP schema object"
2511
- msgstr ""
2512
-
2513
2015
  #: -:-
2514
2016
  msgid "LDAP|Description|ObjectClass|oncRpc|Abstraction of an ONC/RPC binding"
2515
2017
  msgstr ""
@@ -2632,9 +2134,13 @@ msgid ""
2632
2134
  "authentication user"
2633
2135
  msgstr ""
2634
2136
 
2137
+ #: -:-
2138
+ msgid "LDAP|Description|ObjectClass|subentry|RFC3672: subentry"
2139
+ msgstr ""
2140
+
2635
2141
  #: -:-
2636
2142
  msgid ""
2637
- "LDAP|Description|ObjectClass|subschema|RFC2252: controlling subschema (sub)"
2143
+ "LDAP|Description|ObjectClass|subschema|RFC4512: controlling subschema (sub)"
2638
2144
  "entry"
2639
2145
  msgstr ""
2640
2146
 
@@ -2786,6 +2292,22 @@ msgstr ""
2786
2292
  msgid "LDAP|ObjectClass|LDAProotDSE"
2787
2293
  msgstr ""
2788
2294
 
2295
+ #: -:-
2296
+ msgid "LDAP|ObjectClass|OpenLDAPdisplayableObject"
2297
+ msgstr ""
2298
+
2299
+ #: -:-
2300
+ msgid "LDAP|ObjectClass|OpenLDAPorg"
2301
+ msgstr ""
2302
+
2303
+ #: -:-
2304
+ msgid "LDAP|ObjectClass|OpenLDAPou"
2305
+ msgstr ""
2306
+
2307
+ #: -:-
2308
+ msgid "LDAP|ObjectClass|OpenLDAPperson"
2309
+ msgstr ""
2310
+
2789
2311
  #: -:-
2790
2312
  msgid "LDAP|ObjectClass|OpenLDAProotDSE"
2791
2313
  msgstr ""
@@ -2870,6 +2392,10 @@ msgstr ""
2870
2392
  msgid "LDAP|ObjectClass|domainRelatedObject"
2871
2393
  msgstr ""
2872
2394
 
2395
+ #: -:-
2396
+ msgid "LDAP|ObjectClass|dynamicObject"
2397
+ msgstr ""
2398
+
2873
2399
  #: -:-
2874
2400
  msgid "LDAP|ObjectClass|extensibleObject"
2875
2401
  msgstr ""
@@ -2934,50 +2460,6 @@ msgstr ""
2934
2460
  msgid "LDAP|ObjectClass|nisObject"
2935
2461
  msgstr ""
2936
2462
 
2937
- #: -:-
2938
- msgid "LDAP|ObjectClass|olcBackendConfig"
2939
- msgstr ""
2940
-
2941
- #: -:-
2942
- msgid "LDAP|ObjectClass|olcBdbConfig"
2943
- msgstr ""
2944
-
2945
- #: -:-
2946
- msgid "LDAP|ObjectClass|olcConfig"
2947
- msgstr ""
2948
-
2949
- #: -:-
2950
- msgid "LDAP|ObjectClass|olcDatabaseConfig"
2951
- msgstr ""
2952
-
2953
- #: -:-
2954
- msgid "LDAP|ObjectClass|olcFrontendConfig"
2955
- msgstr ""
2956
-
2957
- #: -:-
2958
- msgid "LDAP|ObjectClass|olcGlobal"
2959
- msgstr ""
2960
-
2961
- #: -:-
2962
- msgid "LDAP|ObjectClass|olcIncludeFile"
2963
- msgstr ""
2964
-
2965
- #: -:-
2966
- msgid "LDAP|ObjectClass|olcLdifConfig"
2967
- msgstr ""
2968
-
2969
- #: -:-
2970
- msgid "LDAP|ObjectClass|olcModuleList"
2971
- msgstr ""
2972
-
2973
- #: -:-
2974
- msgid "LDAP|ObjectClass|olcOverlayConfig"
2975
- msgstr ""
2976
-
2977
- #: -:-
2978
- msgid "LDAP|ObjectClass|olcSchemaConfig"
2979
- msgstr ""
2980
-
2981
2463
  #: -:-
2982
2464
  msgid "LDAP|ObjectClass|oncRpc"
2983
2465
  msgstr ""
@@ -3242,93 +2724,100 @@ msgstr ""
3242
2724
  msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.9"
3243
2725
  msgstr ""
3244
2726
 
3245
- #: lib/active_ldap/object_class.rb:51
2727
+ #: lib/active_ldap/object_class.rb:53
3246
2728
  msgid "Value in objectClass array is not a String: %s"
3247
2729
  msgstr ""
3248
2730
 
3249
- #: lib/active_ldap/object_class.rb:65
2731
+ #: lib/active_ldap/object_class.rb:67
3250
2732
  msgid "unknown objectClass in LDAP server: %s"
3251
2733
  msgstr ""
3252
2734
 
3253
- #: lib/active_ldap/object_class.rb:83
2735
+ #: lib/active_ldap/object_class.rb:85
3254
2736
  msgid "Can't remove required objectClass: %s"
3255
2737
  msgstr ""
3256
2738
 
3257
- #: lib/active_ldap/adapter/ldap.rb:82
3258
- msgid "No matches: filter: %s: attributes: %s"
3259
- msgstr ""
3260
-
3261
- #: lib/active_ldap/adapter/ldap.rb:151
3262
- msgid "LDAP server is down: %s"
3263
- msgstr ""
3264
-
3265
- #: lib/active_ldap/adapter/ldap.rb:167 lib/active_ldap/adapter/net_ldap.rb:161
2739
+ #: lib/active_ldap/adapter/jndi.rb:109 lib/active_ldap/adapter/ldap.rb:201
2740
+ #: lib/active_ldap/adapter/net_ldap.rb:158
3266
2741
  msgid "%s is not one of the available connect methods: %s"
3267
2742
  msgstr ""
3268
2743
 
3269
- #: lib/active_ldap/adapter/ldap.rb:180 lib/active_ldap/adapter/net_ldap.rb:174
2744
+ #: lib/active_ldap/adapter/jndi.rb:122 lib/active_ldap/adapter/ldap.rb:214
2745
+ #: lib/active_ldap/adapter/net_ldap.rb:171
3270
2746
  msgid "%s is not one of the available LDAP scope: %s"
3271
2747
  msgstr ""
3272
2748
 
3273
- #: lib/active_ldap/adapter/ldap.rb:226 lib/active_ldap/adapter/net_ldap.rb:287
2749
+ #: lib/active_ldap/adapter/jndi.rb:170 lib/active_ldap/adapter/ldap.rb:271
2750
+ #: lib/active_ldap/adapter/net_ldap.rb:295
3274
2751
  msgid "unknown type: %s"
3275
2752
  msgstr ""
3276
2753
 
3277
- #: lib/active_ldap/adapter/net_ldap.rb:207
2754
+ #: lib/active_ldap/adapter/ldap.rb:113
2755
+ msgid "No matches: filter: %s: attributes: %s"
2756
+ msgstr ""
2757
+
2758
+ #: lib/active_ldap/adapter/net_ldap.rb:215
3278
2759
  msgid "unsupported qops: %s"
3279
2760
  msgstr ""
3280
2761
 
3281
- #: lib/active_ldap/adapter/base.rb:62
3282
- msgid "Bound by SASL as %s"
2762
+ #: lib/active_ldap/adapter/base.rb:77
2763
+ msgid "Bound to %s by SASL as %s"
3283
2764
  msgstr ""
3284
2765
 
3285
- #: lib/active_ldap/adapter/base.rb:64
3286
- msgid "Bound by simple as %s"
2766
+ #: lib/active_ldap/adapter/base.rb:79
2767
+ msgid "Bound to %s by simple as %s"
3287
2768
  msgstr ""
3288
2769
 
3289
- #: lib/active_ldap/adapter/base.rb:66
3290
- msgid "Bound as anonymous"
2770
+ #: lib/active_ldap/adapter/base.rb:81
2771
+ msgid "Bound to %s as anonymous"
3291
2772
  msgstr ""
3292
2773
 
3293
- #: lib/active_ldap/adapter/base.rb:69
3294
- msgid "All authentication methods exhausted."
2774
+ #: lib/active_ldap/adapter/base.rb:84
2775
+ msgid "All authentication methods for %s exhausted."
3295
2776
  msgstr ""
3296
2777
 
3297
- #: lib/active_ldap/adapter/base.rb:144
2778
+ #: lib/active_ldap/adapter/base.rb:156
3298
2779
  msgid "Ignore error %s(%s): filter %s: attributes: %s"
3299
2780
  msgstr ""
3300
2781
 
3301
- #: lib/active_ldap/adapter/base.rb:162 lib/active_ldap/adapter/base.rb:172
2782
+ #: lib/active_ldap/adapter/base.rb:174 lib/active_ldap/adapter/base.rb:184
3302
2783
  msgid "No such entry: %s"
3303
2784
  msgstr ""
3304
2785
 
3305
- #: lib/active_ldap/adapter/base.rb:176 lib/active_ldap/adapter/base.rb:178
3306
- #: lib/active_ldap/adapter/base.rb:180 lib/active_ldap/adapter/base.rb:182
3307
- #: lib/active_ldap/adapter/base.rb:194
2786
+ #: lib/active_ldap/adapter/base.rb:188 lib/active_ldap/adapter/base.rb:190
2787
+ #: lib/active_ldap/adapter/base.rb:192 lib/active_ldap/adapter/base.rb:194
2788
+ #: lib/active_ldap/adapter/base.rb:206
3308
2789
  msgid "%s: %s"
3309
2790
  msgstr ""
3310
2791
 
3311
- #: lib/active_ldap/adapter/base.rb:236
2792
+ #: lib/active_ldap/adapter/base.rb:263
3312
2793
  msgid "password_block not nil or Proc object. Ignoring."
3313
2794
  msgstr ""
3314
2795
 
3315
- #: lib/active_ldap/adapter/base.rb:255
2796
+ #: lib/active_ldap/adapter/base.rb:282
3316
2797
  msgid "Requested action timed out."
3317
2798
  msgstr ""
3318
2799
 
3319
- #: lib/active_ldap/adapter/base.rb:465
2800
+ #: lib/active_ldap/adapter/base.rb:322
2801
+ msgid "Skip simple bind with empty password."
2802
+ msgstr ""
2803
+
2804
+ #: lib/active_ldap/adapter/base.rb:326
2805
+ msgid "Can't use empty password for simple bind."
2806
+ msgstr ""
2807
+
2808
+ #: lib/active_ldap/adapter/base.rb:517
3320
2809
  msgid "invalid logical operator: %s: available operators: %s"
3321
2810
  msgstr ""
3322
2811
 
3323
- #: lib/active_ldap/adapter/base.rb:482
2812
+ #: lib/active_ldap/adapter/base.rb:534
3324
2813
  msgid "Giving up trying to reconnect to LDAP server."
3325
2814
  msgstr ""
3326
2815
 
3327
- #: lib/active_ldap/adapter/base.rb:485
2816
+ #: lib/active_ldap/adapter/base.rb:537
3328
2817
  msgid "Attempting to reconnect"
3329
2818
  msgstr ""
3330
2819
 
3331
- #: lib/active_ldap/adapter/base.rb:496
2820
+ #: lib/active_ldap/adapter/base.rb:548
3332
2821
  msgid ""
3333
2822
  "Reconnect to server failed: %s\n"
3334
2823
  "Reconnect to server failed backtrace:\n"
@@ -3339,38 +2828,142 @@ msgstr ""
3339
2828
  msgid "parent must be an entry or parent DN: %s"
3340
2829
  msgstr ""
3341
2830
 
3342
- #: lib/active_ldap/operations.rb:37
3343
- msgid "Search value must be a String: %s"
3344
- msgstr ""
3345
-
3346
- #: lib/active_ldap/operations.rb:50
2831
+ #: lib/active_ldap/operations.rb:46
3347
2832
  msgid ":ldap_scope search option is deprecated. Use :scope instead."
3348
2833
  msgstr ""
3349
2834
 
3350
- #: lib/active_ldap/operations.rb:201
2835
+ #: lib/active_ldap/operations.rb:210
3351
2836
  msgid "Invalid order: %s"
3352
2837
  msgstr ""
3353
2838
 
3354
- #: lib/active_ldap/operations.rb:236
2839
+ #: lib/active_ldap/operations.rb:246
3355
2840
  msgid "Couldn't find %s without a DN"
3356
2841
  msgstr ""
3357
2842
 
3358
- #: lib/active_ldap/operations.rb:258
2843
+ #: lib/active_ldap/operations.rb:268
3359
2844
  msgid "Couldn't find %s: DN: %s: filter: %s"
3360
2845
  msgstr ""
3361
2846
 
3362
- #: lib/active_ldap/operations.rb:261
2847
+ #: lib/active_ldap/operations.rb:271
3363
2848
  msgid "Couldn't find %s: DN: %s"
3364
2849
  msgstr ""
3365
2850
 
3366
- #: lib/active_ldap/operations.rb:288
2851
+ #: lib/active_ldap/operations.rb:298
3367
2852
  msgid "Couldn't find all %s: DNs (%s): filter: %s"
3368
2853
  msgstr ""
3369
2854
 
3370
- #: lib/active_ldap/operations.rb:291
2855
+ #: lib/active_ldap/operations.rb:301
3371
2856
  msgid "Couldn't find all %s: DNs (%s)"
3372
2857
  msgstr ""
3373
2858
 
2859
+ #: lib/active_ldap/ldif.rb:377
2860
+ msgid "version spec is missing"
2861
+ msgstr ""
2862
+
2863
+ #: lib/active_ldap/ldif.rb:381
2864
+ msgid "version number is missing"
2865
+ msgstr ""
2866
+
2867
+ #: lib/active_ldap/ldif.rb:385
2868
+ msgid "unsupported version: %d"
2869
+ msgstr ""
2870
+
2871
+ #: lib/active_ldap/ldif.rb:389
2872
+ msgid "separator is missing"
2873
+ msgstr ""
2874
+
2875
+ #: lib/active_ldap/ldif.rb:393
2876
+ msgid "'dn:' is missing"
2877
+ msgstr ""
2878
+
2879
+ #: lib/active_ldap/ldif.rb:397
2880
+ msgid "DN is missing"
2881
+ msgstr ""
2882
+
2883
+ #: lib/active_ldap/ldif.rb:401
2884
+ msgid "DN is invalid: %s: %s"
2885
+ msgstr ""
2886
+
2887
+ #: lib/active_ldap/ldif.rb:405
2888
+ msgid "DN has an invalid character: %s"
2889
+ msgstr ""
2890
+
2891
+ #: lib/active_ldap/ldif.rb:409 lib/active_ldap/distinguished_name.rb:140
2892
+ msgid "attribute type is missing"
2893
+ msgstr ""
2894
+
2895
+ #: lib/active_ldap/ldif.rb:413
2896
+ msgid "option is missing"
2897
+ msgstr ""
2898
+
2899
+ #: lib/active_ldap/ldif.rb:417
2900
+ msgid "':' is missing"
2901
+ msgstr ""
2902
+
2903
+ #: lib/active_ldap/ldif.rb:421
2904
+ msgid "URI is invalid: %s: %s"
2905
+ msgstr ""
2906
+
2907
+ #: lib/active_ldap/ldif.rb:425
2908
+ msgid "'-' is missing"
2909
+ msgstr ""
2910
+
2911
+ #: lib/active_ldap/ldif.rb:429
2912
+ msgid "unknown change type: %s"
2913
+ msgstr ""
2914
+
2915
+ #: lib/active_ldap/ldif.rb:433
2916
+ msgid "change type is missing"
2917
+ msgstr ""
2918
+
2919
+ #: lib/active_ldap/ldif.rb:437
2920
+ msgid "control type is missing"
2921
+ msgstr ""
2922
+
2923
+ #: lib/active_ldap/ldif.rb:441
2924
+ msgid "criticality is missing"
2925
+ msgstr ""
2926
+
2927
+ #: lib/active_ldap/ldif.rb:445
2928
+ msgid "change type value is missing"
2929
+ msgstr ""
2930
+
2931
+ #: lib/active_ldap/ldif.rb:449
2932
+ msgid "attribute spec is missing"
2933
+ msgstr ""
2934
+
2935
+ #: lib/active_ldap/ldif.rb:453
2936
+ msgid "'newrdn:' is missing"
2937
+ msgstr ""
2938
+
2939
+ #: lib/active_ldap/ldif.rb:457
2940
+ msgid "new RDN value is missing"
2941
+ msgstr ""
2942
+
2943
+ #: lib/active_ldap/ldif.rb:461
2944
+ msgid "'deleteoldrdn:' is missing"
2945
+ msgstr ""
2946
+
2947
+ #: lib/active_ldap/ldif.rb:465
2948
+ msgid "delete old RDN value is missing"
2949
+ msgstr ""
2950
+
2951
+ #: lib/active_ldap/ldif.rb:469
2952
+ msgid "new superior value is missing"
2953
+ msgstr ""
2954
+
2955
+ #: lib/active_ldap/ldif.rb:473
2956
+ msgid "unknown modify type: %s"
2957
+ msgstr ""
2958
+
2959
+ #: lib/active_ldap/ldif.rb:738
2960
+ msgid "invalid criticality value: %s"
2961
+ msgstr ""
2962
+
2963
+ #: lib/active_ldap/ldif.rb:781
2964
+ msgid "invalid deleteoldrdn value: %s"
2965
+ msgstr ""
2966
+
3374
2967
  #: lib/active_ldap/distinguished_name.rb:132
3375
2968
  msgid "name component is missing"
3376
2969
  msgstr ""
@@ -3379,10 +2972,6 @@ msgstr ""
3379
2972
  msgid "relative distinguished name (RDN) is missing"
3380
2973
  msgstr ""
3381
2974
 
3382
- #: lib/active_ldap/distinguished_name.rb:140
3383
- msgid "attribute type is missing"
3384
- msgstr ""
3385
-
3386
2975
  #: lib/active_ldap/distinguished_name.rb:144
3387
2976
  msgid "attribute value is missing"
3388
2977
  msgstr ""
@@ -3395,35 +2984,47 @@ msgstr ""
3395
2984
  msgid "%s isn't sub DN of %s"
3396
2985
  msgstr ""
3397
2986
 
3398
- #: lib/active_ldap/validations.rb:73
2987
+ #: lib/active_ldap/validations.rb:69
3399
2988
  msgid "%{fn} is duplicated: %s"
3400
2989
  msgstr ""
3401
2990
 
3402
- #: lib/active_ldap/validations.rb:75
2991
+ #: lib/active_ldap/validations.rb:71
3403
2992
  msgid "is duplicated: %s"
3404
2993
  msgstr ""
3405
2994
 
3406
- #: lib/active_ldap/validations.rb:105
2995
+ #: lib/active_ldap/validations.rb:95
2996
+ msgid "%{fn} has excluded value: %s"
2997
+ msgid_plural "%{fn} has excluded values: %s"
2998
+ msgstr[0] ""
2999
+ msgstr[1] ""
3000
+
3001
+ #: lib/active_ldap/validations.rb:99
3002
+ msgid "has excluded value: %s"
3003
+ msgid_plural "has excluded values: %s"
3004
+ msgstr[0] ""
3005
+ msgstr[1] ""
3006
+
3007
+ #: lib/active_ldap/validations.rb:128
3407
3008
  msgid "%{fn} is required attribute by objectClass '%s'"
3408
3009
  msgstr ""
3409
3010
 
3410
- #: lib/active_ldap/validations.rb:107
3011
+ #: lib/active_ldap/validations.rb:130
3411
3012
  msgid "%{fn} is required attribute by objectClass '%s': aliases: %s"
3412
3013
  msgstr ""
3413
3014
 
3414
- #: lib/active_ldap/validations.rb:154
3015
+ #: lib/active_ldap/validations.rb:165
3415
3016
  msgid "%{fn} (%s) has invalid format: %s: required syntax: %s: %s"
3416
3017
  msgstr ""
3417
3018
 
3418
- #: lib/active_ldap/validations.rb:156
3019
+ #: lib/active_ldap/validations.rb:167
3419
3020
  msgid "%{fn} has invalid format: %s: required syntax: %s: %s"
3420
3021
  msgstr ""
3421
3022
 
3422
- #: lib/active_ldap/validations.rb:160
3023
+ #: lib/active_ldap/validations.rb:171
3423
3024
  msgid "(%s) has invalid format: %s: required syntax: %s: %s"
3424
3025
  msgstr ""
3425
3026
 
3426
- #: lib/active_ldap/validations.rb:162
3027
+ #: lib/active_ldap/validations.rb:173
3427
3028
  msgid "has invalid format: %s: required syntax: %s: %s"
3428
3029
  msgstr ""
3429
3030
 
@@ -3451,65 +3052,70 @@ msgstr ""
3451
3052
  msgid "%s is invalid distinguished name (DN)"
3452
3053
  msgstr ""
3453
3054
 
3454
- #: lib/active_ldap/base.rb:150
3055
+ #: lib/active_ldap/base.rb:134
3056
+ msgid "invalid LDIF: %s:"
3057
+ msgstr ""
3058
+
3059
+ #: lib/active_ldap/base.rb:136
3060
+ msgid "invalid LDIF:"
3061
+ msgstr ""
3062
+
3063
+ #: lib/active_ldap/base.rb:211
3455
3064
  msgid "LDAP configuration specifies nonexistent %s adapter"
3456
3065
  msgstr ""
3457
3066
 
3458
- #: lib/active_ldap/base.rb:158
3067
+ #: lib/active_ldap/base.rb:219
3459
3068
  msgid "%s is unknown attribute"
3460
3069
  msgstr ""
3461
3070
 
3462
- #: lib/active_ldap/base.rb:322
3071
+ #: lib/active_ldap/base.rb:407
3463
3072
  msgid "scope '%s' must be a Symbol"
3464
3073
  msgstr ""
3465
3074
 
3466
- #: lib/active_ldap/base.rb:429
3075
+ #: lib/active_ldap/base.rb:516
3467
3076
  msgid ""
3468
- "'%s' must be either nil, DN value as String or Array or attributes as Hash"
3077
+ "'%s' must be either nil, DN value as ActiveLdap::DN, String or Array or "
3078
+ "attributes as Hash"
3469
3079
  msgstr ""
3470
3080
 
3471
- #: lib/active_ldap/base.rb:514
3472
- msgid "%s's DN attribute (%s) isn't set"
3473
- msgstr ""
3474
-
3475
- #: lib/active_ldap/base.rb:551
3081
+ #: lib/active_ldap/base.rb:620
3476
3082
  msgid "Failed to delete LDAP entry: %s"
3477
3083
  msgstr ""
3478
3084
 
3479
- #: lib/active_ldap/base.rb:570
3085
+ #: lib/active_ldap/base.rb:639
3480
3086
  msgid "entry %s can't be saved"
3481
3087
  msgstr ""
3482
3088
 
3483
- #: lib/active_ldap/base.rb:591 lib/active_ldap/base.rb:602
3089
+ #: lib/active_ldap/base.rb:658 lib/active_ldap/base.rb:669
3484
3090
  msgid "wrong number of arguments (%d for 1)"
3485
3091
  msgstr ""
3486
3092
 
3487
- #: lib/active_ldap/base.rb:718
3093
+ #: lib/active_ldap/base.rb:788
3488
3094
  msgid "Can't find DN '%s' to reload"
3489
3095
  msgstr ""
3490
3096
 
3491
- #: lib/active_ldap/base.rb:1209
3492
- msgid "dn_attribute isn't set for this class: %s"
3097
+ #: lib/active_ldap/base.rb:1119
3098
+ msgid "%s's DN attribute (%s) isn't set"
3493
3099
  msgstr ""
3494
3100
 
3495
- #: lib/active_ldap/attributes.rb:34
3496
- msgid "The first argument, name, must not be nil. Please report this as a bug!"
3101
+ #: lib/active_ldap/base.rb:1228
3102
+ msgid "dn_attribute isn't set for this class: %s"
3497
3103
  msgstr ""
3498
3104
 
3499
- #: lib/active_ldap/attributes.rb:79
3500
- msgid "Attribute %s can only have a single value"
3105
+ #: lib/active_ldap/attributes.rb:45
3106
+ msgid "The first argument, name, must not be nil. Please report this as a bug!"
3501
3107
  msgstr ""
3502
3108
 
3503
- #: lib/active_ldap/attributes.rb:98
3504
- msgid "Hashes must have one key-value pair only: %s"
3109
+ #: lib/active_ldap/schema.rb:50
3110
+ msgid "Unknown schema group: %s"
3505
3111
  msgstr ""
3506
3112
 
3507
- #: lib/active_ldap/attributes.rb:103
3508
- msgid "unknown option did not match lang-* or binary: %s"
3113
+ #: lib/active_ldap/schema.rb:513
3114
+ msgid "Attribute %s can only have a single value: %s"
3509
3115
  msgstr ""
3510
3116
 
3511
- #: lib/active_ldap/schema.rb:50
3512
- msgid "Unknown schema group: %s"
3117
+ #: lib/active_ldap/schema.rb:532
3118
+ msgid "Attribute %s: Hash must have one key-value pair only: %s"
3513
3119
  msgstr ""
3514
3120
 
3515
3121
  #: lib/active_ldap/connection.rb:99
@@ -3553,52 +3159,56 @@ msgid "%s should be just 2 printable characters"
3553
3159
  msgstr ""
3554
3160
 
3555
3161
  #: lib/active_ldap/schema/syntaxes.rb:162
3556
- #: lib/active_ldap/schema/syntaxes.rb:352
3162
+ #: lib/active_ldap/schema/syntaxes.rb:369
3557
3163
  msgid "%s has invalid UTF-8 character"
3558
3164
  msgstr ""
3559
3165
 
3560
- #: lib/active_ldap/schema/syntaxes.rb:213
3166
+ #: lib/active_ldap/schema/syntaxes.rb:225
3561
3167
  msgid "%s has missing components: %s"
3562
3168
  msgstr ""
3563
3169
 
3564
- #: lib/active_ldap/schema/syntaxes.rb:216
3170
+ #: lib/active_ldap/schema/syntaxes.rb:228
3565
3171
  msgid "%s is invalid time format"
3566
3172
  msgstr ""
3567
3173
 
3568
- #: lib/active_ldap/schema/syntaxes.rb:246
3174
+ #: lib/active_ldap/schema/syntaxes.rb:258
3569
3175
  msgid "%s is invalid integer format"
3570
3176
  msgstr ""
3571
3177
 
3572
- #: lib/active_ldap/schema/syntaxes.rb:258
3178
+ #: lib/active_ldap/schema/syntaxes.rb:270
3573
3179
  msgid "invalid JPEG format"
3574
3180
  msgstr ""
3575
3181
 
3576
- #: lib/active_ldap/schema/syntaxes.rb:299
3182
+ #: lib/active_ldap/schema/syntaxes.rb:311
3577
3183
  msgid "%s is invalid numeric format"
3578
3184
  msgstr ""
3579
3185
 
3580
- #: lib/active_ldap/schema/syntaxes.rb:312
3186
+ #: lib/active_ldap/schema/syntaxes.rb:326
3187
+ msgid "%s is invalid OID format: %s"
3188
+ msgstr ""
3189
+
3190
+ #: lib/active_ldap/schema/syntaxes.rb:328
3581
3191
  msgid "%s is invalid OID format"
3582
3192
  msgstr ""
3583
3193
 
3584
- #: lib/active_ldap/schema/syntaxes.rb:324
3194
+ #: lib/active_ldap/schema/syntaxes.rb:341
3585
3195
  msgid "%s has no mailbox type"
3586
3196
  msgstr ""
3587
3197
 
3588
- #: lib/active_ldap/schema/syntaxes.rb:328
3198
+ #: lib/active_ldap/schema/syntaxes.rb:345
3589
3199
  msgid "%s has unprintable character in mailbox type: '%s'"
3590
3200
  msgstr ""
3591
3201
 
3592
- #: lib/active_ldap/schema/syntaxes.rb:333
3202
+ #: lib/active_ldap/schema/syntaxes.rb:350
3593
3203
  msgid "%s has no mailbox"
3594
3204
  msgstr ""
3595
3205
 
3596
- #: lib/active_ldap/schema/syntaxes.rb:346
3597
- #: lib/active_ldap/schema/syntaxes.rb:365
3206
+ #: lib/active_ldap/schema/syntaxes.rb:363
3207
+ #: lib/active_ldap/schema/syntaxes.rb:382
3598
3208
  msgid "empty string"
3599
3209
  msgstr ""
3600
3210
 
3601
- #: lib/active_ldap/schema/syntaxes.rb:369
3211
+ #: lib/active_ldap/schema/syntaxes.rb:386
3602
3212
  msgid "%s has unprintable character: '%s'"
3603
3213
  msgstr ""
3604
3214
 
@@ -3652,26 +3262,26 @@ msgstr ""
3652
3262
  msgid "Specify prefix for benchmarking"
3653
3263
  msgstr ""
3654
3264
 
3655
- #: benchmark/bench-al.rb:154
3265
+ #: benchmark/bench-al.rb:160
3656
3266
  msgid "Populating..."
3657
3267
  msgstr ""
3658
3268
 
3659
- #: benchmark/bench-al.rb:189
3269
+ #: benchmark/bench-al.rb:199
3660
3270
  msgid "Entries processed by Ruby/ActiveLdap: %d"
3661
3271
  msgstr ""
3662
3272
 
3663
- #: benchmark/bench-al.rb:190
3273
+ #: benchmark/bench-al.rb:200
3664
3274
  msgid "Entries processed by Ruby/ActiveLdap (without object creation): %d"
3665
3275
  msgstr ""
3666
3276
 
3667
- #: benchmark/bench-al.rb:192
3277
+ #: benchmark/bench-al.rb:202
3668
3278
  msgid "Entries processed by Ruby/LDAP: %d"
3669
3279
  msgstr ""
3670
3280
 
3671
- #: benchmark/bench-al.rb:193
3281
+ #: benchmark/bench-al.rb:203
3672
3282
  msgid "Entries processed by Net::LDAP: %d"
3673
3283
  msgstr ""
3674
3284
 
3675
- #: benchmark/bench-al.rb:196
3285
+ #: benchmark/bench-al.rb:206
3676
3286
  msgid "Cleaning..."
3677
3287
  msgstr ""