activeldap 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. data/CHANGES +34 -0
  2. data/README +13 -0
  3. data/Rakefile +2 -1
  4. data/TODO +6 -0
  5. data/benchmark/bench-al.rb +68 -17
  6. data/examples/al-admin/app/helpers/application_helper.rb +3 -5
  7. data/examples/al-admin/app/views/layouts/_footer.html.erb +2 -0
  8. data/examples/al-admin/config/boot.rb +7 -7
  9. data/examples/al-admin/config/environment.rb +27 -12
  10. data/examples/al-admin/config/environments/development.rb +0 -1
  11. data/examples/al-admin/config/environments/production.rb +6 -1
  12. data/examples/al-admin/config/environments/test.rb +1 -1
  13. data/examples/al-admin/config/initializers/gettext.rb +15 -1
  14. data/examples/al-admin/po/en/al-admin.po +1 -1
  15. data/examples/al-admin/po/ja/al-admin.po +1 -1
  16. data/examples/al-admin/po/nl/al-admin.po +1 -1
  17. data/examples/al-admin/public/dispatch.cgi +0 -0
  18. data/examples/al-admin/public/dispatch.fcgi +0 -0
  19. data/examples/al-admin/public/dispatch.rb +0 -0
  20. data/examples/al-admin/public/javascripts/controls.js +73 -73
  21. data/examples/al-admin/public/javascripts/dragdrop.js +166 -165
  22. data/examples/al-admin/public/javascripts/effects.js +174 -166
  23. data/examples/al-admin/public/javascripts/prototype.js +362 -267
  24. data/examples/al-admin/script/about +0 -0
  25. data/examples/al-admin/script/console +0 -0
  26. data/examples/al-admin/script/dbconsole +3 -0
  27. data/examples/al-admin/script/destroy +0 -0
  28. data/examples/al-admin/script/generate +0 -0
  29. data/examples/al-admin/script/performance/benchmarker +0 -0
  30. data/examples/al-admin/script/performance/profiler +0 -0
  31. data/examples/al-admin/script/performance/request +0 -0
  32. data/examples/al-admin/script/plugin +0 -0
  33. data/examples/al-admin/script/process/inspector +0 -0
  34. data/examples/al-admin/script/process/reaper +0 -0
  35. data/examples/al-admin/script/process/spawner +0 -0
  36. data/examples/al-admin/script/runner +0 -0
  37. data/examples/al-admin/script/server +0 -0
  38. data/examples/al-admin/test/run-test.sh +0 -0
  39. data/examples/groupadd +0 -0
  40. data/examples/groupdel +0 -0
  41. data/examples/groupls +0 -0
  42. data/examples/groupmod +0 -0
  43. data/examples/lpasswd +0 -0
  44. data/examples/ouadd +0 -0
  45. data/examples/useradd +0 -0
  46. data/examples/useradd-binary +0 -0
  47. data/examples/userdel +0 -0
  48. data/examples/userls +0 -0
  49. data/examples/usermod +0 -0
  50. data/examples/usermod-binary-add +0 -0
  51. data/examples/usermod-binary-add-time +0 -0
  52. data/examples/usermod-binary-del +0 -0
  53. data/examples/usermod-lang-add +0 -0
  54. data/lib/active_ldap.rb +10 -4
  55. data/lib/active_ldap/action_controller/ldap_benchmarking.rb +28 -9
  56. data/lib/active_ldap/adapter/base.rb +30 -17
  57. data/lib/active_ldap/adapter/jndi.rb +5 -1
  58. data/lib/active_ldap/adapter/ldap.rb +5 -1
  59. data/lib/active_ldap/association/has_many_utils.rb +7 -1
  60. data/lib/active_ldap/associations.rb +10 -5
  61. data/lib/active_ldap/attributes.rb +6 -1
  62. data/lib/active_ldap/base.rb +154 -52
  63. data/lib/active_ldap/configuration.rb +1 -1
  64. data/lib/active_ldap/connection.rb +7 -4
  65. data/lib/active_ldap/get_text.rb +11 -3
  66. data/lib/active_ldap/ldif.rb +16 -4
  67. data/lib/active_ldap/operations.rb +13 -5
  68. data/lib/active_ldap/schema.rb +6 -2
  69. data/lib/active_ldap/schema/syntaxes.rb +15 -3
  70. data/lib/active_ldap/user_password.rb +4 -4
  71. data/lib/active_ldap/validations.rb +32 -44
  72. data/lib/active_ldap/xml.rb +125 -0
  73. data/po/en/active-ldap.po +740 -85
  74. data/po/ja/active-ldap.po +748 -547
  75. data/rails/README +54 -0
  76. data/rails/init.rb +33 -0
  77. data/rails/plugin/active_ldap/generators/README +2 -0
  78. data/rails/plugin/active_ldap/generators/model_active_ldap/model_active_ldap_generator.rb +1 -1
  79. data/rails/plugin/active_ldap/init.rb +3 -0
  80. data/rails_generators/model_active_ldap/USAGE +17 -0
  81. data/rails_generators/model_active_ldap/model_active_ldap_generator.rb +69 -0
  82. data/rails_generators/model_active_ldap/templates/model_active_ldap.rb +3 -0
  83. data/rails_generators/model_active_ldap/templates/unit_test.rb +8 -0
  84. data/rails_generators/scaffold_active_ldap/scaffold_active_ldap_generator.rb +7 -0
  85. data/rails_generators/scaffold_active_ldap/templates/ldap.yml +18 -0
  86. data/rails_generators/scaffold_al/scaffold_al_generator.rb +20 -0
  87. data/test-unit/History.txt +50 -1
  88. data/test-unit/Manifest.txt +22 -12
  89. data/test-unit/README.txt +31 -12
  90. data/test-unit/Rakefile +14 -1
  91. data/test-unit/TODO +5 -0
  92. data/test-unit/bin/testrb +0 -0
  93. data/test-unit/lib/test/unit.rb +62 -0
  94. data/test-unit/lib/test/unit/assertions.rb +419 -75
  95. data/test-unit/lib/test/unit/autorunner.rb +70 -13
  96. data/test-unit/lib/test/unit/collector.rb +1 -1
  97. data/test-unit/lib/test/unit/collector/load.rb +1 -1
  98. data/test-unit/lib/test/unit/color-scheme.rb +86 -0
  99. data/test-unit/lib/test/unit/color.rb +40 -5
  100. data/test-unit/lib/test/unit/diff.rb +14 -0
  101. data/test-unit/lib/test/unit/fixture.rb +7 -16
  102. data/test-unit/lib/test/unit/notification.rb +9 -0
  103. data/test-unit/lib/test/unit/omission.rb +14 -0
  104. data/test-unit/lib/test/unit/pending.rb +16 -0
  105. data/test-unit/lib/test/unit/priority.rb +17 -2
  106. data/test-unit/lib/test/unit/runner/console.rb +8 -2
  107. data/test-unit/lib/test/unit/testcase.rb +188 -2
  108. data/test-unit/lib/test/unit/ui/console/testrunner.rb +51 -26
  109. data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
  110. data/test-unit/lib/test/unit/version.rb +1 -1
  111. data/test-unit/sample/test_user.rb +22 -0
  112. data/test-unit/test/collector/{test_descendant.rb → test-descendant.rb} +0 -0
  113. data/test-unit/test/collector/{test_load.rb → test-load.rb} +1 -1
  114. data/test-unit/test/run-test.rb +0 -0
  115. data/test-unit/test/{test_attribute.rb → test-attribute.rb} +0 -0
  116. data/test-unit/test/test-color-scheme.rb +56 -0
  117. data/test-unit/test/{test_color.rb → test-color.rb} +10 -0
  118. data/test-unit/test/{test_diff.rb → test-diff.rb} +0 -0
  119. data/test-unit/test/{test_emacs_runner.rb → test-emacs-runner.rb} +0 -0
  120. data/test-unit/test/test-fixture.rb +287 -0
  121. data/test-unit/test/{test_notification.rb → test-notification.rb} +4 -4
  122. data/test-unit/test/{test_omission.rb → test-omission.rb} +6 -6
  123. data/test-unit/test/{test_pending.rb → test-pending.rb} +12 -6
  124. data/test-unit/test/{test_priority.rb → test-priority.rb} +30 -0
  125. data/test-unit/test/test_assertions.rb +411 -69
  126. data/test-unit/test/test_testcase.rb +70 -3
  127. data/test-unit/test/{testunit_test_util.rb → testunit-test-util.rb} +4 -2
  128. data/test-unit/test/ui/test_testrunmediator.rb +1 -1
  129. data/test-unit/test/util/test-method-owner-finder.rb +38 -0
  130. data/test/run-test.rb +0 -0
  131. data/test/test_adapter.rb +3 -0
  132. data/test/test_associations.rb +50 -7
  133. data/test/test_base.rb +193 -11
  134. data/test/test_connection_per_dn.rb +1 -1
  135. data/test/test_ldif.rb +86 -0
  136. data/test/test_load.rb +7 -0
  137. data/test/test_schema.rb +31 -1
  138. data/test/test_syntax.rb +20 -0
  139. data/test/test_user_password.rb +22 -14
  140. data/test/test_validation.rb +70 -29
  141. metadata +99 -77
  142. data/data/locale/en/LC_MESSAGES/active-ldap.mo +0 -0
  143. data/data/locale/ja/LC_MESSAGES/active-ldap.mo +0 -0
  144. data/examples/al-admin/config/initializers/ralative_url_support.rb +0 -1
  145. data/examples/al-admin/lib/accept_http_rails_relative_url_root.rb +0 -9
  146. data/test-unit-ext/misc/rd2html.rb +0 -42
  147. data/test-unit/test/test_fixture.rb +0 -275
