adherent 0.2.8 → 0.2.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/adherent/application.js +1 -0
  3. data/app/assets/javascripts/adherent/datatableinit.js +125 -0
  4. data/app/assets/javascripts/adherent/members.js +1 -96
  5. data/app/assets/stylesheets/adherent/print.css.scss +1 -1
  6. data/app/models/adherent/query_member.rb +3 -3
  7. data/app/views/adherent/members/index.html.erb +1 -1
  8. data/lib/adherent/version.rb +2 -1
  9. data/spec/dummy/log/development.log +730 -0
  10. data/spec/dummy/log/test.log +30168 -0
  11. data/spec/dummy/tmp/cache/assets/development/sass/be6a31d2c99b18f66f4f3f1b46bb0b8c5ef54ab1/print.css.scssc +0 -0
  12. data/spec/dummy/tmp/cache/assets/development/sprockets/0d215f323ff7a120168496bc58ed75a3 +0 -0
  13. data/spec/dummy/tmp/cache/assets/development/sprockets/20a218b05c2726d14bd025c36ba31ddd +0 -0
  14. data/spec/dummy/tmp/cache/assets/development/sprockets/22948c5cb4a59a4c252888f75cdf387a +0 -0
  15. data/spec/dummy/tmp/cache/assets/development/sprockets/2c60d0f2e80cc940437007413465285a +0 -0
  16. data/spec/dummy/tmp/cache/assets/development/sprockets/3f2a439772fcd9cd0f434f723837ae51 +0 -0
  17. data/spec/dummy/tmp/cache/assets/development/sprockets/7566b213016e5bc90381985bbae7e445 +0 -0
  18. data/spec/dummy/tmp/cache/assets/development/sprockets/850d92cf676cc2c2c662ee8dc328f82c +0 -0
  19. data/spec/dummy/tmp/cache/assets/development/sprockets/8e3cd5dcbc6987a1bab580133dd4091a +0 -0
  20. data/spec/dummy/tmp/cache/assets/development/sprockets/992d715e0153da278420d380aa63b412 +0 -0
  21. data/spec/dummy/tmp/cache/assets/development/sprockets/c35251b000451b1b9f7274e0ae471704 +0 -0
  22. data/spec/dummy/tmp/cache/assets/development/sprockets/d27d4e6bd84d0108fc54a21959181335 +0 -0
  23. data/spec/dummy/tmp/cache/assets/development/sprockets/d88c0d3362ebdb47849b797a3ec1b355 +0 -0
  24. data/spec/dummy/tmp/cache/assets/development/sprockets/dce67637c5015fb918e48897a4e6c96a +0 -0
  25. data/spec/dummy/tmp/cache/assets/development/sprockets/e17667e7004e5cfc7f733b8762f47c3f +0 -0
  26. data/spec/dummy/tmp/cache/assets/development/sprockets/fca89522784c8592001dc314a2361344 +0 -0
  27. data/spec/dummy/tmp/cache/assets/test/sass/be6a31d2c99b18f66f4f3f1b46bb0b8c5ef54ab1/print.css.scssc +0 -0
  28. data/spec/dummy/tmp/cache/assets/test/sprockets/20a218b05c2726d14bd025c36ba31ddd +0 -0
  29. data/spec/dummy/tmp/cache/assets/test/sprockets/22948c5cb4a59a4c252888f75cdf387a +0 -0
  30. data/spec/dummy/tmp/cache/assets/test/sprockets/3f2a439772fcd9cd0f434f723837ae51 +0 -0
  31. data/spec/dummy/tmp/cache/assets/test/sprockets/850d92cf676cc2c2c662ee8dc328f82c +0 -0
  32. data/spec/dummy/tmp/cache/assets/test/sprockets/8e3cd5dcbc6987a1bab580133dd4091a +0 -0
  33. data/spec/dummy/tmp/cache/assets/test/sprockets/992d715e0153da278420d380aa63b412 +0 -0
  34. data/spec/dummy/tmp/cache/assets/test/sprockets/c35251b000451b1b9f7274e0ae471704 +0 -0
  35. data/spec/dummy/tmp/cache/assets/test/sprockets/d27d4e6bd84d0108fc54a21959181335 +0 -0
  36. data/spec/dummy/tmp/cache/assets/test/sprockets/d88c0d3362ebdb47849b797a3ec1b355 +0 -0
  37. data/spec/dummy/tmp/cache/assets/test/sprockets/dce67637c5015fb918e48897a4e6c96a +0 -0
  38. data/spec/dummy/tmp/cache/assets/test/sprockets/e17667e7004e5cfc7f733b8762f47c3f +0 -0
  39. data/spec/dummy/tmp/cache/assets/test/sprockets/fca89522784c8592001dc314a2361344 +0 -0
  40. data/spec/dummy/tmp/pids/server.pid +1 -0
  41. data/spec/features/js_spec.rb +1 -1
  42. data/spec/models/adherent/query_member_spec.rb +43 -33
  43. metadata +15 -2
