ruby-activeldap 0.8.3 → 0.8.3.1

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 (177) hide show
  1. data/CHANGES +431 -0
  2. data/COPYING +340 -0
  3. data/LICENSE +58 -0
  4. data/README +104 -0
  5. data/Rakefile +165 -0
  6. data/TODO +22 -0
  7. data/benchmark/bench-al.rb +202 -0
  8. data/benchmark/config.yaml.sample +5 -0
  9. data/data/locale/en/LC_MESSAGES/active-ldap.mo +0 -0
  10. data/data/locale/ja/LC_MESSAGES/active-ldap.mo +0 -0
  11. data/examples/al-admin/README +182 -0
  12. data/examples/al-admin/Rakefile +10 -0
  13. data/examples/al-admin/app/controllers/account_controller.rb +50 -0
  14. data/examples/al-admin/app/controllers/application.rb +15 -0
  15. data/examples/al-admin/app/controllers/directory_controller.rb +22 -0
  16. data/examples/al-admin/app/controllers/users_controller.rb +38 -0
  17. data/examples/al-admin/app/controllers/welcome_controller.rb +4 -0
  18. data/examples/al-admin/app/helpers/account_helper.rb +2 -0
  19. data/examples/al-admin/app/helpers/application_helper.rb +6 -0
  20. data/examples/al-admin/app/helpers/directory_helper.rb +2 -0
  21. data/examples/al-admin/app/helpers/users_helper.rb +13 -0
  22. data/examples/al-admin/app/helpers/welcome_helper.rb +2 -0
  23. data/examples/al-admin/app/models/entry.rb +19 -0
  24. data/examples/al-admin/app/models/ldap_user.rb +49 -0
  25. data/examples/al-admin/app/models/user.rb +91 -0
  26. data/examples/al-admin/app/views/account/login.rhtml +12 -0
  27. data/examples/al-admin/app/views/account/sign_up.rhtml +22 -0
  28. data/examples/al-admin/app/views/directory/index.rhtml +5 -0
  29. data/examples/al-admin/app/views/directory/populate.rhtml +2 -0
  30. data/examples/al-admin/app/views/layouts/application.rhtml +41 -0
  31. data/examples/al-admin/app/views/users/_attribute_information.rhtml +22 -0
  32. data/examples/al-admin/app/views/users/_entry.rhtml +12 -0
  33. data/examples/al-admin/app/views/users/_form.rhtml +29 -0
  34. data/examples/al-admin/app/views/users/_object_class_information.rhtml +23 -0
  35. data/examples/al-admin/app/views/users/edit.rhtml +10 -0
  36. data/examples/al-admin/app/views/users/index.rhtml +9 -0
  37. data/examples/al-admin/app/views/users/show.rhtml +3 -0
  38. data/examples/al-admin/app/views/welcome/index.rhtml +16 -0
  39. data/examples/al-admin/config/boot.rb +45 -0
  40. data/examples/al-admin/config/database.yml.example +19 -0
  41. data/examples/al-admin/config/environment.rb +68 -0
  42. data/examples/al-admin/config/environments/development.rb +21 -0
  43. data/examples/al-admin/config/environments/production.rb +18 -0
  44. data/examples/al-admin/config/environments/test.rb +19 -0
  45. data/examples/al-admin/config/ldap.yml.example +21 -0
  46. data/examples/al-admin/config/routes.rb +26 -0
  47. data/examples/al-admin/db/migrate/001_create_users.rb +16 -0
  48. data/examples/al-admin/lib/accept_http_rails_relative_url_root.rb +9 -0
  49. data/examples/al-admin/lib/authenticated_system.rb +131 -0
  50. data/examples/al-admin/lib/authenticated_test_helper.rb +113 -0
  51. data/examples/al-admin/lib/tasks/gettext.rake +35 -0
  52. data/examples/al-admin/po/en/al-admin.po +190 -0
  53. data/examples/al-admin/po/ja/al-admin.po +190 -0
  54. data/examples/al-admin/po/nl/al-admin.po +202 -0
  55. data/examples/al-admin/public/.htaccess +40 -0
  56. data/examples/al-admin/public/404.html +30 -0
  57. data/examples/al-admin/public/500.html +30 -0
  58. data/examples/al-admin/public/dispatch.cgi +10 -0
  59. data/examples/al-admin/public/dispatch.fcgi +24 -0
  60. data/examples/al-admin/public/dispatch.rb +10 -0
  61. data/examples/al-admin/public/favicon.ico +0 -0
  62. data/examples/al-admin/public/images/rails.png +0 -0
  63. data/examples/al-admin/public/javascripts/application.js +2 -0
  64. data/examples/al-admin/public/javascripts/controls.js +833 -0
  65. data/examples/al-admin/public/javascripts/dragdrop.js +942 -0
  66. data/examples/al-admin/public/javascripts/effects.js +1088 -0
  67. data/examples/al-admin/public/javascripts/prototype.js +2515 -0
  68. data/examples/al-admin/public/robots.txt +1 -0
  69. data/examples/al-admin/public/stylesheets/rails.css +35 -0
  70. data/examples/al-admin/public/stylesheets/screen.css +52 -0
  71. data/examples/al-admin/script/about +3 -0
  72. data/examples/al-admin/script/breakpointer +3 -0
  73. data/examples/al-admin/script/console +3 -0
  74. data/examples/al-admin/script/destroy +3 -0
  75. data/examples/al-admin/script/generate +3 -0
  76. data/examples/al-admin/script/performance/benchmarker +3 -0
  77. data/examples/al-admin/script/performance/profiler +3 -0
  78. data/examples/al-admin/script/plugin +3 -0
  79. data/examples/al-admin/script/process/inspector +3 -0
  80. data/examples/al-admin/script/process/reaper +3 -0
  81. data/examples/al-admin/script/process/spawner +3 -0
  82. data/examples/al-admin/script/runner +3 -0
  83. data/examples/al-admin/script/server +3 -0
  84. data/examples/al-admin/test/fixtures/users.yml +9 -0
  85. data/examples/al-admin/test/functional/account_controller_test.rb +24 -0
  86. data/examples/al-admin/test/functional/directory_controller_test.rb +18 -0
  87. data/examples/al-admin/test/functional/users_controller_test.rb +18 -0
  88. data/examples/al-admin/test/functional/welcome_controller_test.rb +18 -0
  89. data/examples/al-admin/test/run-test.sh +3 -0
  90. data/examples/al-admin/test/test_helper.rb +28 -0
  91. data/examples/al-admin/test/unit/user_test.rb +13 -0
  92. data/examples/al-admin/vendor/plugins/exception_notification/README +111 -0
  93. data/examples/al-admin/vendor/plugins/exception_notification/init.rb +1 -0
  94. data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifiable.rb +99 -0
  95. data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifier.rb +67 -0
  96. data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifier_helper.rb +77 -0
  97. data/examples/al-admin/vendor/plugins/exception_notification/test/exception_notifier_helper_test.rb +61 -0
  98. data/examples/al-admin/vendor/plugins/exception_notification/test/test_helper.rb +7 -0
  99. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_backtrace.rhtml +1 -0
  100. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_environment.rhtml +7 -0
  101. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_inspect_model.rhtml +16 -0
  102. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_request.rhtml +3 -0
  103. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_session.rhtml +2 -0
  104. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_title.rhtml +3 -0
  105. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/exception_notification.rhtml +6 -0
  106. data/examples/config.yaml.example +5 -0
  107. data/examples/example.der +0 -0
  108. data/examples/example.jpg +0 -0
  109. data/examples/groupadd +41 -0
  110. data/examples/groupdel +35 -0
  111. data/examples/groupls +49 -0
  112. data/examples/groupmod +42 -0
  113. data/examples/lpasswd +55 -0
  114. data/examples/objects/group.rb +13 -0
  115. data/examples/objects/ou.rb +4 -0
  116. data/examples/objects/user.rb +20 -0
  117. data/examples/ouadd +38 -0
  118. data/examples/useradd +45 -0
  119. data/examples/useradd-binary +50 -0
  120. data/examples/userdel +34 -0
  121. data/examples/userls +50 -0
  122. data/examples/usermod +42 -0
  123. data/examples/usermod-binary-add +47 -0
  124. data/examples/usermod-binary-add-time +51 -0
  125. data/examples/usermod-binary-del +48 -0
  126. data/examples/usermod-lang-add +43 -0
  127. data/lib/active_ldap.rb +978 -0
  128. data/lib/active_ldap/adapter/base.rb +512 -0
  129. data/lib/active_ldap/adapter/ldap.rb +233 -0
  130. data/lib/active_ldap/adapter/ldap_ext.rb +69 -0
  131. data/lib/active_ldap/adapter/net_ldap.rb +290 -0
  132. data/lib/active_ldap/adapter/net_ldap_ext.rb +29 -0
  133. data/lib/active_ldap/association/belongs_to.rb +47 -0
  134. data/lib/active_ldap/association/belongs_to_many.rb +42 -0
  135. data/lib/active_ldap/association/collection.rb +83 -0
  136. data/lib/active_ldap/association/has_many.rb +31 -0
  137. data/lib/active_ldap/association/has_many_utils.rb +35 -0
  138. data/lib/active_ldap/association/has_many_wrap.rb +46 -0
  139. data/lib/active_ldap/association/proxy.rb +102 -0
  140. data/lib/active_ldap/associations.rb +172 -0
  141. data/lib/active_ldap/attributes.rb +211 -0
  142. data/lib/active_ldap/base.rb +1256 -0
  143. data/lib/active_ldap/callbacks.rb +19 -0
  144. data/lib/active_ldap/command.rb +48 -0
  145. data/lib/active_ldap/configuration.rb +114 -0
  146. data/lib/active_ldap/connection.rb +234 -0
  147. data/lib/active_ldap/distinguished_name.rb +250 -0
  148. data/lib/active_ldap/escape.rb +12 -0
  149. data/lib/active_ldap/get_text/parser.rb +142 -0
  150. data/lib/active_ldap/get_text_fallback.rb +53 -0
  151. data/lib/active_ldap/get_text_support.rb +12 -0
  152. data/lib/active_ldap/helper.rb +23 -0
  153. data/lib/active_ldap/ldap_error.rb +74 -0
  154. data/lib/active_ldap/object_class.rb +93 -0
  155. data/lib/active_ldap/operations.rb +419 -0
  156. data/lib/active_ldap/populate.rb +44 -0
  157. data/lib/active_ldap/schema.rb +427 -0
  158. data/lib/active_ldap/timeout.rb +75 -0
  159. data/lib/active_ldap/timeout_stub.rb +17 -0
  160. data/lib/active_ldap/user_password.rb +93 -0
  161. data/lib/active_ldap/validations.rb +112 -0
  162. data/po/en/active-ldap.po +3011 -0
  163. data/po/ja/active-ldap.po +3044 -0
  164. data/rails/plugin/active_ldap/README +54 -0
  165. data/rails/plugin/active_ldap/generators/scaffold_al/scaffold_al_generator.rb +7 -0
  166. data/rails/plugin/active_ldap/generators/scaffold_al/templates/ldap.yml +21 -0
  167. data/rails/plugin/active_ldap/init.rb +19 -0
  168. data/test/al-test-utils.rb +362 -0
  169. data/test/command.rb +62 -0
  170. data/test/config.yaml.sample +6 -0
  171. data/test/run-test.rb +31 -0
  172. data/test/test-unit-ext.rb +4 -0
  173. data/test/test-unit-ext/always-show-result.rb +28 -0
  174. data/test/test-unit-ext/backtrace-filter.rb +17 -0
  175. data/test/test-unit-ext/long-display-for-emacs.rb +25 -0
  176. data/test/test-unit-ext/priority.rb +163 -0
  177. metadata +211 -4