@@ -5,8 +5,8 @@
5
5
  #
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: Ruby/ActiveLdap 1.0.1\n"
9
- "POT-Creation-Date: 2008-02-10 22:36+0900\n"
8
+ "Project-Id-Version: Ruby/ActiveLdap 1.0.2\n"
9
+ "POT-Creation-Date: 2008-06-17 21:42+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"
@@ -455,6 +455,418 @@ msgstr ""
455
455
  msgid "LDAP|Attribute|objectClasses"
456
456
  msgstr ""
457
457
 
458
+ #: -:-
459
+ msgid "LDAP|Attribute|olcAccess"
460
+ msgstr ""
461
+
462
+ #: -:-
463
+ msgid "LDAP|Attribute|olcAllows"
464
+ msgstr ""
465
+
466
+ #: -:-
467
+ msgid "LDAP|Attribute|olcArgsFile"
468
+ msgstr ""
469
+
470
+ #: -:-
471
+ msgid "LDAP|Attribute|olcAttributeOptions"
472
+ msgstr ""
473
+
474
+ #: -:-
475
+ msgid "LDAP|Attribute|olcAttributeTypes"
476
+ msgstr ""
477
+
478
+ #: -:-
479
+ msgid "LDAP|Attribute|olcAuthIDRewrite"
480
+ msgstr ""
481
+
482
+ #: -:-
483
+ msgid "LDAP|Attribute|olcAuthzPolicy"
484
+ msgstr ""
485
+
486
+ #: -:-
487
+ msgid "LDAP|Attribute|olcAuthzRegexp"
488
+ msgstr ""
489
+
490
+ #: -:-
491
+ msgid "LDAP|Attribute|olcBackend"
492
+ msgstr ""
493
+
494
+ #: -:-
495
+ msgid "LDAP|Attribute|olcConcurrency"
496
+ msgstr ""
497
+
498
+ #: -:-
499
+ msgid "LDAP|Attribute|olcConfigDir"
500
+ msgstr ""
501
+
502
+ #: -:-
503
+ msgid "LDAP|Attribute|olcConfigFile"
504
+ msgstr ""
505
+
506
+ #: -:-
507
+ msgid "LDAP|Attribute|olcConnMaxPending"
508
+ msgstr ""
509
+
510
+ #: -:-
511
+ msgid "LDAP|Attribute|olcConnMaxPendingAuth"
512
+ msgstr ""
513
+
514
+ #: -:-
515
+ msgid "LDAP|Attribute|olcDatabase"
516
+ msgstr ""
517
+
518
+ #: -:-
519
+ msgid "LDAP|Attribute|olcDbCacheFree"
520
+ msgstr ""
521
+
522
+ #: -:-
523
+ msgid "LDAP|Attribute|olcDbCacheSize"
524
+ msgstr ""
525
+
526
+ #: -:-
527
+ msgid "LDAP|Attribute|olcDbCheckpoint"
528
+ msgstr ""
529
+
530
+ #: -:-
531
+ msgid "LDAP|Attribute|olcDbConfig"
532
+ msgstr ""
533
+
534
+ #: -:-
535
+ msgid "LDAP|Attribute|olcDbCryptFile"
536
+ msgstr ""
537
+
538
+ #: -:-
539
+ msgid "LDAP|Attribute|olcDbCryptKey"
540
+ msgstr ""
541
+
542
+ #: -:-
543
+ msgid "LDAP|Attribute|olcDbDNcacheSize"
544
+ msgstr ""
545
+
546
+ #: -:-
547
+ msgid "LDAP|Attribute|olcDbDirectory"
548
+ msgstr ""
549
+
550
+ #: -:-
551
+ msgid "LDAP|Attribute|olcDbDirtyRead"
552
+ msgstr ""
553
+
554
+ #: -:-
555
+ msgid "LDAP|Attribute|olcDbIDLcacheSize"
556
+ msgstr ""
557
+
558
+ #: -:-
559
+ msgid "LDAP|Attribute|olcDbIndex"
560
+ msgstr ""
561
+
562
+ #: -:-
563
+ msgid "LDAP|Attribute|olcDbLinearIndex"
564
+ msgstr ""
565
+
566
+ #: -:-
567
+ msgid "LDAP|Attribute|olcDbLockDetect"
568
+ msgstr ""
569
+
570
+ #: -:-
571
+ msgid "LDAP|Attribute|olcDbMode"
572
+ msgstr ""
573
+
574
+ #: -:-
575
+ msgid "LDAP|Attribute|olcDbNoSync"
576
+ msgstr ""
577
+
578
+ #: -:-
579
+ msgid "LDAP|Attribute|olcDbSearchStack"
580
+ msgstr ""
581
+
582
+ #: -:-
583
+ msgid "LDAP|Attribute|olcDbShmKey"
584
+ msgstr ""
585
+
586
+ #: -:-
587
+ msgid "LDAP|Attribute|olcDefaultSearchBase"
588
+ msgstr ""
589
+
590
+ #: -:-
591
+ msgid "LDAP|Attribute|olcDisallows"
592
+ msgstr ""
593
+
594
+ #: -:-
595
+ msgid "LDAP|Attribute|olcDitContentRules"
596
+ msgstr ""
597
+
598
+ #: -:-
599
+ msgid "LDAP|Attribute|olcGentleHUP"
600
+ msgstr ""
601
+
602
+ #: -:-
603
+ msgid "LDAP|Attribute|olcHidden"
604
+ msgstr ""
605
+
606
+ #: -:-
607
+ msgid "LDAP|Attribute|olcIdleTimeout"
608
+ msgstr ""
609
+
610
+ #: -:-
611
+ msgid "LDAP|Attribute|olcInclude"
612
+ msgstr ""
613
+
614
+ #: -:-
615
+ msgid "LDAP|Attribute|olcIndexIntLen"
616
+ msgstr ""
617
+
618
+ #: -:-
619
+ msgid "LDAP|Attribute|olcIndexSubstrAnyLen"
620
+ msgstr ""
621
+
622
+ #: -:-
623
+ msgid "LDAP|Attribute|olcIndexSubstrAnyStep"
624
+ msgstr ""
625
+
626
+ #: -:-
627
+ msgid "LDAP|Attribute|olcIndexSubstrIfMaxLen"
628
+ msgstr ""
629
+
630
+ #: -:-
631
+ msgid "LDAP|Attribute|olcIndexSubstrIfMinLen"
632
+ msgstr ""
633
+
634
+ #: -:-
635
+ msgid "LDAP|Attribute|olcLastMod"
636
+ msgstr ""
637
+
638
+ #: -:-
639
+ msgid "LDAP|Attribute|olcLimits"
640
+ msgstr ""
641
+
642
+ #: -:-
643
+ msgid "LDAP|Attribute|olcLocalSSF"
644
+ msgstr ""
645
+
646
+ #: -:-
647
+ msgid "LDAP|Attribute|olcLogFile"
648
+ msgstr ""
649
+
650
+ #: -:-
651
+ msgid "LDAP|Attribute|olcLogLevel"
652
+ msgstr ""
653
+
654
+ #: -:-
655
+ msgid "LDAP|Attribute|olcMaxDerefDepth"
656
+ msgstr ""
657
+
658
+ #: -:-
659
+ msgid "LDAP|Attribute|olcMirrorMode"
660
+ msgstr ""
661
+
662
+ #: -:-
663
+ msgid "LDAP|Attribute|olcModuleLoad"
664
+ msgstr ""
665
+
666
+ #: -:-
667
+ msgid "LDAP|Attribute|olcModulePath"
668
+ msgstr ""
669
+
670
+ #: -:-
671
+ msgid "LDAP|Attribute|olcMonitoring"
672
+ msgstr ""
673
+
674
+ #: -:-
675
+ msgid "LDAP|Attribute|olcObjectClasses"
676
+ msgstr ""
677
+
678
+ #: -:-
679
+ msgid "LDAP|Attribute|olcObjectIdentifier"
680
+ msgstr ""
681
+
682
+ #: -:-
683
+ msgid "LDAP|Attribute|olcOverlay"
684
+ msgstr ""
685
+
686
+ #: -:-
687
+ msgid "LDAP|Attribute|olcPasswordCryptSaltFormat"
688
+ msgstr ""
689
+
690
+ #: -:-
691
+ msgid "LDAP|Attribute|olcPasswordHash"
692
+ msgstr ""
693
+
694
+ #: -:-
695
+ msgid "LDAP|Attribute|olcPidFile"
696
+ msgstr ""
697
+
698
+ #: -:-
699
+ msgid "LDAP|Attribute|olcPlugin"
700
+ msgstr ""
701
+
702
+ #: -:-
703
+ msgid "LDAP|Attribute|olcPluginLogFile"
704
+ msgstr ""
705
+
706
+ #: -:-
707
+ msgid "LDAP|Attribute|olcReadOnly"
708
+ msgstr ""
709
+
710
+ #: -:-
711
+ msgid "LDAP|Attribute|olcReferral"
712
+ msgstr ""
713
+
714
+ #: -:-
715
+ msgid "LDAP|Attribute|olcReplica"
716
+ msgstr ""
717
+
718
+ #: -:-
719
+ msgid "LDAP|Attribute|olcReplicaArgsFile"
720
+ msgstr ""
721
+
722
+ #: -:-
723
+ msgid "LDAP|Attribute|olcReplicaPidFile"
724
+ msgstr ""
725
+
726
+ #: -:-
727
+ msgid "LDAP|Attribute|olcReplicationInterval"
728
+ msgstr ""
729
+
730
+ #: -:-
731
+ msgid "LDAP|Attribute|olcReplogFile"
732
+ msgstr ""
733
+
734
+ #: -:-
735
+ msgid "LDAP|Attribute|olcRequires"
736
+ msgstr ""
737
+
738
+ #: -:-
739
+ msgid "LDAP|Attribute|olcRestrict"
740
+ msgstr ""
741
+
742
+ #: -:-
743
+ msgid "LDAP|Attribute|olcReverseLookup"
744
+ msgstr ""
745
+
746
+ #: -:-
747
+ msgid "LDAP|Attribute|olcRootDN"
748
+ msgstr ""
749
+
750
+ #: -:-
751
+ msgid "LDAP|Attribute|olcRootDSE"
752
+ msgstr ""
753
+
754
+ #: -:-
755
+ msgid "LDAP|Attribute|olcRootPW"
756
+ msgstr ""
757
+
758
+ #: -:-
759
+ msgid "LDAP|Attribute|olcSaslHost"
760
+ msgstr ""
761
+
762
+ #: -:-
763
+ msgid "LDAP|Attribute|olcSaslRealm"
764
+ msgstr ""
765
+
766
+ #: -:-
767
+ msgid "LDAP|Attribute|olcSaslSecProps"
768
+ msgstr ""
769
+
770
+ #: -:-
771
+ msgid "LDAP|Attribute|olcSchemaDN"
772
+ msgstr ""
773
+
774
+ #: -:-
775
+ msgid "LDAP|Attribute|olcSecurity"
776
+ msgstr ""
777
+
778
+ #: -:-
779
+ msgid "LDAP|Attribute|olcServerID"
780
+ msgstr ""
781
+
782
+ #: -:-
783
+ msgid "LDAP|Attribute|olcSizeLimit"
784
+ msgstr ""
785
+
786
+ #: -:-
787
+ msgid "LDAP|Attribute|olcSockbufMaxIncoming"
788
+ msgstr ""
789
+
790
+ #: -:-
791
+ msgid "LDAP|Attribute|olcSockbufMaxIncomingAuth"
792
+ msgstr ""
793
+
794
+ #: -:-
795
+ msgid "LDAP|Attribute|olcSortVals"
796
+ msgstr ""
797
+
798
+ #: -:-
799
+ msgid "LDAP|Attribute|olcSubordinate"
800
+ msgstr ""
801
+
802
+ #: -:-
803
+ msgid "LDAP|Attribute|olcSuffix"
804
+ msgstr ""
805
+
806
+ #: -:-
807
+ msgid "LDAP|Attribute|olcSyncrepl"
808
+ msgstr ""
809
+
810
+ #: -:-
811
+ msgid "LDAP|Attribute|olcTLSCACertificateFile"
812
+ msgstr ""
813
+
814
+ #: -:-
815
+ msgid "LDAP|Attribute|olcTLSCACertificatePath"
816
+ msgstr ""
817
+
818
+ #: -:-
819
+ msgid "LDAP|Attribute|olcTLSCRLCheck"
820
+ msgstr ""
821
+
822
+ #: -:-
823
+ msgid "LDAP|Attribute|olcTLSCRLFile"
824
+ msgstr ""
825
+
826
+ #: -:-
827
+ msgid "LDAP|Attribute|olcTLSCertificateFile"
828
+ msgstr ""
829
+
830
+ #: -:-
831
+ msgid "LDAP|Attribute|olcTLSCertificateKeyFile"
832
+ msgstr ""
833
+
834
+ #: -:-
835
+ msgid "LDAP|Attribute|olcTLSCipherSuite"
836
+ msgstr ""
837
+
838
+ #: -:-
839
+ msgid "LDAP|Attribute|olcTLSDHParamFile"
840
+ msgstr ""
841
+
842
+ #: -:-
843
+ msgid "LDAP|Attribute|olcTLSRandFile"
844
+ msgstr ""
845
+
846
+ #: -:-
847
+ msgid "LDAP|Attribute|olcTLSVerifyClient"
848
+ msgstr ""
849
+
850
+ #: -:-
851
+ msgid "LDAP|Attribute|olcThreads"
852
+ msgstr ""
853
+
854
+ #: -:-
855
+ msgid "LDAP|Attribute|olcTimeLimit"
856
+ msgstr ""
857
+
858
+ #: -:-
859
+ msgid "LDAP|Attribute|olcToolThreads"
860
+ msgstr ""
861
+
862
+ #: -:-
863
+ msgid "LDAP|Attribute|olcUpdateDN"
864
+ msgstr ""
865
+
866
+ #: -:-
867
+ msgid "LDAP|Attribute|olcUpdateRef"
868
+ msgstr ""
869
+
458
870
  #: -:-
