adherent 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.rdoc +3 -1
- data/app/assets/stylesheets/adherent/bootstrap.css +2 -2
- data/app/assets/stylesheets/adherent/jc_application.css.scss +1 -1
- data/app/assets/stylesheets/adherent/layouts.css.scss +31 -1
- data/app/views/layouts/adherent/application.html.erb +1 -1
- data/lib/adherent/version.rb +1 -1
- data/test/dummy/app/views/layouts/adherent/_header.html.haml +1 -0
- data/test/dummy/log/development.log +405 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cee13aa5dde08ef3ed35cd0bbc7987d1219d8d08
|
|
4
|
+
data.tar.gz: 3793075659dedf24f933d4ef85419fd8e66d86b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3e621c71ea7d4f2c86802c1afed6a35709f250fda6fb1a3f2bfe7cca3cfc4feff542e21cf570f45b597d6ef03ccbf5c5ac041cf21edb796659e71eb16d2049a
|
|
7
|
+
data.tar.gz: 59610e13e2b477d073c0ccf0398d2932cdd8828b52e4e37429d73f601cc58f61ed3079d24a9a5c26ceb7f471ceec1274469c2ad55bf060d882ad3c985c86efa2
|
data/README.rdoc
CHANGED
|
@@ -134,7 +134,9 @@ Les modèles doivent être préfixés : Adherent::Member, Adherent::Adhesion, Ad
|
|
|
134
134
|
|
|
135
135
|
Les tables elles mêmes sont "adherent_members", "adherent_adhesions",...
|
|
136
136
|
|
|
137
|
-
|
|
137
|
+
Des partials adherent_header et adherent_footer ont été mis en place dans le layout.
|
|
138
|
+
On peut soit les masquer par un style, soit les surcharger dans l'application principale pour
|
|
139
|
+
mieux intégrer les vues Adherent dans l'application principale.
|
|
138
140
|
|
|
139
141
|
|
|
140
142
|
= License
|
|
@@ -3137,7 +3137,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
3137
3137
|
}
|
|
3138
3138
|
.navbar {
|
|
3139
3139
|
overflow: visible;
|
|
3140
|
-
margin-bottom:
|
|
3140
|
+
margin-bottom: 0px;
|
|
3141
3141
|
color: #555555;
|
|
3142
3142
|
*position: relative;
|
|
3143
3143
|
*z-index: 2;
|
|
@@ -3172,7 +3172,7 @@ input[type="submit"].btn.btn-mini {
|
|
|
3172
3172
|
float: left;
|
|
3173
3173
|
display: block;
|
|
3174
3174
|
padding: 10px 45px 10px;
|
|
3175
|
-
margin-left: -
|
|
3175
|
+
margin-left: -18px;
|
|
3176
3176
|
font-size: 20px;
|
|
3177
3177
|
font-weight: 200;
|
|
3178
3178
|
color: #bbbbbb;
|
|
@@ -19,7 +19,7 @@ html, body {
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
.brand {
|
|
23
23
|
background-image: image-url("sigma.png");
|
|
24
24
|
background-repeat: no-repeat;
|
|
25
25
|
background-position: 3px 3px;
|
|
@@ -29,7 +29,37 @@ html, body {
|
|
|
29
29
|
color: #bbbbbb;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
+
|
|
33
|
+
.navbar .brand {
|
|
34
|
+
padding-top:4px;
|
|
35
|
+
padding-bottom: 4px;
|
|
36
|
+
height: 2em;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.navbar-inner {
|
|
40
|
+
margin-bottom: 4px;
|
|
41
|
+
background-image: linear-gradient(to bottom, #013771, #235993);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
#login_logout {
|
|
45
|
+
margin-top: 4px;
|
|
46
|
+
font-size: 50%;
|
|
47
|
+
span {
|
|
48
|
+
font-weight: bold;
|
|
49
|
+
}
|
|
50
|
+
a {
|
|
51
|
+
color: #fff;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
32
54
|
|
|
55
|
+
.navbar .nav > .active > a,
|
|
56
|
+
.navbar .nav > .active > a:hover,
|
|
57
|
+
.navbar .nav > .active > a:focus {
|
|
58
|
+
|
|
59
|
+
background-color: #013771;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
|
|
33
63
|
.container-fluid {
|
|
34
64
|
min-height: 100%;
|
|
35
65
|
height: auto !important;
|
data/lib/adherent/version.rb
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
%div Mon header personnalisé
|
|
@@ -96960,3 +96960,408 @@ Served asset /adherent/icones/modifier.png - 304 Not Modified (0ms)
|
|
|
96960
96960
|
|
|
96961
96961
|
Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2013-08-12 08:22:52 +0200
|
|
96962
96962
|
Served asset /adherent/icones/supprimer.png - 304 Not Modified (0ms)
|
|
96963
|
+
Connecting to database specified by database.yml
|
|
96964
|
+
|
|
96965
|
+
|
|
96966
|
+
Started GET "/" for 127.0.0.1 at 2013-08-12 08:37:02 +0200
|
|
96967
|
+
Processing by OrganismsController#index as HTML
|
|
96968
|
+
[1m[36mOrganism Load (0.3ms)[0m [1mSELECT "organisms".* FROM "organisms" [0m
|
|
96969
|
+
Rendered organisms/index.html.haml within layouts/application (22.2ms)
|
|
96970
|
+
Completed 200 OK in 538ms (Views: 402.2ms | ActiveRecord: 103.3ms)
|
|
96971
|
+
|
|
96972
|
+
|
|
96973
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
96974
|
+
Served asset /application.css - 304 Not Modified (8ms)
|
|
96975
|
+
|
|
96976
|
+
|
|
96977
|
+
Started GET "/assets/jquery.ui.theme.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
96978
|
+
Served asset /jquery.ui.theme.css - 304 Not Modified (12ms)
|
|
96979
|
+
|
|
96980
|
+
|
|
96981
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
96982
|
+
Served asset /scaffold.css - 304 Not Modified (1ms)
|
|
96983
|
+
|
|
96984
|
+
|
|
96985
|
+
Started GET "/assets/organisms.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
96986
|
+
Served asset /organisms.css - 304 Not Modified (5ms)
|
|
96987
|
+
|
|
96988
|
+
|
|
96989
|
+
Started GET "/assets/jquery.ui.datepicker.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
96990
|
+
Served asset /jquery.ui.datepicker.css - 304 Not Modified (13ms)
|
|
96991
|
+
|
|
96992
|
+
|
|
96993
|
+
Started GET "/assets/jquery.ui.core.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
96994
|
+
Served asset /jquery.ui.core.css - 304 Not Modified (6ms)
|
|
96995
|
+
|
|
96996
|
+
|
|
96997
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
96998
|
+
Served asset /jquery.js - 304 Not Modified (8ms)
|
|
96999
|
+
|
|
97000
|
+
|
|
97001
|
+
Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
97002
|
+
Served asset /jquery.ui.core.js - 304 Not Modified (2ms)
|
|
97003
|
+
|
|
97004
|
+
|
|
97005
|
+
Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
97006
|
+
Served asset /jquery.ui.datepicker.js - 304 Not Modified (9ms)
|
|
97007
|
+
|
|
97008
|
+
|
|
97009
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
97010
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
97011
|
+
|
|
97012
|
+
|
|
97013
|
+
Started GET "/assets/organisms.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
97014
|
+
Served asset /organisms.js - 304 Not Modified (2ms)
|
|
97015
|
+
|
|
97016
|
+
|
|
97017
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:03 +0200
|
|
97018
|
+
Served asset /application.js - 304 Not Modified (15ms)
|
|
97019
|
+
|
|
97020
|
+
|
|
97021
|
+
Started GET "/organisms/2" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97022
|
+
Processing by OrganismsController#show as HTML
|
|
97023
|
+
Parameters: {"id"=>"2"}
|
|
97024
|
+
[1m[35mOrganism Load (20.7ms)[0m SELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = $1 LIMIT 1 [["id", "2"]]
|
|
97025
|
+
Rendered organisms/show.html.haml within layouts/application (11.3ms)
|
|
97026
|
+
Completed 200 OK in 57ms (Views: 34.5ms | ActiveRecord: 20.8ms)
|
|
97027
|
+
|
|
97028
|
+
|
|
97029
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97030
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
|
97031
|
+
|
|
97032
|
+
|
|
97033
|
+
Started GET "/assets/jquery.ui.theme.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97034
|
+
Served asset /jquery.ui.theme.css - 304 Not Modified (0ms)
|
|
97035
|
+
|
|
97036
|
+
|
|
97037
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97038
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
|
97039
|
+
|
|
97040
|
+
|
|
97041
|
+
Started GET "/assets/organisms.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97042
|
+
Served asset /organisms.css - 304 Not Modified (0ms)
|
|
97043
|
+
|
|
97044
|
+
|
|
97045
|
+
Started GET "/assets/jquery.ui.datepicker.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97046
|
+
Served asset /jquery.ui.datepicker.css - 304 Not Modified (0ms)
|
|
97047
|
+
|
|
97048
|
+
|
|
97049
|
+
Started GET "/assets/jquery.ui.core.css?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97050
|
+
Served asset /jquery.ui.core.css - 304 Not Modified (0ms)
|
|
97051
|
+
|
|
97052
|
+
|
|
97053
|
+
Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97054
|
+
Served asset /jquery.ui.datepicker.js - 304 Not Modified (0ms)
|
|
97055
|
+
|
|
97056
|
+
|
|
97057
|
+
Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97058
|
+
Served asset /jquery.ui.core.js - 304 Not Modified (0ms)
|
|
97059
|
+
|
|
97060
|
+
|
|
97061
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97062
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
97063
|
+
|
|
97064
|
+
|
|
97065
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97066
|
+
Served asset /application.js - 304 Not Modified (7ms)
|
|
97067
|
+
|
|
97068
|
+
|
|
97069
|
+
Started GET "/assets/organisms.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97070
|
+
Served asset /organisms.js - 304 Not Modified (0ms)
|
|
97071
|
+
|
|
97072
|
+
|
|
97073
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-12 08:37:05 +0200
|
|
97074
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
97075
|
+
|
|
97076
|
+
|
|
97077
|
+
Started GET "/adherent/members" for 127.0.0.1 at 2013-08-12 08:37:07 +0200
|
|
97078
|
+
Processing by Adherent::MembersController#index as HTML
|
|
97079
|
+
[1m[36mOrganism Load (0.8ms)[0m [1mSELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = 2 LIMIT 1[0m
|
|
97080
|
+
[1m[35mAdherent::Member Load (0.4ms)[0m SELECT "adherent_members".* FROM "adherent_members" WHERE "adherent_members"."organism_id" = 2
|
|
97081
|
+
[1m[36mAdherent::Adhesion Load (2.2ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 4[0m
|
|
97082
|
+
[1m[35m (0.5ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 3
|
|
97083
|
+
[1m[36mAdherent::Coord Load (0.9ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 4 LIMIT 1[0m
|
|
97084
|
+
[1m[35mAdherent::Adhesion Load (5.4ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 5
|
|
97085
|
+
[1m[36m (5.4ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 4[0m
|
|
97086
|
+
[1m[35mAdherent::Coord Load (0.3ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 5 LIMIT 1
|
|
97087
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (244.8ms)
|
|
97088
|
+
Completed 500 Internal Server Error in 916ms
|
|
97089
|
+
|
|
97090
|
+
ActionView::Template::Error (Missing partial layouts/adherent/header with {:locale=>[:fr], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
|
|
97091
|
+
* "/home/jcl/rails_project/Adherent/test/dummy/app/views"
|
|
97092
|
+
* "/home/jcl/rails_project/Adherent/app/views"
|
|
97093
|
+
):
|
|
97094
|
+
10:
|
|
97095
|
+
11: <div class="container-fluid">
|
|
97096
|
+
12:
|
|
97097
|
+
13: <%= render 'layouts/adherent/header' %>
|
|
97098
|
+
14:
|
|
97099
|
+
15:
|
|
97100
|
+
16: <div class="row-fluid">
|
|
97101
|
+
actionpack (3.2.14) lib/action_view/path_set.rb:58:in `find'
|
|
97102
|
+
actionpack (3.2.14) lib/action_view/lookup_context.rb:115:in `find'
|
|
97103
|
+
actionpack (3.2.14) lib/action_view/renderer/partial_renderer.rb:341:in `find_template'
|
|
97104
|
+
actionpack (3.2.14) lib/action_view/renderer/partial_renderer.rb:335:in `find_partial'
|
|
97105
|
+
actionpack (3.2.14) lib/action_view/renderer/partial_renderer.rb:222:in `render'
|
|
97106
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
|
97107
|
+
actionpack (3.2.14) lib/action_view/helpers/rendering_helper.rb:27:in `render'
|
|
97108
|
+
haml (4.0.3) lib/haml/helpers/action_view_mods.rb:12:in `render_with_haml'
|
|
97109
|
+
/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___417595895_78445680'
|
|
97110
|
+
actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render'
|
|
97111
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument'
|
|
97112
|
+
actionpack (3.2.14) lib/action_view/template.rb:143:in `render'
|
|
97113
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout'
|
|
97114
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template'
|
|
97115
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render'
|
|
97116
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
97117
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
|
|
97118
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
|
97119
|
+
actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
|
97120
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
|
97121
|
+
actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
|
97122
|
+
actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
|
97123
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
|
|
97124
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
97125
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
|
97126
|
+
activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
97127
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
97128
|
+
activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
97129
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
|
97130
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
|
97131
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
97132
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
|
97133
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
97134
|
+
actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
|
97135
|
+
/home/jcl/rails_project/Adherent/app/controllers/adherent/members_controller.rb:12:in `index'
|
|
97136
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
97137
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
|
97138
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
97139
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
97140
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:425:in `_run__790533242__process_action__14608474__callbacks'
|
|
97141
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
97142
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
97143
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
97144
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
97145
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
97146
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
97147
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
97148
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
97149
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
|
97150
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
97151
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
97152
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
97153
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
|
97154
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
|
97155
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
|
97156
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
97157
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
|
97158
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
97159
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
97160
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
97161
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
97162
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
97163
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
97164
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
|
97165
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
|
97166
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
|
97167
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
97168
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
97169
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
97170
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
|
97171
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
97172
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
|
97173
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
|
97174
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
97175
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
97176
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
97177
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
|
97178
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
|
97179
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
97180
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
|
97181
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
97182
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
97183
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__983184796__call__843181379__callbacks'
|
|
97184
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
97185
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
97186
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
97187
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
97188
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
97189
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
97190
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
97191
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
97192
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
|
97193
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
|
97194
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
97195
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
|
97196
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
97197
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
97198
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
97199
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
97200
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
97201
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
97202
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
|
97203
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
|
97204
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
97205
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
97206
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
97207
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
97208
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
97209
|
+
/home/jcl/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
97210
|
+
|
|
97211
|
+
|
|
97212
|
+
Rendered /home/jcl/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
|
97213
|
+
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.2ms)
|
|
97214
|
+
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.4ms)
|
|
97215
|
+
|
|
97216
|
+
|
|
97217
|
+
Started GET "/adherent/members" for 127.0.0.1 at 2013-08-12 08:38:29 +0200
|
|
97218
|
+
Processing by Adherent::MembersController#index as HTML
|
|
97219
|
+
[1m[36mOrganism Load (0.1ms)[0m [1mSELECT "organisms".* FROM "organisms" WHERE "organisms"."id" = 2 LIMIT 1[0m
|
|
97220
|
+
[1m[35mAdherent::Member Load (0.2ms)[0m SELECT "adherent_members".* FROM "adherent_members" WHERE "adherent_members"."organism_id" = 2
|
|
97221
|
+
[1m[36mAdherent::Adhesion Load (0.3ms)[0m [1mSELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 4[0m
|
|
97222
|
+
[1m[35m (1.7ms)[0m SELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 3
|
|
97223
|
+
[1m[36mAdherent::Coord Load (0.5ms)[0m [1mSELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 4 LIMIT 1[0m
|
|
97224
|
+
[1m[35mAdherent::Adhesion Load (0.3ms)[0m SELECT "adherent_adhesions".* FROM "adherent_adhesions" WHERE "adherent_adhesions"."member_id" = 5
|
|
97225
|
+
[1m[36m (0.2ms)[0m [1mSELECT SUM("adherent_reglements"."amount") AS sum_id FROM "adherent_reglements" WHERE "adherent_reglements"."adhesion_id" = 4[0m
|
|
97226
|
+
[1m[35mAdherent::Coord Load (0.3ms)[0m SELECT "adherent_coords".* FROM "adherent_coords" WHERE "adherent_coords"."member_id" = 5 LIMIT 1
|
|
97227
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/adherent/members/index.html.erb within layouts/adherent/application (21.6ms)
|
|
97228
|
+
Rendered layouts/adherent/_header.html.haml (1.9ms)
|
|
97229
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_flash_partial.html.haml (2.5ms)
|
|
97230
|
+
Rendered /home/jcl/rails_project/Adherent/app/views/layouts/adherent/_footer.html.haml (1.1ms)
|
|
97231
|
+
Completed 200 OK in 130ms (Views: 124.5ms | ActiveRecord: 3.8ms)
|
|
97232
|
+
|
|
97233
|
+
|
|
97234
|
+
Started GET "/assets/adherent/application.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97235
|
+
Served asset /adherent/application.css - 304 Not Modified (51ms)
|
|
97236
|
+
|
|
97237
|
+
|
|
97238
|
+
Started GET "/assets/jquery.ui.theme.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97239
|
+
Served asset /jquery.ui.theme.css - 304 Not Modified (0ms)
|
|
97240
|
+
|
|
97241
|
+
|
|
97242
|
+
Started GET "/assets/jquery.ui.core.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97243
|
+
Served asset /jquery.ui.core.css - 304 Not Modified (0ms)
|
|
97244
|
+
|
|
97245
|
+
|
|
97246
|
+
Started GET "/assets/adherent/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97247
|
+
Served asset /adherent/bootstrap.css - 304 Not Modified (25ms)
|
|
97248
|
+
|
|
97249
|
+
|
|
97250
|
+
Started GET "/assets/adherent/adhesion.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97251
|
+
Served asset /adherent/adhesion.css - 304 Not Modified (1ms)
|
|
97252
|
+
|
|
97253
|
+
|
|
97254
|
+
Started GET "/assets/jquery.ui.datepicker.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97255
|
+
Served asset /jquery.ui.datepicker.css - 304 Not Modified (0ms)
|
|
97256
|
+
|
|
97257
|
+
|
|
97258
|
+
Started GET "/assets/adherent/coords.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97259
|
+
Served asset /adherent/coords.css - 304 Not Modified (2ms)
|
|
97260
|
+
|
|
97261
|
+
|
|
97262
|
+
Started GET "/assets/adherent/jc_application.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97263
|
+
Served asset /adherent/jc_application.css - 304 Not Modified (4ms)
|
|
97264
|
+
|
|
97265
|
+
|
|
97266
|
+
Started GET "/assets/adherent/date_picker.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97267
|
+
Served asset /adherent/date_picker.css - 304 Not Modified (2ms)
|
|
97268
|
+
|
|
97269
|
+
|
|
97270
|
+
Started GET "/assets/adherent/jcmenu.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97271
|
+
Served asset /adherent/jcmenu.css - 304 Not Modified (2ms)
|
|
97272
|
+
|
|
97273
|
+
|
|
97274
|
+
Started GET "/assets/adherent/members.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97275
|
+
Served asset /adherent/members.css - 304 Not Modified (2ms)
|
|
97276
|
+
|
|
97277
|
+
|
|
97278
|
+
Started GET "/assets/adherent/layouts.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97279
|
+
Served asset /adherent/layouts.css - 304 Not Modified (2ms)
|
|
97280
|
+
|
|
97281
|
+
|
|
97282
|
+
Started GET "/assets/adherent/old_bootstrap.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97283
|
+
Served asset /adherent/old_bootstrap.css - 304 Not Modified (2ms)
|
|
97284
|
+
|
|
97285
|
+
|
|
97286
|
+
Started GET "/assets/adherent/payments.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97287
|
+
Served asset /adherent/payments.css - 304 Not Modified (8ms)
|
|
97288
|
+
|
|
97289
|
+
|
|
97290
|
+
Started GET "/assets/adherent/reglements.css?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97291
|
+
Served asset /adherent/reglements.css - 304 Not Modified (2ms)
|
|
97292
|
+
|
|
97293
|
+
|
|
97294
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97295
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
97296
|
+
|
|
97297
|
+
|
|
97298
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97299
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
97300
|
+
|
|
97301
|
+
|
|
97302
|
+
Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97303
|
+
Served asset /jquery.ui.core.js - 304 Not Modified (0ms)
|
|
97304
|
+
|
|
97305
|
+
|
|
97306
|
+
Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97307
|
+
Served asset /jquery.ui.datepicker.js - 304 Not Modified (0ms)
|
|
97308
|
+
|
|
97309
|
+
|
|
97310
|
+
Started GET "/assets/adherent/adhesion.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97311
|
+
Served asset /adherent/adhesion.js - 304 Not Modified (2ms)
|
|
97312
|
+
|
|
97313
|
+
|
|
97314
|
+
Started GET "/assets/adherent/coords.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97315
|
+
Served asset /adherent/coords.js - 304 Not Modified (2ms)
|
|
97316
|
+
|
|
97317
|
+
|
|
97318
|
+
Started GET "/assets/adherent/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97319
|
+
Served asset /adherent/bootstrap.js - 304 Not Modified (2ms)
|
|
97320
|
+
|
|
97321
|
+
|
|
97322
|
+
Started GET "/assets/adherent/members.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97323
|
+
Served asset /adherent/members.js - 304 Not Modified (6ms)
|
|
97324
|
+
|
|
97325
|
+
|
|
97326
|
+
Started GET "/assets/adherent/date_picker.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97327
|
+
Served asset /adherent/date_picker.js - 304 Not Modified (3ms)
|
|
97328
|
+
|
|
97329
|
+
|
|
97330
|
+
Started GET "/assets/adherent/payments.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97331
|
+
Served asset /adherent/payments.js - 304 Not Modified (2ms)
|
|
97332
|
+
|
|
97333
|
+
|
|
97334
|
+
Started GET "/assets/adherent/reglements.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97335
|
+
Served asset /adherent/reglements.js - 304 Not Modified (4ms)
|
|
97336
|
+
|
|
97337
|
+
|
|
97338
|
+
Started GET "/assets/adherent/application.js?body=1" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97339
|
+
Served asset /adherent/application.js - 304 Not Modified (25ms)
|
|
97340
|
+
|
|
97341
|
+
|
|
97342
|
+
Started GET "/assets/adherent/icones/navigation90.png" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97343
|
+
Served asset /adherent/icones/navigation90.png - 200 OK (9ms)
|
|
97344
|
+
|
|
97345
|
+
|
|
97346
|
+
Started GET "/assets/adherent/icones/nouveau.png" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97347
|
+
Served asset /adherent/icones/nouveau.png - 200 OK (28ms)
|
|
97348
|
+
|
|
97349
|
+
|
|
97350
|
+
Started GET "/assets/adherent/icones/detail.png" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97351
|
+
Served asset /adherent/icones/detail.png - 304 Not Modified (5ms)
|
|
97352
|
+
|
|
97353
|
+
|
|
97354
|
+
Started GET "/assets/adherent/icones/afficher.png" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97355
|
+
Served asset /adherent/icones/afficher.png - 304 Not Modified (21ms)
|
|
97356
|
+
|
|
97357
|
+
|
|
97358
|
+
Started GET "/assets/adherent/icones/payment.png" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97359
|
+
Served asset /adherent/icones/payment.png - 304 Not Modified (9ms)
|
|
97360
|
+
|
|
97361
|
+
|
|
97362
|
+
Started GET "/assets/adherent/icones/modifier.png" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97363
|
+
Served asset /adherent/icones/modifier.png - 304 Not Modified (14ms)
|
|
97364
|
+
|
|
97365
|
+
|
|
97366
|
+
Started GET "/assets/adherent/icones/supprimer.png" for 127.0.0.1 at 2013-08-12 08:38:30 +0200
|
|
97367
|
+
Served asset /adherent/icones/supprimer.png - 304 Not Modified (17ms)
|
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.9
|
|
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-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -237,6 +237,7 @@ files:
|
|
|
237
237
|
- test/dummy/app/assets/stylesheets/scaffold.css
|
|
238
238
|
- test/dummy/app/assets/stylesheets/application.css
|
|
239
239
|
- test/dummy/app/models/organism.rb
|
|
240
|
+
- test/dummy/app/views/layouts/adherent/_header.html.haml
|
|
240
241
|
- test/dummy/app/views/layouts/application.html.erb
|
|
241
242
|
- test/dummy/app/views/organisms/index.html.haml
|
|
242
243
|
- test/dummy/app/views/organisms/show.html.haml
|
|
@@ -448,6 +449,7 @@ test_files:
|
|
|
448
449
|
- test/dummy/app/assets/stylesheets/scaffold.css
|
|
449
450
|
- test/dummy/app/assets/stylesheets/application.css
|
|
450
451
|
- test/dummy/app/models/organism.rb
|
|
452
|
+
- test/dummy/app/views/layouts/adherent/_header.html.haml
|
|
451
453
|
- test/dummy/app/views/layouts/application.html.erb
|
|
452
454
|
- test/dummy/app/views/organisms/index.html.haml
|
|
453
455
|
- test/dummy/app/views/organisms/show.html.haml
|