forgeos_core 1.9.2 → 1.9.3

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 (94) hide show
  1. data/README.textile +1 -23
  2. data/app/assets/javascripts/forgeos/admin/customselects.js +2 -0
  3. data/app/assets/javascripts/forgeos/admin/functions/forgeos_core/overlay.js +22 -3
  4. data/app/assets/javascripts/forgeos/admin/functions/forgeos_core/tinyMCE.js +1 -1
  5. data/app/assets/javascripts/forgeos/admin/functions/forgeos_core/uploads.js +55 -0
  6. data/app/assets/javascripts/forgeos/admin/functions/forgeos_core/visual.js +3 -3
  7. data/app/assets/javascripts/forgeos/admin/inits/forgeos_core/overlays.js +4 -46
  8. data/app/assets/javascripts/forgeos/admin/inits/forgeos_core/visual.js +17 -57
  9. data/app/assets/stylesheets/forgeos/960.css.sass +1 -125
  10. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_attachments.css.sass +13 -4
  11. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_content.css.sass +7 -2
  12. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_customer.css.sass +18 -5
  13. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_dashboard.css.sass +38 -16
  14. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_datatable.css.sass +32 -13
  15. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_generals.css.sass +75 -39
  16. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_icons.css.sass +130 -16
  17. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_lightbox.css.sass +21 -18
  18. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_notifications.css.sass +0 -1
  19. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_payment.css.sass +1 -1
  20. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_rightSidebar.css.sass +14 -14
  21. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_roles.css.sass +1 -1
  22. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_search.css.sass +6 -5
  23. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_settings.css.sass +1 -3
  24. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_sidebar.css.sass +11 -3
  25. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_uploadify.css.sass +10 -8
  26. data/app/assets/stylesheets/forgeos/admin/forgeos_core/_visuals.css.sass +12 -12
  27. data/app/assets/stylesheets/forgeos/admin/login.css.sass +30 -14
  28. data/app/assets/stylesheets/forgeos/jquery-ui/themes/forgeos.css.sass +96 -733
  29. data/app/assets/stylesheets/forgeos/jstree/themes/categories/style.css.sass +12 -18
  30. data/app/controllers/admin/administrators_controller.rb +2 -2
  31. data/app/controllers/admin/attachments_controller.rb +3 -3
  32. data/app/controllers/admin/categories_controller.rb +1 -1
  33. data/app/controllers/admin/person_sessions_controller.rb +1 -1
  34. data/app/controllers/admin/rights_controller.rb +2 -2
  35. data/app/controllers/admin/roles_controller.rb +3 -3
  36. data/app/controllers/admin/users_controller.rb +2 -2
  37. data/app/controllers/forgeos/application_controller.rb +1 -1
  38. data/app/models/category.rb +7 -3
  39. data/app/models/right.rb +1 -1
  40. data/app/models/role.rb +1 -1
  41. data/app/models/user.rb +6 -3
  42. data/app/views/admin/administrators/index.json.erb +3 -1
  43. data/app/views/admin/attachments/_attachments_popup.html.haml +4 -4
  44. data/app/views/admin/attachments/_form.html.haml +1 -1
  45. data/app/views/admin/attachments/_tabs.html.haml +1 -1
  46. data/app/views/admin/attachments/index.json.erb +4 -2
  47. data/app/views/admin/attachments/show.html.haml +1 -1
  48. data/app/views/admin/cachings/index.html.haml +2 -2
  49. data/app/views/admin/categories/index.json.erb +3 -1
  50. data/app/views/admin/import/_tabs.html.haml +1 -0
  51. data/app/views/admin/import/index.html.haml +1 -1
  52. data/app/views/admin/rights/_tabs.html.haml +1 -0
  53. data/app/views/admin/rights/index.json.erb +7 -5
  54. data/app/views/admin/roles/_tabs.html.haml +1 -0
  55. data/app/views/admin/roles/index.json.erb +5 -3
  56. data/app/views/admin/sidebars/_attachments_popups.html.haml +7 -76
  57. data/app/views/admin/users/index.json.erb +3 -1
  58. data/app/views/admin/visual/_visual_popup.html.haml +18 -107
  59. data/app/views/admin/visual/_visuals_popup.html.haml +7 -47
  60. data/app/views/layouts/admin.html.haml +2 -2
  61. data/app/views/layouts/admin_login.html.haml +2 -2
  62. data/config/locales/common/en.yml +1 -0
  63. data/config/locales/common/fr.yml +1 -0
  64. data/config/routes.rb +12 -1
  65. data/lib/forgeos/urlified.rb +16 -0
  66. data/lib/tasks/install.rake +3 -3
  67. data/lib/technoweenie/attachment_fu/backends/ftp_backend.rb +8 -12
  68. data/recipes/db.rb +1 -1
  69. metadata +52 -57
  70. data/app/controllers/admin/base_controller.rbc +0 -1305
  71. data/app/controllers/admin/dashboard_controller.rbc +0 -361
  72. data/app/controllers/admin/person_sessions_controller.rbc +0 -1248
  73. data/app/controllers/forgeos/application_controller.rbc +0 -2027
  74. data/app/helpers/admin/attachment_helper.rbc +0 -2340
  75. data/app/helpers/admin/base_helper.rbc +0 -2522
  76. data/app/helpers/forgeos/application_helper.rbc +0 -3152
  77. data/app/models/administrator.rbc +0 -415
  78. data/app/models/person.rbc +0 -1498
  79. data/app/models/person_session.rbc +0 -142
  80. data/app/models/right.rbc +0 -432
  81. data/app/models/role.rbc +0 -469
  82. data/app/models/setting.rbc +0 -699
  83. data/config/initializers/load_settings.rbc +0 -330
  84. data/config/routes.rbc +0 -2203
  85. data/lib/extensions.rbc +0 -126
  86. data/lib/extensions/form_helper_extensions.rbc +0 -295
  87. data/lib/extensions/i18n_fallbacks_config.rbc +0 -246
  88. data/lib/forgeos.rbc +0 -1942
  89. data/lib/forgeos/core.rbc +0 -325
  90. data/lib/forgeos/core/engine.rbc +0 -316
  91. data/lib/forgeos_core.rbc +0 -53
  92. data/lib/map_fields.rbc +0 -4437
  93. data/lib/sortable_attachments.rbc +0 -1399
  94. data/lib/sphinx_globalize.rbc +0 -785