459
871
  msgid "LDAP|Attribute|oncRpcNumber"
460
872
  msgstr ""
@@ -1347,6 +1759,141 @@ msgid ""
1347
1759
  "LDAP|Description|Attribute|objectClass|RFC4512: object classes of the entity"
1348
1760
  msgstr ""
1349
1761
 
1762
+ #: -:-
1763
+ msgid "LDAP|Description|Attribute|olcAccess|Access Control List"
1764
+ msgstr ""
1765
+
1766
+ #: -:-
1767
+ msgid "LDAP|Description|Attribute|olcAllows|Allowed set of deprecated features"
1768
+ msgstr ""
1769
+
1770
+ #: -:-
1771
+ msgid ""
1772
+ "LDAP|Description|Attribute|olcArgsFile|File for slapd command line options"
1773
+ msgstr ""
1774
+
1775
+ #: -:-
1776
+ msgid "LDAP|Description|Attribute|olcAttributeTypes|OpenLDAP attributeTypes"
1777
+ msgstr ""
1778
+
1779
+ #: -:-
1780
+ msgid "LDAP|Description|Attribute|olcBackend|A type of backend"
1781
+ msgstr ""
1782
+
1783
+ #: -:-
1784
+ msgid ""
1785
+ "LDAP|Description|Attribute|olcConfigDir|Directory for slapd configuration "
1786
+ "backend"
1787
+ msgstr ""
1788
+
1789
+ #: -:-
1790
+ msgid ""
1791
+ "LDAP|Description|Attribute|olcConfigFile|File for slapd configuration "
1792
+ "directives"
1793
+ msgstr ""
1794
+
1795
+ #: -:-
1796
+ msgid ""
1797
+ "LDAP|Description|Attribute|olcDatabase|The backend type for a database "
1798
+ "instance"
1799
+ msgstr ""
1800
+
1801
+ #: -:-
1802
+ msgid ""
1803
+ "LDAP|Description|Attribute|olcDbCacheFree|Number of extra entries to free "
1804
+ "when max is reached"
1805
+ msgstr ""
1806
+
1807
+ #: -:-
1808
+ msgid "LDAP|Description|Attribute|olcDbCacheSize|Entry cache size in entries"
1809
+ msgstr ""
1810
+
1811
+ #: -:-
1812
+ msgid ""
1813
+ "LDAP|Description|Attribute|olcDbCheckpoint|Database checkpoint interval in "
1814
+ "kbytes and minutes"
1815
+ msgstr ""
1816
+
1817
+ #: -:-
1818
+ msgid ""
1819
+ "LDAP|Description|Attribute|olcDbConfig|BerkeleyDB DB_CONFIG configuration "
1820
+ "directives"
1821
+ msgstr ""
1822
+
1823
+ #: -:-
1824
+ msgid ""
1825
+ "LDAP|Description|Attribute|olcDbCryptFile|Pathname of file containing the DB "
1826
+ "encryption key"
1827
+ msgstr ""
1828
+
1829
+ #: -:-
1830
+ msgid "LDAP|Description|Attribute|olcDbCryptKey|DB encryption key"
1831
+ msgstr ""
1832
+
1833
+ #: -:-
1834
+ msgid "LDAP|Description|Attribute|olcDbDNcacheSize|DN cache size"
1835
+ msgstr ""
1836
+
1837
+ #: -:-
1838
+ msgid ""
1839
+ "LDAP|Description|Attribute|olcDbDirectory|Directory for database content"
1840
+ msgstr ""
1841
+
1842
+ #: -:-
1843
+ msgid ""
1844
+ "LDAP|Description|Attribute|olcDbDirtyRead|Allow reads of uncommitted data"
1845
+ msgstr ""
1846
+
1847
+ #: -:-
1848
+ msgid "LDAP|Description|Attribute|olcDbIDLcacheSize|IDL cache size in IDLs"
1849
+ msgstr ""
1850
+
1851
+ #: -:-
1852
+ msgid "LDAP|Description|Attribute|olcDbIndex|Attribute index parameters"
1853
+ msgstr ""
1854
+
1855
+ #: -:-
1856
+ msgid ""
1857
+ "LDAP|Description|Attribute|olcDbLinearIndex|Index attributes one at a time"
1858
+ msgstr ""
1859
+
1860
+ #: -:-
1861
+ msgid "LDAP|Description|Attribute|olcDbLockDetect|Deadlock detection algorithm"
1862
+ msgstr ""
1863
+
1864
+ #: -:-
1865
+ msgid "LDAP|Description|Attribute|olcDbMode|Unix permissions of database files"
1866
+ msgstr ""
1867
+
1868
+ #: -:-
1869
+ msgid ""
1870
+ "LDAP|Description|Attribute|olcDbNoSync|Disable synchronous database writes"
1871
+ msgstr ""
1872
+
1873
+ #: -:-
1874
+ msgid ""
1875
+ "LDAP|Description|Attribute|olcDbSearchStack|Depth of search stack in IDLs"
1876
+ msgstr ""
1877
+
1878
+ #: -:-
1879
+ msgid "LDAP|Description|Attribute|olcDbShmKey|Key for shared memory region"
1880
+ msgstr ""
1881
+
1882
+ #: -:-
1883
+ msgid ""
1884
+ "LDAP|Description|Attribute|olcDitContentRules|OpenLDAP DIT content rules"
1885
+ msgstr ""
1886
+
1887
+ #: -:-
1888
+ msgid "LDAP|Description|Attribute|olcObjectClasses|OpenLDAP object classes"
1889
+ msgstr ""
1890
+
1891
+ #: -:-
1892
+ msgid ""
1893
+ "LDAP|Description|Attribute|olcSortVals|Attributes whose values will always "
1894
+ "be sorted"
1895
+ msgstr ""
1896
+
1350
1897
  #: -:-