@@ -0,0 +1,190 @@
1
+ # AL Admin's translated messages for Japanese.
2
+ # Copyright (C) 2007 Kouhei Sutou
3
+ # This file is distributed under the same license as the AL Admin package.
4
+ # Kouhei Sutou <kou@cozmixng.org>, 2007.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: AL Admin 0.8.3\n"
9
+ "POT-Creation-Date: 2007-08-24 22:25+0900\n"
10
+ "PO-Revision-Date: 2007-08-24 22:25+0900\n"
11
+ "Last-Translator: Kouhei Sutou <kou@cozmixng.org>\n"
12
+ "Language-Team: Japanese\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: app/models/ldap_user.rb:8
19
+ msgid "LdapUser|Password"
20
+ msgstr "パスワード"
21
+
22
+ #: app/models/ldap_user.rb:9
23
+ msgid "LdapUser|Password confirmation"
24
+ msgstr "確認用パスワード"
25
+
26
+ #: app/models/user.rb:-
27
+ msgid "User|Dn"
28
+ msgstr "DN"
29
+
30
+ #: app/models/user.rb:-
31
+ msgid "User|Login"
32
+ msgstr "ログイン名"
33
+
34
+ #: app/models/user.rb:-
35
+ msgid "User|Remember token"
36
+ msgstr "記憶トークン"
37
+
38
+ #: app/models/user.rb:-
39
+ msgid "User|Remember token expires at"
40
+ msgstr "記憶トークン失効時刻"
41
+
42
+ #: app/models/user.rb:-
43
+ msgid "User|Salt"
44
+ msgstr "サルト"
45
+
46
+ #: app/models/user.rb:-
47
+ msgid "User|Updated at"
48
+ msgstr "更新時刻"
49
+
50
+ #: app/models/entry.rb:17
51
+ msgid "disable saving"
52
+ msgstr "保存は禁止されています。"
53
+
54
+ #: app/models/entry.rb:-
55
+ msgid "entry"
56
+ msgstr "エントリ"
57
+
58
+ #: app/models/ldap_user.rb:-
59
+ msgid "ldap user"
60
+ msgstr "ユーザ"
61
+
62
+ #: app/models/user.rb:-
63
+ msgid "user"
64
+ msgstr "ユーザ"
65
+
66
+ #: app/controllers/account_controller.rb:22 lib/authenticated_system.rb:119
67
+ msgid "Logged in successfully"
68
+ msgstr "ログインに成功しました。"
69
+
70
+ #: app/controllers/account_controller.rb:24
71
+ msgid "Login or Password is incorrect"
72
+ msgstr "ログイン名またはパスワードが間違っています。"
73
+
74
+ #: app/controllers/account_controller.rb:36
75
+ msgid "Thanks for signing up!"
76
+ msgstr "登録ありがとうございます!"
77
+
78
+ #: app/controllers/account_controller.rb:47
79
+ msgid "You have been logged out."
80
+ msgstr "ログアウトしました。"
81
+
82
+ #: app/controllers/users_controller.rb:26
83
+ msgid "User was successfully updated."
84
+ msgstr "ユーザを正常に更新しました。"
85
+
86
+ #: app/controllers/directory_controller.rb:18
87
+ msgid "Populating is only for initialization"
88
+ msgstr "データ構築は初期化時のみ利用できます。"
89
+
90
+ #: app/views/layouts/application.rhtml:25
91
+ msgid "Top"
92
+ msgstr "トップ"
93
+
94
+ #: app/views/users/show.rhtml:3 app/views/users/edit.rhtml:10
95
+ msgid "Menu|Back"
96
+ msgstr "戻る"
97
+
98
+ #: app/views/users/_form.rhtml:6 app/views/account/sign_up.rhtml:7
99
+ #: app/views/account/login.rhtml:5
100
+ msgid "Password"
101
+ msgstr "パスワード"
102
+
103
+ #: app/views/users/_form.rhtml:13 app/views/account/sign_up.rhtml:10
104
+ msgid "Confirm Password"
105
+ msgstr "確認用パスワード"
106
+
107
+ #: app/views/users/edit.rhtml:5
108
+ msgid "Command|Update"
109
+ msgstr "更新"
110
+
111
+ #: app/views/users/edit.rhtml:9
112
+ msgid "Menu|Show"
113
+ msgstr "表示"
114
+
115
+ #: app/views/users/index.rhtml:2
116
+ msgid "No user."
117
+ msgstr "ユーザがいません。"
118
+
119
+ #: app/views/users/_object_class_information.rhtml:9
120
+ msgid "objectClass name"
121
+ msgstr "オブジェクトクラス名"
122
+
123
+ #: app/views/users/_object_class_information.rhtml:10
124
+ #: app/views/users/_attribute_information.rhtml:8
125
+ msgid "description"
126
+ msgstr "説明"
127
+
128
+ #: app/views/users/_attribute_information.rhtml:6
129
+ msgid "attribute name"
130
+ msgstr "属性名"
131
+
132
+ #: app/views/users/_attribute_information.rhtml:7
133
+ msgid "value"
134
+ msgstr "値"
135
+
136
+ #: app/views/welcome/index.rhtml:3
137
+ msgid "Menu|Users list"
138
+ msgstr "ユーザ一覧"
139
+
140
+ #: app/views/welcome/index.rhtml:4
141
+ msgid "Menu|Logout"
142
+ msgstr "ログアウト"
143
+
144
+ #: app/views/welcome/index.rhtml:5
145
+ msgid "Menu|Directory"
146
+ msgstr "ディレクトリ"
147
+
148
+ #: app/views/welcome/index.rhtml:7
149
+ msgid "Menu|Login"
150
+ msgstr "ログイン"
151
+
152
+ #: app/views/welcome/index.rhtml:8
153
+ msgid "Menu|Sign up"
154
+ msgstr "登録"
155
+
156
+ #: app/views/welcome/index.rhtml:12
157
+ msgid "Menu|Populate"
158
+ msgstr "構築"
159
+
160
+ #: app/views/welcome/index.rhtml:14
161
+ msgid "OK?"
162
+ msgstr "いいですか?"
163
+
164
+ #: app/views/account/sign_up.rhtml:4 app/views/account/login.rhtml:2
165
+ msgid "Login"
166
+ msgstr "ログイン名"
167
+
168
+ #: app/views/account/sign_up.rhtml:13 app/views/account/sign_up.rhtml:21
169
+ msgid "Sign up"
170
+ msgstr "登録"
171
+
172
+ #: app/views/account/login.rhtml:8
173
+ msgid "Remember me:"
174
+ msgstr "覚えておく:"
175
+
176
+ #: app/views/account/login.rhtml:11
177
+ msgid "Log in"
178
+ msgstr "ログイン"
179
+
180
+ #: app/views/directory/populate.rhtml:1
181
+ msgid "Done."
182
+ msgstr "完了。"
183
+
184
+ #: app/views/directory/populate.rhtml:2
185
+ msgid "Menu|Index"
186
+ msgstr "一覧"
187
+
188
+ #: lib/authenticated_system.rb:75
189
+ msgid "Please login."
190
+ msgstr "ログインしてください。"
@@ -0,0 +1,202 @@
1
+ # translation of al-admin.po to Nederlands
2
+ # Nederlands translations for AL Admin package.
3
+ # Copyright (C) 2007 Ace Suares
4
+ # This file is distributed under the same license as the AL Admin package.
5
+ #
6
+ # Ace Suares <ace@suares.an>, 2007.
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: AL Admin 0.8.3\n"
10
+ "POT-Creation-Date: 2007-08-24 22:25+0900\n"
11
+ "PO-Revision-Date: 2007-08-24 22:03+0900\n"
12
+ "Last-Translator: Ace Suares <ace@suares.an>\n"
13
+ "Language-Team: Nederlands <nl@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: KBabel 1.11.4\n"
19
+
20
+ #: app/models/ldap_user.rb:8
21
+ #, fuzzy
22
+ msgid "LdapUser|Password"
23
+ msgstr "Wachtwoord"
24
+
25
+ #: app/models/ldap_user.rb:9
26
+ msgid "LdapUser|Password confirmation"
27
+ msgstr ""
28
+
29
+ #: app/models/user.rb:-
30
+ msgid "User|Dn"
31
+ msgstr "DN"
32
+
33
+ #: app/models/user.rb:-
34
+ msgid "User|Login"
35
+ msgstr "Aanmelden"
36
+
37
+ #: app/models/user.rb:-
38
+ msgid "User|Remember token"
39
+ msgstr "Herkenningsteken"
40
+
41
+ #: app/models/user.rb:-
42
+ msgid "User|Remember token expires at"
43
+ msgstr "Herkenningsteken verloopt om"
44
+
45
+ #: app/models/user.rb:-
46
+ msgid "User|Salt"
47
+ msgstr "Zout"
48
+
49
+ #: app/models/user.rb:-
50
+ msgid "User|Updated at"
51
+ msgstr "Bijgewerkt om"
52
+
53
+ #: app/models/entry.rb:17
54
+ msgid "disable saving"
55
+ msgstr ""
56
+
57
+ #: app/models/entry.rb:-
58
+ msgid "entry"
59
+ msgstr ""
60
+
61
+ #: app/models/ldap_user.rb:-
62
+ msgid "ldap user"
63
+ msgstr "ldap gebruiker"
64
+
65
+ #: app/models/user.rb:-
66
+ msgid "user"
67
+ msgstr "gebruiker"
68
+
69
+ #: app/controllers/account_controller.rb:22 lib/authenticated_system.rb:119
70
+ msgid "Logged in successfully"
71
+ msgstr "Succesvol aangemeld"
72
+
73
+ #: app/controllers/account_controller.rb:24
74
+ msgid "Login or Password is incorrect"
75
+ msgstr "Gebruikersnaam of Wachtwoord incorrect"
76
+
77
+ #: app/controllers/account_controller.rb:36
78
+ msgid "Thanks for signing up!"
79
+ msgstr "Bedankt voor het inschrijven!"
80
+
81
+ #: app/controllers/account_controller.rb:47
82
+ msgid "You have been logged out."
83
+ msgstr "U bent afgemeld."
84
+
85
+ #: app/controllers/users_controller.rb:26
86
+ msgid "User was successfully updated."
87
+ msgstr "Gebruikersgegevens bijgewerkt."
88
+
89
+ #: app/controllers/directory_controller.rb:18
90
+ msgid "Populating is only for initialization"
91
+ msgstr ""
92
+
93
+ #: app/views/layouts/application.rhtml:25
94
+ msgid "Top"
95
+ msgstr "Naar boven"
96
+
97
+ #: app/views/users/show.rhtml:3 app/views/users/edit.rhtml:10
98
+ #, fuzzy
99
+ msgid "Menu|Back"
100
+ msgstr "Terug"
101
+
102
+ #: app/views/users/_form.rhtml:6 app/views/account/sign_up.rhtml:7
103
+ #: app/views/account/login.rhtml:5
104
+ msgid "Password"
105
+ msgstr "Wachtwoord"
106
+
107
+ #: app/views/users/_form.rhtml:13 app/views/account/sign_up.rhtml:10
108
+ msgid "Confirm Password"
109
+ msgstr "Bevestig Wachtwoord"
110
+
111
+ #: app/views/users/edit.rhtml:5
112
+ msgid "Command|Update"
113
+ msgstr ""
114
+
115
+ #: app/views/users/edit.rhtml:9
116
+ msgid "Menu|Show"
117
+ msgstr "Toon"
118
+
119
+ #: app/views/users/index.rhtml:2
120
+ msgid "No user."
121
+ msgstr "Geen gebruiker"
122
+
123
+ #: app/views/users/_object_class_information.rhtml:9
124
+ msgid "objectClass name"
125
+ msgstr ""
126
+
127
+ #: app/views/users/_object_class_information.rhtml:10
128
+ #: app/views/users/_attribute_information.rhtml:8
129
+ msgid "description"
130
+ msgstr "beschrijving"
131
+
132
+ #: app/views/users/_attribute_information.rhtml:6
133
+ msgid "attribute name"
134
+ msgstr "naam van het attribuut"
135
+
136
+ #: app/views/users/_attribute_information.rhtml:7
137
+ msgid "value"
138
+ msgstr "waarde"
139
+
140
+ #: app/views/welcome/index.rhtml:3
141
+ msgid "Menu|Users list"
142
+ msgstr "Gebruikerslijst"
143
+
144
+ #: app/views/welcome/index.rhtml:4
145
+ msgid "Menu|Logout"
146
+ msgstr "Afmelden"
147
+
148
+ #: app/views/welcome/index.rhtml:5
149
+ msgid "Menu|Directory"
150
+ msgstr ""
151
+
152
+ #: app/views/welcome/index.rhtml:7
153
+ msgid "Menu|Login"
154
+ msgstr "Aanmelden"
155
+
156
+ #: app/views/welcome/index.rhtml:8
157
+ msgid "Menu|Sign up"
158
+ msgstr "Inschrijven"
159
+
160
+ #: app/views/welcome/index.rhtml:12
161
+ #, fuzzy
162
+ msgid "Menu|Populate"
163
+ msgstr "Menu|Afmelden"
164
+
165
+ #: app/views/welcome/index.rhtml:14
166
+ msgid "OK?"
167
+ msgstr ""
168
+
169
+ #: app/views/account/sign_up.rhtml:4 app/views/account/login.rhtml:2
170
+ msgid "Login"
171
+ msgstr "Gebruikersnaam"
172
+
173
+ #: app/views/account/sign_up.rhtml:13 app/views/account/sign_up.rhtml:21
174
+ msgid "Sign up"
175
+ msgstr "inschrijven"
176
+
177
+ #: app/views/account/login.rhtml:8
178
+ msgid "Remember me:"
179
+ msgstr "Vergeet mij niet:"
180
+
181
+ #: app/views/account/login.rhtml:11
182
+ msgid "Log in"
183
+ msgstr "Aanmelden"
184
+
185
+ #: app/views/directory/populate.rhtml:1
186
+ msgid "Done."
187
+ msgstr ""
188
+
189
+ #: app/views/directory/populate.rhtml:2
190
+ #, fuzzy
191
+ msgid "Menu|Index"
192
+ msgstr "menu|Aanmelden"
193
+
194
+ #: lib/authenticated_system.rb:75
195
+ msgid "Please login."
196
+ msgstr ""
197
+
198
+ #~ msgid "Edit"
199
+ #~ msgstr "bewerken"
200
+
201
+ #~ msgid "Show"
202
+ #~ msgstr "Toon"
@@ -0,0 +1,40 @@
1
+ # General Apache options
2
+ AddHandler fastcgi-script .fcgi
3
+ AddHandler cgi-script .cgi
4
+ Options +FollowSymLinks +ExecCGI
5
+
6
+ # If you don't want Rails to look in certain directories,
7
+ # use the following rewrite rules so that Apache won't rewrite certain requests
8
+ #
9
+ # Example:
10
+ # RewriteCond %{REQUEST_URI} ^/notrails.*
11
+ # RewriteRule .* - [L]
12
+
13
+ # Redirect all requests not available on the filesystem to Rails
14
+ # By default the cgi dispatcher is used which is very slow
15
+ #
16
+ # For better performance replace the dispatcher with the fastcgi one
17
+ #
18
+ # Example:
19
+ # RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
20
+ RewriteEngine On
21
+
22
+ # If your Rails application is accessed via an Alias directive,
23
+ # then you MUST also set the RewriteBase in this htaccess file.
24
+ #
25
+ # Example:
26
+ # Alias /myrailsapp /path/to/myrailsapp/public
27
+ # RewriteBase /myrailsapp
28
+
29
+ RewriteRule ^$ index.html [QSA]
30
+ RewriteRule ^([^.]+)$ $1.html [QSA]
31
+ RewriteCond %{REQUEST_FILENAME} !-f
32
+ RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
33
+
34
+ # In case Rails experiences terminal errors
35
+ # Instead of displaying this message you can supply a file here which will be rendered instead
36
+ #
37
+ # Example:
38
+ # ErrorDocument 500 /500.html
39
+
40
+ ErrorDocument 500 "<h2>Application error</h2>Rails application failed to start properly"
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+
6
+ <head>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <title>The page you were looking for doesn't exist (404)</title>
9
+ <style type="text/css">
10
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
11
+ div.dialog {
12
+ width: 25em;
13
+ padding: 0 4em;
14
+ margin: 4em auto 0 auto;
15
+ border: 1px solid #ccc;
16
+ border-right-color: #999;
17
+ border-bottom-color: #999;
18
+ }
19
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <!-- This file lives in public/404.html -->
25
+ <div class="dialog">
26
+ <h1>The page you were looking for doesn't exist.</h1>
27
+ <p>You may have mistyped the address or the page may have moved.</p>
28
+ </div>
29
+ </body>
30
+ </html>