jirafe 0.1.0
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.
- data/.autotest +5 -0
- data/.gitignore +23 -0
- data/.rbenv-version +1 -0
- data/.rspec +2 -0
- data/.travis.yml +11 -0
- data/Gemfile +8 -0
- data/LICENSE +13 -0
- data/README.md +104 -0
- data/Rakefile +27 -0
- data/fixtures/responses/application_get_with_cloud_token.yml +40 -0
- data/fixtures/responses/application_get_with_invalid_token.yml +41 -0
- data/fixtures/responses/application_get_with_master_token.yml +784 -0
- data/fixtures/responses/application_get_with_reporting_token.yml +38 -0
- data/fixtures/responses/application_post_with_app_token.yml +38 -0
- data/fixtures/responses/application_post_with_cloud_token.yml +76 -0
- data/fixtures/responses/application_post_with_invalid_token.yml +79 -0
- data/fixtures/responses/application_post_with_master_token.yml +784 -0
- data/fixtures/responses/application_post_with_master_token_blank_name.yml +79 -0
- data/fixtures/responses/application_post_with_master_token_dupe_name.yml +76 -0
- data/fixtures/responses/application_post_with_master_token_no_name.yml +79 -0
- data/fixtures/responses/application_post_with_reporting_token.yml +76 -0
- data/fixtures/responses/application_put_with_cloud_token.yml +68 -0
- data/fixtures/responses/application_put_with_invalid_token.yml +145 -0
- data/fixtures/responses/application_put_with_master_token.yml +68 -0
- data/fixtures/responses/application_put_with_reporting_token.yml +68 -0
- data/fixtures/responses/application_sites_get_with_master_token.yml +38 -0
- data/fixtures/responses/callback_event_post_event.yml +2000 -0
- data/fixtures/responses/callback_event_post_event_fetch_token.yml +1473 -0
- data/fixtures/responses/jirafe_resource_get_status_url.yml +38 -0
- data/fixtures/responses/jirafe_resource_get_status_url_with_query_param.yml +38 -0
- data/fixtures/responses/site_abandon_rate_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_abandoned_average_ordervalue_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_abandoned_carts_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_abandoned_revenue_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_average_order_value_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_bounces_rate_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_cart_segmentation_get_with_master_token.yml +38 -0
- data/fixtures/responses/site_conversion_rate_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_conversions_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_customers_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_dashboard_get_with_master_token.yml +60 -0
- data/fixtures/responses/site_get_with_master_token.yml +73 -0
- data/fixtures/responses/site_keywords_get_with_master_token.yml +38 -0
- data/fixtures/responses/site_orders_status_get_with_master_token.yml +38 -0
- data/fixtures/responses/site_origins_get_with_master_token.yml +38 -0
- data/fixtures/responses/site_period_data_get_with_master_token.yml +38 -0
- data/fixtures/responses/site_post_with_app_token.yml +727 -0
- data/fixtures/responses/site_post_with_master_token.yml +1569 -0
- data/fixtures/responses/site_products_get_with_master_token.yml +38 -0
- data/fixtures/responses/site_referers_get_with_master_token.yml +38 -0
- data/fixtures/responses/site_revenues_average_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_revenues_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_segments_carts_get_with_admin_token.yml +108 -0
- data/fixtures/responses/site_segments_sales_get_with_admin_token.yml +143 -0
- data/fixtures/responses/site_total_carts_get_with_master_token.yml +49 -0
- data/fixtures/responses/site_translations__get_with_master_token.yml +155 -0
- data/fixtures/responses/site_translations_de_get_with_master_token.yml +156 -0
- data/fixtures/responses/site_translations_es_get_with_master_token.yml +155 -0
- data/fixtures/responses/site_translations_fr_get_with_master_token.yml +178 -0
- data/fixtures/responses/site_translations_german_get_with_master_token.yml +156 -0
- data/fixtures/responses/site_translations_get_with_master_token.yml +865 -0
- data/fixtures/responses/site_translations_xx_get_with_master_token.yml +155 -0
- data/fixtures/responses/site_visits_get_with_master_token.yml +49 -0
- data/fixtures/responses/status_get.yml +38 -0
- data/fixtures/responses/status_get_500.yml +31 -0
- data/fixtures/responses/test.yml +7364 -0
- data/fixtures/responses/version_get.yml +38 -0
- data/jirafe.gemspec +29 -0
- data/lib/jirafe.rb +64 -0
- data/lib/jirafe/callback/event.rb +57 -0
- data/lib/jirafe/callback/events/order.rb +48 -0
- data/lib/jirafe/callback/events/refund.rb +32 -0
- data/lib/jirafe/callback/jirafe_callback.rb +50 -0
- data/lib/jirafe/configuration.rb +47 -0
- data/lib/jirafe/error.rb +57 -0
- data/lib/jirafe/resource/application.rb +18 -0
- data/lib/jirafe/resource/jirafe_resource.rb +188 -0
- data/lib/jirafe/resource/site.rb +21 -0
- data/lib/jirafe/resource/sites/abandon_rate.rb +16 -0
- data/lib/jirafe/resource/sites/abandoned_average_order_value.rb +17 -0
- data/lib/jirafe/resource/sites/abandoned_carts.rb +16 -0
- data/lib/jirafe/resource/sites/abandoned_revenue.rb +16 -0
- data/lib/jirafe/resource/sites/average_order_value.rb +16 -0
- data/lib/jirafe/resource/sites/bounces_rate.rb +16 -0
- data/lib/jirafe/resource/sites/cart_segmentation.rb +11 -0
- data/lib/jirafe/resource/sites/conversion_rate.rb +16 -0
- data/lib/jirafe/resource/sites/conversions.rb +17 -0
- data/lib/jirafe/resource/sites/customers.rb +16 -0
- data/lib/jirafe/resource/sites/dashboard.rb +27 -0
- data/lib/jirafe/resource/sites/keywords.rb +11 -0
- data/lib/jirafe/resource/sites/orders_status.rb +15 -0
- data/lib/jirafe/resource/sites/origins.rb +11 -0
- data/lib/jirafe/resource/sites/period_data.rb +16 -0
- data/lib/jirafe/resource/sites/products.rb +12 -0
- data/lib/jirafe/resource/sites/referers.rb +12 -0
- data/lib/jirafe/resource/sites/revenues.rb +16 -0
- data/lib/jirafe/resource/sites/revenues_average.rb +16 -0
- data/lib/jirafe/resource/sites/segments_carts.rb +14 -0
- data/lib/jirafe/resource/sites/segments_sales.rb +14 -0
- data/lib/jirafe/resource/sites/total_carts.rb +16 -0
- data/lib/jirafe/resource/sites/translations.rb +18 -0
- data/lib/jirafe/resource/sites/visitors_interest.rb +14 -0
- data/lib/jirafe/resource/sites/visits.rb +16 -0
- data/lib/jirafe/resource/status.rb +19 -0
- data/lib/jirafe/resource/sync_service.rb +1 -0
- data/lib/jirafe/resource/time_series.rb +29 -0
- data/lib/jirafe/resource/user.rb +32 -0
- data/lib/jirafe/resource/version.rb +9 -0
- data/spec/jirafe/callback/event_spec.rb +85 -0
- data/spec/jirafe/configuration_spec.rb +150 -0
- data/spec/jirafe/jirafe_spec.rb +23 -0
- data/spec/jirafe/resource/application_spec.rb +220 -0
- data/spec/jirafe/resource/jirafe_resource_spec.rb +188 -0
- data/spec/jirafe/resource/site_spec.rb +61 -0
- data/spec/jirafe/resource/sites/abandon_rate_spec.rb +11 -0
- data/spec/jirafe/resource/sites/abandoned_average_order_value_spec.rb +11 -0
- data/spec/jirafe/resource/sites/abandoned_carts_spec.rb +11 -0
- data/spec/jirafe/resource/sites/abandoned_revenue_spec.rb +11 -0
- data/spec/jirafe/resource/sites/average_order_value_spec.rb +11 -0
- data/spec/jirafe/resource/sites/bounces_rate_spec.rb +11 -0
- data/spec/jirafe/resource/sites/cart_segmentation_spec.rb +11 -0
- data/spec/jirafe/resource/sites/conversion_rate_spec.rb +11 -0
- data/spec/jirafe/resource/sites/conversions_spec.rb +11 -0
- data/spec/jirafe/resource/sites/customers_spec.rb +11 -0
- data/spec/jirafe/resource/sites/dashboard_spec.rb +29 -0
- data/spec/jirafe/resource/sites/keywords_spec.rb +11 -0
- data/spec/jirafe/resource/sites/orders_status_spec.rb +34 -0
- data/spec/jirafe/resource/sites/origins_spec.rb +11 -0
- data/spec/jirafe/resource/sites/period_data_spec.rb +22 -0
- data/spec/jirafe/resource/sites/products_spec.rb +11 -0
- data/spec/jirafe/resource/sites/referers_spec.rb +11 -0
- data/spec/jirafe/resource/sites/revenues_average_spec.rb +11 -0
- data/spec/jirafe/resource/sites/revenues_spec.rb +11 -0
- data/spec/jirafe/resource/sites/segments_carts_spec.rb +29 -0
- data/spec/jirafe/resource/sites/segments_sales_spec.rb +29 -0
- data/spec/jirafe/resource/sites/total_carts_spec.rb +11 -0
- data/spec/jirafe/resource/sites/translations_spec.rb +76 -0
- data/spec/jirafe/resource/sites/visitors_interest_spec.rb +8 -0
- data/spec/jirafe/resource/sites/visits_spec.rb +11 -0
- data/spec/jirafe/resource/status_spec.rb +31 -0
- data/spec/jirafe/resource/version_spec.rb +15 -0
- data/spec/spec_helper.rb +58 -0
- data/spec/support/callback_server.rb +11 -0
- data/spec/support/response_helper.rb +31 -0
- data/spec/support/shared_examples/empty_resource.rb +17 -0
- data/spec/support/shared_examples/time_series.rb +31 -0
- data/spec/test_configuration.rb +15 -0
- metadata +360 -0
@@ -0,0 +1,68 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: put
|
5
|
+
uri: http://api.jirafe.dev/v1/applications/1?body%5Bname%5D=my%20new%20app&body%5Burl%5D=&token=user_master_token
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 411
|
13
|
+
message: Length Required
|
14
|
+
headers:
|
15
|
+
Server:
|
16
|
+
- nginx/1.2.2
|
17
|
+
Date:
|
18
|
+
- Tue, 04 Sep 2012 18:41:30 GMT
|
19
|
+
Content-Type:
|
20
|
+
- text/html
|
21
|
+
Content-Length:
|
22
|
+
- '180'
|
23
|
+
Connection:
|
24
|
+
- close
|
25
|
+
body:
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! "<html>\r\n<head><title>411 Length Required</title></head>\r\n<body
|
28
|
+
bgcolor=\"white\">\r\n<center><h1>411 Length Required</h1></center>\r\n<hr><center>nginx/1.2.2</center>\r\n</body>\r\n</html>\r\n"
|
29
|
+
http_version:
|
30
|
+
recorded_at: Tue, 04 Sep 2012 18:41:30 GMT
|
31
|
+
- request:
|
32
|
+
method: put
|
33
|
+
uri: http://api.jirafe.dev/v1/applications/1?token=user_master_token
|
34
|
+
body:
|
35
|
+
encoding: US-ASCII
|
36
|
+
string: name=my%20new%20app&url=
|
37
|
+
headers: {}
|
38
|
+
response:
|
39
|
+
status:
|
40
|
+
code: 403
|
41
|
+
message: Forbidden
|
42
|
+
headers:
|
43
|
+
Server:
|
44
|
+
- nginx/1.2.2
|
45
|
+
Content-Type:
|
46
|
+
- text/html; charset=UTF-8
|
47
|
+
Transfer-Encoding:
|
48
|
+
- chunked
|
49
|
+
Connection:
|
50
|
+
- keep-alive
|
51
|
+
Keep-Alive:
|
52
|
+
- timeout=10
|
53
|
+
X-Powered-By:
|
54
|
+
- PHP/5.3.15
|
55
|
+
Cache-Control:
|
56
|
+
- no-cache
|
57
|
+
Date:
|
58
|
+
- Wed, 05 Sep 2012 19:49:44 GMT
|
59
|
+
X-Debug-Token:
|
60
|
+
- 5047acd856ae0
|
61
|
+
body:
|
62
|
+
encoding: US-ASCII
|
63
|
+
string: ! '{"error":{"code":403,"message":"Access denied."}}
|
64
|
+
|
65
|
+
'
|
66
|
+
http_version:
|
67
|
+
recorded_at: Wed, 05 Sep 2012 19:49:44 GMT
|
68
|
+
recorded_with: VCR 2.2.4
|
@@ -0,0 +1,68 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: put
|
5
|
+
uri: http://api.jirafe.dev/v1/applications/1?body%5Bname%5D=my%20new%20app&body%5Burl%5D=&token=user_reporting_app_token
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 411
|
13
|
+
message: Length Required
|
14
|
+
headers:
|
15
|
+
Server:
|
16
|
+
- nginx/1.2.2
|
17
|
+
Date:
|
18
|
+
- Tue, 04 Sep 2012 18:41:30 GMT
|
19
|
+
Content-Type:
|
20
|
+
- text/html
|
21
|
+
Content-Length:
|
22
|
+
- '180'
|
23
|
+
Connection:
|
24
|
+
- close
|
25
|
+
body:
|
26
|
+
encoding: US-ASCII
|
27
|
+
string: ! "<html>\r\n<head><title>411 Length Required</title></head>\r\n<body
|
28
|
+
bgcolor=\"white\">\r\n<center><h1>411 Length Required</h1></center>\r\n<hr><center>nginx/1.2.2</center>\r\n</body>\r\n</html>\r\n"
|
29
|
+
http_version:
|
30
|
+
recorded_at: Tue, 04 Sep 2012 18:41:30 GMT
|
31
|
+
- request:
|
32
|
+
method: put
|
33
|
+
uri: http://api.jirafe.dev/v1/applications/1?token=user_reporting_app_token
|
34
|
+
body:
|
35
|
+
encoding: US-ASCII
|
36
|
+
string: name=my%20new%20app&url=
|
37
|
+
headers: {}
|
38
|
+
response:
|
39
|
+
status:
|
40
|
+
code: 403
|
41
|
+
message: Forbidden
|
42
|
+
headers:
|
43
|
+
Server:
|
44
|
+
- nginx/1.2.2
|
45
|
+
Content-Type:
|
46
|
+
- text/html; charset=UTF-8
|
47
|
+
Transfer-Encoding:
|
48
|
+
- chunked
|
49
|
+
Connection:
|
50
|
+
- keep-alive
|
51
|
+
Keep-Alive:
|
52
|
+
- timeout=10
|
53
|
+
X-Powered-By:
|
54
|
+
- PHP/5.3.15
|
55
|
+
Cache-Control:
|
56
|
+
- no-cache
|
57
|
+
Date:
|
58
|
+
- Wed, 05 Sep 2012 19:49:44 GMT
|
59
|
+
X-Debug-Token:
|
60
|
+
- 5047acd86960e
|
61
|
+
body:
|
62
|
+
encoding: US-ASCII
|
63
|
+
string: ! '{"error":{"code":403,"message":"Access denied."}}
|
64
|
+
|
65
|
+
'
|
66
|
+
http_version:
|
67
|
+
recorded_at: Wed, 05 Sep 2012 19:49:44 GMT
|
68
|
+
recorded_with: VCR 2.2.4
|
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://api.jirafe.dev/v1/applications/1/sites?token=user_master_token
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Server:
|
16
|
+
- nginx/1.2.2
|
17
|
+
Content-Type:
|
18
|
+
- application/json
|
19
|
+
Transfer-Encoding:
|
20
|
+
- chunked
|
21
|
+
Connection:
|
22
|
+
- keep-alive
|
23
|
+
Keep-Alive:
|
24
|
+
- timeout=10
|
25
|
+
X-Powered-By:
|
26
|
+
- PHP/5.3.15
|
27
|
+
Cache-Control:
|
28
|
+
- no-cache
|
29
|
+
Date:
|
30
|
+
- Wed, 05 Sep 2012 19:49:44 GMT
|
31
|
+
X-Debug-Token:
|
32
|
+
- 5047acd8c7852
|
33
|
+
body:
|
34
|
+
encoding: US-ASCII
|
35
|
+
string: ! '[{"site_id":1,"app_id":1,"description":"Test Site","url":"http:\/\/jirafe.com","timezone":"Europe\/Paris","currency":"EUR","external_id":"","store_api_url":"http:\/\/localhost:3333\/test_callbacks","store_cart_url":null,"timezone_diff":7200}]'
|
36
|
+
http_version:
|
37
|
+
recorded_at: Wed, 05 Sep 2012 19:49:44 GMT
|
38
|
+
recorded_with: VCR 2.2.4
|
@@ -0,0 +1,2000 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://api.jirafe.dev/v1/applications/sites?token=user_master_token
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: description=test%20site%20cmb&store_api_url=http%3A%2F%2Flocalhost%3A3333
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 405
|
13
|
+
message: Method Not Allowed
|
14
|
+
headers:
|
15
|
+
Server:
|
16
|
+
- nginx/1.2.2
|
17
|
+
Date:
|
18
|
+
- Wed, 05 Sep 2012 15:45:33 GMT
|
19
|
+
Content-Type:
|
20
|
+
- text/html; charset=UTF-8
|
21
|
+
Transfer-Encoding:
|
22
|
+
- chunked
|
23
|
+
Connection:
|
24
|
+
- keep-alive
|
25
|
+
Keep-Alive:
|
26
|
+
- timeout=10
|
27
|
+
X-Powered-By:
|
28
|
+
- PHP/5.3.15
|
29
|
+
Allow:
|
30
|
+
- PUT, GET, HEAD
|
31
|
+
Cache-Control:
|
32
|
+
- no-cache
|
33
|
+
X-Debug-Token:
|
34
|
+
- 5047739daee71
|
35
|
+
body:
|
36
|
+
encoding: US-ASCII
|
37
|
+
string: ! "<!DOCTYPE html>\n<html>\n <head>\n <meta http-equiv=\"Content-Type\"
|
38
|
+
content=\"text/html; charset=UTF-8\"/>\n <meta name=\"robots\" content=\"noindex,nofollow\"
|
39
|
+
/>\n <title> No route found for "POST /v1/applications/sites":
|
40
|
+
Method Not Allowed (Allow: PUT, GET, HEAD) (405 Method Not Allowed)\n</title>\n
|
41
|
+
\ <link href=\"/bundles/framework/css/exception_layout.css\" rel=\"stylesheet\"
|
42
|
+
type=\"text/css\" media=\"all\" />\n <link href=\"/bundles/framework/css/exception.css\"
|
43
|
+
rel=\"stylesheet\" type=\"text/css\" media=\"all\" />\n </head>\n <body>\n
|
44
|
+
\ <div id=\"content\">\n <div class=\"header clear_fix\">\n
|
45
|
+
\ <div class=\"header_logo\">\n <img src=\"/bundles/framework/images/logo_symfony.gif\"
|
46
|
+
alt=\"Symfony\" />\n </div>\n\n <div class=\"search\">\n
|
47
|
+
\ <form method=\"get\" action=\"http://symfony.com/search\">\n
|
48
|
+
\ <div class=\"form_row\">\n\n <label
|
49
|
+
for=\"search_id\">\n <img src=\"/bundles/framework/images/grey_magnifier.png\"
|
50
|
+
alt=\"Search on Symfony website\" />\n </label>\n\n <input
|
51
|
+
name=\"q\" id=\"search_id\" type=\"search\" placeholder=\"Search on Symfony
|
52
|
+
website\" />\n\n <button type=\"submit\">\n <span
|
53
|
+
class=\"border_l\">\n <span class=\"border_r\">\n
|
54
|
+
\ <span class=\"btn_bg\">OK</span>\n </span>\n
|
55
|
+
\ </span>\n </button>\n </div>\n
|
56
|
+
\ </form>\n </div>\n </div>\n\n
|
57
|
+
\ <div class=\"sf-exceptionreset\">\n\n <div class=\"block_exception\">\n
|
58
|
+
\ <div class=\"block_exception_detected clear_fix\">\n <div
|
59
|
+
class=\"illustration_exception\">\n <img alt=\"Exception detected!\"
|
60
|
+
src=\"/bundles/framework/images/exception_detected.gif\"/>\n </div>\n
|
61
|
+
\ <div class=\"text_exception\">\n\n <div class=\"open_quote\">\n
|
62
|
+
\ <img alt=\"\" src=\"/bundles/framework/images/open_quote.gif\"/>\n
|
63
|
+
\ </div>\n\n <h1>\n No route
|
64
|
+
found for "POST /v1/applications/sites": Method Not Allowed (Allow:
|
65
|
+
PUT, GET, HEAD)\n </h1>\n\n <div>\n <strong>405</strong>
|
66
|
+
Method Not Allowed - <abbr title=\"Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException\">MethodNotAllowedHttpException</abbr>\n
|
67
|
+
\ </div>\n\n <div
|
68
|
+
class=\"linked\"><span><strong>1</strong> linked Exception:</span>\n <ul>\n
|
69
|
+
\ <li>\n <abbr
|
70
|
+
title=\"Symfony\\Component\\Routing\\Exception\\MethodNotAllowedException\">MethodNotAllowedException</abbr>
|
71
|
+
<a href=\"#traces_link_1\" onclick=\"toggle('traces_1', 'traces'); switchIcons('icon_traces_1_open',
|
72
|
+
'icon_traces_1_close');\">»</a>\n </li>\n
|
73
|
+
\ </ul>\n </div>\n
|
74
|
+
\ \n <div class=\"close_quote\">\n <img
|
75
|
+
alt=\"\" src=\"/bundles/framework/images/close_quote.gif\"/>\n </div>\n\n
|
76
|
+
\ </div>\n </div>\n </div>\n\n <div class=\"block\">\n
|
77
|
+
\ <h2>\n <span><small>[2/2]</small></span>\n <abbr
|
78
|
+
title=\"Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException\">MethodNotAllowedHttpException</abbr>:
|
79
|
+
No route found for "POST /v1/applications/sites": Method Not Allowed
|
80
|
+
(Allow: PUT, GET, HEAD) \n <a href=\"#\" onclick=\"toggle('traces_0',
|
81
|
+
'traces'); switchIcons('icon_traces_0_open', 'icon_traces_0_close'); return
|
82
|
+
false;\"><img class=\"toggle\" id=\"icon_traces_0_close\" alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\"
|
83
|
+
style=\"visibility: hidden\" /><img class=\"toggle\" id=\"icon_traces_0_open\"
|
84
|
+
alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\" style=\"visibility:
|
85
|
+
display; margin-left: -18px\" /></a> </h2>\n \n <a id=\"traces_link_0\"></a>\n
|
86
|
+
\ <ol class=\"traces list_exception\" id=\"traces_0\" style=\"display: none\">\n
|
87
|
+
\ <li>\n \n \n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/EventListener/RouterListener.php
|
88
|
+
at line 87 \n <a href=\"#\" onclick=\"toggle('trace_0_0'); switchIcons('icon_0_0_open',
|
89
|
+
'icon_0_0_close'); return false;\"><img class=\"toggle\" id=\"icon_0_0_close\"
|
90
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
91
|
+
display\" /><img class=\"toggle\" id=\"icon_0_0_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
92
|
+
style=\"visibility: hidden; margin-left: -18px\" /></a> <div id=\"trace_0_0\"
|
93
|
+
style=\"display: block\" class=\"trace\">\n <ol start=\"84\"><li><code> } catch (<span
|
94
|
+
style=\"color: #0000BB\">MethodNotAllowedException $e</span><span style=\"color:
|
95
|
+
#007700\">) {</span></code></li>\n<li><code> <span
|
96
|
+
style=\"color: #0000BB\">$message </span><span style=\"color: #007700\">= </span><span
|
97
|
+
style=\"color: #0000BB\">sprintf</span><span style=\"color: #007700\">(</span><span
|
98
|
+
style=\"color: #DD0000\">'No route found for \"%s %s\": Method Not Allowed (Allow: %s)'</span><span
|
99
|
+
style=\"color: #007700\">, </span><span style=\"color: #0000BB\">$request</span><span
|
100
|
+
style=\"color: #007700\">-></span><span style=\"color: #0000BB\">getMethod</span><span
|
101
|
+
style=\"color: #007700\">(), </span><span style=\"color: #0000BB\">$request</span><span
|
102
|
+
style=\"color: #007700\">-></span><span style=\"color: #0000BB\">getPathInfo</span><span
|
103
|
+
style=\"color: #007700\">(), </span><span style=\"color: #0000BB\">strtoupper</span><span
|
104
|
+
style=\"color: #007700\">(</span><span style=\"color: #0000BB\">implode</span><span
|
105
|
+
style=\"color: #007700\">(</span><span style=\"color: #DD0000\">', '</span><span
|
106
|
+
style=\"color: #007700\">, </span><span style=\"color: #0000BB\">$e</span><span
|
107
|
+
style=\"color: #007700\">-></span><span style=\"color: #0000BB\">getAllowedMethods</span><span
|
108
|
+
style=\"color: #007700\">())));</span></code></li>\n<li><code></code></li>\n<li
|
109
|
+
class=\"selected\"><code> throw new <span
|
110
|
+
style=\"color: #0000BB\">MethodNotAllowedHttpException</span><span style=\"color:
|
111
|
+
#007700\">(</span><span style=\"color: #0000BB\">$e</span><span style=\"color:
|
112
|
+
#007700\">-></span><span style=\"color: #0000BB\">getAllowedMethods</span><span
|
113
|
+
style=\"color: #007700\">(), </span><span style=\"color: #0000BB\">$message</span><span
|
114
|
+
style=\"color: #007700\">, </span><span style=\"color: #0000BB\">$e</span><span
|
115
|
+
style=\"color: #007700\">);</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li><code> if (<span
|
116
|
+
style=\"color: #0000BB\">HttpKernelInterface</span><span style=\"color: #007700\">::</span><span
|
117
|
+
style=\"color: #0000BB\">MASTER_REQUEST </span><span style=\"color: #007700\">=== </span><span
|
118
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">-></span><span
|
119
|
+
style=\"color: #0000BB\">getRequestType</span><span style=\"color: #007700\">()) {</span></code></li></ol>\n
|
120
|
+
\ </div>\n </li>\n <li>\n at\n
|
121
|
+
\ <strong>\n <abbr title=\"Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener\">RouterListener</abbr>\n
|
122
|
+
\ ->onKernelRequest\n </strong>\n (<em>object</em>(<abbr title=\"Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent\">GetResponseEvent</abbr>))\n\n
|
123
|
+
\ </li>\n <li>\n at\n <strong>\n
|
124
|
+
\ <abbr title=\"\"></abbr>\n call_user_func\n </strong>\n
|
125
|
+
\ (<em>array</em>(<em>object</em>(<abbr title=\"Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener\">RouterListener</abbr>),
|
126
|
+
'onKernelRequest'), <em>object</em>(<abbr title=\"Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent\">GetResponseEvent</abbr>))\n\n
|
127
|
+
\ <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/Debug/TraceableEventDispatcher.php
|
128
|
+
at line 82 \n <a href=\"#\" onclick=\"toggle('trace_0_2'); switchIcons('icon_0_2_open',
|
129
|
+
'icon_0_2_close'); return false;\"><img class=\"toggle\" id=\"icon_0_2_close\"
|
130
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
131
|
+
hidden\" /><img class=\"toggle\" id=\"icon_0_2_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
132
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_0_2\"
|
133
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"79\"><li><code></code></li>\n<li><code> <span
|
134
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
135
|
+
style=\"color: #0000BB\">called</span><span style=\"color: #007700\">[</span><span
|
136
|
+
style=\"color: #0000BB\">$eventName</span><span style=\"color: #007700\">.</span><span
|
137
|
+
style=\"color: #DD0000\">'.'</span><span style=\"color: #007700\">.</span><span
|
138
|
+
style=\"color: #0000BB\">$info</span><span style=\"color: #007700\">[</span><span
|
139
|
+
style=\"color: #DD0000\">'pretty'</span><span style=\"color: #007700\">]] = </span><span
|
140
|
+
style=\"color: #0000BB\">$info</span><span style=\"color: #007700\">;</span></code></li>\n<li><code></code></li>\n<li
|
141
|
+
class=\"selected\"><code> <span
|
142
|
+
style=\"color: #0000BB\">call_user_func</span><span style=\"color: #007700\">(</span><span
|
143
|
+
style=\"color: #0000BB\">$listener</span><span style=\"color: #007700\">, </span><span
|
144
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">);</span></code></li>\n<li><code></code></li>\n<li><code> if (<span
|
145
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">-></span><span
|
146
|
+
style=\"color: #0000BB\">isPropagationStopped</span><span style=\"color: #007700\">()) {</span></code></li>\n<li><code> if (<span
|
147
|
+
style=\"color: #0000BB\">null </span><span style=\"color: #007700\">!== </span><span
|
148
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
149
|
+
style=\"color: #0000BB\">logger</span><span style=\"color: #007700\">) {</span></code></li></ol>\n
|
150
|
+
\ </div>\n </li>\n <li>\n at\n
|
151
|
+
\ <strong>\n <abbr title=\"Symfony\\Bundle\\FrameworkBundle\\Debug\\TraceableEventDispatcher\">TraceableEventDispatcher</abbr>\n
|
152
|
+
\ ->doDispatch\n </strong>\n (<em>array</em>(<em>array</em>(<em>object</em>(<abbr
|
153
|
+
title=\"Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener\">ProfilerListener</abbr>),
|
154
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener\">RouterListener</abbr>),
|
155
|
+
'onEarlyKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Jirafe\\Bundle\\ApiBundle\\Listener\\SessionListener\">SessionListener</abbr>),
|
156
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Symfony\\Component\\Security\\Http\\Firewall\">Firewall</abbr>),
|
157
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener\">RouterListener</abbr>),
|
158
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"FOS\\RestBundle\\EventListener\\BodyListener\">BodyListener</abbr>),
|
159
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Jirafe\\Bundle\\ApiBundle\\Listener\\RequestLogListener\">RequestLogListener</abbr>),
|
160
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Jirafe\\Bundle\\DashboardBundle\\Templating\\Helper\\MenuHelper\">MenuHelper</abbr>),
|
161
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Jirafe\\Bundle\\DashboardBundle\\Listener\\ChangeLocaleKernelRequestListener\">ChangeLocaleKernelRequestListener</abbr>),
|
162
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Jirafe\\Bundle\\DashboardBundle\\Listener\\SaveAppIdInCookieKernelRequestListener\">SaveAppIdInCookieKernelRequestListener</abbr>),
|
163
|
+
'onKernelRequest')), 'kernel.request', <em>object</em>(<abbr title=\"Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent\">GetResponseEvent</abbr>))\n\n
|
164
|
+
\ <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Component/EventDispatcher/EventDispatcher.php
|
165
|
+
at line 49 \n <a href=\"#\" onclick=\"toggle('trace_0_3'); switchIcons('icon_0_3_open',
|
166
|
+
'icon_0_3_close'); return false;\"><img class=\"toggle\" id=\"icon_0_3_close\"
|
167
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
168
|
+
hidden\" /><img class=\"toggle\" id=\"icon_0_3_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
169
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_0_3\"
|
170
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"46\"><li><code> <span
|
171
|
+
style=\"color: #0000BB\">$event </span><span style=\"color: #007700\">= new </span><span
|
172
|
+
style=\"color: #0000BB\">Event</span><span style=\"color: #007700\">();</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li
|
173
|
+
class=\"selected\"><code> <span
|
174
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
175
|
+
style=\"color: #0000BB\">doDispatch</span><span style=\"color: #007700\">(</span><span
|
176
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
177
|
+
style=\"color: #0000BB\">getListeners</span><span style=\"color: #007700\">(</span><span
|
178
|
+
style=\"color: #0000BB\">$eventName</span><span style=\"color: #007700\">), </span><span
|
179
|
+
style=\"color: #0000BB\">$eventName</span><span style=\"color: #007700\">, </span><span
|
180
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li><code> <span
|
181
|
+
style=\"color: #FF8000\">/**</span></code></li></ol>\n </div>\n </li>\n
|
182
|
+
\ <li>\n at\n <strong>\n <abbr
|
183
|
+
title=\"Symfony\\Component\\EventDispatcher\\EventDispatcher\">EventDispatcher</abbr>\n
|
184
|
+
\ ->dispatch\n </strong>\n ('kernel.request', <em>object</em>(<abbr
|
185
|
+
title=\"Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent\">GetResponseEvent</abbr>))\n\n
|
186
|
+
\ <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/ContainerAwareEventDispatcher.php
|
187
|
+
at line 145 \n <a href=\"#\" onclick=\"toggle('trace_0_4'); switchIcons('icon_0_4_open',
|
188
|
+
'icon_0_4_close'); return false;\"><img class=\"toggle\" id=\"icon_0_4_close\"
|
189
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
190
|
+
hidden\" /><img class=\"toggle\" id=\"icon_0_4_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
191
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_0_4\"
|
192
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"142\"><li><code> {</code></li>\n<li><code> <span
|
193
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
194
|
+
style=\"color: #0000BB\">lazyLoad</span><span style=\"color: #007700\">(</span><span
|
195
|
+
style=\"color: #0000BB\">$eventName</span><span style=\"color: #007700\">);</span></code></li>\n<li><code></code></li>\n<li
|
196
|
+
class=\"selected\"><code> <span
|
197
|
+
style=\"color: #0000BB\">parent</span><span style=\"color: #007700\">::</span><span
|
198
|
+
style=\"color: #0000BB\">dispatch</span><span style=\"color: #007700\">(</span><span
|
199
|
+
style=\"color: #0000BB\">$eventName</span><span style=\"color: #007700\">, </span><span
|
200
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li><code> <span
|
201
|
+
style=\"color: #FF8000\">/**</span></code></li></ol>\n </div>\n </li>\n
|
202
|
+
\ <li>\n at\n <strong>\n <abbr
|
203
|
+
title=\"Symfony\\Bundle\\FrameworkBundle\\ContainerAwareEventDispatcher\">ContainerAwareEventDispatcher</abbr>\n
|
204
|
+
\ ->dispatch\n </strong>\n ('kernel.request', <em>object</em>(<abbr
|
205
|
+
title=\"Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent\">GetResponseEvent</abbr>))\n\n
|
206
|
+
\ <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php
|
207
|
+
at line 98 \n <a href=\"#\" onclick=\"toggle('trace_0_5'); switchIcons('icon_0_5_open',
|
208
|
+
'icon_0_5_close'); return false;\"><img class=\"toggle\" id=\"icon_0_5_close\"
|
209
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
210
|
+
hidden\" /><img class=\"toggle\" id=\"icon_0_5_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
211
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_0_5\"
|
212
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"95\"><li><code> {</code></li>\n<li><code> <span
|
213
|
+
style=\"color: #FF8000\">// request</span></code></li>\n<li><code> <span
|
214
|
+
style=\"color: #0000BB\">$event </span><span style=\"color: #007700\">= new </span><span
|
215
|
+
style=\"color: #0000BB\">GetResponseEvent</span><span style=\"color: #007700\">(</span><span
|
216
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">, </span><span
|
217
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
218
|
+
style=\"color: #0000BB\">$type</span><span style=\"color: #007700\">);</span></code></li>\n<li
|
219
|
+
class=\"selected\"><code> <span
|
220
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
221
|
+
style=\"color: #0000BB\">dispatcher</span><span style=\"color: #007700\">-></span><span
|
222
|
+
style=\"color: #0000BB\">dispatch</span><span style=\"color: #007700\">(</span><span
|
223
|
+
style=\"color: #0000BB\">KernelEvents</span><span style=\"color: #007700\">::</span><span
|
224
|
+
style=\"color: #0000BB\">REQUEST</span><span style=\"color: #007700\">, </span><span
|
225
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">);</span></code></li>\n<li><code></code></li>\n<li><code> if (<span
|
226
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">-></span><span
|
227
|
+
style=\"color: #0000BB\">hasResponse</span><span style=\"color: #007700\">()) {</span></code></li>\n<li><code> return <span
|
228
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
229
|
+
style=\"color: #0000BB\">filterResponse</span><span style=\"color: #007700\">(</span><span
|
230
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">-></span><span
|
231
|
+
style=\"color: #0000BB\">getResponse</span><span style=\"color: #007700\">(), </span><span
|
232
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
233
|
+
style=\"color: #0000BB\">$type</span><span style=\"color: #007700\">);</span></code></li></ol>\n
|
234
|
+
\ </div>\n </li>\n <li>\n at\n
|
235
|
+
\ <strong>\n <abbr title=\"Symfony\\Component\\HttpKernel\\HttpKernel\">HttpKernel</abbr>\n
|
236
|
+
\ ->handleRaw\n </strong>\n (<em>object</em>(<abbr title=\"Symfony\\Component\\HttpFoundation\\Request\">Request</abbr>),
|
237
|
+
'1')\n\n <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php
|
238
|
+
at line 71 \n <a href=\"#\" onclick=\"toggle('trace_0_6'); switchIcons('icon_0_6_open',
|
239
|
+
'icon_0_6_close'); return false;\"><img class=\"toggle\" id=\"icon_0_6_close\"
|
240
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
241
|
+
hidden\" /><img class=\"toggle\" id=\"icon_0_6_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
242
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_0_6\"
|
243
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"68\"><li><code> <span
|
244
|
+
style=\"color: #007700\">public function </span><span style=\"color:
|
245
|
+
#0000BB\">handle</span><span style=\"color: #007700\">(</span><span style=\"color:
|
246
|
+
#0000BB\">Request $request</span><span style=\"color: #007700\">, </span><span
|
247
|
+
style=\"color: #0000BB\">$type </span><span style=\"color: #007700\">= </span><span
|
248
|
+
style=\"color: #0000BB\">HttpKernelInterface</span><span style=\"color: #007700\">::</span><span
|
249
|
+
style=\"color: #0000BB\">MASTER_REQUEST</span><span style=\"color: #007700\">, </span><span
|
250
|
+
style=\"color: #0000BB\">$catch </span><span style=\"color: #007700\">= </span><span
|
251
|
+
style=\"color: #0000BB\">true</span><span style=\"color: #007700\">)</span></code></li>\n<li><code> {</code></li>\n<li><code> try {</code></li>\n<li
|
252
|
+
class=\"selected\"><code> return <span
|
253
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
254
|
+
style=\"color: #0000BB\">handleRaw</span><span style=\"color: #007700\">(</span><span
|
255
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
256
|
+
style=\"color: #0000BB\">$type</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> } catch (\\<span
|
257
|
+
style=\"color: #0000BB\">Exception $e</span><span style=\"color: #007700\">) {</span></code></li>\n<li><code> if (<span
|
258
|
+
style=\"color: #0000BB\">false </span><span style=\"color: #007700\">=== </span><span
|
259
|
+
style=\"color: #0000BB\">$catch</span><span style=\"color: #007700\">) {</span></code></li>\n<li><code> throw <span
|
260
|
+
style=\"color: #0000BB\">$e</span><span style=\"color: #007700\">;</span></code></li></ol>\n
|
261
|
+
\ </div>\n </li>\n <li>\n at\n
|
262
|
+
\ <strong>\n <abbr title=\"Symfony\\Component\\HttpKernel\\HttpKernel\">HttpKernel</abbr>\n
|
263
|
+
\ ->handle\n </strong>\n (<em>object</em>(<abbr title=\"Symfony\\Component\\HttpFoundation\\Request\">Request</abbr>),
|
264
|
+
'1', <em>true</em>)\n\n <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/HttpKernel.php
|
265
|
+
at line 47 \n <a href=\"#\" onclick=\"toggle('trace_0_7'); switchIcons('icon_0_7_open',
|
266
|
+
'icon_0_7_close'); return false;\"><img class=\"toggle\" id=\"icon_0_7_close\"
|
267
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
268
|
+
hidden\" /><img class=\"toggle\" id=\"icon_0_7_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
269
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_0_7\"
|
270
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"44\"><li><code> <span
|
271
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
272
|
+
style=\"color: #0000BB\">container</span><span style=\"color: #007700\">-></span><span
|
273
|
+
style=\"color: #0000BB\">set</span><span style=\"color: #007700\">(</span><span
|
274
|
+
style=\"color: #DD0000\">'request'</span><span style=\"color: #007700\">, </span><span
|
275
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
276
|
+
style=\"color: #DD0000\">'request'</span><span style=\"color: #007700\">);</span></code></li>\n<li><code></code></li>\n<li><code> try {</code></li>\n<li
|
277
|
+
class=\"selected\"><code> <span
|
278
|
+
style=\"color: #0000BB\">$response </span><span style=\"color: #007700\">= </span><span
|
279
|
+
style=\"color: #0000BB\">parent</span><span style=\"color: #007700\">::</span><span
|
280
|
+
style=\"color: #0000BB\">handle</span><span style=\"color: #007700\">(</span><span
|
281
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
282
|
+
style=\"color: #0000BB\">$type</span><span style=\"color: #007700\">, </span><span
|
283
|
+
style=\"color: #0000BB\">$catch</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> } catch (\\<span
|
284
|
+
style=\"color: #0000BB\">Exception $e</span><span style=\"color: #007700\">) {</span></code></li>\n<li><code> <span
|
285
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
286
|
+
style=\"color: #0000BB\">container</span><span style=\"color: #007700\">-></span><span
|
287
|
+
style=\"color: #0000BB\">leaveScope</span><span style=\"color: #007700\">(</span><span
|
288
|
+
style=\"color: #DD0000\">'request'</span><span style=\"color: #007700\">);</span></code></li>\n<li><code></code></li></ol>\n
|
289
|
+
\ </div>\n </li>\n <li>\n at\n
|
290
|
+
\ <strong>\n <abbr title=\"Symfony\\Bundle\\FrameworkBundle\\HttpKernel\">HttpKernel</abbr>\n
|
291
|
+
\ ->handle\n </strong>\n (<em>object</em>(<abbr title=\"Symfony\\Component\\HttpFoundation\\Request\">Request</abbr>),
|
292
|
+
'1', <em>true</em>)\n\n <br />\n in <abbr title=\"/Users/schubert/workspace/jirafe/api/app/\">kernel.root_dir</abbr>/bootstrap.php.cache
|
293
|
+
at line 547 \n <a href=\"#\" onclick=\"toggle('trace_0_8'); switchIcons('icon_0_8_open',
|
294
|
+
'icon_0_8_close'); return false;\"><img class=\"toggle\" id=\"icon_0_8_close\"
|
295
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
296
|
+
hidden\" /><img class=\"toggle\" id=\"icon_0_8_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
297
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_0_8\"
|
298
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"544\"><li><code> <span
|
299
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
300
|
+
style=\"color: #0000BB\">boot</span><span style=\"color: #007700\">();</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li
|
301
|
+
class=\"selected\"><code> return <span
|
302
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
303
|
+
style=\"color: #0000BB\">getHttpKernel</span><span style=\"color: #007700\">()-></span><span
|
304
|
+
style=\"color: #0000BB\">handle</span><span style=\"color: #007700\">(</span><span
|
305
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
306
|
+
style=\"color: #0000BB\">$type</span><span style=\"color: #007700\">, </span><span
|
307
|
+
style=\"color: #0000BB\">$catch</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li><code> </code></li></ol>\n
|
308
|
+
\ </div>\n </li>\n <li>\n at\n
|
309
|
+
\ <strong>\n <abbr title=\"Symfony\\Component\\HttpKernel\\Kernel\">Kernel</abbr>\n
|
310
|
+
\ ->handle\n </strong>\n (<em>object</em>(<abbr title=\"Symfony\\Component\\HttpFoundation\\Request\">Request</abbr>))\n\n
|
311
|
+
\ <br />\n in /Users/schubert/workspace/jirafe/api/web/app_dev.php at
|
312
|
+
line 17 \n <a href=\"#\" onclick=\"toggle('trace_0_9'); switchIcons('icon_0_9_open',
|
313
|
+
'icon_0_9_close'); return false;\"><img class=\"toggle\" id=\"icon_0_9_close\"
|
314
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
315
|
+
hidden\" /><img class=\"toggle\" id=\"icon_0_9_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
316
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_0_9\"
|
317
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"14\"><li><code>use <span
|
318
|
+
style=\"color: #0000BB\">Symfony</span><span style=\"color: #007700\">\\</span><span
|
319
|
+
style=\"color: #0000BB\">Component</span><span style=\"color: #007700\">\\</span><span
|
320
|
+
style=\"color: #0000BB\">HttpFoundation</span><span style=\"color: #007700\">\\</span><span
|
321
|
+
style=\"color: #0000BB\">Request</span><span style=\"color: #007700\">;</span></code></li>\n<li><code></code></li>\n<li><code><span
|
322
|
+
style=\"color: #0000BB\">$kernel </span><span style=\"color: #007700\">= new </span><span
|
323
|
+
style=\"color: #0000BB\">AppKernel</span><span style=\"color: #007700\">(</span><span
|
324
|
+
style=\"color: #DD0000\">'dev'</span><span style=\"color: #007700\">, </span><span
|
325
|
+
style=\"color: #0000BB\">true</span><span style=\"color: #007700\">);</span></code></li>\n<li
|
326
|
+
class=\"selected\"><code><span style=\"color: #0000BB\">$kernel</span><span
|
327
|
+
style=\"color: #007700\">-></span><span style=\"color: #0000BB\">handle</span><span
|
328
|
+
style=\"color: #007700\">(</span><span style=\"color: #0000BB\">Request</span><span
|
329
|
+
style=\"color: #007700\">::</span><span style=\"color: #0000BB\">createFromGlobals</span><span
|
330
|
+
style=\"color: #007700\">())-></span><span style=\"color: #0000BB\">send</span><span
|
331
|
+
style=\"color: #007700\">();</span></code></li>\n<li><code>\n</code></li></ol>\n
|
332
|
+
\ </div>\n </li>\n </ol>\n</div>\n <div
|
333
|
+
class=\"block\">\n <h2>\n <span><small>[1/2]</small></span>\n
|
334
|
+
\ <abbr title=\"Symfony\\Component\\Routing\\Exception\\MethodNotAllowedException\">MethodNotAllowedException</abbr>:
|
335
|
+
\n <a href=\"#\" onclick=\"toggle('traces_1', 'traces');
|
336
|
+
switchIcons('icon_traces_1_open', 'icon_traces_1_close'); return false;\"><img
|
337
|
+
class=\"toggle\" id=\"icon_traces_1_close\" alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\"
|
338
|
+
style=\"visibility: hidden\" /><img class=\"toggle\" id=\"icon_traces_1_open\"
|
339
|
+
alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\" style=\"visibility:
|
340
|
+
display; margin-left: -18px\" /></a> </h2>\n \n <a id=\"traces_link_1\"></a>\n
|
341
|
+
\ <ol class=\"traces list_exception\" id=\"traces_1\" style=\"display: none\">\n
|
342
|
+
\ <li>\n \n \n in <abbr title=\"/Users/schubert/workspace/jirafe/api/app/\">kernel.root_dir</abbr>/cache/dev/appdevUrlMatcher.php
|
343
|
+
at line 752 \n <a href=\"#\" onclick=\"toggle('trace_1_0'); switchIcons('icon_1_0_open',
|
344
|
+
'icon_1_0_close'); return false;\"><img class=\"toggle\" id=\"icon_1_0_close\"
|
345
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
346
|
+
display\" /><img class=\"toggle\" id=\"icon_1_0_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
347
|
+
style=\"visibility: hidden; margin-left: -18px\" /></a> <div id=\"trace_1_0\"
|
348
|
+
style=\"display: block\" class=\"trace\">\n <ol start=\"749\"><li><code></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li
|
349
|
+
class=\"selected\"><code> throw <span
|
350
|
+
style=\"color: #0000BB\">0 </span><span style=\"color: #007700\">< </span><span
|
351
|
+
style=\"color: #0000BB\">count</span><span style=\"color: #007700\">(</span><span
|
352
|
+
style=\"color: #0000BB\">$allow</span><span style=\"color: #007700\">) ? new </span><span
|
353
|
+
style=\"color: #0000BB\">MethodNotAllowedException</span><span style=\"color:
|
354
|
+
#007700\">(</span><span style=\"color: #0000BB\">array_unique</span><span
|
355
|
+
style=\"color: #007700\">(</span><span style=\"color: #0000BB\">$allow</span><span
|
356
|
+
style=\"color: #007700\">)) : new </span><span style=\"color:
|
357
|
+
#0000BB\">ResourceNotFoundException</span><span style=\"color: #007700\">();</span></code></li>\n<li><code> }</code></li>\n<li><code>}</code></li>\n<li><code>\n</code></li></ol>\n
|
358
|
+
\ </div>\n </li>\n <li>\n at\n
|
359
|
+
\ <strong>\n <abbr title=\"appdevUrlMatcher\">appdevUrlMatcher</abbr>\n
|
360
|
+
\ ->match\n </strong>\n ('/v1/applications/sites')\n\n <br
|
361
|
+
/>\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Component/Routing/Router.php
|
362
|
+
at line 195 \n <a href=\"#\" onclick=\"toggle('trace_1_1'); switchIcons('icon_1_1_open',
|
363
|
+
'icon_1_1_close'); return false;\"><img class=\"toggle\" id=\"icon_1_1_close\"
|
364
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
365
|
+
hidden\" /><img class=\"toggle\" id=\"icon_1_1_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
366
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_1_1\"
|
367
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"192\"><li><code> */</code></li>\n<li><code> <span
|
368
|
+
style=\"color: #007700\">public function </span><span style=\"color:
|
369
|
+
#0000BB\">match</span><span style=\"color: #007700\">(</span><span style=\"color:
|
370
|
+
#0000BB\">$url</span><span style=\"color: #007700\">)</span></code></li>\n<li><code> {</code></li>\n<li
|
371
|
+
class=\"selected\"><code> return <span
|
372
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
373
|
+
style=\"color: #0000BB\">getMatcher</span><span style=\"color: #007700\">()-></span><span
|
374
|
+
style=\"color: #0000BB\">match</span><span style=\"color: #007700\">(</span><span
|
375
|
+
style=\"color: #0000BB\">$url</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li><code> <span
|
376
|
+
style=\"color: #FF8000\">/**</span></code></li></ol>\n </div>\n </li>\n
|
377
|
+
\ <li>\n at\n <strong>\n <abbr
|
378
|
+
title=\"Symfony\\Component\\Routing\\Router\">Router</abbr>\n ->match\n
|
379
|
+
\ </strong>\n ('/v1/applications/sites')\n\n <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/EventListener/RouterListener.php
|
380
|
+
at line 73 \n <a href=\"#\" onclick=\"toggle('trace_1_2'); switchIcons('icon_1_2_open',
|
381
|
+
'icon_1_2_close'); return false;\"><img class=\"toggle\" id=\"icon_1_2_close\"
|
382
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
383
|
+
hidden\" /><img class=\"toggle\" id=\"icon_1_2_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
384
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_1_2\"
|
385
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"70\"><li><code></code></li>\n<li><code> <span
|
386
|
+
style=\"color: #FF8000\">// add attributes based on the path info (routing)</span></code></li>\n<li><code> <span
|
387
|
+
style=\"color: #007700\">try {</span></code></li>\n<li class=\"selected\"><code> <span
|
388
|
+
style=\"color: #0000BB\">$parameters </span><span style=\"color: #007700\">= </span><span
|
389
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
390
|
+
style=\"color: #0000BB\">router</span><span style=\"color: #007700\">-></span><span
|
391
|
+
style=\"color: #0000BB\">match</span><span style=\"color: #007700\">(</span><span
|
392
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">-></span><span
|
393
|
+
style=\"color: #0000BB\">getPathInfo</span><span style=\"color: #007700\">());</span></code></li>\n<li><code></code></li>\n<li><code> if (<span
|
394
|
+
style=\"color: #0000BB\">null </span><span style=\"color: #007700\">!== </span><span
|
395
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
396
|
+
style=\"color: #0000BB\">logger</span><span style=\"color: #007700\">) {</span></code></li>\n<li><code> <span
|
397
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
398
|
+
style=\"color: #0000BB\">logger</span><span style=\"color: #007700\">-></span><span
|
399
|
+
style=\"color: #0000BB\">info</span><span style=\"color: #007700\">(</span><span
|
400
|
+
style=\"color: #0000BB\">sprintf</span><span style=\"color: #007700\">(</span><span
|
401
|
+
style=\"color: #DD0000\">'Matched route \"%s\" (parameters: %s)'</span><span
|
402
|
+
style=\"color: #007700\">, </span><span style=\"color: #0000BB\">$parameters</span><span
|
403
|
+
style=\"color: #007700\">[</span><span style=\"color: #DD0000\">'_route'</span><span
|
404
|
+
style=\"color: #007700\">], </span><span style=\"color: #0000BB\">$this</span><span
|
405
|
+
style=\"color: #007700\">-></span><span style=\"color: #0000BB\">parametersToString</span><span
|
406
|
+
style=\"color: #007700\">(</span><span style=\"color: #0000BB\">$parameters</span><span
|
407
|
+
style=\"color: #007700\">)));</span></code></li></ol>\n </div>\n </li>\n
|
408
|
+
\ <li>\n at\n <strong>\n <abbr
|
409
|
+
title=\"Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener\">RouterListener</abbr>\n
|
410
|
+
\ ->onKernelRequest\n </strong>\n (<em>object</em>(<abbr title=\"Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent\">GetResponseEvent</abbr>))\n\n
|
411
|
+
\ </li>\n <li>\n at\n <strong>\n
|
412
|
+
\ <abbr title=\"\"></abbr>\n call_user_func\n </strong>\n
|
413
|
+
\ (<em>array</em>(<em>object</em>(<abbr title=\"Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener\">RouterListener</abbr>),
|
414
|
+
'onKernelRequest'), <em>object</em>(<abbr title=\"Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent\">GetResponseEvent</abbr>))\n\n
|
415
|
+
\ <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/Debug/TraceableEventDispatcher.php
|
416
|
+
at line 82 \n <a href=\"#\" onclick=\"toggle('trace_1_4'); switchIcons('icon_1_4_open',
|
417
|
+
'icon_1_4_close'); return false;\"><img class=\"toggle\" id=\"icon_1_4_close\"
|
418
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
419
|
+
hidden\" /><img class=\"toggle\" id=\"icon_1_4_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
420
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_1_4\"
|
421
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"79\"><li><code></code></li>\n<li><code> <span
|
422
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
423
|
+
style=\"color: #0000BB\">called</span><span style=\"color: #007700\">[</span><span
|
424
|
+
style=\"color: #0000BB\">$eventName</span><span style=\"color: #007700\">.</span><span
|
425
|
+
style=\"color: #DD0000\">'.'</span><span style=\"color: #007700\">.</span><span
|
426
|
+
style=\"color: #0000BB\">$info</span><span style=\"color: #007700\">[</span><span
|
427
|
+
style=\"color: #DD0000\">'pretty'</span><span style=\"color: #007700\">]] = </span><span
|
428
|
+
style=\"color: #0000BB\">$info</span><span style=\"color: #007700\">;</span></code></li>\n<li><code></code></li>\n<li
|
429
|
+
class=\"selected\"><code> <span
|
430
|
+
style=\"color: #0000BB\">call_user_func</span><span style=\"color: #007700\">(</span><span
|
431
|
+
style=\"color: #0000BB\">$listener</span><span style=\"color: #007700\">, </span><span
|
432
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">);</span></code></li>\n<li><code></code></li>\n<li><code> if (<span
|
433
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">-></span><span
|
434
|
+
style=\"color: #0000BB\">isPropagationStopped</span><span style=\"color: #007700\">()) {</span></code></li>\n<li><code> if (<span
|
435
|
+
style=\"color: #0000BB\">null </span><span style=\"color: #007700\">!== </span><span
|
436
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
437
|
+
style=\"color: #0000BB\">logger</span><span style=\"color: #007700\">) {</span></code></li></ol>\n
|
438
|
+
\ </div>\n </li>\n <li>\n at\n
|
439
|
+
\ <strong>\n <abbr title=\"Symfony\\Bundle\\FrameworkBundle\\Debug\\TraceableEventDispatcher\">TraceableEventDispatcher</abbr>\n
|
440
|
+
\ ->doDispatch\n </strong>\n (<em>array</em>(<em>array</em>(<em>object</em>(<abbr
|
441
|
+
title=\"Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener\">ProfilerListener</abbr>),
|
442
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener\">RouterListener</abbr>),
|
443
|
+
'onEarlyKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Jirafe\\Bundle\\ApiBundle\\Listener\\SessionListener\">SessionListener</abbr>),
|
444
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Symfony\\Component\\Security\\Http\\Firewall\">Firewall</abbr>),
|
445
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener\">RouterListener</abbr>),
|
446
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"FOS\\RestBundle\\EventListener\\BodyListener\">BodyListener</abbr>),
|
447
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Jirafe\\Bundle\\ApiBundle\\Listener\\RequestLogListener\">RequestLogListener</abbr>),
|
448
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Jirafe\\Bundle\\DashboardBundle\\Templating\\Helper\\MenuHelper\">MenuHelper</abbr>),
|
449
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Jirafe\\Bundle\\DashboardBundle\\Listener\\ChangeLocaleKernelRequestListener\">ChangeLocaleKernelRequestListener</abbr>),
|
450
|
+
'onKernelRequest'), <em>array</em>(<em>object</em>(<abbr title=\"Jirafe\\Bundle\\DashboardBundle\\Listener\\SaveAppIdInCookieKernelRequestListener\">SaveAppIdInCookieKernelRequestListener</abbr>),
|
451
|
+
'onKernelRequest')), 'kernel.request', <em>object</em>(<abbr title=\"Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent\">GetResponseEvent</abbr>))\n\n
|
452
|
+
\ <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Component/EventDispatcher/EventDispatcher.php
|
453
|
+
at line 49 \n <a href=\"#\" onclick=\"toggle('trace_1_5'); switchIcons('icon_1_5_open',
|
454
|
+
'icon_1_5_close'); return false;\"><img class=\"toggle\" id=\"icon_1_5_close\"
|
455
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
456
|
+
hidden\" /><img class=\"toggle\" id=\"icon_1_5_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
457
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_1_5\"
|
458
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"46\"><li><code> <span
|
459
|
+
style=\"color: #0000BB\">$event </span><span style=\"color: #007700\">= new </span><span
|
460
|
+
style=\"color: #0000BB\">Event</span><span style=\"color: #007700\">();</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li
|
461
|
+
class=\"selected\"><code> <span
|
462
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
463
|
+
style=\"color: #0000BB\">doDispatch</span><span style=\"color: #007700\">(</span><span
|
464
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
465
|
+
style=\"color: #0000BB\">getListeners</span><span style=\"color: #007700\">(</span><span
|
466
|
+
style=\"color: #0000BB\">$eventName</span><span style=\"color: #007700\">), </span><span
|
467
|
+
style=\"color: #0000BB\">$eventName</span><span style=\"color: #007700\">, </span><span
|
468
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li><code> <span
|
469
|
+
style=\"color: #FF8000\">/**</span></code></li></ol>\n </div>\n </li>\n
|
470
|
+
\ <li>\n at\n <strong>\n <abbr
|
471
|
+
title=\"Symfony\\Component\\EventDispatcher\\EventDispatcher\">EventDispatcher</abbr>\n
|
472
|
+
\ ->dispatch\n </strong>\n ('kernel.request', <em>object</em>(<abbr
|
473
|
+
title=\"Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent\">GetResponseEvent</abbr>))\n\n
|
474
|
+
\ <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/ContainerAwareEventDispatcher.php
|
475
|
+
at line 145 \n <a href=\"#\" onclick=\"toggle('trace_1_6'); switchIcons('icon_1_6_open',
|
476
|
+
'icon_1_6_close'); return false;\"><img class=\"toggle\" id=\"icon_1_6_close\"
|
477
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
478
|
+
hidden\" /><img class=\"toggle\" id=\"icon_1_6_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
479
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_1_6\"
|
480
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"142\"><li><code> {</code></li>\n<li><code> <span
|
481
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
482
|
+
style=\"color: #0000BB\">lazyLoad</span><span style=\"color: #007700\">(</span><span
|
483
|
+
style=\"color: #0000BB\">$eventName</span><span style=\"color: #007700\">);</span></code></li>\n<li><code></code></li>\n<li
|
484
|
+
class=\"selected\"><code> <span
|
485
|
+
style=\"color: #0000BB\">parent</span><span style=\"color: #007700\">::</span><span
|
486
|
+
style=\"color: #0000BB\">dispatch</span><span style=\"color: #007700\">(</span><span
|
487
|
+
style=\"color: #0000BB\">$eventName</span><span style=\"color: #007700\">, </span><span
|
488
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li><code> <span
|
489
|
+
style=\"color: #FF8000\">/**</span></code></li></ol>\n </div>\n </li>\n
|
490
|
+
\ <li>\n at\n <strong>\n <abbr
|
491
|
+
title=\"Symfony\\Bundle\\FrameworkBundle\\ContainerAwareEventDispatcher\">ContainerAwareEventDispatcher</abbr>\n
|
492
|
+
\ ->dispatch\n </strong>\n ('kernel.request', <em>object</em>(<abbr
|
493
|
+
title=\"Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent\">GetResponseEvent</abbr>))\n\n
|
494
|
+
\ <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php
|
495
|
+
at line 98 \n <a href=\"#\" onclick=\"toggle('trace_1_7'); switchIcons('icon_1_7_open',
|
496
|
+
'icon_1_7_close'); return false;\"><img class=\"toggle\" id=\"icon_1_7_close\"
|
497
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
498
|
+
hidden\" /><img class=\"toggle\" id=\"icon_1_7_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
499
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_1_7\"
|
500
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"95\"><li><code> {</code></li>\n<li><code> <span
|
501
|
+
style=\"color: #FF8000\">// request</span></code></li>\n<li><code> <span
|
502
|
+
style=\"color: #0000BB\">$event </span><span style=\"color: #007700\">= new </span><span
|
503
|
+
style=\"color: #0000BB\">GetResponseEvent</span><span style=\"color: #007700\">(</span><span
|
504
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">, </span><span
|
505
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
506
|
+
style=\"color: #0000BB\">$type</span><span style=\"color: #007700\">);</span></code></li>\n<li
|
507
|
+
class=\"selected\"><code> <span
|
508
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
509
|
+
style=\"color: #0000BB\">dispatcher</span><span style=\"color: #007700\">-></span><span
|
510
|
+
style=\"color: #0000BB\">dispatch</span><span style=\"color: #007700\">(</span><span
|
511
|
+
style=\"color: #0000BB\">KernelEvents</span><span style=\"color: #007700\">::</span><span
|
512
|
+
style=\"color: #0000BB\">REQUEST</span><span style=\"color: #007700\">, </span><span
|
513
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">);</span></code></li>\n<li><code></code></li>\n<li><code> if (<span
|
514
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">-></span><span
|
515
|
+
style=\"color: #0000BB\">hasResponse</span><span style=\"color: #007700\">()) {</span></code></li>\n<li><code> return <span
|
516
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
517
|
+
style=\"color: #0000BB\">filterResponse</span><span style=\"color: #007700\">(</span><span
|
518
|
+
style=\"color: #0000BB\">$event</span><span style=\"color: #007700\">-></span><span
|
519
|
+
style=\"color: #0000BB\">getResponse</span><span style=\"color: #007700\">(), </span><span
|
520
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
521
|
+
style=\"color: #0000BB\">$type</span><span style=\"color: #007700\">);</span></code></li></ol>\n
|
522
|
+
\ </div>\n </li>\n <li>\n at\n
|
523
|
+
\ <strong>\n <abbr title=\"Symfony\\Component\\HttpKernel\\HttpKernel\">HttpKernel</abbr>\n
|
524
|
+
\ ->handleRaw\n </strong>\n (<em>object</em>(<abbr title=\"Symfony\\Component\\HttpFoundation\\Request\">Request</abbr>),
|
525
|
+
'1')\n\n <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php
|
526
|
+
at line 71 \n <a href=\"#\" onclick=\"toggle('trace_1_8'); switchIcons('icon_1_8_open',
|
527
|
+
'icon_1_8_close'); return false;\"><img class=\"toggle\" id=\"icon_1_8_close\"
|
528
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
529
|
+
hidden\" /><img class=\"toggle\" id=\"icon_1_8_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
530
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_1_8\"
|
531
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"68\"><li><code> <span
|
532
|
+
style=\"color: #007700\">public function </span><span style=\"color:
|
533
|
+
#0000BB\">handle</span><span style=\"color: #007700\">(</span><span style=\"color:
|
534
|
+
#0000BB\">Request $request</span><span style=\"color: #007700\">, </span><span
|
535
|
+
style=\"color: #0000BB\">$type </span><span style=\"color: #007700\">= </span><span
|
536
|
+
style=\"color: #0000BB\">HttpKernelInterface</span><span style=\"color: #007700\">::</span><span
|
537
|
+
style=\"color: #0000BB\">MASTER_REQUEST</span><span style=\"color: #007700\">, </span><span
|
538
|
+
style=\"color: #0000BB\">$catch </span><span style=\"color: #007700\">= </span><span
|
539
|
+
style=\"color: #0000BB\">true</span><span style=\"color: #007700\">)</span></code></li>\n<li><code> {</code></li>\n<li><code> try {</code></li>\n<li
|
540
|
+
class=\"selected\"><code> return <span
|
541
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
542
|
+
style=\"color: #0000BB\">handleRaw</span><span style=\"color: #007700\">(</span><span
|
543
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
544
|
+
style=\"color: #0000BB\">$type</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> } catch (\\<span
|
545
|
+
style=\"color: #0000BB\">Exception $e</span><span style=\"color: #007700\">) {</span></code></li>\n<li><code> if (<span
|
546
|
+
style=\"color: #0000BB\">false </span><span style=\"color: #007700\">=== </span><span
|
547
|
+
style=\"color: #0000BB\">$catch</span><span style=\"color: #007700\">) {</span></code></li>\n<li><code> throw <span
|
548
|
+
style=\"color: #0000BB\">$e</span><span style=\"color: #007700\">;</span></code></li></ol>\n
|
549
|
+
\ </div>\n </li>\n <li>\n at\n
|
550
|
+
\ <strong>\n <abbr title=\"Symfony\\Component\\HttpKernel\\HttpKernel\">HttpKernel</abbr>\n
|
551
|
+
\ ->handle\n </strong>\n (<em>object</em>(<abbr title=\"Symfony\\Component\\HttpFoundation\\Request\">Request</abbr>),
|
552
|
+
'1', <em>true</em>)\n\n <br />\n in /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/HttpKernel.php
|
553
|
+
at line 47 \n <a href=\"#\" onclick=\"toggle('trace_1_9'); switchIcons('icon_1_9_open',
|
554
|
+
'icon_1_9_close'); return false;\"><img class=\"toggle\" id=\"icon_1_9_close\"
|
555
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
556
|
+
hidden\" /><img class=\"toggle\" id=\"icon_1_9_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
557
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_1_9\"
|
558
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"44\"><li><code> <span
|
559
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
560
|
+
style=\"color: #0000BB\">container</span><span style=\"color: #007700\">-></span><span
|
561
|
+
style=\"color: #0000BB\">set</span><span style=\"color: #007700\">(</span><span
|
562
|
+
style=\"color: #DD0000\">'request'</span><span style=\"color: #007700\">, </span><span
|
563
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
564
|
+
style=\"color: #DD0000\">'request'</span><span style=\"color: #007700\">);</span></code></li>\n<li><code></code></li>\n<li><code> try {</code></li>\n<li
|
565
|
+
class=\"selected\"><code> <span
|
566
|
+
style=\"color: #0000BB\">$response </span><span style=\"color: #007700\">= </span><span
|
567
|
+
style=\"color: #0000BB\">parent</span><span style=\"color: #007700\">::</span><span
|
568
|
+
style=\"color: #0000BB\">handle</span><span style=\"color: #007700\">(</span><span
|
569
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
570
|
+
style=\"color: #0000BB\">$type</span><span style=\"color: #007700\">, </span><span
|
571
|
+
style=\"color: #0000BB\">$catch</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> } catch (\\<span
|
572
|
+
style=\"color: #0000BB\">Exception $e</span><span style=\"color: #007700\">) {</span></code></li>\n<li><code> <span
|
573
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
574
|
+
style=\"color: #0000BB\">container</span><span style=\"color: #007700\">-></span><span
|
575
|
+
style=\"color: #0000BB\">leaveScope</span><span style=\"color: #007700\">(</span><span
|
576
|
+
style=\"color: #DD0000\">'request'</span><span style=\"color: #007700\">);</span></code></li>\n<li><code></code></li></ol>\n
|
577
|
+
\ </div>\n </li>\n <li>\n at\n
|
578
|
+
\ <strong>\n <abbr title=\"Symfony\\Bundle\\FrameworkBundle\\HttpKernel\">HttpKernel</abbr>\n
|
579
|
+
\ ->handle\n </strong>\n (<em>object</em>(<abbr title=\"Symfony\\Component\\HttpFoundation\\Request\">Request</abbr>),
|
580
|
+
'1', <em>true</em>)\n\n <br />\n in <abbr title=\"/Users/schubert/workspace/jirafe/api/app/\">kernel.root_dir</abbr>/bootstrap.php.cache
|
581
|
+
at line 547 \n <a href=\"#\" onclick=\"toggle('trace_1_10'); switchIcons('icon_1_10_open',
|
582
|
+
'icon_1_10_close'); return false;\"><img class=\"toggle\" id=\"icon_1_10_close\"
|
583
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
584
|
+
hidden\" /><img class=\"toggle\" id=\"icon_1_10_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
585
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_1_10\"
|
586
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"544\"><li><code> <span
|
587
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
588
|
+
style=\"color: #0000BB\">boot</span><span style=\"color: #007700\">();</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li
|
589
|
+
class=\"selected\"><code> return <span
|
590
|
+
style=\"color: #0000BB\">$this</span><span style=\"color: #007700\">-></span><span
|
591
|
+
style=\"color: #0000BB\">getHttpKernel</span><span style=\"color: #007700\">()-></span><span
|
592
|
+
style=\"color: #0000BB\">handle</span><span style=\"color: #007700\">(</span><span
|
593
|
+
style=\"color: #0000BB\">$request</span><span style=\"color: #007700\">, </span><span
|
594
|
+
style=\"color: #0000BB\">$type</span><span style=\"color: #007700\">, </span><span
|
595
|
+
style=\"color: #0000BB\">$catch</span><span style=\"color: #007700\">);</span></code></li>\n<li><code> }</code></li>\n<li><code></code></li>\n<li><code> </code></li></ol>\n
|
596
|
+
\ </div>\n </li>\n <li>\n at\n
|
597
|
+
\ <strong>\n <abbr title=\"Symfony\\Component\\HttpKernel\\Kernel\">Kernel</abbr>\n
|
598
|
+
\ ->handle\n </strong>\n (<em>object</em>(<abbr title=\"Symfony\\Component\\HttpFoundation\\Request\">Request</abbr>))\n\n
|
599
|
+
\ <br />\n in /Users/schubert/workspace/jirafe/api/web/app_dev.php at
|
600
|
+
line 17 \n <a href=\"#\" onclick=\"toggle('trace_1_11'); switchIcons('icon_1_11_open',
|
601
|
+
'icon_1_11_close'); return false;\"><img class=\"toggle\" id=\"icon_1_11_close\"
|
602
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
603
|
+
hidden\" /><img class=\"toggle\" id=\"icon_1_11_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
604
|
+
style=\"visibility: display; margin-left: -18px\" /></a> <div id=\"trace_1_11\"
|
605
|
+
style=\"display: none\" class=\"trace\">\n <ol start=\"14\"><li><code>use <span
|
606
|
+
style=\"color: #0000BB\">Symfony</span><span style=\"color: #007700\">\\</span><span
|
607
|
+
style=\"color: #0000BB\">Component</span><span style=\"color: #007700\">\\</span><span
|
608
|
+
style=\"color: #0000BB\">HttpFoundation</span><span style=\"color: #007700\">\\</span><span
|
609
|
+
style=\"color: #0000BB\">Request</span><span style=\"color: #007700\">;</span></code></li>\n<li><code></code></li>\n<li><code><span
|
610
|
+
style=\"color: #0000BB\">$kernel </span><span style=\"color: #007700\">= new </span><span
|
611
|
+
style=\"color: #0000BB\">AppKernel</span><span style=\"color: #007700\">(</span><span
|
612
|
+
style=\"color: #DD0000\">'dev'</span><span style=\"color: #007700\">, </span><span
|
613
|
+
style=\"color: #0000BB\">true</span><span style=\"color: #007700\">);</span></code></li>\n<li
|
614
|
+
class=\"selected\"><code><span style=\"color: #0000BB\">$kernel</span><span
|
615
|
+
style=\"color: #007700\">-></span><span style=\"color: #0000BB\">handle</span><span
|
616
|
+
style=\"color: #007700\">(</span><span style=\"color: #0000BB\">Request</span><span
|
617
|
+
style=\"color: #007700\">::</span><span style=\"color: #0000BB\">createFromGlobals</span><span
|
618
|
+
style=\"color: #007700\">())-></span><span style=\"color: #0000BB\">send</span><span
|
619
|
+
style=\"color: #007700\">();</span></code></li>\n<li><code>\n</code></li></ol>\n
|
620
|
+
\ </div>\n </li>\n </ol>\n</div>\n \n <div
|
621
|
+
class=\"block\">\n <div class=\"logs clear_fix\">\n <h2>\n
|
622
|
+
\ Logs \n <a href=\"#\" onclick=\"toggle('logs');
|
623
|
+
switchIcons('icon_logs_open', 'icon_logs_close'); return false;\"><img class=\"toggle\"
|
624
|
+
id=\"icon_logs_open\" alt=\"+\" src=\"/bundles/framework/images/blue_picto_more.gif\"
|
625
|
+
style=\"visibility: hidden\" /><img class=\"toggle\" id=\"icon_logs_close\"
|
626
|
+
alt=\"-\" src=\"/bundles/framework/images/blue_picto_less.gif\" style=\"visibility:
|
627
|
+
visible; margin-left: -18px\" /></a></h2>\n <div
|
628
|
+
class=\"error_count\">\n <span>\n 1
|
629
|
+
error\n </span>\n </div>\n \n
|
630
|
+
\ </div>\n\n <div id=\"logs\">\n <ol class=\"traces
|
631
|
+
logs\">\n <li>\n Notified event "kernel.request"
|
632
|
+
to listener "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelRequest".\n
|
633
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
634
|
+
to listener "Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener::onEarlyKernelRequest".\n
|
635
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
636
|
+
to listener "Jirafe\\Bundle\\ApiBundle\\Listener\\SessionListener::onKernelRequest".\n
|
637
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
638
|
+
to listener "Symfony\\Component\\Security\\Http\\Firewall::onKernelRequest".\n
|
639
|
+
\ </li>\n <li>\n SELECT\n t.token,\n
|
640
|
+
\ a.application_id, a.name AS app_name, a.platform_type, a.platform_version,\n
|
641
|
+
\ a.platform_admin_username, a.plugin_version,\n u.user_id,
|
642
|
+
u.name AS user_name, u.surname, u.email, u.password, u.salt,\n u.is_confirmed,
|
643
|
+
u.is_hosted_user, u.confirmation_token\n FROM tokens AS t\n LEFT
|
644
|
+
JOIN applications AS a ON a.application_id = t.application_id\n LEFT
|
645
|
+
JOIN users AS u ON u.user_id = t.user_id\n WHERE t.token = :token\n
|
646
|
+
\ LIMIT 1 ({"token":"user_master_token"})\n </li>\n
|
647
|
+
\ <li>\n SELECT\n t.token,\n a.application_id,
|
648
|
+
a.name, a.platform_type, a.platform_version,\n a.platform_admin_username,
|
649
|
+
a.plugin_version,\n u.user_id\n FROM tokens AS t\n INNER
|
650
|
+
JOIN applications AS a ON a.application_id = t.application_id\n INNER
|
651
|
+
JOIN users AS u ON u.user_id = t.user_id\n WHERE t.user_id = :user_id
|
652
|
+
({"user_id":1})\n </li>\n <li>\n Notified
|
653
|
+
event "kernel.request" to listener "Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener::onKernelRequest".\n
|
654
|
+
\ </li>\n <li>\n Notified event "kernel.exception"
|
655
|
+
to listener "Jirafe\\Bundle\\ApiBundle\\Listener\\ExceptionListener::onKernelException".\n
|
656
|
+
\ </li>\n <li>\n Notified event "kernel.exception"
|
657
|
+
to listener "Symfony\\Component\\Security\\Http\\Firewall\\ExceptionListener::onKernelException".\n
|
658
|
+
\ </li>\n <li>\n Notified event "kernel.exception"
|
659
|
+
to listener "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelException".\n
|
660
|
+
\ </li>\n <li>\n Notified event "kernel.exception"
|
661
|
+
to listener "Symfony\\Component\\HttpKernel\\EventListener\\ExceptionListener::onKernelException".\n
|
662
|
+
\ </li>\n <li class=\"error\">\n Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException:
|
663
|
+
No route found for "POST /v1/applications/sites": Method Not Allowed
|
664
|
+
(Allow: PUT, GET, HEAD) (uncaught exception) at /Users/schubert/workspace/jirafe/api/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/EventListener/RouterListener.php
|
665
|
+
line 87\n </li>\n <li>\n Notified event "kernel.request"
|
666
|
+
to listener "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelRequest".\n
|
667
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
668
|
+
to listener "Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener::onEarlyKernelRequest".\n
|
669
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
670
|
+
to listener "Jirafe\\Bundle\\ApiBundle\\Listener\\SessionListener::onKernelRequest".\n
|
671
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
672
|
+
to listener "Symfony\\Component\\Security\\Http\\Firewall::onKernelRequest".\n
|
673
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
674
|
+
to listener "Symfony\\Bundle\\FrameworkBundle\\EventListener\\RouterListener::onKernelRequest".\n
|
675
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
676
|
+
to listener "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest".\n
|
677
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
678
|
+
to listener "Jirafe\\Bundle\\ApiBundle\\Listener\\RequestLogListener::onKernelRequest".\n
|
679
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
680
|
+
to listener "Jirafe\\Bundle\\DashboardBundle\\Templating\\Helper\\MenuHelper::onKernelRequest".\n
|
681
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
682
|
+
to listener "Jirafe\\Bundle\\DashboardBundle\\Listener\\ChangeLocaleKernelRequestListener::onKernelRequest".\n
|
683
|
+
\ </li>\n <li>\n Notified event "kernel.request"
|
684
|
+
to listener "Jirafe\\Bundle\\DashboardBundle\\Listener\\SaveAppIdInCookieKernelRequestListener::onKernelRequest".\n
|
685
|
+
\ </li>\n <li>\n Notified event "kernel.controller"
|
686
|
+
to listener "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RequestDataCollector::onKernelController".\n
|
687
|
+
\ </li>\n </ol>\n </div>\n\n </div>\n \n \n</div>\n\n<script
|
688
|
+
type=\"text/javascript\">//<![CDATA[\n function toggle(id, clazz) {\n var
|
689
|
+
el = document.getElementById(id),\n current = el.style.display,\n
|
690
|
+
\ i;\n\n if (clazz) {\n var tags = document.getElementsByTagName('*');\n
|
691
|
+
\ for (i = tags.length - 1; i >= 0 ; i--) {\n if
|
692
|
+
(tags[i].className === clazz) {\n tags[i].style.display
|
693
|
+
= 'none';\n }\n }\n }\n\n el.style.display
|
694
|
+
= current === 'none' ? 'block' : 'none';\n }\n\n function switchIcons(id1,
|
695
|
+
id2) {\n var icon1, icon2, visibility1, visibility2;\n\n icon1
|
696
|
+
= document.getElementById(id1);\n icon2 = document.getElementById(id2);\n\n
|
697
|
+
\ visibility1 = icon1.style.visibility;\n visibility2 = icon2.style.visibility;\n\n
|
698
|
+
\ icon1.style.visibility = visibility2;\n icon2.style.visibility
|
699
|
+
= visibility1;\n }\n//]]></script>\n </div>\n \n<div id=\"sfwdt5047739daee71\"
|
700
|
+
style=\"display: none\"></div><script type=\"text/javascript\">/*<![CDATA[*/
|
701
|
+
\ (function () { var wdt, xhr; wdt = document.getElementById('sfwdt5047739daee71');
|
702
|
+
\ if (window.XMLHttpRequest) { xhr = new XMLHttpRequest();
|
703
|
+
\ } else { xhr = new ActiveXObject('Microsoft.XMLHTTP');
|
704
|
+
\ } xhr.open('GET', '/_wdt/5047739daee71', true); xhr.setRequestHeader('X-Requested-With',
|
705
|
+
'XMLHttpRequest'); xhr.onreadystatechange = function(state) { if
|
706
|
+
(4 === xhr.readyState && 200 === xhr.status && -1 !== xhr.responseText.indexOf('sf-toolbarreset'))
|
707
|
+
{ wdt.innerHTML = xhr.responseText; wdt.style.display
|
708
|
+
= 'block'; } }; xhr.send(''); })();/*]]>*/</script>\n</body>\n</html>\n"
|
709
|
+
http_version:
|
710
|
+
recorded_at: Wed, 05 Sep 2012 15:45:33 GMT
|
711
|
+
- request:
|
712
|
+
method: post
|
713
|
+
uri: http://api.jirafe.dev/v1/applications/122/sites?token=user_master_token
|
714
|
+
body:
|
715
|
+
encoding: US-ASCII
|
716
|
+
string: description=test%20site%20cmb&store_api_url=http%3A%2F%2Flocalhost%3A3333
|
717
|
+
headers: {}
|
718
|
+
response:
|
719
|
+
status:
|
720
|
+
code: 403
|
721
|
+
message: Forbidden
|
722
|
+
headers:
|
723
|
+
Server:
|
724
|
+
- nginx/1.2.2
|
725
|
+
Content-Type:
|
726
|
+
- text/html; charset=UTF-8
|
727
|
+
Transfer-Encoding:
|
728
|
+
- chunked
|
729
|
+
Connection:
|
730
|
+
- keep-alive
|
731
|
+
Keep-Alive:
|
732
|
+
- timeout=10
|
733
|
+
X-Powered-By:
|
734
|
+
- PHP/5.3.15
|
735
|
+
Cache-Control:
|
736
|
+
- no-cache
|
737
|
+
Date:
|
738
|
+
- Wed, 05 Sep 2012 19:04:08 GMT
|
739
|
+
X-Debug-Token:
|
740
|
+
- 5047a2289d6c2
|
741
|
+
body:
|
742
|
+
encoding: US-ASCII
|
743
|
+
string: ! '{"error":{"code":403,"message":"Access denied."}}
|
744
|
+
|
745
|
+
'
|
746
|
+
http_version:
|
747
|
+
recorded_at: Wed, 05 Sep 2012 19:04:08 GMT
|
748
|
+
- request:
|
749
|
+
method: post
|
750
|
+
uri: http://api.jirafe.dev/v1/applications/144/sites?token=user_master_token
|
751
|
+
body:
|
752
|
+
encoding: US-ASCII
|
753
|
+
string: description=test%20site%20cmb&store_api_url=http%3A%2F%2Flocalhost%3A3333
|
754
|
+
headers: {}
|
755
|
+
response:
|
756
|
+
status:
|
757
|
+
code: 403
|
758
|
+
message: Forbidden
|
759
|
+
headers:
|
760
|
+
Server:
|
761
|
+
- nginx/1.2.2
|
762
|
+
Content-Type:
|
763
|
+
- text/html; charset=UTF-8
|
764
|
+
Transfer-Encoding:
|
765
|
+
- chunked
|
766
|
+
Connection:
|
767
|
+
- keep-alive
|
768
|
+
Keep-Alive:
|
769
|
+
- timeout=10
|
770
|
+
X-Powered-By:
|
771
|
+
- PHP/5.3.15
|
772
|
+
Cache-Control:
|
773
|
+
- no-cache
|
774
|
+
Date:
|
775
|
+
- Wed, 05 Sep 2012 19:05:04 GMT
|
776
|
+
X-Debug-Token:
|
777
|
+
- 5047a2603ad02
|
778
|
+
body:
|
779
|
+
encoding: US-ASCII
|
780
|
+
string: ! '{"error":{"code":403,"message":"Access denied."}}
|
781
|
+
|
782
|
+
'
|
783
|
+
http_version:
|
784
|
+
recorded_at: Wed, 05 Sep 2012 19:05:04 GMT
|
785
|
+
- request:
|
786
|
+
method: post
|
787
|
+
uri: http://api.jirafe.dev/v1/applications/156/sites?token=user_master_token
|
788
|
+
body:
|
789
|
+
encoding: US-ASCII
|
790
|
+
string: description=test%20site%20cmb&store_api_url=http%3A%2F%2Flocalhost%3A3333
|
791
|
+
headers: {}
|
792
|
+
response:
|
793
|
+
status:
|
794
|
+
code: 403
|
795
|
+
message: Forbidden
|
796
|
+
headers:
|
797
|
+
Server:
|
798
|
+
- nginx/1.2.2
|
799
|
+
Content-Type:
|
800
|
+
- text/html; charset=UTF-8
|
801
|
+
Transfer-Encoding:
|
802
|
+
- chunked
|
803
|
+
Connection:
|
804
|
+
- keep-alive
|
805
|
+
Keep-Alive:
|
806
|
+
- timeout=10
|
807
|
+
X-Powered-By:
|
808
|
+
- PHP/5.3.15
|
809
|
+
Cache-Control:
|
810
|
+
- no-cache
|
811
|
+
Date:
|
812
|
+
- Wed, 05 Sep 2012 19:05:41 GMT
|
813
|
+
X-Debug-Token:
|
814
|
+
- 5047a2850cd3d
|
815
|
+
body:
|
816
|
+
encoding: US-ASCII
|
817
|
+
string: ! '{"error":{"code":403,"message":"Access denied."}}
|
818
|
+
|
819
|
+
'
|
820
|
+
http_version:
|
821
|
+
recorded_at: Wed, 05 Sep 2012 19:05:41 GMT
|
822
|
+
- request:
|
823
|
+
method: post
|
824
|
+
uri: http://api.jirafe.dev/v1/applications/185/sites?token=940a411f5570d6af9e484d7479ce68b9
|
825
|
+
body:
|
826
|
+
encoding: US-ASCII
|
827
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2Flocalhost%3A3333
|
828
|
+
headers: {}
|
829
|
+
response:
|
830
|
+
status:
|
831
|
+
code: 400
|
832
|
+
message: Bad Request
|
833
|
+
headers:
|
834
|
+
Server:
|
835
|
+
- nginx/1.2.2
|
836
|
+
Content-Type:
|
837
|
+
- text/html; charset=UTF-8
|
838
|
+
Transfer-Encoding:
|
839
|
+
- chunked
|
840
|
+
Connection:
|
841
|
+
- keep-alive
|
842
|
+
Keep-Alive:
|
843
|
+
- timeout=10
|
844
|
+
X-Powered-By:
|
845
|
+
- PHP/5.3.15
|
846
|
+
Cache-Control:
|
847
|
+
- no-cache
|
848
|
+
Date:
|
849
|
+
- Wed, 05 Sep 2012 19:14:59 GMT
|
850
|
+
X-Debug-Token:
|
851
|
+
- 5047a4b3d5ca4
|
852
|
+
body:
|
853
|
+
encoding: US-ASCII
|
854
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:\/\/localhost:3333)
|
855
|
+
- Url is not in a valid format"]}}
|
856
|
+
|
857
|
+
'
|
858
|
+
http_version:
|
859
|
+
recorded_at: Wed, 05 Sep 2012 19:14:59 GMT
|
860
|
+
- request:
|
861
|
+
method: post
|
862
|
+
uri: http://api.jirafe.dev/v1/applications/186/sites?token=6e67e04e33aa8a9f21de6c2619e21623
|
863
|
+
body:
|
864
|
+
encoding: US-ASCII
|
865
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2Flocalhost%3A3333%2Fcallback
|
866
|
+
headers: {}
|
867
|
+
response:
|
868
|
+
status:
|
869
|
+
code: 400
|
870
|
+
message: Bad Request
|
871
|
+
headers:
|
872
|
+
Server:
|
873
|
+
- nginx/1.2.2
|
874
|
+
Content-Type:
|
875
|
+
- text/html; charset=UTF-8
|
876
|
+
Transfer-Encoding:
|
877
|
+
- chunked
|
878
|
+
Connection:
|
879
|
+
- keep-alive
|
880
|
+
Keep-Alive:
|
881
|
+
- timeout=10
|
882
|
+
X-Powered-By:
|
883
|
+
- PHP/5.3.15
|
884
|
+
Cache-Control:
|
885
|
+
- no-cache
|
886
|
+
Date:
|
887
|
+
- Wed, 05 Sep 2012 19:15:18 GMT
|
888
|
+
X-Debug-Token:
|
889
|
+
- 5047a4c6ca738
|
890
|
+
body:
|
891
|
+
encoding: US-ASCII
|
892
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:\/\/localhost:3333\/callback)
|
893
|
+
- Url is not in a valid format"]}}
|
894
|
+
|
895
|
+
'
|
896
|
+
http_version:
|
897
|
+
recorded_at: Wed, 05 Sep 2012 19:15:18 GMT
|
898
|
+
- request:
|
899
|
+
method: post
|
900
|
+
uri: http://api.jirafe.dev/v1/applications/187/sites?token=de822744693eed4b563791d4d7e3bef7
|
901
|
+
body:
|
902
|
+
encoding: US-ASCII
|
903
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2Flocalhost%3A3333%2Fcallback
|
904
|
+
headers: {}
|
905
|
+
response:
|
906
|
+
status:
|
907
|
+
code: 400
|
908
|
+
message: Bad Request
|
909
|
+
headers:
|
910
|
+
Server:
|
911
|
+
- nginx/1.2.2
|
912
|
+
Content-Type:
|
913
|
+
- text/html; charset=UTF-8
|
914
|
+
Transfer-Encoding:
|
915
|
+
- chunked
|
916
|
+
Connection:
|
917
|
+
- keep-alive
|
918
|
+
Keep-Alive:
|
919
|
+
- timeout=10
|
920
|
+
X-Powered-By:
|
921
|
+
- PHP/5.3.15
|
922
|
+
Cache-Control:
|
923
|
+
- no-cache
|
924
|
+
Date:
|
925
|
+
- Wed, 05 Sep 2012 19:15:45 GMT
|
926
|
+
X-Debug-Token:
|
927
|
+
- 5047a4e1b0b93
|
928
|
+
body:
|
929
|
+
encoding: US-ASCII
|
930
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:\/\/localhost:3333\/callback)
|
931
|
+
- Url is not in a valid format"]}}
|
932
|
+
|
933
|
+
'
|
934
|
+
http_version:
|
935
|
+
recorded_at: Wed, 05 Sep 2012 19:15:45 GMT
|
936
|
+
- request:
|
937
|
+
method: post
|
938
|
+
uri: http://api.jirafe.dev/v1/applications/188/sites?token=1e1cd9e37ec51bcc9c196b8107193ee8
|
939
|
+
body:
|
940
|
+
encoding: US-ASCII
|
941
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2Flocalhost%3A3333%2Fcallback
|
942
|
+
headers: {}
|
943
|
+
response:
|
944
|
+
status:
|
945
|
+
code: 400
|
946
|
+
message: Bad Request
|
947
|
+
headers:
|
948
|
+
Server:
|
949
|
+
- nginx/1.2.2
|
950
|
+
Content-Type:
|
951
|
+
- text/html; charset=UTF-8
|
952
|
+
Transfer-Encoding:
|
953
|
+
- chunked
|
954
|
+
Connection:
|
955
|
+
- keep-alive
|
956
|
+
Keep-Alive:
|
957
|
+
- timeout=10
|
958
|
+
X-Powered-By:
|
959
|
+
- PHP/5.3.15
|
960
|
+
Cache-Control:
|
961
|
+
- no-cache
|
962
|
+
Date:
|
963
|
+
- Wed, 05 Sep 2012 19:16:01 GMT
|
964
|
+
X-Debug-Token:
|
965
|
+
- 5047a4f1e81ff
|
966
|
+
body:
|
967
|
+
encoding: US-ASCII
|
968
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:\/\/localhost:3333\/callback)
|
969
|
+
- Url is not in a valid format"]}}
|
970
|
+
|
971
|
+
'
|
972
|
+
http_version:
|
973
|
+
recorded_at: Wed, 05 Sep 2012 19:16:01 GMT
|
974
|
+
- request:
|
975
|
+
method: post
|
976
|
+
uri: http://api.jirafe.dev/v1/applications/189/sites?token=e6d4a2b5512fd9719c261890c664d7ac
|
977
|
+
body:
|
978
|
+
encoding: US-ASCII
|
979
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2Flocalhost%2Fcallback
|
980
|
+
headers: {}
|
981
|
+
response:
|
982
|
+
status:
|
983
|
+
code: 400
|
984
|
+
message: Bad Request
|
985
|
+
headers:
|
986
|
+
Server:
|
987
|
+
- nginx/1.2.2
|
988
|
+
Content-Type:
|
989
|
+
- text/html; charset=UTF-8
|
990
|
+
Transfer-Encoding:
|
991
|
+
- chunked
|
992
|
+
Connection:
|
993
|
+
- keep-alive
|
994
|
+
Keep-Alive:
|
995
|
+
- timeout=10
|
996
|
+
X-Powered-By:
|
997
|
+
- PHP/5.3.15
|
998
|
+
Cache-Control:
|
999
|
+
- no-cache
|
1000
|
+
Date:
|
1001
|
+
- Wed, 05 Sep 2012 19:16:38 GMT
|
1002
|
+
X-Debug-Token:
|
1003
|
+
- 5047a516eeda5
|
1004
|
+
body:
|
1005
|
+
encoding: US-ASCII
|
1006
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:\/\/localhost\/callback)
|
1007
|
+
- Url is not in a valid format"]}}
|
1008
|
+
|
1009
|
+
'
|
1010
|
+
http_version:
|
1011
|
+
recorded_at: Wed, 05 Sep 2012 19:16:38 GMT
|
1012
|
+
- request:
|
1013
|
+
method: post
|
1014
|
+
uri: http://api.jirafe.dev/v1/applications/190/sites?token=d0f1f2ba0b244127191a6dd4195c4a35
|
1015
|
+
body:
|
1016
|
+
encoding: US-ASCII
|
1017
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2Flocalhost%2Fcallback
|
1018
|
+
headers: {}
|
1019
|
+
response:
|
1020
|
+
status:
|
1021
|
+
code: 400
|
1022
|
+
message: Bad Request
|
1023
|
+
headers:
|
1024
|
+
Server:
|
1025
|
+
- nginx/1.2.2
|
1026
|
+
Content-Type:
|
1027
|
+
- text/html; charset=UTF-8
|
1028
|
+
Transfer-Encoding:
|
1029
|
+
- chunked
|
1030
|
+
Connection:
|
1031
|
+
- keep-alive
|
1032
|
+
Keep-Alive:
|
1033
|
+
- timeout=10
|
1034
|
+
X-Powered-By:
|
1035
|
+
- PHP/5.3.15
|
1036
|
+
Cache-Control:
|
1037
|
+
- no-cache
|
1038
|
+
Date:
|
1039
|
+
- Wed, 05 Sep 2012 19:16:49 GMT
|
1040
|
+
X-Debug-Token:
|
1041
|
+
- 5047a5211e05b
|
1042
|
+
body:
|
1043
|
+
encoding: US-ASCII
|
1044
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:\/\/localhost\/callback)
|
1045
|
+
- Url is not in a valid format"]}}
|
1046
|
+
|
1047
|
+
'
|
1048
|
+
http_version:
|
1049
|
+
recorded_at: Wed, 05 Sep 2012 19:16:49 GMT
|
1050
|
+
- request:
|
1051
|
+
method: post
|
1052
|
+
uri: http://api.jirafe.dev/v1/applications/191/sites?token=4c4fecb6f9aa57a85e25d94d885d7473
|
1053
|
+
body:
|
1054
|
+
encoding: US-ASCII
|
1055
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2Flocalhost%3A3333%2Fcallback
|
1056
|
+
headers: {}
|
1057
|
+
response:
|
1058
|
+
status:
|
1059
|
+
code: 400
|
1060
|
+
message: Bad Request
|
1061
|
+
headers:
|
1062
|
+
Server:
|
1063
|
+
- nginx/1.2.2
|
1064
|
+
Content-Type:
|
1065
|
+
- text/html; charset=UTF-8
|
1066
|
+
Transfer-Encoding:
|
1067
|
+
- chunked
|
1068
|
+
Connection:
|
1069
|
+
- keep-alive
|
1070
|
+
Keep-Alive:
|
1071
|
+
- timeout=10
|
1072
|
+
X-Powered-By:
|
1073
|
+
- PHP/5.3.15
|
1074
|
+
Cache-Control:
|
1075
|
+
- no-cache
|
1076
|
+
Date:
|
1077
|
+
- Wed, 05 Sep 2012 19:27:10 GMT
|
1078
|
+
X-Debug-Token:
|
1079
|
+
- 5047a78eb049f
|
1080
|
+
body:
|
1081
|
+
encoding: US-ASCII
|
1082
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:\/\/localhost:3333\/callback)
|
1083
|
+
- Url is not in a valid format"]}}
|
1084
|
+
|
1085
|
+
'
|
1086
|
+
http_version:
|
1087
|
+
recorded_at: Wed, 05 Sep 2012 19:27:10 GMT
|
1088
|
+
- request:
|
1089
|
+
method: post
|
1090
|
+
uri: http://api.jirafe.dev/v1/applications/192/sites?token=e6191a31cd3c6234c909827efdf92bae
|
1091
|
+
body:
|
1092
|
+
encoding: US-ASCII
|
1093
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%255C%2F%255C%2Flocalhost%3A3333
|
1094
|
+
headers: {}
|
1095
|
+
response:
|
1096
|
+
status:
|
1097
|
+
code: 400
|
1098
|
+
message: Bad Request
|
1099
|
+
headers:
|
1100
|
+
Server:
|
1101
|
+
- nginx/1.2.2
|
1102
|
+
Content-Type:
|
1103
|
+
- text/html; charset=UTF-8
|
1104
|
+
Transfer-Encoding:
|
1105
|
+
- chunked
|
1106
|
+
Connection:
|
1107
|
+
- keep-alive
|
1108
|
+
Keep-Alive:
|
1109
|
+
- timeout=10
|
1110
|
+
X-Powered-By:
|
1111
|
+
- PHP/5.3.15
|
1112
|
+
Cache-Control:
|
1113
|
+
- no-cache
|
1114
|
+
Date:
|
1115
|
+
- Wed, 05 Sep 2012 19:28:06 GMT
|
1116
|
+
X-Debug-Token:
|
1117
|
+
- 5047a7c667b65
|
1118
|
+
body:
|
1119
|
+
encoding: US-ASCII
|
1120
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:%5C\/%5C\/localhost:3333)
|
1121
|
+
- Url is not in a valid format"]}}
|
1122
|
+
|
1123
|
+
'
|
1124
|
+
http_version:
|
1125
|
+
recorded_at: Wed, 05 Sep 2012 19:28:06 GMT
|
1126
|
+
- request:
|
1127
|
+
method: post
|
1128
|
+
uri: http://api.jirafe.dev/v1/applications/193/sites?token=b012371a5595e76f3a8825e1a975587f
|
1129
|
+
body:
|
1130
|
+
encoding: US-ASCII
|
1131
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=localhost%3A3333
|
1132
|
+
headers: {}
|
1133
|
+
response:
|
1134
|
+
status:
|
1135
|
+
code: 400
|
1136
|
+
message: Bad Request
|
1137
|
+
headers:
|
1138
|
+
Server:
|
1139
|
+
- nginx/1.2.2
|
1140
|
+
Content-Type:
|
1141
|
+
- text/html; charset=UTF-8
|
1142
|
+
Transfer-Encoding:
|
1143
|
+
- chunked
|
1144
|
+
Connection:
|
1145
|
+
- keep-alive
|
1146
|
+
Keep-Alive:
|
1147
|
+
- timeout=10
|
1148
|
+
X-Powered-By:
|
1149
|
+
- PHP/5.3.15
|
1150
|
+
Cache-Control:
|
1151
|
+
- no-cache
|
1152
|
+
Date:
|
1153
|
+
- Wed, 05 Sep 2012 19:28:16 GMT
|
1154
|
+
X-Debug-Token:
|
1155
|
+
- 5047a7d049400
|
1156
|
+
body:
|
1157
|
+
encoding: US-ASCII
|
1158
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](localhost:3333)
|
1159
|
+
- Url is not in a valid format"]}}
|
1160
|
+
|
1161
|
+
'
|
1162
|
+
http_version:
|
1163
|
+
recorded_at: Wed, 05 Sep 2012 19:28:16 GMT
|
1164
|
+
- request:
|
1165
|
+
method: post
|
1166
|
+
uri: http://api.jirafe.dev/v1/applications/194/sites?token=92bc8346fc95295243eb61345180e286
|
1167
|
+
body:
|
1168
|
+
encoding: US-ASCII
|
1169
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=https%3A%2F%2Flocalhost%3A3333
|
1170
|
+
headers: {}
|
1171
|
+
response:
|
1172
|
+
status:
|
1173
|
+
code: 400
|
1174
|
+
message: Bad Request
|
1175
|
+
headers:
|
1176
|
+
Server:
|
1177
|
+
- nginx/1.2.2
|
1178
|
+
Content-Type:
|
1179
|
+
- text/html; charset=UTF-8
|
1180
|
+
Transfer-Encoding:
|
1181
|
+
- chunked
|
1182
|
+
Connection:
|
1183
|
+
- keep-alive
|
1184
|
+
Keep-Alive:
|
1185
|
+
- timeout=10
|
1186
|
+
X-Powered-By:
|
1187
|
+
- PHP/5.3.15
|
1188
|
+
Cache-Control:
|
1189
|
+
- no-cache
|
1190
|
+
Date:
|
1191
|
+
- Wed, 05 Sep 2012 19:28:23 GMT
|
1192
|
+
X-Debug-Token:
|
1193
|
+
- 5047a7d798c56
|
1194
|
+
body:
|
1195
|
+
encoding: US-ASCII
|
1196
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](https:\/\/localhost:3333)
|
1197
|
+
- Url is not in a valid format"]}}
|
1198
|
+
|
1199
|
+
'
|
1200
|
+
http_version:
|
1201
|
+
recorded_at: Wed, 05 Sep 2012 19:28:23 GMT
|
1202
|
+
- request:
|
1203
|
+
method: post
|
1204
|
+
uri: http://api.jirafe.dev/v1/applications/195/sites?token=a18373f088fed9398edaf1d810a7bba2
|
1205
|
+
body:
|
1206
|
+
encoding: US-ASCII
|
1207
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2Flocalhost%3A3333
|
1208
|
+
headers: {}
|
1209
|
+
response:
|
1210
|
+
status:
|
1211
|
+
code: 400
|
1212
|
+
message: Bad Request
|
1213
|
+
headers:
|
1214
|
+
Server:
|
1215
|
+
- nginx/1.2.2
|
1216
|
+
Content-Type:
|
1217
|
+
- text/html; charset=UTF-8
|
1218
|
+
Transfer-Encoding:
|
1219
|
+
- chunked
|
1220
|
+
Connection:
|
1221
|
+
- keep-alive
|
1222
|
+
Keep-Alive:
|
1223
|
+
- timeout=10
|
1224
|
+
X-Powered-By:
|
1225
|
+
- PHP/5.3.15
|
1226
|
+
Cache-Control:
|
1227
|
+
- no-cache
|
1228
|
+
Date:
|
1229
|
+
- Wed, 05 Sep 2012 19:28:27 GMT
|
1230
|
+
X-Debug-Token:
|
1231
|
+
- 5047a7db719c7
|
1232
|
+
body:
|
1233
|
+
encoding: US-ASCII
|
1234
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:\/\/localhost:3333)
|
1235
|
+
- Url is not in a valid format"]}}
|
1236
|
+
|
1237
|
+
'
|
1238
|
+
http_version:
|
1239
|
+
recorded_at: Wed, 05 Sep 2012 19:28:27 GMT
|
1240
|
+
- request:
|
1241
|
+
method: post
|
1242
|
+
uri: http://api.jirafe.dev/v1/applications/196/sites?token=66fd270583e2d9ea1929bbaef330f730
|
1243
|
+
body:
|
1244
|
+
encoding: US-ASCII
|
1245
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2Flocalhost%3A3333
|
1246
|
+
headers: {}
|
1247
|
+
response:
|
1248
|
+
status:
|
1249
|
+
code: 400
|
1250
|
+
message: Bad Request
|
1251
|
+
headers:
|
1252
|
+
Server:
|
1253
|
+
- nginx/1.2.2
|
1254
|
+
Content-Type:
|
1255
|
+
- text/html; charset=UTF-8
|
1256
|
+
Transfer-Encoding:
|
1257
|
+
- chunked
|
1258
|
+
Connection:
|
1259
|
+
- keep-alive
|
1260
|
+
Keep-Alive:
|
1261
|
+
- timeout=10
|
1262
|
+
X-Powered-By:
|
1263
|
+
- PHP/5.3.15
|
1264
|
+
Cache-Control:
|
1265
|
+
- no-cache
|
1266
|
+
Date:
|
1267
|
+
- Wed, 05 Sep 2012 19:31:02 GMT
|
1268
|
+
X-Debug-Token:
|
1269
|
+
- 5047a87606cfe
|
1270
|
+
body:
|
1271
|
+
encoding: US-ASCII
|
1272
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:\/\/localhost:3333)
|
1273
|
+
- Url is not in a valid format"]}}
|
1274
|
+
|
1275
|
+
'
|
1276
|
+
http_version:
|
1277
|
+
recorded_at: Wed, 05 Sep 2012 19:31:02 GMT
|
1278
|
+
- request:
|
1279
|
+
method: post
|
1280
|
+
uri: http://api.jirafe.dev/v1/applications/197/sites?token=92cd6a92aee1886a8b99da9538dbfd88
|
1281
|
+
body:
|
1282
|
+
encoding: US-ASCII
|
1283
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2Flocalhost%3A3333
|
1284
|
+
headers: {}
|
1285
|
+
response:
|
1286
|
+
status:
|
1287
|
+
code: 400
|
1288
|
+
message: Bad Request
|
1289
|
+
headers:
|
1290
|
+
Server:
|
1291
|
+
- nginx/1.2.2
|
1292
|
+
Content-Type:
|
1293
|
+
- text/html; charset=UTF-8
|
1294
|
+
Transfer-Encoding:
|
1295
|
+
- chunked
|
1296
|
+
Connection:
|
1297
|
+
- keep-alive
|
1298
|
+
Keep-Alive:
|
1299
|
+
- timeout=10
|
1300
|
+
X-Powered-By:
|
1301
|
+
- PHP/5.3.15
|
1302
|
+
Cache-Control:
|
1303
|
+
- no-cache
|
1304
|
+
Date:
|
1305
|
+
- Wed, 05 Sep 2012 19:31:26 GMT
|
1306
|
+
X-Debug-Token:
|
1307
|
+
- 5047a88ebea52
|
1308
|
+
body:
|
1309
|
+
encoding: US-ASCII
|
1310
|
+
string: ! '{"error":{"code":400,"message":"Invalid Site resource provided.","data":["[storeApiUrl](http:\/\/localhost:3333)
|
1311
|
+
- Url is not in a valid format"]}}
|
1312
|
+
|
1313
|
+
'
|
1314
|
+
http_version:
|
1315
|
+
recorded_at: Wed, 05 Sep 2012 19:31:26 GMT
|
1316
|
+
- request:
|
1317
|
+
method: post
|
1318
|
+
uri: http://api.jirafe.dev/v1/applications/198/sites?token=a603ef0986eded881114b7c3818e60fe
|
1319
|
+
body:
|
1320
|
+
encoding: US-ASCII
|
1321
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1322
|
+
headers: {}
|
1323
|
+
response:
|
1324
|
+
status:
|
1325
|
+
code: 200
|
1326
|
+
message: OK
|
1327
|
+
headers:
|
1328
|
+
Server:
|
1329
|
+
- nginx/1.2.2
|
1330
|
+
Content-Type:
|
1331
|
+
- application/json
|
1332
|
+
Transfer-Encoding:
|
1333
|
+
- chunked
|
1334
|
+
Connection:
|
1335
|
+
- keep-alive
|
1336
|
+
Keep-Alive:
|
1337
|
+
- timeout=10
|
1338
|
+
X-Powered-By:
|
1339
|
+
- PHP/5.3.15
|
1340
|
+
Cache-Control:
|
1341
|
+
- no-cache
|
1342
|
+
Date:
|
1343
|
+
- Wed, 05 Sep 2012 19:33:01 GMT
|
1344
|
+
X-Debug-Token:
|
1345
|
+
- 5047a8ed27bad
|
1346
|
+
body:
|
1347
|
+
encoding: US-ASCII
|
1348
|
+
string: ! '{"site_id":10,"app_id":198,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1349
|
+
http_version:
|
1350
|
+
recorded_at: Wed, 05 Sep 2012 19:33:01 GMT
|
1351
|
+
- request:
|
1352
|
+
method: post
|
1353
|
+
uri: http://api.jirafe.dev/v1/applications/199/sites?token=93461e14eb80b72e3f783ad0e1a83221
|
1354
|
+
body:
|
1355
|
+
encoding: US-ASCII
|
1356
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1357
|
+
headers: {}
|
1358
|
+
response:
|
1359
|
+
status:
|
1360
|
+
code: 200
|
1361
|
+
message: OK
|
1362
|
+
headers:
|
1363
|
+
Server:
|
1364
|
+
- nginx/1.2.2
|
1365
|
+
Content-Type:
|
1366
|
+
- application/json
|
1367
|
+
Transfer-Encoding:
|
1368
|
+
- chunked
|
1369
|
+
Connection:
|
1370
|
+
- keep-alive
|
1371
|
+
Keep-Alive:
|
1372
|
+
- timeout=10
|
1373
|
+
X-Powered-By:
|
1374
|
+
- PHP/5.3.15
|
1375
|
+
Cache-Control:
|
1376
|
+
- no-cache
|
1377
|
+
Date:
|
1378
|
+
- Wed, 05 Sep 2012 19:33:39 GMT
|
1379
|
+
X-Debug-Token:
|
1380
|
+
- 5047a9134e5a1
|
1381
|
+
body:
|
1382
|
+
encoding: US-ASCII
|
1383
|
+
string: ! '{"site_id":11,"app_id":199,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1384
|
+
http_version:
|
1385
|
+
recorded_at: Wed, 05 Sep 2012 19:33:39 GMT
|
1386
|
+
- request:
|
1387
|
+
method: post
|
1388
|
+
uri: http://api.jirafe.dev/v1/applications/200/sites?token=a6e54936f670c75715c1bedf4f654bed
|
1389
|
+
body:
|
1390
|
+
encoding: US-ASCII
|
1391
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1392
|
+
headers: {}
|
1393
|
+
response:
|
1394
|
+
status:
|
1395
|
+
code: 200
|
1396
|
+
message: OK
|
1397
|
+
headers:
|
1398
|
+
Server:
|
1399
|
+
- nginx/1.2.2
|
1400
|
+
Content-Type:
|
1401
|
+
- application/json
|
1402
|
+
Transfer-Encoding:
|
1403
|
+
- chunked
|
1404
|
+
Connection:
|
1405
|
+
- keep-alive
|
1406
|
+
Keep-Alive:
|
1407
|
+
- timeout=10
|
1408
|
+
X-Powered-By:
|
1409
|
+
- PHP/5.3.15
|
1410
|
+
Cache-Control:
|
1411
|
+
- no-cache
|
1412
|
+
Date:
|
1413
|
+
- Wed, 05 Sep 2012 19:35:11 GMT
|
1414
|
+
X-Debug-Token:
|
1415
|
+
- 5047a96f144e3
|
1416
|
+
body:
|
1417
|
+
encoding: US-ASCII
|
1418
|
+
string: ! '{"site_id":12,"app_id":200,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1419
|
+
http_version:
|
1420
|
+
recorded_at: Wed, 05 Sep 2012 19:35:11 GMT
|
1421
|
+
- request:
|
1422
|
+
method: post
|
1423
|
+
uri: http://api.jirafe.dev/v1/applications/201/sites?token=2a3affe80e2f7db9f8bd128cb554cf84
|
1424
|
+
body:
|
1425
|
+
encoding: US-ASCII
|
1426
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1427
|
+
headers: {}
|
1428
|
+
response:
|
1429
|
+
status:
|
1430
|
+
code: 200
|
1431
|
+
message: OK
|
1432
|
+
headers:
|
1433
|
+
Server:
|
1434
|
+
- nginx/1.2.2
|
1435
|
+
Content-Type:
|
1436
|
+
- application/json
|
1437
|
+
Transfer-Encoding:
|
1438
|
+
- chunked
|
1439
|
+
Connection:
|
1440
|
+
- keep-alive
|
1441
|
+
Keep-Alive:
|
1442
|
+
- timeout=10
|
1443
|
+
X-Powered-By:
|
1444
|
+
- PHP/5.3.15
|
1445
|
+
Cache-Control:
|
1446
|
+
- no-cache
|
1447
|
+
Date:
|
1448
|
+
- Wed, 05 Sep 2012 19:35:27 GMT
|
1449
|
+
X-Debug-Token:
|
1450
|
+
- 5047a97f95fe1
|
1451
|
+
body:
|
1452
|
+
encoding: US-ASCII
|
1453
|
+
string: ! '{"site_id":13,"app_id":201,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1454
|
+
http_version:
|
1455
|
+
recorded_at: Wed, 05 Sep 2012 19:35:27 GMT
|
1456
|
+
- request:
|
1457
|
+
method: post
|
1458
|
+
uri: http://api.jirafe.dev/v1/applications/202/sites?token=6983fab14d3de2fe200e2422553d165d
|
1459
|
+
body:
|
1460
|
+
encoding: US-ASCII
|
1461
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1462
|
+
headers: {}
|
1463
|
+
response:
|
1464
|
+
status:
|
1465
|
+
code: 200
|
1466
|
+
message: OK
|
1467
|
+
headers:
|
1468
|
+
Server:
|
1469
|
+
- nginx/1.2.2
|
1470
|
+
Content-Type:
|
1471
|
+
- application/json
|
1472
|
+
Transfer-Encoding:
|
1473
|
+
- chunked
|
1474
|
+
Connection:
|
1475
|
+
- keep-alive
|
1476
|
+
Keep-Alive:
|
1477
|
+
- timeout=10
|
1478
|
+
X-Powered-By:
|
1479
|
+
- PHP/5.3.15
|
1480
|
+
Cache-Control:
|
1481
|
+
- no-cache
|
1482
|
+
Date:
|
1483
|
+
- Wed, 05 Sep 2012 19:35:53 GMT
|
1484
|
+
X-Debug-Token:
|
1485
|
+
- 5047a999792d3
|
1486
|
+
body:
|
1487
|
+
encoding: US-ASCII
|
1488
|
+
string: ! '{"site_id":14,"app_id":202,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1489
|
+
http_version:
|
1490
|
+
recorded_at: Wed, 05 Sep 2012 19:35:53 GMT
|
1491
|
+
- request:
|
1492
|
+
method: post
|
1493
|
+
uri: http://api.jirafe.dev/v1/applications/203/sites?token=05b8a669c1cbf4539eb2c986d28e1735
|
1494
|
+
body:
|
1495
|
+
encoding: US-ASCII
|
1496
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1497
|
+
headers: {}
|
1498
|
+
response:
|
1499
|
+
status:
|
1500
|
+
code: 200
|
1501
|
+
message: OK
|
1502
|
+
headers:
|
1503
|
+
Server:
|
1504
|
+
- nginx/1.2.2
|
1505
|
+
Content-Type:
|
1506
|
+
- application/json
|
1507
|
+
Transfer-Encoding:
|
1508
|
+
- chunked
|
1509
|
+
Connection:
|
1510
|
+
- keep-alive
|
1511
|
+
Keep-Alive:
|
1512
|
+
- timeout=10
|
1513
|
+
X-Powered-By:
|
1514
|
+
- PHP/5.3.15
|
1515
|
+
Cache-Control:
|
1516
|
+
- no-cache
|
1517
|
+
Date:
|
1518
|
+
- Wed, 05 Sep 2012 19:36:18 GMT
|
1519
|
+
X-Debug-Token:
|
1520
|
+
- 5047a9b21ff67
|
1521
|
+
body:
|
1522
|
+
encoding: US-ASCII
|
1523
|
+
string: ! '{"site_id":15,"app_id":203,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1524
|
+
http_version:
|
1525
|
+
recorded_at: Wed, 05 Sep 2012 19:36:18 GMT
|
1526
|
+
- request:
|
1527
|
+
method: post
|
1528
|
+
uri: http://data.tracker.dev/cmb?siteId=15
|
1529
|
+
body:
|
1530
|
+
encoding: US-ASCII
|
1531
|
+
string: ''
|
1532
|
+
headers: {}
|
1533
|
+
response:
|
1534
|
+
status:
|
1535
|
+
code: 411
|
1536
|
+
message: Length Required
|
1537
|
+
headers:
|
1538
|
+
Content-Type:
|
1539
|
+
- text/html
|
1540
|
+
Content-Length:
|
1541
|
+
- '357'
|
1542
|
+
Connection:
|
1543
|
+
- close
|
1544
|
+
Date:
|
1545
|
+
- Wed, 05 Sep 2012 19:36:23 GMT
|
1546
|
+
Server:
|
1547
|
+
- OpenDNS Guide
|
1548
|
+
body:
|
1549
|
+
encoding: US-ASCII
|
1550
|
+
string: ! "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<!DOCTYPE html PUBLIC
|
1551
|
+
\"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html
|
1552
|
+
xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n <head>\n
|
1553
|
+
\ <title>411 - Length Required</title>\n </head>\n <body>\n <h1>411 - Length
|
1554
|
+
Required</h1>\n </body>\n</html>\n"
|
1555
|
+
http_version:
|
1556
|
+
recorded_at: Wed, 05 Sep 2012 19:36:23 GMT
|
1557
|
+
- request:
|
1558
|
+
method: post
|
1559
|
+
uri: http://api.jirafe.dev/v1/applications/204/sites?token=29c6ce76803ef191f4a61708a8971a61
|
1560
|
+
body:
|
1561
|
+
encoding: US-ASCII
|
1562
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1563
|
+
headers: {}
|
1564
|
+
response:
|
1565
|
+
status:
|
1566
|
+
code: 200
|
1567
|
+
message: OK
|
1568
|
+
headers:
|
1569
|
+
Server:
|
1570
|
+
- nginx/1.2.2
|
1571
|
+
Content-Type:
|
1572
|
+
- application/json
|
1573
|
+
Transfer-Encoding:
|
1574
|
+
- chunked
|
1575
|
+
Connection:
|
1576
|
+
- keep-alive
|
1577
|
+
Keep-Alive:
|
1578
|
+
- timeout=10
|
1579
|
+
X-Powered-By:
|
1580
|
+
- PHP/5.3.15
|
1581
|
+
Cache-Control:
|
1582
|
+
- no-cache
|
1583
|
+
Date:
|
1584
|
+
- Wed, 05 Sep 2012 19:37:04 GMT
|
1585
|
+
X-Debug-Token:
|
1586
|
+
- 5047a9e00aead
|
1587
|
+
body:
|
1588
|
+
encoding: US-ASCII
|
1589
|
+
string: ! '{"site_id":16,"app_id":204,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1590
|
+
http_version:
|
1591
|
+
recorded_at: Wed, 05 Sep 2012 19:37:04 GMT
|
1592
|
+
- request:
|
1593
|
+
method: post
|
1594
|
+
uri: http://api.jirafe.dev/v1/applications/205/sites?token=669e28e7e6f8c396e2464e9aa91bf91b
|
1595
|
+
body:
|
1596
|
+
encoding: US-ASCII
|
1597
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1598
|
+
headers: {}
|
1599
|
+
response:
|
1600
|
+
status:
|
1601
|
+
code: 200
|
1602
|
+
message: OK
|
1603
|
+
headers:
|
1604
|
+
Server:
|
1605
|
+
- nginx/1.2.2
|
1606
|
+
Content-Type:
|
1607
|
+
- application/json
|
1608
|
+
Transfer-Encoding:
|
1609
|
+
- chunked
|
1610
|
+
Connection:
|
1611
|
+
- keep-alive
|
1612
|
+
Keep-Alive:
|
1613
|
+
- timeout=10
|
1614
|
+
X-Powered-By:
|
1615
|
+
- PHP/5.3.15
|
1616
|
+
Cache-Control:
|
1617
|
+
- no-cache
|
1618
|
+
Date:
|
1619
|
+
- Wed, 05 Sep 2012 19:37:36 GMT
|
1620
|
+
X-Debug-Token:
|
1621
|
+
- 5047aa002c603
|
1622
|
+
body:
|
1623
|
+
encoding: US-ASCII
|
1624
|
+
string: ! '{"site_id":17,"app_id":205,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1625
|
+
http_version:
|
1626
|
+
recorded_at: Wed, 05 Sep 2012 19:37:36 GMT
|
1627
|
+
- request:
|
1628
|
+
method: post
|
1629
|
+
uri: http://api.jirafe.dev/v1/applications/206/sites?token=861b1dcea63cba6709c8e853931708f3
|
1630
|
+
body:
|
1631
|
+
encoding: US-ASCII
|
1632
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1633
|
+
headers: {}
|
1634
|
+
response:
|
1635
|
+
status:
|
1636
|
+
code: 200
|
1637
|
+
message: OK
|
1638
|
+
headers:
|
1639
|
+
Server:
|
1640
|
+
- nginx/1.2.2
|
1641
|
+
Content-Type:
|
1642
|
+
- application/json
|
1643
|
+
Transfer-Encoding:
|
1644
|
+
- chunked
|
1645
|
+
Connection:
|
1646
|
+
- keep-alive
|
1647
|
+
Keep-Alive:
|
1648
|
+
- timeout=10
|
1649
|
+
X-Powered-By:
|
1650
|
+
- PHP/5.3.15
|
1651
|
+
Cache-Control:
|
1652
|
+
- no-cache
|
1653
|
+
Date:
|
1654
|
+
- Wed, 05 Sep 2012 19:37:54 GMT
|
1655
|
+
X-Debug-Token:
|
1656
|
+
- 5047aa12bec11
|
1657
|
+
body:
|
1658
|
+
encoding: US-ASCII
|
1659
|
+
string: ! '{"site_id":18,"app_id":206,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1660
|
+
http_version:
|
1661
|
+
recorded_at: Wed, 05 Sep 2012 19:37:54 GMT
|
1662
|
+
- request:
|
1663
|
+
method: post
|
1664
|
+
uri: http://api.jirafe.dev/v1/applications/207/sites?token=a90b6426394e81dcdbaffe2d2725a320
|
1665
|
+
body:
|
1666
|
+
encoding: US-ASCII
|
1667
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1668
|
+
headers: {}
|
1669
|
+
response:
|
1670
|
+
status:
|
1671
|
+
code: 200
|
1672
|
+
message: OK
|
1673
|
+
headers:
|
1674
|
+
Server:
|
1675
|
+
- nginx/1.2.2
|
1676
|
+
Content-Type:
|
1677
|
+
- application/json
|
1678
|
+
Transfer-Encoding:
|
1679
|
+
- chunked
|
1680
|
+
Connection:
|
1681
|
+
- keep-alive
|
1682
|
+
Keep-Alive:
|
1683
|
+
- timeout=10
|
1684
|
+
X-Powered-By:
|
1685
|
+
- PHP/5.3.15
|
1686
|
+
Cache-Control:
|
1687
|
+
- no-cache
|
1688
|
+
Date:
|
1689
|
+
- Wed, 05 Sep 2012 19:38:09 GMT
|
1690
|
+
X-Debug-Token:
|
1691
|
+
- 5047aa21c6b6a
|
1692
|
+
body:
|
1693
|
+
encoding: US-ASCII
|
1694
|
+
string: ! '{"site_id":19,"app_id":207,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1695
|
+
http_version:
|
1696
|
+
recorded_at: Wed, 05 Sep 2012 19:38:09 GMT
|
1697
|
+
- request:
|
1698
|
+
method: post
|
1699
|
+
uri: http://data.tracker.dev/cmb
|
1700
|
+
body:
|
1701
|
+
encoding: US-ASCII
|
1702
|
+
string: siteId=19
|
1703
|
+
headers: {}
|
1704
|
+
response:
|
1705
|
+
status:
|
1706
|
+
code: 303
|
1707
|
+
message: See Other
|
1708
|
+
headers:
|
1709
|
+
Location:
|
1710
|
+
- http://data.tracker.dev/cmb
|
1711
|
+
Content-Length:
|
1712
|
+
- '0'
|
1713
|
+
Connection:
|
1714
|
+
- close
|
1715
|
+
Date:
|
1716
|
+
- Wed, 05 Sep 2012 19:38:15 GMT
|
1717
|
+
Server:
|
1718
|
+
- OpenDNS Guide
|
1719
|
+
body:
|
1720
|
+
encoding: US-ASCII
|
1721
|
+
string: ''
|
1722
|
+
http_version:
|
1723
|
+
recorded_at: Wed, 05 Sep 2012 19:38:15 GMT
|
1724
|
+
- request:
|
1725
|
+
method: get
|
1726
|
+
uri: http://data.tracker.dev/cmb
|
1727
|
+
body:
|
1728
|
+
encoding: US-ASCII
|
1729
|
+
string: siteId=19
|
1730
|
+
headers: {}
|
1731
|
+
response:
|
1732
|
+
status:
|
1733
|
+
code: 400
|
1734
|
+
message: Bad Request
|
1735
|
+
headers:
|
1736
|
+
Content-Type:
|
1737
|
+
- text/html
|
1738
|
+
Content-Length:
|
1739
|
+
- '349'
|
1740
|
+
Connection:
|
1741
|
+
- close
|
1742
|
+
Date:
|
1743
|
+
- Wed, 05 Sep 2012 19:38:15 GMT
|
1744
|
+
Server:
|
1745
|
+
- OpenDNS Guide
|
1746
|
+
body:
|
1747
|
+
encoding: US-ASCII
|
1748
|
+
string: ! "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<!DOCTYPE html PUBLIC
|
1749
|
+
\"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html
|
1750
|
+
xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n <head>\n
|
1751
|
+
\ <title>400 - Bad Request</title>\n </head>\n <body>\n <h1>400 - Bad Request</h1>\n
|
1752
|
+
</body>\n</html>\n"
|
1753
|
+
http_version:
|
1754
|
+
recorded_at: Wed, 05 Sep 2012 19:38:15 GMT
|
1755
|
+
- request:
|
1756
|
+
method: post
|
1757
|
+
uri: http://api.jirafe.dev/v1/applications/208/sites?token=fe0e94a67a1872bb33fe01bae54c0659
|
1758
|
+
body:
|
1759
|
+
encoding: US-ASCII
|
1760
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1761
|
+
headers: {}
|
1762
|
+
response:
|
1763
|
+
status:
|
1764
|
+
code: 200
|
1765
|
+
message: OK
|
1766
|
+
headers:
|
1767
|
+
Server:
|
1768
|
+
- nginx/1.2.2
|
1769
|
+
Content-Type:
|
1770
|
+
- application/json
|
1771
|
+
Transfer-Encoding:
|
1772
|
+
- chunked
|
1773
|
+
Connection:
|
1774
|
+
- keep-alive
|
1775
|
+
Keep-Alive:
|
1776
|
+
- timeout=10
|
1777
|
+
X-Powered-By:
|
1778
|
+
- PHP/5.3.15
|
1779
|
+
Cache-Control:
|
1780
|
+
- no-cache
|
1781
|
+
Date:
|
1782
|
+
- Wed, 05 Sep 2012 19:38:57 GMT
|
1783
|
+
X-Debug-Token:
|
1784
|
+
- 5047aa51616d2
|
1785
|
+
body:
|
1786
|
+
encoding: US-ASCII
|
1787
|
+
string: ! '{"site_id":20,"app_id":208,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1788
|
+
http_version:
|
1789
|
+
recorded_at: Wed, 05 Sep 2012 19:38:57 GMT
|
1790
|
+
- request:
|
1791
|
+
method: post
|
1792
|
+
uri: http://api.jirafe.dev/v1/applications/209/sites?token=86687a8455a23abe13960b4d4759ef24
|
1793
|
+
body:
|
1794
|
+
encoding: US-ASCII
|
1795
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1796
|
+
headers: {}
|
1797
|
+
response:
|
1798
|
+
status:
|
1799
|
+
code: 200
|
1800
|
+
message: OK
|
1801
|
+
headers:
|
1802
|
+
Server:
|
1803
|
+
- nginx/1.2.2
|
1804
|
+
Content-Type:
|
1805
|
+
- application/json
|
1806
|
+
Transfer-Encoding:
|
1807
|
+
- chunked
|
1808
|
+
Connection:
|
1809
|
+
- keep-alive
|
1810
|
+
Keep-Alive:
|
1811
|
+
- timeout=10
|
1812
|
+
X-Powered-By:
|
1813
|
+
- PHP/5.3.15
|
1814
|
+
Cache-Control:
|
1815
|
+
- no-cache
|
1816
|
+
Date:
|
1817
|
+
- Wed, 05 Sep 2012 19:40:03 GMT
|
1818
|
+
X-Debug-Token:
|
1819
|
+
- 5047aa931ebc8
|
1820
|
+
body:
|
1821
|
+
encoding: US-ASCII
|
1822
|
+
string: ! '{"site_id":21,"app_id":209,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1823
|
+
http_version:
|
1824
|
+
recorded_at: Wed, 05 Sep 2012 19:40:03 GMT
|
1825
|
+
- request:
|
1826
|
+
method: post
|
1827
|
+
uri: http://api.jirafe.dev/v1/applications/210/sites?token=5a16ef99baeddb011c7e71890867903b
|
1828
|
+
body:
|
1829
|
+
encoding: US-ASCII
|
1830
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1831
|
+
headers: {}
|
1832
|
+
response:
|
1833
|
+
status:
|
1834
|
+
code: 200
|
1835
|
+
message: OK
|
1836
|
+
headers:
|
1837
|
+
Server:
|
1838
|
+
- nginx/1.2.2
|
1839
|
+
Content-Type:
|
1840
|
+
- application/json
|
1841
|
+
Transfer-Encoding:
|
1842
|
+
- chunked
|
1843
|
+
Connection:
|
1844
|
+
- keep-alive
|
1845
|
+
Keep-Alive:
|
1846
|
+
- timeout=10
|
1847
|
+
X-Powered-By:
|
1848
|
+
- PHP/5.3.15
|
1849
|
+
Cache-Control:
|
1850
|
+
- no-cache
|
1851
|
+
Date:
|
1852
|
+
- Wed, 05 Sep 2012 19:40:12 GMT
|
1853
|
+
X-Debug-Token:
|
1854
|
+
- 5047aa9cb325e
|
1855
|
+
body:
|
1856
|
+
encoding: US-ASCII
|
1857
|
+
string: ! '{"site_id":22,"app_id":210,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1858
|
+
http_version:
|
1859
|
+
recorded_at: Wed, 05 Sep 2012 19:40:12 GMT
|
1860
|
+
- request:
|
1861
|
+
method: post
|
1862
|
+
uri: http://api.jirafe.dev/v1/applications?token=user_master_token
|
1863
|
+
body:
|
1864
|
+
encoding: US-ASCII
|
1865
|
+
string: name=test%20app%20cmb&url=
|
1866
|
+
headers: {}
|
1867
|
+
response:
|
1868
|
+
status:
|
1869
|
+
code: 200
|
1870
|
+
message: OK
|
1871
|
+
headers:
|
1872
|
+
Server:
|
1873
|
+
- nginx/1.2.2
|
1874
|
+
Content-Type:
|
1875
|
+
- application/json
|
1876
|
+
Transfer-Encoding:
|
1877
|
+
- chunked
|
1878
|
+
Connection:
|
1879
|
+
- keep-alive
|
1880
|
+
Keep-Alive:
|
1881
|
+
- timeout=10
|
1882
|
+
X-Powered-By:
|
1883
|
+
- PHP/5.3.15
|
1884
|
+
Cache-Control:
|
1885
|
+
- no-cache
|
1886
|
+
Date:
|
1887
|
+
- Wed, 05 Sep 2012 19:40:47 GMT
|
1888
|
+
X-Debug-Token:
|
1889
|
+
- 5047aabfa85a5
|
1890
|
+
body:
|
1891
|
+
encoding: US-ASCII
|
1892
|
+
string: ! '{"app_id":"211","name":"test app cmb","token":"fe5d818d668cc748069019fcb8b34452"}'
|
1893
|
+
http_version:
|
1894
|
+
recorded_at: Wed, 05 Sep 2012 19:40:47 GMT
|
1895
|
+
- request:
|
1896
|
+
method: post
|
1897
|
+
uri: http://api.jirafe.dev/v1/applications/211/sites?token=fe5d818d668cc748069019fcb8b34452
|
1898
|
+
body:
|
1899
|
+
encoding: US-ASCII
|
1900
|
+
string: description=test%20site%20cmb&url=http%3A%2F%2Ftestsitecmb.example.com&store_api_url=http%3A%2F%2F127.0.0.1%3A3333
|
1901
|
+
headers: {}
|
1902
|
+
response:
|
1903
|
+
status:
|
1904
|
+
code: 200
|
1905
|
+
message: OK
|
1906
|
+
headers:
|
1907
|
+
Server:
|
1908
|
+
- nginx/1.2.2
|
1909
|
+
Content-Type:
|
1910
|
+
- application/json
|
1911
|
+
Transfer-Encoding:
|
1912
|
+
- chunked
|
1913
|
+
Connection:
|
1914
|
+
- keep-alive
|
1915
|
+
Keep-Alive:
|
1916
|
+
- timeout=10
|
1917
|
+
X-Powered-By:
|
1918
|
+
- PHP/5.3.15
|
1919
|
+
Cache-Control:
|
1920
|
+
- no-cache
|
1921
|
+
Date:
|
1922
|
+
- Wed, 05 Sep 2012 19:40:47 GMT
|
1923
|
+
X-Debug-Token:
|
1924
|
+
- 5047aabfb9410
|
1925
|
+
body:
|
1926
|
+
encoding: US-ASCII
|
1927
|
+
string: ! '{"site_id":23,"app_id":211,"description":"test site cmb","url":"http:\/\/testsitecmb.example.com","timezone":"UTC","currency":"USD","external_id":"","store_api_url":"http:\/\/127.0.0.1:3333","store_cart_url":null}'
|
1928
|
+
http_version:
|
1929
|
+
recorded_at: Wed, 05 Sep 2012 19:40:47 GMT
|
1930
|
+
- request:
|
1931
|
+
method: post
|
1932
|
+
uri: http://data.jirafe.dev/cmb
|
1933
|
+
body:
|
1934
|
+
encoding: US-ASCII
|
1935
|
+
string: siteId=23
|
1936
|
+
headers: {}
|
1937
|
+
response:
|
1938
|
+
status:
|
1939
|
+
code: 200
|
1940
|
+
message: OK
|
1941
|
+
headers:
|
1942
|
+
Server:
|
1943
|
+
- nginx/1.2.2
|
1944
|
+
Date:
|
1945
|
+
- Wed, 05 Sep 2012 19:40:48 GMT
|
1946
|
+
Content-Type:
|
1947
|
+
- text/html
|
1948
|
+
Transfer-Encoding:
|
1949
|
+
- chunked
|
1950
|
+
Connection:
|
1951
|
+
- keep-alive
|
1952
|
+
Keep-Alive:
|
1953
|
+
- timeout=10
|
1954
|
+
X-Powered-By:
|
1955
|
+
- PHP/5.3.15
|
1956
|
+
Cache-Control:
|
1957
|
+
- no-cache, must-revalidate
|
1958
|
+
Expires:
|
1959
|
+
- Sat, 26 Jul 1997 05:00:00 GMT
|
1960
|
+
body:
|
1961
|
+
encoding: US-ASCII
|
1962
|
+
string: ''
|
1963
|
+
http_version:
|
1964
|
+
recorded_at: Wed, 05 Sep 2012 19:40:48 GMT
|
1965
|
+
- request:
|
1966
|
+
method: post
|
1967
|
+
uri: http://data.jirafe.dev/events
|
1968
|
+
body:
|
1969
|
+
encoding: US-ASCII
|
1970
|
+
string: siteId=67&token=qrihnnrvhyuhtpwc×tamp=1346885051&events=%5B%7B%22v%22%3A1%2C%22a%22%3A%22orderCreate%22%2C%22d%22%3A%7B%22orderId%22%3A1%2C%22status%22%3Anull%2C%22customerHash%22%3Anull%2C%22vistorId%22%3Anull%2C%22time%22%3A1346885051%2C%22grandTotal%22%3A100.0%2C%22subTotal%22%3A80.0%2C%22taxAmount%22%3A20.0%2C%22shippingAmount%22%3Anull%2C%22discountAmount%22%3A0.0%2C%22items%22%3Anull%7D%7D%2C%7B%22v%22%3A2%2C%22a%22%3A%22orderUpdate%22%2C%22d%22%3A%7B%22orderId%22%3A1%2C%22status%22%3A%22complete%22%2C%22customerHash%22%3Anull%2C%22vistorId%22%3Anull%2C%22time%22%3A1346885051%2C%22grandTotal%22%3A100.0%2C%22subTotal%22%3A80.0%2C%22taxAmount%22%3A20.0%2C%22shippingAmount%22%3Anull%2C%22discountAmount%22%3A10.0%2C%22items%22%3Anull%7D%7D%5D
|
1971
|
+
headers: {}
|
1972
|
+
response:
|
1973
|
+
status:
|
1974
|
+
code: 200
|
1975
|
+
message: OK
|
1976
|
+
headers:
|
1977
|
+
Server:
|
1978
|
+
- nginx/1.2.2
|
1979
|
+
Date:
|
1980
|
+
- Wed, 05 Sep 2012 22:44:11 GMT
|
1981
|
+
Content-Type:
|
1982
|
+
- text/html
|
1983
|
+
Transfer-Encoding:
|
1984
|
+
- chunked
|
1985
|
+
Connection:
|
1986
|
+
- keep-alive
|
1987
|
+
Keep-Alive:
|
1988
|
+
- timeout=10
|
1989
|
+
X-Powered-By:
|
1990
|
+
- PHP/5.3.15
|
1991
|
+
Cache-Control:
|
1992
|
+
- no-cache, must-revalidate
|
1993
|
+
Expires:
|
1994
|
+
- Sat, 26 Jul 1997 05:00:00 GMT
|
1995
|
+
body:
|
1996
|
+
encoding: US-ASCII
|
1997
|
+
string: OK
|
1998
|
+
http_version:
|
1999
|
+
recorded_at: Wed, 05 Sep 2012 22:44:11 GMT
|
2000
|
+
recorded_with: VCR 2.2.4
|