1351
1898
  msgid ""
1352
1899
  "LDAP|Description|Attribute|organizationalStatus|RFC1274: organizational "
@@ -2012,6 +2559,61 @@ msgstr ""
2012
2559
  msgid "LDAP|Description|ObjectClass|nisObject|An entry in a NIS map"
2013
2560
  msgstr ""
2014
2561
 
2562
+ #: -:-
2563
+ msgid ""
2564
+ "LDAP|Description|ObjectClass|olcBackendConfig|OpenLDAP Backend-specific "
2565
+ "options"
2566
+ msgstr ""
2567
+
2568
+ #: -:-
2569
+ msgid "LDAP|Description|ObjectClass|olcBdbConfig|BDB backend configuration"
2570
+ msgstr ""
2571
+
2572
+ #: -:-
2573
+ msgid "LDAP|Description|ObjectClass|olcConfig|OpenLDAP configuration object"
2574
+ msgstr ""
2575
+
2576
+ #: -:-
2577
+ msgid ""
2578
+ "LDAP|Description|ObjectClass|olcDatabaseConfig|OpenLDAP Database-specific "
2579
+ "options"
2580
+ msgstr ""
2581
+
2582
+ #: -:-
2583
+ msgid ""
2584
+ "LDAP|Description|ObjectClass|olcFrontendConfig|OpenLDAP frontend "
2585
+ "configuration"
2586
+ msgstr ""
2587
+
2588
+ #: -:-
2589
+ msgid ""
2590
+ "LDAP|Description|ObjectClass|olcGlobal|OpenLDAP Global configuration options"
2591
+ msgstr ""
2592
+
2593
+ #: -:-
2594
+ msgid ""
2595
+ "LDAP|Description|ObjectClass|olcIncludeFile|OpenLDAP configuration include "
2596
+ "file"
2597
+ msgstr ""
2598
+
2599
+ #: -:-
2600
+ msgid "LDAP|Description|ObjectClass|olcLdifConfig|LDIF backend configuration"
2601
+ msgstr ""
2602
+
2603
+ #: -:-
2604
+ msgid "LDAP|Description|ObjectClass|olcModuleList|OpenLDAP dynamic module info"
2605
+ msgstr ""
2606
+
2607
+ #: -:-
2608
+ msgid ""
2609
+ "LDAP|Description|ObjectClass|olcOverlayConfig|OpenLDAP Overlay-specific "
2610
+ "options"
2611
+ msgstr ""
2612
+
2613
+ #: -:-
2614
+ msgid "LDAP|Description|ObjectClass|olcSchemaConfig|OpenLDAP schema object"
2615
+ msgstr ""
2616
+
2015
2617
  #: -:-
