activeldap 0.9.0 → 0.10.0

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 (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
@@ -1,39 +1,55 @@
1
- # Be sure to restart your web server when you modify this file.
1
+ # Be sure to restart your server when you modify this file
2
2
 
3
- # Uncomment below to force Rails into production mode when
3
+ # Uncomment below to force Rails into production mode when
4
4
  # you don't control web/app server and can't set it the proper way
5
5
  # ENV['RAILS_ENV'] ||= 'production'
6
6
 
7
7
  # Specifies gem version of Rails to use when vendor/rails is not present
8
- RAILS_GEM_VERSION = '1.2.5' unless defined? RAILS_GEM_VERSION
8
+ RAILS_GEM_VERSION = '2.0.2' unless defined? RAILS_GEM_VERSION
9
9
 
10
10
  # Bootstrap the Rails environment, frameworks, and default configuration
11
11
  require File.join(File.dirname(__FILE__), 'boot')
12
12
 
13
13
  Rails::Initializer.run do |config|
14
- # Settings in config/environments/* take precedence over those specified here
15
-
16
- # Skip frameworks you're not going to use (only works if using vendor/rails)
17
- # config.frameworks -= [ :action_web_service, :action_mailer ]
14
+ # Settings in config/environments/* take precedence over those specified here.
15
+ # Application configuration should go into files in config/initializers
16
+ # -- all .rb files in that directory are automatically loaded.
17
+ # See Rails::Configuration for more options.
18
18
 
19
- # Only load the plugins named here, by default all plugins in vendor/plugins are loaded
20
- # config.plugins = %W( exception_notification ssl_requirement )
19
+ # Skip frameworks you're not going to use (only works if using vendor/rails).
20
+ # To use Rails without a database, you must remove the Active Record framework
21
+ # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
22
+
23
+ # Only load the plugins named here, in the order given. By default, all plugins
24
+ # in vendor/plugins are loaded in alphabetical order.
25
+ # :all can be used as a placeholder for all plugins not explicitly named
26
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
21
27
 
22
28
  # Add additional load paths for your own custom dirs
29
+ # config.load_paths += %W( #{RAILS_ROOT}/extras )
23
30
  config.load_paths += %W(#{RAILS_ROOT}/../../lib)
24
-
25
31
  config.plugin_paths += %W(#{RAILS_ROOT}/../../rails/plugin)
26
32
 
27
- # Force all environments to use the same logger level
33
+ # Force all environments to use the same logger level
28
34
  # (by default production uses :info, the others :debug)
29
35
  # config.log_level = :debug
30
36
 
31
- # Use the database for sessions instead of the file system
37
+ # Your secret key for verifying cookie session data integrity.
38
+ # If you change this key, all old sessions will become invalid!
39
+ # Make sure the secret is at least 30 characters and all random,
40
+ # no regular words or you'll be exposed to dictionary attacks.
41
+ config.action_controller.session = {
42
+ :session_key => '_al_admin_session',
43
+ :secret => '581ed74d26a88caa7cb2ff6d0ea0f0aeea1a49f98641ee6d3e7ba1dfcf6154e26cd2b3f9636c9cc02ed8139a4f74c64fdb529a53dcfd1b7ff7aa763f91083aad'
44
+ }
45
+
46
+ # Use the database for sessions instead of the cookie-based default,
47
+ # which shouldn't be used to store highly confidential information
32
48
  # (create the session table with 'rake db:sessions:create')
33
49
  # config.action_controller.session_store = :active_record_store
34
50
 
35
51
  # Use SQL instead of Active Record's schema dumper when creating the test database.
36
- # This is necessary if your schema can't be completely dumped by the schema dumper,
52
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
37
53
  # like if you have constraints or database-specific column types
38
54
  # config.active_record.schema_format = :sql
39
55
 
@@ -42,29 +58,7 @@ Rails::Initializer.run do |config|
42
58
 
43
59
  # Make Active Record use UTC-base instead of local time
44
60
  # config.active_record.default_timezone = :utc
45
-
46
- # See Rails::Configuration for more options
61
+
47
62
  config.logger = Logger.new(config.log_path, 7)
48
63
  config.logger.level = Logger.const_get(config.log_level.to_s.upcase)
49
64
  end
50
-
51
- # Add new inflection rules using the following format
52
- # (all these examples are active by default):
53
- # Inflector.inflections do |inflect|
54
- # inflect.plural /^(ox)$/i, '\1en'
55
- # inflect.singular /^(ox)en/i, '\1'
56
- # inflect.irregular 'person', 'people'
57
- # inflect.uncountable %w( fish sheep )
58
- # end
59
-
60
- # Add new mime types for use in respond_to blocks:
61
- # Mime::Type.register "text/richtext", :rtf
62
- # Mime::Type.register "application/x-mobile", :mobile
63
-
64
- # Include your application configuration below
65
-
66
- require 'gettext/rails'
67
- require 'accept_http_rails_relative_url_root'
68
-
69
- # ExceptionNotifier.sender_address = "null@cozmixng.org"
70
- # ExceptionNotifier.exception_recipients = %w(kou@cozmixng.org)
@@ -8,14 +8,11 @@ config.cache_classes = false
8
8
  # Log error messages when you accidentally call methods on nil.
9
9
  config.whiny_nils = true
10
10
 
11
- # Enable the breakpoint server that script/breakpointer connects to
12
- config.breakpoint_server = true
13
-
14
11
  # Show full error reports and disable caching
15
12
  config.action_controller.consider_all_requests_local = true
13
+ config.action_view.debug_rjs = true
16
14
  config.action_controller.perform_caching = false
17
15
  config.action_view.cache_template_extensions = false
18
- config.action_view.debug_rjs = true
19
16
 
20
17
  # Don't care if the mailer can't send
21
- config.action_mailer.raise_delivery_errors = false
18
+ config.action_mailer.raise_delivery_errors = false
@@ -10,6 +10,7 @@ config.cache_classes = true
10
10
  # Full error reports are disabled and caching is turned on
11
11
  config.action_controller.consider_all_requests_local = false
12
12
  config.action_controller.perform_caching = true
13
+ config.action_view.cache_template_loading = true
13
14
 
14
15
  # Enable serving of images, stylesheets, and javascripts from an asset server
15
16
  # config.action_controller.asset_host = "http://assets.example.com"
@@ -13,7 +13,10 @@ config.whiny_nils = true
13
13
  config.action_controller.consider_all_requests_local = true
14
14
  config.action_controller.perform_caching = false
15
15
 
16
+ # Disable request forgery protection in test environment
17
+ config.action_controller.allow_forgery_protection = false
18
+
16
19
  # Tell ActionMailer not to deliver emails to the real world.
17
20
  # The :test delivery method accumulates sent emails in the
18
21
  # ActionMailer::Base.deliveries array.
19
- config.action_mailer.delivery_method = :test
22
+ config.action_mailer.delivery_method = :test
@@ -0,0 +1,2 @@
1
+ # ExceptionNotifier.sender_address = "null@cozmixng.org"
2
+ # ExceptionNotifier.exception_recipients = %w(kou@cozmixng.org)
@@ -0,0 +1 @@
1
+ require 'gettext/rails'
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1 @@
1
+ require 'accept_http_rails_relative_url_root'
@@ -1,5 +1,4 @@
1
1
  ActionController::Routing::Routes.draw do |map|
2
-
3
2
  lang_map = Proc.new do |*args|
4
3
  method, path, options = args
5
4
  duped_options = (options || {}).dup
@@ -16,19 +15,36 @@ ActionController::Routing::Routes.draw do |map|
16
15
  end
17
16
 
18
17
  # The priority is based upon order of creation: first created -> highest priority.
19
-
18
+
20
19
  # Sample of regular route:
21
- # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
20
+ # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
22
21
  # Keep in mind you can assign values other than :controller and :action
23
22
 
24
23
  # Sample of named route:
25
- # map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
24
+ # map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
26
25
  # This route can be invoked with purchase_url(:id => product.id)
27
26
 
28
- # You can have the root of your site routed by hooking up ''
29
- # -- just remember to delete public/index.html.
27
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
28
+ # map.resources :products
29
+
30
+ # Sample resource route with options:
31
+ # map.resources :products, :member => { :short => :get, :toggle => :post }, :collection => { :sold => :get }
32
+
33
+ # Sample resource route with sub-resources:
34
+ # map.resources :products, :has_many => [ :comments, :sales ], :has_one => :seller
35
+
36
+ # Sample resource route within a namespace:
37
+ # map.namespace :admin do |admin|
38
+ # # Directs /admin/products/* to Admin::ProductsController (app/controllers/admin/products_controller.rb)
39
+ # admin.resources :products
40
+ # end
41
+
42
+ # You can have the root of your site routed with map.root -- just remember to delete public/index.html.
43
+ # map.root :controller => "welcome"
30
44
  lang_map.call(:top, '', :controller => "welcome")
31
45
 
46
+ # See how all your routes lay out with "rake routes"
47
+
32
48
  lang_map.call(:connect, 'object_class/*id',
33
49
  :controller => "object_classes", :action => "show")
34
50
  lang_map.call(:connect, 'attribute/*id',
@@ -36,11 +52,7 @@ ActionController::Routing::Routes.draw do |map|
36
52
  lang_map.call(:connect, 'syntax/*id',
37
53
  :controller => "syntaxes", :action => "show")
38
54
 
39
- # Allow downloading Web Service WSDL as a file with an extension
40
- # instead of a file named 'wsdl'
41
- lang_map.call(:connect, ':controller/service.wsdl', :action => 'wsdl')
42
-
43
- # Install the default route as the lowest priority.
44
- lang_map.call(:connect, ':controller/:action/:id.:format')
55
+ # Install the default routes as the lowest priority.
45
56
  lang_map.call(:connect, ':controller/:action/:id')
57
+ lang_map.call(:connect, ':controller/:action/:id.:format')
46
58
  end
@@ -87,7 +87,7 @@ module AuthenticatedSystem
87
87
  # Redirect to the URI stored by the most recent store_location call or
88
88
  # to the passed default.
89
89
  def redirect_back_or_default(default)
90
- session[:return_to] ? redirect_to_url(session[:return_to]) : redirect_to(default)
90
+ redirect_to(session[:return_to] || default)
91
91
  session[:return_to] = nil
92
92
  end
93
93
 
@@ -20,7 +20,7 @@ namespace :gettext do
20
20
  }
21
21
  GetText::RGetText.add_parser(ActiveLdap::GetText::Parser.new(options))
22
22
 
23
- files = Dir.glob("{app,lib,components}/**/*.{rb,rhtml,rxml}")
23
+ files = Dir.glob("{app,lib,components}/**/*.{rb,erb,rxml}")
24
24
  GetText.update_pofiles("al-admin", files,
25
25
  "AL Admin #{ActiveLdap::VERSION}")
26
26
  end
@@ -5,8 +5,8 @@
5
5
  #
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: AL Admin 0.9.0\n"
9
- "POT-Creation-Date: 2007-11-04 15:53+0900\n"
8
+ "Project-Id-Version: AL Admin 0.10.0\n"
9
+ "POT-Creation-Date: 2008-02-09 14:25+0900\n"
10
10
  "PO-Revision-Date: 2007-08-19 09:44+0900\n"
11
11
  "Last-Translator: Kouhei Sutou <kou@cozmixng.org>\n"
12
12
  "Language-Team: English\n"
@@ -83,7 +83,7 @@ msgstr ""
83
83
  msgid "You have been logged out."
84
84
  msgstr ""
85
85
 
86
- #: app/controllers/users_controller.rb:27
86
+ #: app/controllers/users_controller.rb:33
87
87
  msgid "User was successfully updated."
88
88
  msgstr ""
89
89
 
@@ -95,247 +95,249 @@ msgstr ""
95
95
  msgid "Edit"
96
96
  msgstr ""
97
97
 
98
- #: app/views/directory/populate.rhtml:1
98
+ #: app/views/directory/populate.html.erb:1
99
99
  msgid "Done."
100
100
  msgstr ""
101
101
 
102
- #: app/views/directory/populate.rhtml:2 app/views/object_classes/show.rhtml:37
103
- #: app/views/users/edit.rhtml:13 app/views/users/show.rhtml:9
104
- #: app/views/syntaxes/show.rhtml:20 app/views/attributes/show.rhtml:29
102
+ #: app/views/directory/populate.html.erb:2
103
+ #: app/views/object_classes/show.html.erb:37 app/views/users/edit.html.erb:13
104
+ #: app/views/users/show.html.erb:9 app/views/syntaxes/show.html.erb:20
105
+ #: app/views/attributes/show.html.erb:29
105
106
  msgid "Menu|Index"
106
107
  msgstr ""
107
108
 
108
- #: app/views/layouts/_header_menu.rhtml:5
109
+ #: app/views/layouts/_header_menu.html.erb:5
109
110
  msgid "Menu|Logout"
110
111
  msgstr ""
111
112
 
112
- #: app/views/layouts/_header_menu.rhtml:7
113
+ #: app/views/layouts/_header_menu.html.erb:7
113
114
  msgid "Menu|Login"
114
115
  msgstr ""
115
116
 
116
- #: app/views/layouts/_header_menu.rhtml:9
117
+ #: app/views/layouts/_header_menu.html.erb:9
117
118
  msgid "Menu|Sign up"
118
119
  msgstr ""
119
120
 
120
- #: app/views/layouts/_main_menu.rhtml:6
121
+ #: app/views/layouts/_main_menu.html.erb:6
121
122
  msgid "Menu|Users list"
122
123
  msgstr ""
123
124
 
124
- #: app/views/layouts/_main_menu.rhtml:7
125
+ #: app/views/layouts/_main_menu.html.erb:7
125
126
  msgid "Menu|Directory"
126
127
  msgstr ""
127
128
 
128
- #: app/views/layouts/_main_menu.rhtml:8
129
+ #: app/views/layouts/_main_menu.html.erb:8
129
130
  msgid "Menu|objectClass list"
130
131
  msgstr ""
131
132
 
132
- #: app/views/layouts/_main_menu.rhtml:9
133
+ #: app/views/layouts/_main_menu.html.erb:9
133
134
  msgid "Menu|Attribute list"
134
135
  msgstr ""
135
136
 
136
- #: app/views/layouts/_main_menu.rhtml:10
137
+ #: app/views/layouts/_main_menu.html.erb:10
137
138
  msgid "Menu|Syntax list"
138
139
  msgstr ""
139
140
 
140
- #: app/views/_entry/_attributes_information.rhtml:6
141
- #: app/views/attributes/_attributes.rhtml:5
141
+ #: app/views/_entry/_attributes_information.html.erb:6
142
+ #: app/views/attributes/_attributes.html.erb:5
142
143
  msgid "Attribute name"
143
144
  msgstr ""
144
145
 
145
- #: app/views/_entry/_attributes_information.rhtml:7
146
+ #: app/views/_entry/_attributes_information.html.erb:7
146
147
  msgid "Value"
147
148
  msgstr ""
148
149
 
149
- #: app/views/_entry/_attributes_information.rhtml:8
150
- #: app/views/object_classes/show.rhtml:6
151
- #: app/views/object_classes/_attributes.rhtml:11
152
- #: app/views/users/_object_classes_update_form.rhtml:12
153
- #: app/views/syntaxes/_syntaxes.rhtml:6 app/views/syntaxes/show.rhtml:6
154
- #: app/views/attributes/show.rhtml:6 app/views/attributes/_attributes.rhtml:6
150
+ #: app/views/_entry/_attributes_information.html.erb:8
151
+ #: app/views/object_classes/show.html.erb:6
152
+ #: app/views/object_classes/_attributes.html.erb:11
153
+ #: app/views/users/_object_classes_update_form.html.erb:13
154
+ #: app/views/syntaxes/show.html.erb:6 app/views/syntaxes/_syntaxes.html.erb:6
155
+ #: app/views/attributes/show.html.erb:6
156
+ #: app/views/attributes/_attributes.html.erb:6
155
157
  msgid "Description"
156
158
  msgstr ""
157
159
 
158
- #: app/views/_entry/_entry.rhtml:6
160
+ #: app/views/_entry/_entry.html.erb:6
159
161
  msgid "objectClasses"
160
162
  msgstr ""
161
163
 
162
- #: app/views/_entry/_entry.rhtml:11
164
+ #: app/views/_entry/_entry.html.erb:11
163
165
  msgid "Attributes"
164
166
  msgstr ""
165
167
 
166
- #: app/views/object_classes/_object_classes.rhtml:5
167
- #: app/views/users/_object_classes_update_form.rhtml:11
168
- msgid "objectClass name"
169
- msgstr ""
170
-
171
- #: app/views/object_classes/_object_classes.rhtml:6
172
- #: app/views/users/_attributes_update_form.rhtml:13
173
- msgid "description"
168
+ #: app/views/object_classes/index.html.erb:1
169
+ msgid "objectClass list"
174
170
  msgstr ""
175
171
 
176
- #: app/views/object_classes/show.rhtml:13
172
+ #: app/views/object_classes/show.html.erb:13
177
173
  msgid "Super classes"
178
174
  msgstr ""
179
175
 
180
- #: app/views/object_classes/show.rhtml:15
181
- #: app/views/object_classes/_attributes.rhtml:4
176
+ #: app/views/object_classes/show.html.erb:15
177
+ #: app/views/object_classes/_attributes.html.erb:4
182
178
  msgid "None"
183
179
  msgstr ""
184
180
 
185
- #: app/views/object_classes/show.rhtml:24
181
+ #: app/views/object_classes/show.html.erb:24
186
182
  msgid "Requeired attributes"
187
183
  msgstr ""
188
184
 
189
- #: app/views/object_classes/show.rhtml:30
185
+ #: app/views/object_classes/show.html.erb:30
190
186
  msgid "Optional attributes"
191
187
  msgstr ""
192
188
 
193
- #: app/views/object_classes/index.rhtml:1
194
- msgid "objectClass list"
189
+ #: app/views/object_classes/_object_classes.html.erb:5
190
+ #: app/views/users/_object_classes_update_form.html.erb:12
191
+ msgid "objectClass name"
195
192
  msgstr ""
196
193
 
197
- #: app/views/object_classes/_attributes.rhtml:9
194
+ #: app/views/object_classes/_object_classes.html.erb:6
195
+ #: app/views/users/_attributes_update_form.html.erb:13
196
+ msgid "description"
197
+ msgstr ""
198
+
199
+ #: app/views/object_classes/_attributes.html.erb:9
198
200
  msgid "Name"
199
201
  msgstr ""
200
202
 
201
- #: app/views/object_classes/_attributes.rhtml:10
203
+ #: app/views/object_classes/_attributes.html.erb:10
202
204
  msgid "Inherited"
203
205
  msgstr ""
204
206
 
205
- #: app/views/users/edit.rhtml:12
207
+ #: app/views/users/index.html.erb:2
208
+ msgid "No user."
209
+ msgstr ""
210
+
211
+ #: app/views/users/edit.html.erb:12
206
212
  msgid "Menu|Show"
207
213
  msgstr ""
208
214
 
209
- #: app/views/users/_form.rhtml:5 app/views/users/_form.rhtml:13
215
+ #: app/views/users/_form.html.erb:5 app/views/users/_form.html.erb:13
210
216
  msgid "Command|Update"
211
217
  msgstr ""
212
218
 
213
- #: app/views/users/_password_change_form.rhtml:2
214
- msgid "Change password"
219
+ #: app/views/users/_object_classes_update_form.html.erb:7
220
+ msgid "Update objectClasses"
215
221
  msgstr ""
216
222
 
217
- #: app/views/users/_password_change_form.rhtml:7
218
- #: app/views/account/sign_up.rhtml:7
219
- msgid "Password"
223
+ #: app/views/users/_object_classes_update_form.html.erb:11
224
+ msgid "Use"
220
225
  msgstr ""
221
226
 
222
- #: app/views/users/_password_change_form.rhtml:15
223
- #: app/views/account/sign_up.rhtml:10
224
- msgid "Confirm Password"
227
+ #: app/views/users/_attributes_update_form.html.erb:6
228
+ msgid "Update attributes"
225
229
  msgstr ""
226
230
 
227
- #: app/views/users/_object_classes_update_form.rhtml:6
228
- msgid "Update objectClasses"
231
+ #: app/views/users/_attributes_update_form.html.erb:11
232
+ msgid "attribute name"
229
233
  msgstr ""
230
234
 
231
- #: app/views/users/_object_classes_update_form.rhtml:10
232
- msgid "Use"
235
+ #: app/views/users/_attributes_update_form.html.erb:12
236
+ msgid "value"
233
237
  msgstr ""
234
238
 
235
- #: app/views/users/index.rhtml:2
236
- msgid "No user."
239
+ #: app/views/users/_password_change_form.html.erb:2
240
+ msgid "Change password"
237
241
  msgstr ""
238
242
 
239
- #: app/views/users/_attributes_update_form.rhtml:6
240
- msgid "Update attributes"
243
+ #: app/views/users/_password_change_form.html.erb:7
244
+ #: app/views/account/sign_up.html.erb:7
245
+ msgid "Password"
241
246
  msgstr ""
242
247
 
243
- #: app/views/users/_attributes_update_form.rhtml:11
244
- msgid "attribute name"
248
+ #: app/views/users/_password_change_form.html.erb:15
249
+ #: app/views/account/sign_up.html.erb:10
250
+ msgid "Confirm Password"
245
251
  msgstr ""
246
252
 
247
- #: app/views/users/_attributes_update_form.rhtml:12
248
- msgid "value"
253
+ #: app/views/account/sign_up.html.erb:4
254
+ msgid "Login"
249
255
  msgstr ""
250
256
 
251
- #: app/views/account/login.rhtml:5
257
+ #: app/views/account/sign_up.html.erb:13 app/views/account/sign_up.html.erb:27
258
+ msgid "Sign up"
259
+ msgstr ""
260
+
261
+ #: app/views/account/login.html.erb:5
252
262
  msgid "Login:"
253
263
  msgstr ""
254
264
 
255
- #: app/views/account/login.rhtml:10
265
+ #: app/views/account/login.html.erb:10
256
266
  msgid "Password:"
257
267
  msgstr ""
258
268
 
259
- #: app/views/account/login.rhtml:16
269
+ #: app/views/account/login.html.erb:16
260
270
  msgid "Remember me:"
261
271
  msgstr ""
262
272
 
263
- #: app/views/account/login.rhtml:22
273
+ #: app/views/account/login.html.erb:22
264
274
  msgid "Log in"
265
275
  msgstr ""
266
276
 
267
- #: app/views/account/sign_up.rhtml:4
268
- msgid "Login"
277
+ #: app/views/syntaxes/index.html.erb:1
278
+ msgid "Syntax list"
269
279
  msgstr ""
270
280
 
271
- #: app/views/account/sign_up.rhtml:13 app/views/account/sign_up.rhtml:27
272
- msgid "Sign up"
281
+ #: app/views/syntaxes/_detail.html.erb:4
282
+ msgid "Binary tranfer required"
273
283
  msgstr ""
274
284
 
275
- #: app/views/syntaxes/_syntaxes.rhtml:5
276
- msgid "Syntax name"
285
+ #: app/views/syntaxes/_detail.html.erb:9
286
+ msgid "Human readable"
277
287
  msgstr ""
278
288
 
279
- #: app/views/syntaxes/show.rhtml:13 app/views/attributes/show.rhtml:22
289
+ #: app/views/syntaxes/show.html.erb:13 app/views/attributes/show.html.erb:22
280
290
  msgid "Detail"
281
291
  msgstr ""
282
292
 
283
- #: app/views/syntaxes/_detail.rhtml:4
284
- msgid "Binary tranfer required"
285
- msgstr ""
286
-
287
- #: app/views/syntaxes/_detail.rhtml:9
288
- msgid "Human readable"
289
- msgstr ""
290
-
291
- #: app/views/syntaxes/index.rhtml:1
292
- msgid "Syntax list"
293
+ #: app/views/syntaxes/_syntaxes.html.erb:5
294
+ msgid "Syntax name"
293
295
  msgstr ""
294
296
 
295
- #: app/views/welcome/index.rhtml:4
297
+ #: app/views/welcome/index.html.erb:4
296
298
  msgid "Menu|Populate"
297
299
  msgstr ""
298
300
 
299
- #: app/views/welcome/index.rhtml:6
301
+ #: app/views/welcome/index.html.erb:6
300
302
  msgid "OK?"
301
303
  msgstr ""
302
304
 
303
- #: app/views/welcome/index.rhtml:8
305
+ #: app/views/welcome/index.html.erb:8
304
306
  msgid "Welcome %s!"
305
307
  msgstr ""
306
308
 
307
- #: app/views/welcome/index.rhtml:12 lib/authenticated_system.rb:68
309
+ #: app/views/welcome/index.html.erb:12 lib/authenticated_system.rb:68
308
310
  msgid "Please login."
309
311
  msgstr ""
310
312
 
311
- #: app/views/attributes/show.rhtml:14
312
- msgid "Super attribute"
313
+ #: app/views/attributes/index.html.erb:1
314
+ msgid "Attribute list"
313
315
  msgstr ""
314
316
 
315
- #: app/views/attributes/_detail.rhtml:4
317
+ #: app/views/attributes/_detail.html.erb:4
316
318
  msgid "Read only"
317
319
  msgstr ""
318
320
 
319
- #: app/views/attributes/_detail.rhtml:9
321
+ #: app/views/attributes/_detail.html.erb:9
320
322
  msgid "Single value"
321
323
  msgstr ""
322
324
 
323
- #: app/views/attributes/_detail.rhtml:14
325
+ #: app/views/attributes/_detail.html.erb:14
324
326
  msgid "Binary"
325
327
  msgstr ""
326
328
 
327
- #: app/views/attributes/_detail.rhtml:19
329
+ #: app/views/attributes/_detail.html.erb:19
328
330
  msgid "Binary required"
329
331
  msgstr ""
330
332
 
331
- #: app/views/attributes/_detail.rhtml:24
333
+ #: app/views/attributes/_detail.html.erb:24
332
334
  msgid "Syntax"
333
335
  msgstr ""
334
336
 
335
- #: app/views/attributes/index.rhtml:1
336
- msgid "Attribute list"
337
+ #: app/views/attributes/show.html.erb:14
338
+ msgid "Super attribute"
337
339
  msgstr ""
338
340
 
339
- #: app/views/_schema/_aliases.rhtml:2
341
+ #: app/views/_schema/_aliases.html.erb:2
340
342
  msgid "Aliases"
341
343
  msgstr ""