adherent 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +93 -16
- data/app/views/layouts/adherent/_footer.html.haml +4 -0
- data/app/views/layouts/adherent/_header.html.haml +4 -0
- data/app/views/layouts/adherent/application.html.erb +3 -3
- data/lib/adherent/version.rb +1 -1
- data/test/dummy/log/development.log +1040 -0
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2cdf72b3cb7a0489b90f6b4f7bb5e6b8eed11e82
|
4
|
+
data.tar.gz: 5053189b293683345c96e02bad88ef322d15c5e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a36e9594b9826e8ba0bd1abd989db7b5d3063591c28ab8e993f0b1ed5c47c00c7913f85f67062c7b8d75c11954c50bdb59822a2361113e73f8fadb3d816609e
|
7
|
+
data.tar.gz: f1a568d093c31ca66e58a8134dc8666d8be60f1eca706b033ab99e6ae4dae29d5b8054b6d72e07803cf806762609e2f5d9a63e24dcba773066b177312701b968
|
data/README.rdoc
CHANGED
@@ -9,31 +9,47 @@ Les fonctionnalités actuelles du gem sont les suivantes :
|
|
9
9
|
- gestion des paiements effectués par les adhérents
|
10
10
|
|
11
11
|
A terme, le gem sera en mesure d'être intégré à l'application FaitesLesComptes
|
12
|
-
qui est un logiciel de comptabilité.
|
12
|
+
qui est un logiciel de comptabilité. Mais il peut évidemment être utilisé pour
|
13
|
+
tout autre programme qui gère des adhérents.
|
13
14
|
|
14
|
-
|
15
|
+
La notion d'adhérent est assez extensible; Le modèle utilisé s'appelle d'ailleurs
|
16
|
+
Member (membre). Ce pourrait être des abonnés
|
17
|
+
à une revue, des ayants droits d'un comité d'entreprise,...
|
15
18
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
19
|
+
== Evolutions futures
|
20
|
+
|
21
|
+
Ce projet est en cours de développement.
|
22
|
+
|
23
|
+
N'hésitez pas à nous faire part de vos demandes éventuelles. Et surtout revenez voir
|
24
|
+
régulièrement quelles fonctionnalités auraient été ajoutées
|
25
|
+
|
26
|
+
Nous devons également améliorer la couverture du gem par les tests.
|
21
27
|
|
22
28
|
== Installation
|
23
29
|
|
24
30
|
|
25
|
-
1. Modifier le gemfile de votre application pour y ajouter gem 'adherent'
|
31
|
+
1. Modifier le gemfile de votre application pour y ajouter gem 'adherent'
|
26
32
|
2. puis bundle install
|
27
33
|
3. Le gem rattache les membres à un organism. Il faut donc avoir une table des organismes.
|
28
|
-
Le plus simple étant de faire
|
29
|
-
|
30
|
-
|
34
|
+
Le plus simple étant de faire
|
35
|
+
rails g scaffold organism title:string
|
36
|
+
dans votre application principale
|
37
|
+
4. Copier les migrations du gem vers votre application avec la commande
|
38
|
+
rake adherent:install:migrations
|
39
|
+
5. Puis créer les tables avec
|
40
|
+
rake db:migrate
|
31
41
|
6. Il est nécessaire que le gem ait accès à l'organisme recherché lors d'un accès à ses tables. Il faut donc avoir
|
32
42
|
une méthode qui instancie l'organisme dans votre ApplicationController. Par exemple
|
33
43
|
before_filter @organism = Organism.find(session[:organism] if session[:organism]
|
44
|
+
Ceci focntionne car le ApplicationController du gem hérite du ApplicationController de l'application
|
45
|
+
principale dans laquelle il est utilisé.
|
46
|
+
|
47
|
+
|
48
|
+
|
34
49
|
7. dans le controller Organism, ajouter skip_before_filter :find_organism
|
35
50
|
8. Toujours dans le controller Organism, et dans la méthode show ajouter la ligne
|
36
|
-
session[:organism] = @organism.id
|
51
|
+
session[:organism] = @organism.id
|
52
|
+
Dès lors la session est initialisée et mise à jour
|
37
53
|
dès qu'on affiche un organisme. D'autres moyens sont évidemment possibles
|
38
54
|
|
39
55
|
9. Dans le modèle Organism de votre application, il faut rajouter la ligne
|
@@ -44,6 +60,18 @@ dès qu'on affiche un organisme. D'autres moyens sont évidemment possibles
|
|
44
60
|
profitez en pour définir le root de votre application par exempe root to:'organisms#index'
|
45
61
|
sans oublier d'effacer le fichier public/index.html
|
46
62
|
|
63
|
+
==== Alternative
|
64
|
+
Si vous utilisez ce gem pour une seule association, il n'est pas utile d'avoir un scaffold complet
|
65
|
+
Vous pouvez vous contenter d'un model Organism
|
66
|
+
rails g model Organism title:string
|
67
|
+
rake db:migrate
|
68
|
+
Puis créer un organisme
|
69
|
+
Organism.create(title:'le nom de l association')
|
70
|
+
Mettre en place la variable d'instance pour alors se faire par
|
71
|
+
before_filter sont alors inutiles.
|
72
|
+
Les étapes 7 et 8 deviennent alors inutile.
|
73
|
+
|
74
|
+
|
47
75
|
== Vérification du bon fonctionnement
|
48
76
|
Lancer le serveur par la commande rails s et aller sur localhost:3000
|
49
77
|
Vous devriez voir la page organism#index avec la mise en forme par défaut du scaffold de rails.
|
@@ -53,13 +81,62 @@ Créer un premier organisme, ce qui l'affichera, déclanchant l'action show qui
|
|
53
81
|
Dès lors vous pouvez accéder aux fonctionnalités du gem par
|
54
82
|
l'adresse localhost:3000/adherent
|
55
83
|
|
84
|
+
== Utilisation
|
85
|
+
|
56
86
|
Il pourra être utile de faire un lien vers ce module dans la vue 'Organism#show'
|
57
|
-
en rajoutant
|
87
|
+
en rajoutant
|
88
|
+
link_to 'Adherent', adherent.members_path
|
58
89
|
|
59
|
-
|
60
|
-
|
90
|
+
Dans l'autre sens, lorsque vous êtes sur la liste des membres (des adhérents), un lien vers l'application principale est
|
91
|
+
disponible
|
92
|
+
|
93
|
+
Le gem a été développé pour son utilisation avec un logiciel de comptabilité.
|
94
|
+
|
95
|
+
La solution adoptée pour faire le lien entre l'application principale et le gem est l'utilisation
|
96
|
+
d'un observer (note : une autre solution devra être trouvée pour Rails 4 qui a supprimé
|
97
|
+
cette approche).
|
98
|
+
|
99
|
+
Nous montrons l'approche pour l'observation d'un payment mais vous pourriez vouloir observer
|
100
|
+
autre chose (un nouveau membre, un renouvellement d'adhésion,...). Le principe sera la même.
|
101
|
+
|
102
|
+
Dans le dossier models de l'application principale, créer un dossier adherent
|
103
|
+
puis un fichier payment_observer.rb
|
61
104
|
|
105
|
+
|
106
|
+
|
107
|
+
module Adherent
|
108
|
+
class PaymentObserver < ::ActiveRecord::Observer
|
109
|
+
|
110
|
+
def after_create(payment)
|
111
|
+
# introduire ici ce que vous voulez enclencher lorsqu'un paiement est enregistré
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
Vous pouvez bien utiliser d'autre callbacks comme after_save, after_update. Voir la
|
117
|
+
documentation de Rails sur les Observer
|
62
118
|
|
119
|
+
|
120
|
+
Dans le fichier config/application.rb de votre application, il faut activer l'observer.
|
121
|
+
Décommenter la ligne config.active_record.observers = ...
|
122
|
+
et modifier là comme suit:
|
123
|
+
|
124
|
+
# Activate observers that should always be running.
|
125
|
+
config.active_record.observers = 'Adherent::PaymentObserver'
|
126
|
+
|
127
|
+
|
128
|
+
De nombreux autres utilisations sont possibles, par exemple l'envoi de mails aux adhérents
|
129
|
+
ou l'édition de statistiques sur le renouvellement des adhésions.
|
130
|
+
A vous alors de créer les controllers et vues faisant appel aux données des tables
|
131
|
+
du gem Adherent.
|
132
|
+
|
133
|
+
Les modèles doivent être préfixés : Adherent::Member, Adherent::Adhesion, Adherent::Coord,...
|
134
|
+
|
135
|
+
Les tables elles mêmes sont "adherent_members", "adherent_adhesions",...
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
|
63
140
|
= License
|
64
141
|
|
65
|
-
Ce projet est sous
|
142
|
+
Ce projet est sous sous licence MIT.
|
@@ -0,0 +1,4 @@
|
|
1
|
+
%div#adherent_footer
|
2
|
+
Place pour le footer : surcharger le partial _footer dans votre application principale pour y adapter votre Footer
|
3
|
+
ou masquer ce div par un style display: hidden; si vous ne voulez pas personnaliser ce header.
|
4
|
+
L'id de ce header est #adherent_footer
|
@@ -0,0 +1,4 @@
|
|
1
|
+
%div#adherent_header
|
2
|
+
Place pour le Header : surcharger le partial _header dans votre application principale pour y adapter votre Header
|
3
|
+
ou masquer ce div par un style display: hidden; si vous ne voulez pas personnaliser ce header.
|
4
|
+
L'id de ce header est #adherent_header
|
@@ -10,13 +10,13 @@
|
|
10
10
|
|
11
11
|
<div class="container-fluid">
|
12
12
|
|
13
|
-
|
13
|
+
<%= render 'layouts/adherent/header' %>
|
14
14
|
|
15
15
|
|
16
16
|
<div class="row-fluid">
|
17
17
|
|
18
18
|
<div>
|
19
|
-
|
19
|
+
|
20
20
|
<ul class="nav nav-tabs" id="menu_general">
|
21
21
|
<!-- pas très bien nommé, la suite affiche les icones -->
|
22
22
|
<li class="horizontal_icons">
|
@@ -36,7 +36,7 @@
|
|
36
36
|
<div class ="push"></div>
|
37
37
|
</div>
|
38
38
|
|
39
|
-
|
39
|
+
<%= render 'layouts/adherent/footer' %>
|
40
40
|
|
41
41
|
</body>
|
42
42
|
</html>
|
data/lib/adherent/version.rb
CHANGED
@@ -95920,3 +95920,1043 @@ Served asset /adherent/icones/modifier.png - 304 Not Modified (0ms)
|
|
95920
95920
|
|
95921
95921
|
Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2013-08-11 08:59:50 +0200
|
95922
95922
|
Served asset /adherent/icones/supprimer.png - 304 Not Modified (0ms)
|
95923
|
+
Connecting to database specified by database.yml
|
95924
|
+
|
95925
|
+
|
95926
|
+
Started GET "/" for 127.0.0.1 at 2013-08-12 08:13:34 +0200
|
95927
|
+
Processing by OrganismsController#index as HTML
|
95928
|
+
[1m[36mOrganism Load (7.4ms)[0m [1mSELECT "organisms".* FROM "organisms" [0m
|
95929
|
+
[1m[35mEXPLAIN (15.1ms)[0m EXPLAIN SELECT "organisms".* FROM "organisms"
|
95930
|
+
EXPLAIN for: SELECT "organisms".* FROM "organisms"
|
95931
|
+
QUERY PLAN
|
95932
|
+
--------------------------------------------------------------
|
95933
|
+
Seq Scan on organisms (cost=0.00..10.70 rows=70 width=1052)
|
95934
|
+
(1 row)
|
95935
|
+
|
95936
|
+
Rendered organisms/index.html.haml within layouts/application (12.0ms)
|
95937
|
+
Completed 200 OK in 1271ms (Views: 376.2ms | ActiveRecord: 858.6ms)
|
95938
|
+
|
95939
|
+
|
95940
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95941
|
+
Served asset /application.css - 200 OK (14ms)
|
95942
|
+
|
95943
|
+
|
95944
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95945
|
+
Served asset /scaffold.css - 304 Not Modified (1ms)
|
95946
|
+
|
95947
|
+
|
95948
|
+
Started GET "/assets/organisms.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95949
|
+
Served asset /organisms.css - 200 OK (7ms)
|
95950
|
+
|
95951
|
+
|
95952
|
+
Started GET "/assets/jquery.ui.theme.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95953
|
+
Served asset /jquery.ui.theme.css - 304 Not Modified (11ms)
|
95954
|
+
|
95955
|
+
|
95956
|
+
Started GET "/assets/jquery.ui.core.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95957
|
+
Served asset /jquery.ui.core.css - 304 Not Modified (7ms)
|
95958
|
+
|
95959
|
+
|
95960
|
+
Started GET "/assets/jquery.ui.datepicker.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95961
|
+
Served asset /jquery.ui.datepicker.css - 304 Not Modified (8ms)
|
95962
|
+
|
95963
|
+
|
95964
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95965
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
95966
|
+
|
95967
|
+
|
95968
|
+
Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95969
|
+
Served asset /jquery.ui.core.js - 304 Not Modified (3ms)
|
95970
|
+
|
95971
|
+
|
95972
|
+
Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95973
|
+
Served asset /jquery.ui.datepicker.js - 304 Not Modified (58ms)
|
95974
|
+
|
95975
|
+
|
95976
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95977
|
+
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
95978
|
+
|
95979
|
+
|
95980
|
+
Started GET "/assets/organisms.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95981
|
+
Served asset /organisms.js - 200 OK (1ms)
|
95982
|
+
|
95983
|
+
|
95984
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:36 +0200
|
95985
|
+
Served asset /application.js - 200 OK (15ms)
|
95986
|
+
|
95987
|
+
|
95988
|
+
Started GET "/organisms/1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
95989
|
+
Processing by OrganismsController#show as HTML
|
95990
|
+
Parameters: {"id"=>"1"}
|
95991
|
+
[1m[36mOrganism Load (26.7ms)[0m [1mSELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = $1 LIMIT 1[0m [["id", "1"]]
|
95992
|
+
Rendered organisms/show.html.haml within layouts/application (17.9ms)
|
95993
|
+
Completed 200 OK in 64ms (Views: 30.6ms | ActiveRecord: 27.1ms)
|
95994
|
+
|
95995
|
+
|
95996
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
95997
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
95998
|
+
|
95999
|
+
|
96000
|
+
Started GET "/assets/jquery.ui.theme.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96001
|
+
Served asset /jquery.ui.theme.css - 304 Not Modified (0ms)
|
96002
|
+
|
96003
|
+
|
96004
|
+
Started GET "/assets/organisms.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96005
|
+
Served asset /organisms.css - 304 Not Modified (0ms)
|
96006
|
+
|
96007
|
+
|
96008
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96009
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
96010
|
+
|
96011
|
+
|
96012
|
+
Started GET "/assets/jquery.ui.datepicker.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96013
|
+
Served asset /jquery.ui.datepicker.css - 304 Not Modified (1ms)
|
96014
|
+
|
96015
|
+
|
96016
|
+
Started GET "/assets/jquery.ui.core.css?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96017
|
+
Served asset /jquery.ui.core.css - 304 Not Modified (0ms)
|
96018
|
+
|
96019
|
+
|
96020
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96021
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
96022
|
+
|
96023
|
+
|
96024
|
+
Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96025
|
+
Served asset /jquery.ui.core.js - 304 Not Modified (0ms)
|
96026
|
+
|
96027
|
+
|
96028
|
+
Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96029
|
+
Served asset /jquery.ui.datepicker.js - 304 Not Modified (0ms)
|
96030
|
+
|
96031
|
+
|
96032
|
+
Started GET "/assets/organisms.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96033
|
+
Served asset /organisms.js - 304 Not Modified (0ms)
|
96034
|
+
|
96035
|
+
|
96036
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96037
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
96038
|
+
|
96039
|
+
|
96040
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-12 08:13:43 +0200
|
96041
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
96042
|
+
|
96043
|
+
|
96044
|
+
Started GET "/adherent/members" for 127.0.0.1 at 2013-08-12 08:13:44 +0200
|
96045
|
+
Processing by Adherent::MembersController#index as HTML
|
96046
|
+
[1m[35mOrganism Load (1.0ms)[0m SELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = 1 LIMIT 1
|
96047
|
+
[1m[36mAdherent::Member Load (21.2ms)[0m [1mSELECT "adherent_members".* FROM "adherent_members" WHERE "adherent_members"."organism_id" = 1[0m
|
96048
|
+
[1m[35mAdherent::Adhesion Load (37.9ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 1
|
96049
|
+
[1m[36m (61.8ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 1[0m
|
96050
|
+
[1m[35mAdherent::Coord Load (0.8ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 1 LIMIT 1
|
96051
|
+
[1m[36mAdherent::Adhesion Load (0.4ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 2[0m
|
96052
|
+
[1m[35mAdherent::Coord Load (0.3ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 2 LIMIT 1
|
96053
|
+
[1m[36mAdherent::Adhesion Load (0.3ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 3[0m
|
96054
|
+
[1m[35m (0.2ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 2
|
96055
|
+
[1m[36mAdherent::Coord Load (0.4ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 3 LIMIT 1[0m
|
96056
|
+
[1m[35mAdherent::Adhesion Load (0.4ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 6
|
96057
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 5[0m
|
96058
|
+
[1m[35mAdherent::Coord Load (0.2ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 6 LIMIT 1
|
96059
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (269.8ms)
|
96060
|
+
Completed 500 Internal Server Error in 704ms
|
96061
|
+
|
96062
|
+
ActionView::Template::Error (Missing partial layouts/header with {:locale=>[:fr], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
|
96063
|
+
* "/home/jcl/rails_project/Adherent/test/dummy/app/views"
|
96064
|
+
* "/home/jcl/rails_project/Adherent/app/views"
|
96065
|
+
):
|
96066
|
+
10:
|
96067
|
+
11: <div class="container-fluid">
|
96068
|
+
12:
|
96069
|
+
13: <%= render 'layouts/header' %>
|
96070
|
+
14:
|
96071
|
+
15:
|
96072
|
+
16: <div class="row-fluid">
|
96073
|
+
actionpack (3.2.14) lib/action_view/path_set.rb:58:in `find'
|
96074
|
+
actionpack (3.2.14) lib/action_view/lookup_context.rb:115:in `find'
|
96075
|
+
actionpack (3.2.14) lib/action_view/renderer/partial_renderer.rb:341:in `find_template'
|
96076
|
+
actionpack (3.2.14) lib/action_view/renderer/partial_renderer.rb:335:in `find_partial'
|
96077
|
+
actionpack (3.2.14) lib/action_view/renderer/partial_renderer.rb:222:in `render'
|
96078
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
96079
|
+
actionpack (3.2.14) lib/action_view/helpers/rendering_helper.rb:27:in `render'
|
96080
|
+
haml (4.0.3) lib/haml/helpers/action_view_mods.rb:12:in `render_with_haml'
|
96081
|
+
/home/jcl/rails_project/Adherent/app/views/layouts/adherent/application.html.erb:13:in `__home_jcl_rails_project__dherent_app_views_layouts_adherent_application_html_erb__391086556_76710590'
|
96082
|
+
actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render'
|
96083
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument'
|
96084
|
+
actionpack (3.2.14) lib/action_view/template.rb:143:in `render'
|
96085
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout'
|
96086
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template'
|
96087
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render'
|
96088
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
96089
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
|
96090
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
96091
|
+
actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
96092
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
96093
|
+
actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
96094
|
+
actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
96095
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
|
96096
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
|
96097
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
96098
|
+
activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
96099
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
96100
|
+
activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
96101
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
96102
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
96103
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
96104
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
96105
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
96106
|
+
actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
96107
|
+
/home/jcl/rails_project/Adherent/app/controllers/adherent/members_controller.rb:12:in `index'
|
96108
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
96109
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
96110
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
96111
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
96112
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:425:in `_run__689821763__process_action__340772721__callbacks'
|
96113
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
96114
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
96115
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
96116
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
96117
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
96118
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
96119
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
96120
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
96121
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
96122
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
96123
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
96124
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
96125
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
96126
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
96127
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
96128
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
96129
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
96130
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
96131
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
96132
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
96133
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
96134
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
96135
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
96136
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
96137
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
96138
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
96139
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
96140
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
96141
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
96142
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
96143
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
96144
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
96145
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
96146
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
96147
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
96148
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
96149
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
96150
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
96151
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
96152
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
96153
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
96154
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
96155
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__753292611__call__852082698__callbacks'
|
96156
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
96157
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
96158
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
96159
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
96160
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
96161
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
96162
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
96163
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
96164
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
96165
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
96166
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
96167
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
96168
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
96169
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
96170
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
96171
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
96172
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
96173
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
96174
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
96175
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
96176
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
96177
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
96178
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
96179
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
96180
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
96181
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
96182
|
+
|
96183
|
+
|
96184
|
+
Rendered /home/jcl/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
96185
|
+
Rendered /home/jcl/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
|
96186
|
+
Rendered /home/jcl/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.5ms)
|
96187
|
+
|
96188
|
+
|
96189
|
+
Started GET "/adherent/members" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96190
|
+
Processing by Adherent::MembersController#index as HTML
|
96191
|
+
[1m[36mOrganism Load (0.4ms)[0m [1mSELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = 1 LIMIT 1[0m
|
96192
|
+
[1m[35mAdherent::Member Load (0.3ms)[0m SELECT "adherent_members".* FROM "adherent_members" WHERE "adherent_members"."organism_id" = 1
|
96193
|
+
[1m[36mAdherent::Adhesion Load (1.9ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 1[0m
|
96194
|
+
[1m[35m (0.4ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 1
|
96195
|
+
[1m[36mAdherent::Coord Load (0.7ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 1 LIMIT 1[0m
|
96196
|
+
[1m[35mAdherent::Adhesion Load (0.3ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 2
|
96197
|
+
[1m[36mAdherent::Coord Load (0.4ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 2 LIMIT 1[0m
|
96198
|
+
[1m[35mAdherent::Adhesion Load (0.4ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 3
|
96199
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 2[0m
|
96200
|
+
[1m[35mAdherent::Coord Load (1.9ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 3 LIMIT 1
|
96201
|
+
[1m[36mAdherent::Adhesion Load (0.3ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 6[0m
|
96202
|
+
[1m[35m (0.2ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 5
|
96203
|
+
[1m[36mAdherent::Coord Load (0.2ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 6 LIMIT 1[0m
|
96204
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (30.9ms)
|
96205
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_header.html.haml (1.0ms)
|
96206
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_flash_partial.html.haml (3.0ms)
|
96207
|
+
Completed 200 OK in 85ms (Views: 74.5ms | ActiveRecord: 7.7ms)
|
96208
|
+
|
96209
|
+
|
96210
|
+
Started GET "/assets/adherent/application.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96211
|
+
Served asset /adherent/application.css - 304 Not Modified (46ms)
|
96212
|
+
|
96213
|
+
|
96214
|
+
Started GET "/assets/adherent/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96215
|
+
Served asset /adherent/bootstrap.css - 304 Not Modified (2ms)
|
96216
|
+
|
96217
|
+
|
96218
|
+
Started GET "/assets/adherent/adhesion.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96219
|
+
Served asset /adherent/adhesion.css - 304 Not Modified (1ms)
|
96220
|
+
|
96221
|
+
|
96222
|
+
Started GET "/assets/jquery.ui.core.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96223
|
+
Served asset /jquery.ui.core.css - 304 Not Modified (0ms)
|
96224
|
+
|
96225
|
+
|
96226
|
+
Started GET "/assets/jquery.ui.theme.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96227
|
+
Served asset /jquery.ui.theme.css - 304 Not Modified (0ms)
|
96228
|
+
|
96229
|
+
|
96230
|
+
Started GET "/assets/jquery.ui.datepicker.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96231
|
+
Served asset /jquery.ui.datepicker.css - 304 Not Modified (0ms)
|
96232
|
+
|
96233
|
+
|
96234
|
+
Started GET "/assets/adherent/coords.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96235
|
+
Served asset /adherent/coords.css - 304 Not Modified (2ms)
|
96236
|
+
|
96237
|
+
|
96238
|
+
Started GET "/assets/adherent/date_picker.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96239
|
+
Served asset /adherent/date_picker.css - 304 Not Modified (2ms)
|
96240
|
+
|
96241
|
+
|
96242
|
+
Started GET "/assets/adherent/members.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96243
|
+
Served asset /adherent/members.css - 304 Not Modified (1ms)
|
96244
|
+
|
96245
|
+
|
96246
|
+
Started GET "/assets/adherent/jcmenu.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96247
|
+
Served asset /adherent/jcmenu.css - 304 Not Modified (2ms)
|
96248
|
+
|
96249
|
+
|
96250
|
+
Started GET "/assets/adherent/layouts.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96251
|
+
Served asset /adherent/layouts.css - 200 OK (2ms)
|
96252
|
+
|
96253
|
+
|
96254
|
+
Started GET "/assets/adherent/jc_application.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96255
|
+
Served asset /adherent/jc_application.css - 200 OK (2ms)
|
96256
|
+
|
96257
|
+
|
96258
|
+
Started GET "/assets/adherent/old_bootstrap.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96259
|
+
Served asset /adherent/old_bootstrap.css - 304 Not Modified (2ms)
|
96260
|
+
|
96261
|
+
|
96262
|
+
Started GET "/assets/adherent/payments.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96263
|
+
Served asset /adherent/payments.css - 304 Not Modified (7ms)
|
96264
|
+
|
96265
|
+
|
96266
|
+
Started GET "/assets/adherent/reglements.css?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96267
|
+
Served asset /adherent/reglements.css - 304 Not Modified (1ms)
|
96268
|
+
|
96269
|
+
|
96270
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96271
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
96272
|
+
|
96273
|
+
|
96274
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96275
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
96276
|
+
|
96277
|
+
|
96278
|
+
Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96279
|
+
Served asset /jquery.ui.datepicker.js - 304 Not Modified (0ms)
|
96280
|
+
|
96281
|
+
|
96282
|
+
Started GET "/assets/adherent/adhesion.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96283
|
+
Served asset /adherent/adhesion.js - 304 Not Modified (1ms)
|
96284
|
+
|
96285
|
+
|
96286
|
+
Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96287
|
+
Served asset /jquery.ui.core.js - 304 Not Modified (0ms)
|
96288
|
+
|
96289
|
+
|
96290
|
+
Started GET "/assets/adherent/coords.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96291
|
+
Served asset /adherent/coords.js - 304 Not Modified (7ms)
|
96292
|
+
|
96293
|
+
|
96294
|
+
Started GET "/assets/adherent/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96295
|
+
Served asset /adherent/bootstrap.js - 304 Not Modified (2ms)
|
96296
|
+
|
96297
|
+
|
96298
|
+
Started GET "/assets/adherent/date_picker.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96299
|
+
Served asset /adherent/date_picker.js - 304 Not Modified (4ms)
|
96300
|
+
|
96301
|
+
|
96302
|
+
Started GET "/assets/adherent/payments.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96303
|
+
Served asset /adherent/payments.js - 304 Not Modified (43ms)
|
96304
|
+
|
96305
|
+
|
96306
|
+
Started GET "/assets/adherent/members.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96307
|
+
Served asset /adherent/members.js - 304 Not Modified (7ms)
|
96308
|
+
|
96309
|
+
|
96310
|
+
Started GET "/assets/adherent/reglements.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96311
|
+
Served asset /adherent/reglements.js - 304 Not Modified (5ms)
|
96312
|
+
|
96313
|
+
|
96314
|
+
Started GET "/assets/adherent/application.js?body=1" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96315
|
+
Served asset /adherent/application.js - 304 Not Modified (19ms)
|
96316
|
+
|
96317
|
+
|
96318
|
+
Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96319
|
+
Served asset /adherent/icones/supprimer.png - 304 Not Modified (12ms)
|
96320
|
+
|
96321
|
+
|
96322
|
+
Started GET "/assets/adherent/icones/navigation90.png" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96323
|
+
Served asset /adherent/icones/navigation90.png - 200 OK (9ms)
|
96324
|
+
|
96325
|
+
|
96326
|
+
Started GET "/assets/adherent/icones/detail.png" for 127.0.0.1 at 2013-08-12 08:14:46 +0200
|
96327
|
+
Served asset /adherent/icones/detail.png - 304 Not Modified (19ms)
|
96328
|
+
|
96329
|
+
|
96330
|
+
Started GET "/assets/adherent/icones/modifier.png" for 127.0.0.1 at 2013-08-12 08:14:47 +0200
|
96331
|
+
Served asset /adherent/icones/modifier.png - 304 Not Modified (17ms)
|
96332
|
+
|
96333
|
+
|
96334
|
+
Started GET "/assets/adherent/icones/payment.png" for 127.0.0.1 at 2013-08-12 08:14:47 +0200
|
96335
|
+
Served asset /adherent/icones/payment.png - 304 Not Modified (10ms)
|
96336
|
+
|
96337
|
+
|
96338
|
+
Started GET "/assets/adherent/icones/afficher.png" for 127.0.0.1 at 2013-08-12 08:14:47 +0200
|
96339
|
+
Served asset /adherent/icones/afficher.png - 304 Not Modified (9ms)
|
96340
|
+
|
96341
|
+
|
96342
|
+
Started GET "/assets/adherent/icones/nouveau.png" for 127.0.0.1 at 2013-08-12 08:14:47 +0200
|
96343
|
+
Served asset /adherent/icones/nouveau.png - 200 OK (4ms)
|
96344
|
+
|
96345
|
+
|
96346
|
+
Started GET "/adherent/members" for 127.0.0.1 at 2013-08-12 08:17:08 +0200
|
96347
|
+
Processing by Adherent::MembersController#index as HTML
|
96348
|
+
[1m[35mOrganism Load (1.2ms)[0m SELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = 1 LIMIT 1
|
96349
|
+
[1m[36mAdherent::Member Load (0.6ms)[0m [1mSELECT "adherent_members".* FROM "adherent_members" WHERE "adherent_members"."organism_id" = 1[0m
|
96350
|
+
[1m[35mAdherent::Adhesion Load (0.6ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 1
|
96351
|
+
[1m[36m (0.4ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 1[0m
|
96352
|
+
[1m[35mAdherent::Coord Load (0.3ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 1 LIMIT 1
|
96353
|
+
[1m[36mAdherent::Adhesion Load (0.5ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 2[0m
|
96354
|
+
[1m[35mAdherent::Coord Load (0.3ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 2 LIMIT 1
|
96355
|
+
[1m[36mAdherent::Adhesion Load (0.2ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 3[0m
|
96356
|
+
[1m[35m (0.2ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 2
|
96357
|
+
[1m[36mAdherent::Coord Load (0.2ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 3 LIMIT 1[0m
|
96358
|
+
[1m[35mAdherent::Adhesion Load (0.2ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 6
|
96359
|
+
[1m[36m (0.3ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 5[0m
|
96360
|
+
[1m[35mAdherent::Coord Load (0.2ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 6 LIMIT 1
|
96361
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (27.0ms)
|
96362
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_header.html.haml (1.9ms)
|
96363
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_flash_partial.html.haml (0.2ms)
|
96364
|
+
Completed 200 OK in 58ms (Views: 48.9ms | ActiveRecord: 5.2ms)
|
96365
|
+
|
96366
|
+
|
96367
|
+
Started GET "/assets/adherent/application.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:08 +0200
|
96368
|
+
Served asset /adherent/application.css - 304 Not Modified (55ms)
|
96369
|
+
|
96370
|
+
|
96371
|
+
Started GET "/assets/adherent/adhesion.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:08 +0200
|
96372
|
+
Served asset /adherent/adhesion.css - 304 Not Modified (0ms)
|
96373
|
+
|
96374
|
+
|
96375
|
+
Started GET "/assets/jquery.ui.datepicker.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:08 +0200
|
96376
|
+
Served asset /jquery.ui.datepicker.css - 304 Not Modified (0ms)
|
96377
|
+
|
96378
|
+
|
96379
|
+
Started GET "/assets/jquery.ui.core.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:08 +0200
|
96380
|
+
Served asset /jquery.ui.core.css - 304 Not Modified (0ms)
|
96381
|
+
|
96382
|
+
|
96383
|
+
Started GET "/assets/jquery.ui.theme.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:08 +0200
|
96384
|
+
Served asset /jquery.ui.theme.css - 304 Not Modified (7ms)
|
96385
|
+
|
96386
|
+
|
96387
|
+
Started GET "/assets/adherent/coords.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:08 +0200
|
96388
|
+
Served asset /adherent/coords.css - 304 Not Modified (0ms)
|
96389
|
+
|
96390
|
+
|
96391
|
+
Started GET "/assets/adherent/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:08 +0200
|
96392
|
+
Served asset /adherent/bootstrap.css - 304 Not Modified (0ms)
|
96393
|
+
|
96394
|
+
|
96395
|
+
Started GET "/assets/adherent/jc_application.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:08 +0200
|
96396
|
+
Served asset /adherent/jc_application.css - 304 Not Modified (0ms)
|
96397
|
+
|
96398
|
+
|
96399
|
+
Started GET "/assets/adherent/jcmenu.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96400
|
+
Served asset /adherent/jcmenu.css - 304 Not Modified (0ms)
|
96401
|
+
|
96402
|
+
|
96403
|
+
Started GET "/assets/adherent/layouts.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96404
|
+
Served asset /adherent/layouts.css - 304 Not Modified (0ms)
|
96405
|
+
|
96406
|
+
|
96407
|
+
Started GET "/assets/adherent/date_picker.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96408
|
+
Served asset /adherent/date_picker.css - 304 Not Modified (0ms)
|
96409
|
+
|
96410
|
+
|
96411
|
+
Started GET "/assets/adherent/members.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96412
|
+
Served asset /adherent/members.css - 304 Not Modified (0ms)
|
96413
|
+
|
96414
|
+
|
96415
|
+
Started GET "/assets/adherent/old_bootstrap.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96416
|
+
Served asset /adherent/old_bootstrap.css - 304 Not Modified (0ms)
|
96417
|
+
|
96418
|
+
|
96419
|
+
Started GET "/assets/adherent/reglements.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96420
|
+
Served asset /adherent/reglements.css - 304 Not Modified (0ms)
|
96421
|
+
|
96422
|
+
|
96423
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96424
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
96425
|
+
|
96426
|
+
|
96427
|
+
Started GET "/assets/adherent/payments.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96428
|
+
Served asset /adherent/payments.css - 304 Not Modified (0ms)
|
96429
|
+
|
96430
|
+
|
96431
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96432
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
96433
|
+
|
96434
|
+
|
96435
|
+
Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96436
|
+
Served asset /jquery.ui.datepicker.js - 304 Not Modified (0ms)
|
96437
|
+
|
96438
|
+
|
96439
|
+
Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96440
|
+
Served asset /jquery.ui.core.js - 304 Not Modified (0ms)
|
96441
|
+
|
96442
|
+
|
96443
|
+
Started GET "/assets/adherent/adhesion.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96444
|
+
Served asset /adherent/adhesion.js - 304 Not Modified (2ms)
|
96445
|
+
|
96446
|
+
|
96447
|
+
Started GET "/assets/adherent/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96448
|
+
Served asset /adherent/bootstrap.js - 304 Not Modified (0ms)
|
96449
|
+
|
96450
|
+
|
96451
|
+
Started GET "/assets/adherent/coords.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96452
|
+
Served asset /adherent/coords.js - 304 Not Modified (0ms)
|
96453
|
+
|
96454
|
+
|
96455
|
+
Started GET "/assets/adherent/date_picker.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96456
|
+
Served asset /adherent/date_picker.js - 304 Not Modified (0ms)
|
96457
|
+
|
96458
|
+
|
96459
|
+
Started GET "/assets/adherent/members.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96460
|
+
Served asset /adherent/members.js - 304 Not Modified (0ms)
|
96461
|
+
|
96462
|
+
|
96463
|
+
Started GET "/assets/adherent/payments.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96464
|
+
Served asset /adherent/payments.js - 304 Not Modified (0ms)
|
96465
|
+
|
96466
|
+
|
96467
|
+
Started GET "/assets/adherent/reglements.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96468
|
+
Served asset /adherent/reglements.js - 304 Not Modified (0ms)
|
96469
|
+
|
96470
|
+
|
96471
|
+
Started GET "/assets/adherent/application.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96472
|
+
Served asset /adherent/application.js - 304 Not Modified (5ms)
|
96473
|
+
|
96474
|
+
|
96475
|
+
Started GET "/assets/adherent/icones/navigation90.png" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96476
|
+
Served asset /adherent/icones/navigation90.png - 304 Not Modified (0ms)
|
96477
|
+
|
96478
|
+
|
96479
|
+
Started GET "/assets/adherent/icones/detail.png" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96480
|
+
Served asset /adherent/icones/detail.png - 304 Not Modified (0ms)
|
96481
|
+
|
96482
|
+
|
96483
|
+
Started GET "/assets/adherent/icones/payment.png" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96484
|
+
Served asset /adherent/icones/payment.png - 304 Not Modified (0ms)
|
96485
|
+
|
96486
|
+
|
96487
|
+
Started GET "/assets/adherent/icones/afficher.png" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96488
|
+
Served asset /adherent/icones/afficher.png - 304 Not Modified (0ms)
|
96489
|
+
|
96490
|
+
|
96491
|
+
Started GET "/assets/adherent/icones/nouveau.png" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96492
|
+
Served asset /adherent/icones/nouveau.png - 304 Not Modified (0ms)
|
96493
|
+
|
96494
|
+
|
96495
|
+
Started GET "/assets/adherent/icones/modifier.png" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96496
|
+
Served asset /adherent/icones/modifier.png - 304 Not Modified (0ms)
|
96497
|
+
|
96498
|
+
|
96499
|
+
Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2013-08-12 08:17:09 +0200
|
96500
|
+
Served asset /adherent/icones/supprimer.png - 304 Not Modified (0ms)
|
96501
|
+
|
96502
|
+
|
96503
|
+
Started GET "/adherent/members" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96504
|
+
Processing by Adherent::MembersController#index as HTML
|
96505
|
+
[1m[36mOrganism Load (1.9ms)[0m [1mSELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = 1 LIMIT 1[0m
|
96506
|
+
[1m[35mAdherent::Member Load (1.8ms)[0m SELECT "adherent_members".* FROM "adherent_members" WHERE "adherent_members"."organism_id" = 1
|
96507
|
+
[1m[36mAdherent::Adhesion Load (0.4ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 1[0m
|
96508
|
+
[1m[35m (0.2ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 1
|
96509
|
+
[1m[36mAdherent::Coord Load (0.2ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 1 LIMIT 1[0m
|
96510
|
+
[1m[35mAdherent::Adhesion Load (0.3ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 2
|
96511
|
+
[1m[36mAdherent::Coord Load (1.5ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 2 LIMIT 1[0m
|
96512
|
+
[1m[35mAdherent::Adhesion Load (1.2ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 3
|
96513
|
+
[1m[36m (0.3ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 2[0m
|
96514
|
+
[1m[35mAdherent::Coord Load (0.3ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 3 LIMIT 1
|
96515
|
+
[1m[36mAdherent::Adhesion Load (0.3ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 6[0m
|
96516
|
+
[1m[35m (0.2ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 5
|
96517
|
+
[1m[36mAdherent::Coord Load (0.3ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 6 LIMIT 1[0m
|
96518
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (24.7ms)
|
96519
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_header.html.haml (1.3ms)
|
96520
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_flash_partial.html.haml (0.1ms)
|
96521
|
+
Completed 200 OK in 87ms (Views: 74.8ms | ActiveRecord: 8.8ms)
|
96522
|
+
|
96523
|
+
|
96524
|
+
Started GET "/assets/adherent/application.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96525
|
+
Served asset /adherent/application.css - 304 Not Modified (1ms)
|
96526
|
+
|
96527
|
+
|
96528
|
+
Started GET "/assets/jquery.ui.core.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96529
|
+
Served asset /jquery.ui.core.css - 304 Not Modified (0ms)
|
96530
|
+
|
96531
|
+
|
96532
|
+
Started GET "/assets/jquery.ui.datepicker.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96533
|
+
Served asset /jquery.ui.datepicker.css - 304 Not Modified (0ms)
|
96534
|
+
|
96535
|
+
|
96536
|
+
Started GET "/assets/adherent/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96537
|
+
Served asset /adherent/bootstrap.css - 304 Not Modified (0ms)
|
96538
|
+
|
96539
|
+
|
96540
|
+
Started GET "/assets/adherent/adhesion.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96541
|
+
Served asset /adherent/adhesion.css - 304 Not Modified (0ms)
|
96542
|
+
|
96543
|
+
|
96544
|
+
Started GET "/assets/jquery.ui.theme.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96545
|
+
Served asset /jquery.ui.theme.css - 304 Not Modified (0ms)
|
96546
|
+
|
96547
|
+
|
96548
|
+
Started GET "/assets/adherent/date_picker.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96549
|
+
Served asset /adherent/date_picker.css - 304 Not Modified (0ms)
|
96550
|
+
|
96551
|
+
|
96552
|
+
Started GET "/assets/adherent/coords.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96553
|
+
Served asset /adherent/coords.css - 304 Not Modified (0ms)
|
96554
|
+
|
96555
|
+
|
96556
|
+
Started GET "/assets/adherent/jc_application.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96557
|
+
Served asset /adherent/jc_application.css - 304 Not Modified (0ms)
|
96558
|
+
|
96559
|
+
|
96560
|
+
Started GET "/assets/adherent/layouts.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96561
|
+
Served asset /adherent/layouts.css - 304 Not Modified (0ms)
|
96562
|
+
|
96563
|
+
|
96564
|
+
Started GET "/assets/adherent/jcmenu.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96565
|
+
Served asset /adherent/jcmenu.css - 304 Not Modified (0ms)
|
96566
|
+
|
96567
|
+
|
96568
|
+
Started GET "/assets/adherent/members.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96569
|
+
Served asset /adherent/members.css - 304 Not Modified (0ms)
|
96570
|
+
|
96571
|
+
|
96572
|
+
Started GET "/assets/adherent/payments.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96573
|
+
Served asset /adherent/payments.css - 304 Not Modified (0ms)
|
96574
|
+
|
96575
|
+
|
96576
|
+
Started GET "/assets/adherent/old_bootstrap.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96577
|
+
Served asset /adherent/old_bootstrap.css - 304 Not Modified (0ms)
|
96578
|
+
|
96579
|
+
|
96580
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96581
|
+
Served asset /jquery.js - 304 Not Modified (7ms)
|
96582
|
+
|
96583
|
+
|
96584
|
+
Started GET "/assets/adherent/reglements.css?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96585
|
+
Served asset /adherent/reglements.css - 304 Not Modified (0ms)
|
96586
|
+
|
96587
|
+
|
96588
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96589
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
96590
|
+
|
96591
|
+
|
96592
|
+
Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96593
|
+
Served asset /jquery.ui.core.js - 304 Not Modified (0ms)
|
96594
|
+
|
96595
|
+
|
96596
|
+
Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96597
|
+
Served asset /jquery.ui.datepicker.js - 304 Not Modified (0ms)
|
96598
|
+
|
96599
|
+
|
96600
|
+
Started GET "/assets/adherent/adhesion.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96601
|
+
Served asset /adherent/adhesion.js - 304 Not Modified (0ms)
|
96602
|
+
|
96603
|
+
|
96604
|
+
Started GET "/assets/adherent/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96605
|
+
Served asset /adherent/bootstrap.js - 304 Not Modified (0ms)
|
96606
|
+
|
96607
|
+
|
96608
|
+
Started GET "/assets/adherent/date_picker.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96609
|
+
Served asset /adherent/date_picker.js - 304 Not Modified (0ms)
|
96610
|
+
|
96611
|
+
|
96612
|
+
Started GET "/assets/adherent/coords.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96613
|
+
Served asset /adherent/coords.js - 304 Not Modified (0ms)
|
96614
|
+
|
96615
|
+
|
96616
|
+
Started GET "/assets/adherent/payments.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96617
|
+
Served asset /adherent/payments.js - 304 Not Modified (0ms)
|
96618
|
+
|
96619
|
+
|
96620
|
+
Started GET "/assets/adherent/members.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96621
|
+
Served asset /adherent/members.js - 304 Not Modified (0ms)
|
96622
|
+
|
96623
|
+
|
96624
|
+
Started GET "/assets/adherent/reglements.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96625
|
+
Served asset /adherent/reglements.js - 304 Not Modified (0ms)
|
96626
|
+
|
96627
|
+
|
96628
|
+
Started GET "/assets/adherent/application.js?body=1" for 127.0.0.1 at 2013-08-12 08:17:28 +0200
|
96629
|
+
Served asset /adherent/application.js - 304 Not Modified (1ms)
|
96630
|
+
|
96631
|
+
|
96632
|
+
Started GET "/assets/adherent/icones/navigation90.png" for 127.0.0.1 at 2013-08-12 08:17:29 +0200
|
96633
|
+
Served asset /adherent/icones/navigation90.png - 304 Not Modified (0ms)
|
96634
|
+
|
96635
|
+
|
96636
|
+
Started GET "/assets/adherent/icones/nouveau.png" for 127.0.0.1 at 2013-08-12 08:17:29 +0200
|
96637
|
+
Served asset /adherent/icones/nouveau.png - 304 Not Modified (0ms)
|
96638
|
+
|
96639
|
+
|
96640
|
+
Started GET "/assets/adherent/icones/detail.png" for 127.0.0.1 at 2013-08-12 08:17:29 +0200
|
96641
|
+
Served asset /adherent/icones/detail.png - 304 Not Modified (1ms)
|
96642
|
+
|
96643
|
+
|
96644
|
+
Started GET "/assets/adherent/icones/afficher.png" for 127.0.0.1 at 2013-08-12 08:17:29 +0200
|
96645
|
+
Served asset /adherent/icones/afficher.png - 304 Not Modified (0ms)
|
96646
|
+
|
96647
|
+
|
96648
|
+
Started GET "/assets/adherent/icones/payment.png" for 127.0.0.1 at 2013-08-12 08:17:29 +0200
|
96649
|
+
Served asset /adherent/icones/payment.png - 304 Not Modified (0ms)
|
96650
|
+
|
96651
|
+
|
96652
|
+
Started GET "/assets/adherent/icones/modifier.png" for 127.0.0.1 at 2013-08-12 08:17:29 +0200
|
96653
|
+
Served asset /adherent/icones/modifier.png - 304 Not Modified (0ms)
|
96654
|
+
|
96655
|
+
|
96656
|
+
Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2013-08-12 08:17:29 +0200
|
96657
|
+
Served asset /adherent/icones/supprimer.png - 304 Not Modified (0ms)
|
96658
|
+
|
96659
|
+
|
96660
|
+
Started GET "/adherent/members" for 127.0.0.1 at 2013-08-12 08:22:28 +0200
|
96661
|
+
Processing by Adherent::MembersController#index as HTML
|
96662
|
+
[1m[35mOrganism Load (0.5ms)[0m SELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = 1 LIMIT 1
|
96663
|
+
[1m[36mAdherent::Member Load (0.3ms)[0m [1mSELECT "adherent_members".* FROM "adherent_members" WHERE "adherent_members"."organism_id" = 1[0m
|
96664
|
+
[1m[35mAdherent::Adhesion Load (0.4ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 1
|
96665
|
+
[1m[36m (2.0ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 1[0m
|
96666
|
+
[1m[35mAdherent::Coord Load (1.2ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 1 LIMIT 1
|
96667
|
+
[1m[36mAdherent::Adhesion Load (0.3ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 2[0m
|
96668
|
+
[1m[35mAdherent::Coord Load (0.1ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 2 LIMIT 1
|
96669
|
+
[1m[36mAdherent::Adhesion Load (0.3ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 3[0m
|
96670
|
+
[1m[35m (0.2ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 2
|
96671
|
+
[1m[36mAdherent::Coord Load (0.3ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 3 LIMIT 1[0m
|
96672
|
+
[1m[35mAdherent::Adhesion Load (0.3ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 6
|
96673
|
+
[1m[36m (0.3ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 5[0m
|
96674
|
+
[1m[35mAdherent::Coord Load (0.2ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 6 LIMIT 1
|
96675
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (33.2ms)
|
96676
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_header.html.haml (2.1ms)
|
96677
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_flash_partial.html.haml (0.1ms)
|
96678
|
+
Completed 500 Internal Server Error in 58ms
|
96679
|
+
|
96680
|
+
ActionView::Template::Error (Missing partial layouts/adherent/bottom_page with {:locale=>[:fr], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
|
96681
|
+
* "/home/jcl/rails_project/Adherent/test/dummy/app/views"
|
96682
|
+
* "/home/jcl/rails_project/Adherent/app/views"
|
96683
|
+
):
|
96684
|
+
36: <div class ="push"></div>
|
96685
|
+
37: </div>
|
96686
|
+
38:
|
96687
|
+
39: <%= render 'layouts/adherent/bottom_page' %>
|
96688
|
+
40:
|
96689
|
+
41: </body>
|
96690
|
+
42: </html>
|
96691
|
+
actionpack (3.2.14) lib/action_view/path_set.rb:58:in `find'
|
96692
|
+
actionpack (3.2.14) lib/action_view/lookup_context.rb:115:in `find'
|
96693
|
+
actionpack (3.2.14) lib/action_view/renderer/partial_renderer.rb:341:in `find_template'
|
96694
|
+
actionpack (3.2.14) lib/action_view/renderer/partial_renderer.rb:335:in `find_partial'
|
96695
|
+
actionpack (3.2.14) lib/action_view/renderer/partial_renderer.rb:222:in `render'
|
96696
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
96697
|
+
actionpack (3.2.14) lib/action_view/helpers/rendering_helper.rb:27:in `render'
|
96698
|
+
haml (4.0.3) lib/haml/helpers/action_view_mods.rb:12:in `render_with_haml'
|
96699
|
+
/home/jcl/rails_project/Adherent/app/views/layouts/adherent/application.html.erb:39:in `__home_jcl_rails_project__dherent_app_views_layouts_adherent_application_html_erb__391086556_75332150'
|
96700
|
+
actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render'
|
96701
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument'
|
96702
|
+
actionpack (3.2.14) lib/action_view/template.rb:143:in `render'
|
96703
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout'
|
96704
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template'
|
96705
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render'
|
96706
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
96707
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
|
96708
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
96709
|
+
actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
96710
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
96711
|
+
actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
96712
|
+
actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
96713
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
|
96714
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
|
96715
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
96716
|
+
activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
96717
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
96718
|
+
activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
96719
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
96720
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
96721
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
96722
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
96723
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
96724
|
+
actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
96725
|
+
/home/jcl/rails_project/Adherent/app/controllers/adherent/members_controller.rb:12:in `index'
|
96726
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
96727
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
96728
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
96729
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
96730
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:425:in `_run__689821763__process_action__340772721__callbacks'
|
96731
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
96732
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
96733
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
96734
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
96735
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
96736
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
96737
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
96738
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
96739
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
96740
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
96741
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
96742
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
96743
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
96744
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
96745
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
96746
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
96747
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
96748
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
96749
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
96750
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
96751
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
96752
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
96753
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
96754
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
96755
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
96756
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
96757
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
96758
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
96759
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
96760
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
96761
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
96762
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
96763
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
96764
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
96765
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
96766
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
96767
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
96768
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
96769
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
96770
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
96771
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
96772
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
96773
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__753292611__call__852082698__callbacks'
|
96774
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
96775
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
96776
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
96777
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
96778
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
96779
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
96780
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
96781
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
96782
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
96783
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
96784
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
96785
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
96786
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
96787
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
96788
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
96789
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
96790
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
96791
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
96792
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
96793
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
96794
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
96795
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
96796
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
96797
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
96798
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
96799
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
96800
|
+
|
96801
|
+
|
96802
|
+
Rendered /home/jcl/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
96803
|
+
Rendered /home/jcl/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms)
|
96804
|
+
Rendered /home/jcl/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.2ms)
|
96805
|
+
|
96806
|
+
|
96807
|
+
Started GET "/adherent/members" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96808
|
+
Processing by Adherent::MembersController#index as HTML
|
96809
|
+
[1m[36mOrganism Load (0.4ms)[0m [1mSELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = 1 LIMIT 1[0m
|
96810
|
+
[1m[35mAdherent::Member Load (0.6ms)[0m SELECT "adherent_members".* FROM "adherent_members" WHERE "adherent_members"."organism_id" = 1
|
96811
|
+
[1m[36mAdherent::Adhesion Load (0.4ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 1[0m
|
96812
|
+
[1m[35m (5.7ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 1
|
96813
|
+
[1m[36mAdherent::Coord Load (2.0ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 1 LIMIT 1[0m
|
96814
|
+
[1m[35mAdherent::Adhesion Load (1.0ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 2
|
96815
|
+
[1m[36mAdherent::Coord Load (0.4ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 2 LIMIT 1[0m
|
96816
|
+
[1m[35mAdherent::Adhesion Load (0.3ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 3
|
96817
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 2[0m
|
96818
|
+
[1m[35mAdherent::Coord Load (0.3ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 3 LIMIT 1
|
96819
|
+
[1m[36mAdherent::Adhesion Load (0.3ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 6[0m
|
96820
|
+
[1m[35m (0.3ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 5
|
96821
|
+
[1m[36mAdherent::Coord Load (0.4ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 6 LIMIT 1[0m
|
96822
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (33.2ms)
|
96823
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_header.html.haml (0.1ms)
|
96824
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_flash_partial.html.haml (0.0ms)
|
96825
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_footer.html.haml (1.2ms)
|
96826
|
+
Completed 200 OK in 58ms (Views: 41.1ms | ActiveRecord: 12.4ms)
|
96827
|
+
|
96828
|
+
|
96829
|
+
Started GET "/assets/adherent/application.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96830
|
+
Served asset /adherent/application.css - 304 Not Modified (1ms)
|
96831
|
+
|
96832
|
+
|
96833
|
+
Started GET "/assets/jquery.ui.theme.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96834
|
+
Served asset /jquery.ui.theme.css - 304 Not Modified (0ms)
|
96835
|
+
|
96836
|
+
|
96837
|
+
Started GET "/assets/jquery.ui.core.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96838
|
+
Served asset /jquery.ui.core.css - 304 Not Modified (0ms)
|
96839
|
+
|
96840
|
+
|
96841
|
+
Started GET "/assets/adherent/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96842
|
+
Served asset /adherent/bootstrap.css - 304 Not Modified (0ms)
|
96843
|
+
|
96844
|
+
|
96845
|
+
Started GET "/assets/adherent/adhesion.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96846
|
+
Served asset /adherent/adhesion.css - 304 Not Modified (0ms)
|
96847
|
+
|
96848
|
+
|
96849
|
+
Started GET "/assets/jquery.ui.datepicker.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96850
|
+
Served asset /jquery.ui.datepicker.css - 304 Not Modified (0ms)
|
96851
|
+
|
96852
|
+
|
96853
|
+
Started GET "/assets/adherent/coords.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96854
|
+
Served asset /adherent/coords.css - 304 Not Modified (0ms)
|
96855
|
+
|
96856
|
+
|
96857
|
+
Started GET "/assets/adherent/jc_application.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96858
|
+
Served asset /adherent/jc_application.css - 304 Not Modified (0ms)
|
96859
|
+
|
96860
|
+
|
96861
|
+
Started GET "/assets/adherent/jcmenu.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96862
|
+
Served asset /adherent/jcmenu.css - 304 Not Modified (0ms)
|
96863
|
+
|
96864
|
+
|
96865
|
+
Started GET "/assets/adherent/layouts.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96866
|
+
Served asset /adherent/layouts.css - 304 Not Modified (0ms)
|
96867
|
+
|
96868
|
+
|
96869
|
+
Started GET "/assets/adherent/members.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96870
|
+
Served asset /adherent/members.css - 304 Not Modified (0ms)
|
96871
|
+
|
96872
|
+
|
96873
|
+
Started GET "/assets/adherent/date_picker.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96874
|
+
Served asset /adherent/date_picker.css - 304 Not Modified (0ms)
|
96875
|
+
|
96876
|
+
|
96877
|
+
Started GET "/assets/adherent/old_bootstrap.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96878
|
+
Served asset /adherent/old_bootstrap.css - 304 Not Modified (0ms)
|
96879
|
+
|
96880
|
+
|
96881
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96882
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
96883
|
+
|
96884
|
+
|
96885
|
+
Started GET "/assets/adherent/payments.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96886
|
+
Served asset /adherent/payments.css - 304 Not Modified (0ms)
|
96887
|
+
|
96888
|
+
|
96889
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96890
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
96891
|
+
|
96892
|
+
|
96893
|
+
Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96894
|
+
Served asset /jquery.ui.core.js - 304 Not Modified (0ms)
|
96895
|
+
|
96896
|
+
|
96897
|
+
Started GET "/assets/adherent/reglements.css?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96898
|
+
Served asset /adherent/reglements.css - 304 Not Modified (0ms)
|
96899
|
+
|
96900
|
+
|
96901
|
+
Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96902
|
+
Served asset /jquery.ui.datepicker.js - 304 Not Modified (0ms)
|
96903
|
+
|
96904
|
+
|
96905
|
+
Started GET "/assets/adherent/adhesion.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96906
|
+
Served asset /adherent/adhesion.js - 304 Not Modified (0ms)
|
96907
|
+
|
96908
|
+
|
96909
|
+
Started GET "/assets/adherent/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96910
|
+
Served asset /adherent/bootstrap.js - 304 Not Modified (0ms)
|
96911
|
+
|
96912
|
+
|
96913
|
+
Started GET "/assets/adherent/date_picker.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96914
|
+
Served asset /adherent/date_picker.js - 304 Not Modified (0ms)
|
96915
|
+
|
96916
|
+
|
96917
|
+
Started GET "/assets/adherent/coords.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96918
|
+
Served asset /adherent/coords.js - 304 Not Modified (0ms)
|
96919
|
+
|
96920
|
+
|
96921
|
+
Started GET "/assets/adherent/members.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96922
|
+
Served asset /adherent/members.js - 304 Not Modified (0ms)
|
96923
|
+
|
96924
|
+
|
96925
|
+
Started GET "/assets/adherent/payments.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96926
|
+
Served asset /adherent/payments.js - 304 Not Modified (0ms)
|
96927
|
+
|
96928
|
+
|
96929
|
+
Started GET "/assets/adherent/reglements.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96930
|
+
Served asset /adherent/reglements.js - 304 Not Modified (0ms)
|
96931
|
+
|
96932
|
+
|
96933
|
+
Started GET "/assets/adherent/application.js?body=1" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96934
|
+
Served asset /adherent/application.js - 304 Not Modified (1ms)
|
96935
|
+
|
96936
|
+
|
96937
|
+
Started GET "/assets/adherent/icones/navigation90.png" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96938
|
+
Served asset /adherent/icones/navigation90.png - 304 Not Modified (0ms)
|
96939
|
+
|
96940
|
+
|
96941
|
+
Started GET "/assets/adherent/icones/nouveau.png" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96942
|
+
Served asset /adherent/icones/nouveau.png - 304 Not Modified (0ms)
|
96943
|
+
|
96944
|
+
|
96945
|
+
Started GET "/assets/adherent/icones/detail.png" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96946
|
+
Served asset /adherent/icones/detail.png - 304 Not Modified (0ms)
|
96947
|
+
|
96948
|
+
|
96949
|
+
Started GET "/assets/adherent/icones/afficher.png" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96950
|
+
Served asset /adherent/icones/afficher.png - 304 Not Modified (0ms)
|
96951
|
+
|
96952
|
+
|
96953
|
+
Started GET "/assets/adherent/icones/payment.png" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96954
|
+
Served asset /adherent/icones/payment.png - 304 Not Modified (0ms)
|
96955
|
+
|
96956
|
+
|
96957
|
+
Started GET "/assets/adherent/icones/modifier.png" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96958
|
+
Served asset /adherent/icones/modifier.png - 304 Not Modified (0ms)
|
96959
|
+
|
96960
|
+
|
96961
|
+
Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
96962
|
+
Served asset /adherent/icones/supprimer.png - 304 Not Modified (0ms)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: adherent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jean-Claude Lepage
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-08-
|
11
|
+
date: 2013-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -166,6 +166,8 @@ files:
|
|
166
166
|
- app/models/adherent/member.rb
|
167
167
|
- app/models/adherent/coord.rb
|
168
168
|
- app/views/layouts/adherent/_flash_partial.html.haml
|
169
|
+
- app/views/layouts/adherent/_header.html.haml
|
170
|
+
- app/views/layouts/adherent/_footer.html.haml
|
169
171
|
- app/views/layouts/adherent/application.html.erb
|
170
172
|
- app/views/adherent/members/_form.html.erb
|
171
173
|
- app/views/adherent/members/index.html.erb
|
@@ -416,7 +418,8 @@ files:
|
|
416
418
|
- test/functional/adherent/adhesion_controller_test.rb
|
417
419
|
- test/functional/adherent/payments_controller_test.rb
|
418
420
|
homepage: http://faiteslescomptes.fr
|
419
|
-
licenses:
|
421
|
+
licenses:
|
422
|
+
- MIT
|
420
423
|
metadata: {}
|
421
424
|
post_install_message:
|
422
425
|
rdoc_options: []
|