2016
2618
  msgid "LDAP|Description|ObjectClass|oncRpc|Abstraction of an ONC/RPC binding"
2017
2619
  msgstr ""
@@ -2460,6 +3062,50 @@ msgstr ""
2460
3062
  msgid "LDAP|ObjectClass|nisObject"
2461
3063
  msgstr ""
2462
3064
 
3065
+ #: -:-
3066
+ msgid "LDAP|ObjectClass|olcBackendConfig"
3067
+ msgstr ""
3068
+
3069
+ #: -:-
3070
+ msgid "LDAP|ObjectClass|olcBdbConfig"
3071
+ msgstr ""
3072
+
3073
+ #: -:-
3074
+ msgid "LDAP|ObjectClass|olcConfig"
3075
+ msgstr ""
3076
+
3077
+ #: -:-
3078
+ msgid "LDAP|ObjectClass|olcDatabaseConfig"
3079
+ msgstr ""
3080
+
3081
+ #: -:-
3082
+ msgid "LDAP|ObjectClass|olcFrontendConfig"
3083
+ msgstr ""
3084
+
3085
+ #: -:-
3086
+ msgid "LDAP|ObjectClass|olcGlobal"
3087
+ msgstr ""
3088
+
3089
+ #: -:-
3090
+ msgid "LDAP|ObjectClass|olcIncludeFile"
3091
+ msgstr ""
3092
+
3093
+ #: -:-
3094
+ msgid "LDAP|ObjectClass|olcLdifConfig"
3095
+ msgstr ""
3096
+
3097
+ #: -:-
3098
+ msgid "LDAP|ObjectClass|olcModuleList"
3099
+ msgstr ""
3100
+
3101
+ #: -:-
3102
+ msgid "LDAP|ObjectClass|olcOverlayConfig"
3103
+ msgstr ""
3104
+
3105
+ #: -:-
3106
+ msgid "LDAP|ObjectClass|olcSchemaConfig"
3107
+ msgstr ""
3108
+
2463
3109
  #: -:-