@@ -1,361 +0,0 @@
1
- !RBIX
2
- 5362583714419577066
3
- x
4
- M
5
- 1
6
- n
7
- n
8
- x
9
- 10
10
- __script__
11
- i
12
- 35
13
- 99
14
- 7
15
- 0
16
- 45
17
- 1
18
- 2
19
- 43
20
- 3
21
- 45
22
- 1
23
- 4
24
- 49
25
- 5
26
- 3
27
- 13
28
- 99
29
- 12
30
- 7
31
- 6
32
- 12
33
- 7
34
- 7
35
- 12
36
- 65
37
- 12
38
- 49
39
- 8
40
- 4
41
- 15
42
- 49
43
- 6
44
- 0
45
- 15
46
- 2
47
- 11
48
- I
49
- 6
50
- I
51
- 0
52
- I
53
- 0
54
- I
55
- 0
56
- n
57
- p
58
- 9
59
- x
60
- 19
61
- DashboardController
62
- x
63
- 5
64
- Admin
65
- n
66
- x
67
- 14
68
- BaseController
69
- n
70
- x
71
- 16
72
- open_class_under
73
- x
74
- 14
75
- __class_init__
76
- M
77
- 1
78
- n
79
- n
80
- x
81
- 19
82
- DashboardController
83
- i
84
- 30
85
- 5
86
- 66
87
- 99
88
- 7
89
- 0
90
- 7
91
- 1
92
- 65
93
- 67
94
- 49
95
- 2
96
- 0
97
- 49
98
- 3
99
- 4
100
- 15
101
- 99
102
- 7
103
- 4
104
- 7
105
- 5
106
- 65
107
- 67
108
- 49
109
- 2
110
- 0
111
- 49
112
- 3
113
- 4
114
- 11
115
- I
116
- 5
117
- I
118
- 0
119
- I
120
- 0
121
- I
122
- 0
123
- n
124
- p
125
- 6
126
- x
127
- 5
128
- index
129
- M
130
- 1
131
- n
132
- n
133
- x
134
- 5
135
- index
136
- i
137
- 2
138
- 1
139
- 11
140
- I
141
- 1
142
- I
143
- 0
144
- I
145
- 0
146
- I
147
- 0
148
- n
149
- p
150
- 0
151
- p
152
- 3
153
- I
154
- -1
155
- I
156
- 2
157
- I
158
- 2
159
- x
160
- 99
161
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/dashboard_controller.rb
162
- p
163
- 0
164
- x
165
- 17
166
- method_visibility
167
- x
168
- 15
169
- add_defn_method
170
- x
171
- 11
172
- change_lang
173
- M
174
- 1
175
- n
176
- n
177
- x
178
- 11
179
- change_lang
180
- i
181
- 69
182
- 5
183
- 48
184
- 0
185
- 7
186
- 1
187
- 49
188
- 2
189
- 1
190
- 13
191
- 9
192
- 32
193
- 15
194
- 45
195
- 3
196
- 4
197
- 49
198
- 5
199
- 0
200
- 5
201
- 48
202
- 0
203
- 7
204
- 1
205
- 49
206
- 2
207
- 1
208
- 49
209
- 6
210
- 0
211
- 49
212
- 7
213
- 1
214
- 9
215
- 59
216
- 5
217
- 48
218
- 8
219
- 7
220
- 1
221
- 5
222
- 48
223
- 0
224
- 7
225
- 1
226
- 49
227
- 2
228
- 1
229
- 49
230
- 6
231
- 0
232
- 13
233
- 18
234
- 3
235
- 49
236
- 9
237
- 2
238
- 15
239
- 8
240
- 60
241
- 1
242
- 15
243
- 5
244
- 7
245
- 10
246
- 47
247
- 49
248
- 11
249
- 1
250
- 11
251
- I
252
- 4
253
- I
254
- 0
255
- I
256
- 0
257
- I
258
- 0
259
- n
260
- p
261
- 12
262
- x
263
- 6
264
- params
265
- x
266
- 4
267
- lang
268
- x
269
- 2
270
- []
271
- x
272
- 4
273
- I18n
274
- n
275
- x
276
- 17
277
- available_locales
278
- x
279
- 6
280
- to_sym
281
- x
282
- 8
283
- include?
284
- x
285
- 7
286
- session
287
- x
288
- 3
289
- []=
290
- x
291
- 4
292
- back
293
- x
294
- 11
295
- redirect_to
296
- p
297
- 13
298
- I
299
- -1
300
- I
301
- 4
302
- I
303
- 0
304
- I
305
- 5
306
- I
307
- 22
308
- I
309
- 6
310
- I
311
- 3b
312
- I
313
- 5
314
- I
315
- 3c
316
- I
317
- 0
318
- I
319
- 3d
320
- I
321
- 8
322
- I
323
- 45
324
- x
325
- 99
326
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/dashboard_controller.rb
327
- p
328
- 0
329
- p
330
- 5
331
- I
332
- 2
333
- I
334
- 2
335
- I
336
- 10
337
- I
338
- 4
339
- I
340
- 1e
341
- x
342
- 99
343
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/dashboard_controller.rb
344
- p
345
- 0
346
- x
347
- 13
348
- attach_method
349
- p
350
- 3
351
- I
352
- 0
353
- I
354
- 1
355
- I
356
- 23
357
- x
358
- 99
359
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/dashboard_controller.rb
360
- p
361
- 0
@@ -1,1248 +0,0 @@
1
- !RBIX
2
- 5362583714419577066
3
- x
4
- M
5
- 1
6
- n
7
- n
8
- x
9
- 10
10
- __script__
11
- i
12
- 35
13
- 99
14
- 7
15
- 0
16
- 45
17
- 1
18
- 2
19
- 43
20
- 3
21
- 45
22
- 1
23
- 4
24
- 49
25
- 5
26
- 3
27
- 13
28
- 99
29
- 12
30
- 7
31
- 6
32
- 12
33
- 7
34
- 7
35
- 12
36
- 65
37
- 12
38
- 49
39
- 8
40
- 4
41
- 15
42
- 49
43
- 6
44
- 0
45
- 15
46
- 2
47
- 11
48
- I
49
- 6
50
- I
51
- 0
52
- I
53
- 0
54
- I
55
- 0
56
- n
57
- p
58
- 9
59
- x
60
- 24
61
- PersonSessionsController
62
- x
63
- 5
64
- Admin
65
- n
66
- x
67
- 14
68
- BaseController
69
- n
70
- x
71
- 16
72
- open_class_under
73
- x
74
- 14
75
- __class_init__
76
- M
77
- 1
78
- n
79
- n
80
- x
81
- 24
82
- PersonSessionsController
83
- i
84
- 119
85
- 5
86
- 66
87
- 5
88
- 7
89
- 0
90
- 64
91
- 47
92
- 49
93
- 1
94
- 1
95
- 15
96
- 5
97
- 7
98
- 2
99
- 44
100
- 43
101
- 3
102
- 79
103
- 49
104
- 4
105
- 1
106
- 13
107
- 7
108
- 5
109
- 7
110
- 6
111
- 7
112
- 7
113
- 7
114
- 8
115
- 7
116
- 9
117
- 7
118
- 10
119
- 35
120
- 5
121
- 49
122
- 11
123
- 2
124
- 15
125
- 47
126
- 49
127
- 12
128
- 2
129
- 15
130
- 99
131
- 7
132
- 7
133
- 7
134
- 13
135
- 65
136
- 67
137
- 49
138
- 14
139
- 0
140
- 49
141
- 15
142
- 4
143
- 15
144
- 99
145
- 7
146
- 8
147
- 7
148
- 16
149
- 65
150
- 67
151
- 49
152
- 14
153
- 0
154
- 49
155
- 15
156
- 4
157
- 15
158
- 99
159
- 7
160
- 6
161
- 7
162
- 17
163
- 65
164
- 67
165
- 49
166
- 14
167
- 0
168
- 49
169
- 15
170
- 4
171
- 15
172
- 99
173
- 7
174
- 9
175
- 7
176
- 18
177
- 65
178
- 67
179
- 49
180
- 14
181
- 0
182
- 49
183
- 15
184
- 4
185
- 15
186
- 5
187
- 48
188
- 19
189
- 15
190
- 99
191
- 7
192
- 20
193
- 7
194
- 21
195
- 65
196
- 67
197
- 49
198
- 14
199
- 0
200
- 49
201
- 15
202
- 4
203
- 11
204
- I
205
- a
206
- I
207
- 0
208
- I
209
- 0
210
- I
211
- 0
212
- n
213
- p
214
- 22
215
- s
216
- 11
217
- admin_login
218
- x
219
- 6
220
- layout
221
- x
222
- 14
223
- login_required
224
- x
225
- 4
226
- Hash
227
- x
228
- 16
229
- new_from_literal
230
- x
231
- 4
232
- only
233
- x
234
- 7
235
- destroy
236
- x
237
- 3
238
- new
239
- x
240
- 6
241
- create
242
- x
243
- 14
244
- reset_password
245
- x
246
- 20
247
- reset_admin_password
248
- x
249
- 3
250
- []=
251
- x
252
- 18
253
- skip_before_filter
254
- M
255
- 1
256
- n
257
- n
258
- x
259
- 3
260
- new
261
- i
262
- 27
263
- 45
264
- 0
265
- 1
266
- 13
267
- 71
268
- 2
269
- 47
270
- 9
271
- 21
272
- 47
273
- 49
274
- 3
275
- 0
276
- 13
277
- 47
278
- 49
279
- 4
280
- 0
281
- 15
282
- 8
283
- 24
284
- 49
285
- 2
286
- 0
287
- 38
288
- 5
289
- 11
290
- I
291
- 2
292
- I
293
- 0
294
- I
295
- 0
296
- I
297
- 0
298
- n
299
- p
300
- 6
301
- x
302
- 13
303
- PersonSession
304
- n
305
- x
306
- 3
307
- new
308
- x
309
- 8
310
- allocate
311
- x
312
- 10
313
- initialize
314
- x
315
- 15
316
- @person_session
317
- p
318
- 5
319
- I
320
- -1
321
- I
322
- 5
323
- I
324
- 0
325
- I
326
- 6
327
- I
328
- 1b
329
- x
330
- 105
331
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/person_sessions_controller.rb
332
- p
333
- 0
334
- x
335
- 17
336
- method_visibility
337
- x
338
- 15
339
- add_defn_method
340
- M
341
- 1
342
- n
343
- n
344
- x
345
- 6
346
- create
347
- i
348
- 107
349
- 45
350
- 0
351
- 1
352
- 13
353
- 71
354
- 2
355
- 47
356
- 9
357
- 29
358
- 47
359
- 49
360
- 3
361
- 0
362
- 13
363
- 5
364
- 48
365
- 4
366
- 7
367
- 5
368
- 49
369
- 6
370
- 1
371
- 47
372
- 49
373
- 7
374
- 1
375
- 15
376
- 8
377
- 40
378
- 5
379
- 48
380
- 4
381
- 7
382
- 5
383
- 49
384
- 6
385
- 1
386
- 49
387
- 2
388
- 1
389
- 38
390
- 8
391
- 15
392
- 39
393
- 8
394
- 49
395
- 9
396
- 0
397
- 9
398
- 75
399
- 5
400
- 48
401
- 10
402
- 7
403
- 11
404
- 5
405
- 7
406
- 12
407
- 64
408
- 47
409
- 49
410
- 13
411
- 1
412
- 49
413
- 14
414
- 0
415
- 13
416
- 18
417
- 3
418
- 49
419
- 15
420
- 2
421
- 15
422
- 8
423
- 98
424
- 5
425
- 48
426
- 10
427
- 7
428
- 16
429
- 5
430
- 7
431
- 17
432
- 64
433
- 47
434
- 49
435
- 13
436
- 1
437
- 49
438
- 14
439
- 0
440
- 13
441
- 18
442
- 3
443
- 49
444
- 15
445
- 2
446
- 15
447
- 15
448
- 5
449
- 7
450
- 18
451
- 47
452
- 49
453
- 19
454
- 1
455
- 11
456
- I
457
- 4
458
- I
459
- 0
460
- I
461
- 0
462
- I
463
- 0
464
- n
465
- p
466
- 20
467
- x
468
- 13
469
- PersonSession
470
- n
471
- x
472
- 3
473
- new
474
- x
475
- 8
476
- allocate
477
- x
478
- 6
479
- params
480
- x
481
- 14
482
- person_session
483
- x
484
- 2
485
- []
486
- x
487
- 10
488
- initialize
489
- x
490
- 15
491
- @person_session
492
- x
493
- 4
494
- save
495
- x
496
- 5
497
- flash
498
- x
499
- 6
500
- notice
501
- s
502
- 14
503
- log.in.success
504
- x
505
- 1
506
- t
507
- x
508
- 10
509
- capitalize
510
- x
511
- 3
512
- []=
513
- x
514
- 5
515
- error
516
- s
517
- 13
518
- log.in.failed
519
- x
520
- 10
521
- admin_root
522
- x
523
- 27
524
- redirect_to_stored_location
525
- p
526
- 15
527
- I
528
- -1
529
- I
530
- 9
531
- I
532
- 0
533
- I
534
- a
535
- I
536
- 2b
537
- I
538
- b
539
- I
540
- 32
541
- I
542
- c
543
- I
544
- 4b
545
- I
546
- e
547
- I
548
- 62
549
- I
550
- 0
551
- I
552
- 63
553
- I
554
- 11
555
- I
556
- 6b
557
- x
558
- 105
559
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/person_sessions_controller.rb
560
- p
561
- 0
562
- M
563
- 1
564
- n
565
- n
566
- x
567
- 7
568
- destroy
569
- i
570
- 31
571
- 5
572
- 48
573
- 0
574
- 49
575
- 1
576
- 0
577
- 15
578
- 5
579
- 48
580
- 2
581
- 7
582
- 3
583
- 5
584
- 7
585
- 4
586
- 64
587
- 47
588
- 49
589
- 5
590
- 1
591
- 49
592
- 6
593
- 0
594
- 13
595
- 18
596
- 3
597
- 49
598
- 7
599
- 2
600
- 15
601
- 11
602
- I
603
- 4
604
- I
605
- 0
606
- I
607
- 0
608
- I
609
- 0
610
- n
611
- p
612
- 8
613
- x
614
- 20
615
- current_user_session
616
- x
617
- 7
618
- destroy
619
- x
620
- 5
621
- flash
622
- x
623
- 6
624
- notice
625
- s
626
- 15
627
- log.out.success
628
- x
629
- 1
630
- t
631
- x
632
- 10
633
- capitalize
634
- x
635
- 3
636
- []=
637
- p
638
- 7
639
- I
640
- -1
641
- I
642
- 14
643
- I
644
- 0
645
- I
646
- 15
647
- I
648
- 7
649
- I
650
- 16
651
- I
652
- 1f
653
- x
654
- 105
655
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/person_sessions_controller.rb
656
- p
657
- 0
658
- M
659
- 1
660
- n
661
- n
662
- x
663
- 14
664
- reset_password
665
- i
666
- 171
667
- 45
668
- 0
669
- 1
670
- 5
671
- 48
672
- 2
673
- 7
674
- 3
675
- 49
676
- 4
677
- 1
678
- 49
679
- 5
680
- 1
681
- 19
682
- 0
683
- 15
684
- 20
685
- 0
686
- 9
687
- 124
688
- 5
689
- 4
690
- 8
691
- 47
692
- 49
693
- 6
694
- 1
695
- 19
696
- 1
697
- 15
698
- 20
699
- 0
700
- 44
701
- 43
702
- 7
703
- 80
704
- 49
705
- 8
706
- 1
707
- 13
708
- 7
709
- 9
710
- 20
711
- 1
712
- 49
713
- 10
714
- 2
715
- 15
716
- 13
717
- 7
718
- 11
719
- 20
720
- 1
721
- 49
722
- 10
723
- 2
724
- 15
725
- 49
726
- 12
727
- 1
728
- 9
729
- 99
730
- 45
731
- 13
732
- 14
733
- 20
734
- 0
735
- 20
736
- 1
737
- 49
738
- 15
739
- 2
740
- 15
741
- 5
742
- 48
743
- 16
744
- 7
745
- 17
746
- 5
747
- 7
748
- 18
749
- 64
750
- 47
751
- 49
752
- 19
753
- 1
754
- 49
755
- 20
756
- 0
757
- 13
758
- 18
759
- 3
760
- 49
761
- 10
762
- 2
763
- 15
764
- 8
765
- 122
766
- 5
767
- 48
768
- 16
769
- 7
770
- 21
771
- 5
772
- 7
773
- 22
774
- 64
775
- 47
776
- 49
777
- 19
778
- 1
779
- 49
780
- 20
781
- 0
782
- 13
783
- 18
784
- 3
785
- 49
786
- 10
787
- 2
788
- 15
789
- 8
790
- 147
791
- 5
792
- 48
793
- 16
794
- 7
795
- 21
796
- 5
797
- 7
798
- 23
799
- 64
800
- 47
801
- 49
802
- 19
803
- 1
804
- 49
805
- 20
806
- 0
807
- 13
808
- 18
809
- 3
810
- 49
811
- 10
812
- 2
813
- 15
814
- 15
815
- 5
816
- 44
817
- 43
818
- 7
819
- 79
820
- 49
821
- 8
822
- 1
823
- 13
824
- 7
825
- 24
826
- 7
827
- 25
828
- 64
829
- 49
830
- 10
831
- 2
832
- 15
833
- 47
834
- 49
835
- 26
836
- 1
837
- 11
838
- I
839
- 7
840
- I
841
- 2
842
- I
843
- 0
844
- I
845
- 0
846
- n
847
- p
848
- 27
849
- x
850
- 13
851
- Administrator
852
- n
853
- x
854
- 6
855
- params
856
- x
857
- 5
858
- email
859
- x
860
- 2
861
- []
862
- x
863
- 13
864
- find_by_email
865
- x
866
- 17
867
- generate_password
868
- x
869
- 4
870
- Hash
871
- x
872
- 16
873
- new_from_literal
874
- x
875
- 8
876
- password
877
- x
878
- 3
879
- []=
880
- x
881
- 21
882
- password_confirmation
883
- x
884
- 17
885
- update_attributes
886
- x
887
- 12
888
- UserNotifier
889
- n
890
- x
891
- 22
892
- deliver_reset_password
893
- x
894
- 5
895
- flash
896
- x
897
- 6
898
- notice
899
- s
900
- 28
901
- admin.reset_password.success
902
- x
903
- 1
904
- t
905
- x
906
- 10
907
- capitalize
908
- x
909
- 5
910
- error
911
- s
912
- 27
913
- admin.reset_password.failed
914
- s
915
- 15
916
- admin.not_exist
917
- x
918
- 6
919
- action
920
- s
921
- 3
922
- new
923
- x
924
- 11
925
- redirect_to
926
- p
927
- 25
928
- I
929
- -1
930
- I
931
- 19
932
- I
933
- 0
934
- I
935
- 1a
936
- I
937
- 11
938
- I
939
- 1b
940
- I
941
- 15
942
- I
943
- 1c
944
- I
945
- 1f
946
- I
947
- 1d
948
- I
949
- 3f
950
- I
951
- 1e
952
- I
953
- 4a
954
- I
955
- 1f
956
- I
957
- 63
958
- I
959
- 21
960
- I
961
- 7a
962
- I
963
- 0
964
- I
965
- 7c
966
- I
967
- 24
968
- I
969
- 93
970
- I
971
- 0
972
- I
973
- 94
974
- I
975
- 26
976
- I
977
- ab
978
- x
979
- 105
980
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/person_sessions_controller.rb
981
- p
982
- 2
983
- x
984
- 4
985
- user
986
- x
987
- 18
988
- generated_password
989
- x
990
- 7
991
- private
992
- x
993
- 17
994
- generate_password
995
- M
996
- 1
997
- n
998
- n
999
- x
1000
- 17
1001
- generate_password
1002
- i
1003
- 18
1004
- 7
1005
- 0
1006
- 64
1007
- 19
1008
- 1
1009
- 15
1010
- 20
1011
- 0
1012
- 56
1013
- 1
1014
- 50
1015
- 2
1016
- 0
1017
- 15
1018
- 20
1019
- 1
1020
- 11
1021
- 11
1022
- I
1023
- 4
1024
- I
1025
- 2
1026
- I
1027
- 1
1028
- I
1029
- 1
1030
- n
1031
- p
1032
- 3
1033
- s
1034
- 0
1035
-
1036
- M
1037
- 1
1038
- p
1039
- 2
1040
- x
1041
- 9
1042
- for_block
1043
- t
1044
- n
1045
- x
1046
- 17
1047
- generate_password
1048
- i
1049
- 53
1050
- 21
1051
- 1
1052
- 1
1053
- 45
1054
- 0
1055
- 1
1056
- 4
1057
- 62
1058
- 49
1059
- 2
1060
- 1
1061
- 19
1062
- 0
1063
- 15
1064
- 20
1065
- 0
1066
- 20
1067
- 0
1068
- 4
1069
- 10
1070
- 84
1071
- 3
1072
- 9
1073
- 28
1074
- 4
1075
- 48
1076
- 8
1077
- 42
1078
- 20
1079
- 0
1080
- 4
1081
- 36
1082
- 84
1083
- 3
1084
- 9
1085
- 40
1086
- 4
1087
- 55
1088
- 8
1089
- 42
1090
- 4
1091
- 61
1092
- 81
1093
- 4
1094
- 19
1095
- 0
1096
- 49
1097
- 5
1098
- 0
1099
- 49
1100
- 6
1101
- 1
1102
- 11
1103
- I
1104
- 6
1105
- I
1106
- 1
1107
- I
1108
- 0
1109
- I
1110
- 0
1111
- I
1112
- -2
1113
- p
1114
- 7
1115
- x
1116
- 6
1117
- Kernel
1118
- n
1119
- x
1120
- 4
1121
- rand
1122
- x
1123
- 1
1124
- <
1125
- x
1126
- 1
1127
- +
1128
- x
1129
- 3
1130
- chr
1131
- x
1132
- 2
1133
- <<
1134
- p
1135
- 7
1136
- I
1137
- 0
1138
- I
1139
- 2c
1140
- I
1141
- 2a
1142
- I
1143
- 0
1144
- I
1145
- 2c
1146
- I
1147
- 2c
1148
- I
1149
- 35
1150
- x
1151
- 105
1152
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/person_sessions_controller.rb
1153
- p
1154
- 1
1155
- x
1156
- 1
1157
- i
1158
- x
1159
- 5
1160
- times
1161
- p
1162
- 9
1163
- I
1164
- -1
1165
- I
1166
- 2a
1167
- I
1168
- 0
1169
- I
1170
- 2b
1171
- I
1172
- 6
1173
- I
1174
- 2c
1175
- I
1176
- e
1177
- I
1178
- 2d
1179
- I
1180
- 12
1181
- x
1182
- 105
1183
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/person_sessions_controller.rb
1184
- p
1185
- 2
1186
- x
1187
- 4
1188
- size
1189
- x
1190
- 1
1191
- s
1192
- p
1193
- 17
1194
- I
1195
- 2
1196
- I
1197
- 3
1198
- I
1199
- b
1200
- I
1201
- 4
1202
- I
1203
- 2d
1204
- I
1205
- 5
1206
- I
1207
- 3b
1208
- I
1209
- 9
1210
- I
1211
- 49
1212
- I
1213
- 14
1214
- I
1215
- 57
1216
- I
1217
- 19
1218
- I
1219
- 65
1220
- I
1221
- 29
1222
- I
1223
- 69
1224
- I
1225
- 2a
1226
- I
1227
- 77
1228
- x
1229
- 105
1230
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/person_sessions_controller.rb
1231
- p
1232
- 0
1233
- x
1234
- 13
1235
- attach_method
1236
- p
1237
- 3
1238
- I
1239
- 0
1240
- I
1241
- 2
1242
- I
1243
- 23
1244
- x
1245
- 105
1246
- /home/cyrill62/Sites/fcorer3/vendor/gems/forgeos_core/app/controllers/admin/person_sessions_controller.rb
1247
- p
1248
- 0