@@ -75435,3 +75435,733 @@ Started GET "/assets/forward_disabled.png" for 127.0.0.1 at 2015-04-15 07:18:51
75435
75435
 
75436
75436
 
75437
75437
  Started GET "/assets/forward_enabled.png" for 127.0.0.1 at 2015-04-15 07:18:51 +0200
75438
+ Organism Load (66.2ms) SELECT "organisms".* FROM "organisms" ORDER BY "organisms"."id" ASC LIMIT 1
75439
+ Adherent::QueryMember Load (130.7ms) SELECT adherent_members.id, organism_id, number, name, forname, birthdate,
75440
+ adherent_coords.mail AS mail, adherent_coords.tel AS tel,
75441
+ (SELECT to_date FROM adherent_adhesions
75442
+ WHERE adherent_adhesions.member_id = adherent_members.id
75443
+ ORDER BY to_date DESC LIMIT 1 ) AS m_to_date,
75444
+ (SELECT SUM(adherent_reglements.amount) FROM adherent_reglements,
75445
+ adherent_adhesions
75446
+ WHERE adherent_reglements.adhesion_id = adherent_adhesions.id AND
75447
+ adherent_adhesions.member_id = adherent_members.id) AS t_reglements,
75448
+ (SELECT SUM(amount) FROM adherent_adhesions
75449
+ WHERE adherent_adhesions.member_id = adherent_members.id) AS t_adhesions
75450
+ FROM adherent_members
75451
+
75452
+ LEFT JOIN adherent_coords ON adherent_members.id = adherent_coords.member_id
75453
+ WHERE organism_id = 1;
75454
+
75455
+
75456
+
75457
+ Started GET "/" for 127.0.0.1 at 2015-05-09 15:34:21 +0200
75458
+ Processing by OrganismsController#index as HTML
75459
+ Organism Load (3.0ms) SELECT "organisms".* FROM "organisms"
75460
+ Rendered organisms/index.html.haml within layouts/application (31.7ms)
75461
+ Completed 200 OK in 544ms (Views: 527.3ms | ActiveRecord: 10.0ms)
75462
+
75463
+
75464
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75465
+
75466
+
75467
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75468
+
75469
+
75470
+ Started GET "/assets/jquery-ui/core.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75471
+
75472
+
75473
+ Started GET "/assets/jquery-ui/theme.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75474
+
75475
+
75476
+ Started GET "/assets/jquery-ui/datepicker.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75477
+
75478
+
75479
+ Started GET "/assets/organisms.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75480
+
75481
+
75482
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75483
+
75484
+
75485
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75486
+
75487
+
75488
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75489
+
75490
+
75491
+ Started GET "/assets/jquery-ui/datepicker.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75492
+
75493
+
75494
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75495
+
75496
+
75497
+ Started GET "/assets/organisms.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:22 +0200
75498
+
75499
+
75500
+ Started GET "/organisms/2" for 127.0.0.1 at 2015-05-09 15:34:24 +0200
75501
+ Processing by OrganismsController#show as HTML
75502
+ Parameters: {"id"=>"2"}
75503
+ Organism Load (1.4ms) SELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = $1 LIMIT 1 [["id", "2"]]
75504
+ Rendered organisms/show.html.haml within layouts/application (7.1ms)
75505
+ Completed 200 OK in 19ms (Views: 15.4ms | ActiveRecord: 1.9ms)
75506
+
75507
+
75508
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75509
+
75510
+
75511
+ Started GET "/assets/jquery-ui/theme.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75512
+
75513
+
75514
+ Started GET "/assets/jquery-ui/core.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75515
+
75516
+
75517
+ Started GET "/assets/jquery-ui/datepicker.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75518
+
75519
+
75520
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75521
+
75522
+
75523
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75524
+
75525
+
75526
+ Started GET "/assets/jquery-ui/datepicker.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75527
+
75528
+
75529
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75530
+
75531
+
75532
+ Started GET "/assets/organisms.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75533
+
75534
+
75535
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75536
+
75537
+
75538
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75539
+
75540
+
75541
+ Started GET "/assets/organisms.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:25 +0200
75542
+
75543
+
75544
+ Started GET "/adherent/members" for 127.0.0.1 at 2015-05-09 15:34:27 +0200
75545
+ Processing by Adherent::MembersController#index as HTML
75546
+ Organism Load (29.7ms) SELECT "organisms".* FROM "organisms" WHERE "organisms"."title" = 'Mon association' LIMIT 1
75547
+ Adherent::QueryMember Load (9.7ms) SELECT adherent_members.id, organism_id, number, name, forname, birthdate,
75548
+ adherent_coords.mail AS mail, adherent_coords.tel AS tel,
75549
+ (SELECT to_date FROM adherent_adhesions
75550
+ WHERE adherent_adhesions.member_id = adherent_members.id
75551
+ ORDER BY to_date DESC LIMIT 1 ) AS m_to_date,
75552
+ (SELECT SUM(adherent_reglements.amount) FROM adherent_reglements,
75553
+ adherent_adhesions
75554
+ WHERE adherent_reglements.adhesion_id = adherent_adhesions.id AND
75555
+ adherent_adhesions.member_id = adherent_members.id) AS t_reglements,
75556
+ (SELECT SUM(amount) FROM adherent_adhesions
75557
+ WHERE adherent_adhesions.member_id = adherent_members.id) AS t_adhesions
75558
+ FROM adherent_members
75559
+
75560
+ LEFT JOIN adherent_coords ON adherent_members.id = adherent_coords.member_id
75561
+ WHERE organism_id = 2;
75562
+
75563
+ Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (740.5ms)
75564
+ Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_header.html.haml (2.0ms)
75565
+ Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_flash_partial.html.haml (3.8ms)
75566
+ Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_footer.html.haml (1.4ms)
75567
+ Completed 200 OK in 3663ms (Views: 3572.7ms | ActiveRecord: 40.6ms)
75568
+
75569
+
75570
+ Started GET "/assets/adherent/application.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75571
+
75572
+
75573
+ Started GET "/assets/jquery-ui/theme.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75574
+
75575
+
75576
+ Started GET "/assets/jquery-ui/datepicker.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75577
+
75578
+
75579
+ Started GET "/assets/jquery-ui/core.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75580
+
75581
+
75582
+ Started GET "/assets/adherent/allpayments.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75583
+
75584
+
75585
+ Started GET "/assets/adherent/date_picker.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75586
+
75587
+
75588
+ Started GET "/assets/adherent/print.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75589
+
75590
+
75591
+ Started GET "/assets/adherent/reglements.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75592
+
75593
+
75594
+ Started GET "/assets/adherent/jcmenu.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75595
+
75596
+
75597
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75598
+
75599
+
75600
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75601
+
75602
+
75603
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75604
+
75605
+
75606
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75607
+
75608
+
75609
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75610
+
75611
+
75612
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75613
+
75614
+
75615
+ Started GET "/assets/jquery-ui/datepicker.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75616
+
75617
+
75618
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75619
+
75620
+
75621
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75622
+
75623
+
75624
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75625
+
75626
+
75627
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75628
+
75629
+
75630
+ Started GET "/assets/adherent/adhesion.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75631
+
75632
+
75633
+ Started GET "/assets/adherent/allpayments.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75634
+
75635
+
75636
+ Started GET "/assets/adherent/datatableinit.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75637
+
75638
+
75639
+ Started GET "/assets/adherent/date_picker.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75640
+
75641
+
75642
+ Started GET "/assets/adherent/members.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75643
+
75644
+
75645
+ Started GET "/assets/adherent/icones/card-address.png" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75646
+
75647
+
75648
+ Started GET "/assets/adherent/icones/xls.png" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75649
+
75650
+
75651
+ Started GET "/assets/adherent/icones/modifier.png" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75652
+
75653
+
75654
+ Started GET "/assets/adherent/icones/payment.png" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75655
+
75656
+
75657
+ Started GET "/assets/adherent/adhesion.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75658
+
75659
+
75660
+ Started GET "/assets/adherent/coords.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75661
+
75662
+
75663
+ Started GET "/assets/adherent/demo_table.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75664
+
75665
+
75666
+ Started GET "/assets/adherent/jc_application.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75667
+
75668
+
75669
+ Started GET "/assets/adherent/layouts.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75670
+
75671
+
75672
+ Started GET "/assets/adherent/old_bootstrap.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75673
+
75674
+
75675
+ Started GET "/assets/adherent/payments.css?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75676
+
75677
+
75678
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75679
+
75680
+
75681
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75682
+
75683
+
75684
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75685
+
75686
+
75687
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75688
+
75689
+
75690
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:31 +0200
75691
+
75692
+
75693
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75694
+
75695
+
75696
+ Started GET "/assets/adherent/jquery.dataTables.min.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75697
+
75698
+
75699
+ Started GET "/assets/adherent/common.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75700
+
75701
+
75702
+ Started GET "/assets/adherent/coords.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75703
+
75704
+
75705
+ Started GET "/assets/adherent/payments.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75706
+
75707
+
75708
+ Started GET "/assets/adherent/reglements.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75709
+
75710
+
75711
+ Started GET "/assets/adherent/application.js?body=1" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75712
+
75713
+
75714
+ Started GET "/assets/adherent/icones/csv.png" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75715
+
75716
+
75717
+ Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75718
+
75719
+
75720
+ Started GET "/assets/adherent/icones/bandaid.png" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75721
+
75722
+
75723
+ Started GET "/assets/adherent/icones/nouveau.png" for 127.0.0.1 at 2015-05-09 15:34:32 +0200
75724
+
75725
+
75726
+ Started GET "/assets/sort_asc.png" for 127.0.0.1 at 2015-05-09 15:34:33 +0200
75727
+
75728
+
75729
+ Started GET "/assets/sort_both.png" for 127.0.0.1 at 2015-05-09 15:34:33 +0200
75730
+
75731
+
75732
+ Started GET "/frenchdatatable.txt" for 127.0.0.1 at 2015-05-09 15:34:34 +0200
75733
+
75734
+ ActionController::RoutingError (No route matches [GET] "/frenchdatatable.txt"):
75735
+ actionpack (4.0.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
75736
+ actionpack (4.0.12) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
75737
+ railties (4.0.12) lib/rails/rack/logger.rb:38:in `call_app'
75738
+ railties (4.0.12) lib/rails/rack/logger.rb:20:in `block in call'
75739
+ activesupport (4.0.12) lib/active_support/tagged_logging.rb:68:in `block in tagged'
75740
+ activesupport (4.0.12) lib/active_support/tagged_logging.rb:26:in `tagged'
75741
+ activesupport (4.0.12) lib/active_support/tagged_logging.rb:68:in `tagged'
75742
+ railties (4.0.12) lib/rails/rack/logger.rb:20:in `call'
75743
+ actionpack (4.0.12) lib/action_dispatch/middleware/request_id.rb:21:in `call'
75744
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
75745
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
75746
+ activesupport (4.0.12) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
75747
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
75748
+ actionpack (4.0.12) lib/action_dispatch/middleware/static.rb:84:in `call'
75749
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
75750
+ railties (4.0.12) lib/rails/engine.rb:511:in `call'
75751
+ railties (4.0.12) lib/rails/application.rb:97:in `call'
75752
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
75753
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
75754
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
75755
+ /home/jcl/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
75756
+ /home/jcl/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
75757
+ /home/jcl/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
75758
+
75759
+
75760
+ Rendered /home/jcl/.rvm/gems/ruby-2.2.1/gems/actionpack-4.0.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
75761
+ Rendered /home/jcl/.rvm/gems/ruby-2.2.1/gems/actionpack-4.0.12/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms)
75762
+ Rendered /home/jcl/.rvm/gems/ruby-2.2.1/gems/actionpack-4.0.12/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.7ms)
75763
+ Rendered /home/jcl/.rvm/gems/ruby-2.2.1/gems/actionpack-4.0.12/lib/action_dispatch/middleware/templates/routes/_table.html.erb (25.5ms)
75764
+ Rendered /home/jcl/.rvm/gems/ruby-2.2.1/gems/actionpack-4.0.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (146.3ms)
75765
+
75766
+
75767
+ Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2015-05-09 15:34:45 +0200
75768
+
75769
+
75770
+ Started GET "/adherent/members" for 127.0.0.1 at 2015-05-09 15:40:33 +0200
75771
+ Processing by Adherent::MembersController#index as HTML
75772
+ Organism Load (0.6ms) SELECT "organisms".* FROM "organisms" WHERE "organisms"."title" = 'Mon association' LIMIT 1
75773
+ Adherent::QueryMember Load (8.4ms) SELECT adherent_members.id, organism_id, number, name, forname, birthdate,
75774
+ adherent_coords.mail AS mail, adherent_coords.tel AS tel,
75775
+ (SELECT to_date FROM adherent_adhesions
75776
+ WHERE adherent_adhesions.member_id = adherent_members.id
75777
+ ORDER BY to_date DESC LIMIT 1 ) AS m_to_date,
75778
+ (SELECT SUM(adherent_reglements.amount) FROM adherent_reglements,
75779
+ adherent_adhesions
75780
+ WHERE adherent_reglements.adhesion_id = adherent_adhesions.id AND
75781
+ adherent_adhesions.member_id = adherent_members.id) AS t_reglements,
75782
+ (SELECT SUM(amount) FROM adherent_adhesions
75783
+ WHERE adherent_adhesions.member_id = adherent_members.id) AS t_adhesions
75784
+ FROM adherent_members
75785
+
75786
+ LEFT JOIN adherent_coords ON adherent_members.id = adherent_coords.member_id
75787
+ WHERE organism_id = 2;
75788
+
75789
+ Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (629.4ms)
75790
+ Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_header.html.haml (0.3ms)
75791
+ Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_flash_partial.html.haml (0.2ms)
75792
+ Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_footer.html.haml (0.1ms)
75793
+ Completed 200 OK in 766ms (Views: 736.0ms | ActiveRecord: 9.0ms)
75794
+
75795
+
75796
+ Started GET "/assets/adherent/application.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75797
+
75798
+
75799
+ Started GET "/assets/jquery-ui/theme.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75800
+
75801
+
75802
+ Started GET "/assets/jquery-ui/core.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75803
+
75804
+
75805
+ Started GET "/assets/jquery-ui/datepicker.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75806
+
75807
+
75808
+ Started GET "/assets/adherent/date_picker.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75809
+
75810
+
75811
+ Started GET "/assets/adherent/allpayments.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75812
+
75813
+
75814
+ Started GET "/assets/adherent/adhesion.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75815
+
75816
+
75817
+ Started GET "/assets/adherent/demo_table.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75818
+
75819
+
75820
+ Started GET "/assets/adherent/coords.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75821
+
75822
+
75823
+ Started GET "/assets/adherent/jc_application.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75824
+
75825
+
75826
+ Started GET "/assets/adherent/jcmenu.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75827
+
75828
+
75829
+ Started GET "/assets/adherent/print.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75830
+
75831
+
75832
+ Started GET "/assets/adherent/layouts.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75833
+
75834
+
75835
+ Started GET "/assets/adherent/payments.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:34 +0200
75836
+
75837
+
75838
+ Started GET "/assets/adherent/old_bootstrap.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75839
+
75840
+
75841
+ Started GET "/assets/adherent/reglements.css?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75842
+
75843
+
75844
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75845
+
75846
+
75847
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75848
+
75849
+
75850
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75851
+
75852
+
75853
+ Started GET "/assets/jquery-ui/datepicker.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75854
+
75855
+
75856
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75857
+
75858
+
75859
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75860
+
75861
+
75862
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75863
+
75864
+
75865
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75866
+
75867
+
75868
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75869
+
75870
+
75871
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75872
+
75873
+
75874
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75875
+
75876
+
75877
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75878
+
75879
+
75880
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75881
+
75882
+
75883
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75884
+
75885
+
75886
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75887
+
75888
+
75889
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75890
+
75891
+
75892
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75893
+
75894
+
75895
+ Started GET "/assets/adherent/jquery.dataTables.min.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75896
+
75897
+
75898
+ Started GET "/assets/adherent/adhesion.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75899
+
75900
+
75901
+ Started GET "/assets/adherent/allpayments.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75902
+
75903
+
75904
+ Started GET "/assets/adherent/common.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75905
+
75906
+
75907
+ Started GET "/assets/adherent/coords.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75908
+
75909
+
75910
+ Started GET "/assets/adherent/datatableinit.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75911
+
75912
+
75913
+ Started GET "/assets/adherent/date_picker.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75914
+
75915
+
75916
+ Started GET "/assets/adherent/members.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75917
+
75918
+
75919
+ Started GET "/assets/adherent/payments.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75920
+
75921
+
75922
+ Started GET "/assets/adherent/reglements.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75923
+
75924
+
75925
+ Started GET "/assets/adherent/application.js?body=1" for 127.0.0.1 at 2015-05-09 15:40:35 +0200
75926
+
75927
+
75928
+ Started GET "/assets/adherent/icones/payment.png" for 127.0.0.1 at 2015-05-09 15:40:36 +0200
75929
+
75930
+
75931
+ Started GET "/assets/adherent/icones/csv.png" for 127.0.0.1 at 2015-05-09 15:40:36 +0200
75932
+
75933
+
75934
+ Started GET "/assets/adherent/icones/xls.png" for 127.0.0.1 at 2015-05-09 15:40:36 +0200
75935
+
75936
+
75937
+ Started GET "/assets/adherent/icones/card-address.png" for 127.0.0.1 at 2015-05-09 15:40:36 +0200
75938
+
75939
+
75940
+ Started GET "/assets/adherent/icones/nouveau.png" for 127.0.0.1 at 2015-05-09 15:40:36 +0200
75941
+
75942
+
75943
+ Started GET "/assets/adherent/icones/bandaid.png" for 127.0.0.1 at 2015-05-09 15:40:36 +0200
75944
+
75945
+
75946
+ Started GET "/assets/adherent/icones/modifier.png" for 127.0.0.1 at 2015-05-09 15:40:36 +0200
75947
+
75948
+
75949
+ Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2015-05-09 15:40:36 +0200
75950
+
75951
+
75952
+ Started GET "/assets/sort_both.png" for 127.0.0.1 at 2015-05-09 15:40:36 +0200
75953
+
75954
+
75955
+ Started GET "/assets/sort_asc.png" for 127.0.0.1 at 2015-05-09 15:40:36 +0200
75956
+
75957
+
75958
+ Started GET "/assets/back_disabled.png" for 127.0.0.1 at 2015-05-09 15:40:37 +0200
75959
+
75960
+
75961
+ Started GET "/assets/forward_enabled.png" for 127.0.0.1 at 2015-05-09 15:40:37 +0200
75962
+
75963
+
75964
+ Started GET "/assets/forward_disabled.png" for 127.0.0.1 at 2015-05-09 15:40:38 +0200
75965
+
75966
+
75967
+ Started GET "/assets/sort_desc.png" for 127.0.0.1 at 2015-05-09 15:40:49 +0200
75968
+
75969
+
75970
+ Started GET "/adherent/members" for 127.0.0.1 at 2015-05-09 15:41:49 +0200
75971
+ Processing by Adherent::MembersController#index as HTML
75972
+ Organism Load (0.8ms) SELECT "organisms".* FROM "organisms" WHERE "organisms"."title" = 'Mon association' LIMIT 1
75973
+ Adherent::QueryMember Load (21.0ms) SELECT adherent_members.id, organism_id, number, name, forname, birthdate,
75974
+ adherent_coords.mail AS mail, adherent_coords.tel AS tel,
75975
+ (SELECT to_date FROM adherent_adhesions
75976
+ WHERE adherent_adhesions.member_id = adherent_members.id
75977
+ ORDER BY to_date DESC LIMIT 1 ) AS m_to_date,
75978
+ (SELECT SUM(adherent_reglements.amount) FROM adherent_reglements,
75979
+ adherent_adhesions
75980
+ WHERE adherent_reglements.adhesion_id = adherent_adhesions.id AND
75981
+ adherent_adhesions.member_id = adherent_members.id) AS t_reglements,
75982
+ (SELECT SUM(amount) FROM adherent_adhesions
75983
+ WHERE adherent_adhesions.member_id = adherent_members.id) AS t_adhesions
75984
+ FROM adherent_members
75985
+
75986
+ LEFT JOIN adherent_coords ON adherent_members.id = adherent_coords.member_id
75987
+ WHERE organism_id = 2;
75988
+
75989
+ Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (587.8ms)
75990
+ Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_header.html.haml (0.2ms)
75991
+ Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_flash_partial.html.haml (0.1ms)
75992
+ Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_footer.html.haml (0.2ms)
75993
+ Completed 200 OK in 652ms (Views: 618.9ms | ActiveRecord: 21.8ms)
75994
+
75995
+
75996
+ Started GET "/assets/adherent/application.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
75997
+
75998
+
75999
+ Started GET "/assets/jquery-ui/theme.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76000
+
76001
+
76002
+ Started GET "/assets/jquery-ui/core.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76003
+
76004
+
76005
+ Started GET "/assets/jquery-ui/datepicker.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76006
+
76007
+
76008
+ Started GET "/assets/adherent/adhesion.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76009
+
76010
+
76011
+ Started GET "/assets/adherent/date_picker.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76012
+
76013
+
76014
+ Started GET "/assets/adherent/coords.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76015
+
76016
+
76017
+ Started GET "/assets/adherent/demo_table.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76018
+
76019
+
76020
+ Started GET "/assets/adherent/jc_application.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76021
+
76022
+
76023
+ Started GET "/assets/adherent/jcmenu.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76024
+
76025
+
76026
+ Started GET "/assets/adherent/allpayments.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76027
+
76028
+
76029
+ Started GET "/assets/adherent/layouts.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76030
+
76031
+
76032
+ Started GET "/assets/adherent/old_bootstrap.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76033
+
76034
+
76035
+ Started GET "/assets/adherent/payments.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76036
+
76037
+
76038
+ Started GET "/assets/adherent/reglements.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76039
+
76040
+
76041
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76042
+
76043
+
76044
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76045
+
76046
+
76047
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76048
+
76049
+
76050
+ Started GET "/assets/adherent/print.css?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76051
+
76052
+
76053
+ Started GET "/assets/jquery-ui/datepicker.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:50 +0200
76054
+
76055
+
76056
+ Started GET "/assets/bootstrap/affix.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76057
+
76058
+
76059
+ Started GET "/assets/bootstrap/alert.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76060
+
76061
+
76062
+ Started GET "/assets/bootstrap/carousel.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76063
+
76064
+
76065
+ Started GET "/assets/bootstrap/collapse.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76066
+
76067
+
76068
+ Started GET "/assets/bootstrap/button.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76069
+
76070
+
76071
+ Started GET "/assets/bootstrap/dropdown.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76072
+
76073
+
76074
+ Started GET "/assets/bootstrap/tab.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76075
+
76076
+
76077
+ Started GET "/assets/bootstrap/transition.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76078
+
76079
+
76080
+ Started GET "/assets/bootstrap/scrollspy.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76081
+
76082
+
76083
+ Started GET "/assets/bootstrap/modal.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76084
+
76085
+
76086
+ Started GET "/assets/bootstrap/tooltip.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76087
+
76088
+
76089
+ Started GET "/assets/bootstrap/popover.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76090
+
76091
+
76092
+ Started GET "/assets/bootstrap-sprockets.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76093
+
76094
+
76095
+ Started GET "/assets/adherent/adhesion.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76096
+
76097
+
76098
+ Started GET "/assets/adherent/jquery.dataTables.min.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76099
+
76100
+
76101
+ Started GET "/assets/adherent/coords.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76102
+
76103
+
76104
+ Started GET "/assets/adherent/allpayments.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76105
+
76106
+
76107
+ Started GET "/assets/adherent/common.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76108
+
76109
+
76110
+ Started GET "/assets/adherent/datatableinit.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76111
+
76112
+
76113
+ Started GET "/assets/adherent/date_picker.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76114
+
76115
+
76116
+ Started GET "/assets/adherent/members.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76117
+
76118
+
76119
+ Started GET "/assets/adherent/reglements.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76120
+
76121
+
76122
+ Started GET "/assets/adherent/application.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76123
+
76124
+
76125
+ Started GET "/assets/adherent/payments.js?body=1" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76126
+
76127
+
76128
+ Started GET "/assets/adherent/icones/payment.png" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76129
+
76130
+
76131
+ Started GET "/assets/adherent/icones/nouveau.png" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76132
+
76133
+
76134
+ Started GET "/assets/adherent/icones/csv.png" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76135
+
76136
+
76137
+ Started GET "/assets/adherent/icones/xls.png" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76138
+
76139
+
76140
+ Started GET "/assets/adherent/icones/card-address.png" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76141
+
76142
+
76143
+ Started GET "/assets/adherent/icones/bandaid.png" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76144
+
76145
+
76146
+ Started GET "/assets/adherent/icones/modifier.png" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76147
+
76148
+
76149
+ Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2015-05-09 15:41:51 +0200
76150
+
76151
+
76152
+ Started GET "/assets/sort_both.png" for 127.0.0.1 at 2015-05-09 15:41:52 +0200
76153
+
76154
+
76155
+ Started GET "/assets/sort_desc.png" for 127.0.0.1 at 2015-05-09 15:41:52 +0200
76156
+
76157
+
76158
+ Started GET "/assets/back_disabled.png" for 127.0.0.1 at 2015-05-09 15:41:53 +0200
76159
+
76160
+
76161
+ Started GET "/assets/forward_disabled.png" for 127.0.0.1 at 2015-05-09 15:41:53 +0200
76162
+
76163
+
76164
+ Started GET "/assets/forward_enabled.png" for 127.0.0.1 at 2015-05-09 15:41:53 +0200
76165
+
76166
+
76167
+ Started GET "/assets/sort_asc.png" for 127.0.0.1 at 2015-05-09 15:41:58 +0200