2464
3110
  msgid "LDAP|ObjectClass|oncRpc"
2465
3111
  msgstr ""
@@ -2797,27 +3443,27 @@ msgstr ""
2797
3443
  msgid "Requested action timed out."
2798
3444
  msgstr ""
2799
3445
 
2800
- #: lib/active_ldap/adapter/base.rb:322
3446
+ #: lib/active_ldap/adapter/base.rb:320
2801
3447
  msgid "Skip simple bind with empty password."
2802
3448
  msgstr ""
2803
3449
 
2804
- #: lib/active_ldap/adapter/base.rb:326
3450
+ #: lib/active_ldap/adapter/base.rb:324
2805
3451
  msgid "Can't use empty password for simple bind."
2806
3452
  msgstr ""
2807
3453
 
2808
- #: lib/active_ldap/adapter/base.rb:517
3454
+ #: lib/active_ldap/adapter/base.rb:515
2809
3455
  msgid "invalid logical operator: %s: available operators: %s"
2810
3456
  msgstr ""
2811
3457
 
2812
- #: lib/active_ldap/adapter/base.rb:534
3458
+ #: lib/active_ldap/adapter/base.rb:532
2813
3459
  msgid "Giving up trying to reconnect to LDAP server."
2814
3460
  msgstr ""
2815
3461
 
2816
- #: lib/active_ldap/adapter/base.rb:537
3462
+ #: lib/active_ldap/adapter/base.rb:535
2817
3463
  msgid "Attempting to reconnect"
2818
3464
  msgstr ""
2819
3465
 
2820
- #: lib/active_ldap/adapter/base.rb:548
3466
+ #: lib/active_ldap/adapter/base.rb:546
2821
3467
  msgid ""
2822
3468
  "Reconnect to server failed: %s\n"
2823
3469
  "Reconnect to server failed backtrace:\n"
@@ -2832,127 +3478,127 @@ msgstr ""
2832
3478
  msgid ":ldap_scope search option is deprecated. Use :scope instead."
2833
3479
  msgstr ""
2834
3480
 
2835
- #: lib/active_ldap/operations.rb:210
3481
+ #: lib/active_ldap/operations.rb:221
2836
3482
  msgid "Invalid order: %s"
2837
3483
  msgstr ""
2838
3484
 
2839
- #: lib/active_ldap/operations.rb:246
3485
+ #: lib/active_ldap/operations.rb:257
2840
3486
  msgid "Couldn't find %s without a DN"
2841
3487
  msgstr ""
2842
3488
 
2843
- #: lib/active_ldap/operations.rb:268
3489
+ #: lib/active_ldap/operations.rb:279
2844
3490
  msgid "Couldn't find %s: DN: %s: filter: %s"
2845
3491
  msgstr ""
2846
3492
 
2847
- #: lib/active_ldap/operations.rb:271
3493
+ #: lib/active_ldap/operations.rb:282
2848
3494
  msgid "Couldn't find %s: DN: %s"
2849
3495
  msgstr ""
2850
3496
 
2851
- #: lib/active_ldap/operations.rb:298
3497
+ #: lib/active_ldap/operations.rb:309
2852
3498
  msgid "Couldn't find all %s: DNs (%s): filter: %s"
2853
3499
  msgstr ""
2854
3500
 
2855
- #: lib/active_ldap/operations.rb:301
3501
+ #: lib/active_ldap/operations.rb:312
2856
3502
  msgid "Couldn't find all %s: DNs (%s)"
2857
3503
  msgstr ""
2858
3504
 
2859
- #: lib/active_ldap/ldif.rb:377
3505
+ #: lib/active_ldap/ldif.rb:376
2860
3506
  msgid "version spec is missing"
2861
3507
  msgstr ""
2862
3508
 
2863
- #: lib/active_ldap/ldif.rb:381
3509
+ #: lib/active_ldap/ldif.rb:380
2864
3510
  msgid "version number is missing"
2865
3511
  msgstr ""
2866
3512
 
2867
- #: lib/active_ldap/ldif.rb:385
3513
+ #: lib/active_ldap/ldif.rb:384
2868
3514
  msgid "unsupported version: %d"
2869
3515
  msgstr ""
2870
3516
 
2871
- #: lib/active_ldap/ldif.rb:389
3517
+ #: lib/active_ldap/ldif.rb:388
2872
3518
  msgid "separator is missing"
2873
3519
  msgstr ""
2874
3520
 
2875
- #: lib/active_ldap/ldif.rb:393
3521
+ #: lib/active_ldap/ldif.rb:392
2876
3522
  msgid "'dn:' is missing"
2877
3523
  msgstr ""
2878
3524
 
2879
- #: lib/active_ldap/ldif.rb:397
3525
+ #: lib/active_ldap/ldif.rb:396
2880
3526
  msgid "DN is missing"
2881
3527
  msgstr ""
2882
3528
 
2883
- #: lib/active_ldap/ldif.rb:401
3529
+ #: lib/active_ldap/ldif.rb:400
2884
3530
  msgid "DN is invalid: %s: %s"
2885
3531
  msgstr ""
2886
3532
 
2887
- #: lib/active_ldap/ldif.rb:405
3533
+ #: lib/active_ldap/ldif.rb:404
2888
3534
  msgid "DN has an invalid character: %s"
2889
3535
  msgstr ""
2890
3536
 
2891
- #: lib/active_ldap/ldif.rb:409 lib/active_ldap/distinguished_name.rb:140
3537
+ #: lib/active_ldap/ldif.rb:408 lib/active_ldap/distinguished_name.rb:143
2892
3538
  msgid "attribute type is missing"
2893
3539
  msgstr ""
2894
3540
 
2895
- #: lib/active_ldap/ldif.rb:413
3541
+ #: lib/active_ldap/ldif.rb:412
2896
3542
  msgid "option is missing"
2897
3543
  msgstr ""
2898
3544
 
2899
- #: lib/active_ldap/ldif.rb:417
3545
+ #: lib/active_ldap/ldif.rb:416
2900
3546
  msgid "':' is missing"
2901
3547
  msgstr ""
2902
3548
 
2903
- #: lib/active_ldap/ldif.rb:421
3549
+ #: lib/active_ldap/ldif.rb:420
2904
3550
  msgid "URI is invalid: %s: %s"
2905
3551
  msgstr ""
2906
3552
 
2907
- #: lib/active_ldap/ldif.rb:425
3553
+ #: lib/active_ldap/ldif.rb:424
2908
3554
  msgid "'-' is missing"
2909
3555
  msgstr ""
2910
3556
 
