fix a couple of tiny issues regarding the pull command
did
committed Jul 30, 2015
commit 09556b18f3c26bac976270957e9748106589df64
Showing 9
changed files with
1123 additions
and 1625 deletions
Gemfile
+1
-1
| @@ | @@ -17,7 +17,7 @@ gem 'therubyracer' |
| # gem 'locomotivecms_coal', github: 'locomotivecms/coal', ref: '32b2844', require: false | |
| # gem 'locomotivecms_common', github: 'locomotivecms/common', ref: '3046b79893', require: false | |
| - | gem 'locomotivecms_coal', path: '../in_progress/coal', require: false |
| + | # gem 'locomotivecms_coal', path: '../in_progress/coal', require: false |
| # gem 'locomotivecms_steam', path: '../in_progress/steam', require: false | |
| # gem 'locomotivecms_common', path: '../in_progress/common', require: false | |
locomotive/wagon/commands/loggers/pull_logger.rb b/lib/locomotive/wagon/commands/loggers/pull_logger.rb
+0
-20
| @@ | @@ -5,31 +5,11 @@ module Locomotive::Wagon |
| class PullLogger < BaseLogger | |
| def initialize | |
| - | # subscribe 'site_created' do |event| |
| - | # log "We created the config/site.yml file", { mode: :bold } |
| - | # end |
| - | |
| subscribe :start do |event| | |
| log "\n" | |
| log "Pulling #{event.payload[:name].camelcase}", { color: :black, background: :white } | |
| end | |
| - | # subscribe :persist do |event| |
| - | # log "persisting #{event.payload[:label]}", :white, 2, true |
| - | # end |
| - | |
| - | # subscribe :skip_persisting do |event| |
| - | # log ' [' + 'skip'.colorize(:yellow) + ']' |
| - | # end |
| - | |
| - | # subscribe :persist_with_success do |event| |
| - | # log ' [' + 'done'.colorize(:green) + ']' |
| - | # end |
| - | |
| - | # subscribe :persist_with_error do |event| |
| - | # log ' [' + 'failed'.colorize(:red) + ']' |
| - | # log event.payload[:message], :red, 4 |
| - | # end |
| end | |
| private | |
locomotive/wagon/commands/pull_command.rb b/lib/locomotive/wagon/commands/pull_command.rb
+1
-2
| @@ | @@ -13,8 +13,7 @@ module Locomotive::Wagon |
| class PullCommand < Struct.new(:env, :path, :options, :shell) | |
| - | # RESOURCES = %w(site pages content_types content_entries snippets theme_assets translations).freeze |
| - | RESOURCES = %w(content_assets).freeze |
| + | RESOURCES = %w(site pages content_types content_entries snippets theme_assets translations content_assets).freeze |
| include ApiConcern | |
| include DeployFileConcern | |
locomotive/wagon/commands/pull_sub_commands/concerns/assets_concern.rb b/lib/locomotive/wagon/commands/pull_sub_commands/concerns/assets_concern.rb
+1
-1
| @@ | @@ -15,9 +15,9 @@ module Locomotive::Wagon |
| content.force_encoding('utf-8').gsub(/\/sites\/[0-9a-f]{24}\/(assets|pages|theme|content_entry[0-9a-f]{24})\/(([^;.]+)\/)*([a-zA-Z_\-0-9]+)\.([a-z]{2,3})/) do |url| | |
| filename = "#{$4}.#{$5}" | |
| folder = case $1 | |
| + | when 'assets', 'pages' then File.join('samples', $1) |
| when 'theme' then $3 | |
| when /\Acontent_entry/ then File.join('samples', 'content_entries') | |
| - | else File.join('samples', $1) |
| end | |
| if filepath = write_asset(url, File.join(path, 'public', folder, filename)) | |
locomotive/wagon/commands/pull_sub_commands/pull_pages_command.rb b/lib/locomotive/wagon/commands/pull_sub_commands/pull_pages_command.rb
+6
-6
| @@ | @@ -27,24 +27,24 @@ EOF |
| private | |
| def yaml_attributes(page, locale) | |
| - | _attributes = page.attributes.slice('title', 'slug', 'handle', 'position', 'listed', 'published', 'redirect_url', 'is_layout', 'content_type', 'seo_title', 'meta_description', 'meta_keywords') |
| + | attributes = page.attributes.slice('title', 'slug', 'handle', 'position', 'listed', 'published', 'redirect_url', 'is_layout', 'content_type', 'seo_title', 'meta_description', 'meta_keywords') |
| if locale != default_locale | |
| - | _attributes.delete_if { |k, _| %w(handle position listed published is_layout content_type).include?(k) } |
| + | attributes.delete_if { |k, _| %w(handle position listed published is_layout content_type).include?(k) } |
| end | |
| # editable elements | |
| - | _attributes['editable_elements'] = page.editable_elements.inject({}) do |hash, el| |
| - | hash["#{el['block']}/#{el['slug']}"] = replace_asset_urls(el['content']) |
| + | attributes['editable_elements'] = page.editable_elements.inject({}) do |hash, el| |
| + | hash["#{el['block']}/#{el['slug']}"] = replace_asset_urls(el['content']) if el['content'] |
| hash | |
| end | |
| clean_attributes(attributes) | |
| - | _attributes.to_yaml |
| + | attributes.to_yaml |
| end | |
| - | def filepath(page, locale) |
| + | def page_filepath(page, locale) |
| fullpath = locale == default_locale ? page.fullpath : "#{fullpaths[page._id]}.#{locale}" | |
| File.join('app', 'views', 'pages', fullpath + '.liquid') | |
| end | |
locomotive/wagon/commands/serve_command.rb b/lib/locomotive/wagon/commands/serve_command.rb
+1
-1
| @@ | @@ -56,7 +56,7 @@ module Locomotive::Wagon |
| Locomotive::Steam.configure do |config| | |
| config.mode = :test | |
| - | config.adapter = { name: :filesystem, path: path } |
| + | config.adapter = { name: :filesystem, path: File.expand_path(path) } |
| config.asset_path = File.expand_path(File.join(path, 'public')) | |
| if port = options[:live_reload_port] | |
locomotivecms_wagon.gemspec
+2
-2
| @@ | @@ -25,8 +25,8 @@ Gem::Specification.new do |gem| |
| gem.add_dependency 'rubyzip', '~> 1.1.7' | |
| gem.add_dependency 'netrc', '~> 0.10.3' | |
| - | # gem.add_dependency 'locomotivecms_coal', '~> 1.0.0-alpha.3' |
| - | gem.add_dependency 'locomotivecms_steam', '~> 1.0.0-alpha.2' |
| + | gem.add_dependency 'locomotivecms_coal', '~> 1.0.0-beta.1' |
| + | gem.add_dependency 'locomotivecms_steam', '~> 1.0.0-beta.1' |
| gem.add_dependency 'listen', '~> 2.10.0' | |
| gem.add_dependency 'rack-livereload', '~> 0.3.15' | |
spec/fixtures/cassettes/authenticate.yml
+46
-78
| @@ | @@ -22,31 +22,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '32' |
| Etag: | |
| - W/"2245a1c3eefc06a0a39cca5e28eb4822" | |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c7ddea05-6b69-4454-8f5a-b667a8628ef9 |
| + | - 0f1457f9-91de-426d-b43b-233b76f7026f |
| X-Runtime: | |
| - | - '0.590206' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.109440' |
| + | Content-Length: |
| + | - '32' |
| body: | |
| encoding: UTF-8 | |
| string: '{"token":"ib6bXanDDnsFjyujf9Gt"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:12 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:43 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/my_account.json |
| + | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=ib6bXanDDnsFjyujf9Gt |
| body: | |
| - | encoding: UTF-8 |
| - | string: auth_token=ib6bXanDDnsFjyujf9Gt |
| + | encoding: US-ASCII |
| + | string: '' |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -54,8 +50,6 @@ http_interactions: |
| - john@doe.net | |
| X-Locomotive-Account-Token: | |
| - ib6bXanDDnsFjyujf9Gt | |
| - | Content-Type: |
| - | - application/x-www-form-urlencoded |
| Accept-Encoding: | |
| - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 | |
| User-Agent: | |
| @@ | @@ -67,31 +61,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '250' |
| Etag: | |
| - W/"77a6faa0568f7ba809893a63188e0841" | |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ea9681b4-a8ed-4c0e-86e7-da1824762b79 |
| + | - b07dfcd8-7194-4f94-b9f5-8c07f2061171 |
| X-Runtime: | |
| - | - '0.087301' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.029664' |
| + | Content-Length: |
| + | - '250' |
| body: | |
| encoding: UTF-8 | |
| string: '{"_id":"555b4492646964986c220000","created_at":"2015-05-19T14:11:30Z","updated_at":"2015-05-19T14:11:30Z","name":"John","email":"john@doe.net","locale":"en","api_key":"c17eb23cfde7a2f7f3d08689dd20470cf9bd95a8","super_admin":false,"local_admin":false}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:12 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:43 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/my_account.json |
| + | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=ib6bXanDDnsFjyujf9Gt |
| body: | |
| - | encoding: UTF-8 |
| - | string: auth_token=ib6bXanDDnsFjyujf9Gt |
| + | encoding: US-ASCII |
| + | string: '' |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -99,8 +89,6 @@ http_interactions: |
| - john@doe.net | |
| X-Locomotive-Account-Token: | |
| - ib6bXanDDnsFjyujf9Gt | |
| - | Content-Type: |
| - | - application/x-www-form-urlencoded |
| Accept-Encoding: | |
| - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 | |
| User-Agent: | |
| @@ | @@ -112,25 +100,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '250' |
| Etag: | |
| - W/"77a6faa0568f7ba809893a63188e0841" | |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 736fdff0-e01e-424f-9071-619960ad972f |
| + | - 71d0e6f8-547a-4ae4-ae53-a2e450d6e408 |
| X-Runtime: | |
| - | - '0.013798' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.020693' |
| + | Content-Length: |
| + | - '250' |
| body: | |
| encoding: UTF-8 | |
| string: '{"_id":"555b4492646964986c220000","created_at":"2015-05-19T14:11:30Z","updated_at":"2015-05-19T14:11:30Z","name":"John","email":"john@doe.net","locale":"en","api_key":"c17eb23cfde7a2f7f3d08689dd20470cf9bd95a8","super_admin":false,"local_admin":false}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:12 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:43 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/tokens.json | |
| @@ | @@ -153,31 +137,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '32' |
| Etag: | |
| - W/"6b081cb1b0d50389aeec251b56dc5e74" | |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a19a725f-16bd-4e61-9965-0663181e5262 |
| + | - 593ef2da-eea5-4161-a96d-67986bc5dc8e |
| X-Runtime: | |
| - | - '0.014548' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.018697' |
| + | Content-Length: |
| + | - '32' |
| body: | |
| encoding: UTF-8 | |
| string: '{"token":"6UA3Po7vVz4Ry34swEqa"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:12 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:43 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/my_account.json |
| + | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=6UA3Po7vVz4Ry34swEqa |
| body: | |
| - | encoding: UTF-8 |
| - | string: auth_token=6UA3Po7vVz4Ry34swEqa |
| + | encoding: US-ASCII |
| + | string: '' |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -185,8 +165,6 @@ http_interactions: |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| - | Content-Type: |
| - | - application/x-www-form-urlencoded |
| Accept-Encoding: | |
| - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 | |
| User-Agent: | |
| @@ | @@ -198,32 +176,28 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '264' |
| Etag: | |
| - | - W/"cd64b967426892bd75445b74968ee0e7" |
| + | - W/"e3c136adec199820a931484dadaa9d14" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 1637260c-7fdc-47cc-b2cb-4b32a976146a |
| + | - b0ac9c5b-462f-4ee2-8550-4ab2d0a11880 |
| X-Runtime: | |
| - | - '0.014046' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.019627' |
| + | Content-Length: |
| + | - '264' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5555b35a646964e1ca000000","created_at":"2015-05-15T08:50:34Z","updated_at":"2015-05-21T11:12:17Z","name":"John |
| + | string: '{"_id":"5555b35a646964e1ca000000","created_at":"2015-05-15T08:50:34Z","updated_at":"2015-07-30T14:17:48Z","name":"John |
| Doe","email":"admin@locomotivecms.com","locale":"en","api_key":"d49cd50f6f0d2b163f48fc73cb249f0244c37074","super_admin":false,"local_admin":true}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:12 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:43 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/my_account.json |
| + | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=6UA3Po7vVz4Ry34swEqa |
| body: | |
| - | encoding: UTF-8 |
| - | string: auth_token=6UA3Po7vVz4Ry34swEqa |
| + | encoding: US-ASCII |
| + | string: '' |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -231,8 +205,6 @@ http_interactions: |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| - | Content-Type: |
| - | - application/x-www-form-urlencoded |
| Accept-Encoding: | |
| - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 | |
| User-Agent: | |
| @@ | @@ -244,24 +216,20 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '264' |
| Etag: | |
| - | - W/"cd64b967426892bd75445b74968ee0e7" |
| + | - W/"e3c136adec199820a931484dadaa9d14" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 286b83c2-dc57-4ff6-b93e-69d4b083b7ef |
| + | - 69fc6c14-9f2b-458d-b75c-6a3d69fc03a6 |
| X-Runtime: | |
| - | - '0.019133' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.019859' |
| + | Content-Length: |
| + | - '264' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5555b35a646964e1ca000000","created_at":"2015-05-15T08:50:34Z","updated_at":"2015-05-21T11:12:17Z","name":"John |
| + | string: '{"_id":"5555b35a646964e1ca000000","created_at":"2015-05-15T08:50:34Z","updated_at":"2015-07-30T14:17:48Z","name":"John |
| Doe","email":"admin@locomotivecms.com","locale":"en","api_key":"d49cd50f6f0d2b163f48fc73cb249f0244c37074","super_admin":false,"local_admin":true}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:12 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:43 GMT |
| recorded_with: VCR 2.9.3 | |
spec/fixtures/cassettes/push.yml
+1065
-1514
| @@ | @@ -22,25 +22,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '32' |
| Etag: | |
| - W/"6b081cb1b0d50389aeec251b56dc5e74" | |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 1f17fa59-7232-40e4-8328-d8a9ad9984b1 |
| + | - 2bd9b038-9cc3-459f-a4ab-f93c844ee131 |
| X-Runtime: | |
| - | - '0.013323' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.023419' |
| + | Content-Length: |
| + | - '32' |
| body: | |
| encoding: UTF-8 | |
| string: '{"token":"6UA3Po7vVz4Ry34swEqa"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:13 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:44 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/sites.json | |
| @@ | @@ -67,28 +63,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '583' |
| Etag: | |
| - | - W/"3b1314516fd7649e7c03ccd0d4eb3633" |
| + | - W/"256f3b334891906654e0543664cd2344" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8573b5f7-63be-4537-941d-85ba0a862cb5 |
| + | - a93bc2e4-fbb0-407b-88fe-79b71e02b23e |
| X-Runtime: | |
| - | - '0.443754' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.168692' |
| + | Content-Length: |
| + | - '610' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae56469646ed2000000","created_at":"2015-05-25T23:06:13Z","updated_at":"2015-05-25T23:06:13Z","name":"Sample |
| - | website","handle":"undisturbed-mist-8792","seo_title":"A simple LocomotiveCMS |
| - | website","meta_keywords":"some meta keywords","meta_description":"","robots_txt":null,"locales":["en","fr","nb"],"domains":[],"memberships":[{"_id":"5563aae56469646ed2010000","created_at":null,"updated_at":null,"role":"admin","account_id":"5555b35a646964e1ca000000","name":"John |
| - | Doe","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":null}' |
| + | string: '{"_id":"55ba45046469646eb8000000","created_at":"2015-07-30T15:38:44Z","updated_at":"2015-07-30T15:38:44Z","name":"Sample |
| + | website","handle":"stunning-chasm-9771","seo_title":"A simple LocomotiveCMS |
| + | website","meta_keywords":"some meta keywords","meta_description":"","robots_txt":null,"locales":["en","fr","nb"],"domains":[],"memberships":[{"_id":"55ba45046469646eb8000001","created_at":null,"updated_at":null,"role":"admin","account_id":"5555b35a646964e1ca000000","name":"John |
| + | Doe","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":null,"picture_thumbnail_url":null}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:14 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:44 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/tokens.json | |
| @@ | @@ -111,31 +103,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '32' |
| Etag: | |
| - W/"6b081cb1b0d50389aeec251b56dc5e74" | |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a4fc172d-a3ac-437c-af12-07dee598c46c |
| + | - 758739bc-3429-4799-a2ee-794830d224ea |
| X-Runtime: | |
| - | - '0.015183' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.020660' |
| + | Content-Length: |
| + | - '32' |
| body: | |
| encoding: UTF-8 | |
| string: '{"token":"6UA3Po7vVz4Ry34swEqa"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:14 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:44 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types.json?auth_token=6UA3Po7vVz4Ry34swEqa |
| body: | |
| - | encoding: UTF-8 |
| - | string: auth_token=6UA3Po7vVz4Ry34swEqa |
| + | encoding: US-ASCII |
| + | string: '' |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -144,9 +132,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| - | Content-Type: |
| - | - application/x-www-form-urlencoded |
| + | - stunning-chasm-9771 |
| Accept-Encoding: | |
| - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 | |
| User-Agent: | |
| @@ | @@ -158,25 +144,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '2' |
| Etag: | |
| - W/"d751713988987e9331980363e24189ce" | |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c475456e-a36c-446e-ba3e-7b39261b692e |
| + | - 0ba98343-2e84-4b87-95d8-7f81aae3eb11 |
| X-Runtime: | |
| - | - '0.023939' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.031671' |
| + | Content-Length: |
| + | - '2' |
| body: | |
| encoding: UTF-8 | |
| string: "[]" | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:14 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:44 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands.json | |
| @@ | @@ -191,7 +173,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -205,29 +187,25 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1427' |
| Etag: | |
| - | - W/"3b0ad3fff5abbac86f965e69a65e3222" |
| + | - W/"3dd47c918121c9f6996a5b785093a3e4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ec831a7a-d13e-49e0-ae22-f0fa40e4a82e |
| + | - ef371d63-c554-46da-afa8-3ddbd094dcd9 |
| X-Runtime: | |
| - | - '0.074843' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.088255' |
| + | Content-Length: |
| + | - '1451' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae66469646ed2040000","created_at":"2015-05-25T23:06:14Z","updated_at":"2015-05-25T23:06:14Z","name":"Bands","slug":"bands","description":"List |
| - | of bands","label_field_name":"name","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"fields":[{"_id":"5563aae66469646ed2050000","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Name |
| - | of the band","required":true,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2060000","created_at":null,"updated_at":null,"name":"leader","type":"string","label":"Fullname |
| - | of the leader","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2070000","created_at":null,"updated_at":null,"name":"kind","type":"select","label":"Music |
| - | kind (grunge, rock, pop, country)","hint":null,"required":false,"localized":false,"unique":false,"position":0,"select_options":[{"id":"5563aae66469646ed2090000","name":{"en":"grunge"},"position":0},{"id":"5563aae66469646ed20a0000","name":{"en":"rock"},"position":0},{"id":"5563aae66469646ed20b0000","name":{"en":"country"},"position":0}]},{"_id":"5563aae66469646ed2080000","created_at":null,"updated_at":null,"name":"featured","type":"boolean","label":"Featured","hint":null,"required":false,"localized":false,"unique":false,"position":0}],"order_by":"name","group_by":null,"public_submission_account_emails":[]}' |
| + | string: '{"_id":"55ba45046469646eb8000005","created_at":"2015-07-30T15:38:44Z","updated_at":"2015-07-30T15:38:44Z","name":"Bands","slug":"bands","description":"List |
| + | of bands","label_field_name":"name","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"display_settings":null,"fields":[{"_id":"55ba45046469646eb8000006","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Name |
| + | of the band","required":true,"localized":false,"unique":false,"position":0},{"_id":"55ba45046469646eb8000007","created_at":null,"updated_at":null,"name":"leader","type":"string","label":"Fullname |
| + | of the leader","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"55ba45046469646eb8000008","created_at":null,"updated_at":null,"name":"kind","type":"select","label":"Music |
| + | kind (grunge, rock, pop, country)","hint":null,"required":false,"localized":false,"unique":false,"position":0,"select_options":[{"id":"55ba45046469646eb800000a","name":{"en":"grunge"},"position":0},{"id":"55ba45046469646eb800000b","name":{"en":"rock"},"position":0},{"id":"55ba45046469646eb800000c","name":{"en":"country"},"position":0}]},{"_id":"55ba45046469646eb8000009","created_at":null,"updated_at":null,"name":"featured","type":"boolean","label":"Featured","hint":null,"required":false,"localized":false,"unique":false,"position":0}],"order_by":"name","group_by":null,"public_submission_account_emails":[]}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:14 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:44 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events.json | |
| @@ | @@ -242,7 +220,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -256,32 +234,28 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1816' |
| Etag: | |
| - | - W/"877a683d22bcf0cf275d42176cfd6b2e" |
| + | - W/"86c1886ee2827efece5d550d54dd9b00" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 56d00741-55df-43be-96f6-f1ce08ed0262 |
| + | - bacfc2ee-5869-491e-91fa-a6e4b5edb9d8 |
| X-Runtime: | |
| - | - '0.092626' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.103480' |
| + | Content-Length: |
| + | - '1840' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae66469646ed20c0000","created_at":"2015-05-25T23:06:14Z","updated_at":"2015-05-25T23:06:14Z","name":"Events","slug":"events","description":"List |
| - | of upcoming events","label_field_name":"place","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"fields":[{"_id":"5563aae66469646ed20d0000","created_at":null,"updated_at":null,"name":"place","type":"string","label":"Place","hint":"Name |
| - | of the place","required":true,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed20e0000","created_at":null,"updated_at":null,"name":"date","type":"date","label":"Date","hint":"Date |
| - | of the event","required":false,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed20f0000","created_at":null,"updated_at":null,"name":"city","type":"string","label":"City |
| - | of the event","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2100000","created_at":null,"updated_at":null,"name":"state","type":"string","label":"State |
| - | of the event","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2110000","created_at":null,"updated_at":null,"name":"notes","type":"text","label":"Notes","hint":null,"required":false,"localized":false,"unique":false,"position":0,"text_formatting":"html"},{"_id":"5563aae66469646ed2120000","created_at":null,"updated_at":null,"name":"tags","type":"tags","label":"List |
| - | of tags","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2130000","created_at":null,"updated_at":null,"name":"price","type":"float","label":"Price |
| + | string: '{"_id":"55ba45046469646eb800000d","created_at":"2015-07-30T15:38:45Z","updated_at":"2015-07-30T15:38:45Z","name":"Events","slug":"events","description":"List |
| + | of upcoming events","label_field_name":"place","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"display_settings":null,"fields":[{"_id":"55ba45056469646eb800000e","created_at":null,"updated_at":null,"name":"place","type":"string","label":"Place","hint":"Name |
| + | of the place","required":true,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb800000f","created_at":null,"updated_at":null,"name":"date","type":"date","label":"Date","hint":"Date |
| + | of the event","required":false,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb8000010","created_at":null,"updated_at":null,"name":"city","type":"string","label":"City |
| + | of the event","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb8000011","created_at":null,"updated_at":null,"name":"state","type":"string","label":"State |
| + | of the event","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb8000012","created_at":null,"updated_at":null,"name":"notes","type":"text","label":"Notes","hint":null,"required":false,"localized":false,"unique":false,"position":0,"text_formatting":"html"},{"_id":"55ba45056469646eb8000013","created_at":null,"updated_at":null,"name":"tags","type":"tags","label":"List |
| + | of tags","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb8000014","created_at":null,"updated_at":null,"name":"price","type":"float","label":"Price |
| of the event","hint":null,"required":false,"localized":false,"unique":false,"position":0}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:14 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:45 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/messages.json | |
| @@ | @@ -296,7 +270,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -310,28 +284,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1024' |
| Etag: | |
| - | - W/"635ec9154127e2af295a61282d9a03c1" |
| + | - W/"07b29efb16f08fe2ef5b908fe2828da1" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 330e9d0f-8aa2-440a-99ff-8c1d2d093597 |
| + | - 34ddf94f-d9e0-4430-87d1-28f40f409db4 |
| X-Runtime: | |
| - | - '0.065556' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.079684' |
| + | Content-Length: |
| + | - '1048' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae66469646ed2140000","created_at":"2015-05-25T23:06:14Z","updated_at":"2015-05-25T23:06:14Z","name":"Messages","slug":"messages","description":"Messages |
| - | posted by new potential customers","label_field_name":"name","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"fields":[{"_id":"5563aae66469646ed2150000","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Full |
| - | name","required":true,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2160000","created_at":null,"updated_at":null,"name":"email","type":"string","label":"Email","hint":"Email","required":true,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2170000","created_at":null,"updated_at":null,"name":"message","type":"text","label":"Message","hint":"Customer |
| + | string: '{"_id":"55ba45056469646eb8000015","created_at":"2015-07-30T15:38:45Z","updated_at":"2015-07-30T15:38:45Z","name":"Messages","slug":"messages","description":"Messages |
| + | posted by new potential customers","label_field_name":"name","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"display_settings":null,"fields":[{"_id":"55ba45056469646eb8000016","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Full |
| + | name","required":true,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb8000017","created_at":null,"updated_at":null,"name":"email","type":"string","label":"Email","hint":"Email","required":true,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb8000018","created_at":null,"updated_at":null,"name":"message","type":"text","label":"Message","hint":"Customer |
| message","required":true,"localized":false,"unique":false,"position":0,"text_formatting":"html"}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:14 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:45 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs.json | |
| @@ | @@ -346,7 +316,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -360,28 +330,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1444' |
| Etag: | |
| - | - W/"abc4c5660aefb9cc78488e41359d6b9d" |
| + | - W/"b70114029360d8a949a2834efc6668dd" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9bb72105-8d48-46d7-be2a-328ecf938543 |
| + | - 36289f5f-b4a4-4e08-b2b8-740762d1c2d2 |
| X-Runtime: | |
| - | - '0.065914' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.104567' |
| + | Content-Length: |
| + | - '1468' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae66469646ed2180000","created_at":"2015-05-25T23:06:14Z","updated_at":"2015-05-25T23:06:14Z","name":"Songs","slug":"songs","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"fields":[{"_id":"5563aae66469646ed2190000","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":"Title |
| - | of your song","required":true,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed21a0000","created_at":null,"updated_at":null,"name":"cover","type":"file","label":"Cover","hint":null,"required":true,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed21b0000","created_at":null,"updated_at":null,"name":"short_description","type":"text","label":"Short |
| - | description","hint":"Url to a service like Blip for instance","required":false,"localized":false,"unique":false,"position":0,"text_formatting":"html"},{"_id":"5563aae66469646ed21c0000","created_at":null,"updated_at":null,"name":"audio_url","type":"string","label":"Audio |
| - | url","hint":"format like: mm:ss","required":false,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed21d0000","created_at":null,"updated_at":null,"name":"duration","type":"string","label":"Duration","hint":null,"required":false,"localized":false,"unique":false,"position":0}],"order_by":"_position","group_by":null,"public_submission_account_emails":[]}' |
| + | string: '{"_id":"55ba45056469646eb8000019","created_at":"2015-07-30T15:38:45Z","updated_at":"2015-07-30T15:38:45Z","name":"Songs","slug":"songs","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"display_settings":null,"fields":[{"_id":"55ba45056469646eb800001a","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":"Title |
| + | of your song","required":true,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb800001b","created_at":null,"updated_at":null,"name":"cover","type":"file","label":"Cover","hint":null,"required":true,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb800001c","created_at":null,"updated_at":null,"name":"short_description","type":"text","label":"Short |
| + | description","hint":"Url to a service like Blip for instance","required":false,"localized":false,"unique":false,"position":0,"text_formatting":"html"},{"_id":"55ba45056469646eb800001d","created_at":null,"updated_at":null,"name":"audio_url","type":"string","label":"Audio |
| + | url","hint":"format like: mm:ss","required":false,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb800001e","created_at":null,"updated_at":null,"name":"duration","type":"string","label":"Duration","hint":null,"required":false,"localized":false,"unique":false,"position":0}],"order_by":"_position","group_by":null,"public_submission_account_emails":[]}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:14 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:45 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates.json | |
| @@ | @@ -396,7 +362,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -410,30 +376,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1413' |
| Etag: | |
| - | - W/"8952867395570d87bd575963f4fdf1c1" |
| + | - W/"e34a575d2684e10452a24f30019645e7" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4c532d46-525f-4575-af12-4e7f2fc85e80 |
| + | - f5e4a784-8c0b-4832-b638-53cd8487b818 |
| X-Runtime: | |
| - | - '0.065087' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.091270' |
| + | Content-Length: |
| + | - '1437' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae66469646ed21e0000","created_at":"2015-05-25T23:06:14Z","updated_at":"2015-05-25T23:06:14Z","name":"Updates","slug":"updates","description":"List |
| - | of updates","label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"fields":[{"_id":"5563aae66469646ed21f0000","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":"Not |
| - | displayed in the website","required":true,"localized":true,"unique":false,"position":0},{"_id":"5563aae66469646ed2200000","created_at":null,"updated_at":null,"name":"text","type":"text","label":"Text","hint":"Text |
| - | displayed in the home page","required":false,"localized":true,"unique":false,"position":0,"text_formatting":"html"},{"_id":"5563aae66469646ed2210000","created_at":null,"updated_at":null,"name":"category","type":"select","label":"Category","hint":"Pick |
| - | a category","required":false,"localized":true,"unique":false,"position":0,"select_options":[{"id":"5563aae66469646ed2230000","name":{"en":"Bands","fr":"Groupes"},"position":0},{"id":"5563aae66469646ed2240000","name":{"en":"Albums"},"position":0}]},{"_id":"5563aae66469646ed2220000","created_at":null,"updated_at":null,"name":"date","type":"date","label":"Date","hint":"Date |
| + | string: '{"_id":"55ba45056469646eb800001f","created_at":"2015-07-30T15:38:45Z","updated_at":"2015-07-30T15:38:45Z","name":"Updates","slug":"updates","description":"List |
| + | of updates","label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"display_settings":null,"fields":[{"_id":"55ba45056469646eb8000020","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":"Not |
| + | displayed in the website","required":true,"localized":true,"unique":false,"position":0},{"_id":"55ba45056469646eb8000021","created_at":null,"updated_at":null,"name":"text","type":"text","label":"Text","hint":"Text |
| + | displayed in the home page","required":false,"localized":true,"unique":false,"position":0,"text_formatting":"html"},{"_id":"55ba45056469646eb8000022","created_at":null,"updated_at":null,"name":"category","type":"select","label":"Category","hint":"Pick |
| + | a category","required":false,"localized":true,"unique":false,"position":0,"select_options":[{"id":"55ba45056469646eb8000024","name":{"en":"Bands","fr":"Groupes"},"position":0},{"id":"55ba45056469646eb8000025","name":{"en":"Albums"},"position":0}]},{"_id":"55ba45056469646eb8000023","created_at":null,"updated_at":null,"name":"date","type":"date","label":"Date","hint":"Date |
| of the update","required":false,"localized":false,"unique":false,"position":0}],"order_by":"date","group_by":null,"public_submission_account_emails":[]}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:14 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:45 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands.json | |
| @@ | @@ -448,7 +410,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -462,29 +424,25 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1693' |
| Etag: | |
| - | - W/"18420de4d3abd8c7c04cab7aa23a0a4b" |
| + | - W/"e28b87a0530b895067033da74d10bfd4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ae22aaed-433b-44a4-aba0-991211c559fe |
| + | - ad6558f6-2ff4-4869-92e0-7f69026cd626 |
| X-Runtime: | |
| - | - '0.102219' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.124432' |
| + | Content-Length: |
| + | - '1717' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae66469646ed2040000","created_at":"2015-05-25T23:06:14Z","updated_at":"2015-05-25T23:06:14Z","name":"Bands","slug":"bands","description":"List |
| - | of bands","label_field_name":"name","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"fields":[{"_id":"5563aae66469646ed2050000","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Name |
| - | of the band","required":true,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2060000","created_at":null,"updated_at":null,"name":"leader","type":"string","label":"Fullname |
| - | of the leader","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2070000","created_at":null,"updated_at":null,"name":"kind","type":"select","label":"Music |
| - | kind (grunge, rock, pop, country)","hint":null,"required":false,"localized":false,"unique":false,"position":0,"select_options":[{"id":"5563aae66469646ed2090000","name":{"en":"grunge"},"position":0},{"id":"5563aae66469646ed20a0000","name":{"en":"rock"},"position":0},{"id":"5563aae66469646ed20b0000","name":{"en":"country"},"position":0}]},{"_id":"5563aae66469646ed2080000","created_at":null,"updated_at":null,"name":"featured","type":"boolean","label":"Featured","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2250000","created_at":null,"updated_at":null,"name":"songs","type":"has_many","label":"Songs","hint":null,"required":false,"localized":false,"unique":false,"position":0,"target":"songs","inverse_of":"band","order_by":null,"ui_enabled":true}],"order_by":"name","group_by":null,"public_submission_account_emails":[]}' |
| + | string: '{"_id":"55ba45046469646eb8000005","created_at":"2015-07-30T15:38:44Z","updated_at":"2015-07-30T15:38:45Z","name":"Bands","slug":"bands","description":"List |
| + | of bands","label_field_name":"name","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"display_settings":null,"fields":[{"_id":"55ba45046469646eb8000006","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Name |
| + | of the band","required":true,"localized":false,"unique":false,"position":0},{"_id":"55ba45046469646eb8000007","created_at":null,"updated_at":null,"name":"leader","type":"string","label":"Fullname |
| + | of the leader","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"55ba45046469646eb8000008","created_at":null,"updated_at":null,"name":"kind","type":"select","label":"Music |
| + | kind (grunge, rock, pop, country)","hint":null,"required":false,"localized":false,"unique":false,"position":0,"select_options":[{"id":"55ba45046469646eb800000a","name":{"en":"grunge"},"position":0},{"id":"55ba45046469646eb800000b","name":{"en":"rock"},"position":0},{"id":"55ba45046469646eb800000c","name":{"en":"country"},"position":0}]},{"_id":"55ba45046469646eb8000009","created_at":null,"updated_at":null,"name":"featured","type":"boolean","label":"Featured","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb8000026","created_at":null,"updated_at":null,"name":"songs","type":"has_many","label":"Songs","hint":null,"required":false,"localized":false,"unique":false,"position":0,"target":"songs","inverse_of":"band","order_by":null,"ui_enabled":true}],"order_by":"name","group_by":null,"public_submission_account_emails":[]}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:14 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:45 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs.json | |
| @@ | @@ -499,7 +457,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -513,28 +471,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1708' |
| Etag: | |
| - | - W/"c9f03895cd10ffd68dd259fd2783e42f" |
| + | - W/"d9c0e1403cd80a4973cf49453b8b19bd" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - aba1140c-cead-4c4c-96ad-fcebc8e7d262 |
| + | - 631e10c8-ad63-4f5d-966e-f812d9c924f4 |
| X-Runtime: | |
| - | - '0.124714' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.146356' |
| + | Content-Length: |
| + | - '1732' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae66469646ed2180000","created_at":"2015-05-25T23:06:14Z","updated_at":"2015-05-25T23:06:14Z","name":"Songs","slug":"songs","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"fields":[{"_id":"5563aae66469646ed2190000","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":"Title |
| - | of your song","required":true,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed21a0000","created_at":null,"updated_at":null,"name":"cover","type":"file","label":"Cover","hint":null,"required":true,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed21b0000","created_at":null,"updated_at":null,"name":"short_description","type":"text","label":"Short |
| - | description","hint":"Url to a service like Blip for instance","required":false,"localized":false,"unique":false,"position":0,"text_formatting":"html"},{"_id":"5563aae66469646ed21c0000","created_at":null,"updated_at":null,"name":"audio_url","type":"string","label":"Audio |
| - | url","hint":"format like: mm:ss","required":false,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed21d0000","created_at":null,"updated_at":null,"name":"duration","type":"string","label":"Duration","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"5563aae66469646ed2260000","created_at":null,"updated_at":null,"name":"band","type":"belongs_to","label":"Band","hint":null,"required":false,"localized":false,"unique":false,"position":0,"target":"bands","inverse_of":null,"order_by":null,"ui_enabled":true}],"order_by":"_position","group_by":null,"public_submission_account_emails":[]}' |
| + | string: '{"_id":"55ba45056469646eb8000019","created_at":"2015-07-30T15:38:45Z","updated_at":"2015-07-30T15:38:45Z","name":"Songs","slug":"songs","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"raw_item_template":null,"display_settings":null,"fields":[{"_id":"55ba45056469646eb800001a","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":"Title |
| + | of your song","required":true,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb800001b","created_at":null,"updated_at":null,"name":"cover","type":"file","label":"Cover","hint":null,"required":true,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb800001c","created_at":null,"updated_at":null,"name":"short_description","type":"text","label":"Short |
| + | description","hint":"Url to a service like Blip for instance","required":false,"localized":false,"unique":false,"position":0,"text_formatting":"html"},{"_id":"55ba45056469646eb800001d","created_at":null,"updated_at":null,"name":"audio_url","type":"string","label":"Audio |
| + | url","hint":"format like: mm:ss","required":false,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb800001e","created_at":null,"updated_at":null,"name":"duration","type":"string","label":"Duration","hint":null,"required":false,"localized":false,"unique":false,"position":0},{"_id":"55ba45056469646eb8000027","created_at":null,"updated_at":null,"name":"band","type":"belongs_to","label":"Band","hint":null,"required":false,"localized":false,"unique":false,"position":0,"target":"bands","inverse_of":null,"order_by":null,"ui_enabled":true}],"order_by":"_position","group_by":null,"public_submission_account_emails":[]}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:14 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:45 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands/entries/alice-in-chains.json | |
| @@ | @@ -549,7 +503,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -565,27 +519,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '354' |
| Etag: | |
| - | - W/"bcde6d879c357336c98dc03ecdcc3387" |
| + | - W/"dae18afa49f30b912dfda12d6082de9c" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 20ff0743-127d-4e41-818e-dd016f844883 |
| + | - bb7ee5f8-e308-4921-85d9-c9fc21feddab |
| X-Runtime: | |
| - | - '0.061199' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.075294' |
| + | Content-Length: |
| + | - '354' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae76469646ed2280000","created_at":"2015-05-25T23:06:15Z","updated_at":"2015-05-25T23:06:15Z","_slug":"alice-in-chains","content_type_slug":"bands","_label":"Alice |
| + | string: '{"_id":"55ba45056469646eb8000029","created_at":"2015-07-30T15:38:45Z","updated_at":"2015-07-30T15:38:45Z","_slug":"alice-in-chains","content_type_slug":"bands","_label":"Alice |
| in Chains","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"name":"Alice | |
| in Chains","leader":"Layne","kind":"grunge","featured":false}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:15 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:45 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands/entries/pearl-jam.json | |
| @@ | @@ -600,7 +550,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -616,27 +566,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '336' |
| Etag: | |
| - | - W/"ed31d6a61a728c1b45dcfbba5aaba12a" |
| + | - W/"029eabcf9a23a136d8df2839ca302956" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ebe7df9a-1922-4398-9009-f024fc91cc5d |
| + | - 2cc48f1f-7860-44d3-8918-7a0f2ff0e9b9 |
| X-Runtime: | |
| - | - '0.059760' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.063255' |
| + | Content-Length: |
| + | - '336' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae76469646ed22a0000","created_at":"2015-05-25T23:06:15Z","updated_at":"2015-05-25T23:06:15Z","_slug":"pearl-jam","content_type_slug":"bands","_label":"Pearl |
| + | string: '{"_id":"55ba45056469646eb800002c","created_at":"2015-07-30T15:38:45Z","updated_at":"2015-07-30T15:38:45Z","_slug":"pearl-jam","content_type_slug":"bands","_label":"Pearl |
| Jam","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"name":"Pearl | |
| Jam","leader":"Eddie","kind":"grunge","featured":false}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:15 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands/entries/the-who.json | |
| @@ | @@ -651,7 +597,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -667,33 +613,29 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '327' |
| Etag: | |
| - | - W/"c08ad5b70eacda2b5054ffa1d6c2af97" |
| + | - W/"ea00d47e79c2dc85092ab345853e8733" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f3713eab-7e26-4a9b-a644-03088f6e48bc |
| + | - 591cc040-7338-4eb6-beb4-e770e9071106 |
| X-Runtime: | |
| - | - '0.051132' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.088581' |
| + | Content-Length: |
| + | - '327' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae76469646ed22c0000","created_at":"2015-05-25T23:06:15Z","updated_at":"2015-05-25T23:06:15Z","_slug":"the-who","content_type_slug":"bands","_label":"The |
| + | string: '{"_id":"55ba45066469646eb800002f","created_at":"2015-07-30T15:38:46Z","updated_at":"2015-07-30T15:38:46Z","_slug":"the-who","content_type_slug":"bands","_label":"The |
| who","_position":2,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"name":"The | |
| who","leader":"Peter","kind":"rock","featured":true}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:15 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:46 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_assets.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_assets.json?auth_token=6UA3Po7vVz4Ry34swEqa |
| body: | |
| - | encoding: UTF-8 |
| - | string: auth_token=6UA3Po7vVz4Ry34swEqa |
| + | encoding: US-ASCII |
| + | string: '' |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -702,9 +644,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| - | Content-Type: |
| - | - application/x-www-form-urlencoded |
| + | - stunning-chasm-9771 |
| Accept-Encoding: | |
| - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 | |
| User-Agent: | |
| @@ | @@ -716,25 +656,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '2' |
| Etag: | |
| - W/"d751713988987e9331980363e24189ce" | |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 042f0e17-3bed-464c-963d-69249e62ae37 |
| + | - baafe78d-94df-4dca-baf8-24ee6424b99e |
| X-Runtime: | |
| - | - '0.046982' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.057785' |
| + | Content-Length: |
| + | - '2' |
| body: | |
| encoding: UTF-8 | |
| string: "[]" | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:15 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:46 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/content_assets.json | |
| @@ | @@ -4390,7 +4326,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -4406,31 +4342,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1109' |
| Etag: | |
| - | - W/"587a2f88049e2312535a9abc7da16460" |
| + | - W/"b0b86b8e611c67647e7abd6bcd1b79f9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5cc19b38-19b6-4cd3-8797-00d07082c9bd |
| + | - 4e16543e-a5ed-4628-9409-6c2984a1316c |
| X-Runtime: | |
| - | - '0.118975' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.148171' |
| + | Content-Length: |
| + | - '1109' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae76469646ed22d0000","created_at":"2015-05-25T23:06:15Z","updated_at":"2015-05-25T23:06:15Z","content_type":"image","width":602,"height":397,"vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81NTYzYWFlNTY0Njk2NDZlZDIwMDAwMDAvYXNzZXRzLzU1NjNhYWU3NjQ2OTY0NmVkMjJkMDAwMC9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjg1eDg1IyJdXQ/photo.jpg?sha=03a58fe27836a9e1","alternative_vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81NTYzYWFlNTY0Njk2NDZlZDIwMDAwMDAvYXNzZXRzLzU1NjNhYWU3NjQ2OTY0NmVkMjJkMDAwMC9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjE5MHgxMjBcdTAwM2UiLHsiZm9ybWF0IjoicG5nIiwiZnJhbWUiOjB9XSxbInAiLCJlbmNvZGUiLCJwbmciXV0/photo.png?sha=491a3cf53683e7b8","checksum":"e1aff5628ca068751b333cf1b69dd978","filename":"photo.jpg","short_name":"photo.jpg","extname":"jpg","full_filename":"photo.jpg","content_type_text":"image","with_thumbnail":true,"raw_size":163476,"url":"/sites/5563aae56469646ed2000000/assets/5563aae76469646ed22d0000/photo.jpg"}' |
| + | string: '{"_id":"55ba45066469646eb8000031","created_at":"2015-07-30T15:38:46Z","updated_at":"2015-07-30T15:38:46Z","content_type":"image","width":602,"height":397,"vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81NWJhNDUwNDY0Njk2NDZlYjgwMDAwMDAvYXNzZXRzLzU1YmE0NTA2NjQ2OTY0NmViODAwMDAzMS9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjg1eDg1IyJdXQ/photo.jpg?sha=f6c7456f2a695958","alternative_vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81NWJhNDUwNDY0Njk2NDZlYjgwMDAwMDAvYXNzZXRzLzU1YmE0NTA2NjQ2OTY0NmViODAwMDAzMS9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjE5MHgxMjBcdTAwM2UiLHsiZm9ybWF0IjoicG5nIiwiZnJhbWUiOjB9XSxbInAiLCJlbmNvZGUiLCJwbmciXV0/photo.png?sha=f5f3f44137a215bf","checksum":"e1aff5628ca068751b333cf1b69dd978","filename":"photo.jpg","short_name":"photo.jpg","extname":"jpg","full_filename":"photo.jpg","content_type_text":"image","with_thumbnail":true,"raw_size":163476,"url":"/sites/55ba45046469646eb8000000/assets/55ba45066469646eb8000031/photo.jpg"}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:15 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/avogadros-number.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5B_slug%5D=avogadros-number&content_entry%5Bcity%5D=Fort+Collins&content_entry%5Bdate%5D=2012-06-11&content_entry%5Bnotes%5D=%3Cp%3ELorem+ipsum%3Cbr%2F%3E%3Cimg+src%3D%22%2Fsites%2F5563aae56469646ed2000000%2Fassets%2F5563aae76469646ed22d0000%2Fphoto.jpg%22+alt%3D%22%22+%2F%3E%3C%2Fp%3E&content_entry%5Bplace%5D=Avogadro%27s+Number&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Colorado |
| + | string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5B_slug%5D=avogadros-number&content_entry%5Bcity%5D=Fort+Collins&content_entry%5Bdate%5D=2012-06-11&content_entry%5Bnotes%5D=%3Cp%3ELorem+ipsum%3Cbr%2F%3E%3Cimg+src%3D%22%2Fsites%2F55ba45046469646eb8000000%2Fassets%2F55ba45066469646eb8000031%2Fphoto.jpg%22+alt%3D%22%22+%2F%3E%3C%2Fp%3E&content_entry%5Bplace%5D=Avogadro%27s+Number&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Colorado |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -4439,7 +4371,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4455,35 +4387,31 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '568' |
| Etag: | |
| - | - W/"70ca3434c3d8f21240653c23a3973a65" |
| + | - W/"cc83a0f34b7bb31c615410e5871f2d46" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 941d2099-6f67-4fc7-aaee-0b77d0be89dd |
| + | - 21314128-fe15-4956-8775-f9ddc5f04b43 |
| X-Runtime: | |
| - | - '0.063903' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.120048' |
| + | Content-Length: |
| + | - '568' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae76469646ed22f0000","created_at":"2015-05-25T23:06:15Z","updated_at":"2015-05-25T23:06:15Z","_slug":"avogadros-number","content_type_slug":"events","_label":"Avogadro''s |
| + | string: '{"_id":"55ba45066469646eb8000033","created_at":"2015-07-30T15:38:46Z","updated_at":"2015-07-30T15:38:46Z","_slug":"avogadros-number","content_type_slug":"events","_label":"Avogadro''s |
| Number","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Avogadro''s | |
| Number","date":"2012-06-11","city":"Fort Collins","state":"Colorado","notes":"\u003cp\u003eLorem | |
| - | ipsum\u003cbr/\u003e\u003cimg src=\"/sites/5563aae56469646ed2000000/assets/5563aae76469646ed22d0000/photo.jpg\" |
| + | ipsum\u003cbr/\u003e\u003cimg src=\"/sites/55ba45046469646eb8000000/assets/55ba45066469646eb8000031/photo.jpg\" |
| alt=\"\" /\u003e\u003c/p\u003e","tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:15 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/quixotes-true-blue.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5B_slug%5D=quixotes-true-blue&content_entry%5Bcity%5D=Denver&content_entry%5Bdate%5D=2012-06-10&content_entry%5Bnotes%5D=%3Cp%3ELorem+ipsum%3Cbr%2F%3E%3Cimg+src%3D%22%2Fsites%2F5563aae56469646ed2000000%2Fassets%2F5563aae76469646ed22d0000%2Fphoto.jpg%22+alt%3D%22%22+%2F%3E%3C%2Fp%3E&content_entry%5Bplace%5D=Quixote%27s+True+Blue&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Colorado |
| + | string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5B_slug%5D=quixotes-true-blue&content_entry%5Bcity%5D=Denver&content_entry%5Bdate%5D=2012-06-10&content_entry%5Bnotes%5D=%3Cp%3ELorem+ipsum%3Cbr%2F%3E%3Cimg+src%3D%22%2Fsites%2F55ba45046469646eb8000000%2Fassets%2F55ba45066469646eb8000031%2Fphoto.jpg%22+alt%3D%22%22+%2F%3E%3C%2Fp%3E&content_entry%5Bplace%5D=Quixote%27s+True+Blue&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Colorado |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -4492,7 +4420,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4508,29 +4436,25 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '568' |
| Etag: | |
| - | - W/"072e859c67560c0256d1906d283df65c" |
| + | - W/"53c92281afdba86e3493e25fdd230e35" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 65db2727-e663-4078-af50-04900941b839 |
| + | - c5268374-a0ab-4c2f-9bd7-6510bdc302d1 |
| X-Runtime: | |
| - | - '0.063325' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.128333' |
| + | Content-Length: |
| + | - '568' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae76469646ed2310000","created_at":"2015-05-25T23:06:15Z","updated_at":"2015-05-25T23:06:15Z","_slug":"quixotes-true-blue","content_type_slug":"events","_label":"Quixote''s |
| + | string: '{"_id":"55ba45066469646eb8000036","created_at":"2015-07-30T15:38:46Z","updated_at":"2015-07-30T15:38:46Z","_slug":"quixotes-true-blue","content_type_slug":"events","_label":"Quixote''s |
| True Blue","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Quixote''s | |
| True Blue","date":"2012-06-10","city":"Denver","state":"Colorado","notes":"\u003cp\u003eLorem | |
| - | ipsum\u003cbr/\u003e\u003cimg src=\"/sites/5563aae56469646ed2000000/assets/5563aae76469646ed22d0000/photo.jpg\" |
| + | ipsum\u003cbr/\u003e\u003cimg src=\"/sites/55ba45046469646eb8000000/assets/55ba45066469646eb8000031/photo.jpg\" |
| alt=\"\" /\u003e\u003c/p\u003e","tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:15 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/kellys-westport-inn.json | |
| @@ | @@ -4545,7 +4469,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4561,28 +4485,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '435' |
| Etag: | |
| - | - W/"ad4f70cc94c561109c427d2999ace91b" |
| + | - W/"93e61b72b273897d9b150f12a4122b78" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - d3119675-35bf-43eb-9244-ad67e5a5d8a9 |
| + | - ee872f12-fbfe-4c63-bbc6-5415709d9680 |
| X-Runtime: | |
| - | - '0.071078' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.118356' |
| + | Content-Length: |
| + | - '435' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae76469646ed2330000","created_at":"2015-05-25T23:06:15Z","updated_at":"2015-05-25T23:06:15Z","_slug":"kellys-westport-inn","content_type_slug":"events","_label":"Kelly''s |
| + | string: '{"_id":"55ba45066469646eb8000039","created_at":"2015-07-30T15:38:46Z","updated_at":"2015-07-30T15:38:46Z","_slug":"kellys-westport-inn","content_type_slug":"events","_label":"Kelly''s |
| Westport Inn","_position":2,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Kelly''s | |
| Westport Inn","date":"2012-06-06","city":"Kansas City","state":"Missouri","notes":null,"tags":["awesome","open | |
| bar"],"price":5.5}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:15 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/brownes-market.json | |
| @@ | @@ -4597,7 +4517,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4613,28 +4533,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '421' |
| Etag: | |
| - | - W/"9f321e7f19cfb82853cee442bbff931a" |
| + | - W/"9988a8948d613a8a4c68c50f4df678ed" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b7d87180-858a-44a0-9b9d-0524a8e080e7 |
| + | - 618bb29e-3fb8-4d1a-92e4-13f1afd05c30 |
| X-Runtime: | |
| - | - '0.062100' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.099687' |
| + | Content-Length: |
| + | - '421' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae76469646ed2350000","created_at":"2015-05-25T23:06:15Z","updated_at":"2015-05-25T23:06:15Z","_slug":"brownes-market","content_type_slug":"events","_label":"Browne''s |
| + | string: '{"_id":"55ba45066469646eb800003c","created_at":"2015-07-30T15:38:46Z","updated_at":"2015-07-30T15:38:46Z","_slug":"brownes-market","content_type_slug":"events","_label":"Browne''s |
| Market","_position":3,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Browne''s | |
| Market","date":"2012-06-06","city":"Kansas City","state":"Missouri","notes":null,"tags":["awesome","open | |
| bar"],"price":15.0}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:15 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/ballydoyles.json | |
| @@ | @@ -4649,7 +4565,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4665,25 +4581,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '388' |
| Etag: | |
| - | - W/"cc28f9c5b024872ebe90da4e3bb30c5a" |
| + | - W/"db1298460533a20c5c7d16c09156ca94" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a479d126-e122-42d2-a67d-1932abb8b4c6 |
| + | - 9b9f46c2-7c1a-46c8-829a-f66314bac9f4 |
| X-Runtime: | |
| - | - '0.061871' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.150597' |
| + | Content-Length: |
| + | - '388' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae76469646ed2370000","created_at":"2015-05-25T23:06:15Z","updated_at":"2015-05-25T23:06:15Z","_slug":"ballydoyles","content_type_slug":"events","_label":"Ballydoyle''s","_position":4,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Ballydoyle''s","date":"2012-06-05","city":"Aurora","state":"Illinois","notes":null,"tags":null,"price":0.0}' |
| + | string: '{"_id":"55ba45076469646eb800003f","created_at":"2015-07-30T15:38:47Z","updated_at":"2015-07-30T15:38:47Z","_slug":"ballydoyles","content_type_slug":"events","_label":"Ballydoyle''s","_position":4,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Ballydoyle''s","date":"2012-06-05","city":"Aurora","state":"Illinois","notes":null,"tags":null,"price":0.0}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:15 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/the-belmont.json | |
| @@ | @@ -4698,7 +4610,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4714,27 +4626,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '388' |
| Etag: | |
| - | - W/"6c85b40036403edf802f46c6734c323b" |
| + | - W/"ab7ec413a51706593cf8be8cc3fd902a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 6ed527fb-2113-4226-8f82-895d9fbbe3ec |
| + | - c1bc5893-7f5f-4aa3-b602-e6f085f8bcc3 |
| X-Runtime: | |
| - | - '0.066566' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.104352' |
| + | Content-Length: |
| + | - '388' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed2390000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:16Z","_slug":"the-belmont","content_type_slug":"events","_label":"The |
| + | string: '{"_id":"55ba45076469646eb8000042","created_at":"2015-07-30T15:38:47Z","updated_at":"2015-07-30T15:38:47Z","_slug":"the-belmont","content_type_slug":"events","_label":"The |
| Belmont","_position":5,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"The | |
| Belmont","date":"2012-06-04","city":"Hamtramk","state":"Michigan","notes":null,"tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:16 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/avogadros-number-1.json | |
| @@ | @@ -4749,7 +4657,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4765,27 +4673,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '411' |
| Etag: | |
| - | - W/"a7f323a43607a3d68b6d3e43f561cee8" |
| + | - W/"176bea5a40aa78255600d35d5847b171" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - d91f5790-a0b9-45f9-896a-6b3dbce33b0c |
| + | - ce6560c4-c099-4e48-b037-f73d5e6a00b2 |
| X-Runtime: | |
| - | - '0.069188' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.195788' |
| + | Content-Length: |
| + | - '411' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed23b0000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:16Z","_slug":"avogadros-number-1","content_type_slug":"events","_label":"Avogadro''s |
| + | string: '{"_id":"55ba45076469646eb8000045","created_at":"2015-07-30T15:38:47Z","updated_at":"2015-07-30T15:38:47Z","_slug":"avogadros-number-1","content_type_slug":"events","_label":"Avogadro''s |
| Number","_position":6,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Avogadro''s | |
| Number","date":"2011-06-11","city":"Fort Collins","state":"Colorado","notes":null,"tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:16 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/quixotes-true-blue-1.json | |
| @@ | @@ -4800,7 +4704,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4816,27 +4720,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '411' |
| Etag: | |
| - | - W/"324a51a57566996323c7baf43d4a4a33" |
| + | - W/"81a3c51f247d30ab8592587917177a50" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 29bd8152-4005-4f21-a79e-2b8e0acadb6c |
| + | - 81f1dff3-7c4a-4577-89d7-e4c163d9b996 |
| X-Runtime: | |
| - | - '0.068344' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.099510' |
| + | Content-Length: |
| + | - '411' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed23d0000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:16Z","_slug":"quixotes-true-blue-1","content_type_slug":"events","_label":"Quixote''s |
| + | string: '{"_id":"55ba45076469646eb8000048","created_at":"2015-07-30T15:38:47Z","updated_at":"2015-07-30T15:38:47Z","_slug":"quixotes-true-blue-1","content_type_slug":"events","_label":"Quixote''s |
| True Blue","_position":7,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Quixote''s | |
| True Blue","date":"2011-06-10","city":"Denver","state":"Colorado","notes":null,"tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:16 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/kellys-westport-inn-1.json | |
| @@ | @@ -4851,7 +4751,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4867,27 +4767,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '419' |
| Etag: | |
| - | - W/"c8d59be81e8ac3dc9d903fc58cec6300" |
| + | - W/"3fb0a67f51a90115979d7c9daef8f07e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 446e24da-1c5c-40dd-b7d0-aa69afa6b759 |
| + | - f77fa5f9-b721-4101-944f-906695c201e2 |
| X-Runtime: | |
| - | - '0.068947' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.082497' |
| + | Content-Length: |
| + | - '419' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed23f0000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:16Z","_slug":"kellys-westport-inn-1","content_type_slug":"events","_label":"Kelly''s |
| + | string: '{"_id":"55ba45076469646eb800004b","created_at":"2015-07-30T15:38:47Z","updated_at":"2015-07-30T15:38:47Z","_slug":"kellys-westport-inn-1","content_type_slug":"events","_label":"Kelly''s |
| Westport Inn","_position":8,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Kelly''s | |
| Westport Inn","date":"2011-06-06","city":"Kansas City","state":"Missouri","notes":null,"tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:16 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/brownes-market-1.json | |
| @@ | @@ -4902,7 +4798,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4918,27 +4814,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '404' |
| Etag: | |
| - | - W/"01bb215c1210145609bc47bbf80a94e3" |
| + | - W/"527dd522f70733b27c49c87521c6b500" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 014054ff-4cb0-4204-870d-2ec1e1dde846 |
| + | - ffe6e4bf-8b67-4e75-8592-8dceec10f35c |
| X-Runtime: | |
| - | - '0.064616' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.175165' |
| + | Content-Length: |
| + | - '404' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed2410000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:16Z","_slug":"brownes-market-1","content_type_slug":"events","_label":"Browne''s |
| + | string: '{"_id":"55ba45076469646eb800004e","created_at":"2015-07-30T15:38:47Z","updated_at":"2015-07-30T15:38:47Z","_slug":"brownes-market-1","content_type_slug":"events","_label":"Browne''s |
| Market","_position":9,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Browne''s | |
| Market","date":"2011-06-06","city":"Kansas City","state":"Missouri","notes":null,"tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:16 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/ballydoyles-1.json | |
| @@ | @@ -4953,7 +4845,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -4969,25 +4861,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '391' |
| Etag: | |
| - | - W/"5213d35c685158b3c15eb3595c922e52" |
| + | - W/"9474cb62c91c60c9edba4f4d4e7cf467" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f755c656-cb4a-4ea6-aa9d-37228c03298e |
| + | - ccdf5c80-da18-4904-b180-2331f46af877 |
| X-Runtime: | |
| - | - '0.061681' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.067075' |
| + | Content-Length: |
| + | - '391' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed2430000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:16Z","_slug":"ballydoyles-1","content_type_slug":"events","_label":"Ballydoyle''s","_position":10,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Ballydoyle''s","date":"2011-06-05","city":"Aurora","state":"Illinois","notes":null,"tags":null,"price":0.0}' |
| + | string: '{"_id":"55ba45086469646eb8000051","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:48Z","_slug":"ballydoyles-1","content_type_slug":"events","_label":"Ballydoyle''s","_position":10,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"Ballydoyle''s","date":"2011-06-05","city":"Aurora","state":"Illinois","notes":null,"tags":null,"price":0.0}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:16 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/the-belmont-1.json | |
| @@ | @@ -5002,7 +4890,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -5018,27 +4906,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '391' |
| Etag: | |
| - | - W/"dc94633c37100b049f5baa830496cd97" |
| + | - W/"2593ad1e804c880f245d330a46f89b88" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ef133b5d-a4b4-4c1a-8940-721b068a284f |
| + | - ace08022-d51a-465f-9f3f-f415429662c8 |
| X-Runtime: | |
| - | - '0.062369' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.066759' |
| + | Content-Length: |
| + | - '391' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed2450000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:16Z","_slug":"the-belmont-1","content_type_slug":"events","_label":"The |
| + | string: '{"_id":"55ba45086469646eb8000054","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:48Z","_slug":"the-belmont-1","content_type_slug":"events","_label":"The |
| Belmont","_position":11,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"place":"The | |
| Belmont","date":"2011-06-04","city":"Hamtramk","state":"Michigan","notes":null,"tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:16 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-1.json | |
| @@ | @@ -5408,7 +5292,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -5426,31 +5310,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '783' |
| Etag: | |
| - | - W/"8a88d12669254a4e69b858600aa3fc2d" |
| + | - W/"3d83bedd36bbb354f2215d7034e43b4e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 74a8cdf1-b287-4d93-bfe0-3f1f2252de59 |
| + | - ed1a8bf6-3475-4824-9304-f0146fd73af3 |
| X-Runtime: | |
| - | - '0.108537' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.130177' |
| + | Content-Length: |
| + | - '783' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed2470000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:16Z","_slug":"song-number-1","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb8000057","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:48Z","_slug":"song-number-1","content_type_slug":"songs","_label":"Song |
| #1","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #1","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae86469646ed2470000/files/cover.jpg","short_description":"Lorem |
| + | #1","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb8000057/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:16 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-2.json | |
| @@ | @@ -5820,7 +5700,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -5838,31 +5718,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '783' |
| Etag: | |
| - | - W/"e51868dc786c17d29fcd218ba397f472" |
| + | - W/"1245de75a38468adbeba054bc1863240" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9047be29-6618-49f3-91c4-07c92bedf96a |
| + | - e4d0b90d-5de7-4683-97b0-10d8cc783cbe |
| X-Runtime: | |
| - | - '0.090810' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.103474' |
| + | Content-Length: |
| + | - '783' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed2490000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:16Z","_slug":"song-number-2","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb800005a","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:48Z","_slug":"song-number-2","content_type_slug":"songs","_label":"Song |
| #2","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #2","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae86469646ed2490000/files/cover.jpg","short_description":"Lorem |
| + | #2","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb800005a/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:16 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-3.json | |
| @@ | @@ -6232,7 +6108,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -6250,31 +6126,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '783' |
| Etag: | |
| - | - W/"2234e0172084e5b81aa2d35f60370271" |
| + | - W/"382459cbe5c4df8f51b40ffd1ef64af6" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5ea17003-cb08-493a-b150-38954b79f653 |
| + | - 7cfc4429-9924-4881-b1dc-0a45d67b5791 |
| X-Runtime: | |
| - | - '0.091855' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.100662' |
| + | Content-Length: |
| + | - '783' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed24b0000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:16Z","_slug":"song-number-3","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb800005d","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:48Z","_slug":"song-number-3","content_type_slug":"songs","_label":"Song |
| #3","_position":2,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #3","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae86469646ed24b0000/files/cover.jpg","short_description":"Lorem |
| + | #3","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb800005d/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:16 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-4.json | |
| @@ | @@ -6644,7 +6516,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -6662,31 +6534,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '783' |
| Etag: | |
| - | - W/"5ff1a22f2383807fb89ca00cc150b47c" |
| + | - W/"55b7e2b3755e5b57b090fc6a38747150" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e2687585-d37a-40c9-a34b-6459a7246566 |
| + | - cca178e8-65a9-47fd-b268-5de374a4ee3b |
| X-Runtime: | |
| - | - '0.072969' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.092293' |
| + | Content-Length: |
| + | - '783' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed24d0000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"song-number-4","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb8000060","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:48Z","_slug":"song-number-4","content_type_slug":"songs","_label":"Song |
| #4","_position":3,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #4","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae96469646ed24d0000/files/cover.jpg","short_description":"Lorem |
| + | #4","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb8000060/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-5.json | |
| @@ | @@ -7056,7 +6924,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -7074,31 +6942,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '783' |
| Etag: | |
| - | - W/"2940d1d151673c4a2e2eaa0f205e4a31" |
| + | - W/"788f07451558b525a583feb88143b236" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 285aa2b3-2f2c-463b-a271-4ef7febc5e44 |
| + | - cda6dfba-5aec-42c7-95b4-4fa23ef9b62a |
| X-Runtime: | |
| - | - '0.075066' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.102372' |
| + | Content-Length: |
| + | - '783' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed24f0000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"song-number-5","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb8000063","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:48Z","_slug":"song-number-5","content_type_slug":"songs","_label":"Song |
| #5","_position":4,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #5","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae96469646ed24f0000/files/cover.jpg","short_description":"Lorem |
| + | #5","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb8000063/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-6.json | |
| @@ | @@ -7468,7 +7332,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -7486,31 +7350,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '783' |
| Etag: | |
| - | - W/"859f68f7590e21af4bba4894cdce8744" |
| + | - W/"a4281022338ba3a756cd4ce1b64988d6" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 0178cea6-2592-44b5-a80e-632f701ac781 |
| + | - 8d1c5aa8-dd09-4980-989f-74d3a71ee9c0 |
| X-Runtime: | |
| - | - '0.098957' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.091140' |
| + | Content-Length: |
| + | - '783' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed2510000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"song-number-6","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb8000066","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:48Z","_slug":"song-number-6","content_type_slug":"songs","_label":"Song |
| #6","_position":5,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #6","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae96469646ed2510000/files/cover.jpg","short_description":"Lorem |
| + | #6","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb8000066/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-7.json | |
| @@ | @@ -7880,7 +7740,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -7898,31 +7758,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '783' |
| Etag: | |
| - | - W/"08bcdae72d032b156c4ed4e0a6af16fa" |
| + | - W/"4b6186fa1de66d0a226bab9614a457fa" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a5ee459e-5d5f-4b21-80c2-20caee618d37 |
| + | - 2a2a019b-44e5-4a9a-ba08-fda90eda3557 |
| X-Runtime: | |
| - | - '0.086180' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.100306' |
| + | Content-Length: |
| + | - '783' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed2530000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"song-number-7","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb8000069","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:48Z","_slug":"song-number-7","content_type_slug":"songs","_label":"Song |
| #7","_position":6,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #7","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae96469646ed2530000/files/cover.jpg","short_description":"Lorem |
| + | #7","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb8000069/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-8.json | |
| @@ | @@ -8292,7 +8148,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8310,31 +8166,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '783' |
| Etag: | |
| - | - W/"339980ba7e7e10df1e8f3fbc99db6925" |
| + | - W/"41d1e34d3b0278d70229f72f08b1c57f" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 303d312a-5529-4beb-8d5d-5f89595f9b98 |
| + | - 73d84c3a-de07-4f5f-bdd1-3a37d077ec9c |
| X-Runtime: | |
| - | - '0.079924' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.147685' |
| + | Content-Length: |
| + | - '783' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed2550000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"song-number-8","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45096469646eb800006c","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:49Z","_slug":"song-number-8","content_type_slug":"songs","_label":"Song |
| #8","_position":7,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #8","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae96469646ed2550000/files/cover.jpg","short_description":"Lorem |
| + | #8","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45096469646eb800006c/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-1.json | |
| @@ | @@ -8349,7 +8201,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8365,27 +8217,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '362' |
| Etag: | |
| - | - W/"b53066fe71728b9a2ebe62b0fff4f2a0" |
| + | - W/"8f1a55d0ac362af15abb848535306c30" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 591c8563-c701-4e4e-9697-845d627b6b27 |
| + | - a8513201-3190-4efc-8506-75a2b3a43d09 |
| X-Runtime: | |
| - | - '0.052827' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.069195' |
| + | Content-Length: |
| + | - '362' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed2570000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"update-number-1","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"55ba45096469646eb800006f","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:49Z","_slug":"update-number-1","content_type_slug":"updates","_label":"Update |
| #1","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #1","text":"added some free stuff","category":null,"date":"2009-05-12"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-2.json | |
| @@ | @@ -8400,7 +8248,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8416,27 +8264,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '357' |
| Etag: | |
| - | - W/"fdf431c3cc9bb4ecdeed23a6462294c7" |
| + | - W/"4ca767f43d16d736e0b47c2e601283e5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 0dce16f7-0f0e-4a9a-a536-3196dd79892d |
| + | - 43c5c612-2647-4794-b268-5882999aa4cb |
| X-Runtime: | |
| - | - '0.052516' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.085546' |
| + | Content-Length: |
| + | - '357' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed2590000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"update-number-2","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"55ba45096469646eb8000072","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:49Z","_slug":"update-number-2","content_type_slug":"updates","_label":"Update |
| #2","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #2","text":"added a chatroom","category":null,"date":"2009-05-23"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-3.json | |
| @@ | @@ -8451,7 +8295,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8467,27 +8311,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '354' |
| Etag: | |
| - | - W/"54c56ccd22954bf7419735f05fffc5f7" |
| + | - W/"37e040ab7883a059afcd3218731580dc" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - bce21e58-1d3d-425b-88d0-468b0cf05062 |
| + | - 6a99fcb9-7c40-457b-8072-c5fb88cfad4d |
| X-Runtime: | |
| - | - '0.052981' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.060551' |
| + | Content-Length: |
| + | - '354' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed25b0000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"update-number-3","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"55ba45096469646eb8000075","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:49Z","_slug":"update-number-3","content_type_slug":"updates","_label":"Update |
| #3","_position":2,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #3","text":"site redesign","category":null,"date":"2009-06-29"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-4.json | |
| @@ | @@ -8502,7 +8342,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8518,27 +8358,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '361' |
| Etag: | |
| - | - W/"6d8043ab409b38677865aed394710fb1" |
| + | - W/"91ed17ca806db3781de8de9c1bac3945" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 91c21935-fadd-446c-8e57-75eff3bf03bf |
| + | - 927d10b4-b528-439a-9fd4-f3eb2dc1c024 |
| X-Runtime: | |
| - | - '0.059545' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.076763' |
| + | Content-Length: |
| + | - '361' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed25d0000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"update-number-4","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"55ba45096469646eb8000078","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:49Z","_slug":"update-number-4","content_type_slug":"updates","_label":"Update |
| #4","_position":3,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #4","text":"NEW ALBUM FINISHED!!","category":null,"date":"2009-10-09"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-5.json | |
| @@ | @@ -8553,7 +8389,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8569,27 +8405,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '364' |
| Etag: | |
| - | - W/"19588ed13625e4f49d361dfacc1b4bcb" |
| + | - W/"f0beb3789eacab7eb9e141e632061dab" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 12f20b7f-c936-46d2-8d09-39e1416d1675 |
| + | - 47ad42d4-d64e-4fd6-86c6-7d311935defb |
| X-Runtime: | |
| - | - '0.050831' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.071550' |
| + | Content-Length: |
| + | - '364' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed25f0000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"update-number-5","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"55ba45096469646eb800007b","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:49Z","_slug":"update-number-5","content_type_slug":"updates","_label":"Update |
| #5","_position":4,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #5","text":"brian posted a new post","category":null,"date":"2009-11-02"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-6.json | |
| @@ | @@ -8604,7 +8436,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8620,30 +8452,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '363' |
| Etag: | |
| - | - W/"e322a195cf53660ec4e24b441e6e4f67" |
| + | - W/"625fcf49bf8a56508d86b6fafb399ba4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8be3ab28-66a3-4832-918f-d41150762abe |
| + | - 8a50ef40-1979-4cb3-b204-82864bbaf9c4 |
| X-Runtime: | |
| - | - '0.050175' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.065890' |
| + | Content-Length: |
| + | - '363' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed2610000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:17Z","_slug":"update-number-6","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"55ba45096469646eb800007e","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:49Z","_slug":"update-number-6","content_type_slug":"updates","_label":"Update |
| #6","_position":5,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Update | |
| #6","text":"john posted a new post","category":null,"date":"2009-11-16"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:17 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:49 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5563aae86469646ed2470000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/55ba45086469646eb8000057.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5Bband%5D=pearl-jam | |
| @@ | @@ -8655,7 +8483,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8671,34 +8499,30 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '790' |
| Etag: | |
| - | - W/"eaa5d6c3ea7cedf89d735f3ebf0a8993" |
| + | - W/"b1967d0bc68a54210c459137f2bfd2dd" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f7795c5e-7828-457a-93c9-a862ae1a5934 |
| + | - 759ff592-645a-40fe-93db-755d6a532702 |
| X-Runtime: | |
| - | - '0.064069' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.097083' |
| + | Content-Length: |
| + | - '790' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed2470000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:18Z","_slug":"song-number-1","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb8000057","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:49Z","_slug":"song-number-1","content_type_slug":"songs","_label":"Song |
| #1","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #1","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae86469646ed2470000/files/cover.jpg","short_description":"Lorem |
| + | #1","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb8000057/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":"pearl-jam"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:49 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5563aae86469646ed2490000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/55ba45086469646eb800005a.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5Bband%5D=pearl-jam | |
| @@ | @@ -8710,7 +8534,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8726,34 +8550,30 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '790' |
| Etag: | |
| - | - W/"c1bf98f400ceb12dbc562761f55ea925" |
| + | - W/"b5768236b58dda9eb770fa265b66661b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 218ca62e-6303-40e3-949a-4dbae9401179 |
| + | - 79152f3c-b9b9-4cf5-bf9c-a19b0814a582 |
| X-Runtime: | |
| - | - '0.063324' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.075773' |
| + | Content-Length: |
| + | - '790' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed2490000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:18Z","_slug":"song-number-2","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb800005a","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:50Z","_slug":"song-number-2","content_type_slug":"songs","_label":"Song |
| #2","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #2","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae86469646ed2490000/files/cover.jpg","short_description":"Lorem |
| + | #2","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb800005a/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":"pearl-jam"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5563aae86469646ed24b0000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/55ba45086469646eb800005d.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5Bband%5D=pearl-jam | |
| @@ | @@ -8765,7 +8585,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8781,34 +8601,30 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '790' |
| Etag: | |
| - | - W/"b13027ff70776d0092bfdb7d49789612" |
| + | - W/"479ef01fe8a5514982935bf51b8ed1d2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - d4361c29-7fe4-4604-831a-b9f909974abd |
| + | - d6cecaf5-0fda-4370-bda3-31ad8f24ce5d |
| X-Runtime: | |
| - | - '0.067485' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.087292' |
| + | Content-Length: |
| + | - '790' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae86469646ed24b0000","created_at":"2015-05-25T23:06:16Z","updated_at":"2015-05-25T23:06:18Z","_slug":"song-number-3","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb800005d","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:50Z","_slug":"song-number-3","content_type_slug":"songs","_label":"Song |
| #3","_position":2,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #3","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae86469646ed24b0000/files/cover.jpg","short_description":"Lorem |
| + | #3","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb800005d/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":"pearl-jam"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5563aae96469646ed24d0000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/55ba45086469646eb8000060.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5Bband%5D=pearl-jam | |
| @@ | @@ -8820,7 +8636,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8836,34 +8652,30 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '790' |
| Etag: | |
| - | - W/"b38ed808d9f204c7a2ddbc9b5ad18d5e" |
| + | - W/"e8f2945367b81e0f0926f53223c0f952" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7a7cf434-a704-40bb-b1a9-9f177213dfd4 |
| + | - cd0a6618-daeb-445a-8123-167cb08464dd |
| X-Runtime: | |
| - | - '0.062250' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.080449' |
| + | Content-Length: |
| + | - '790' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed24d0000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:18Z","_slug":"song-number-4","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb8000060","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:50Z","_slug":"song-number-4","content_type_slug":"songs","_label":"Song |
| #4","_position":3,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #4","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae96469646ed24d0000/files/cover.jpg","short_description":"Lorem |
| + | #4","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb8000060/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":"pearl-jam"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5563aae96469646ed24f0000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/55ba45086469646eb8000063.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5Bband%5D=the-who | |
| @@ | @@ -8875,7 +8687,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8891,34 +8703,30 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '788' |
| Etag: | |
| - | - W/"5f99ffa76f9d33a177760604d1708702" |
| + | - W/"d0b78c194cf81bea25c5a8cd062c1970" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5c17d322-6ac6-47da-8df9-5d005f649cc8 |
| + | - ac98d89f-b0ac-411c-aa61-b6c182cd66f2 |
| X-Runtime: | |
| - | - '0.069403' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.073747' |
| + | Content-Length: |
| + | - '788' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed24f0000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:18Z","_slug":"song-number-5","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb8000063","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:50Z","_slug":"song-number-5","content_type_slug":"songs","_label":"Song |
| #5","_position":4,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #5","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae96469646ed24f0000/files/cover.jpg","short_description":"Lorem |
| + | #5","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb8000063/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":"the-who"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/5563aae96469646ed2510000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/55ba45086469646eb8000066.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5Bband%5D=the-who | |
| @@ | @@ -8930,7 +8738,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| @@ | @@ -8946,34 +8754,30 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '788' |
| Etag: | |
| - | - W/"df7146b1918f22e99e2bf406cf090721" |
| + | - W/"a472f15f4e9542e198a6750562f98aa4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5fcb6074-9904-4fce-ad99-57b5c7ca5b73 |
| + | - f7e55d75-a138-4e6f-bd6f-4c78a07affaf |
| X-Runtime: | |
| - | - '0.067614' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.093247' |
| + | Content-Length: |
| + | - '788' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed2510000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:18Z","_slug":"song-number-6","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"55ba45086469646eb8000066","created_at":"2015-07-30T15:38:48Z","updated_at":"2015-07-30T15:38:50Z","_slug":"song-number-6","content_type_slug":"songs","_label":"Song |
| #6","_position":5,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Song | |
| - | #6","cover":"/sites/5563aae56469646ed2000000/content_entry5563aae66469646ed2180000/5563aae96469646ed2510000/files/cover.jpg","short_description":"Lorem |
| + | #6","cover":"/sites/55ba45046469646eb8000000/content_entry55ba45056469646eb8000019/55ba45086469646eb8000066/files/cover.jpg","short_description":"Lorem |
| ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vitae tincidunt | |
| urna. Nunc felis purus, ultricies et venenatis bibendum, fringilla eu lectus. | |
| Sed cursus, sem at blandit mattis, libero quam egestas tortor, eget cursus | |
| dolor tellus id nunc.","audio_url":"http://blip.tv/file/get/NicolasRaynier-Milk617.flv","duration":"6:28","band":"the-who"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5563aae96469646ed2570000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/55ba45096469646eb800006f.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5B_slug%5D=mise-a-jour-number-1&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%231 | |
| @@ | @@ -8985,7 +8789,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -9001,30 +8805,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '365' |
| Etag: | |
| - | - W/"0d8a889ed347b8aa7a9f08ae2f48aa13" |
| + | - W/"5134363e0ef790c4a53f00c47445d745" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - def5d47e-63c9-48a8-aaf1-a7df0e71cb78 |
| + | - d3898c54-133f-49f9-b152-767e249646a4 |
| X-Runtime: | |
| - | - '0.053756' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.075189' |
| + | Content-Length: |
| + | - '365' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed2570000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:18Z","_slug":"mise-a-jour-number-1","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"55ba45096469646eb800006f","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:50Z","_slug":"mise-a-jour-number-1","content_type_slug":"updates","_label":"Mise |
| a jour #1","_position":0,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #1","text":"phrase FR","category":null,"date":"2009-05-12"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5563aae96469646ed2590000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/55ba45096469646eb8000072.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5B_slug%5D=mise-a-jour-number-2&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%232 | |
| @@ | @@ -9036,7 +8836,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -9052,30 +8852,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '365' |
| Etag: | |
| - | - W/"48704d92ec599406458a6789c10609cd" |
| + | - W/"82cdcf8173fc247f6b238de71a527d50" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 00b43a8b-320e-4f99-b809-19da02c5bbe8 |
| + | - d046cf54-2937-43f5-8f37-34d8501584a1 |
| X-Runtime: | |
| - | - '0.069796' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.064133' |
| + | Content-Length: |
| + | - '365' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed2590000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:18Z","_slug":"mise-a-jour-number-2","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"55ba45096469646eb8000072","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:50Z","_slug":"mise-a-jour-number-2","content_type_slug":"updates","_label":"Mise |
| a jour #2","_position":1,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #2","text":"phrase FR","category":null,"date":"2009-05-23"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5563aae96469646ed25b0000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/55ba45096469646eb8000075.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5B_slug%5D=mise-a-jour-number-3&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%233 | |
| @@ | @@ -9087,7 +8883,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -9103,30 +8899,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '365' |
| Etag: | |
| - | - W/"8107f6a2f788dfe2dca3390990edbf27" |
| + | - W/"b5883c0ba26cc8080766982067cfbaff" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 0e2230c4-961d-4ec5-92da-e632141dec21 |
| + | - d440a356-f285-454f-9248-f6a0acc83f98 |
| X-Runtime: | |
| - | - '0.071858' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.063323' |
| + | Content-Length: |
| + | - '365' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed25b0000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:18Z","_slug":"mise-a-jour-number-3","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"55ba45096469646eb8000075","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:50Z","_slug":"mise-a-jour-number-3","content_type_slug":"updates","_label":"Mise |
| a jour #3","_position":2,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #3","text":"phrase FR","category":null,"date":"2009-06-29"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5563aae96469646ed25d0000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/55ba45096469646eb8000078.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5B_slug%5D=mise-a-jour-number-4&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%234 | |
| @@ | @@ -9138,7 +8930,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -9154,30 +8946,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '365' |
| Etag: | |
| - | - W/"44e3c8a5f13ebbbfa94134b3fbcc61f2" |
| + | - W/"6ec6495e4d03094b7c7e27f8f8062057" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 00ff768b-9dcb-42f4-8d73-f2a5a73b29e3 |
| + | - 41133516-be4f-422e-a3ff-3d7e02d09268 |
| X-Runtime: | |
| - | - '0.066780' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.063547' |
| + | Content-Length: |
| + | - '365' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed25d0000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:18Z","_slug":"mise-a-jour-number-4","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"55ba45096469646eb8000078","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:50Z","_slug":"mise-a-jour-number-4","content_type_slug":"updates","_label":"Mise |
| a jour #4","_position":3,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #4","text":"phrase FR","category":null,"date":"2009-10-09"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5563aae96469646ed25f0000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/55ba45096469646eb800007b.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5B_slug%5D=mise-a-jour-number-5&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%235 | |
| @@ | @@ -9189,7 +8977,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -9205,30 +8993,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '365' |
| Etag: | |
| - | - W/"f1417244db034d442ff5f2839cb5e1b6" |
| + | - W/"83d2dded8e130b87388ce144017f4282" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7bfc05b2-2514-4c5c-ab7e-ef8de1982b3f |
| + | - 87f43c55-4b6b-4cf1-aab8-4d1213cce472 |
| X-Runtime: | |
| - | - '0.070105' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.060355' |
| + | Content-Length: |
| + | - '365' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed25f0000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:18Z","_slug":"mise-a-jour-number-5","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"55ba45096469646eb800007b","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:50Z","_slug":"mise-a-jour-number-5","content_type_slug":"updates","_label":"Mise |
| a jour #5","_position":4,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #5","text":"phrase FR","category":null,"date":"2009-11-02"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:18 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/5563aae96469646ed2610000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/55ba45096469646eb800007e.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&content_entry%5B_slug%5D=mise-a-jour-number-6&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%236 | |
| @@ | @@ -9240,7 +9024,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -9256,33 +9040,29 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '365' |
| Etag: | |
| - | - W/"be8c0b0278773452e595ee993996e8e5" |
| + | - W/"5c0068f351a089cda4171efe022fb29e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ef445a25-30c1-4340-b60b-f0080a9010cb |
| + | - 58774b46-c852-44ba-8a51-9fdb126ada71 |
| X-Runtime: | |
| - | - '0.067493' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.064617' |
| + | Content-Length: |
| + | - '365' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae96469646ed2610000","created_at":"2015-05-25T23:06:17Z","updated_at":"2015-05-25T23:06:19Z","_slug":"mise-a-jour-number-6","content_type_slug":"updates","_label":"Mise |
| + | string: '{"_id":"55ba45096469646eb800007e","created_at":"2015-07-30T15:38:49Z","updated_at":"2015-07-30T15:38:51Z","_slug":"mise-a-jour-number-6","content_type_slug":"updates","_label":"Mise |
| a jour #6","_position":5,"_visible":true,"seo_title":null,"meta_keywords":null,"meta_description":null,"title":"Mise | |
| a jour #6","text":"phrase FR","category":null,"date":"2009-11-16"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/fullpaths.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/fullpaths.json?auth_token=6UA3Po7vVz4Ry34swEqa |
| body: | |
| - | encoding: UTF-8 |
| - | string: auth_token=6UA3Po7vVz4Ry34swEqa |
| + | encoding: US-ASCII |
| + | string: '' |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -9291,11 +9071,9 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - en | |
| - | Content-Type: |
| - | - application/x-www-form-urlencoded |
| Accept-Encoding: | |
| - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 | |
| User-Agent: | |
| @@ | @@ -9307,28 +9085,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '107' |
| Etag: | |
| - | - W/"e20ce33596716a17265f041727bd6502" |
| + | - W/"0203671f927259392dcbf018c076f226" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 793a384a-7186-4938-8722-75a255f836fe |
| + | - 461e3ca0-679e-4bbe-bcdc-7e71b2ecb89e |
| X-Runtime: | |
| - | - '0.030128' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.025674' |
| + | Content-Length: |
| + | - '107' |
| body: | |
| encoding: UTF-8 | |
| - | string: '[{"_id":"5563aae66469646ed2020000","fullpath":"index"},{"_id":"5563aae66469646ed2030000","fullpath":"404"}]' |
| + | string: '[{"_id":"55ba45046469646eb8000002","fullpath":"index"},{"_id":"55ba45046469646eb8000003","fullpath":"404"}]' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5563aae66469646ed2030000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/55ba45046469646eb8000003.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=404&page%5Btemplate%5D=%7B%25+extends+index+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Cp+class%3D%27error%27%3Epage+not+found%3C%2Fp%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=Page+not+found | |
| @@ | @@ -9340,7 +9114,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - en | |
| Content-Type: | |
| @@ | @@ -9356,34 +9130,30 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '753' |
| Etag: | |
| - | - W/"38834259babddb369422c21ce9590d1d" |
| + | - W/"9c902cecbd2a3c8b7a8675ef485ffd7a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8c6653c9-b3e3-4189-ade4-aa0e068ecd1d |
| + | - aa53ae87-71dd-4010-9b0c-ee35b8496d7a |
| X-Runtime: | |
| - | - '0.037803' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.043338' |
| + | Content-Length: |
| + | - '751' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae66469646ed2030000","created_at":"2015-05-25T23:06:14Z","updated_at":"2015-05-25T23:06:19Z","title":"Page |
| - | not found","parent_id":null,"position":99,"handle":null,"depth":0,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"slug":"404","fullpath":"404","localized_fullpaths":{"en":"404","fr":"fr/404","nb":"nb/404"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba45046469646eb8000003","created_at":"2015-07-30T15:38:44Z","updated_at":"2015-07-30T15:38:51Z","title":"Page |
| + | not found","parent_id":null,"position":99,"handle":null,"depth":0,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"slug":"404","fullpath":"404","localized_fullpaths":{"en":"404","fr":"fr/404","nb":"nb/404"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends index %}\n{% block content %}\n\u003cp class=''error''\u003epage not | |
| found\u003c/p\u003e\n{% endblock %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5563aae66469646ed2020000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/55ba45046469646eb8000002.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Bhandle%5D=home&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=index&page%5Btemplate%5D=%3C%21DOCTYPE+html%3E%0A%3Chtml+lang%3D%27en%27%3E%0A++%3Chead%3E%0A++++%3Cmeta+charset%3D%27utf-8%27%3E%0A++++%3Ctitle%3E%7B%7B+site.name+%7D%7D+%7C+%7B%7B+page.title+%7D%7D%3C%2Ftitle%3E%0A++++%3Cmeta+content%3D%27%7B%7B+site.meta_description+%7D%7D%27+name%3D%27description%27%3E%0A++++%3Cmeta+content%3D%27%7B%7B+site.meta_keywords+%7D%7D%27+name%3D%27keywords%27%3E%0A++++%7B%7B+%27%2Ffoo%2Fbar%27+%7C+auto_discovery_link_tag%3A+%27rel%3Aalternate%27%2C+%27type%3Aapplication%2Fatom%2Bxml%27%2C+%27title%3AA+title%27+%7D%7D%0A++++%3C%21--+Le+HTML5+shim%2C+for+IE6-8+support+of+HTML+elements+--%3E%0A++++%3C%21--%5Bif+lt+IE+9%5D%3E%0A++++++%3Cscript+src%3D%22http%3A%2F%2Fhtml5shim.googlecode.com%2Fsvn%2Ftrunk%2Fhtml5.js%22%3E%3C%2Fscript%3E%0A++++%3C%21%5Bendif%5D--%3E%0A++++%3Clink+href%3D%22%2Ffonts%2Fchunkfive.css%22+media%3D%22screen%22+rel%3D%22stylesheet%22+type%3D%22text%2Fcss%22+%2F%3E%0A++++%3C%21--+Le+styles+--%3E%0A++++%7B%7B+%27http%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DOpen%2BSans%3A400%2C700%27+%7C+stylesheet_tag+%7D%7D%0A++++%7B%7B+%27reboot%27+%7C+stylesheet_tag+%7D%7D%0A++++%7B%7B+%27application%27+%7C+stylesheet_tag+%7D%7D%0A++++%3Cscript+src%3D%22%7B%7B+%27application.js%27+%7C+javascript_url+%7D%7D%22+type%3D%27text%2Fjavascript%27%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%27http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.7.2%2Fjquery.min.js%27+type%3D%27text%2Fjavascript%27%3E%3C%2Fscript%3E%0A++++%7B%25+inline_editor+%25%7D%0A++%3C%2Fhead%3E%0A++%3Cbody%3E%0A++++%3Cdiv+class%3D%27container%27%3E%0A++++++%3Cdiv+id%3D%27menu%27%3E%0A++++++++%3Cul+id%3D%27nav%27%3E%0A++++++++++%3Cli+class%3D%22%7B%25+if+page.fullpath+%3D%3D+%27index%27+%25%7Don%7B%25+endif+%25%7D+link%22+id%3D%27home%27%3E%0A++++++++++++%3Ca+href%3D%27%7B%25+path_to+home+%25%7D%27%3EHome%3C%2Fa%3E%0A++++++++++%3C%2Fli%3E%0A++++++++++%7B%25+nav+site%2C+no_wrapper%3A+true%2C+exclude%3A+%27events%27+%25%7D%0A++++++++%3C%2Ful%3E%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27banner%27%3E%0A++++++++%7B%25+block+banner+%25%7D%0A++++++++%3Cdiv+class%3D%27photo%27%3E%0A++++++++++%3Cimg+src%3D%22%7B%25+editable_file+%27Page+image%27%2C+hint%3A+%27Top+banner+image+in+each+page+%28602px+by+397px%29%27+%25%7D%2Fsites%2F5563aae56469646ed2000000%2Fassets%2F5563aae76469646ed22d0000%2Fphoto.jpg%7B%25+endeditable_file+%25%7D%22%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%3Cdiv+class%3D%27text%27%3E%0A++++++++++%7B%25+editable_long_text+%27pitch%27+%25%7D%0A++++++++++%3Ch2%3EAbout+Us%3C%2Fh2%3E%0A++++++++++%3Cp%3E%0A++++++++++++Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit.+Suspendisse+vitae+egestas+neque.+Proin+ac+ante+ante%2C+sit+amet+egestas+purus.+Fusce+tincidunt+mattis+sapien+eget+sodales.+Cras+aliquet+odio+eu+nisl+dapibus+placerat.%0A++++++++++++%3Cbr%3E%0A++++++++++++%3Ca+href%3D%27%2Fabout-us%27%3Eread+more...%3C%2Fa%3E%0A++++++++++%3C%2Fp%3E%0A++++++++++%7B%25+endeditable_long_text+%25%7D%0A++++++++%3C%2Fdiv%3E%0A++++++++%7B%25+endblock+%25%7D%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27content%27%3E%0A++++++++%7B%25+block+content+%25%7D%0A++++++++%3Cdiv+class%3D%27unit+size1of2%27+id%3D%27events%27%3E%0A++++++++++%3Ch2%3EUpcoming+events%3C%2Fh2%3E%0A++++++++++%3Cul+class%3D%27list%27%3E%0A++++++++++++%7B%25+for+event+in+contents.events+limit%3A+6+%25%7D%0A++++++++++++%3Cli%3E%0A++++++++++++++%3Cem%3E%7B%7B+event.date+%7C+localized_date%3A+%27%25a%2C+%25B+%25d%2C+%25Y%27+%7D%7D%3C%2Fem%3E%0A++++++++++++++%26nbsp%3B-%26nbsp%3B%0A++++++++++++++%7B%7B+event.place+%7D%7D%2C+%7B%7B+event.city+%7D%7D%2C+%7B%7B+event.state+%7D%7D%0A++++++++++++%3C%2Fli%3E%0A++++++++++++%7B%25+endfor+%25%7D%0A++++++++++%3C%2Ful%3E%0A++++++++++%3Cp+class%3D%27more%27%3E%0A++++++++++++%3Ca+href%3D%27%2Fevents%27%3ESee+more+events+...%3C%2Fa%3E%0A++++++++++%3C%2Fp%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%3Cdiv+class%3D%27unit+size1of2%27+id%3D%27updates%27%3E%0A++++++++++%3Ch2%3ESite+updates%3C%2Fh2%3E%0A++++++++++%3Cul+class%3D%27list%27%3E%0A++++++++++++%7B%25+for+update+in+contents.updates+%25%7D%0A++++++++++++%3Cli%3E%0A++++++++++++++%3Cem%3E%7B%7B+update.date+%7C+localized_date%3A+%27%25B+%25d%27+%7D%7D%3C%2Fem%3E%0A++++++++++++++%26nbsp%3B-%26nbsp%3B%0A++++++++++++++%7B%7B+update.title+%7D%7D%0A++++++++++++%3C%2Fli%3E%0A++++++++++++%7B%25+endfor+%25%7D%0A++++++++++%3C%2Ful%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%7B%25+endblock+%25%7D%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27footer%27%3E%0A++++++++%3Cdiv+id%3D%27is_templatized%27+templatized%3D%27%7B%7B+page.templatized%3F+%7D%7D%27%3E%3C%2Fdiv%3E%0A++++++++%3Cdiv+id%3D%27scoped_translation%27+scoped_translation%3D%22%7B%7B+%27fr%27+%7C+translate%3A+%27en%27%2C+%27locomotive.locales%27+%7D%7D%22%3E%3C%2Fdiv%3E%0A++++++++%7B%25+include+footer+%25%7D%0A++++++++%7B%25+include+a_complicated-one+%25%7D%0A++++++%3C%2Fdiv%3E%0A++++%3C%2Fdiv%3E%0A++++%7B%25+google_analytics+%27UA-20661758-1%27+%25%7D%0A++%3C%2Fbody%3E%0A%3C%2Fhtml%3E%0A&page%5Btitle%5D=Home+page |
| + | string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Bhandle%5D=home&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=index&page%5Btemplate%5D=%3C%21DOCTYPE+html%3E%0A%3Chtml+lang%3D%27en%27%3E%0A++%3Chead%3E%0A++++%3Cmeta+charset%3D%27utf-8%27%3E%0A++++%3Ctitle%3E%7B%7B+site.name+%7D%7D+%7C+%7B%7B+page.title+%7D%7D%3C%2Ftitle%3E%0A++++%3Cmeta+content%3D%27%7B%7B+site.meta_description+%7D%7D%27+name%3D%27description%27%3E%0A++++%3Cmeta+content%3D%27%7B%7B+site.meta_keywords+%7D%7D%27+name%3D%27keywords%27%3E%0A++++%7B%7B+%27%2Ffoo%2Fbar%27+%7C+auto_discovery_link_tag%3A+%27rel%3Aalternate%27%2C+%27type%3Aapplication%2Fatom%2Bxml%27%2C+%27title%3AA+title%27+%7D%7D%0A++++%3C%21--+Le+HTML5+shim%2C+for+IE6-8+support+of+HTML+elements+--%3E%0A++++%3C%21--%5Bif+lt+IE+9%5D%3E%0A++++++%3Cscript+src%3D%22http%3A%2F%2Fhtml5shim.googlecode.com%2Fsvn%2Ftrunk%2Fhtml5.js%22%3E%3C%2Fscript%3E%0A++++%3C%21%5Bendif%5D--%3E%0A++++%3Clink+href%3D%22%2Ffonts%2Fchunkfive.css%22+media%3D%22screen%22+rel%3D%22stylesheet%22+type%3D%22text%2Fcss%22+%2F%3E%0A++++%3C%21--+Le+styles+--%3E%0A++++%7B%7B+%27http%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DOpen%2BSans%3A400%2C700%27+%7C+stylesheet_tag+%7D%7D%0A++++%7B%7B+%27reboot%27+%7C+stylesheet_tag+%7D%7D%0A++++%7B%7B+%27application%27+%7C+stylesheet_tag+%7D%7D%0A++++%3Cscript+src%3D%22%7B%7B+%27application.js%27+%7C+javascript_url+%7D%7D%22+type%3D%27text%2Fjavascript%27%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%27http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.7.2%2Fjquery.min.js%27+type%3D%27text%2Fjavascript%27%3E%3C%2Fscript%3E%0A++++%7B%25+inline_editor+%25%7D%0A++%3C%2Fhead%3E%0A++%3Cbody%3E%0A++++%3Cdiv+class%3D%27container%27%3E%0A++++++%3Cdiv+id%3D%27menu%27%3E%0A++++++++%3Cul+id%3D%27nav%27%3E%0A++++++++++%3Cli+class%3D%22%7B%25+if+page.fullpath+%3D%3D+%27index%27+%25%7Don%7B%25+endif+%25%7D+link%22+id%3D%27home%27%3E%0A++++++++++++%3Ca+href%3D%27%7B%25+path_to+home+%25%7D%27%3EHome%3C%2Fa%3E%0A++++++++++%3C%2Fli%3E%0A++++++++++%7B%25+nav+site%2C+no_wrapper%3A+true%2C+exclude%3A+%27events%27+%25%7D%0A++++++++%3C%2Ful%3E%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27banner%27%3E%0A++++++++%7B%25+block+banner+%25%7D%0A++++++++%3Cdiv+class%3D%27photo%27%3E%0A++++++++++%3Cimg+src%3D%22%7B%25+editable_file+%27Page+image%27%2C+hint%3A+%27Top+banner+image+in+each+page+%28602px+by+397px%29%27+%25%7D%2Fsites%2F55ba45046469646eb8000000%2Fassets%2F55ba45066469646eb8000031%2Fphoto.jpg%7B%25+endeditable_file+%25%7D%22%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%3Cdiv+class%3D%27text%27%3E%0A++++++++++%7B%25+editable_long_text+%27pitch%27+%25%7D%0A++++++++++%3Ch2%3EAbout+Us%3C%2Fh2%3E%0A++++++++++%3Cp%3E%0A++++++++++++Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit.+Suspendisse+vitae+egestas+neque.+Proin+ac+ante+ante%2C+sit+amet+egestas+purus.+Fusce+tincidunt+mattis+sapien+eget+sodales.+Cras+aliquet+odio+eu+nisl+dapibus+placerat.%0A++++++++++++%3Cbr%3E%0A++++++++++++%3Ca+href%3D%27%2Fabout-us%27%3Eread+more...%3C%2Fa%3E%0A++++++++++%3C%2Fp%3E%0A++++++++++%7B%25+endeditable_long_text+%25%7D%0A++++++++%3C%2Fdiv%3E%0A++++++++%7B%25+endblock+%25%7D%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27content%27%3E%0A++++++++%7B%25+block+content+%25%7D%0A++++++++%3Cdiv+class%3D%27unit+size1of2%27+id%3D%27events%27%3E%0A++++++++++%3Ch2%3EUpcoming+events%3C%2Fh2%3E%0A++++++++++%3Cul+class%3D%27list%27%3E%0A++++++++++++%7B%25+for+event+in+contents.events+limit%3A+6+%25%7D%0A++++++++++++%3Cli%3E%0A++++++++++++++%3Cem%3E%7B%7B+event.date+%7C+localized_date%3A+%27%25a%2C+%25B+%25d%2C+%25Y%27+%7D%7D%3C%2Fem%3E%0A++++++++++++++%26nbsp%3B-%26nbsp%3B%0A++++++++++++++%7B%7B+event.place+%7D%7D%2C+%7B%7B+event.city+%7D%7D%2C+%7B%7B+event.state+%7D%7D%0A++++++++++++%3C%2Fli%3E%0A++++++++++++%7B%25+endfor+%25%7D%0A++++++++++%3C%2Ful%3E%0A++++++++++%3Cp+class%3D%27more%27%3E%0A++++++++++++%3Ca+href%3D%27%2Fevents%27%3ESee+more+events+...%3C%2Fa%3E%0A++++++++++%3C%2Fp%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%3Cdiv+class%3D%27unit+size1of2%27+id%3D%27updates%27%3E%0A++++++++++%3Ch2%3ESite+updates%3C%2Fh2%3E%0A++++++++++%3Cul+class%3D%27list%27%3E%0A++++++++++++%7B%25+for+update+in+contents.updates+%25%7D%0A++++++++++++%3Cli%3E%0A++++++++++++++%3Cem%3E%7B%7B+update.date+%7C+localized_date%3A+%27%25B+%25d%27+%7D%7D%3C%2Fem%3E%0A++++++++++++++%26nbsp%3B-%26nbsp%3B%0A++++++++++++++%7B%7B+update.title+%7D%7D%0A++++++++++++%3C%2Fli%3E%0A++++++++++++%7B%25+endfor+%25%7D%0A++++++++++%3C%2Ful%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%7B%25+endblock+%25%7D%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27footer%27%3E%0A++++++++%3Cdiv+id%3D%27is_templatized%27+templatized%3D%27%7B%7B+page.templatized%3F+%7D%7D%27%3E%3C%2Fdiv%3E%0A++++++++%3Cdiv+id%3D%27scoped_translation%27+scoped_translation%3D%22%7B%7B+%27fr%27+%7C+translate%3A+%27en%27%2C+%27locomotive.locales%27+%7D%7D%22%3E%3C%2Fdiv%3E%0A++++++++%7B%25+include+footer+%25%7D%0A++++++++%7B%25+include+a_complicated-one+%25%7D%0A++++++%3C%2Fdiv%3E%0A++++%3C%2Fdiv%3E%0A++++%7B%25+google_analytics+%27UA-20661758-1%27+%25%7D%0A++%3C%2Fbody%3E%0A%3C%2Fhtml%3E%0A&page%5Btitle%5D=Home+page |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -9392,7 +9162,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - en | |
| Content-Type: | |
| @@ | @@ -9408,24 +9178,20 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '5270' |
| Etag: | |
| - | - W/"5af2c08f2375a0c70d21223337e120d5" |
| + | - W/"bc751a4896c9ddf9fd85527723254fc5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 1d10ec9c-c2f1-4fe1-af2a-3ff8facf4f36 |
| + | - 1e52d35f-3c39-4528-9a4b-0122189003c1 |
| X-Runtime: | |
| - | - '0.041016' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.061916' |
| + | Content-Length: |
| + | - '5268' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae66469646ed2020000","created_at":"2015-05-25T23:06:14Z","updated_at":"2015-05-25T23:06:19Z","title":"Home |
| - | page","parent_id":null,"position":0,"handle":"home","depth":0,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"slug":"index","fullpath":"index","localized_fullpaths":{"en":"","fr":"fr","nb":"nb"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"\u003c!DOCTYPE |
| + | string: '{"_id":"55ba45046469646eb8000002","created_at":"2015-07-30T15:38:44Z","updated_at":"2015-07-30T15:38:51Z","title":"Home |
| + | page","parent_id":null,"position":0,"handle":"home","depth":0,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"slug":"index","fullpath":"index","localized_fullpaths":{"en":"","fr":"fr","nb":"nb"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"\u003c!DOCTYPE |
| html\u003e\n\u003chtml lang=''en''\u003e\n \u003chead\u003e\n \u003cmeta | |
| charset=''utf-8''\u003e\n \u003ctitle\u003e{{ site.name }} | {{ page.title | |
| }}\u003c/title\u003e\n \u003cmeta content=''{{ site.meta_description }}'' | |
| @@ | @@ -9448,7 +9214,7 @@ http_interactions: |
| class=''clear''\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003cdiv | |
| id=''banner''\u003e\n {% block banner %}\n \u003cdiv class=''photo''\u003e\n \u003cimg | |
| src=\"{% editable_file ''Page image'', hint: ''Top banner image in each page | |
| - | (602px by 397px)'' %}/sites/5563aae56469646ed2000000/assets/5563aae76469646ed22d0000/photo.jpg{% |
| + | (602px by 397px)'' %}/sites/55ba45046469646eb8000000/assets/55ba45066469646eb8000031/photo.jpg{% |
| endeditable_file %}\"\u003e\n \u003c/div\u003e\n \u003cdiv class=''text''\u003e\n {% | |
| editable_long_text ''pitch'' %}\n \u003ch2\u003eAbout Us\u003c/h2\u003e\n \u003cp\u003e\n Lorem | |
| ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vitae egestas | |
| @@ | @@ -9478,13 +9244,13 @@ http_interactions: |
| a_complicated-one %}\n \u003c/div\u003e\n \u003c/div\u003e\n {% | |
| google_analytics ''UA-20661758-1'' %}\n \u003c/body\u003e\n\u003c/html\u003e\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5563aae66469646ed2020000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/55ba45046469646eb8000002.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Bhandle%5D=home&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=index&page%5Btemplate%5D=%3C%21DOCTYPE+html%3E%0A%3Chtml+lang%3D%27en%27%3E%0A++%3Chead%3E%0A++++%3Cmeta+charset%3D%27utf-8%27%3E%0A++++%3Ctitle%3E%7B%7B+site.name+%7D%7D+%7C+%7B%7B+page.title+%7D%7D%3C%2Ftitle%3E%0A++++%3Cmeta+content%3D%27%7B%7B+site.meta_description+%7D%7D%27+name%3D%27description%27%3E%0A++++%3Cmeta+content%3D%27%7B%7B+site.meta_keywords+%7D%7D%27+name%3D%27keywords%27%3E%0A++++%7B%7B+%27%2Ffoo%2Fbar%27+%7C+auto_discovery_link_tag%3A+%27rel%3Aalternate%27%2C+%27type%3Aapplication%2Fatom%2Bxml%27%2C+%27title%3AA+title%27+%7D%7D%0A++++%3C%21--+Le+HTML5+shim%2C+for+IE6-8+support+of+HTML+elements+--%3E%0A++++%3C%21--%5Bif+lt+IE+9%5D%3E%0A++++++%3Cscript+src%3D%22http%3A%2F%2Fhtml5shim.googlecode.com%2Fsvn%2Ftrunk%2Fhtml5.js%22%3E%3C%2Fscript%3E%0A++++%3C%21%5Bendif%5D--%3E%0A++++%3Clink+href%3D%22%2Ffonts%2Fchunkfive.css%22+media%3D%22screen%22+rel%3D%22stylesheet%22+type%3D%22text%2Fcss%22+%2F%3E%0A++++%3C%21--+Le+styles+--%3E%0A++++%7B%7B+%27http%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DOpen%2BSans%3A400%2C700%27+%7C+stylesheet_tag+%7D%7D%0A++++%7B%7B+%27reboot%27+%7C+stylesheet_tag+%7D%7D%0A++++%7B%7B+%27application%27+%7C+stylesheet_tag+%7D%7D%0A++++%3Cscript+src%3D%22%7B%7B+%27application.js%27+%7C+javascript_url+%7D%7D%22+type%3D%27text%2Fjavascript%27%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%27http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.7.2%2Fjquery.min.js%27+type%3D%27text%2Fjavascript%27%3E%3C%2Fscript%3E%0A++++%7B%25+inline_editor+%25%7D%0A++%3C%2Fhead%3E%0A++%3Cbody%3E%0A++++%3Cdiv+class%3D%27container%27%3E%0A++++++%3Cdiv+id%3D%27menu%27%3E%0A++++++++%3Cul+id%3D%27nav%27%3E%0A++++++++++%3Cli+class%3D%22%7B%25+if+page.fullpath+%3D%3D+%27index%27+%25%7Don%7B%25+endif+%25%7D+link%22+id%3D%27home%27%3E%0A++++++++++++%3Ca+href%3D%27%7B%25+path_to+home+%25%7D%27%3EHome%3C%2Fa%3E%0A++++++++++%3C%2Fli%3E%0A++++++++++%7B%25+nav+site%2C+no_wrapper%3A+true%2C+exclude%3A+%27events%27+%25%7D%0A++++++++%3C%2Ful%3E%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27banner%27%3E%0A++++++++%7B%25+block+banner+%25%7D%0A++++++++%3Cdiv+class%3D%27photo%27%3E%0A++++++++++%3Cimg+src%3D%22%7B%25+editable_file+%27Page+image%27%2C+hint%3A+%27Top+banner+image+in+each+page+%28602px+by+397px%29%27+%25%7D%2Fsites%2F5563aae56469646ed2000000%2Fassets%2F5563aae76469646ed22d0000%2Fphoto.jpg%7B%25+endeditable_file+%25%7D%22%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%3Cdiv+class%3D%27text%27%3E%0A++++++++++%7B%25+editable_long_text+%27pitch%27+%25%7D%0A++++++++++%3Ch2%3EAbout+Us%3C%2Fh2%3E%0A++++++++++%3Cp%3E%0A++++++++++++Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit.+Suspendisse+vitae+egestas+neque.+Proin+ac+ante+ante%2C+sit+amet+egestas+purus.+Fusce+tincidunt+mattis+sapien+eget+sodales.+Cras+aliquet+odio+eu+nisl+dapibus+placerat.%0A++++++++++++%3Cbr%3E%0A++++++++++++%3Ca+href%3D%27%2Fabout-us%27%3Eread+more...%3C%2Fa%3E%0A++++++++++%3C%2Fp%3E%0A++++++++++%7B%25+endeditable_long_text+%25%7D%0A++++++++%3C%2Fdiv%3E%0A++++++++%7B%25+endblock+%25%7D%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27content%27%3E%0A++++++++%7B%25+block+content+%25%7D%0A++++++++%3Cdiv+class%3D%27unit+size1of2%27+id%3D%27events%27%3E%0A++++++++++%3Ch2%3EUpcoming+events%3C%2Fh2%3E%0A++++++++++%3Cul+class%3D%27list%27%3E%0A++++++++++++%7B%25+for+event+in+contents.events+limit%3A+6+%25%7D%0A++++++++++++%3Cli%3E%0A++++++++++++++%3Cem%3E%7B%7B+event.date+%7C+localized_date%3A+%27%25a%2C+%25B+%25d%2C+%25Y%27+%7D%7D%3C%2Fem%3E%0A++++++++++++++%26nbsp%3B-%26nbsp%3B%0A++++++++++++++%7B%7B+event.place+%7D%7D%2C+%7B%7B+event.city+%7D%7D%2C+%7B%7B+event.state+%7D%7D%0A++++++++++++%3C%2Fli%3E%0A++++++++++++%7B%25+endfor+%25%7D%0A++++++++++%3C%2Ful%3E%0A++++++++++%3Cp+class%3D%27more%27%3E%0A++++++++++++%3Ca+href%3D%27%2Fevents%27%3ESee+more+events+...%3C%2Fa%3E%0A++++++++++%3C%2Fp%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%3Cdiv+class%3D%27unit+size1of2%27+id%3D%27updates%27%3E%0A++++++++++%3Ch2%3ESite+updates%3C%2Fh2%3E%0A++++++++++%3Cul+class%3D%27list%27%3E%0A++++++++++++%7B%25+for+update+in+contents.updates+%25%7D%0A++++++++++++%3Cli%3E%0A++++++++++++++%3Cem%3E%7B%7B+update.date+%7C+localized_date%3A+%27%25B+%25d%27+%7D%7D%3C%2Fem%3E%0A++++++++++++++%26nbsp%3B-%26nbsp%3B%0A++++++++++++++%7B%7B+update.title+%7D%7D%0A++++++++++++%3C%2Fli%3E%0A++++++++++++%7B%25+endfor+%25%7D%0A++++++++++%3C%2Ful%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%7B%25+endblock+%25%7D%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27footer%27%3E%0A++++++++%3Cdiv+id%3D%27is_templatized%27+templatized%3D%27%7B%7B+page.templatized%3F+%7D%7D%27%3E%3C%2Fdiv%3E%0A++++++++%3Cdiv+id%3D%27scoped_translation%27+scoped_translation%3D%22%7B%7B+%27fr%27+%7C+translate%3A+%27en%27%2C+%27locomotive.locales%27+%7D%7D%22%3E%3C%2Fdiv%3E%0A++++++++%7B%25+include+footer+%25%7D%0A++++++++%7B%25+include+a_complicated-one+%25%7D%0A++++++%3C%2Fdiv%3E%0A++++%3C%2Fdiv%3E%0A++++%7B%25+google_analytics+%27UA-20661758-1%27+%25%7D%0A++%3C%2Fbody%3E%0A%3C%2Fhtml%3E%0A&page%5Btitle%5D=Page+d%27accueil |
| + | string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Bhandle%5D=home&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=index&page%5Btemplate%5D=%3C%21DOCTYPE+html%3E%0A%3Chtml+lang%3D%27en%27%3E%0A++%3Chead%3E%0A++++%3Cmeta+charset%3D%27utf-8%27%3E%0A++++%3Ctitle%3E%7B%7B+site.name+%7D%7D+%7C+%7B%7B+page.title+%7D%7D%3C%2Ftitle%3E%0A++++%3Cmeta+content%3D%27%7B%7B+site.meta_description+%7D%7D%27+name%3D%27description%27%3E%0A++++%3Cmeta+content%3D%27%7B%7B+site.meta_keywords+%7D%7D%27+name%3D%27keywords%27%3E%0A++++%7B%7B+%27%2Ffoo%2Fbar%27+%7C+auto_discovery_link_tag%3A+%27rel%3Aalternate%27%2C+%27type%3Aapplication%2Fatom%2Bxml%27%2C+%27title%3AA+title%27+%7D%7D%0A++++%3C%21--+Le+HTML5+shim%2C+for+IE6-8+support+of+HTML+elements+--%3E%0A++++%3C%21--%5Bif+lt+IE+9%5D%3E%0A++++++%3Cscript+src%3D%22http%3A%2F%2Fhtml5shim.googlecode.com%2Fsvn%2Ftrunk%2Fhtml5.js%22%3E%3C%2Fscript%3E%0A++++%3C%21%5Bendif%5D--%3E%0A++++%3Clink+href%3D%22%2Ffonts%2Fchunkfive.css%22+media%3D%22screen%22+rel%3D%22stylesheet%22+type%3D%22text%2Fcss%22+%2F%3E%0A++++%3C%21--+Le+styles+--%3E%0A++++%7B%7B+%27http%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DOpen%2BSans%3A400%2C700%27+%7C+stylesheet_tag+%7D%7D%0A++++%7B%7B+%27reboot%27+%7C+stylesheet_tag+%7D%7D%0A++++%7B%7B+%27application%27+%7C+stylesheet_tag+%7D%7D%0A++++%3Cscript+src%3D%22%7B%7B+%27application.js%27+%7C+javascript_url+%7D%7D%22+type%3D%27text%2Fjavascript%27%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%27http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.7.2%2Fjquery.min.js%27+type%3D%27text%2Fjavascript%27%3E%3C%2Fscript%3E%0A++++%7B%25+inline_editor+%25%7D%0A++%3C%2Fhead%3E%0A++%3Cbody%3E%0A++++%3Cdiv+class%3D%27container%27%3E%0A++++++%3Cdiv+id%3D%27menu%27%3E%0A++++++++%3Cul+id%3D%27nav%27%3E%0A++++++++++%3Cli+class%3D%22%7B%25+if+page.fullpath+%3D%3D+%27index%27+%25%7Don%7B%25+endif+%25%7D+link%22+id%3D%27home%27%3E%0A++++++++++++%3Ca+href%3D%27%7B%25+path_to+home+%25%7D%27%3EHome%3C%2Fa%3E%0A++++++++++%3C%2Fli%3E%0A++++++++++%7B%25+nav+site%2C+no_wrapper%3A+true%2C+exclude%3A+%27events%27+%25%7D%0A++++++++%3C%2Ful%3E%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27banner%27%3E%0A++++++++%7B%25+block+banner+%25%7D%0A++++++++%3Cdiv+class%3D%27photo%27%3E%0A++++++++++%3Cimg+src%3D%22%7B%25+editable_file+%27Page+image%27%2C+hint%3A+%27Top+banner+image+in+each+page+%28602px+by+397px%29%27+%25%7D%2Fsites%2F55ba45046469646eb8000000%2Fassets%2F55ba45066469646eb8000031%2Fphoto.jpg%7B%25+endeditable_file+%25%7D%22%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%3Cdiv+class%3D%27text%27%3E%0A++++++++++%7B%25+editable_long_text+%27pitch%27+%25%7D%0A++++++++++%3Ch2%3EAbout+Us%3C%2Fh2%3E%0A++++++++++%3Cp%3E%0A++++++++++++Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit.+Suspendisse+vitae+egestas+neque.+Proin+ac+ante+ante%2C+sit+amet+egestas+purus.+Fusce+tincidunt+mattis+sapien+eget+sodales.+Cras+aliquet+odio+eu+nisl+dapibus+placerat.%0A++++++++++++%3Cbr%3E%0A++++++++++++%3Ca+href%3D%27%2Fabout-us%27%3Eread+more...%3C%2Fa%3E%0A++++++++++%3C%2Fp%3E%0A++++++++++%7B%25+endeditable_long_text+%25%7D%0A++++++++%3C%2Fdiv%3E%0A++++++++%7B%25+endblock+%25%7D%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27content%27%3E%0A++++++++%7B%25+block+content+%25%7D%0A++++++++%3Cdiv+class%3D%27unit+size1of2%27+id%3D%27events%27%3E%0A++++++++++%3Ch2%3EUpcoming+events%3C%2Fh2%3E%0A++++++++++%3Cul+class%3D%27list%27%3E%0A++++++++++++%7B%25+for+event+in+contents.events+limit%3A+6+%25%7D%0A++++++++++++%3Cli%3E%0A++++++++++++++%3Cem%3E%7B%7B+event.date+%7C+localized_date%3A+%27%25a%2C+%25B+%25d%2C+%25Y%27+%7D%7D%3C%2Fem%3E%0A++++++++++++++%26nbsp%3B-%26nbsp%3B%0A++++++++++++++%7B%7B+event.place+%7D%7D%2C+%7B%7B+event.city+%7D%7D%2C+%7B%7B+event.state+%7D%7D%0A++++++++++++%3C%2Fli%3E%0A++++++++++++%7B%25+endfor+%25%7D%0A++++++++++%3C%2Ful%3E%0A++++++++++%3Cp+class%3D%27more%27%3E%0A++++++++++++%3Ca+href%3D%27%2Fevents%27%3ESee+more+events+...%3C%2Fa%3E%0A++++++++++%3C%2Fp%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%3Cdiv+class%3D%27unit+size1of2%27+id%3D%27updates%27%3E%0A++++++++++%3Ch2%3ESite+updates%3C%2Fh2%3E%0A++++++++++%3Cul+class%3D%27list%27%3E%0A++++++++++++%7B%25+for+update+in+contents.updates+%25%7D%0A++++++++++++%3Cli%3E%0A++++++++++++++%3Cem%3E%7B%7B+update.date+%7C+localized_date%3A+%27%25B+%25d%27+%7D%7D%3C%2Fem%3E%0A++++++++++++++%26nbsp%3B-%26nbsp%3B%0A++++++++++++++%7B%7B+update.title+%7D%7D%0A++++++++++++%3C%2Fli%3E%0A++++++++++++%7B%25+endfor+%25%7D%0A++++++++++%3C%2Ful%3E%0A++++++++%3C%2Fdiv%3E%0A++++++++%7B%25+endblock+%25%7D%0A++++++++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++++%3Cdiv+id%3D%27footer%27%3E%0A++++++++%3Cdiv+id%3D%27is_templatized%27+templatized%3D%27%7B%7B+page.templatized%3F+%7D%7D%27%3E%3C%2Fdiv%3E%0A++++++++%3Cdiv+id%3D%27scoped_translation%27+scoped_translation%3D%22%7B%7B+%27fr%27+%7C+translate%3A+%27en%27%2C+%27locomotive.locales%27+%7D%7D%22%3E%3C%2Fdiv%3E%0A++++++++%7B%25+include+footer+%25%7D%0A++++++++%7B%25+include+a_complicated-one+%25%7D%0A++++++%3C%2Fdiv%3E%0A++++%3C%2Fdiv%3E%0A++++%7B%25+google_analytics+%27UA-20661758-1%27+%25%7D%0A++%3C%2Fbody%3E%0A%3C%2Fhtml%3E%0A&page%5Btitle%5D=Page+d%27accueil |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -9493,7 +9259,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -9509,23 +9275,19 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '5275' |
| Etag: | |
| - | - W/"67dfb152bf3225f1a0ecffa0aad2bc89" |
| + | - W/"36992d233d4d8fd6f28b53ba8e346a0c" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 12856ebc-9140-47da-b332-70e86ea99491 |
| + | - 637fcc3b-1bdb-4186-b410-52cbb4522161 |
| X-Runtime: | |
| - | - '0.035920' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.033847' |
| + | Content-Length: |
| + | - '5275' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aae66469646ed2020000","created_at":"2015-05-25T23:06:14Z","updated_at":"2015-05-25T23:06:19Z","title":"Page |
| + | string: '{"_id":"55ba45046469646eb8000002","created_at":"2015-07-30T15:38:44Z","updated_at":"2015-07-30T15:38:51Z","title":"Page |
| d''accueil","parent_id":null,"position":0,"handle":"home","depth":0,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr","nb"],"slug":"index","fullpath":"index","localized_fullpaths":{"en":"","fr":"fr","nb":"nb"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"\u003c!DOCTYPE | |
| html\u003e\n\u003chtml lang=''en''\u003e\n \u003chead\u003e\n \u003cmeta | |
| charset=''utf-8''\u003e\n \u003ctitle\u003e{{ site.name }} | {{ page.title | |
| @@ | @@ -9549,7 +9311,7 @@ http_interactions: |
| class=''clear''\u003e\u003c/div\u003e\n \u003c/div\u003e\n \u003cdiv | |
| id=''banner''\u003e\n {% block banner %}\n \u003cdiv class=''photo''\u003e\n \u003cimg | |
| src=\"{% editable_file ''Page image'', hint: ''Top banner image in each page | |
| - | (602px by 397px)'' %}/sites/5563aae56469646ed2000000/assets/5563aae76469646ed22d0000/photo.jpg{% |
| + | (602px by 397px)'' %}/sites/55ba45046469646eb8000000/assets/55ba45066469646eb8000031/photo.jpg{% |
| endeditable_file %}\"\u003e\n \u003c/div\u003e\n \u003cdiv class=''text''\u003e\n {% | |
| editable_long_text ''pitch'' %}\n \u003ch2\u003eAbout Us\u003c/h2\u003e\n \u003cp\u003e\n Lorem | |
| ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vitae egestas | |
| @@ | @@ -9579,7 +9341,7 @@ http_interactions: |
| a_complicated-one %}\n \u003c/div\u003e\n \u003c/div\u003e\n {% | |
| google_analytics ''UA-20661758-1'' %}\n \u003c/body\u003e\n\u003c/html\u003e\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -13351,7 +13113,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -13367,24 +13129,20 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '2612' |
| Etag: | |
| - | - W/"394907683de600edcd09437fa1e3098d" |
| + | - W/"3a110350f81ed1aea00574c65a919ee8" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - bc73c072-8330-433d-90a5-802e0e623170 |
| + | - 161f264d-8972-4283-bc9b-57ec03f81d74 |
| X-Runtime: | |
| - | - '0.089746' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.087770' |
| + | Content-Length: |
| + | - '2610' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaeb6469646ed26e0000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","title":"About |
| - | Us","parent_id":"5563aae66469646ed2020000","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"slug":"about-us","fullpath":"about-us","localized_fullpaths":{"en":"about-us","fr":"fr/about-us","nb":"nb/about-us"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450b6469646eb8000098","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","title":"About |
| + | Us","parent_id":"55ba45046469646eb8000002","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"slug":"about-us","fullpath":"about-us","localized_fullpaths":{"en":"about-us","fr":"fr/about-us","nb":"nb/about-us"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n{% block content %}\n{% editable_long_text ''content'' | |
| %}\n\u003cp\u003e\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, | |
| @@ | @@ -13402,13 +13160,13 @@ http_interactions: |
| egestas. Mauris lobortis hendrerit odio, vitae porttitor urna rutrum at. Ut | |
| at lectus erat, nec dictum dolor. Praesent in sapien interdum nibh euismod | |
| vestibulum. Vestibulum tincidunt pulvinar accumsan.\n\u003c/p\u003e\n{% endeditable_long_text | |
| - | %}\n{% endblock %}\n","editable_elements":[{"_id":"5563aaeb6469646ed26f0000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/5563aae56469646ed2000000/pages/5563aaeb6469646ed26e0000/files/photo_2.jpg","type":"EditableFile"},{"_id":"5563aaeb6469646ed2700000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":"\u003ch2\u003eAbout |
| + | %}\n{% endblock %}\n","editable_elements":[{"_id":"55ba450b6469646eb8000099","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/55ba45046469646eb8000000/pages/55ba450b6469646eb8000098/files/photo_2.jpg","type":"EditableFile"},{"_id":"55ba450b6469646eb800009a","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":"\u003ch2\u003eAbout |
| us\u003c/h2\u003e\u003cp\u003eLorem ipsum...\u003c/p\u003e","type":""}],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5563aaeb6469646ed26e0000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/55ba450b6469646eb8000098.json |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| @@ | @@ -17124,7 +16882,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -17142,24 +16900,20 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '2644' |
| Etag: | |
| - | - W/"a7be16c096f69016228f3d8e00028815" |
| + | - W/"cfc1041cc2a36d94087a00169b1c85b7" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - d11260bd-0190-4b5a-8418-3e640e3e6b4f |
| + | - 09979430-c348-47be-9a87-d1bb1fa19913 |
| X-Runtime: | |
| - | - '0.055221' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.053578' |
| + | Content-Length: |
| + | - '2644' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaeb6469646ed26e0000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","title":"A |
| - | notre sujet","parent_id":"5563aae66469646ed2020000","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"slug":"a-notre-sujet","fullpath":"a-notre-sujet","localized_fullpaths":{"en":"about-us","fr":"fr/a-notre-sujet","nb":"nb/about-us"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450b6469646eb8000098","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","title":"A |
| + | notre sujet","parent_id":"55ba45046469646eb8000002","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"slug":"a-notre-sujet","fullpath":"a-notre-sujet","localized_fullpaths":{"en":"about-us","fr":"fr/a-notre-sujet","nb":"nb/about-us"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n{% block content %}\n{% editable_long_text ''content'' | |
| %}\n\u003cp\u003e\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, | |
| @@ | @@ -17177,13 +16931,13 @@ http_interactions: |
| egestas. Mauris lobortis hendrerit odio, vitae porttitor urna rutrum at. Ut | |
| at lectus erat, nec dictum dolor. Praesent in sapien interdum nibh euismod | |
| vestibulum. Vestibulum tincidunt pulvinar accumsan.\n\u003c/p\u003e\n{% endeditable_long_text | |
| - | %}\n{% endblock %}\n","editable_elements":[{"_id":"5563aaeb6469646ed26f0000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/5563aae56469646ed2000000/pages/5563aaeb6469646ed26e0000/files/photo.jpg","type":"EditableFile"},{"_id":"5563aaeb6469646ed2700000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":"\u003ch2\u003eA |
| + | %}\n{% endblock %}\n","editable_elements":[{"_id":"55ba450b6469646eb8000099","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/55ba45046469646eb8000000/pages/55ba450b6469646eb8000098/files/photo.jpg","type":"EditableFile"},{"_id":"55ba450b6469646eb800009a","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":"\u003ch2\u003eA |
| notre sujet\u003c/h2\u003e\u003cp\u003eLorem ipsum...(FR)\u003c/p\u003e","type":""}],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5563aaeb6469646ed26e0000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/55ba450b6469646eb8000098.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Beditable_elements%5D%5B%5D%5Bblock%5D=banner&page%5Beditable_elements%5D%5B%5D%5Bslug%5D=page_image&page%5Beditable_elements%5D%5B%5D%5Bblock%5D=banner&page%5Beditable_elements%5D%5B%5D%5Bslug%5D=pitch&page%5Bhandle%5D=about-us&page%5Bis_layout%5D=false&page%5Blisted%5D=true&page%5Bparent%5D=index&page%5Bposition%5D=1&page%5Bpublished%5D=true&page%5Bslug%5D=om-oss&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A%7B%25+block+content+%25%7D%0A%7B%25+editable_long_text+%27content%27+%25%7D%0A%3Cp%3E%0A++Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit.+Curabitur+vitae+tincidunt+urna.+Nunc+felis+purus%2C+ultricies+et+venenatis+bibendum%2C+fringilla+eu+lectus.+Sed+cursus%2C+sem+at+blandit+mattis%2C+libero+quam+egestas+tortor%2C+eget+cursus+dolor+tellus+id+nunc.+Quisque+mauris+diam%2C+tincidunt+in+commodo+sed%2C+feugiat+eu+nibh.+Nulla+erat+nunc%2C+dapibus+vel+eleifend+et%2C+egestas+sed+quam.+Vestibulum+mollis+eros+at+dolor+vulputate+vel+sollicitudin+enim+convallis.+Etiam+velit+nisi%2C+rutrum+vel+sagittis+facilisis%2C+pretium+id+lorem.+Cum+sociis+natoque+penatibus+et+magnis+dis+parturient+montes%2C+nascetur+ridiculus+mus.+Pellentesque+mauris+nisl%2C+consequat+sed+tincidunt+nec%2C+lacinia+in+odio.+In+hac+habitasse+platea+dictumst.+Nam+semper+libero+aliquam+turpis+gravida+vel+varius+erat+vulputate.+Integer+consequat+ipsum+vitae+augue+porttitor+ullamcorper.+Nam+vulputate+aliquet+ante+at+gravida.+Vestibulum+luctus+urna+et+dui+hendrerit+eu+suscipit+velit+varius.+Sed+ornare+eleifend+sem%2C+vitae+pharetra+dolor+sodales+egestas.+Mauris+lobortis+hendrerit+odio%2C+vitae+porttitor+urna+rutrum+at.+Ut+at+lectus+erat%2C+nec+dictum+dolor.+Praesent+in+sapien+interdum+nibh+euismod+vestibulum.+Vestibulum+tincidunt+pulvinar+accumsan.%0A%3C%2Fp%3E%0A%7B%25+endeditable_long_text+%25%7D%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=Om+oss | |
| @@ | @@ -17195,7 +16949,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - nb | |
| Content-Type: | |
| @@ | @@ -17211,24 +16965,20 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '2465' |
| Etag: | |
| - | - W/"3ee62d18243a6b5b27ed81719ef57713" |
| + | - W/"bcd9d1549ab6e08129126557475fa792" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a15b8f42-e4be-4271-a15b-147db1e2cfd3 |
| + | - cd80092d-b264-4978-9eb5-29413bacfc8e |
| X-Runtime: | |
| - | - '0.041392' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.045235' |
| + | Content-Length: |
| + | - '2465' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaeb6469646ed26e0000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","title":"Om |
| - | oss","parent_id":"5563aae66469646ed2020000","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"slug":"om-oss","fullpath":"om-oss","localized_fullpaths":{"en":"about-us","fr":"fr/a-notre-sujet","nb":"nb/om-oss"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450b6469646eb8000098","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","title":"Om |
| + | oss","parent_id":"55ba45046469646eb8000002","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"slug":"om-oss","fullpath":"om-oss","localized_fullpaths":{"en":"about-us","fr":"fr/a-notre-sujet","nb":"nb/om-oss"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n{% block content %}\n{% editable_long_text ''content'' | |
| %}\n\u003cp\u003e\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, | |
| @@ | @@ -17246,9 +16996,9 @@ http_interactions: |
| egestas. Mauris lobortis hendrerit odio, vitae porttitor urna rutrum at. Ut | |
| at lectus erat, nec dictum dolor. Praesent in sapien interdum nibh euismod | |
| vestibulum. Vestibulum tincidunt pulvinar accumsan.\n\u003c/p\u003e\n{% endeditable_long_text | |
| - | %}\n{% endblock %}\n","editable_elements":[{"_id":"5563aaeb6469646ed26f0000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":null,"type":"EditableFile"},{"_id":"5563aaeb6469646ed2700000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":null,"type":""}],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| + | %}\n{% endblock %}\n","editable_elements":[{"_id":"55ba450b6469646eb8000099","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":null,"type":"EditableFile"},{"_id":"55ba450b6469646eb800009a","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":null,"type":""}],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -17263,7 +17013,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -17277,23 +17027,19 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '2381' |
| Etag: | |
| - | - W/"9c76395ecd645fded31f1463e93b2298" |
| + | - W/"2c7892df47130e7d6fad84df495356d9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 62d7b553-5b2f-4b15-9619-38350d9c7b55 |
| + | - e0f7163e-0bed-43b1-a93b-93a4d728d4c4 |
| X-Runtime: | |
| - | - '0.065449' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.056060' |
| + | Content-Length: |
| + | - '2379' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaeb6469646ed2710000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","title":"Music","parent_id":"5563aae66469646ed2020000","position":2,"handle":"our-music","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"slug":"music","fullpath":"music","localized_fullpaths":{"en":"music","fr":"fr/music","nb":"nb/music"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450b6469646eb800009b","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","title":"Music","parent_id":"55ba45046469646eb8000002","position":2,"handle":"our-music","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"slug":"music","fullpath":"music","localized_fullpaths":{"en":"music","fr":"fr/music","nb":"nb/music"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n{% block content %}\n{% editable_long_text ''introduction'' | |
| %}\n\u003cp\u003e\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, | |
| @@ | @@ -17317,10 +17063,10 @@ http_interactions: |
| }}={{ contents.songs.size }}\u003c/p\u003e\n\u003c/div\u003e\n{% endblock | |
| %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5563aaeb6469646ed2710000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/55ba450b6469646eb800009b.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Bhandle%5D=our-music&page%5Bis_layout%5D=false&page%5Blisted%5D=true&page%5Bparent%5D=index&page%5Bposition%5D=2&page%5Bpublished%5D=true&page%5Bslug%5D=notre-musique&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A%7B%25+block+content+%25%7D%0A%7B%25+editable_long_text+%27introduction%27+%25%7D%0A%3Cp%3E%0A++Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit.+Curabitur+vitae+tincidunt+urna.+Nunc+felis+purus%2C+ultricies+et+venenatis+bibendum%2C+fringilla+eu+lectus.+Sed+cursus%2C+sem+at+blandit+mattis%2C+libero+quam+egestas+tortor%2C+eget+cursus+dolor+tellus+id+nunc.+Quisque+mauris+diam%2C+tincidunt+in+commodo+sed%2C+feugiat+eu+nibh.+Nulla+erat+nunc%2C+dapibus+vel+eleifend+et%2C+egestas+sed+quam.+Vestibulum+mollis+eros+at+dolor+vulputate+vel+sollicitudin+enim+convallis.+Etiam+velit+nisi%2C+rutrum+vel+sagittis+facilisis%2C+pretium+id+lorem.%0A%3C%2Fp%3E%0A%7B%25+endeditable_long_text+%25%7D%0A%3Cdiv+class%3D%27unit+size1of2%27%3E%0A++%3Cul+class%3D%27songs%27%3E%0A++++%7B%25+for+song+in+contents.songs+limit%3A+4+offset%3A+0+%25%7D%0A++++%7B%25+include+%27song%27+with+song+%25%7D%0A++++%7B%25+endfor+%25%7D%0A++%3C%2Ful%3E%0A%3C%2Fdiv%3E%0A%3Cdiv+class%3D%27unit+size1of2%27%3E%0A++%3Cul+class%3D%27songs%27%3E%0A++++%7B%25+for+song+in+contents.songs+offset%3A+4+%25%7D%0A++++%7B%25+include+%27song%27+with+song+%25%7D%0A++++%7B%25+endfor+%25%7D%0A++%3C%2Ful%3E%0A%3C%2Fdiv%3E%0A%3Cdiv+id%3D%27is_listed%27+listed%3D%27%7B%7B+page.listed%3F+%7D%7D%27%3E%3C%2Fdiv%3E%0A%3Cdiv+id%3D%27test_for_scope%27%3E%0A++%7B%25+with_scope+_slug%3A+%22song-number-3%22+%25%7D%0A++%7B%25+assign+selected_songs+%3D+contents.songs.all+%25%7D%0A++%7B%25+endwith_scope+%25%7D%0A++%7B%25+for+s+in+selected_songs+%25%7D%0A++%3Cp+class%3D%27scoped_song%27%3E%7B%7B+s._label+%7D%7D%3C%2Fp%3E%0A++%3Cp+class%3D%27scoped_song_link%27%3E%0A++++%3Ca+href%3D%27%7B%25+path_to+s+%25%7D%27%3E%7B%7B+s._label+%7D%7D%3C%2Fa%3E%0A++%3C%2Fp%3E%0A++%7B%25+endfor+%25%7D%0A++%3Cp+class%3D%27collection_equality%27%3E%7B%7B+contents.songs.all.size+%7D%7D%3D%7B%7B+contents.songs.size+%7D%7D%3C%2Fp%3E%0A%3C%2Fdiv%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=Notre+musique | |
| @@ | @@ -17332,7 +17078,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -17348,24 +17094,20 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '2418' |
| Etag: | |
| - | - W/"ecdd18a3ea38f702399593af671ae2db" |
| + | - W/"3a02fd2c42b5953b6ccf2efb56085285" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9b248380-7b3b-4868-ab17-2cb150357719 |
| + | - c4c0095d-832b-4b44-80d3-88b9e8bdf760 |
| X-Runtime: | |
| - | - '0.040269' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.053636' |
| + | Content-Length: |
| + | - '2418' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaeb6469646ed2710000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","title":"Notre |
| - | musique","parent_id":"5563aae66469646ed2020000","position":2,"handle":"our-music","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"slug":"notre-musique","fullpath":"notre-musique","localized_fullpaths":{"en":"music","fr":"fr/notre-musique","nb":"nb/music"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450b6469646eb800009b","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","title":"Notre |
| + | musique","parent_id":"55ba45046469646eb8000002","position":2,"handle":"our-music","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"slug":"notre-musique","fullpath":"notre-musique","localized_fullpaths":{"en":"music","fr":"fr/notre-musique","nb":"nb/music"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n{% block content %}\n{% editable_long_text ''introduction'' | |
| %}\n\u003cp\u003e\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| Curabitur vitae tincidunt urna. Nunc felis purus, ultricies et venenatis bibendum, | |
| @@ | @@ -17389,7 +17131,7 @@ http_interactions: |
| }}={{ contents.songs.size }}\u003c/p\u003e\n\u003c/div\u003e\n{% endblock | |
| %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -17404,7 +17146,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -17418,28 +17160,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '677' |
| Etag: | |
| - | - W/"aa7b0e41eba4a11df251a5f23be10cb8" |
| + | - W/"aa625b2f5cddc14243287cfc22f5607c" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 1218822d-6888-49ca-955c-4836fbd81921 |
| + | - c3c3e17b-d587-4349-8535-f6fe22164a1f |
| X-Runtime: | |
| - | - '0.055935' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.069876' |
| + | Content-Length: |
| + | - '677' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaeb6469646ed2720000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","title":"Store","parent_id":"5563aae66469646ed2020000","position":3,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"slug":"store","fullpath":"store","localized_fullpaths":{"en":"store","fr":"fr/store","nb":"nb/store"},"redirect":true,"redirect_url":"http://www.apple.com/en/itunes/","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| + | string: '{"_id":"55ba450b6469646eb800009c","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","title":"Store","parent_id":"55ba45046469646eb8000002","position":3,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"slug":"store","fullpath":"store","localized_fullpaths":{"en":"store","fr":"fr/store","nb":"nb/store"},"redirect":true,"redirect_url":"http://www.apple.com/en/itunes/","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5563aaeb6469646ed2720000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/55ba450b6469646eb800009c.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Bis_layout%5D=false&page%5Blisted%5D=true&page%5Bparent%5D=index&page%5Bposition%5D=3&page%5Bpublished%5D=true&page%5Bredirect_type%5D=301&page%5Bredirect_url%5D=http%3A%2F%2Fwww.apple.com%2Ffr%2Fitunes%2F&page%5Bslug%5D=magasin&page%5Btemplate%5D=&page%5Btitle%5D=Magasin | |
| @@ | @@ -17451,7 +17189,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -17467,25 +17205,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '690' |
| Etag: | |
| - | - W/"11a9886a1b3371368d546f126a225147" |
| + | - W/"c2f151feec90089c1f64ee86c977e55d" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 3fe37905-9488-4fd2-bf78-c15fe9522426 |
| + | - cd307e5f-fd77-4b1f-bd21-7d99765430a0 |
| X-Runtime: | |
| - | - '0.038106' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.034700' |
| + | Content-Length: |
| + | - '690' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaeb6469646ed2720000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","title":"Magasin","parent_id":"5563aae66469646ed2020000","position":3,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"slug":"magasin","fullpath":"magasin","localized_fullpaths":{"en":"store","fr":"fr/magasin","nb":"nb/store"},"redirect":true,"redirect_url":"http://www.apple.com/fr/itunes/","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| + | string: '{"_id":"55ba450b6469646eb800009c","created_at":"2015-07-30T15:38:51Z","updated_at":"2015-07-30T15:38:51Z","title":"Magasin","parent_id":"55ba45046469646eb8000002","position":3,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"slug":"magasin","fullpath":"magasin","localized_fullpaths":{"en":"store","fr":"fr/magasin","nb":"nb/store"},"redirect":true,"redirect_url":"http://www.apple.com/fr/itunes/","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -17500,7 +17234,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -17514,24 +17248,20 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '3474' |
| Etag: | |
| - | - W/"6b7fda0a330024a20be9eea7ec1ae159" |
| + | - W/"f4f2ea839521abf55f0b590ba86bbb92" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e4c3b7af-0cff-488b-86a6-93c0e2e304c6 |
| + | - 0c500c2b-47da-4b16-bdbf-43b81da95faa |
| X-Runtime: | |
| - | - '0.062746' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.062472' |
| + | Content-Length: |
| + | - '3472' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaeb6469646ed2730000","created_at":"2015-05-25T23:06:19Z","updated_at":"2015-05-25T23:06:19Z","title":"Contact |
| - | Us","parent_id":"5563aae66469646ed2020000","position":4,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"slug":"contact","fullpath":"contact","localized_fullpaths":{"en":"contact","fr":"fr/contact","nb":"nb/contact"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450c6469646eb800009d","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"Contact |
| + | Us","parent_id":"55ba45046469646eb8000002","position":4,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"slug":"contact","fullpath":"contact","localized_fullpaths":{"en":"contact","fr":"fr/contact","nb":"nb/contact"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends ''parent'' %}\n{% block content %}\n\u003cdiv class=''text''\u003e\n {% | |
| editable_long_text ''text'' %}\n \u003cp\u003e\n Ut imperdiet velit eu | |
| metus semper tristique. Vivamus risus nisi, tincidunt et euismod a, auctor | |
| @@ | @@ -17566,7 +17296,7 @@ http_interactions: |
| were unable to treat your message. Please try later.\");\n });\n });\n });\n\u003c/script\u003e\n{% | |
| endblock %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -17581,7 +17311,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -17595,124 +17325,120 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '4439' |
| Etag: | |
| - | - W/"723e4b3b3ca4d1371854d4626e30a902" |
| + | - W/"3645f5202ec49996d8590a7bf87d742c" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b2af7872-75d9-4820-b56a-ec21c2e098ca |
| + | - 5d88de3c-951d-4626-b4a5-d74942c50c57 |
| X-Runtime: | |
| - | - '0.048416' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.049533' |
| + | Content-Length: |
| + | - '4437' |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NTYzYWFlYjY0Njk2NDZlZDI3NDAwMDAiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNS0wNS0yNVQyMzowNjoxOVoiLCJ1cGRhdGVkX2F0IjoiMjAxNS0w |
| - | NS0yNVQyMzowNjoxOVoiLCJ0aXRsZSI6IkV2ZW50cyIsInBhcmVudF9pZCI6 |
| - | IjU1NjNhYWU2NjQ2OTY0NmVkMjAyMDAwMCIsInBvc2l0aW9uIjo1LCJoYW5k |
| + | eyJfaWQiOiI1NWJhNDUwYzY0Njk2NDZlYjgwMDAwOWUiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNS0wNy0zMFQxNTozODo1MloiLCJ1cGRhdGVkX2F0IjoiMjAxNS0w |
| + | Ny0zMFQxNTozODo1MloiLCJ0aXRsZSI6IkV2ZW50cyIsInBhcmVudF9pZCI6 |
| + | IjU1YmE0NTA0NjQ2OTY0NmViODAwMDAwMiIsInBvc2l0aW9uIjo1LCJoYW5k |
| bGUiOiJldmVudHMiLCJkZXB0aCI6MSwicmVzcG9uc2VfdHlwZSI6InRleHQv | |
| aHRtbCIsImxpc3RlZCI6ZmFsc2UsInB1Ymxpc2hlZCI6dHJ1ZSwidHJhbnNs | |
| YXRlZF9pbiI6WyJlbiJdLCJzbHVnIjoiZXZlbnRzIiwiZnVsbHBhdGgiOiJl | |
| dmVudHMiLCJsb2NhbGl6ZWRfZnVsbHBhdGhzIjp7ImVuIjoiZXZlbnRzIiwi | |
| ZnIiOiJmci9ldmVudHMiLCJuYiI6Im5iL2V2ZW50cyJ9LCJyZWRpcmVjdCI6 | |
| - | ZmFsc2UsInJlZGlyZWN0X3VybCI6bnVsbCwicmVkaXJlY3RfdHlwZSI6MzAx |
| - | LCJ0ZW1wbGF0aXplZCI6ZmFsc2UsInRlbXBsYXRpemVkX2Zyb21fcGFyZW50 |
| - | IjpmYWxzZSwiY29udGVudF90eXBlIjpudWxsLCJpc19sYXlvdXQiOmZhbHNl |
| - | LCJhbGxvd19sYXlvdXQiOnRydWUsInRlbXBsYXRlIjoieyUgZXh0ZW5kcyBw |
| - | YXJlbnQgJX1cbnslIGJsb2NrIGNvbnRlbnQgJX1cblx1MDAzY3BcdTAwM2VU |
| - | aGFuayB5b3Uge3sgbWVzc2FnZS5uYW1lIH19ICFcdTAwM2MvcFx1MDAzZVxu |
| - | XHUwMDNjZGl2IGNsYXNzPSd1bml0IHNpemUyb2YzJyBpZD0nZXZlbnRzJ1x1 |
| - | MDAzZVxuICBcdTAwM2NoMlx1MDAzZVVwY29taW5nIGV2ZW50c1x1MDAzYy9o |
| - | Mlx1MDAzZVxuICBcdTAwM2N1bCBjbGFzcz0nbGlzdCdcdTAwM2VcbiAgICB7 |
| - | JSBmb3IgZXZlbnQgaW4gY29udGVudHMuZXZlbnRzICV9XG4gICAgXHUwMDNj |
| - | bGlcdTAwM2VcbiAgICAgIFx1MDAzY2VtXHUwMDNle3sgZXZlbnQuZGF0ZSB8 |
| - | IGxvY2FsaXplZF9kYXRlOiAnJWEsICVCICVkLCAlWScgfX1cdTAwM2MvZW1c |
| - | dTAwM2VcbiAgICAgIFx1MDAyNm5ic3A7LVx1MDAyNm5ic3A7XG4gICAgICB7 |
| - | eyBldmVudC5wbGFjZSB9fSwge3sgZXZlbnQuY2l0eSB9fSwge3sgZXZlbnQu |
| - | c3RhdGUgfX1cbiAgICBcdTAwM2MvbGlcdTAwM2VcbiAgICB7JSBlbmRmb3Ig |
| - | JX1cbiAgXHUwMDNjL3VsXHUwMDNlXG5cdTAwM2MvZGl2XHUwMDNlXG5cdTAw |
| - | M2NkaXYgY2xhc3M9J3VuaXQgc2l6ZTFvZjMnIGlkPSdzaWRlYmFyJ1x1MDAz |
| - | ZVxuICB7JSBtb2RlbF9mb3JtICdtZXNzYWdlcycsIGlkOiAnY29udGFjdGZv |
| - | cm0nICV9XG4gIFx1MDAzY3BcdTAwM2VcbiAgICBcdTAwM2NsYWJlbCBmb3I9 |
| - | J25hbWUnXHUwMDNlTmFtZVx1MDAzYy9sYWJlbFx1MDAzZVxuICAgIFx1MDAz |
| - | Y2lucHV0IGlkPSduYW1lJyBuYW1lPSdjb250ZW50W25hbWVdJyBwbGFjZWhv |
| - | bGRlcj0nRmlyc3QgYW5kIGxhc3QgbmFtZScgcmVxdWlyZWQ9J3JlcXVpcmVk |
| - | JyB0YWJpbmRleD0nMScgdHlwZT0ndGV4dCcgdmFsdWU9J3t7IG1lc3NhZ2Uu |
| - | bmFtZSB9fSdcdTAwM2VcbiAgICBcdTAwM2NzcGFuXHUwMDNle3sgbWVzc2Fn |
| - | ZS5lcnJvcnMubmFtZSB9fVx1MDAzYy9zcGFuXHUwMDNlXG4gIFx1MDAzYy9w |
| - | XHUwMDNlXG4gIFx1MDAzY3BcdTAwM2VcbiAgICBcdTAwM2NsYWJlbCBmb3I9 |
| - | J2VtYWlsJ1x1MDAzZUVtYWlsXHUwMDNjL2xhYmVsXHUwMDNlXG4gICAgXHUw |
| - | MDNjaW5wdXQgaWQ9J2VtYWlsJyBuYW1lPSdjb250ZW50W2VtYWlsXScgcGxh |
| - | Y2Vob2xkZXI9J2V4YW1wbGVAZG9tYWluLmNvbScgcmVxdWlyZWQ9J3JlcXVp |
| - | cmVkJyB0YWJpbmRleD0nMicgdHlwZT0ndGV4dCcgdmFsdWU9J3t7IG1lc3Nh |
| - | Z2UuZW1haWwgfX0nXHUwMDNlXG4gICAgXHUwMDNjc3Bhblx1MDAzZXt7IG1l |
| - | c3NhZ2UuZXJyb3JzLmVtYWlsIH19XHUwMDNjL3NwYW5cdTAwM2VcbiAgXHUw |
| - | MDNjL3BcdTAwM2VcbiAgXHUwMDNjcFx1MDAzZVxuICAgIFx1MDAzY2xhYmVs |
| - | IGZvcj0nY29tbWVudCdcdTAwM2VZb3VyIE1lc3NhZ2VcdTAwM2MvbGFiZWxc |
| - | dTAwM2VcbiAgICBcdTAwM2N0ZXh0YXJlYSBpZD0nY29tbWVudCcgbmFtZT0n |
| - | Y29udGVudFttZXNzYWdlXScgcmVxdWlyZWQ9J3JlcXVpcmVkJyB0YWJpbmRl |
| - | eD0nMydcdTAwM2V7eyBtZXNzYWdlLm1lc3NhZ2UgfX1cdTAwM2MvdGV4dGFy |
| - | ZWFcdTAwM2VcbiAgICBcdTAwM2NzcGFuXHUwMDNle3sgbWVzc2FnZS5lcnJv |
| - | cnMubWVzc2FnZSB9fVx1MDAzYy9zcGFuXHUwMDNlXG4gIFx1MDAzYy9wXHUw |
| - | MDNlXG4gIFx1MDAzY3AgY2xhc3M9J2FjdGlvbidcdTAwM2VcbiAgICBcdTAw |
| - | M2NpbnB1dCBuYW1lPSdzdWJtaXQnIHRhYmluZGV4PSc0JyB0eXBlPSdzdWJt |
| - | aXQnIHZhbHVlPSdTZW5kIE1lc3NhZ2UnXHUwMDNlXG4gIFx1MDAzYy9wXHUw |
| - | MDNlXG4gIHslIGVuZG1vZGVsX2Zvcm0gJX1cbiAgeyUgZWRpdGFibGVfbG9u |
| - | Z190ZXh0ICdzaWRlYmFyJyAlfVxuICBcdTAwM2NwXHUwMDNlXG4gICAgTG9y |
| - | ZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQsIGNvbnNlY3RldHVyIGFkaXBpc2Np |
| - | bmcgZWxpdC4gQ3VyYWJpdHVyIHZpdGFlIHRpbmNpZHVudCB1cm5hLiBOdW5j |
| - | IGZlbGlzIHB1cnVzLCB1bHRyaWNpZXMgZXQgdmVuZW5hdGlzIGJpYmVuZHVt |
| - | LCBmcmluZ2lsbGEgZXUgbGVjdHVzLiBTZWQgY3Vyc3VzLCBzZW0gYXQgYmxh |
| - | bmRpdCBtYXR0aXMsIGxpYmVybyBxdWFtIGVnZXN0YXMgdG9ydG9yLCBlZ2V0 |
| - | IGN1cnN1cyBkb2xvciB0ZWxsdXMgaWQgbnVuYy4gUXVpc3F1ZSBtYXVyaXMg |
| - | ZGlhbSwgdGluY2lkdW50IGluIGNvbW1vZG8gc2VkLCBmZXVnaWF0IGV1IG5p |
| - | YmguIE51bGxhIGVyYXQgbnVuYywgZGFwaWJ1cyB2ZWwgZWxlaWZlbmQgZXQs |
| - | IGVnZXN0YXMgc2VkIHF1YW0uIFZlc3RpYnVsdW0gbW9sbGlzIGVyb3MgYXQg |
| - | ZG9sb3IgdnVscHV0YXRlIHZlbCBzb2xsaWNpdHVkaW4gZW5pbSBjb252YWxs |
| - | aXMuIEV0aWFtIHZlbGl0IG5pc2ksIHJ1dHJ1bSB2ZWwgc2FnaXR0aXMgZmFj |
| - | aWxpc2lzLCBwcmV0aXVtIGlkIGxvcmVtLiBDdW0gc29jaWlzIG5hdG9xdWUg |
| - | cGVuYXRpYnVzIGV0IG1hZ25pcyBkaXMgcGFydHVyaWVudCBtb250ZXMsIG5h |
| - | c2NldHVyIHJpZGljdWx1cyBtdXMuIFBlbGxlbnRlc3F1ZSBtYXVyaXMgbmlz |
| - | bCwgY29uc2VxdWF0IHNlZCB0aW5jaWR1bnQgbmVjLCBsYWNpbmlhIGluIG9k |
| - | aW8uIEluIGhhYyBoYWJpdGFzc2UgcGxhdGVhIGRpY3R1bXN0LiBOYW0gc2Vt |
| - | cGVyIGxpYmVybyBhbGlxdWFtIHR1cnBpcyBncmF2aWRhIHZlbCB2YXJpdXMg |
| - | ZXJhdCB2dWxwdXRhdGUuIEludGVnZXIgY29uc2VxdWF0IGlwc3VtIHZpdGFl |
| - | IGF1Z3VlIHBvcnR0aXRvciB1bGxhbWNvcnBlci4gTmFtIHZ1bHB1dGF0ZSBh |
| - | bGlxdWV0IGFudGUgYXQgZ3JhdmlkYS4gVmVzdGlidWx1bSBsdWN0dXMgdXJu |
| - | YSBldCBkdWkgaGVuZHJlcml0IGV1IHN1c2NpcGl0IHZlbGl0IHZhcml1cy4g |
| - | U2VkIG9ybmFyZSBlbGVpZmVuZCBzZW0sIHZpdGFlIHBoYXJldHJhIGRvbG9y |
| - | IHNvZGFsZXMgZWdlc3Rhcy4gTWF1cmlzIGxvYm9ydGlzIGhlbmRyZXJpdCBv |
| - | ZGlvLCB2aXRhZSBwb3J0dGl0b3IgdXJuYSBydXRydW0gYXQuIFV0IGF0IGxl |
| - | Y3R1cyBlcmF0LCBuZWMgZGljdHVtIGRvbG9yLiBQcmFlc2VudCBpbiBzYXBp |
| - | ZW4gaW50ZXJkdW0gbmliaCBldWlzbW9kIHZlc3RpYnVsdW0uIFZlc3RpYnVs |
| - | dW0gdGluY2lkdW50IHB1bHZpbmFyIGFjY3Vtc2FuXG4gIFx1MDAzYy9wXHUw |
| - | MDNlXG4gIHslIGVuZGVkaXRhYmxlX2xvbmdfdGV4dCAlfVxuICBcdTAwM2Nw |
| - | XHUwMDNlXG4gICAgXHUwMDNjc3Ryb25nXHUwMDNlRGlzY292ZXI6IHslIGxp |
| - | bmtfdG8gb3VyLW11c2ljICV9XHUwMDNjL3N0cm9uZ1x1MDAzZVxuICAgIFx1 |
| - | MDAzY2JyXHUwMDNlXG4gICAgXHUwMDNjc3Ryb25nXHUwMDNlTW9yZSBhYm91 |
| - | dCB1czogeyUgbGlua190byBhYm91dC11cyAlfVdobyBhcmUgd2UgP3slIGVu |
| - | ZGxpbmtfdG8gJX1cdTAwM2Mvc3Ryb25nXHUwMDNlXG4gICAgXHUwMDNjYnJc |
| - | dTAwM2VcbiAgICBcdTAwM2NzdHJvbmdcdTAwM2VQbHVzIMOgIG5vdHJlIHN1 |
| - | amV0OiB7JSBsaW5rX3RvIGFib3V0LXVzLCBsb2NhbGU6IGZyICV9UXVpIHNv |
| - | bW1lcyBub3VzID97JSBlbmRsaW5rX3RvICV9XHUwMDNjL3N0cm9uZ1x1MDAz |
| - | ZVxuICAgIFx1MDAzY2JyXHUwMDNlXG4gICAgeyUgYXNzaWduIHNvbmcgPSBj |
| - | b250ZW50cy5zb25ncy5maXJzdCAlfVxuICAgIFx1MDAzY3N0cm9uZ1x1MDAz |
| - | ZXslIGxpbmtfdG8gc29uZyAlfVx1MDAzYy9zdHJvbmdcdTAwM2VcbiAgICBc |
| - | dTAwM2Niclx1MDAzZVxuICAgIHslIGFzc2lnbiBhbm90aGVyX3NvbmcgPSBj |
| - | b250ZW50cy5zb25ncy5sYXN0ICV9XG4gICAgXHUwMDNjc3Ryb25nXHUwMDNl |
| - | eyUgbGlua190byBhbm90aGVyX3NvbmcsIHdpdGg6IGEtc29uZy10ZW1wbGF0 |
| - | ZSAlfVx1MDAzYy9zdHJvbmdcdTAwM2VcbiAgXHUwMDNjL3BcdTAwM2Vcblx1 |
| - | MDAzYy9kaXZcdTAwM2VcbnslIGVuZGJsb2NrICV9XG4iLCJlZGl0YWJsZV9l |
| - | bGVtZW50cyI6W10sInNlb190aXRsZSI6bnVsbCwibWV0YV9rZXl3b3JkcyI6 |
| - | bnVsbCwibWV0YV9kZXNjcmlwdGlvbiI6bnVsbH0= |
| + | ZmFsc2UsInJlZGlyZWN0X3VybCI6IiIsInJlZGlyZWN0X3R5cGUiOjMwMSwi |
| + | dGVtcGxhdGl6ZWQiOmZhbHNlLCJ0ZW1wbGF0aXplZF9mcm9tX3BhcmVudCI6 |
| + | ZmFsc2UsImNvbnRlbnRfdHlwZSI6bnVsbCwiaXNfbGF5b3V0IjpmYWxzZSwi |
| + | YWxsb3dfbGF5b3V0Ijp0cnVlLCJ0ZW1wbGF0ZSI6InslIGV4dGVuZHMgcGFy |
| + | ZW50ICV9XG57JSBibG9jayBjb250ZW50ICV9XG5cdTAwM2NwXHUwMDNlVGhh |
| + | bmsgeW91IHt7IG1lc3NhZ2UubmFtZSB9fSAhXHUwMDNjL3BcdTAwM2Vcblx1 |
| + | MDAzY2RpdiBjbGFzcz0ndW5pdCBzaXplMm9mMycgaWQ9J2V2ZW50cydcdTAw |
| + | M2VcbiAgXHUwMDNjaDJcdTAwM2VVcGNvbWluZyBldmVudHNcdTAwM2MvaDJc |
| + | dTAwM2VcbiAgXHUwMDNjdWwgY2xhc3M9J2xpc3QnXHUwMDNlXG4gICAgeyUg |
| + | Zm9yIGV2ZW50IGluIGNvbnRlbnRzLmV2ZW50cyAlfVxuICAgIFx1MDAzY2xp |
| + | XHUwMDNlXG4gICAgICBcdTAwM2NlbVx1MDAzZXt7IGV2ZW50LmRhdGUgfCBs |
| + | b2NhbGl6ZWRfZGF0ZTogJyVhLCAlQiAlZCwgJVknIH19XHUwMDNjL2VtXHUw |
| + | MDNlXG4gICAgICBcdTAwMjZuYnNwOy1cdTAwMjZuYnNwO1xuICAgICAge3sg |
| + | ZXZlbnQucGxhY2UgfX0sIHt7IGV2ZW50LmNpdHkgfX0sIHt7IGV2ZW50LnN0 |
| + | YXRlIH19XG4gICAgXHUwMDNjL2xpXHUwMDNlXG4gICAgeyUgZW5kZm9yICV9 |
| + | XG4gIFx1MDAzYy91bFx1MDAzZVxuXHUwMDNjL2Rpdlx1MDAzZVxuXHUwMDNj |
| + | ZGl2IGNsYXNzPSd1bml0IHNpemUxb2YzJyBpZD0nc2lkZWJhcidcdTAwM2Vc |
| + | biAgeyUgbW9kZWxfZm9ybSAnbWVzc2FnZXMnLCBpZDogJ2NvbnRhY3Rmb3Jt |
| + | JyAlfVxuICBcdTAwM2NwXHUwMDNlXG4gICAgXHUwMDNjbGFiZWwgZm9yPSdu |
| + | YW1lJ1x1MDAzZU5hbWVcdTAwM2MvbGFiZWxcdTAwM2VcbiAgICBcdTAwM2Np |
| + | bnB1dCBpZD0nbmFtZScgbmFtZT0nY29udGVudFtuYW1lXScgcGxhY2Vob2xk |
| + | ZXI9J0ZpcnN0IGFuZCBsYXN0IG5hbWUnIHJlcXVpcmVkPSdyZXF1aXJlZCcg |
| + | dGFiaW5kZXg9JzEnIHR5cGU9J3RleHQnIHZhbHVlPSd7eyBtZXNzYWdlLm5h |
| + | bWUgfX0nXHUwMDNlXG4gICAgXHUwMDNjc3Bhblx1MDAzZXt7IG1lc3NhZ2Uu |
| + | ZXJyb3JzLm5hbWUgfX1cdTAwM2Mvc3Bhblx1MDAzZVxuICBcdTAwM2MvcFx1 |
| + | MDAzZVxuICBcdTAwM2NwXHUwMDNlXG4gICAgXHUwMDNjbGFiZWwgZm9yPSdl |
| + | bWFpbCdcdTAwM2VFbWFpbFx1MDAzYy9sYWJlbFx1MDAzZVxuICAgIFx1MDAz |
| + | Y2lucHV0IGlkPSdlbWFpbCcgbmFtZT0nY29udGVudFtlbWFpbF0nIHBsYWNl |
| + | aG9sZGVyPSdleGFtcGxlQGRvbWFpbi5jb20nIHJlcXVpcmVkPSdyZXF1aXJl |
| + | ZCcgdGFiaW5kZXg9JzInIHR5cGU9J3RleHQnIHZhbHVlPSd7eyBtZXNzYWdl |
| + | LmVtYWlsIH19J1x1MDAzZVxuICAgIFx1MDAzY3NwYW5cdTAwM2V7eyBtZXNz |
| + | YWdlLmVycm9ycy5lbWFpbCB9fVx1MDAzYy9zcGFuXHUwMDNlXG4gIFx1MDAz |
| + | Yy9wXHUwMDNlXG4gIFx1MDAzY3BcdTAwM2VcbiAgICBcdTAwM2NsYWJlbCBm |
| + | b3I9J2NvbW1lbnQnXHUwMDNlWW91ciBNZXNzYWdlXHUwMDNjL2xhYmVsXHUw |
| + | MDNlXG4gICAgXHUwMDNjdGV4dGFyZWEgaWQ9J2NvbW1lbnQnIG5hbWU9J2Nv |
| + | bnRlbnRbbWVzc2FnZV0nIHJlcXVpcmVkPSdyZXF1aXJlZCcgdGFiaW5kZXg9 |
| + | JzMnXHUwMDNle3sgbWVzc2FnZS5tZXNzYWdlIH19XHUwMDNjL3RleHRhcmVh |
| + | XHUwMDNlXG4gICAgXHUwMDNjc3Bhblx1MDAzZXt7IG1lc3NhZ2UuZXJyb3Jz |
| + | Lm1lc3NhZ2UgfX1cdTAwM2Mvc3Bhblx1MDAzZVxuICBcdTAwM2MvcFx1MDAz |
| + | ZVxuICBcdTAwM2NwIGNsYXNzPSdhY3Rpb24nXHUwMDNlXG4gICAgXHUwMDNj |
| + | aW5wdXQgbmFtZT0nc3VibWl0JyB0YWJpbmRleD0nNCcgdHlwZT0nc3VibWl0 |
| + | JyB2YWx1ZT0nU2VuZCBNZXNzYWdlJ1x1MDAzZVxuICBcdTAwM2MvcFx1MDAz |
| + | ZVxuICB7JSBlbmRtb2RlbF9mb3JtICV9XG4gIHslIGVkaXRhYmxlX2xvbmdf |
| + | dGV4dCAnc2lkZWJhcicgJX1cbiAgXHUwMDNjcFx1MDAzZVxuICAgIExvcmVt |
| + | IGlwc3VtIGRvbG9yIHNpdCBhbWV0LCBjb25zZWN0ZXR1ciBhZGlwaXNjaW5n |
| + | IGVsaXQuIEN1cmFiaXR1ciB2aXRhZSB0aW5jaWR1bnQgdXJuYS4gTnVuYyBm |
| + | ZWxpcyBwdXJ1cywgdWx0cmljaWVzIGV0IHZlbmVuYXRpcyBiaWJlbmR1bSwg |
| + | ZnJpbmdpbGxhIGV1IGxlY3R1cy4gU2VkIGN1cnN1cywgc2VtIGF0IGJsYW5k |
| + | aXQgbWF0dGlzLCBsaWJlcm8gcXVhbSBlZ2VzdGFzIHRvcnRvciwgZWdldCBj |
| + | dXJzdXMgZG9sb3IgdGVsbHVzIGlkIG51bmMuIFF1aXNxdWUgbWF1cmlzIGRp |
| + | YW0sIHRpbmNpZHVudCBpbiBjb21tb2RvIHNlZCwgZmV1Z2lhdCBldSBuaWJo |
| + | LiBOdWxsYSBlcmF0IG51bmMsIGRhcGlidXMgdmVsIGVsZWlmZW5kIGV0LCBl |
| + | Z2VzdGFzIHNlZCBxdWFtLiBWZXN0aWJ1bHVtIG1vbGxpcyBlcm9zIGF0IGRv |
| + | bG9yIHZ1bHB1dGF0ZSB2ZWwgc29sbGljaXR1ZGluIGVuaW0gY29udmFsbGlz |
| + | LiBFdGlhbSB2ZWxpdCBuaXNpLCBydXRydW0gdmVsIHNhZ2l0dGlzIGZhY2ls |
| + | aXNpcywgcHJldGl1bSBpZCBsb3JlbS4gQ3VtIHNvY2lpcyBuYXRvcXVlIHBl |
| + | bmF0aWJ1cyBldCBtYWduaXMgZGlzIHBhcnR1cmllbnQgbW9udGVzLCBuYXNj |
| + | ZXR1ciByaWRpY3VsdXMgbXVzLiBQZWxsZW50ZXNxdWUgbWF1cmlzIG5pc2ws |
| + | IGNvbnNlcXVhdCBzZWQgdGluY2lkdW50IG5lYywgbGFjaW5pYSBpbiBvZGlv |
| + | LiBJbiBoYWMgaGFiaXRhc3NlIHBsYXRlYSBkaWN0dW1zdC4gTmFtIHNlbXBl |
| + | ciBsaWJlcm8gYWxpcXVhbSB0dXJwaXMgZ3JhdmlkYSB2ZWwgdmFyaXVzIGVy |
| + | YXQgdnVscHV0YXRlLiBJbnRlZ2VyIGNvbnNlcXVhdCBpcHN1bSB2aXRhZSBh |
| + | dWd1ZSBwb3J0dGl0b3IgdWxsYW1jb3JwZXIuIE5hbSB2dWxwdXRhdGUgYWxp |
| + | cXVldCBhbnRlIGF0IGdyYXZpZGEuIFZlc3RpYnVsdW0gbHVjdHVzIHVybmEg |
| + | ZXQgZHVpIGhlbmRyZXJpdCBldSBzdXNjaXBpdCB2ZWxpdCB2YXJpdXMuIFNl |
| + | ZCBvcm5hcmUgZWxlaWZlbmQgc2VtLCB2aXRhZSBwaGFyZXRyYSBkb2xvciBz |
| + | b2RhbGVzIGVnZXN0YXMuIE1hdXJpcyBsb2JvcnRpcyBoZW5kcmVyaXQgb2Rp |
| + | bywgdml0YWUgcG9ydHRpdG9yIHVybmEgcnV0cnVtIGF0LiBVdCBhdCBsZWN0 |
| + | dXMgZXJhdCwgbmVjIGRpY3R1bSBkb2xvci4gUHJhZXNlbnQgaW4gc2FwaWVu |
| + | IGludGVyZHVtIG5pYmggZXVpc21vZCB2ZXN0aWJ1bHVtLiBWZXN0aWJ1bHVt |
| + | IHRpbmNpZHVudCBwdWx2aW5hciBhY2N1bXNhblxuICBcdTAwM2MvcFx1MDAz |
| + | ZVxuICB7JSBlbmRlZGl0YWJsZV9sb25nX3RleHQgJX1cbiAgXHUwMDNjcFx1 |
| + | MDAzZVxuICAgIFx1MDAzY3N0cm9uZ1x1MDAzZURpc2NvdmVyOiB7JSBsaW5r |
| + | X3RvIG91ci1tdXNpYyAlfVx1MDAzYy9zdHJvbmdcdTAwM2VcbiAgICBcdTAw |
| + | M2Niclx1MDAzZVxuICAgIFx1MDAzY3N0cm9uZ1x1MDAzZU1vcmUgYWJvdXQg |
| + | dXM6IHslIGxpbmtfdG8gYWJvdXQtdXMgJX1XaG8gYXJlIHdlID97JSBlbmRs |
| + | aW5rX3RvICV9XHUwMDNjL3N0cm9uZ1x1MDAzZVxuICAgIFx1MDAzY2JyXHUw |
| + | MDNlXG4gICAgXHUwMDNjc3Ryb25nXHUwMDNlUGx1cyDDoCBub3RyZSBzdWpl |
| + | dDogeyUgbGlua190byBhYm91dC11cywgbG9jYWxlOiBmciAlfVF1aSBzb21t |
| + | ZXMgbm91cyA/eyUgZW5kbGlua190byAlfVx1MDAzYy9zdHJvbmdcdTAwM2Vc |
| + | biAgICBcdTAwM2Niclx1MDAzZVxuICAgIHslIGFzc2lnbiBzb25nID0gY29u |
| + | dGVudHMuc29uZ3MuZmlyc3QgJX1cbiAgICBcdTAwM2NzdHJvbmdcdTAwM2V7 |
| + | JSBsaW5rX3RvIHNvbmcgJX1cdTAwM2Mvc3Ryb25nXHUwMDNlXG4gICAgXHUw |
| + | MDNjYnJcdTAwM2VcbiAgICB7JSBhc3NpZ24gYW5vdGhlcl9zb25nID0gY29u |
| + | dGVudHMuc29uZ3MubGFzdCAlfVxuICAgIFx1MDAzY3N0cm9uZ1x1MDAzZXsl |
| + | IGxpbmtfdG8gYW5vdGhlcl9zb25nLCB3aXRoOiBhLXNvbmctdGVtcGxhdGUg |
| + | JX1cdTAwM2Mvc3Ryb25nXHUwMDNlXG4gIFx1MDAzYy9wXHUwMDNlXG5cdTAw |
| + | M2MvZGl2XHUwMDNlXG57JSBlbmRibG9jayAlfVxuIiwiZWRpdGFibGVfZWxl |
| + | bWVudHMiOltdLCJzZW9fdGl0bGUiOm51bGwsIm1ldGFfa2V5d29yZHMiOm51 |
| + | bGwsIm1ldGFfZGVzY3JpcHRpb24iOm51bGx9 |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:19 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -17727,7 +17453,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -17741,31 +17467,27 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1037' |
| Etag: | |
| - | - W/"1c0504047f59474c51a821b2cb0bd688" |
| + | - W/"6fb0a60e3d734435f8d50138bddc3182" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5cf7c09c-10da-42ec-a05a-4fad6739b8f2 |
| + | - 135d97a5-ec67-4b95-abd3-26541ff14d79 |
| X-Runtime: | |
| - | - '0.059807' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.055367' |
| + | Content-Length: |
| + | - '1035' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed2750000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"A |
| - | sample contest","parent_id":"5563aae66469646ed2020000","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"contest","fullpath":"contest","localized_fullpaths":{"en":"contest","fr":"fr/contest","nb":"nb/contest"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450c6469646eb800009f","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"A |
| + | sample contest","parent_id":"55ba45046469646eb8000002","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"contest","fullpath":"contest","localized_fullpaths":{"en":"contest","fr":"fr/contest","nb":"nb/contest"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends ''parent'' %}\n{% block content %}\n\u003ch1\u003eContest sample\u003c/h1\u003e\n{% | |
| if session.already_participated %}\n\u003cp\u003eYou''ve already participated | |
| to that contest ! Come back later.\u003c/p\u003e\n{% else %}\n\u003cp\u003eYour | |
| code is: HELLO WORLD\u003c/p\u003e\n{% session_assign already_participated | |
| = true %}\n{% endif %}\n{% endblock %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -17780,7 +17502,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -17794,26 +17516,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '692' |
| Etag: | |
| - | - W/"01ffc269cfb64b92c1350ac10ee9d0b1" |
| + | - W/"262dfb53aa41eb4a969c27afe73f77ce" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 2f1bd96b-4309-4e3e-9e50-d90203a98c3c |
| + | - af3be4e8-6703-49eb-8e0e-1354fb8520ff |
| X-Runtime: | |
| - | - '0.051831' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.049659' |
| + | Content-Length: |
| + | - '670' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed2760000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Archives","parent_id":"5563aae66469646ed2020000","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"archives","fullpath":"archives","localized_fullpaths":{"en":"archives","fr":"fr/archives","nb":"nb/archives"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| - | extends ''parent'' %}","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| + | string: '{"_id":"55ba450c6469646eb80000a0","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"Archives","parent_id":"55ba45046469646eb8000002","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"archives","fullpath":"archives","localized_fullpaths":{"en":"archives","fr":"fr/archives","nb":"nb/archives"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":null,"editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -17828,7 +17545,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -17842,24 +17559,20 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1345' |
| Etag: | |
| - | - W/"97232af29255e822f512b46ec33963f1" |
| + | - W/"794cd69cf28d6c1ec48763c050e54bbd" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c11cad2c-1ad1-4af1-8c81-ea18d9aceba0 |
| + | - 76fbcab3-56d4-430d-a0e2-55f956433231 |
| X-Runtime: | |
| - | - '0.064410' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.064210' |
| + | Content-Length: |
| + | - '1343' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed2770000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Various |
| - | uses of the with_scope tag","parent_id":"5563aae66469646ed2020000","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"filtered","fullpath":"filtered","localized_fullpaths":{"en":"filtered","fr":"fr/filtered","nb":"nb/filtered"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450c6469646eb80000a1","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"Various |
| + | uses of the with_scope tag","parent_id":"55ba45046469646eb8000002","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"filtered","fullpath":"filtered","localized_fullpaths":{"en":"filtered","fr":"fr/filtered","nb":"nb/filtered"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| assign begin_date = ''2012-06-01 00:00:00'' %}\n{% assign end_date = ''2012-06-10 | |
| 23:59:59'' %}\n{% assign prices = ''5.0,5.5'' | split: '','' | map: ''to_f'' | |
| %}\n{% with_scope date.gte: begin_date, date.lte: end_date, city: /Kansas/, | |
| @@ | @@ -17870,7 +17583,7 @@ http_interactions: |
| = false %}\n{% with_scope featured: featured %}\nbands={{ contents.bands.count | |
| }}.\n{% endwith_scope %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -17885,7 +17598,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -17899,28 +17612,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '818' |
| Etag: | |
| - | - W/"f60432e0f750c25833aa4f3894c539d7" |
| + | - W/"b81eef6ab5bef733c055b8918d740f6f" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - add725a6-3f37-4d7f-9a83-177102547029 |
| + | - 7a8c02ed-7bbd-4d7f-aa03-08fd28946682 |
| X-Runtime: | |
| - | - '0.058091' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.053903' |
| + | Content-Length: |
| + | - '816' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed2780000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Grunge |
| - | leaders","parent_id":"5563aae66469646ed2020000","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"grunge-bands","fullpath":"grunge-bands","localized_fullpaths":{"en":"grunge-bands","fr":"fr/grunge-bands","nb":"nb/grunge-bands"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450c6469646eb80000a2","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"Grunge |
| + | leaders","parent_id":"55ba45046469646eb8000002","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"grunge-bands","fullpath":"grunge-bands","localized_fullpaths":{"en":"grunge-bands","fr":"fr/grunge-bands","nb":"nb/grunge-bands"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| with_scope kind: \"grunge\" %}\n{% for band in contents.bands %}\n{{ band.leader | |
| }}\n{% endfor %}\n{% endwith_scope %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -17935,7 +17644,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -17949,30 +17658,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '933' |
| Etag: | |
| - | - W/"5a95637fb01301414fb6953116084266" |
| + | - W/"7a49ad63eb4ec15a7e76346ac6d1129b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - bc553133-92f4-4c8c-8357-e098e8826e88 |
| + | - 1d9f82ac-aba4-4bfa-914a-2151085814ed |
| X-Runtime: | |
| - | - '0.059458' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.070159' |
| + | Content-Length: |
| + | - '931' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed2790000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"All |
| - | the pages","parent_id":"5563aae66469646ed2020000","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"all","fullpath":"all","localized_fullpaths":{"en":"all","fr":"fr/all","nb":"nb/all"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450c6469646eb80000a3","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"All |
| + | the pages","parent_id":"55ba45046469646eb8000002","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"all","fullpath":"all","localized_fullpaths":{"en":"all","fr":"fr/all","nb":"nb/all"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n{% block content %}\n\u003cul\u003e\n{% for page in site.pages | |
| %}\n\u003cli\u003e{{ page.title }}\u003c/li\u003e\n{% endfor %}\n\u003c/ul\u003e\n{% | |
| fetch_page our-music as my_page %}\n\u003cp\u003eSingle page: {{ my_page.title | |
| }}\u003c/p\u003e\n{% endblock %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -17987,7 +17692,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18001,26 +17706,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '686' |
| Etag: | |
| - | - W/"6cf11c26af29a3938ba1a984641d93af" |
| + | - W/"c884b901b5d7b0e30902913fcb04ab7f" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f237e984-fa7c-4624-9891-c749ed4aab0d |
| + | - 6a029d02-9dd7-4244-a477-ec4411e0b0a1 |
| X-Runtime: | |
| - | - '0.050929' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.077569' |
| + | Content-Length: |
| + | - '664' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed27a0000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Layouts","parent_id":"5563aae66469646ed2020000","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"layouts","fullpath":"layouts","localized_fullpaths":{"en":"layouts","fr":"fr/layouts","nb":"nb/layouts"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| - | extends ''parent'' %}","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| + | string: '{"_id":"55ba450c6469646eb80000a4","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"Layouts","parent_id":"55ba45046469646eb8000002","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"layouts","fullpath":"layouts","localized_fullpaths":{"en":"layouts","fr":"fr/layouts","nb":"nb/layouts"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":null,"editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18035,7 +17735,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18049,26 +17749,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '674' |
| Etag: | |
| - | - W/"7cd5f5a48e704accc7ff0824559dbcc3" |
| + | - W/"b56ce2e21ce472fc1a618ae6f8075be4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ab6182fe-5f10-4aa9-8748-3d9428ed3294 |
| + | - 84fb34bd-63d8-43fa-9cfa-549d082b3c1a |
| X-Runtime: | |
| - | - '0.063558' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.050293' |
| + | Content-Length: |
| + | - '652' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed27b0000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Songs","parent_id":"5563aae66469646ed2020000","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"songs","fullpath":"songs","localized_fullpaths":{"en":"songs","fr":"fr/songs","nb":"nb/songs"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| - | extends ''parent'' %}","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| + | string: '{"_id":"55ba450c6469646eb80000a5","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"Songs","parent_id":"55ba45046469646eb8000002","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"songs","fullpath":"songs","localized_fullpaths":{"en":"songs","fr":"fr/songs","nb":"nb/songs"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":null,"editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18083,7 +17778,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18097,28 +17792,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '892' |
| Etag: | |
| - | - W/"698879623b64f6673860cc8b395b0968" |
| + | - W/"7f7e880b745611adbca01be55b5aae50" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 32d90e66-a7b2-4eff-8921-b335439b99ad |
| + | - df67e394-a269-40eb-9f3f-84922b56764e |
| X-Runtime: | |
| - | - '0.051551' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.061814' |
| + | Content-Length: |
| + | - '890' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed27c0000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Unlisted |
| - | pages","parent_id":"5563aae66469646ed2020000","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"unlisted-pages","fullpath":"unlisted-pages","localized_fullpaths":{"en":"unlisted-pages","fr":"fr/unlisted-pages","nb":"nb/unlisted-pages"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"\u003cul\u003e\n {% |
| + | string: '{"_id":"55ba450c6469646eb80000a6","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"Unlisted |
| + | pages","parent_id":"55ba45046469646eb8000002","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"unlisted-pages","fullpath":"unlisted-pages","localized_fullpaths":{"en":"unlisted-pages","fr":"fr/unlisted-pages","nb":"nb/unlisted-pages"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"\u003cul\u003e\n {% |
| with_scope listed: false %}\n {% for page in site.pages %}\n \u003cli\u003e{{ | |
| page.title }}\u003c/li\u003e\n {% endfor %}\n {% endwith_scope %}\n\u003c/ul\u003e\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18133,7 +17824,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18147,26 +17838,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '668' |
| Etag: | |
| - | - W/"d51d25fc71e0a2c3df9713bff81f9c03" |
| + | - W/"8f364b870cdff3313ba84f76e3a92bbd" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f7445046-93fc-4c95-8071-3deb63a58635 |
| + | - 92555c66-096e-43b6-a543-184f13d2b711 |
| X-Runtime: | |
| - | - '0.064123' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.051089' |
| + | Content-Length: |
| + | - '646' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed27d0000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Tags","parent_id":"5563aae66469646ed2020000","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"tags","fullpath":"tags","localized_fullpaths":{"en":"tags","fr":"fr/tags","nb":"nb/tags"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| - | extends ''parent'' %}","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| + | string: '{"_id":"55ba450c6469646eb80000a7","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"Tags","parent_id":"55ba45046469646eb8000002","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"tags","fullpath":"tags","localized_fullpaths":{"en":"tags","fr":"fr/tags","nb":"nb/tags"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":null,"editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18181,7 +17867,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18195,30 +17881,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '725' |
| Etag: | |
| - | - W/"35508235576d2ba54f4ebe6bb7953655" |
| + | - W/"dc7e85f63f32e75c13f7d584e41beb9f" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 172df5db-a7db-4038-94ab-f2ff752d5ef1 |
| + | - 387142ab-2214-4ace-b300-790f8e5f5f3f |
| X-Runtime: | |
| - | - '0.057646' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.066763' |
| + | Content-Length: |
| + | - '726' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed27e0000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"John |
| - | doe","parent_id":"5563aaeb6469646ed26e0000","position":1,"handle":null,"depth":2,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"slug":"john-doe","fullpath":"about-us/john-doe","localized_fullpaths":{"en":"about-us/john-doe","fr":"fr/about-us/john-doe","nb":"nb/about-us/john-doe"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450c6469646eb80000a8","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"John |
| + | doe","parent_id":"55ba450b6469646eb8000098","position":1,"handle":null,"depth":2,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"slug":"john-doe","fullpath":"about-us/john-doe","localized_fullpaths":{"en":"about-us/john-doe","fr":"fr/a-notre-sujet/john-doe","nb":"nb/om-oss/john-doe"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5563aaec6469646ed27e0000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/55ba450c6469646eb80000a8.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Bis_layout%5D=false&page%5Blisted%5D=true&page%5Bparent%5D=about-us&page%5Bposition%5D=1&page%5Bpublished%5D=true&page%5Bslug%5D=jean-personne&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A&page%5Btitle%5D=Jean+Personne | |
| @@ | @@ -18230,7 +17912,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -18246,27 +17928,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '760' |
| Etag: | |
| - | - W/"bc5d7a620934364adca90e8675701d51" |
| + | - W/"a35d917ffb718d8b9aea0c86a24a527f" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 88fab209-52e2-4a01-ab8b-77b622d287d3 |
| + | - acb5373d-4074-43e6-9a40-95c97260770c |
| X-Runtime: | |
| - | - '0.039141' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.041803' |
| + | Content-Length: |
| + | - '758' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed27e0000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Jean |
| - | Personne","parent_id":"5563aaeb6469646ed26e0000","position":1,"handle":null,"depth":2,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"slug":"jean-personne","fullpath":"a-notre-sujet/jean-personne","localized_fullpaths":{"en":"about-us/john-doe","fr":"fr/a-notre-sujet/jean-personne","nb":"nb/about-us/john-doe"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450c6469646eb80000a8","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"Jean |
| + | Personne","parent_id":"55ba450b6469646eb8000098","position":1,"handle":null,"depth":2,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"slug":"jean-personne","fullpath":"a-notre-sujet/jean-personne","localized_fullpaths":{"en":"about-us/john-doe","fr":"fr/a-notre-sujet/jean-personne","nb":"nb/om-oss/john-doe"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18281,7 +17959,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18295,27 +17973,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '726' |
| Etag: | |
| - | - W/"08914dec8a6f4c8aa2d8425962646c21" |
| + | - W/"0b59d9264a5ed73d719eb87b7a3fb7f4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e3bfb203-f248-46bb-911c-52220543a51e |
| + | - 1d52845d-0f85-43a1-8c45-1f7c081ea0af |
| X-Runtime: | |
| - | - '0.064033' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.071572' |
| + | Content-Length: |
| + | - '727' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed27f0000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Jane |
| - | doe","parent_id":"5563aaeb6469646ed26e0000","position":2,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"jane-doe","fullpath":"about-us/jane-doe","localized_fullpaths":{"en":"about-us/jane-doe","fr":"fr/about-us/jane-doe","nb":"nb/about-us/jane-doe"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450c6469646eb80000a9","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"Jane |
| + | doe","parent_id":"55ba450b6469646eb8000098","position":2,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"jane-doe","fullpath":"about-us/jane-doe","localized_fullpaths":{"en":"about-us/jane-doe","fr":"fr/a-notre-sujet/jane-doe","nb":"nb/om-oss/jane-doe"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18330,7 +18004,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18344,30 +18018,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1089' |
| Etag: | |
| - | - W/"fb5647c7174de0e976fc9bfddd880507" |
| + | - W/"cc6960a028c7aea0a2701704e4efea0b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a8b4198f-ac22-487e-a242-f15dbc6fd836 |
| + | - def8c852-68ce-43e0-88e9-88a943297e7e |
| X-Runtime: | |
| - | - '0.054739' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.056169' |
| + | Content-Length: |
| + | - '1087' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed2800000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"My |
| - | simple layout","parent_id":"5563aaec6469646ed27a0000","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"simple","fullpath":"layouts/simple","localized_fullpaths":{"en":"layouts/simple","fr":"fr/layouts/simple","nb":"nb/layouts/simple"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":true,"allow_layout":true,"template":"\u003c!DOCTYPE |
| + | string: '{"_id":"55ba450c6469646eb80000aa","created_at":"2015-07-30T15:38:52Z","updated_at":"2015-07-30T15:38:52Z","title":"My |
| + | simple layout","parent_id":"55ba450c6469646eb80000a4","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"simple","fullpath":"layouts/simple","localized_fullpaths":{"en":"layouts/simple","fr":"fr/layouts/simple","nb":"nb/layouts/simple"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":true,"allow_layout":true,"template":"\u003c!DOCTYPE |
| html\u003e\n\u003chtml lang=''en''\u003e\n \u003chead\u003e\u003c/head\u003e\n \u003cbody\u003e\n \u003ch1\u003e{% | |
| editable_short_text title %}[TODO]{% endeditable_short_text %}\u003c/h1\u003e\n \u003cdiv | |
| class=''text''\u003e\n {% editable_text content, format: html, rows: | |
| 5 %}[TODO]{% editable_text %}\n \u003c/div\u003e\n \u003c/body\u003e\n\u003c/html\u003e\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18382,7 +18052,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18396,27 +18066,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '767' |
| Etag: | |
| - | - W/"52cc8a25cbbdfc2a00c8fcd0ff68dd55" |
| + | - W/"bffabf216194313bce1db7bcf704717e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 30d47684-cf3e-4a53-b19c-55d49c077535 |
| + | - b7cd575b-7785-4153-85c0-f86384badf42 |
| X-Runtime: | |
| - | - '0.060471' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.066280' |
| + | Content-Length: |
| + | - '765' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed2810000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Page |
| - | to test the nav tag with a high depth","parent_id":"5563aaec6469646ed27d0000","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"nav-in-deep","fullpath":"tags/nav-in-deep","localized_fullpaths":{"en":"tags/nav-in-deep","fr":"fr/tags/nav-in-deep","nb":"nb/tags/nav-in-deep"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450d6469646eb80000ab","created_at":"2015-07-30T15:38:53Z","updated_at":"2015-07-30T15:38:53Z","title":"Page |
| + | to test the nav tag with a high depth","parent_id":"55ba450c6469646eb80000a7","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"nav-in-deep","fullpath":"tags/nav-in-deep","localized_fullpaths":{"en":"tags/nav-in-deep","fr":"fr/tags/nav-in-deep","nb":"nb/tags/nav-in-deep"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| nav ''site'', depth: 2 %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18431,7 +18097,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18445,27 +18111,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '697' |
| Etag: | |
| - | - W/"d7f1d4479e99afb795ba245e9e1c2099" |
| + | - W/"2a699fb88d50b445003a36c593cb849e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a2f0c79a-f28d-428c-8abd-18cd310e4732 |
| + | - 033ec570-b0f1-4b51-adbb-68c055a7df99 |
| X-Runtime: | |
| - | - '0.048760' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.066401' |
| + | Content-Length: |
| + | - '695' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaec6469646ed2820000","created_at":"2015-05-25T23:06:20Z","updated_at":"2015-05-25T23:06:20Z","title":"Page |
| - | to test the nav tag","parent_id":"5563aaec6469646ed27d0000","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"nav","fullpath":"tags/nav","localized_fullpaths":{"en":"tags/nav","fr":"fr/tags/nav","nb":"nb/tags/nav"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450d6469646eb80000ac","created_at":"2015-07-30T15:38:53Z","updated_at":"2015-07-30T15:38:53Z","title":"Page |
| + | to test the nav tag","parent_id":"55ba450c6469646eb80000a7","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"slug":"nav","fullpath":"tags/nav","localized_fullpaths":{"en":"tags/nav","fr":"fr/tags/nav","nb":"nb/tags/nav"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| nav site %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:20 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18480,7 +18142,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18494,24 +18156,20 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1248' |
| Etag: | |
| - | - W/"051303ac45afd70744b4c37410e5a773" |
| + | - W/"dca5c813f01f8efe436538f1666d6a66" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 24701e6c-7590-42e2-beeb-7a7643e7e9b4 |
| + | - 89055689-f96a-4b3c-bf76-16ec812c788b |
| X-Runtime: | |
| - | - '0.073384' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.078218' |
| + | Content-Length: |
| + | - '1246' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed2830000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","title":"A |
| - | song template","parent_id":"5563aaec6469646ed27b0000","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"content_type_template","fullpath":"songs/content_type_template","localized_fullpaths":{"en":"songs/content_type_template","fr":"fr/songs/content_type_template","nb":"nb/songs/content_type_template"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":true,"templatized_from_parent":false,"content_type":"songs","is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450d6469646eb80000ad","created_at":"2015-07-30T15:38:53Z","updated_at":"2015-07-30T15:38:53Z","title":"A |
| + | song template","parent_id":"55ba450c6469646eb80000a5","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"content_type_template","fullpath":"songs/content_type_template","localized_fullpaths":{"en":"songs/content_type_template","fr":"fr/songs/content_type_template","nb":"nb/songs/content_type_template"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":true,"templatized_from_parent":false,"content_type":"songs","is_layout":false,"allow_layout":true,"template":"{% |
| extends ''index'' %}\n{% block content %}\n\u003ch3\u003e{{ song.title }}\u003c/h3\u003e\n\u003cp\u003e{{ | |
| song.short_description }}\u003c/p\u003e\n\u003cdiv id=''is_templatized'' templatized=''{{ | |
| page.templatized? }}''\u003e\u003c/div\u003e\n\u003cdiv content_type_size=''{{ | |
| @@ | @@ -18519,10 +18177,10 @@ http_interactions: |
| content_type_count=''{{ page.content_type.count }}'' id=''content_type_count''\u003e\u003c/div\u003e\n{% | |
| endblock %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5563aaed6469646ed2830000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/55ba450d6469646eb80000ad.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Bcontent_type%5D=songs&page%5Bhandle%5D=a-song-template&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=songs&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=content_type_template&page%5Btemplate%5D=%7B%25+extends+%27index%27+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Ch3%3E%7B%7B+song.title+%7D%7D+%5BFR%5D%3C%2Fh3%3E%0A%3Cp%3E%7B%7B+song.short_description+%7D%7D%3C%2Fp%3E%0A%3Cdiv+id%3D%27is_templatized%27+templatized%3D%27%7B%7B+page.templatized%3F+%7D%7D%27%3E%3C%2Fdiv%3E%0A%3Cdiv+content_type_size%3D%27%7B%7B+page.content_type.size+%7D%7D%27+id%3D%27content_type_size%27%3E%3C%2Fdiv%3E%0A%3Cdiv+content_type_count%3D%27%7B%7B+page.content_type.count+%7D%7D%27+id%3D%27content_type_count%27%3E%3C%2Fdiv%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=Le+template+d%27une+chanson | |
| @@ | @@ -18534,7 +18192,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| @@ | @@ -18550,24 +18208,20 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1256' |
| Etag: | |
| - | - W/"d47826e8e3d1805a34db898d1cf1debd" |
| + | - W/"ec9e71c097b184b26e1d085c9b4e8d1a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 74c8cd20-b1e6-4893-83a8-aa1b5f97005f |
| + | - 1ecfdf72-91bb-4f47-9d0b-49b38e72ff94 |
| X-Runtime: | |
| - | - '0.071429' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.070838' |
| + | Content-Length: |
| + | - '1268' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed2830000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","title":"Le |
| - | template d''une chanson","parent_id":"5563aaec6469646ed27b0000","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr"],"slug":"content_type_template","fullpath":"content_type_template","localized_fullpaths":{"en":"songs/content_type_template","fr":"fr/content_type_template","nb":"nb/songs/content_type_template"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":true,"templatized_from_parent":false,"content_type":"songs","is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450d6469646eb80000ad","created_at":"2015-07-30T15:38:53Z","updated_at":"2015-07-30T15:38:53Z","title":"Le |
| + | template d''une chanson","parent_id":"55ba450c6469646eb80000a5","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr"],"slug":"content_type_template","fullpath":"songs/content_type_template","localized_fullpaths":{"en":"songs/content_type_template","fr":"fr/songs/content_type_template","nb":"nb/songs/content_type_template"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":true,"templatized_from_parent":false,"content_type":"songs","is_layout":false,"allow_layout":true,"template":"{% |
| extends ''index'' %}\n{% block content %}\n\u003ch3\u003e{{ song.title }} | |
| [FR]\u003c/h3\u003e\n\u003cp\u003e{{ song.short_description }}\u003c/p\u003e\n\u003cdiv | |
| id=''is_templatized'' templatized=''{{ page.templatized? }}''\u003e\u003c/div\u003e\n\u003cdiv | |
| @@ | @@ -18575,10 +18229,10 @@ http_interactions: |
| content_type_count=''{{ page.content_type.count }}'' id=''content_type_count''\u003e\u003c/div\u003e\n{% | |
| endblock %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/5563aaed6469646ed2830000.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/55ba450d6469646eb80000ad.json |
| body: | |
| encoding: UTF-8 | |
| string: auth_token=6UA3Po7vVz4Ry34swEqa&page%5Bcontent_type%5D=songs&page%5Bhandle%5D=a-song-template&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=songs&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=content_type_template | |
| @@ | @@ -18590,7 +18244,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| X-Locomotive-Locale: | |
| - nb | |
| Content-Type: | |
| @@ | @@ -18606,26 +18260,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '776' |
| Etag: | |
| - | - W/"d8f378020c423b68342cd8df43a9f31c" |
| + | - W/"a8f56b8fe009a98061ea09ca64bdc8e3" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f30f3d06-bd08-479e-962d-0b97b4724b3b |
| + | - 1055f716-e50d-4206-8b2e-95ed66e85f9f |
| X-Runtime: | |
| - | - '0.088995' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.063623' |
| + | Content-Length: |
| + | - '774' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed2830000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","title":null,"parent_id":"5563aaec6469646ed27b0000","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr"],"slug":"content_type_template","fullpath":"content_type_template","localized_fullpaths":{"en":"songs/content_type_template","fr":"fr/content_type_template","nb":"nb/content_type_template"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":true,"templatized_from_parent":false,"content_type":"songs","is_layout":false,"allow_layout":true,"template":"{% |
| - | extends ''parent'' %}","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| + | string: '{"_id":"55ba450d6469646eb80000ad","created_at":"2015-07-30T15:38:53Z","updated_at":"2015-07-30T15:38:53Z","title":null,"parent_id":"55ba450c6469646eb80000a5","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr"],"slug":"content_type_template","fullpath":"songs/content_type_template","localized_fullpaths":{"en":"songs/content_type_template","fr":"fr/songs/content_type_template","nb":"nb/songs/content_type_template"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":true,"templatized_from_parent":false,"content_type":"songs","is_layout":false,"allow_layout":true,"template":null,"editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18640,7 +18289,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18654,28 +18303,24 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '807' |
| Etag: | |
| - | - W/"89dc34e95f44884365566a10e0d76c0c" |
| + | - W/"6fbf3e2a1f9d0bed8d8657031a4ead13" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 82ad0c25-e2c9-4c16-a968-29e5d4aa1e4a |
| + | - 6800e356-7763-4e88-9f7b-5d94c7cfe9ad |
| X-Runtime: | |
| - | - '0.054251' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.065990' |
| + | Content-Length: |
| + | - '805' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed2840000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","title":"News |
| - | archive","parent_id":"5563aaec6469646ed2760000","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"news","fullpath":"archives/news","localized_fullpaths":{"en":"archives/news","fr":"fr/archives/news","nb":"nb/archives/news"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450d6469646eb80000ae","created_at":"2015-07-30T15:38:53Z","updated_at":"2015-07-30T15:38:53Z","title":"News |
| + | archive","parent_id":"55ba450c6469646eb80000a0","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"news","fullpath":"archives/news","localized_fullpaths":{"en":"archives/news","fr":"fr/archives/news","nb":"nb/archives/news"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n{% block content %}\n\u003cp\u003eNews Archives. Lorem | |
| ipsum....\u003c/p\u003e\n{% endblock %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -18690,7 +18335,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18704,23 +18349,19 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '1229' |
| Etag: | |
| - | - W/"a23447cb524206bd93b9ef7fafcdc7f7" |
| + | - W/"dfb6d193d1b2079fa726b9f88f601eff" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4a61a8f9-c5aa-427d-acb3-d82befa36f45 |
| + | - 6ca14d19-04da-4ca2-86e4-5a4a1fb5110c |
| X-Runtime: | |
| - | - '0.071412' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.087426' |
| + | Content-Length: |
| + | - '1227' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed2850000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","title":"Band","parent_id":"5563aaed6469646ed2830000","position":99,"handle":null,"depth":3,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"band","fullpath":"songs/content_type_template/band","localized_fullpaths":{"en":"songs/content_type_template/band","fr":"fr/songs/content_type_template/band","nb":"nb/songs/content_type_template/band"},"redirect":false,"redirect_url":null,"redirect_type":301,"templatized":true,"templatized_from_parent":true,"content_type":"songs","is_layout":false,"allow_layout":true,"template":"{% |
| + | string: '{"_id":"55ba450d6469646eb80000af","created_at":"2015-07-30T15:38:53Z","updated_at":"2015-07-30T15:38:53Z","title":"Band","parent_id":"55ba450d6469646eb80000ad","position":99,"handle":null,"depth":3,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"slug":"band","fullpath":"songs/content_type_template/band","localized_fullpaths":{"en":"songs/content_type_template/band","fr":"fr/songs/content_type_template/band","nb":"nb/songs/content_type_template/band"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":true,"templatized_from_parent":true,"content_type":"songs","is_layout":false,"allow_layout":true,"template":"{% |
| extends parent %}\n{% block content %}\n\u003ch3\u003e{{ song.title }}\u003c/h3\u003e\n\u003ch4\u003eLeader: | |
| {{ song.band.leader }}\u003c/h4\u003e\n\u003cdiv id=''is_templatized'' templatized=''{{ | |
| page.templatized? }}''\u003e\u003c/div\u003e\n\u003cdiv content_type_size=''{{ | |
| @@ | @@ -18728,7 +18369,7 @@ http_interactions: |
| content_type_count=''{{ page.content_type.count }}'' id=''content_type_count''\u003e\u003c/div\u003e\n{% | |
| endblock %}\n","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/song.json | |
| @@ | @@ -18743,7 +18384,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18757,26 +18398,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '744' |
| Etag: | |
| - | - W/"36f90f660d05ba23b708641a2281f8ab" |
| + | - W/"698d8ab0ad942ef8ec65edfa10a025db" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 3eccb848-83c1-4ebb-85a3-a618e83382f8 |
| + | - 44f95d54-f7c9-4189-b7aa-9bb236b858c1 |
| X-Runtime: | |
| - | - '0.045604' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.056244' |
| + | Content-Length: |
| + | - '744' |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NTYzYWFlZDY0Njk2NDZlZDI4NjAwMDAiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNS0wNS0yNVQyMzowNjoyMVoiLCJ1cGRhdGVkX2F0IjoiMjAxNS0w |
| - | NS0yNVQyMzowNjoyMVoiLCJuYW1lIjoiU29uZyIsInNsdWciOiJzb25nIiwi |
| + | eyJfaWQiOiI1NWJhNDUwZDY0Njk2NDZlYjgwMDAwYjAiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNS0wNy0zMFQxNTozODo1M1oiLCJ1cGRhdGVkX2F0IjoiMjAxNS0w |
| + | Ny0zMFQxNTozODo1M1oiLCJuYW1lIjoiU29uZyIsInNsdWciOiJzb25nIiwi |
| dGVtcGxhdGUiOiJcdTAwM2NsaVx1MDAzZVxuICBcdTAwM2NoM1x1MDAzZVx1 | |
| MDAzY2EgaHJlZj1cInslIHBhdGhfdG8gc29uZywgd2l0aDogYS1zb25nLXRl | |
| bXBsYXRlICV9XCJcdTAwM2V7eyBzb25nLnRpdGxlIH19XHUwMDNjL2FcdTAw | |
| @@ | @@ -18792,7 +18429,7 @@ http_interactions: |
| IFx1MDAzY2RpdiBjbGFzcz1cImNsZWFyXCJcdTAwM2VcdTAwM2MvZGl2XHUw | |
| MDNlXG5cdTAwM2MvbGlcdTAwM2VcbiJ9 | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/a_complicated-one.json | |
| @@ | @@ -18807,7 +18444,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18821,27 +18458,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '233' |
| Etag: | |
| - | - W/"bbd4aadc2ef9afccd6e3ecd206163a72" |
| + | - W/"d65c7b142b6d14f089d80de72017c1fe" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b6d154e9-4903-4e7c-b41e-8c051aed8260 |
| + | - f12f61d8-52ef-4b23-88db-6767bafc988c |
| X-Runtime: | |
| - | - '0.024549' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.026480' |
| + | Content-Length: |
| + | - '233' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed2870000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","name":"A |
| + | string: '{"_id":"55ba450d6469646eb80000b1","created_at":"2015-07-30T15:38:53Z","updated_at":"2015-07-30T15:38:53Z","name":"A |
| complicated-one","slug":"a_complicated-one","template":"\u003cp\u003eA complicated | |
| one name indeed.\u003c/p\u003e\n"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/footer.json | |
| @@ | @@ -18856,7 +18489,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18870,30 +18503,26 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '726' |
| Etag: | |
| - | - W/"17887529dbc13d127390d16009cc65fe" |
| + | - W/"1bf6be345289f2d35050a6c4b4f6e73b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7076495a-95fc-4774-bc33-5cc3915366ae |
| + | - 61b8fcdf-a5b3-496c-b0f5-03aea6c0c1cc |
| X-Runtime: | |
| - | - '0.029203' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.034008' |
| + | Content-Length: |
| + | - '726' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed2880000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","name":"Footer","slug":"footer","template":"\u003cp\u003e{% |
| + | string: '{"_id":"55ba450d6469646eb80000b2","created_at":"2015-07-30T15:38:53Z","updated_at":"2015-07-30T15:38:53Z","name":"Footer","slug":"footer","template":"\u003cp\u003e{% |
| locale_switcher %}\u003c/p\u003e\n\u003cp\u003e\n {{ ''powered_by'' | translate | |
| }} \u003ca href=\"http://www.locomotivecms.com\"\u003eLocomotiveCMS\u003c/a\u003e. | |
| Designed by \u003ca href=\"http://www.sachagreif.com\"\u003eSacha Greif\u003c/a\u003e.\n\u003c/p\u003e\n\u003cp\u003e\n All | |
| photos are licensed under Creative Commons. (see original ones \u003ca href=''http://www.flickr.com/photos/38687875@N00/3391588262/''\u003ehere\u003c/a\u003e | |
| or \u003ca href=''http://www.flickr.com/photos/cool_dry_place/55454498/''\u003ehere\u003c/a\u003e).\n\u003c/p\u003e\n"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/header.json | |
| @@ | @@ -18908,7 +18537,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -18922,32 +18551,28 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '198' |
| Etag: | |
| - | - W/"07ec3b5073c3c5f87d2bac6ff2361c43" |
| + | - W/"f2cb3fbae95ab7368a826cebbb723d74" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8d535002-3e22-43b6-b1c7-8d0d5c491164 |
| + | - 5f7710e2-b8d2-4a4e-8de7-cfd8db8d58c1 |
| X-Runtime: | |
| - | - '0.029276' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.032823' |
| + | Content-Length: |
| + | - '198' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed2890000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","name":"Header","slug":"header","template":"\u003ch1\u003e{{ |
| + | string: '{"_id":"55ba450d6469646eb80000b3","created_at":"2015-07-30T15:38:53Z","updated_at":"2015-07-30T15:38:53Z","name":"Header","slug":"header","template":"\u003ch1\u003e{{ |
| site.name }}\u003c/h1\u003e\n"}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json |
| + | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json?auth_token=6UA3Po7vVz4Ry34swEqa |
| body: | |
| - | encoding: UTF-8 |
| - | string: auth_token=6UA3Po7vVz4Ry34swEqa |
| + | encoding: US-ASCII |
| + | string: '' |
| headers: | |
| Accept: | |
| - application/json | |
| @@ | @@ -18956,9 +18581,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| - | Content-Type: |
| - | - application/x-www-form-urlencoded |
| + | - stunning-chasm-9771 |
| Accept-Encoding: | |
| - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 | |
| User-Agent: | |
| @@ | @@ -18970,25 +18593,21 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '2' |
| Etag: | |
| - W/"d751713988987e9331980363e24189ce" | |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7f73523b-3a7e-4f88-abb8-1011e9865b63 |
| + | - cbbf7ed1-1c14-4f4e-bf2d-285e331a0cd6 |
| X-Runtime: | |
| - | - '0.052756' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.042339' |
| + | Content-Length: |
| + | - '2' |
| body: | |
| encoding: UTF-8 | |
| string: "[]" | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -19871,7 +19490,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -19887,26 +19506,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '336' |
| Etag: | |
| - | - W/"a25635d84c92f8c077ca49c6bda9e952" |
| + | - W/"01a557fc453c71c22b50c205f8de46f4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 3998bab5-39f2-4fa9-8ac7-bfafe377fa7e |
| + | - 350110ba-5ee3-432c-9b6f-fa3764de6717 |
| X-Runtime: | |
| - | - '0.143445' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.166631' |
| + | Content-Length: |
| + | - '336' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed28a0000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","content_type":"font","folder":"fonts","checksum":"6080441fde50c4839c23c79b937f0194","local_path":"chunkfive-webfont.eot","url":"/sites/5563aae56469646ed2000000/theme/fonts/chunkfive-webfont.eot","size":"37.5 |
| + | string: '{"_id":"55ba450d6469646eb80000b4","created_at":"2015-07-30T15:38:54Z","updated_at":"2015-07-30T15:38:54Z","content_type":"font","folder":"fonts","checksum":"6080441fde50c4839c23c79b937f0194","local_path":"chunkfive-webfont.eot","url":"/sites/55ba45046469646eb8000000/theme/fonts/chunkfive-webfont.eot","size":"37.5 |
| KB","raw_size":38434}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -20563,7 +20178,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -20579,26 +20194,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '336' |
| Etag: | |
| - | - W/"681660480dbcebee15def9d268ddb81a" |
| + | - W/"3dde63e6ef5d2ebf7fa5274c2463a56c" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - eee7d3d0-9377-4480-a859-7abab70d68e7 |
| + | - 82280bee-79d8-44cd-ba73-104e9ab9403a |
| X-Runtime: | |
| - | - '0.026752' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.027532' |
| + | Content-Length: |
| + | - '336' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed28b0000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","content_type":"font","folder":"fonts","checksum":"57d0f66913a8c0e172ae3fe78ce36e43","local_path":"chunkfive-webfont.svg","url":"/sites/5563aae56469646ed2000000/theme/fonts/chunkfive-webfont.svg","size":"49.4 |
| + | string: '{"_id":"55ba450e6469646eb80000b5","created_at":"2015-07-30T15:38:54Z","updated_at":"2015-07-30T15:38:54Z","content_type":"font","folder":"fonts","checksum":"57d0f66913a8c0e172ae3fe78ce36e43","local_path":"chunkfive-webfont.svg","url":"/sites/55ba45046469646eb8000000/theme/fonts/chunkfive-webfont.svg","size":"49.4 |
| KB","raw_size":50602}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -21475,7 +21086,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -21491,26 +21102,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '336' |
| Etag: | |
| - | - W/"7653f8a34e1202df2cb9a620867e021f" |
| + | - W/"a8ca45ef6e718e3f6d590b853e180464" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 852b41a8-0f32-455d-b7e0-df5105e35939 |
| + | - 9a9c0947-4f3b-4784-8f33-f40d62d81f92 |
| X-Runtime: | |
| - | - '0.031269' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.039847' |
| + | Content-Length: |
| + | - '336' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed28c0000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","content_type":"font","folder":"fonts","checksum":"439633444f9d32a30a4449da967853d2","local_path":"chunkfive-webfont.ttf","url":"/sites/5563aae56469646ed2000000/theme/fonts/chunkfive-webfont.ttf","size":"37.3 |
| + | string: '{"_id":"55ba450e6469646eb80000b6","created_at":"2015-07-30T15:38:54Z","updated_at":"2015-07-30T15:38:54Z","content_type":"font","folder":"fonts","checksum":"439633444f9d32a30a4449da967853d2","local_path":"chunkfive-webfont.ttf","url":"/sites/55ba45046469646eb8000000/theme/fonts/chunkfive-webfont.ttf","size":"37.3 |
| KB","raw_size":38156}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22036,7 +21643,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -22052,26 +21659,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '338' |
| Etag: | |
| - | - W/"7c42048c95157d8612bcf22d1bf27c41" |
| + | - W/"45f697756d80db619e836e8bcb175bbe" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 08140e89-7fc9-4e3a-9079-06199bf6a197 |
| + | - 572a63b5-7b36-46f7-b96b-16704b09a666 |
| X-Runtime: | |
| - | - '0.037229' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.034152' |
| + | Content-Length: |
| + | - '338' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed28d0000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","content_type":"font","folder":"fonts","checksum":"8174fa67890a6af9c0b05432d21afdbd","local_path":"chunkfive-webfont.woff","url":"/sites/5563aae56469646ed2000000/theme/fonts/chunkfive-webfont.woff","size":"21.9 |
| + | string: '{"_id":"55ba450e6469646eb80000b7","created_at":"2015-07-30T15:38:54Z","updated_at":"2015-07-30T15:38:54Z","content_type":"font","folder":"fonts","checksum":"8174fa67890a6af9c0b05432d21afdbd","local_path":"chunkfive-webfont.woff","url":"/sites/55ba45046469646eb8000000/theme/fonts/chunkfive-webfont.woff","size":"21.9 |
| KB","raw_size":22384}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22382,7 +21985,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -22398,26 +22001,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '311' |
| Etag: | |
| - | - W/"fe3fd5c6794773aa6d39530beaa493d0" |
| + | - W/"89156f77a2e0ea7790d7675715308732" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 34dc4f8e-1d76-4113-b5e3-c2f017d4a9d9 |
| + | - a4701301-f9fa-46fa-ae4d-7f7bb9bd86dd |
| X-Runtime: | |
| - | - '0.053880' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.058552' |
| + | Content-Length: |
| + | - '311' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed28e0000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","content_type":"image","folder":"images","checksum":"3f6a15f2ce89235092ae25b125084dd7","local_path":"top.jpg","url":"/sites/5563aae56469646ed2000000/theme/images/top.jpg","size":"12.4 |
| + | string: '{"_id":"55ba450e6469646eb80000b8","created_at":"2015-07-30T15:38:54Z","updated_at":"2015-07-30T15:38:54Z","content_type":"image","folder":"images","checksum":"3f6a15f2ce89235092ae25b125084dd7","local_path":"top.jpg","url":"/sites/55ba45046469646eb8000000/theme/images/top.jpg","size":"12.4 |
| KB","raw_size":12697}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:21 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22688,7 +22287,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -22704,26 +22303,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '320' |
| Etag: | |
| - | - W/"727f14d45c20756db4434280a59e655a" |
| + | - W/"0c118cb37dabe673ac97c0cd955c7815" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7870ce40-03fd-4520-8582-9b344a3e55b6 |
| + | - d4564a4b-0e69-4070-ac86-d1037fcc63e1 |
| X-Runtime: | |
| - | - '0.056241' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.045974' |
| + | Content-Length: |
| + | - '320' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaed6469646ed28f0000","created_at":"2015-05-25T23:06:21Z","updated_at":"2015-05-25T23:06:21Z","content_type":"font","folder":"fonts","checksum":"473f634053172a656b38f4d791d294c8","local_path":"chunkfive.otf","url":"/sites/5563aae56469646ed2000000/theme/fonts/chunkfive.otf","size":"10.7 |
| + | string: '{"_id":"55ba450e6469646eb80000b9","created_at":"2015-07-30T15:38:54Z","updated_at":"2015-07-30T15:38:54Z","content_type":"font","folder":"fonts","checksum":"473f634053172a656b38f4d791d294c8","local_path":"chunkfive.otf","url":"/sites/55ba45046469646eb8000000/theme/fonts/chunkfive.otf","size":"10.7 |
| KB","raw_size":10916}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:22 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22754,7 +22349,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -22770,26 +22365,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '317' |
| Etag: | |
| - | - W/"ed4b5d502ab1c55a42ec7d9750c1679f" |
| + | - W/"91fb168ab59ed6a83ea0bb3df56039a0" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 91f6d954-68a7-418c-ae8c-b77da4a8de81 |
| + | - 867b2e9c-3aae-4d2c-bd58-e205918f28c4 |
| X-Runtime: | |
| - | - '0.058133' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.051346' |
| + | Content-Length: |
| + | - '317' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaee6469646ed2900000","created_at":"2015-05-25T23:06:22Z","updated_at":"2015-05-25T23:06:22Z","content_type":"image","folder":"images","checksum":"edb293028f9c07f2d692d066cd8a458a","local_path":"nav_on.png","url":"/sites/5563aae56469646ed2000000/theme/images/nav_on.png","size":"115 |
| + | string: '{"_id":"55ba450e6469646eb80000ba","created_at":"2015-07-30T15:38:54Z","updated_at":"2015-07-30T15:38:54Z","content_type":"image","folder":"images","checksum":"edb293028f9c07f2d692d066cd8a458a","local_path":"nav_on.png","url":"/sites/55ba45046469646eb8000000/theme/images/nav_on.png","size":"115 |
| Bytes","raw_size":115}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:22 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22991,7 +22582,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23007,26 +22598,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '325' |
| Etag: | |
| - | - W/"55998d5abb668cd843bc66bf5f16094a" |
| + | - W/"bd5d27b0ef66b8761fe6ddb28e562e10" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - bf478778-772a-4273-8c7e-a5de77058f59 |
| + | - 3c790732-e13b-4881-adda-d21ac1d5b505 |
| X-Runtime: | |
| - | - '0.054422' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.066089' |
| + | Content-Length: |
| + | - '325' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaee6469646ed2910000","created_at":"2015-05-25T23:06:22Z","updated_at":"2015-05-25T23:06:22Z","content_type":"image","folder":"images","checksum":"93c2911287a5754bed65a028c6aa4a7c","local_path":"photo_frame.png","url":"/sites/5563aae56469646ed2000000/theme/images/photo_frame.png","size":"7.6 |
| + | string: '{"_id":"55ba450e6469646eb80000bb","created_at":"2015-07-30T15:38:54Z","updated_at":"2015-07-30T15:38:54Z","content_type":"image","folder":"images","checksum":"93c2911287a5754bed65a028c6aa4a7c","local_path":"photo_frame.png","url":"/sites/55ba45046469646eb8000000/theme/images/photo_frame.png","size":"7.6 |
| KB","raw_size":7780}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:22 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23082,7 +22669,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23098,26 +22685,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '310' |
| Etag: | |
| - | - W/"22b9e5188f9ce838093ac44595e3cd6e" |
| + | - W/"99ffc807d4ea935db77b2fba9d084f92" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 0421e547-7bca-493c-b970-a9c9cb8a4a5d |
| + | - 0340604d-189b-416d-bdbd-d712f31403f0 |
| X-Runtime: | |
| - | - '0.058026' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.060415' |
| + | Content-Length: |
| + | - '310' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaee6469646ed2920000","created_at":"2015-05-25T23:06:22Z","updated_at":"2015-05-25T23:06:22Z","content_type":"image","folder":"images","checksum":"89e0275185e661639fb14130410843b6","local_path":"sep.png","url":"/sites/5563aae56469646ed2000000/theme/images/sep.png","size":"1.18 |
| + | string: '{"_id":"55ba450e6469646eb80000bc","created_at":"2015-07-30T15:38:54Z","updated_at":"2015-07-30T15:38:54Z","content_type":"image","folder":"images","checksum":"89e0275185e661639fb14130410843b6","local_path":"sep.png","url":"/sites/55ba45046469646eb8000000/theme/images/sep.png","size":"1.18 |
| KB","raw_size":1213}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:22 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23152,7 +22735,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23168,26 +22751,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '326' |
| Etag: | |
| - | - W/"8ca31de8024b62ce8e2c8c0881fe83eb" |
| + | - W/"4dff6955b1385316a12a1ea2afe139b9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ce754fd9-332c-4560-94f3-005cd4726bee |
| + | - 1bc4cd71-cbb5-4b72-b4f1-4d24b2b07b67 |
| X-Runtime: | |
| - | - '0.030704' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.039722' |
| + | Content-Length: |
| + | - '326' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaee6469646ed2930000","created_at":"2015-05-25T23:06:22Z","updated_at":"2015-05-25T23:06:22Z","content_type":"stylesheet","folder":"fonts","checksum":"b3ad3bfa2aff9de913bf42f84ad1fecf","local_path":"chunkfive.css","url":"/sites/5563aae56469646ed2000000/theme/fonts/chunkfive.css","size":"279 |
| + | string: '{"_id":"55ba450f6469646eb80000bd","created_at":"2015-07-30T15:38:55Z","updated_at":"2015-07-30T15:38:55Z","content_type":"stylesheet","folder":"fonts","checksum":"b3ad3bfa2aff9de913bf42f84ad1fecf","local_path":"chunkfive.css","url":"/sites/55ba45046469646eb8000000/theme/fonts/chunkfive.css","size":"279 |
| Bytes","raw_size":279}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:22 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:55 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23208,7 +22787,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23224,26 +22803,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '338' |
| Etag: | |
| - | - W/"e45dfdfa6b2ab0c1d9bdee4dc40593ec" |
| + | - W/"7be8bf31708f56809d88a14880479b74" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5afa9697-0efd-45b0-b277-f967d2c49b99 |
| + | - 04a3caff-9f04-4baa-9e4c-f478f6e18e84 |
| X-Runtime: | |
| - | - '0.028425' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.034985' |
| + | Content-Length: |
| + | - '338' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaef6469646ed2940000","created_at":"2015-05-25T23:06:23Z","updated_at":"2015-05-25T23:06:23Z","content_type":"javascript","folder":"javascripts","checksum":"dafcc4a2f059c53e47bf8d7ea4dd1e11","local_path":"application.js","url":"/sites/5563aae56469646ed2000000/theme/javascripts/application.js","size":"84 |
| + | string: '{"_id":"55ba450f6469646eb80000be","created_at":"2015-07-30T15:38:55Z","updated_at":"2015-07-30T15:38:55Z","content_type":"javascript","folder":"javascripts","checksum":"dafcc4a2f059c53e47bf8d7ea4dd1e11","local_path":"application.js","url":"/sites/55ba45046469646eb8000000/theme/javascripts/application.js","size":"84 |
| Bytes","raw_size":84}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:23 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:55 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23263,7 +22838,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23279,26 +22854,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '328' |
| Etag: | |
| - | - W/"b3f6128e24ad6daadc5dcfee8a88745b" |
| + | - W/"7b0895224c0732a54e784afa68bcbbc0" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ea11eac8-b5e9-4584-936e-b32168feeb55 |
| + | - 3528aaee-4bb3-4397-a5a9-ff428001493d |
| X-Runtime: | |
| - | - '0.027959' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.031660' |
| + | Content-Length: |
| + | - '328' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaf06469646ed2950000","created_at":"2015-05-25T23:06:24Z","updated_at":"2015-05-25T23:06:24Z","content_type":"javascript","folder":"javascripts","checksum":"d05d02ecb331afbe373db79b0a88ef36","local_path":"common.js","url":"/sites/5563aae56469646ed2000000/theme/javascripts/common.js","size":"27 |
| + | string: '{"_id":"55ba45106469646eb80000bf","created_at":"2015-07-30T15:38:56Z","updated_at":"2015-07-30T15:38:56Z","content_type":"javascript","folder":"javascripts","checksum":"d05d02ecb331afbe373db79b0a88ef36","local_path":"common.js","url":"/sites/55ba45046469646eb8000000/theme/javascripts/common.js","size":"27 |
| Bytes","raw_size":27}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:24 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:56 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23339,7 +22910,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23355,26 +22926,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '341' |
| Etag: | |
| - | - W/"587e307f934e2cad47451a99e1651796" |
| + | - W/"28d5fcc67b87de3595adfac6b6321315" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8b59e85c-af70-4a21-8cef-ead2db507b00 |
| + | - 1bb8976e-6403-40a6-b8d3-6335d9ee766f |
| X-Runtime: | |
| - | - '0.040847' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.075287' |
| + | Content-Length: |
| + | - '341' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaf06469646ed2960000","created_at":"2015-05-25T23:06:24Z","updated_at":"2015-05-25T23:06:24Z","content_type":"stylesheet","folder":"stylesheets","checksum":"3bacf4c2b7877e230e6990d72dae7724","local_path":"application.css","url":"/sites/5563aae56469646ed2000000/theme/stylesheets/application.css","size":"2.51 |
| + | string: '{"_id":"55ba45106469646eb80000c0","created_at":"2015-07-30T15:38:57Z","updated_at":"2015-07-30T15:38:57Z","content_type":"stylesheet","folder":"stylesheets","checksum":"3bacf4c2b7877e230e6990d72dae7724","local_path":"application.css","url":"/sites/55ba45046469646eb8000000/theme/stylesheets/application.css","size":"2.51 |
| KB","raw_size":2573}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:24 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:57 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23394,7 +22961,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23410,26 +22977,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '346' |
| Etag: | |
| - | - W/"d5a0a5139bc39d2985237583520989fa" |
| + | - W/"1f7132217563e5e02d8274585e95342d" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8c023aa9-2d00-4df7-8cd3-a991ccab5f39 |
| + | - 4238b9a9-995a-492e-ae3a-aaf66b9f0e0d |
| X-Runtime: | |
| - | - '0.027777' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.038009' |
| + | Content-Length: |
| + | - '346' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaf16469646ed2970000","created_at":"2015-05-25T23:06:25Z","updated_at":"2015-05-25T23:06:25Z","content_type":"stylesheet","folder":"stylesheets/other","checksum":"15d3d9555deface69d6ab9e7fd972638","local_path":"other/extra.css","url":"/sites/5563aae56469646ed2000000/theme/stylesheets/other/extra.css","size":"39 |
| + | string: '{"_id":"55ba45116469646eb80000c1","created_at":"2015-07-30T15:38:57Z","updated_at":"2015-07-30T15:38:57Z","content_type":"stylesheet","folder":"stylesheets/other","checksum":"15d3d9555deface69d6ab9e7fd972638","local_path":"other/extra.css","url":"/sites/55ba45046469646eb8000000/theme/stylesheets/other/extra.css","size":"39 |
| Bytes","raw_size":39}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:25 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:57 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23466,7 +23029,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23482,26 +23045,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '347' |
| Etag: | |
| - | - W/"3cb4e2f57c04093df1bd7eecd215e562" |
| + | - W/"865e20d6cff7ff1b6d7b364d10648345" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 40287b8c-db10-4b0e-b8ab-fdb0daf38ce0 |
| + | - 28ed81c8-05f4-4783-adcc-7454a9880f40 |
| X-Runtime: | |
| - | - '0.028015' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.038321' |
| + | Content-Length: |
| + | - '347' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaf16469646ed2980000","created_at":"2015-05-25T23:06:25Z","updated_at":"2015-05-25T23:06:25Z","content_type":"stylesheet","folder":"stylesheets/other","checksum":"ad2e36fdbc6b9ea164f875e19af0c90e","local_path":"other/style.css","url":"/sites/5563aae56469646ed2000000/theme/stylesheets/other/style.css","size":"1.42 |
| + | string: '{"_id":"55ba45126469646eb80000c2","created_at":"2015-07-30T15:38:58Z","updated_at":"2015-07-30T15:38:58Z","content_type":"stylesheet","folder":"stylesheets/other","checksum":"ad2e36fdbc6b9ea164f875e19af0c90e","local_path":"other/style.css","url":"/sites/55ba45046469646eb8000000/theme/stylesheets/other/style.css","size":"1.42 |
| KB","raw_size":1452}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:25 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:58 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23575,7 +23134,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| @@ | @@ -23591,26 +23150,22 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '331' |
| Etag: | |
| - | - W/"f0513065c3895beb7abd624b093b345a" |
| + | - W/"7f557b53cf56974d974285fb29da70c9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b8db43f2-14e4-4d3d-baab-d5eaddfc9dd6 |
| + | - 024177e6-cd55-4e46-9d95-3eedbf0c2363 |
| X-Runtime: | |
| - | - '0.028848' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.040615' |
| + | Content-Length: |
| + | - '331' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"5563aaf16469646ed2990000","created_at":"2015-05-25T23:06:25Z","updated_at":"2015-05-25T23:06:25Z","content_type":"stylesheet","folder":"stylesheets","checksum":"9c8d599c19ffda3aa2e157b7a1d1ebce","local_path":"reboot.css","url":"/sites/5563aae56469646ed2000000/theme/stylesheets/reboot.css","size":"1.99 |
| + | string: '{"_id":"55ba45126469646eb80000c3","created_at":"2015-07-30T15:38:58Z","updated_at":"2015-07-30T15:38:58Z","content_type":"stylesheet","folder":"stylesheets","checksum":"9c8d599c19ffda3aa2e157b7a1d1ebce","local_path":"reboot.css","url":"/sites/55ba45046469646eb8000000/theme/stylesheets/reboot.css","size":"1.99 |
| KB","raw_size":2041}' | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:25 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:58 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/translations/powered_by.json | |
| @@ | @@ -23625,7 +23180,7 @@ http_interactions: |
| X-Locomotive-Account-Token: | |
| - 6UA3Po7vVz4Ry34swEqa | |
| X-Locomotive-Site-Handle: | |
| - | - undisturbed-mist-8792 |
| + | - stunning-chasm-9771 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| Accept-Encoding: | |
| @@ | @@ -23639,27 +23194,23 @@ http_interactions: |
| headers: | |
| Content-Type: | |
| - application/json | |
| - | Content-Length: |
| - | - '175' |
| Etag: | |
| - | - W/"4b6c4101876ce5620dea12945aaf3489" |
| + | - W/"00582fde36bbe704b035076274faeb9e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 6377bc47-b40a-40fe-9c4d-12f04b1a99db |
| + | - fe7b6de8-7e46-40e8-a14a-91a51f23ccfa |
| X-Runtime: | |
| - | - '0.071326' |
| - | Connection: |
| - | - keep-alive |
| - | Server: |
| - | - thin |
| + | - '0.054226' |
| + | Content-Length: |
| + | - '175' |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NTYzYWFmMTY0Njk2NDZlZDI5YTAwMDAiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNS0wNS0yNVQyMzowNjoyNVoiLCJ1cGRhdGVkX2F0IjoiMjAxNS0w |
| - | NS0yNVQyMzowNjoyNVoiLCJrZXkiOiJwb3dlcmVkX2J5IiwidmFsdWVzIjp7 |
| + | eyJfaWQiOiI1NWJhNDUxMjY0Njk2NDZlYjgwMDAwYzQiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNS0wNy0zMFQxNTozODo1OFoiLCJ1cGRhdGVkX2F0IjoiMjAxNS0w |
| + | Ny0zMFQxNTozODo1OFoiLCJrZXkiOiJwb3dlcmVkX2J5IiwidmFsdWVzIjp7 |
| ImVuIjoiUG93ZXJlZCBieSIsImZyIjoiUHJvcHVsc8OpIHBhciJ9fQ== | |
| http_version: | |
| - | recorded_at: Mon, 25 May 2015 23:06:25 GMT |
| + | recorded_at: Thu, 30 Jul 2015 15:38:58 GMT |
| recorded_with: VCR 2.9.3 | |