2911
- #: lib/active_ldap/ldif.rb:429
3557
+ #: lib/active_ldap/ldif.rb:428
2912
3558
  msgid "unknown change type: %s"
2913
3559
  msgstr ""
2914
3560
 
2915
- #: lib/active_ldap/ldif.rb:433
3561
+ #: lib/active_ldap/ldif.rb:432
2916
3562
  msgid "change type is missing"
2917
3563
  msgstr ""
2918
3564
 
2919
- #: lib/active_ldap/ldif.rb:437
3565
+ #: lib/active_ldap/ldif.rb:436
2920
3566
  msgid "control type is missing"
2921
3567
  msgstr ""
2922
3568
 
2923
- #: lib/active_ldap/ldif.rb:441
3569
+ #: lib/active_ldap/ldif.rb:440
2924
3570
  msgid "criticality is missing"
2925
3571
  msgstr ""
2926
3572
 
2927
- #: lib/active_ldap/ldif.rb:445
3573
+ #: lib/active_ldap/ldif.rb:444
2928
3574
  msgid "change type value is missing"
2929
3575
  msgstr ""
2930
3576
 
2931
- #: lib/active_ldap/ldif.rb:449
3577
+ #: lib/active_ldap/ldif.rb:448
2932
3578
  msgid "attribute spec is missing"
2933
3579
  msgstr ""
2934
3580
 
2935
- #: lib/active_ldap/ldif.rb:453
3581
+ #: lib/active_ldap/ldif.rb:452
2936
3582
  msgid "'newrdn:' is missing"
2937
3583
  msgstr ""
2938
3584
 
2939
- #: lib/active_ldap/ldif.rb:457
3585
+ #: lib/active_ldap/ldif.rb:456
2940
3586
  msgid "new RDN value is missing"
2941
3587
  msgstr ""
2942
3588
 
2943
- #: lib/active_ldap/ldif.rb:461
3589
+ #: lib/active_ldap/ldif.rb:460
2944
3590
  msgid "'deleteoldrdn:' is missing"
2945
3591
  msgstr ""
2946
3592
 
2947
- #: lib/active_ldap/ldif.rb:465
3593
+ #: lib/active_ldap/ldif.rb:464
2948
3594
  msgid "delete old RDN value is missing"
2949
3595
  msgstr ""
2950
3596
 
2951
- #: lib/active_ldap/ldif.rb:469
3597
+ #: lib/active_ldap/ldif.rb:468
2952
3598
  msgid "new superior value is missing"
2953
3599
  msgstr ""
2954
3600
 
2955
- #: lib/active_ldap/ldif.rb:473
3601
+ #: lib/active_ldap/ldif.rb:472
2956
3602
  msgid "unknown modify type: %s"
2957
3603
  msgstr ""
2958
3604
 
@@ -2964,67 +3610,61 @@ msgstr ""
2964
3610
  msgid "invalid deleteoldrdn value: %s"
2965
3611
  msgstr ""
2966
3612
 
2967
- #: lib/active_ldap/distinguished_name.rb:132
3613
+ #: lib/active_ldap/distinguished_name.rb:135
2968
3614
  msgid "name component is missing"
2969
3615
  msgstr ""
2970
3616
 
2971
- #: lib/active_ldap/distinguished_name.rb:136
3617
+ #: lib/active_ldap/distinguished_name.rb:139
2972
3618
  msgid "relative distinguished name (RDN) is missing"
2973
3619
  msgstr ""
2974
3620
 
2975
- #: lib/active_ldap/distinguished_name.rb:144
3621
+ #: lib/active_ldap/distinguished_name.rb:147
2976
3622
  msgid "attribute value is missing"
2977
3623
  msgstr ""
2978
3624
 
2979
- #: lib/active_ldap/distinguished_name.rb:148
3625
+ #: lib/active_ldap/distinguished_name.rb:151
2980
3626
  msgid "found unmatched quotation"
2981
3627
  msgstr ""
2982
3628
 
2983
- #: lib/active_ldap/distinguished_name.rb:173
3629
+ #: lib/active_ldap/distinguished_name.rb:187
2984
3630
  msgid "%s isn't sub DN of %s"
2985
3631
  msgstr ""
2986
3632
 
2987
- #: lib/active_ldap/validations.rb:69
3633
+ #: lib/active_ldap/validations.rb:81
2988
3634
  msgid "%{fn} is duplicated: %s"
2989
3635
  msgstr ""
2990
3636
 
2991
- #: lib/active_ldap/validations.rb:71
3637
+ #: lib/active_ldap/validations.rb:83
2992
3638
  msgid "is duplicated: %s"
2993
3639
  msgstr ""
2994
3640
 
2995
- #: lib/active_ldap/validations.rb:95
3641
+ #: lib/active_ldap/validations.rb:107
2996
3642
  msgid "%{fn} has excluded value: %s"
2997
3643
  msgid_plural "%{fn} has excluded values: %s"
2998
3644
  msgstr[0] ""
2999
3645
  msgstr[1] ""
3000
3646
 
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
3647
+ #: lib/active_ldap/validations.rb:142
3008
3648
  msgid "%{fn} is required attribute by objectClass '%s'"
3009
3649
  msgstr ""
3010
3650
 
3011
- #: lib/active_ldap/validations.rb:130
3651
+ #: lib/active_ldap/validations.rb:144
3012
3652
  msgid "%{fn} is required attribute by objectClass '%s': aliases: %s"
3013
3653
  msgstr ""
3014
3654
 
3015
- #: lib/active_ldap/validations.rb:165
3655
+ #: lib/active_ldap/validations.rb:177
3016
3656
  msgid "%{fn} (%s) has invalid format: %s: required syntax: %s: %s"
3017
3657
  msgstr ""
3018
3658
 
3019
- #: lib/active_ldap/validations.rb:167
3659
+ #: lib/active_ldap/validations.rb:179
3020
3660
  msgid "%{fn} has invalid format: %s: required syntax: %s: %s"
3021
3661
  msgstr ""
3022
3662
 
3023
- #: lib/active_ldap/validations.rb:171
3663
+ #: lib/active_ldap/validations.rb:183
3024
3664
  msgid "(%s) has invalid format: %s: required syntax: %s: %s"
3025
3665
  msgstr ""
3026
3666
 
3027
- #: lib/active_ldap/validations.rb:173
3667
+ #: lib/active_ldap/validations.rb:185
3028
3668
  msgid "has invalid format: %s: required syntax: %s: %s"
3029
3669
  msgstr ""
3030
3670
 
@@ -3044,61 +3684,65 @@ msgstr ""
3044
3684
  msgid "Show version"
3045
3685
  msgstr ""
3046
3686
 
3047
- #: lib/active_ldap/base.rb:114
3687
+ #: lib/active_ldap/base.rb:112
3688
+ msgid "invalid distinguished name (DN) to parse: %s"
3689
+ msgstr ""
3690
+
3691
+ #: lib/active_ldap/base.rb:122
3048
3692
  msgid "%s is invalid distinguished name (DN): %s"
3049
3693
  msgstr ""
3050
3694
 
3051
- #: lib/active_ldap/base.rb:116
3695
+ #: lib/active_ldap/base.rb:124
3052
3696
  msgid "%s is invalid distinguished name (DN)"
3053
3697
  msgstr ""
3054
3698
 
3055
- #: lib/active_ldap/base.rb:134
3699
+ #: lib/active_ldap/base.rb:142
3056
3700
  msgid "invalid LDIF: %s:"
3057
3701
  msgstr ""
3058
3702
 
3059
- #: lib/active_ldap/base.rb:136
3703
+ #: lib/active_ldap/base.rb:144
3060
3704
  msgid "invalid LDIF:"
3061
3705
  msgstr ""
3062
3706
 
3063
- #: lib/active_ldap/base.rb:211
3707
+ #: lib/active_ldap/base.rb:219
3064
3708
  msgid "LDAP configuration specifies nonexistent %s adapter"
3065
3709
  msgstr ""
3066
3710
 
3067
- #: lib/active_ldap/base.rb:219
3711
+ #: lib/active_ldap/base.rb:227
3068
3712
  msgid "%s is unknown attribute"
3069
3713
  msgstr ""
3070
3714
 
3071
- #: lib/active_ldap/base.rb:407
3715
+ #: lib/active_ldap/base.rb:423
3072
3716
  msgid "scope '%s' must be a Symbol"
3073
3717
  msgstr ""
3074
3718
 
3075
- #: lib/active_ldap/base.rb:516
3719
+ #: lib/active_ldap/base.rb:577
3076
3720
  msgid ""
3077
3721
  "'%s' must be either nil, DN value as ActiveLdap::DN, String or Array or "
3078
3722
  "attributes as Hash"
3079
3723
  msgstr ""
3080
3724
 
3081
- #: lib/active_ldap/base.rb:620
3725
+ #: lib/active_ldap/base.rb:682
3082
3726
  msgid "Failed to delete LDAP entry: %s"
3083
3727
  msgstr ""
3084
3728
 
3085
- #: lib/active_ldap/base.rb:639
3729
+ #: lib/active_ldap/base.rb:701
3086
3730
  msgid "entry %s can't be saved"
3087
3731
  msgstr ""
3088
3732
 
3089
- #: lib/active_ldap/base.rb:658 lib/active_ldap/base.rb:669
3733
+ #: lib/active_ldap/base.rb:720 lib/active_ldap/base.rb:731
3090
3734
  msgid "wrong number of arguments (%d for 1)"
3091
3735
  msgstr ""
3092
3736
 
3093
- #: lib/active_ldap/base.rb:788
3737
+ #: lib/active_ldap/base.rb:854
3094
3738
  msgid "Can't find DN '%s' to reload"
3095
3739
  msgstr ""
3096
3740
 
3097
- #: lib/active_ldap/base.rb:1119
3741
+ #: lib/active_ldap/base.rb:1184
3098
3742
  msgid "%s's DN attribute (%s) isn't set"
3099
3743
  msgstr ""
3100
3744
 
3101
- #: lib/active_ldap/base.rb:1228
3745
+ #: lib/active_ldap/base.rb:1298
3102
3746
  msgid "dn_attribute isn't set for this class: %s"
3103
3747
  msgstr ""
3104
3748
 
@@ -3122,19 +3766,19 @@ msgstr ""
3122
3766
  msgid ":ldap_scope connection option is deprecated. Use :scope instead."
3123
3767
  msgstr ""
3124
3768
 
3125
- #: lib/active_ldap/user_password.rb:11
3769
+ #: lib/active_ldap/user_password.rb:10
3126
3770
  msgid "Invalid hashed password: %s"
3127
3771
  msgstr ""
3128
3772
 
3129
- #: lib/active_ldap/user_password.rb:17
3773
+ #: lib/active_ldap/user_password.rb:16
3130
3774
  msgid "Unknown Hash type: %s"
3131
3775
  msgstr ""
3132
3776
 
3133
- #: lib/active_ldap/user_password.rb:24
3777
+ #: lib/active_ldap/user_password.rb:23
3134
3778
  msgid "Can't extract salt from hashed password: %s"
3135
3779
  msgstr ""
3136
3780
 
3137
- #: lib/active_ldap/user_password.rb:52 lib/active_ldap/user_password.rb:69
3781
+ #: lib/active_ldap/user_password.rb:51 lib/active_ldap/user_password.rb:68
3138
3782
  msgid "salt size must be == 4: %s"
3139
3783
  msgstr ""
3140
3784
 
@@ -3262,26 +3906,37 @@ msgstr ""
3262
3906
  msgid "Specify prefix for benchmarking"
3263
3907
  msgstr ""
3264
3908
 
3265
- #: benchmark/bench-al.rb:160
3909
+ #: benchmark/bench-al.rb:182
3266
3910
  msgid "Populating..."
3267
3911
  msgstr ""
3268
3912
 
3269
- #: benchmark/bench-al.rb:199
3270
- msgid "Entries processed by Ruby/ActiveLdap: %d"
3913
+ #: benchmark/bench-al.rb:239
3914
+ msgid "Entries processed by Ruby/ActiveLdap + LDAP: %d"
3915
+ msgstr ""
3916
+
3917
+ #: benchmark/bench-al.rb:240
3918
+ msgid "Entries processed by Ruby/ActiveLdap + Net::LDAP: %d"
3271
3919
  msgstr ""
3272
3920
 
3273
- #: benchmark/bench-al.rb:200
3274
- msgid "Entries processed by Ruby/ActiveLdap (without object creation): %d"
3921
+ #: benchmark/bench-al.rb:242
3922
+ msgid ""
3923
+ "Entries processed by Ruby/ActiveLdap + LDAP: (without object creation): %d"
3924
+ msgstr ""
3925
+
3926
+ #: benchmark/bench-al.rb:245
3927
+ msgid ""
3928
+ "Entries processed by Ruby/ActiveLdap + Net::LDAP: (without object creation): "
3929
+ "%d"
3275
3930
  msgstr ""
3276
3931
 
3277
- #: benchmark/bench-al.rb:202
3932
+ #: benchmark/bench-al.rb:248
3278
3933
  msgid "Entries processed by Ruby/LDAP: %d"
3279
3934
  msgstr ""
3280
3935
 
3281
- #: benchmark/bench-al.rb:203
3936
+ #: benchmark/bench-al.rb:249
3282
3937
  msgid "Entries processed by Net::LDAP: %d"
3283
3938
  msgstr ""
3284
3939
 
3285
- #: benchmark/bench-al.rb:206
3940
+ #: benchmark/bench-al.rb:253
3286
3941
  msgid "Cleaning..."
3287
3942
  msgstr ""