fix a bug when pulling the metafields schema of a site + deploy a page without an error if a remote page exists with the same handle but a different slug (it has to be in the same folder)
did
committed Mar 21, 2016
commit 5757a32e96f0ee91d6d30e95342f038c2031a4c0
Showing 9
changed files with
2310 additions
and 1799 deletions
Gemfile
+1
-1
| @@ | @@ -8,7 +8,7 @@ gem 'rb-fsevent', '~> 0.9.1' |
| # Development | |
| # gem 'locomotivecms_common', github: 'locomotivecms/common', ref: '257047b', require: false | |
| # gem 'locomotivecms_coal', github: 'locomotivecms/coal', ref: 'f4ff435', require: false | |
| - | # gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: 'c44f003', require: false |
| + | gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: 'a3054f1', require: false |
| # Local development | |
| # gem 'locomotivecms_coal', path: '../gems/coal', require: false | |
locomotive/wagon/commands/pull_sub_commands/pull_site_command.rb b/lib/locomotive/wagon/commands/pull_sub_commands/pull_site_command.rb
+25
-3
| @@ | @@ -39,11 +39,23 @@ module Locomotive::Wagon |
| end | |
| end | |
| - | def write_metafields_schema(schema) |
| - | return if schema.blank? |
| + | def decode_metafields_schema(schema) |
| + | if schema.is_a?(Array) |
| + | schema = array_of_hash_to_hash(schema, 'name') do |namespace| |
| + | namespace['fields'] = array_of_hash_to_hash(namespace.delete('fields'), 'name') |
| + | end |
| + | end |
| + | |
| + | schema |
| + | end |
| + | |
| + | def write_metafields_schema(json) |
| + | return if json.blank? |
| + | |
| + | schema = decode_metafields_schema(JSON.parse(json)) |
| File.open(File.join(path, 'config', 'metafields_schema.yml'), 'wb') do |file| | |
| - | file.write JSON.parse(schema).to_yaml |
| + | file.write schema.to_yaml |
| end | |
| end | |
| @@ | @@ -58,6 +70,16 @@ module Locomotive::Wagon |
| attributes['metafields'] = replace_asset_urls_in_hash(metafields) | |
| end | |
| + | def array_of_hash_to_hash(array, name, &block) |
| + | {}.tap do |hash| |
| + | (array || []).each do |element| |
| + | key = element.delete(name) |
| + | hash[key] = element |
| + | yield element if block_given? |
| + | end |
| + | end |
| + | end |
| + | |
| def localized_attributes(&block) | |
| %w(seo_title meta_keywords meta_description).each do |name| | |
| yield(name) | |
locomotive/wagon/commands/push_sub_commands/push_pages_command.rb b/lib/locomotive/wagon/commands/push_sub_commands/push_pages_command.rb
+48
-4
| @@ | @@ -18,13 +18,15 @@ module Locomotive::Wagon |
| end | |
| def persist(decorated_entity) | |
| - | decorated_entity._id = remote_id = remote_entity_id(decorated_entity.fullpath) |
| + | decorated_entity._id = remote_id = remote_entity_id(decorated_entity) |
| translated_in(decorated_entity) do |locale| | |
| if remote_id.nil? | |
| remote_id = api_client.pages.create(decorated_entity.to_hash)._id | |
| - | else |
| + | elsif can_update?(decorated_entity) |
| api_client.pages.update(remote_id, decorated_entity.to_hash, locale) | |
| + | else |
| + | raise "The local and the remote (#{remote_entity_fullpath_from_handle(decorated_entity)}) versions of that page have the same handle but they are not in the same folder." |
| end | |
| end | |
| end | |
| @@ | @@ -46,20 +48,62 @@ module Locomotive::Wagon |
| PageDecorator.new(entity, default_locale, content_assets_pusher, persist_content) | |
| end | |
| - | def remote_entity_id(fullpath) |
| + | def can_update?(local_entity) |
| + | if local_entity.handle && id = remote_entity_id_from_handle(local_entity) |
| + | remote_entity_folder_path(id) == local_entity.folder_path |
| + | else |
| + | true |
| + | end |
| + | end |
| + | |
| + | def remote_entity_id(local_entity) |
| + | remote_entity_id_from_fullpath(local_entity) || remote_entity_id_from_handle(local_entity) |
| + | end |
| + | |
| + | def remote_entity_id_from_fullpath(local_entity) |
| + | fullpath = local_entity.fullpath |
| remote_entities[fullpath] || remote_entities[fullpath.dasherize] | |
| end | |
| + | def remote_entity_id_from_handle(local_entity) |
| + | remote_entities[local_entity.handle.try(:to_sym)] |
| + | end |
| + | |
| + | def remote_entity_fullpath_from_handle(local_entity) |
| + | id = remote_entity_id_from_handle(local_entity) |
| + | remote_entities_by_id[id] |
| + | end |
| + | |
| def remote_entities | |
| return @remote_entities if @remote_entities | |
| @remote_entities = {}.tap do |hash| | |
| api_client.pages.fullpaths(default_locale).each do |entity| | |
| - | hash[entity.fullpath] = entity._id |
| + | hash[entity.fullpath] = entity._id |
| + | |
| + | if entity.respond_to?(:handle) && entity.handle.present? |
| + | # to_sym: trick to not have conflicts with fullpaths |
| + | hash[entity.handle.to_sym] = entity._id |
| + | end |
| end | |
| end | |
| end | |
| + | def remote_entity_folder_path(id) |
| + | if path = remote_entities_by_id[id] |
| + | *segments, slug = path.split('/') |
| + | segments.join('/') |
| + | else |
| + | nil |
| + | end |
| + | end |
| + | |
| + | def remote_entities_by_id |
| + | @remote_entities_by_id ||= remote_entities.each_with_object({}) do |(key, value), out| |
| + | out[value] = key if key.is_a?(String) |
| + | end |
| + | end |
| + | |
| def translated_in(decorated_entity, &block) | |
| locales.find_all do |locale| | |
| decorated_entity.__with_locale__(locale) do | |
locomotive/wagon/decorators/page_decorator.rb b/lib/locomotive/wagon/decorators/page_decorator.rb
+10
-0
| @@ | @@ -30,6 +30,11 @@ module Locomotive |
| _attributes -= %i(title published listed position seo_title meta_keywords meta_description editable_elements) | |
| end | |
| + | # no need to update the slug if this is for an update |
| + | # in case of a localized site, if this is a new page, the _id will remain empty |
| + | # for the other locales. |
| + | _attributes -= %i(slug) if persisted? |
| + | |
| _attributes | |
| end | |
| @@ | @@ -77,6 +82,11 @@ module Locomotive |
| replace_with_content_assets!(self.liquid_source) | |
| end | |
| + | def folder_path |
| + | *segments, slug = fullpath.split('/') |
| + | segments.join('/') |
| + | end |
| + | |
| private | |
| def persisted? | |
spec/fixtures/cassettes/authenticate.yml
+59
-49
| @@ | @@ -7,14 +7,16 @@ http_interactions: |
| encoding: UTF-8 | |
| string: email=john%40doe.net&password=asimplepassword | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:40 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 401 | |
| @@ | @@ -27,16 +29,16 @@ http_interactions: |
| Cache-Control: | |
| - no-cache | |
| X-Request-Id: | |
| - | - 4c1dde74-5ab5-47e1-878b-6bafaa3ae31d |
| + | - f97c50d2-f8ae-4fd8-bce0-3b623afae5f3 |
| X-Runtime: | |
| - | - '0.491453' |
| + | - '0.448075' |
| Content-Length: | |
| - '40' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"message":"Invalid email or password."}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:45 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:41 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/my_account.json | |
| @@ | @@ -44,14 +46,16 @@ http_interactions: |
| encoding: UTF-8 | |
| string: account%5Bemail%5D=john%40doe.net&account%5Bname%5D=John&account%5Bpassword%5D=asimplepassword | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:41 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -60,20 +64,20 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ecd8bcbc56ad219c12f928c0c7642228" |
| + | - W/"13d961357bc8b2ce65f4f13ee8adba85" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 163cedb0-c315-4318-905a-2ca2184c2865 |
| + | - a3c557e9-41e9-44dc-ae1d-91af5ddd3b96 |
| X-Runtime: | |
| - | - '0.086436' |
| + | - '0.098826' |
| Content-Length: | |
| - '250' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df41c3651180309c60d3","created_at":"2016-02-17T20:59:45Z","updated_at":"2016-02-17T20:59:45Z","name":"John","email":"john@doe.net","locale":"en","api_key":"3f7bb7a02a1ad6c3e285beda89e6e8a3f75d9154","super_admin":false,"local_admin":false}' |
| + | string: '{"_id":"56f03129c36511207342cbcb","created_at":"2016-03-21T17:36:41Z","updated_at":"2016-03-21T17:36:41Z","name":"John","email":"john@doe.net","locale":"en","api_key":"901baf472a28a8e3a6a871255c90b232de964686","super_admin":false,"local_admin":false}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:45 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:41 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/tokens.json | |
| @@ | @@ -81,14 +85,16 @@ http_interactions: |
| encoding: UTF-8 | |
| string: email=admin%40locomotivecms.com&password=locomotive | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:41 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -97,37 +103,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"9f0203483ba848323bbda0b85ed7725e" |
| + | - W/"3cfd61d41b23cdfb3d8833133c136131" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4aed7a00-f72d-4367-890b-d827b3cff156 |
| + | - 805ec3c4-ce19-4edb-bd06-6b499447f2a1 |
| X-Runtime: | |
| - | - '0.015710' |
| + | - '0.016118' |
| Content-Length: | |
| - '32' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"token":"e1QSfNaw8zQM7rWX5CPf"}' |
| + | string: '{"token":"V8VMCfCsp7XzQLvAd1AY"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:45 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:41 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:41 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| + | - V8VMCfCsp7XzQLvAd1AY |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -136,37 +144,39 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7d8f03d047be776ab17daf20e33dc4ad" |
| + | - W/"2ce6a3f4e073d2d83a53613d0139477e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 18bee298-4a65-4938-9e2f-f80f0c82f53e |
| + | - e4ca46c9-4c89-42db-9bdb-ca21e8adb1a9 |
| X-Runtime: | |
| - | - '0.027460' |
| + | - '0.029466' |
| Content-Length: | |
| - '261' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df17c36511800c8b9037","created_at":"2016-02-17T20:59:03Z","updated_at":"2016-02-17T20:59:03Z","name":"Admin","email":"admin@locomotivecms.com","locale":"en","api_key":"d49cd50f6f0d2b163f48fc73cb249f0244c37074","super_admin":false,"local_admin":true}' |
| + | string: '{"_id":"56f03072c365112052cab389","created_at":"2016-03-21T17:33:38Z","updated_at":"2016-03-21T17:33:38Z","name":"Admin","email":"admin@locomotivecms.com","locale":"en","api_key":"d49cd50f6f0d2b163f48fc73cb249f0244c37074","super_admin":false,"local_admin":true}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:45 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:41 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://localhost:3000/locomotive/api/v3/my_account.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:41 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| + | - V8VMCfCsp7XzQLvAd1AY |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -175,18 +185,18 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7d8f03d047be776ab17daf20e33dc4ad" |
| + | - W/"2ce6a3f4e073d2d83a53613d0139477e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 58ee0cc3-0a25-43f6-ab83-ec81d9ed63ff |
| + | - 059e56ad-ec66-4fa7-98a4-85f7eb38746c |
| X-Runtime: | |
| - | - '0.015876' |
| + | - '0.019939' |
| Content-Length: | |
| - '261' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df17c36511800c8b9037","created_at":"2016-02-17T20:59:03Z","updated_at":"2016-02-17T20:59:03Z","name":"Admin","email":"admin@locomotivecms.com","locale":"en","api_key":"d49cd50f6f0d2b163f48fc73cb249f0244c37074","super_admin":false,"local_admin":true}' |
| + | string: '{"_id":"56f03072c365112052cab389","created_at":"2016-03-21T17:33:38Z","updated_at":"2016-03-21T17:33:38Z","name":"Admin","email":"admin@locomotivecms.com","locale":"en","api_key":"d49cd50f6f0d2b163f48fc73cb249f0244c37074","super_admin":false,"local_admin":true}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:45 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:41 GMT |
| recorded_with: VCR 3.0.0 | |
spec/fixtures/cassettes/delete.yml
+322
-272
| @@ | @@ -7,14 +7,16 @@ http_interactions: |
| encoding: UTF-8 | |
| string: api_key=d49cd50f6f0d2b163f48fc73cb249f0244c37074&email=admin%40locomotivecms.com | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:41 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23,39 +25,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"9f0203483ba848323bbda0b85ed7725e" |
| + | - W/"3cfd61d41b23cdfb3d8833133c136131" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 91661840-0eee-42b0-a8b9-06ae34e11217 |
| + | - 56ca1f53-bb6f-46f0-8880-c306e2b008f3 |
| X-Runtime: | |
| - | - '0.016238' |
| + | - '0.019778' |
| Content-Length: | |
| - '32' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"token":"e1QSfNaw8zQM7rWX5CPf"}' |
| + | string: '{"token":"V8VMCfCsp7XzQLvAd1AY"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:45 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:41 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/sites.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&site%5Bhandle%5D=short-lived&site%5Bname%5D=ShortLived |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&site%5Bhandle%5D=short-lived&site%5Bname%5D=ShortLived |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:41 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -64,20 +68,20 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"16820d932237a07f224ca87685fdfe1e" |
| + | - W/"68ff9e906d520e9432a37f1832b415cc" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e325231e-6104-4451-97ab-6ac344695a67 |
| + | - 28845bd2-79b1-4a8c-979e-c83f63c1a018 |
| X-Runtime: | |
| - | - '0.712128' |
| + | - '0.760876' |
| Content-Length: | |
| - | - '821' |
| + | - '840' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df41c3651180309c60d4","created_at":"2016-02-17T20:59:45Z","updated_at":"2016-02-17T20:59:46Z","name":"ShortLived","handle":"short-lived","seo_title":null,"meta_keywords":null,"meta_description":null,"robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"56c4df41c3651180309c60d5","created_at":null,"updated_at":null,"role":"admin","account_id":"56c4df17c36511800c8b9037","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":null,"content_version":0,"template_version":1455742786,"picture_thumbnail_url":null,"preview_url":"http://www.example.com:3000/locomotive/short-lived/preview","sign_in_url":"http://www.example.com:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"null"}' |
| + | string: '{"_id":"56f03129c36511207342cbcc","created_at":"2016-03-21T17:36:41Z","updated_at":"2016-03-21T17:36:42Z","name":"ShortLived","handle":"short-lived","seo_title":null,"meta_keywords":null,"meta_description":null,"robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"56f03129c36511207342cbcd","created_at":null,"updated_at":null,"role":"admin","account_id":"56f03072c365112052cab389","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":null,"content_version":0,"template_version":1458581802,"picture_thumbnail_url":null,"preview_url":"http://www.example.com:3000/locomotive/short-lived/preview","sign_in_url":"http://www.example.com:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:46 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:42 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/tokens.json | |
| @@ | @@ -85,14 +89,16 @@ http_interactions: |
| encoding: UTF-8 | |
| string: api_key=d49cd50f6f0d2b163f48fc73cb249f0244c37074&email=admin%40locomotivecms.com | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:42 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -101,39 +107,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"9f0203483ba848323bbda0b85ed7725e" |
| + | - W/"3cfd61d41b23cdfb3d8833133c136131" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a65db570-a359-49d0-9a33-53ec29faaf7d |
| + | - 3db44a54-eb15-42d9-86a1-c050fde4ba03 |
| X-Runtime: | |
| - | - '0.017416' |
| + | - '0.016238' |
| Content-Length: | |
| - '32' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"token":"e1QSfNaw8zQM7rWX5CPf"}' |
| + | string: '{"token":"V8VMCfCsp7XzQLvAd1AY"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:46 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:42 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/current_site.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/current_site.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:42 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - short-lived | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -142,41 +150,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"16820d932237a07f224ca87685fdfe1e" |
| + | - W/"68ff9e906d520e9432a37f1832b415cc" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 3c2d7425-ad27-407b-944c-8d8550b69ff0 |
| + | - e66f5795-4838-4949-a93b-7d83a4f592be |
| X-Runtime: | |
| - | - '0.181599' |
| + | - '0.209256' |
| Content-Length: | |
| - | - '821' |
| + | - '840' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df41c3651180309c60d4","created_at":"2016-02-17T20:59:45Z","updated_at":"2016-02-17T20:59:46Z","name":"ShortLived","handle":"short-lived","seo_title":null,"meta_keywords":null,"meta_description":null,"robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"56c4df41c3651180309c60d5","created_at":null,"updated_at":null,"role":"admin","account_id":"56c4df17c36511800c8b9037","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":null,"content_version":0,"template_version":1455742786,"picture_thumbnail_url":null,"preview_url":"http://www.example.com:3000/locomotive/short-lived/preview","sign_in_url":"http://www.example.com:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"null"}' |
| + | string: '{"_id":"56f03129c36511207342cbcc","created_at":"2016-03-21T17:36:41Z","updated_at":"2016-03-21T17:36:42Z","name":"ShortLived","handle":"short-lived","seo_title":null,"meta_keywords":null,"meta_description":null,"robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"56f03129c36511207342cbcd","created_at":null,"updated_at":null,"role":"admin","account_id":"56f03072c365112052cab389","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":null,"content_version":0,"template_version":1458581802,"picture_thumbnail_url":null,"preview_url":"http://www.example.com:3000/locomotive/short-lived/preview","sign_in_url":"http://www.example.com:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:46 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:42 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bparent%5D=index&page%5Bslug%5D=hello-world&page%5Btemplate%5D=Hello+world%21&page%5Btitle%5D=Hello+world |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bparent%5D=index&page%5Bslug%5D=hello-world&page%5Btemplate%5D=Hello+world%21&page%5Btitle%5D=Hello+world |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:42 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -185,41 +195,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"66303f05748ecaa04e5348b1e3fd0c81" |
| + | - W/"8d3c66450565a3207046e1624e6d93a2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9597be72-8a5e-4429-80ce-faba4f48031b |
| + | - 55c76c24-8ad3-44ef-81f6-253b960d71e7 |
| X-Runtime: | |
| - | - '0.049800' |
| + | - '0.055086' |
| Content-Length: | |
| - '673' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df42c3651180309c60d9","created_at":"2016-02-17T20:59:46Z","updated_at":"2016-02-17T20:59:46Z","title":"Hello |
| - | world","parent_id":"56c4df17c36511800c8b903a","position":0,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":false,"translated_in":["en"],"cache_enabled":true,"slug":"hello-world","fullpath":"hello-world","localized_fullpaths":{"en":"hello-world"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"Hello |
| + | string: '{"_id":"56f0312ac36511207342cbd1","created_at":"2016-03-21T17:36:42Z","updated_at":"2016-03-21T17:36:42Z","title":"Hello |
| + | world","parent_id":"56f03072c365112052cab38c","position":0,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":false,"translated_in":["en"],"cache_enabled":true,"slug":"hello-world","fullpath":"hello-world","localized_fullpaths":{"en":"hello-world"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"Hello |
| world!","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:46 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:42 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/pages/hello-world.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/pages/hello-world.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:42 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -228,43 +240,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"66303f05748ecaa04e5348b1e3fd0c81" |
| + | - W/"8d3c66450565a3207046e1624e6d93a2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e8936881-bbd4-4baa-a123-ff185af24353 |
| + | - 7b953090-3054-49e5-9f0e-ec3a0cf319c4 |
| X-Runtime: | |
| - | - '0.031932' |
| + | - '0.038262' |
| Content-Length: | |
| - '673' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df42c3651180309c60d9","created_at":"2016-02-17T20:59:46Z","updated_at":"2016-02-17T20:59:46Z","title":"Hello |
| - | world","parent_id":"56c4df17c36511800c8b903a","position":0,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":false,"translated_in":["en"],"cache_enabled":true,"slug":"hello-world","fullpath":"hello-world","localized_fullpaths":{"en":"hello-world"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"Hello |
| + | string: '{"_id":"56f0312ac36511207342cbd1","created_at":"2016-03-21T17:36:42Z","updated_at":"2016-03-21T17:36:42Z","title":"Hello |
| + | world","parent_id":"56f03072c365112052cab38c","position":0,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":false,"translated_in":["en"],"cache_enabled":true,"slug":"hello-world","fullpath":"hello-world","localized_fullpaths":{"en":"hello-world"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":true,"template":"Hello |
| world!","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:46 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:42 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/content_types.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=E-mail&content_type%5Bfields%5D%5B0%5D%5Bname%5D=email&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bname%5D=FakeMessages&content_type%5Bslug%5D=fake-messages |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=E-mail&content_type%5Bfields%5D%5B0%5D%5Bname%5D=email&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bname%5D=FakeMessages&content_type%5Bslug%5D=fake-messages |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:42 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -273,39 +287,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"44ebdc1342091e459dade6f8faff7081" |
| + | - W/"a0d42cfea8e15f3aa23572b720108f2e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e2c46e1f-a48f-4bac-a894-e5bfcd86cb1e |
| + | - 48564120-796c-46ed-b75e-b06284cfb2d1 |
| X-Runtime: | |
| - | - '0.107850' |
| + | - '0.110407' |
| Content-Length: | |
| - '670' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df42c3651180309c60da","created_at":"2016-02-17T20:59:46Z","updated_at":"2016-02-17T20:59:46Z","name":"FakeMessages","slug":"fake_messages","description":null,"label_field_name":"email","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56c4df42c3651180309c60db","created_at":null,"updated_at":null,"name":"email","type":"string","label":"E-mail","hint":null,"required":true,"localized":false,"unique":false,"default":null,"position":0}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}' |
| + | string: '{"_id":"56f0312ac36511207342cbd2","created_at":"2016-03-21T17:36:42Z","updated_at":"2016-03-21T17:36:42Z","name":"FakeMessages","slug":"fake_messages","description":null,"label_field_name":"email","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56f0312ac36511207342cbd3","created_at":null,"updated_at":null,"name":"email","type":"string","label":"E-mail","hint":null,"required":true,"localized":false,"unique":false,"default":null,"position":0}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:46 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:42 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/content_types/fake_messages.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/content_types/fake_messages.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:42 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -314,41 +330,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"44ebdc1342091e459dade6f8faff7081" |
| + | - W/"a0d42cfea8e15f3aa23572b720108f2e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4ae886fe-7a83-4308-9b39-7490720ee7eb |
| + | - f118fa7a-2a1f-4ea0-a04c-aa5923dda744 |
| X-Runtime: | |
| - | - '0.032936' |
| + | - '0.033088' |
| Content-Length: | |
| - '670' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df42c3651180309c60da","created_at":"2016-02-17T20:59:46Z","updated_at":"2016-02-17T20:59:46Z","name":"FakeMessages","slug":"fake_messages","description":null,"label_field_name":"email","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56c4df42c3651180309c60db","created_at":null,"updated_at":null,"name":"email","type":"string","label":"E-mail","hint":null,"required":true,"localized":false,"unique":false,"default":null,"position":0}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}' |
| + | string: '{"_id":"56f0312ac36511207342cbd2","created_at":"2016-03-21T17:36:42Z","updated_at":"2016-03-21T17:36:42Z","name":"FakeMessages","slug":"fake_messages","description":null,"label_field_name":"email","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56f0312ac36511207342cbd3","created_at":null,"updated_at":null,"name":"email","type":"string","label":"E-mail","hint":null,"required":true,"localized":false,"unique":false,"default":null,"position":0}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:46 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:42 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/content_types.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=E-mail&content_type%5Bfields%5D%5B0%5D%5Bname%5D=email&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bname%5D=FakeMessages&content_type%5Bslug%5D=fake-messages-2 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=E-mail&content_type%5Bfields%5D%5B0%5D%5Bname%5D=email&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bname%5D=FakeMessages&content_type%5Bslug%5D=fake-messages-2 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:42 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -357,39 +375,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ddb958b2673f4fbb5de6de413bee3d81" |
| + | - W/"7f9ab8f444aa7e2887f1dad27d7f045a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 136d20cc-833a-4a80-b198-b8a06daa45bc |
| + | - e28e67b9-20e0-4e0c-a6a5-6c3cf0c83516 |
| X-Runtime: | |
| - | - '0.043730' |
| + | - '0.039658' |
| Content-Length: | |
| - '672' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df42c3651180309c60dc","created_at":"2016-02-17T20:59:46Z","updated_at":"2016-02-17T20:59:46Z","name":"FakeMessages","slug":"fake_messages_2","description":null,"label_field_name":"email","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56c4df42c3651180309c60dd","created_at":null,"updated_at":null,"name":"email","type":"string","label":"E-mail","hint":null,"required":true,"localized":false,"unique":false,"default":null,"position":0}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}' |
| + | string: '{"_id":"56f0312ac36511207342cbd4","created_at":"2016-03-21T17:36:42Z","updated_at":"2016-03-21T17:36:42Z","name":"FakeMessages","slug":"fake_messages_2","description":null,"label_field_name":"email","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56f0312ac36511207342cbd5","created_at":null,"updated_at":null,"name":"email","type":"string","label":"E-mail","hint":null,"required":true,"localized":false,"unique":false,"default":null,"position":0}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:46 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:42 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/content_types.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/content_types.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:42 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -402,37 +422,39 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - eb967158-f315-4f14-9e4e-0b115b098643 |
| + | - dbe5e211-7a5c-437c-9b04-d1063c3a469f |
| X-Runtime: | |
| - | - '0.030353' |
| + | - '0.032017' |
| Content-Length: | |
| - '15' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"deletions":1}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:46 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:42 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/snippets.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&snippet%5Bname%5D=Analytics&snippet%5Bslug%5D=analytics&snippet%5Btemplate%5D=Analytics |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&snippet%5Bname%5D=Analytics&snippet%5Bslug%5D=analytics&snippet%5Btemplate%5D=Analytics |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:42 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -441,39 +463,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"e4b1b92bfe5e883f1c4af04a484c5dcb" |
| + | - W/"01772a12304776dcad1878724196f360" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ed142fd0-5c86-410d-b8ee-bdbb1dedb375 |
| + | - 61990967-b20e-4c9a-a22a-2dc36f6359df |
| X-Runtime: | |
| - | - '0.092652' |
| + | - '0.085210' |
| Content-Length: | |
| - '167' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df42c3651180309c60de","created_at":"2016-02-17T20:59:46Z","updated_at":"2016-02-17T20:59:46Z","name":"Analytics","slug":"analytics","template":"Analytics"}' |
| + | string: '{"_id":"56f0312bc36511207342cbd6","created_at":"2016-03-21T17:36:43Z","updated_at":"2016-03-21T17:36:43Z","name":"Analytics","slug":"analytics","template":"Analytics"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:47 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:43 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/snippets/analytics.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/snippets/analytics.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:43 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -482,41 +506,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"e4b1b92bfe5e883f1c4af04a484c5dcb" |
| + | - W/"01772a12304776dcad1878724196f360" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 42eb1013-6775-4236-8acf-c8e11fe22c91 |
| + | - c1d538af-da48-400d-96dc-e403d1604036 |
| X-Runtime: | |
| - | - '0.026069' |
| + | - '0.029369' |
| Content-Length: | |
| - '167' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df42c3651180309c60de","created_at":"2016-02-17T20:59:46Z","updated_at":"2016-02-17T20:59:46Z","name":"Analytics","slug":"analytics","template":"Analytics"}' |
| + | string: '{"_id":"56f0312bc36511207342cbd6","created_at":"2016-03-21T17:36:43Z","updated_at":"2016-03-21T17:36:43Z","name":"Analytics","slug":"analytics","template":"Analytics"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:47 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:43 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/snippets.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&snippet%5Bname%5D=Analytics&snippet%5Bslug%5D=analytics_2&snippet%5Btemplate%5D=Analytics |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&snippet%5Bname%5D=Analytics&snippet%5Bslug%5D=analytics_2&snippet%5Btemplate%5D=Analytics |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:43 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -525,39 +551,41 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"01d19c06e2c71e3b343740fab329debb" |
| + | - W/"a845817e3abcf00aa52ad1122392c3f9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - fb924701-6d07-4b78-83de-3021e65bd09e |
| + | - e910306d-35c6-442a-bf1a-52a58ac17fa4 |
| X-Runtime: | |
| - | - '0.050306' |
| + | - '0.028552' |
| Content-Length: | |
| - '169' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df43c3651180309c60df","created_at":"2016-02-17T20:59:47Z","updated_at":"2016-02-17T20:59:47Z","name":"Analytics","slug":"analytics_2","template":"Analytics"}' |
| + | string: '{"_id":"56f0312bc36511207342cbd7","created_at":"2016-03-21T17:36:43Z","updated_at":"2016-03-21T17:36:43Z","name":"Analytics","slug":"analytics_2","template":"Analytics"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:47 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:43 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/snippets.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/snippets.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:43 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -570,16 +598,16 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 95cd873b-25a8-4e3d-822d-069e2be69ef0 |
| + | - e8f56ed9-b65c-4663-bae8-85b3b9c90cfc |
| X-Runtime: | |
| - | - '0.050937' |
| + | - '0.028415' |
| Content-Length: | |
| - '15' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"deletions":1}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:47 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:43 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -654,25 +682,27 @@ http_interactions: |
| 0NtJvy6mWF/OpLQstGgVzsab3sXmi3+2zzQDcJjnAyEPROMHiFLOL3h0hr9D | |
| onww/wNwYOCiTn4FhQAAAABJRU5ErkJggg0KLS0tLS0tLS0tLS0tLVJ1YnlN | |
| dWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRhdGE7 | |
| - | IG5hbWU9ImF1dGhfdG9rZW4iDQoNCmUxUVNmTmF3OHpRTTdyV1g1Q1BmDQot |
| + | IG5hbWU9ImF1dGhfdG9rZW4iDQoNClY4Vk1DZkNzcDdYelFMdkFkMUFZDQot |
| LS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QtLQ0KDQo= | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:43 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '3140' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -681,21 +711,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"0e437d6607043c3e99ba18c0acfac1d1" |
| + | - W/"8ea9d24f5f33d146ceef75f355ce3747" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - efff52ae-29a0-418c-93bf-f0c9950e8be6 |
| + | - 5df6485c-6f73-4113-a5b6-3920aea1c425 |
| X-Runtime: | |
| - | - '0.380379' |
| + | - '0.317014' |
| Content-Length: | |
| - '341' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df43c3651180309c60e0","created_at":"2016-02-17T20:59:47Z","updated_at":"2016-02-17T20:59:47Z","content_type":"image","local_path":"images/icon.png","folder":"images","checksum":"3176de8c86ae69c06d4f0ed37e26cee4","filename":"icon.png","url":"/sites/56c4df17c36511800c8b9039/theme/images/icon.png","size":"2.72 |
| + | string: '{"_id":"56f0312bc36511207342cbd8","created_at":"2016-03-21T17:36:43Z","updated_at":"2016-03-21T17:36:43Z","content_type":"image","local_path":"images/icon.png","folder":"images","checksum":"3176de8c86ae69c06d4f0ed37e26cee4","filename":"icon.png","url":"/sites/56f03072c365112052cab38b/theme/images/icon.png","size":"2.72 |
| KB","raw_size":2783}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:47 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:43 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -4341,25 +4371,27 @@ http_interactions: |
| nTZLWAn75+Cpv212Dv47zCzY/KTGgbiqWWzt8uMma7Z1/2bHBIaHmNbSlxEx | |
| sfX/CzAAkCOO6w6jXtcAAAAASUVORK5CYIINCi0tLS0tLS0tLS0tLS1SdWJ5 | |
| TXVsdGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRh | |
| - | OyBuYW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0K |
| + | OyBuYW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0K |
| LS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:43 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '163836' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -4368,40 +4400,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d501ea79cf08d8dfe67296101d4eb57c" |
| + | - W/"cc3d5a8ed6d66847d93fcfccc14575e2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 6a20eb5f-1208-4918-93a4-a65afcf11c16 |
| + | - bff2e82f-1ef3-48ef-80b0-5804dde1e733 |
| X-Runtime: | |
| - | - '0.059846' |
| + | - '0.055380' |
| Content-Length: | |
| - '345' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df43c3651180309c60e1","created_at":"2016-02-17T20:59:47Z","updated_at":"2016-02-17T20:59:47Z","content_type":"image","local_path":"images/photo.jpg","folder":"images","checksum":"e1aff5628ca068751b333cf1b69dd978","filename":"photo.jpg","url":"/sites/56c4df17c36511800c8b9039/theme/images/photo.jpg","size":"160 |
| + | string: '{"_id":"56f0312bc36511207342cbd9","created_at":"2016-03-21T17:36:43Z","updated_at":"2016-03-21T17:36:43Z","content_type":"image","local_path":"images/photo.jpg","folder":"images","checksum":"e1aff5628ca068751b333cf1b69dd978","filename":"photo.jpg","url":"/sites/56f03072c365112052cab38b/theme/images/photo.jpg","size":"160 |
| KB","raw_size":163476}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:47 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:43 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/theme_assets.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/theme_assets.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:43 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4414,37 +4448,39 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 668aafcd-c0fb-498c-8348-e016e3a168b7 |
| + | - 01bd6403-7463-416e-be2d-f30194ea5024 |
| X-Runtime: | |
| - | - '0.041166' |
| + | - '0.035992' |
| Content-Length: | |
| - '15' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"deletions":2}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:47 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:43 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/translations.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&translation%5Bkey%5D=hello_world&translation%5Bvalues%5D%5Bfr%5D=Bonjour+le+monde |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&translation%5Bkey%5D=hello_world&translation%5Bvalues%5D%5Bfr%5D=Bonjour+le+monde |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:43 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -4453,40 +4489,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c5816cf118df211dd088c3ed2440ae81" |
| + | - W/"821a7413cf000166e90c2ba23f436af1" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8ee3d86f-2f90-40ac-9c30-df8695e46bbb |
| + | - c0214ef2-012f-4a1c-ac79-7726d70c92be |
| X-Runtime: | |
| - | - '0.079346' |
| + | - '0.099825' |
| Content-Length: | |
| - '161' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df43c3651180309c60e2","created_at":"2016-02-17T20:59:47Z","updated_at":"2016-02-17T20:59:47Z","key":"hello_world","values":{"fr":"Bonjour |
| + | string: '{"_id":"56f0312bc36511207342cbda","created_at":"2016-03-21T17:36:43Z","updated_at":"2016-03-21T17:36:43Z","key":"hello_world","values":{"fr":"Bonjour |
| le monde"}}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:47 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:43 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/translations/hello_world.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/translations/hello_world.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:43 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4495,42 +4533,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c5816cf118df211dd088c3ed2440ae81" |
| + | - W/"821a7413cf000166e90c2ba23f436af1" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 2ced3679-a509-4265-89fd-3217c7ba49a5 |
| + | - 524aab48-9c35-4786-a2e1-8b21f6f6a39f |
| X-Runtime: | |
| - | - '0.027591' |
| + | - '0.028378' |
| Content-Length: | |
| - '161' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df43c3651180309c60e2","created_at":"2016-02-17T20:59:47Z","updated_at":"2016-02-17T20:59:47Z","key":"hello_world","values":{"fr":"Bonjour |
| + | string: '{"_id":"56f0312bc36511207342cbda","created_at":"2016-03-21T17:36:43Z","updated_at":"2016-03-21T17:36:43Z","key":"hello_world","values":{"fr":"Bonjour |
| le monde"}}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:48 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:43 GMT |
| - request: | |
| method: post | |
| uri: http://www.example.com:3000/locomotive/api/v3/translations.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&translation%5Bkey%5D=hello_world_2&translation%5Bvalues%5D%5Bfr%5D=Bonjour+le+monde |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&translation%5Bkey%5D=hello_world_2&translation%5Bvalues%5D%5Bfr%5D=Bonjour+le+monde |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:44 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -4539,40 +4579,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"08d852718db92fec011bf51045086de2" |
| + | - W/"025a26e3e9b1da6ba4cfef1d470d4d00" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4d59da67-b942-48a3-a1c0-79000a199e76 |
| + | - 98761e38-8deb-4874-bb21-1008dc61d381 |
| X-Runtime: | |
| - | - '0.026836' |
| + | - '0.027305' |
| Content-Length: | |
| - '163' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df44c3651180309c60e3","created_at":"2016-02-17T20:59:48Z","updated_at":"2016-02-17T20:59:48Z","key":"hello_world_2","values":{"fr":"Bonjour |
| + | string: '{"_id":"56f0312cc36511207342cbdb","created_at":"2016-03-21T17:36:44Z","updated_at":"2016-03-21T17:36:44Z","key":"hello_world_2","values":{"fr":"Bonjour |
| le monde"}}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:48 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:44 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/translations.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/translations.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:44 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4585,35 +4627,37 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 14735fe2-5001-4fe5-bd9b-d9b638be5b1a |
| + | - 16b210a3-31b8-4450-89ef-6e5230698dac |
| X-Runtime: | |
| - | - '0.083762' |
| + | - '0.028758' |
| Content-Length: | |
| - '15' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"deletions":1}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:48 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:44 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/pages/bogus_id.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/pages/bogus_id.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:44 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 404 | |
| @@ | @@ -4624,35 +4668,37 @@ http_interactions: |
| Cache-Control: | |
| - no-cache | |
| X-Request-Id: | |
| - | - cc5ce310-0e32-4134-b4e9-03cb2f2f9174 |
| + | - 5cdfae43-fb44-48cc-9dc9-afde5fc932fb |
| X-Runtime: | |
| - | - '0.025524' |
| + | - '0.026384' |
| Content-Length: | |
| - '30' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"error":"Resource not found"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:48 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:44 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/content_types/bogus_id.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/content_types/bogus_id.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:44 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 404 | |
| @@ | @@ -4663,35 +4709,37 @@ http_interactions: |
| Cache-Control: | |
| - no-cache | |
| X-Request-Id: | |
| - | - d8524ae4-ed3b-46b0-8742-9cff7cd5a363 |
| + | - 67c0e1c0-c964-47ea-8437-f793ef5c013b |
| X-Runtime: | |
| - | - '0.024198' |
| + | - '0.022677' |
| Content-Length: | |
| - '30' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"error":"Resource not found"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:48 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:44 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/snippets/bogus_id.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/snippets/bogus_id.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:44 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 404 | |
| @@ | @@ -4702,35 +4750,37 @@ http_interactions: |
| Cache-Control: | |
| - no-cache | |
| X-Request-Id: | |
| - | - db4eb3d9-10ba-4e45-b2b8-99f609426abf |
| + | - 9d744363-c734-418d-853f-89589aba4e67 |
| X-Runtime: | |
| - | - '0.023256' |
| + | - '0.021316' |
| Content-Length: | |
| - '30' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"error":"Resource not found"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:48 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:44 GMT |
| - request: | |
| method: delete | |
| - | uri: http://www.example.com:3000/locomotive/api/v3/translations/bogus_id.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://www.example.com:3000/locomotive/api/v3/translations/bogus_id.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:44 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - www | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 404 | |
| @@ | @@ -4741,14 +4791,14 @@ http_interactions: |
| Cache-Control: | |
| - no-cache | |
| X-Request-Id: | |
| - | - 68715d08-46ba-45fa-aaa0-50cab56bea5f |
| + | - a45239da-ad76-4f6e-b29c-6c06f96fff4f |
| X-Runtime: | |
| - | - '0.023121' |
| + | - '0.020818' |
| Content-Length: | |
| - '30' | |
| body: | |
| encoding: UTF-8 | |
| string: '{"error":"Resource not found"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:48 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:44 GMT |
| recorded_with: VCR 3.0.0 | |
spec/fixtures/cassettes/push.yml
+1694
-1470
| @@ | @@ -7,14 +7,16 @@ http_interactions: |
| encoding: UTF-8 | |
| string: api_key=d49cd50f6f0d2b163f48fc73cb249f0244c37074&email=admin%40locomotivecms.com | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:45 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23,20 +25,20 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"9f0203483ba848323bbda0b85ed7725e" |
| + | - W/"3cfd61d41b23cdfb3d8833133c136131" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 12a42ca2-0322-42af-b043-9242b09eab19 |
| + | - 88e756b6-1681-47a2-b033-4ba629a24d2f |
| X-Runtime: | |
| - | - '0.016982' |
| + | - '0.016073' |
| Content-Length: | |
| - '32' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"token":"e1QSfNaw8zQM7rWX5CPf"}' |
| + | string: '{"token":"V8VMCfCsp7XzQLvAd1AY"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:49 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:45 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/sites.json | |
| @@ | @@ -137,23 +139,25 @@ http_interactions: |
| cG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0ic2l0ZVttZXRhZmllbGRzX3Nj | |
| aGVtYV0iDQoNCltdDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QN | |
| CkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYXV0aF90 | |
| - | b2tlbiINCg0KZTFRU2ZOYXc4elFNN3JXWDVDUGYNCi0tLS0tLS0tLS0tLS1S |
| + | b2tlbiINCg0KVjhWTUNmQ3NwN1h6UUx2QWQxQVkNCi0tLS0tLS0tLS0tLS1S |
| dWJ5TXVsdGlwYXJ0UG9zdC0tDQoNCg== | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:45 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '4297' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -162,21 +166,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c2fc0489aff3961b68bf93acdb023f40" |
| + | - W/"24e3aa1e1e4dc3ab747970a659141d67" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - bd1ee58a-a7bb-4bc5-98ea-61385266edc0 |
| + | - 6db498d3-ae2f-472c-9e9d-ff2927216a38 |
| X-Runtime: | |
| - | - '0.078967' |
| + | - '0.082927' |
| Content-Length: | |
| - | - '1042' |
| + | - '1061' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df45c3651180309c60e4","created_at":"2016-02-17T20:59:49Z","updated_at":"2016-02-17T20:59:49Z","name":"Sample |
| - | website","handle":"tasteless-pond-7296","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"56c4df45c3651180309c60e5","created_at":null,"updated_at":null,"role":"admin","account_id":"56c4df17c36511800c8b9037","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/56c4df45c3651180309c60e4/icon.png","content_version":0,"template_version":1455742789,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU2YzRkZjQ1YzM2NTExODAzMDljNjBlNC9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=5cec5a3a3a991e63","preview_url":"http://localhost:3000/locomotive/tasteless-pond-7296/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"null"}' |
| + | string: '{"_id":"56f0312dc36511207342cbdc","created_at":"2016-03-21T17:36:45Z","updated_at":"2016-03-21T17:36:45Z","name":"Sample |
| + | website","handle":"parched-lagoon-8492","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"56f0312dc36511207342cbdd","created_at":null,"updated_at":null,"role":"admin","account_id":"56f03072c365112052cab389","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/56f0312dc36511207342cbdc/icon.png","content_version":0,"template_version":1458581805,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU2ZjAzMTJkYzM2NTExMjA3MzQyY2JkYy9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=ca4a5c5113cc153f","preview_url":"http://localhost:3000/locomotive/parched-lagoon-8492/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:49 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:45 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/tokens.json | |
| @@ | @@ -184,14 +188,16 @@ http_interactions: |
| encoding: UTF-8 | |
| string: api_key=d49cd50f6f0d2b163f48fc73cb249f0244c37074&email=admin%40locomotivecms.com | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:45 GMT |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -200,41 +206,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"9f0203483ba848323bbda0b85ed7725e" |
| + | - W/"3cfd61d41b23cdfb3d8833133c136131" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ba6d35e3-1787-4b5c-98b8-9bb1bb035d80 |
| + | - 699fb89c-5ce4-43ef-89c4-b59ff52ec3af |
| X-Runtime: | |
| - | - '0.016225' |
| + | - '0.018273' |
| Content-Length: | |
| - '32' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"token":"e1QSfNaw8zQM7rWX5CPf"}' |
| + | string: '{"token":"V8VMCfCsp7XzQLvAd1AY"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:49 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:45 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/current_site.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://localhost:3000/locomotive/api/v3/current_site.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:45 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -243,42 +251,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c2fc0489aff3961b68bf93acdb023f40" |
| + | - W/"24e3aa1e1e4dc3ab747970a659141d67" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f631534d-d9b1-4976-a57b-65e6433e33f3 |
| + | - 3c425174-f0d3-43ec-8530-efa20d522724 |
| X-Runtime: | |
| - | - '0.038441' |
| + | - '0.041937' |
| Content-Length: | |
| - | - '1042' |
| + | - '1061' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df45c3651180309c60e4","created_at":"2016-02-17T20:59:49Z","updated_at":"2016-02-17T20:59:49Z","name":"Sample |
| - | website","handle":"tasteless-pond-7296","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"56c4df45c3651180309c60e5","created_at":null,"updated_at":null,"role":"admin","account_id":"56c4df17c36511800c8b9037","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/56c4df45c3651180309c60e4/icon.png","content_version":0,"template_version":1455742789,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU2YzRkZjQ1YzM2NTExODAzMDljNjBlNC9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=5cec5a3a3a991e63","preview_url":"http://localhost:3000/locomotive/tasteless-pond-7296/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"null"}' |
| + | string: '{"_id":"56f0312dc36511207342cbdc","created_at":"2016-03-21T17:36:45Z","updated_at":"2016-03-21T17:36:45Z","name":"Sample |
| + | website","handle":"parched-lagoon-8492","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en"],"domains":[],"memberships":[{"_id":"56f0312dc36511207342cbdd","created_at":null,"updated_at":null,"role":"admin","account_id":"56f03072c365112052cab389","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/56f0312dc36511207342cbdc/icon.png","content_version":0,"template_version":1458581805,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU2ZjAzMTJkYzM2NTExMjA3MzQyY2JkYy9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=ca4a5c5113cc153f","preview_url":"http://localhost:3000/locomotive/parched-lagoon-8492/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:49 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:45 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/current_site.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&site%5Blocales%5D%5B%5D=en&site%5Blocales%5D%5B%5D=fr&site%5Blocales%5D%5B%5D=nb&site%5Bmetafields_schema%5D=%5B%5D |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&site%5Blocales%5D%5B%5D=en&site%5Blocales%5D%5B%5D=fr&site%5Blocales%5D%5B%5D=nb&site%5Bmetafields_schema%5D=%5B%5D |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:45 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -287,40 +297,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"aea2017808af104e3beae903d1c5a2fe" |
| + | - W/"cf845dc8d75910728ff193659c8bf731" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - fc523e7d-ad54-4077-a74e-fedca1ca31dd |
| + | - f9b57286-dbfc-454d-8e34-d55fe44db65a |
| X-Runtime: | |
| - | - '0.094434' |
| + | - '0.076402' |
| Content-Length: | |
| - | - '1059' |
| + | - '1080' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df45c3651180309c60e4","created_at":"2016-02-17T20:59:49Z","updated_at":"2016-02-17T20:59:49Z","name":"Sample |
| - | website","handle":"tasteless-pond-7296","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en","fr","nb"],"domains":[],"memberships":[{"_id":"56c4df45c3651180309c60e5","created_at":null,"updated_at":null,"role":"admin","account_id":"56c4df17c36511800c8b9037","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/56c4df45c3651180309c60e4/icon.png","content_version":1455742789,"template_version":1455742789,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU2YzRkZjQ1YzM2NTExODAzMDljNjBlNC9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=5cec5a3a3a991e63","preview_url":"http://localhost:3000/locomotive/tasteless-pond-7296/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]"}' |
| + | string: '{"_id":"56f0312dc36511207342cbdc","created_at":"2016-03-21T17:36:45Z","updated_at":"2016-03-21T17:36:45Z","name":"Sample |
| + | website","handle":"parched-lagoon-8492","seo_title":null,"meta_keywords":null,"meta_description":"","robots_txt":null,"cache_enabled":false,"private_access":false,"locales":["en","fr","nb"],"domains":[],"memberships":[{"_id":"56f0312dc36511207342cbdd","created_at":null,"updated_at":null,"role":"admin","account_id":"56f03072c365112052cab389","name":"Admin","role_name":"Administrator","email":"admin@locomotivecms.com"}],"timezone":"UTC","picture_url":"/uploaded_assets/56f0312dc36511207342cbdc/icon.png","content_version":1458581805,"template_version":1458581805,"picture_thumbnail_url":"/images/dynamic/W1siZmYiLCJwdWJsaWMvdXBsb2FkZWRfYXNzZXRzLzU2ZjAzMTJkYzM2NTExMjA3MzQyY2JkYy9pY29uLnBuZyJdLFsicCIsInRodW1iIiwiMTAweDEwMCMiXV0/icon.png?sha=ca4a5c5113cc153f","preview_url":"http://localhost:3000/locomotive/parched-lagoon-8492/preview","sign_in_url":"http://localhost:3000/locomotive/sign_in","metafields":"{}","metafields_schema":"[]","metafields_ui":"{}"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:49 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:45 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:45 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| + | - parched-lagoon-8492 |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -333,37 +345,39 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - d8cfe62f-bd9f-4048-8120-f6ede21709a0 |
| + | - 17614d70-bf25-46fe-b8f1-51fdc85faecd |
| X-Runtime: | |
| - | - '0.024525' |
| + | - '0.022894' |
| Content-Length: | |
| - '2' | |
| body: | |
| encoding: UTF-8 | |
| string: "[]" | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:50 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:45 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_type%5Bdescription%5D=List+of+bands&content_type%5Bfields%5D%5B0%5D%5Bhint%5D=Name+of+the+band&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Name&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=name&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=0&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B1%5D%5Blabel%5D=Fullname+of+the+leader&content_type%5Bfields%5D%5B1%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B1%5D%5Bname%5D=leader&content_type%5Bfields%5D%5B1%5D%5Bposition%5D=1&content_type%5Bfields%5D%5B1%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B1%5D%5Btype%5D=string&content_type%5Bfields%5D%5B1%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B2%5D%5Blabel%5D=Music+kind+%28grunge%2C+rock%2C+pop%2C+country%29&content_type%5Bfields%5D%5B2%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B2%5D%5Bname%5D=kind&content_type%5Bfields%5D%5B2%5D%5Bposition%5D=2&content_type%5Bfields%5D%5B2%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B0%5D%5Bname%5D=grunge&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B1%5D%5Bname%5D=rock&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B2%5D%5Bname%5D=country&content_type%5Bfields%5D%5B2%5D%5Btype%5D=select&content_type%5Bfields%5D%5B2%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B3%5D%5Blabel%5D=Featured&content_type%5Bfields%5D%5B3%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B3%5D%5Bname%5D=featured&content_type%5Bfields%5D%5B3%5D%5Bposition%5D=4&content_type%5Bfields%5D%5B3%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B3%5D%5Btype%5D=boolean&content_type%5Bfields%5D%5B3%5D%5Bunique%5D=false&content_type%5Blabel_field_name%5D=name&content_type%5Bname%5D=Bands&content_type%5Border_by%5D=name&content_type%5Border_direction%5D=asc&content_type%5Bslug%5D=bands |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_type%5Bdescription%5D=List+of+bands&content_type%5Bfields%5D%5B0%5D%5Bhint%5D=Name+of+the+band&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Name&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=name&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=0&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B1%5D%5Blabel%5D=Fullname+of+the+leader&content_type%5Bfields%5D%5B1%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B1%5D%5Bname%5D=leader&content_type%5Bfields%5D%5B1%5D%5Bposition%5D=1&content_type%5Bfields%5D%5B1%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B1%5D%5Btype%5D=string&content_type%5Bfields%5D%5B1%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B2%5D%5Blabel%5D=Music+kind+%28grunge%2C+rock%2C+pop%2C+country%29&content_type%5Bfields%5D%5B2%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B2%5D%5Bname%5D=kind&content_type%5Bfields%5D%5B2%5D%5Bposition%5D=2&content_type%5Bfields%5D%5B2%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B0%5D%5Bname%5D=grunge&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B1%5D%5Bname%5D=rock&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B2%5D%5Bname%5D=country&content_type%5Bfields%5D%5B2%5D%5Btype%5D=select&content_type%5Bfields%5D%5B2%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B3%5D%5Blabel%5D=Featured&content_type%5Bfields%5D%5B3%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B3%5D%5Bname%5D=featured&content_type%5Bfields%5D%5B3%5D%5Bposition%5D=4&content_type%5Bfields%5D%5B3%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B3%5D%5Btype%5D=boolean&content_type%5Bfields%5D%5B3%5D%5Bunique%5D=false&content_type%5Blabel_field_name%5D=name&content_type%5Bname%5D=Bands&content_type%5Border_by%5D=name&content_type%5Border_direction%5D=asc&content_type%5Bslug%5D=bands |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:45 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -372,45 +386,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"84cf1944e8728929fef1aa7d19ffc47b" |
| + | - W/"32948b60d6edf276a3c70bf587bd1c94" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 44daf225-56a9-4d44-beb3-66256692d85d |
| + | - a0a91b5a-5489-494d-b700-a90f8fc50286 |
| X-Runtime: | |
| - | - '0.081515' |
| + | - '0.128491' |
| Content-Length: | |
| - '1580' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df46c3651180309c60e9","created_at":"2016-02-17T20:59:50Z","updated_at":"2016-02-17T20:59:50Z","name":"Bands","slug":"bands","description":"List |
| - | of bands","label_field_name":"name","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56c4df46c3651180309c60ea","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Name |
| - | of the band","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56c4df46c3651180309c60eb","created_at":null,"updated_at":null,"name":"leader","type":"string","label":"Fullname |
| - | of the leader","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":1},{"_id":"56c4df46c3651180309c60ec","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,"default":null,"position":2,"select_options":[{"id":"56c4df46c3651180309c60ee","name":{"en":"grunge"},"position":0},{"id":"56c4df46c3651180309c60ef","name":{"en":"rock"},"position":0},{"id":"56c4df46c3651180309c60f0","name":{"en":"country"},"position":0}]},{"_id":"56c4df46c3651180309c60ed","created_at":null,"updated_at":null,"name":"featured","type":"boolean","label":"Featured","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":4}],"order_by":"name","group_by":null,"public_submission_account_emails":[]}' |
| + | string: '{"_id":"56f0312dc36511207342cbe1","created_at":"2016-03-21T17:36:45Z","updated_at":"2016-03-21T17:36:45Z","name":"Bands","slug":"bands","description":"List |
| + | of bands","label_field_name":"name","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56f0312dc36511207342cbe2","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Name |
| + | of the band","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56f0312dc36511207342cbe3","created_at":null,"updated_at":null,"name":"leader","type":"string","label":"Fullname |
| + | of the leader","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":1},{"_id":"56f0312dc36511207342cbe4","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,"default":null,"position":2,"select_options":[{"id":"56f0312dc36511207342cbe6","name":{"en":"grunge"},"position":0},{"id":"56f0312dc36511207342cbe7","name":{"en":"rock"},"position":0},{"id":"56f0312dc36511207342cbe8","name":{"en":"country"},"position":0}]},{"_id":"56f0312dc36511207342cbe5","created_at":null,"updated_at":null,"name":"featured","type":"boolean","label":"Featured","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":4}],"order_by":"name","group_by":null,"public_submission_account_emails":[]}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:50 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_type%5Bdescription%5D=List+of+upcoming+events&content_type%5Bfields%5D%5B0%5D%5Bhint%5D=Name+of+the+place&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Place&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=place&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=0&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B1%5D%5Bhint%5D=Date+of+the+event&content_type%5Bfields%5D%5B1%5D%5Blabel%5D=Date&content_type%5Bfields%5D%5B1%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B1%5D%5Bname%5D=date&content_type%5Bfields%5D%5B1%5D%5Bposition%5D=1&content_type%5Bfields%5D%5B1%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B1%5D%5Btype%5D=date&content_type%5Bfields%5D%5B1%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B2%5D%5Blabel%5D=City+of+the+event&content_type%5Bfields%5D%5B2%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B2%5D%5Bname%5D=city&content_type%5Bfields%5D%5B2%5D%5Bposition%5D=2&content_type%5Bfields%5D%5B2%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B2%5D%5Btype%5D=string&content_type%5Bfields%5D%5B2%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B3%5D%5Blabel%5D=State+of+the+event&content_type%5Bfields%5D%5B3%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B3%5D%5Bname%5D=state&content_type%5Bfields%5D%5B3%5D%5Bposition%5D=3&content_type%5Bfields%5D%5B3%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B3%5D%5Btype%5D=string&content_type%5Bfields%5D%5B3%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B4%5D%5Blabel%5D=Notes&content_type%5Bfields%5D%5B4%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B4%5D%5Bname%5D=notes&content_type%5Bfields%5D%5B4%5D%5Bposition%5D=4&content_type%5Bfields%5D%5B4%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B4%5D%5Btype%5D=text&content_type%5Bfields%5D%5B4%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B5%5D%5Blabel%5D=List+of+tags&content_type%5Bfields%5D%5B5%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B5%5D%5Bname%5D=tags&content_type%5Bfields%5D%5B5%5D%5Bposition%5D=5&content_type%5Bfields%5D%5B5%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B5%5D%5Btype%5D=tags&content_type%5Bfields%5D%5B5%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B6%5D%5Blabel%5D=Price+of+the+event&content_type%5Bfields%5D%5B6%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B6%5D%5Bname%5D=price&content_type%5Bfields%5D%5B6%5D%5Bposition%5D=6&content_type%5Bfields%5D%5B6%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B6%5D%5Btype%5D=float&content_type%5Bfields%5D%5B6%5D%5Bunique%5D=false&content_type%5Blabel_field_name%5D=place&content_type%5Bname%5D=Events&content_type%5Border_by%5D=created_at&content_type%5Border_direction%5D=asc&content_type%5Bslug%5D=events |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_type%5Bdescription%5D=List+of+upcoming+events&content_type%5Bfields%5D%5B0%5D%5Bhint%5D=Name+of+the+place&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Place&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=place&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=0&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B1%5D%5Bhint%5D=Date+of+the+event&content_type%5Bfields%5D%5B1%5D%5Blabel%5D=Date&content_type%5Bfields%5D%5B1%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B1%5D%5Bname%5D=date&content_type%5Bfields%5D%5B1%5D%5Bposition%5D=1&content_type%5Bfields%5D%5B1%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B1%5D%5Btype%5D=date&content_type%5Bfields%5D%5B1%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B2%5D%5Blabel%5D=City+of+the+event&content_type%5Bfields%5D%5B2%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B2%5D%5Bname%5D=city&content_type%5Bfields%5D%5B2%5D%5Bposition%5D=2&content_type%5Bfields%5D%5B2%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B2%5D%5Btype%5D=string&content_type%5Bfields%5D%5B2%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B3%5D%5Blabel%5D=State+of+the+event&content_type%5Bfields%5D%5B3%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B3%5D%5Bname%5D=state&content_type%5Bfields%5D%5B3%5D%5Bposition%5D=3&content_type%5Bfields%5D%5B3%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B3%5D%5Btype%5D=string&content_type%5Bfields%5D%5B3%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B4%5D%5Blabel%5D=Notes&content_type%5Bfields%5D%5B4%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B4%5D%5Bname%5D=notes&content_type%5Bfields%5D%5B4%5D%5Bposition%5D=4&content_type%5Bfields%5D%5B4%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B4%5D%5Btype%5D=text&content_type%5Bfields%5D%5B4%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B5%5D%5Blabel%5D=List+of+tags&content_type%5Bfields%5D%5B5%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B5%5D%5Bname%5D=tags&content_type%5Bfields%5D%5B5%5D%5Bposition%5D=5&content_type%5Bfields%5D%5B5%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B5%5D%5Btype%5D=tags&content_type%5Bfields%5D%5B5%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B6%5D%5Blabel%5D=Price+of+the+event&content_type%5Bfields%5D%5B6%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B6%5D%5Bname%5D=price&content_type%5Bfields%5D%5B6%5D%5Bposition%5D=6&content_type%5Bfields%5D%5B6%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B6%5D%5Btype%5D=float&content_type%5Bfields%5D%5B6%5D%5Bunique%5D=false&content_type%5Blabel_field_name%5D=place&content_type%5Bname%5D=Events&content_type%5Border_by%5D=created_at&content_type%5Border_direction%5D=asc&content_type%5Bslug%5D=events |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:46 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -419,48 +435,50 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"a025b91de24e375b27522ea2f8be885d" |
| + | - W/"e550ad252e077af13e09ee34b85cd00f" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - cde4d3a8-73ce-48b2-8f98-4213ab181a3a |
| + | - 89502882-d651-43d4-896a-13ec0a028de6 |
| X-Runtime: | |
| - | - '0.089878' |
| + | - '0.083289' |
| Content-Length: | |
| - '2014' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df46c3651180309c60f1","created_at":"2016-02-17T20:59:50Z","updated_at":"2016-02-17T20:59:50Z","name":"Events","slug":"events","description":"List |
| - | of upcoming events","label_field_name":"place","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56c4df46c3651180309c60f2","created_at":null,"updated_at":null,"name":"place","type":"string","label":"Place","hint":"Name |
| - | of the place","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56c4df46c3651180309c60f3","created_at":null,"updated_at":null,"name":"date","type":"date","label":"Date","hint":"Date |
| - | of the event","required":false,"localized":false,"unique":false,"default":null,"position":1},{"_id":"56c4df46c3651180309c60f4","created_at":null,"updated_at":null,"name":"city","type":"string","label":"City |
| - | of the event","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":2},{"_id":"56c4df46c3651180309c60f5","created_at":null,"updated_at":null,"name":"state","type":"string","label":"State |
| - | of the event","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":3},{"_id":"56c4df46c3651180309c60f6","created_at":null,"updated_at":null,"name":"notes","type":"text","label":"Notes","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":4,"text_formatting":"html"},{"_id":"56c4df46c3651180309c60f7","created_at":null,"updated_at":null,"name":"tags","type":"tags","label":"List |
| - | of tags","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":5},{"_id":"56c4df46c3651180309c60f8","created_at":null,"updated_at":null,"name":"price","type":"float","label":"Price |
| + | string: '{"_id":"56f0312ec36511207342cbe9","created_at":"2016-03-21T17:36:46Z","updated_at":"2016-03-21T17:36:46Z","name":"Events","slug":"events","description":"List |
| + | of upcoming events","label_field_name":"place","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56f0312ec36511207342cbea","created_at":null,"updated_at":null,"name":"place","type":"string","label":"Place","hint":"Name |
| + | of the place","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56f0312ec36511207342cbeb","created_at":null,"updated_at":null,"name":"date","type":"date","label":"Date","hint":"Date |
| + | of the event","required":false,"localized":false,"unique":false,"default":null,"position":1},{"_id":"56f0312ec36511207342cbec","created_at":null,"updated_at":null,"name":"city","type":"string","label":"City |
| + | of the event","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":2},{"_id":"56f0312ec36511207342cbed","created_at":null,"updated_at":null,"name":"state","type":"string","label":"State |
| + | of the event","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":3},{"_id":"56f0312ec36511207342cbee","created_at":null,"updated_at":null,"name":"notes","type":"text","label":"Notes","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":4,"text_formatting":"html"},{"_id":"56f0312ec36511207342cbef","created_at":null,"updated_at":null,"name":"tags","type":"tags","label":"List |
| + | of tags","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":5},{"_id":"56f0312ec36511207342cbf0","created_at":null,"updated_at":null,"name":"price","type":"float","label":"Price |
| of the event","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":6}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:50 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/messages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_type%5Bdescription%5D=Messages+posted+by+new+potential+customers&content_type%5Bfields%5D%5B0%5D%5Bhint%5D=Full+name&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Name&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=name&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=0&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=true&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B1%5D%5Bhint%5D=Email&content_type%5Bfields%5D%5B1%5D%5Blabel%5D=Email&content_type%5Bfields%5D%5B1%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B1%5D%5Bname%5D=email&content_type%5Bfields%5D%5B1%5D%5Bposition%5D=1&content_type%5Bfields%5D%5B1%5D%5Brequired%5D=true&content_type%5Bfields%5D%5B1%5D%5Btype%5D=string&content_type%5Bfields%5D%5B1%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B2%5D%5Bhint%5D=Customer+message&content_type%5Bfields%5D%5B2%5D%5Blabel%5D=Message&content_type%5Bfields%5D%5B2%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B2%5D%5Bname%5D=message&content_type%5Bfields%5D%5B2%5D%5Bposition%5D=2&content_type%5Bfields%5D%5B2%5D%5Brequired%5D=true&content_type%5Bfields%5D%5B2%5D%5Btype%5D=text&content_type%5Bfields%5D%5B2%5D%5Bunique%5D=false&content_type%5Blabel_field_name%5D=name&content_type%5Bname%5D=Messages&content_type%5Border_by%5D=created_at&content_type%5Border_direction%5D=asc&content_type%5Bpublic_submission_enabled%5D=true&content_type%5Bslug%5D=messages |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_type%5Bdescription%5D=Messages+posted+by+new+potential+customers&content_type%5Bfields%5D%5B0%5D%5Bhint%5D=Full+name&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Name&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=name&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=0&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=true&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B1%5D%5Bhint%5D=Email&content_type%5Bfields%5D%5B1%5D%5Blabel%5D=Email&content_type%5Bfields%5D%5B1%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B1%5D%5Bname%5D=email&content_type%5Bfields%5D%5B1%5D%5Bposition%5D=1&content_type%5Bfields%5D%5B1%5D%5Brequired%5D=true&content_type%5Bfields%5D%5B1%5D%5Btype%5D=string&content_type%5Bfields%5D%5B1%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B2%5D%5Bhint%5D=Customer+message&content_type%5Bfields%5D%5B2%5D%5Blabel%5D=Message&content_type%5Bfields%5D%5B2%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B2%5D%5Bname%5D=message&content_type%5Bfields%5D%5B2%5D%5Bposition%5D=2&content_type%5Bfields%5D%5B2%5D%5Brequired%5D=true&content_type%5Bfields%5D%5B2%5D%5Btype%5D=text&content_type%5Bfields%5D%5B2%5D%5Bunique%5D=false&content_type%5Blabel_field_name%5D=name&content_type%5Bname%5D=Messages&content_type%5Border_by%5D=created_at&content_type%5Border_direction%5D=asc&content_type%5Bpublic_submission_enabled%5D=true&content_type%5Bslug%5D=messages |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:46 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -469,44 +487,46 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"def96d1067ab6d1849dc936002100992" |
| + | - W/"543e48e15c656b5c506b56300ab68e9b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4d8fcfc5-7810-4ba0-91ab-f69ed5ab9c08 |
| + | - 9c417fa7-b739-40e7-aba2-ab232cf21b8d |
| X-Runtime: | |
| - | - '0.063220' |
| + | - '0.063574' |
| Content-Length: | |
| - '1161' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df46c3651180309c60f9","created_at":"2016-02-17T20:59:50Z","updated_at":"2016-02-17T20:59:50Z","name":"Messages","slug":"messages","description":"Messages |
| - | posted by new potential customers","label_field_name":"name","order_direction":"asc","public_submission_enabled":true,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56c4df46c3651180309c60fa","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Full |
| - | name","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56c4df46c3651180309c60fb","created_at":null,"updated_at":null,"name":"email","type":"string","label":"Email","hint":"Email","required":true,"localized":false,"unique":false,"default":null,"position":1},{"_id":"56c4df46c3651180309c60fc","created_at":null,"updated_at":null,"name":"message","type":"text","label":"Message","hint":"Customer |
| + | string: '{"_id":"56f0312ec36511207342cbf1","created_at":"2016-03-21T17:36:46Z","updated_at":"2016-03-21T17:36:46Z","name":"Messages","slug":"messages","description":"Messages |
| + | posted by new potential customers","label_field_name":"name","order_direction":"asc","public_submission_enabled":true,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56f0312ec36511207342cbf2","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Full |
| + | name","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56f0312ec36511207342cbf3","created_at":null,"updated_at":null,"name":"email","type":"string","label":"Email","hint":"Email","required":true,"localized":false,"unique":false,"default":null,"position":1},{"_id":"56f0312ec36511207342cbf4","created_at":null,"updated_at":null,"name":"message","type":"text","label":"Message","hint":"Customer |
| message","required":true,"localized":false,"unique":false,"default":null,"position":2,"text_formatting":"html"}],"order_by":"created_at","group_by":null,"public_submission_account_emails":[]}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:50 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_type%5Bfields%5D%5B0%5D%5Bhint%5D=Title+of+your+song&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Title&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=title&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=0&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=true&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B1%5D%5Blabel%5D=Cover&content_type%5Bfields%5D%5B1%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B1%5D%5Bname%5D=cover&content_type%5Bfields%5D%5B1%5D%5Bposition%5D=2&content_type%5Bfields%5D%5B1%5D%5Brequired%5D=true&content_type%5Bfields%5D%5B1%5D%5Btype%5D=file&content_type%5Bfields%5D%5B1%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B2%5D%5Blabel%5D=Short+description&content_type%5Bfields%5D%5B2%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B2%5D%5Bname%5D=short_description&content_type%5Bfields%5D%5B2%5D%5Bposition%5D=3&content_type%5Bfields%5D%5B2%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B2%5D%5Btext_formatting%5D=html&content_type%5Bfields%5D%5B2%5D%5Btype%5D=text&content_type%5Bfields%5D%5B2%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B3%5D%5Bhint%5D=Url+to+a+service+like+Blip+for+instance&content_type%5Bfields%5D%5B3%5D%5Blabel%5D=Audio+url&content_type%5Bfields%5D%5B3%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B3%5D%5Bname%5D=audio_url&content_type%5Bfields%5D%5B3%5D%5Bposition%5D=4&content_type%5Bfields%5D%5B3%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B3%5D%5Btype%5D=string&content_type%5Bfields%5D%5B3%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B4%5D%5Bhint%5D=format+like%3A+mm%3Ass&content_type%5Bfields%5D%5B4%5D%5Blabel%5D=Duration&content_type%5Bfields%5D%5B4%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B4%5D%5Bname%5D=duration&content_type%5Bfields%5D%5B4%5D%5Bposition%5D=5&content_type%5Bfields%5D%5B4%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B4%5D%5Btype%5D=string&content_type%5Bfields%5D%5B4%5D%5Bunique%5D=false&content_type%5Blabel_field_name%5D=title&content_type%5Bname%5D=Songs&content_type%5Border_by%5D=_position&content_type%5Border_direction%5D=asc&content_type%5Bslug%5D=songs |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_type%5Bfields%5D%5B0%5D%5Bhint%5D=Title+of+your+song&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Title&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=title&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=0&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=true&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B1%5D%5Blabel%5D=Cover&content_type%5Bfields%5D%5B1%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B1%5D%5Bname%5D=cover&content_type%5Bfields%5D%5B1%5D%5Bposition%5D=2&content_type%5Bfields%5D%5B1%5D%5Brequired%5D=true&content_type%5Bfields%5D%5B1%5D%5Btype%5D=file&content_type%5Bfields%5D%5B1%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B2%5D%5Blabel%5D=Short+description&content_type%5Bfields%5D%5B2%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B2%5D%5Bname%5D=short_description&content_type%5Bfields%5D%5B2%5D%5Bposition%5D=3&content_type%5Bfields%5D%5B2%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B2%5D%5Btext_formatting%5D=html&content_type%5Bfields%5D%5B2%5D%5Btype%5D=text&content_type%5Bfields%5D%5B2%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B3%5D%5Bhint%5D=Url+to+a+service+like+Blip+for+instance&content_type%5Bfields%5D%5B3%5D%5Blabel%5D=Audio+url&content_type%5Bfields%5D%5B3%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B3%5D%5Bname%5D=audio_url&content_type%5Bfields%5D%5B3%5D%5Bposition%5D=4&content_type%5Bfields%5D%5B3%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B3%5D%5Btype%5D=string&content_type%5Bfields%5D%5B3%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B4%5D%5Bhint%5D=format+like%3A+mm%3Ass&content_type%5Bfields%5D%5B4%5D%5Blabel%5D=Duration&content_type%5Bfields%5D%5B4%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B4%5D%5Bname%5D=duration&content_type%5Bfields%5D%5B4%5D%5Bposition%5D=5&content_type%5Bfields%5D%5B4%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B4%5D%5Btype%5D=string&content_type%5Bfields%5D%5B4%5D%5Bunique%5D=false&content_type%5Blabel_field_name%5D=title&content_type%5Bname%5D=Songs&content_type%5Border_by%5D=_position&content_type%5Border_direction%5D=asc&content_type%5Bslug%5D=songs |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:46 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -515,45 +535,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b9a23357ca499809c93d8844c0e0737e" |
| + | - W/"03872ba6aacd80cb0ecaa3eda9c0cdbd" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 0c7403ab-b506-49ba-a5cf-eb6fbf483a6d |
| + | - 42d1ab30-6507-45bf-bc78-fdf61edc92c2 |
| X-Runtime: | |
| - | - '0.085668' |
| + | - '0.076885' |
| Content-Length: | |
| - '1612' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df46c3651180309c60fd","created_at":"2016-02-17T20:59:50Z","updated_at":"2016-02-17T20:59:50Z","name":"Songs","slug":"songs","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56c4df46c3651180309c60fe","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":"Title |
| - | of your song","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56c4df46c3651180309c60ff","created_at":null,"updated_at":null,"name":"cover","type":"file","label":"Cover","hint":null,"required":true,"localized":false,"unique":false,"default":null,"position":2},{"_id":"56c4df46c3651180309c6100","created_at":null,"updated_at":null,"name":"short_description","type":"text","label":"Short |
| - | description","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":3,"text_formatting":"html"},{"_id":"56c4df46c3651180309c6101","created_at":null,"updated_at":null,"name":"audio_url","type":"string","label":"Audio |
| - | url","hint":"Url to a service like Blip for instance","required":false,"localized":false,"unique":false,"default":null,"position":4},{"_id":"56c4df46c3651180309c6102","created_at":null,"updated_at":null,"name":"duration","type":"string","label":"Duration","hint":"format |
| + | string: '{"_id":"56f0312ec36511207342cbf5","created_at":"2016-03-21T17:36:46Z","updated_at":"2016-03-21T17:36:46Z","name":"Songs","slug":"songs","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56f0312ec36511207342cbf6","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":"Title |
| + | of your song","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56f0312ec36511207342cbf7","created_at":null,"updated_at":null,"name":"cover","type":"file","label":"Cover","hint":null,"required":true,"localized":false,"unique":false,"default":null,"position":2},{"_id":"56f0312ec36511207342cbf8","created_at":null,"updated_at":null,"name":"short_description","type":"text","label":"Short |
| + | description","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":3,"text_formatting":"html"},{"_id":"56f0312ec36511207342cbf9","created_at":null,"updated_at":null,"name":"audio_url","type":"string","label":"Audio |
| + | url","hint":"Url to a service like Blip for instance","required":false,"localized":false,"unique":false,"default":null,"position":4},{"_id":"56f0312ec36511207342cbfa","created_at":null,"updated_at":null,"name":"duration","type":"string","label":"Duration","hint":"format |
| like: mm:ss","required":false,"localized":false,"unique":false,"default":null,"position":5}],"order_by":"_position","group_by":null,"public_submission_account_emails":[]}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:50 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_type%5Bdescription%5D=List+of+updates&content_type%5Bfields%5D%5B0%5D%5Bhint%5D=Not+displayed+in+the+website&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Title&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=true&content_type%5Bfields%5D%5B0%5D%5Bname%5D=title&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=0&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B1%5D%5Bhint%5D=Text+displayed+in+the+home+page&content_type%5Bfields%5D%5B1%5D%5Blabel%5D=Text&content_type%5Bfields%5D%5B1%5D%5Blocalized%5D=true&content_type%5Bfields%5D%5B1%5D%5Bname%5D=text&content_type%5Bfields%5D%5B1%5D%5Bposition%5D=1&content_type%5Bfields%5D%5B1%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B1%5D%5Btext_formatting%5D=html&content_type%5Bfields%5D%5B1%5D%5Btype%5D=text&content_type%5Bfields%5D%5B1%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B2%5D%5Bhint%5D=Pick+a+category&content_type%5Bfields%5D%5B2%5D%5Blabel%5D=Category&content_type%5Bfields%5D%5B2%5D%5Blocalized%5D=true&content_type%5Bfields%5D%5B2%5D%5Bname%5D=category&content_type%5Bfields%5D%5B2%5D%5Bposition%5D=2&content_type%5Bfields%5D%5B2%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B0%5D%5Bname%5D%5Ben%5D=General&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B0%5D%5Bname%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B1%5D%5Bname%5D%5Ben%5D=Gigs&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B1%5D%5Bname%5D%5Bfr%5D=Concerts&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B2%5D%5Bname%5D%5Ben%5D=Bands&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B2%5D%5Bname%5D%5Bfr%5D=Groupes&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B3%5D%5Bname%5D=Albums&content_type%5Bfields%5D%5B2%5D%5Btype%5D=select&content_type%5Bfields%5D%5B2%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B3%5D%5Bhint%5D=Date+of+the+update&content_type%5Bfields%5D%5B3%5D%5Blabel%5D=Date&content_type%5Bfields%5D%5B3%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B3%5D%5Bname%5D=date&content_type%5Bfields%5D%5B3%5D%5Bposition%5D=3&content_type%5Bfields%5D%5B3%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B3%5D%5Btype%5D=date&content_type%5Bfields%5D%5B3%5D%5Bunique%5D=false&content_type%5Blabel_field_name%5D=title&content_type%5Bname%5D=Updates&content_type%5Border_by%5D=date&content_type%5Border_direction%5D=asc&content_type%5Bpublic_submission_enabled%5D=false&content_type%5Bslug%5D=updates |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_type%5Bdescription%5D=List+of+updates&content_type%5Bfields%5D%5B0%5D%5Bhint%5D=Not+displayed+in+the+website&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Title&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=true&content_type%5Bfields%5D%5B0%5D%5Bname%5D=title&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=0&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B0%5D%5Btype%5D=string&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B1%5D%5Bhint%5D=Text+displayed+in+the+home+page&content_type%5Bfields%5D%5B1%5D%5Blabel%5D=Text&content_type%5Bfields%5D%5B1%5D%5Blocalized%5D=true&content_type%5Bfields%5D%5B1%5D%5Bname%5D=text&content_type%5Bfields%5D%5B1%5D%5Bposition%5D=1&content_type%5Bfields%5D%5B1%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B1%5D%5Btext_formatting%5D=html&content_type%5Bfields%5D%5B1%5D%5Btype%5D=text&content_type%5Bfields%5D%5B1%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B2%5D%5Bhint%5D=Pick+a+category&content_type%5Bfields%5D%5B2%5D%5Blabel%5D=Category&content_type%5Bfields%5D%5B2%5D%5Blocalized%5D=true&content_type%5Bfields%5D%5B2%5D%5Bname%5D=category&content_type%5Bfields%5D%5B2%5D%5Bposition%5D=2&content_type%5Bfields%5D%5B2%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B0%5D%5Bname%5D%5Ben%5D=General&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B0%5D%5Bname%5D%5Bfr%5D=G%C3%A9n%C3%A9ral&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B1%5D%5Bname%5D%5Ben%5D=Gigs&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B1%5D%5Bname%5D%5Bfr%5D=Concerts&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B2%5D%5Bname%5D%5Ben%5D=Bands&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B2%5D%5Bname%5D%5Bfr%5D=Groupes&content_type%5Bfields%5D%5B2%5D%5Bselect_options%5D%5B3%5D%5Bname%5D=Albums&content_type%5Bfields%5D%5B2%5D%5Btype%5D=select&content_type%5Bfields%5D%5B2%5D%5Bunique%5D=false&content_type%5Bfields%5D%5B3%5D%5Bhint%5D=Date+of+the+update&content_type%5Bfields%5D%5B3%5D%5Blabel%5D=Date&content_type%5Bfields%5D%5B3%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B3%5D%5Bname%5D=date&content_type%5Bfields%5D%5B3%5D%5Bposition%5D=3&content_type%5Bfields%5D%5B3%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B3%5D%5Btype%5D=date&content_type%5Bfields%5D%5B3%5D%5Bunique%5D=false&content_type%5Blabel_field_name%5D=title&content_type%5Bname%5D=Updates&content_type%5Border_by%5D=date&content_type%5Border_direction%5D=asc&content_type%5Bpublic_submission_enabled%5D=false&content_type%5Bslug%5D=updates |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:46 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -562,51 +584,51 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"05e923c02c42a9bcb736db673e1af111" |
| + | - W/"16ddc9a7f45c699abcee21b33ed7ae24" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9872d22a-2081-4c29-963c-04cba7f26bb3 |
| + | - 747737b0-d2b0-4e51-9b30-5cc868f5f774 |
| X-Runtime: | |
| - | - '0.086836' |
| + | - '0.068027' |
| Content-Length: | |
| - '1738' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NmM0ZGY0NmMzNjUxMTgwMzA5YzYxMDMiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wMi0xN1QyMDo1OTo1MFoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Mi0xN1QyMDo1OTo1MFoiLCJuYW1lIjoiVXBkYXRlcyIsInNsdWciOiJ1cGRh |
| + | eyJfaWQiOiI1NmYwMzEyZWMzNjUxMTIwNzM0MmNiZmIiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNi0wMy0yMVQxNzozNjo0NloiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| + | My0yMVQxNzozNjo0NloiLCJuYW1lIjoiVXBkYXRlcyIsInNsdWciOiJ1cGRh |
| dGVzIiwiZGVzY3JpcHRpb24iOiJMaXN0IG9mIHVwZGF0ZXMiLCJsYWJlbF9m | |
| aWVsZF9uYW1lIjoidGl0bGUiLCJvcmRlcl9kaXJlY3Rpb24iOiJhc2MiLCJw | |
| dWJsaWNfc3VibWlzc2lvbl9lbmFibGVkIjpmYWxzZSwicHVibGljX3N1Ym1p | |
| c3Npb25fYWNjb3VudHMiOltdLCJwdWJsaWNfc3VibWlzc2lvbl90aXRsZV90 | |
| ZW1wbGF0ZSI6bnVsbCwiZW50cnlfdGVtcGxhdGUiOm51bGwsImRpc3BsYXlf | |
| - | c2V0dGluZ3MiOm51bGwsImZpZWxkcyI6W3siX2lkIjoiNTZjNGRmNDZjMzY1 |
| - | MTE4MDMwOWM2MTA0IiwiY3JlYXRlZF9hdCI6bnVsbCwidXBkYXRlZF9hdCI6 |
| + | c2V0dGluZ3MiOm51bGwsImZpZWxkcyI6W3siX2lkIjoiNTZmMDMxMmVjMzY1 |
| + | MTEyMDczNDJjYmZjIiwiY3JlYXRlZF9hdCI6bnVsbCwidXBkYXRlZF9hdCI6 |
| bnVsbCwibmFtZSI6InRpdGxlIiwidHlwZSI6InN0cmluZyIsImxhYmVsIjoi | |
| VGl0bGUiLCJoaW50IjoiTm90IGRpc3BsYXllZCBpbiB0aGUgd2Vic2l0ZSIs | |
| InJlcXVpcmVkIjp0cnVlLCJsb2NhbGl6ZWQiOnRydWUsInVuaXF1ZSI6ZmFs | |
| - | c2UsImRlZmF1bHQiOm51bGwsInBvc2l0aW9uIjowfSx7Il9pZCI6IjU2YzRk |
| - | ZjQ2YzM2NTExODAzMDljNjEwNSIsImNyZWF0ZWRfYXQiOm51bGwsInVwZGF0 |
| + | c2UsImRlZmF1bHQiOm51bGwsInBvc2l0aW9uIjowfSx7Il9pZCI6IjU2ZjAz |
| + | MTJlYzM2NTExMjA3MzQyY2JmZCIsImNyZWF0ZWRfYXQiOm51bGwsInVwZGF0 |
| ZWRfYXQiOm51bGwsIm5hbWUiOiJ0ZXh0IiwidHlwZSI6InRleHQiLCJsYWJl | |
| bCI6IlRleHQiLCJoaW50IjoiVGV4dCBkaXNwbGF5ZWQgaW4gdGhlIGhvbWUg | |
| cGFnZSIsInJlcXVpcmVkIjpmYWxzZSwibG9jYWxpemVkIjp0cnVlLCJ1bmlx | |
| dWUiOmZhbHNlLCJkZWZhdWx0IjpudWxsLCJwb3NpdGlvbiI6MSwidGV4dF9m | |
| - | b3JtYXR0aW5nIjoiaHRtbCJ9LHsiX2lkIjoiNTZjNGRmNDZjMzY1MTE4MDMw |
| - | OWM2MTA2IiwiY3JlYXRlZF9hdCI6bnVsbCwidXBkYXRlZF9hdCI6bnVsbCwi |
| + | b3JtYXR0aW5nIjoiaHRtbCJ9LHsiX2lkIjoiNTZmMDMxMmVjMzY1MTEyMDcz |
| + | NDJjYmZlIiwiY3JlYXRlZF9hdCI6bnVsbCwidXBkYXRlZF9hdCI6bnVsbCwi |
| bmFtZSI6ImNhdGVnb3J5IiwidHlwZSI6InNlbGVjdCIsImxhYmVsIjoiQ2F0 | |
| ZWdvcnkiLCJoaW50IjoiUGljayBhIGNhdGVnb3J5IiwicmVxdWlyZWQiOmZh | |
| bHNlLCJsb2NhbGl6ZWQiOnRydWUsInVuaXF1ZSI6ZmFsc2UsImRlZmF1bHQi | |
| Om51bGwsInBvc2l0aW9uIjoyLCJzZWxlY3Rfb3B0aW9ucyI6W3siaWQiOiI1 | |
| - | NmM0ZGY0NmMzNjUxMTgwMzA5YzYxMDgiLCJuYW1lIjp7ImVuIjoiR2VuZXJh |
| - | bCIsImZyIjoiR8OpbsOpcmFsIn0sInBvc2l0aW9uIjowfSx7ImlkIjoiNTZj |
| - | NGRmNDZjMzY1MTE4MDMwOWM2MTA5IiwibmFtZSI6eyJlbiI6IkdpZ3MiLCJm |
| - | ciI6IkNvbmNlcnRzIn0sInBvc2l0aW9uIjowfSx7ImlkIjoiNTZjNGRmNDZj |
| - | MzY1MTE4MDMwOWM2MTBhIiwibmFtZSI6eyJlbiI6IkJhbmRzIiwiZnIiOiJH |
| - | cm91cGVzIn0sInBvc2l0aW9uIjowfSx7ImlkIjoiNTZjNGRmNDZjMzY1MTE4 |
| - | MDMwOWM2MTBiIiwibmFtZSI6eyJlbiI6IkFsYnVtcyJ9LCJwb3NpdGlvbiI6 |
| - | MH1dfSx7Il9pZCI6IjU2YzRkZjQ2YzM2NTExODAzMDljNjEwNyIsImNyZWF0 |
| + | NmYwMzEyZWMzNjUxMTIwNzM0MmNjMDAiLCJuYW1lIjp7ImVuIjoiR2VuZXJh |
| + | bCIsImZyIjoiR8OpbsOpcmFsIn0sInBvc2l0aW9uIjowfSx7ImlkIjoiNTZm |
| + | MDMxMmVjMzY1MTEyMDczNDJjYzAxIiwibmFtZSI6eyJlbiI6IkdpZ3MiLCJm |
| + | ciI6IkNvbmNlcnRzIn0sInBvc2l0aW9uIjowfSx7ImlkIjoiNTZmMDMxMmVj |
| + | MzY1MTEyMDczNDJjYzAyIiwibmFtZSI6eyJlbiI6IkJhbmRzIiwiZnIiOiJH |
| + | cm91cGVzIn0sInBvc2l0aW9uIjowfSx7ImlkIjoiNTZmMDMxMmVjMzY1MTEy |
| + | MDczNDJjYzAzIiwibmFtZSI6eyJlbiI6IkFsYnVtcyJ9LCJwb3NpdGlvbiI6 |
| + | MH1dfSx7Il9pZCI6IjU2ZjAzMTJlYzM2NTExMjA3MzQyY2JmZiIsImNyZWF0 |
| ZWRfYXQiOm51bGwsInVwZGF0ZWRfYXQiOm51bGwsIm5hbWUiOiJkYXRlIiwi | |
| dHlwZSI6ImRhdGUiLCJsYWJlbCI6IkRhdGUiLCJoaW50IjoiRGF0ZSBvZiB0 | |
| aGUgdXBkYXRlIiwicmVxdWlyZWQiOmZhbHNlLCJsb2NhbGl6ZWQiOmZhbHNl | |
| @@ | @@ -614,28 +636,30 @@ http_interactions: |
| LCJvcmRlcl9ieSI6ImRhdGUiLCJncm91cF9ieSI6bnVsbCwicHVibGljX3N1 | |
| Ym1pc3Npb25fYWNjb3VudF9lbWFpbHMiOltdfQ== | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:50 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_type%5Bfields%5D%5B0%5D%5Binverse_of%5D=band&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Songs&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=songs&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=3&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B0%5D%5Btarget%5D=songs&content_type%5Bfields%5D%5B0%5D%5Btype%5D=has_many&content_type%5Bfields%5D%5B0%5D%5Bui_enabled%5D=true&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bname%5D=Bands&content_type%5Bslug%5D=bands |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_type%5Bfields%5D%5B0%5D%5Binverse_of%5D=band&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Songs&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=songs&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=3&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B0%5D%5Btarget%5D=songs&content_type%5Bfields%5D%5B0%5D%5Btype%5D=has_many&content_type%5Bfields%5D%5B0%5D%5Bui_enabled%5D=true&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bname%5D=Bands&content_type%5Bslug%5D=bands |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:46 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -644,45 +668,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ec5dc48e75616ac163c85fcba9724548" |
| + | - W/"db0439caa53a10e4babf789975673ef8" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 46dc57cc-932a-49e3-884a-70c06bf2efc5 |
| + | - 75acffd0-2d27-4b49-b72f-fb5beefad0db |
| X-Runtime: | |
| - | - '0.118600' |
| + | - '0.102686' |
| Content-Length: | |
| - '1861' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df46c3651180309c60e9","created_at":"2016-02-17T20:59:50Z","updated_at":"2016-02-17T20:59:50Z","name":"Bands","slug":"bands","description":"List |
| - | of bands","label_field_name":"name","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56c4df46c3651180309c60ea","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Name |
| - | of the band","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56c4df46c3651180309c60eb","created_at":null,"updated_at":null,"name":"leader","type":"string","label":"Fullname |
| - | of the leader","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":1},{"_id":"56c4df46c3651180309c60ec","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,"default":null,"position":2,"select_options":[{"id":"56c4df46c3651180309c60ee","name":{"en":"grunge"},"position":0},{"id":"56c4df46c3651180309c60ef","name":{"en":"rock"},"position":0},{"id":"56c4df46c3651180309c60f0","name":{"en":"country"},"position":0}]},{"_id":"56c4df46c3651180309c610c","created_at":null,"updated_at":null,"name":"songs","type":"has_many","label":"Songs","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":3,"target":"songs","inverse_of":"band","order_by":null,"ui_enabled":true},{"_id":"56c4df46c3651180309c60ed","created_at":null,"updated_at":null,"name":"featured","type":"boolean","label":"Featured","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":4}],"order_by":"name","group_by":null,"public_submission_account_emails":[]}' |
| + | string: '{"_id":"56f0312dc36511207342cbe1","created_at":"2016-03-21T17:36:45Z","updated_at":"2016-03-21T17:36:46Z","name":"Bands","slug":"bands","description":"List |
| + | of bands","label_field_name":"name","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56f0312dc36511207342cbe2","created_at":null,"updated_at":null,"name":"name","type":"string","label":"Name","hint":"Name |
| + | of the band","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56f0312dc36511207342cbe3","created_at":null,"updated_at":null,"name":"leader","type":"string","label":"Fullname |
| + | of the leader","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":1},{"_id":"56f0312dc36511207342cbe4","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,"default":null,"position":2,"select_options":[{"id":"56f0312dc36511207342cbe6","name":{"en":"grunge"},"position":0},{"id":"56f0312dc36511207342cbe7","name":{"en":"rock"},"position":0},{"id":"56f0312dc36511207342cbe8","name":{"en":"country"},"position":0}]},{"_id":"56f0312ec36511207342cc04","created_at":null,"updated_at":null,"name":"songs","type":"has_many","label":"Songs","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":3,"target":"songs","inverse_of":"band","order_by":null,"ui_enabled":true},{"_id":"56f0312dc36511207342cbe5","created_at":null,"updated_at":null,"name":"featured","type":"boolean","label":"Featured","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":4}],"order_by":"name","group_by":null,"public_submission_account_emails":[]}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:50 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Band&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=band&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=1&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B0%5D%5Btarget%5D=bands&content_type%5Bfields%5D%5B0%5D%5Btype%5D=belongs_to&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bname%5D=Songs&content_type%5Bslug%5D=songs |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_type%5Bfields%5D%5B0%5D%5Blabel%5D=Band&content_type%5Bfields%5D%5B0%5D%5Blocalized%5D=false&content_type%5Bfields%5D%5B0%5D%5Bname%5D=band&content_type%5Bfields%5D%5B0%5D%5Bposition%5D=1&content_type%5Bfields%5D%5B0%5D%5Brequired%5D=false&content_type%5Bfields%5D%5B0%5D%5Btarget%5D=bands&content_type%5Bfields%5D%5B0%5D%5Btype%5D=belongs_to&content_type%5Bfields%5D%5B0%5D%5Bunique%5D=false&content_type%5Bname%5D=Songs&content_type%5Bslug%5D=songs |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:46 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -691,47 +717,49 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6e07d59534408d3c8a632da7d2d03ad2" |
| + | - W/"3771fbab501154f4bacafbe280ce6855" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 82257264-a93f-42ae-a1f2-c5a70db9e755 |
| + | - 34de46c5-5163-4d50-84f4-3e87872d2f6c |
| X-Runtime: | |
| - | - '0.124219' |
| + | - '0.103386' |
| Content-Length: | |
| - '1891' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df46c3651180309c60fd","created_at":"2016-02-17T20:59:50Z","updated_at":"2016-02-17T20:59:50Z","name":"Songs","slug":"songs","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56c4df46c3651180309c60fe","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":"Title |
| - | of your song","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56c4df46c3651180309c610d","created_at":null,"updated_at":null,"name":"band","type":"belongs_to","label":"Band","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":1,"target":"bands","inverse_of":null,"order_by":null,"ui_enabled":true},{"_id":"56c4df46c3651180309c60ff","created_at":null,"updated_at":null,"name":"cover","type":"file","label":"Cover","hint":null,"required":true,"localized":false,"unique":false,"default":null,"position":2},{"_id":"56c4df46c3651180309c6100","created_at":null,"updated_at":null,"name":"short_description","type":"text","label":"Short |
| - | description","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":3,"text_formatting":"html"},{"_id":"56c4df46c3651180309c6101","created_at":null,"updated_at":null,"name":"audio_url","type":"string","label":"Audio |
| - | url","hint":"Url to a service like Blip for instance","required":false,"localized":false,"unique":false,"default":null,"position":4},{"_id":"56c4df46c3651180309c6102","created_at":null,"updated_at":null,"name":"duration","type":"string","label":"Duration","hint":"format |
| + | string: '{"_id":"56f0312ec36511207342cbf5","created_at":"2016-03-21T17:36:46Z","updated_at":"2016-03-21T17:36:46Z","name":"Songs","slug":"songs","description":null,"label_field_name":"title","order_direction":"asc","public_submission_enabled":false,"public_submission_accounts":[],"public_submission_title_template":null,"entry_template":null,"display_settings":null,"fields":[{"_id":"56f0312ec36511207342cbf6","created_at":null,"updated_at":null,"name":"title","type":"string","label":"Title","hint":"Title |
| + | of your song","required":true,"localized":false,"unique":false,"default":null,"position":0},{"_id":"56f0312ec36511207342cc05","created_at":null,"updated_at":null,"name":"band","type":"belongs_to","label":"Band","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":1,"target":"bands","inverse_of":null,"order_by":null,"ui_enabled":true},{"_id":"56f0312ec36511207342cbf7","created_at":null,"updated_at":null,"name":"cover","type":"file","label":"Cover","hint":null,"required":true,"localized":false,"unique":false,"default":null,"position":2},{"_id":"56f0312ec36511207342cbf8","created_at":null,"updated_at":null,"name":"short_description","type":"text","label":"Short |
| + | description","hint":null,"required":false,"localized":false,"unique":false,"default":null,"position":3,"text_formatting":"html"},{"_id":"56f0312ec36511207342cbf9","created_at":null,"updated_at":null,"name":"audio_url","type":"string","label":"Audio |
| + | url","hint":"Url to a service like Blip for instance","required":false,"localized":false,"unique":false,"default":null,"position":4},{"_id":"56f0312ec36511207342cbfa","created_at":null,"updated_at":null,"name":"duration","type":"string","label":"Duration","hint":"format |
| like: mm:ss","required":false,"localized":false,"unique":false,"default":null,"position":5}],"order_by":"_position","group_by":null,"public_submission_account_emails":[]}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:50 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands/entries/alice-in-chains.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=alice-in-chains&content_entry%5Bfeatured%5D=false&content_entry%5Bkind%5D=grunge&content_entry%5Bleader%5D=Layne&content_entry%5Bname%5D=Alice+in+Chains |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=alice-in-chains&content_entry%5Bfeatured%5D=false&content_entry%5Bkind%5D=grunge&content_entry%5Bleader%5D=Layne&content_entry%5Bname%5D=Alice+in+Chains |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:46 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -740,45 +768,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d0749a445ea4b37049c66805834248e1" |
| + | - W/"1b4ab50bc253d2649b50376303be219a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ac584c62-a736-47f9-a0b7-7475a7f807a3 |
| + | - e638058b-66bc-43a0-ac38-d8546d0ce73d |
| X-Runtime: | |
| - | - '0.128644' |
| + | - '0.135278' |
| Content-Length: | |
| - '354' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df47c3651180309c610f","created_at":"2016-02-17T20:59:51Z","updated_at":"2016-02-17T20:59:51Z","_slug":"alice-in-chains","content_type_slug":"bands","_label":"Alice |
| + | string: '{"_id":"56f0312ec36511207342cc07","created_at":"2016-03-21T17:36:46Z","updated_at":"2016-03-21T17:36:46Z","_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: Wed, 17 Feb 2016 20:59:51 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:46 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands/entries/pearl-jam.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=pearl-jam&content_entry%5Bfeatured%5D=false&content_entry%5Bkind%5D=grunge&content_entry%5Bleader%5D=Eddie&content_entry%5Bname%5D=Pearl+Jam |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=pearl-jam&content_entry%5Bfeatured%5D=false&content_entry%5Bkind%5D=grunge&content_entry%5Bleader%5D=Eddie&content_entry%5Bname%5D=Pearl+Jam |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:46 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -787,45 +817,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"908504c555545c5996f743c9a8b05ea2" |
| + | - W/"bbd630d2857e253ce3f5392db964ba8f" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 131b1838-c3e0-4938-8a27-512cb950411d |
| + | - 9525e019-ebf3-4b30-96cd-aa0ad9361efc |
| X-Runtime: | |
| - | - '0.069614' |
| + | - '0.055539' |
| Content-Length: | |
| - '336' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df47c3651180309c6112","created_at":"2016-02-17T20:59:51Z","updated_at":"2016-02-17T20:59:51Z","_slug":"pearl-jam","content_type_slug":"bands","_label":"Pearl |
| + | string: '{"_id":"56f0312fc36511207342cc0a","created_at":"2016-03-21T17:36:47Z","updated_at":"2016-03-21T17:36:47Z","_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: Wed, 17 Feb 2016 20:59:51 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/bands/entries/the-who.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=the-who&content_entry%5Bfeatured%5D=true&content_entry%5Bkind%5D=rock&content_entry%5Bleader%5D=Peter&content_entry%5Bname%5D=The+who |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=the-who&content_entry%5Bfeatured%5D=true&content_entry%5Bkind%5D=rock&content_entry%5Bleader%5D=Peter&content_entry%5Bname%5D=The+who |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -834,41 +866,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ae708325e23433f78bc44ed10a1c3773" |
| + | - W/"91986b053df69a42bcb607c0df2d67a6" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 2d80d35f-cee7-41a7-bca3-7f2a72f9ed9c |
| + | - 87786e2a-6df8-4059-b3b2-142f1119398d |
| X-Runtime: | |
| - | - '0.068844' |
| + | - '0.059015' |
| Content-Length: | |
| - '327' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df47c3651180309c6115","created_at":"2016-02-17T20:59:51Z","updated_at":"2016-02-17T20:59:51Z","_slug":"the-who","content_type_slug":"bands","_label":"The |
| + | string: '{"_id":"56f0312fc36511207342cc0d","created_at":"2016-03-21T17:36:47Z","updated_at":"2016-03-21T17:36:47Z","_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: Wed, 17 Feb 2016 20:59:51 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_assets.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://localhost:3000/locomotive/api/v3/content_assets.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| + | - parched-lagoon-8492 |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -881,16 +915,16 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 060b5c18-f1af-4d96-86b4-4136b6846749 |
| + | - 00ae407d-091d-4ddc-b682-316ef73f748f |
| X-Runtime: | |
| - | - '0.028281' |
| + | - '0.029335' |
| Content-Length: | |
| - '2' | |
| body: | |
| encoding: UTF-8 | |
| string: "[]" | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:51 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/content_assets.json | |
| @@ | @@ -4536,25 +4570,27 @@ http_interactions: |
| OfidNktYCfvn4Km/bXYO/jvMLNj8pMaBuKpZbO3y4yZrtnX/ZscEhoeY1tKX | |
| ETGx9f8LMACQI47rDqNe1wAAAABJRU5ErkJggg0KLS0tLS0tLS0tLS0tLVJ1 | |
| YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRh | |
| - | dGE7IG5hbWU9ImF1dGhfdG9rZW4iDQoNCmUxUVNmTmF3OHpRTTdyV1g1Q1Bm |
| + | dGE7IG5hbWU9ImF1dGhfdG9rZW4iDQoNClY4Vk1DZkNzcDdYelFMdkFkMUFZ |
| DQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QtLQ0KDQo= | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '163838' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -4563,43 +4599,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"5430aebfa9efc8b667bacd85b4ad98d4" |
| + | - W/"95b063be0765195f9444b6e66c730fd4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 68036f02-4dfd-4e98-a427-e5c721a83e97 |
| + | - 32432ee8-3700-4f7e-9fa3-bf98ecfb0c3c |
| X-Runtime: | |
| - | - '0.099024' |
| + | - '0.135548' |
| Content-Length: | |
| - '1109' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df47c3651180309c6117","created_at":"2016-02-17T20:59:51Z","updated_at":"2016-02-17T20:59:51Z","content_type":"image","width":602,"height":397,"vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81NmM0ZGY0NWMzNjUxMTgwMzA5YzYwZTQvYXNzZXRzLzU2YzRkZjQ3YzM2NTExODAzMDljNjExNy9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjg1eDg1IyJdXQ/photo.jpg?sha=a876dc431e59ebab","alternative_vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81NmM0ZGY0NWMzNjUxMTgwMzA5YzYwZTQvYXNzZXRzLzU2YzRkZjQ3YzM2NTExODAzMDljNjExNy9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjE5MHgxMjBcdTAwM2UiLHsiZm9ybWF0IjoicG5nIiwiZnJhbWUiOjB9XSxbInAiLCJlbmNvZGUiLCJwbmciXV0/photo.png?sha=4327ed01f9aaf097","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/56c4df45c3651180309c60e4/assets/56c4df47c3651180309c6117/photo.jpg"}' |
| + | string: '{"_id":"56f0312fc36511207342cc0f","created_at":"2016-03-21T17:36:47Z","updated_at":"2016-03-21T17:36:47Z","content_type":"image","width":602,"height":397,"vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81NmYwMzEyZGMzNjUxMTIwNzM0MmNiZGMvYXNzZXRzLzU2ZjAzMTJmYzM2NTExMjA3MzQyY2MwZi9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjg1eDg1IyJdXQ/photo.jpg?sha=1eac254ff27005b5","alternative_vignette_url":"/images/dynamic/W1siZmYiLCIvVXNlcnMvZGlkaWVyL0RvY3VtZW50cy9Mb2NvbW90aXZlQ01TL2VuZ2luZS9zcGVjL2R1bW15L3B1YmxpYy9zaXRlcy81NmYwMzEyZGMzNjUxMTIwNzM0MmNiZGMvYXNzZXRzLzU2ZjAzMTJmYzM2NTExMjA3MzQyY2MwZi9waG90by5qcGciXSxbInAiLCJ0aHVtYiIsIjE5MHgxMjBcdTAwM2UiLHsiZm9ybWF0IjoicG5nIiwiZnJhbWUiOjB9XSxbInAiLCJlbmNvZGUiLCJwbmciXV0/photo.png?sha=7a017c1934bcc734","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/56f0312dc36511207342cbdc/assets/56f0312fc36511207342cc0f/photo.jpg"}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:51 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 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=e1QSfNaw8zQM7rWX5CPf&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%2F56c4df45c3651180309c60e4%2Fassets%2F56c4df47c3651180309c6117%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=V8VMCfCsp7XzQLvAd1AY&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%2F56f0312dc36511207342cbdc%2Fassets%2F56f0312fc36511207342cc0f%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: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4608,47 +4646,49 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"80b10c226160eb92a01d53ead846e489" |
| + | - W/"ba4de36222151b293b7609b8e499952d" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5c69fee3-4113-4a9b-92f6-32f4a4144544 |
| + | - 4deb3390-8bd4-426f-a2c0-b468a8446814 |
| X-Runtime: | |
| - | - '0.069203' |
| + | - '0.066500' |
| Content-Length: | |
| - '568' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df47c3651180309c6119","created_at":"2016-02-17T20:59:51Z","updated_at":"2016-02-17T20:59:51Z","_slug":"avogadros-number","content_type_slug":"events","_label":"Avogadro''s |
| + | string: '{"_id":"56f0312fc36511207342cc11","created_at":"2016-03-21T17:36:47Z","updated_at":"2016-03-21T17:36:47Z","_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/56c4df45c3651180309c60e4/assets/56c4df47c3651180309c6117/photo.jpg\" |
| + | ipsum\u003cbr/\u003e\u003cimg src=\"/sites/56f0312dc36511207342cbdc/assets/56f0312fc36511207342cc0f/photo.jpg\" |
| alt=\"\" /\u003e\u003c/p\u003e","tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:51 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 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=e1QSfNaw8zQM7rWX5CPf&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%2F56c4df45c3651180309c60e4%2Fassets%2F56c4df47c3651180309c6117%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=V8VMCfCsp7XzQLvAd1AY&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%2F56f0312dc36511207342cbdc%2Fassets%2F56f0312fc36511207342cc0f%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: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4657,47 +4697,49 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"75c0873822f9bdb9cad642c9ec8beaca" |
| + | - W/"678fac86f329e2a4f82e12d8ab388abe" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c40e8c8a-9ef8-467b-bd3b-f50866175589 |
| + | - f6fe639a-b45d-42e0-88d3-33769462074b |
| X-Runtime: | |
| - | - '0.078429' |
| + | - '0.069606' |
| Content-Length: | |
| - '568' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df47c3651180309c611c","created_at":"2016-02-17T20:59:51Z","updated_at":"2016-02-17T20:59:51Z","_slug":"quixotes-true-blue","content_type_slug":"events","_label":"Quixote''s |
| + | string: '{"_id":"56f0312fc36511207342cc14","created_at":"2016-03-21T17:36:47Z","updated_at":"2016-03-21T17:36:47Z","_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/56c4df45c3651180309c60e4/assets/56c4df47c3651180309c6117/photo.jpg\" |
| + | ipsum\u003cbr/\u003e\u003cimg src=\"/sites/56f0312dc36511207342cbdc/assets/56f0312fc36511207342cc0f/photo.jpg\" |
| alt=\"\" /\u003e\u003c/p\u003e","tags":null,"price":0.0}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:51 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/kellys-westport-inn.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=kellys-westport-inn&content_entry%5Bcity%5D=Kansas+City&content_entry%5Bdate%5D=2012-06-06&content_entry%5Bplace%5D=Kelly%27s+Westport+Inn&content_entry%5Bprice%5D=5.5&content_entry%5Bstate%5D=Missouri&content_entry%5Btags%5D%5B%5D=awesome&content_entry%5Btags%5D%5B%5D=open+bar |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=kellys-westport-inn&content_entry%5Bcity%5D=Kansas+City&content_entry%5Bdate%5D=2012-06-06&content_entry%5Bplace%5D=Kelly%27s+Westport+Inn&content_entry%5Bprice%5D=5.5&content_entry%5Bstate%5D=Missouri&content_entry%5Btags%5D%5B%5D=awesome&content_entry%5Btags%5D%5B%5D=open+bar |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4706,46 +4748,48 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"86e9b6ece2f370e7e4c7fc2723285d23" |
| + | - W/"5cd53b97ba104cfcd01d4e32be392e52" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f3dd6909-d8c8-4e32-89a7-98e55c09dbf4 |
| + | - aed5501f-de19-403f-945b-f5fb61334f4c |
| X-Runtime: | |
| - | - '0.108931' |
| + | - '0.068258' |
| Content-Length: | |
| - '435' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df47c3651180309c611f","created_at":"2016-02-17T20:59:51Z","updated_at":"2016-02-17T20:59:51Z","_slug":"kellys-westport-inn","content_type_slug":"events","_label":"Kelly''s |
| + | string: '{"_id":"56f0312fc36511207342cc17","created_at":"2016-03-21T17:36:47Z","updated_at":"2016-03-21T17:36:47Z","_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: Wed, 17 Feb 2016 20:59:51 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/brownes-market.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=brownes-market&content_entry%5Bcity%5D=Kansas+City&content_entry%5Bdate%5D=2012-06-06&content_entry%5Bplace%5D=Browne%27s+Market&content_entry%5Bprice%5D=15.0&content_entry%5Bstate%5D=Missouri&content_entry%5Btags%5D%5B%5D=awesome&content_entry%5Btags%5D%5B%5D=open+bar |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=brownes-market&content_entry%5Bcity%5D=Kansas+City&content_entry%5Bdate%5D=2012-06-06&content_entry%5Bplace%5D=Browne%27s+Market&content_entry%5Bprice%5D=15.0&content_entry%5Bstate%5D=Missouri&content_entry%5Btags%5D%5B%5D=awesome&content_entry%5Btags%5D%5B%5D=open+bar |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4754,46 +4798,48 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"1388731fda605441b2eafa7168b4ab0e" |
| + | - W/"8a8ecf2e59446c848ff6345c1acb6337" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 95d412e3-a080-473a-aa06-884ec65c4351 |
| + | - e3e3fa56-c1e2-48b0-8203-cc17777ac0da |
| X-Runtime: | |
| - | - '0.091039' |
| + | - '0.066810' |
| Content-Length: | |
| - '421' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df47c3651180309c6122","created_at":"2016-02-17T20:59:51Z","updated_at":"2016-02-17T20:59:51Z","_slug":"brownes-market","content_type_slug":"events","_label":"Browne''s |
| + | string: '{"_id":"56f0312fc36511207342cc1a","created_at":"2016-03-21T17:36:47Z","updated_at":"2016-03-21T17:36:47Z","_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: Wed, 17 Feb 2016 20:59:51 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/ballydoyles.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=ballydoyles&content_entry%5Bcity%5D=Aurora&content_entry%5Bdate%5D=2012-06-05&content_entry%5Bplace%5D=Ballydoyle%27s&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Illinois |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=ballydoyles&content_entry%5Bcity%5D=Aurora&content_entry%5Bdate%5D=2012-06-05&content_entry%5Bplace%5D=Ballydoyle%27s&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Illinois |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4802,43 +4848,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"0a27ac7646e854ce0391edd6d220b553" |
| + | - W/"c9081706db1270e257c6ebc8d868354d" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c5bd27e9-8c9f-43ed-9c64-c76a849cf04f |
| + | - 32a81857-6f92-4156-baf5-6504503417fd |
| X-Runtime: | |
| - | - '0.084276' |
| + | - '0.068538' |
| Content-Length: | |
| - '388' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df48c3651180309c6125","created_at":"2016-02-17T20:59:52Z","updated_at":"2016-02-17T20:59:52Z","_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":"56f0312fc36511207342cc1d","created_at":"2016-03-21T17:36:47Z","updated_at":"2016-03-21T17:36: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: Wed, 17 Feb 2016 20:59:52 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/the-belmont.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=the-belmont&content_entry%5Bcity%5D=Hamtramk&content_entry%5Bdate%5D=2012-06-04&content_entry%5Bplace%5D=The+Belmont&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Michigan |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=the-belmont&content_entry%5Bcity%5D=Hamtramk&content_entry%5Bdate%5D=2012-06-04&content_entry%5Bplace%5D=The+Belmont&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Michigan |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4847,45 +4895,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"8cc52862055a0be786c86279ad527e8b" |
| + | - W/"a5825c0c4de18f2db97543a39c042a90" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 968d99af-c45c-4a33-bb5f-693ef726dcbe |
| + | - 56f84be1-68ec-4b25-8952-e4bed43fe66a |
| X-Runtime: | |
| - | - '0.089822' |
| + | - '0.066899' |
| Content-Length: | |
| - '388' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df48c3651180309c6128","created_at":"2016-02-17T20:59:52Z","updated_at":"2016-02-17T20:59:52Z","_slug":"the-belmont","content_type_slug":"events","_label":"The |
| + | string: '{"_id":"56f0312fc36511207342cc20","created_at":"2016-03-21T17:36:47Z","updated_at":"2016-03-21T17:36: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: Wed, 17 Feb 2016 20:59:52 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/avogadros-number-1.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=avogadros-number-1&content_entry%5Bcity%5D=Fort+Collins&content_entry%5Bdate%5D=2011-06-11&content_entry%5Bplace%5D=Avogadro%27s+Number&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Colorado |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=avogadros-number-1&content_entry%5Bcity%5D=Fort+Collins&content_entry%5Bdate%5D=2011-06-11&content_entry%5Bplace%5D=Avogadro%27s+Number&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Colorado |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4894,45 +4944,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"43f01bb56fc69f491e00463585186521" |
| + | - W/"2f928936309611c9f0db3db8c41fd504" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ced5507d-b44f-4292-accb-be4d69a90a83 |
| + | - 4a4ef875-ea02-4467-9a67-39cd3df6e128 |
| X-Runtime: | |
| - | - '0.079841' |
| + | - '0.061286' |
| Content-Length: | |
| - '411' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df48c3651180309c612b","created_at":"2016-02-17T20:59:52Z","updated_at":"2016-02-17T20:59:52Z","_slug":"avogadros-number-1","content_type_slug":"events","_label":"Avogadro''s |
| + | string: '{"_id":"56f0312fc36511207342cc23","created_at":"2016-03-21T17:36:47Z","updated_at":"2016-03-21T17:36: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: Wed, 17 Feb 2016 20:59:52 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:47 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/quixotes-true-blue-1.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=quixotes-true-blue-1&content_entry%5Bcity%5D=Denver&content_entry%5Bdate%5D=2011-06-10&content_entry%5Bplace%5D=Quixote%27s+True+Blue&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Colorado |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=quixotes-true-blue-1&content_entry%5Bcity%5D=Denver&content_entry%5Bdate%5D=2011-06-10&content_entry%5Bplace%5D=Quixote%27s+True+Blue&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Colorado |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:47 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4941,45 +4993,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ddb4b2f9f4b60e4e061a49d61c4967f8" |
| + | - W/"054900ba70af743a7628ff56d111e585" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 520555a9-38bd-4ae5-b28e-ab89df25a6a2 |
| + | - 9c48ba60-2414-4a63-b911-e228d2b4fb47 |
| X-Runtime: | |
| - | - '0.086493' |
| + | - '0.063488' |
| Content-Length: | |
| - '411' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df48c3651180309c612e","created_at":"2016-02-17T20:59:52Z","updated_at":"2016-02-17T20:59:52Z","_slug":"quixotes-true-blue-1","content_type_slug":"events","_label":"Quixote''s |
| + | string: '{"_id":"56f03130c36511207342cc26","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36:48Z","_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: Wed, 17 Feb 2016 20:59:52 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/kellys-westport-inn-1.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=kellys-westport-inn-1&content_entry%5Bcity%5D=Kansas+City&content_entry%5Bdate%5D=2011-06-06&content_entry%5Bplace%5D=Kelly%27s+Westport+Inn&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Missouri |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=kellys-westport-inn-1&content_entry%5Bcity%5D=Kansas+City&content_entry%5Bdate%5D=2011-06-06&content_entry%5Bplace%5D=Kelly%27s+Westport+Inn&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Missouri |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -4988,45 +5042,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c927ba2f078db7f0ec835bf08e0e8ff1" |
| + | - W/"40b1baf71a3d3e717f41ccc4e878311c" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 24809a58-4ffe-4cb9-ad79-4ca31a2d0005 |
| + | - 5e4791ab-7613-4283-9875-f33dc27d9ac8 |
| X-Runtime: | |
| - | - '0.086167' |
| + | - '0.067873' |
| Content-Length: | |
| - '419' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df48c3651180309c6131","created_at":"2016-02-17T20:59:52Z","updated_at":"2016-02-17T20:59:52Z","_slug":"kellys-westport-inn-1","content_type_slug":"events","_label":"Kelly''s |
| + | string: '{"_id":"56f03130c36511207342cc29","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36:48Z","_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: Wed, 17 Feb 2016 20:59:52 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/brownes-market-1.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=brownes-market-1&content_entry%5Bcity%5D=Kansas+City&content_entry%5Bdate%5D=2011-06-06&content_entry%5Bplace%5D=Browne%27s+Market&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Missouri |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=brownes-market-1&content_entry%5Bcity%5D=Kansas+City&content_entry%5Bdate%5D=2011-06-06&content_entry%5Bplace%5D=Browne%27s+Market&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Missouri |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -5035,45 +5091,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"3b0703201cd86db19d7d4fb255b63f71" |
| + | - W/"41823215c75ade0cc56ebad84171ac9d" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 84b2a419-adfa-4735-b907-a0b4e8620113 |
| + | - 6ce19d3a-682b-41ac-9eef-be9050954831 |
| X-Runtime: | |
| - | - '0.085613' |
| + | - '0.067003' |
| Content-Length: | |
| - '404' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df48c3651180309c6134","created_at":"2016-02-17T20:59:52Z","updated_at":"2016-02-17T20:59:52Z","_slug":"brownes-market-1","content_type_slug":"events","_label":"Browne''s |
| + | string: '{"_id":"56f03130c36511207342cc2c","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36:48Z","_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: Wed, 17 Feb 2016 20:59:52 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/ballydoyles-1.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=ballydoyles-1&content_entry%5Bcity%5D=Aurora&content_entry%5Bdate%5D=2011-06-05&content_entry%5Bplace%5D=Ballydoyle%27s&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Illinois |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=ballydoyles-1&content_entry%5Bcity%5D=Aurora&content_entry%5Bdate%5D=2011-06-05&content_entry%5Bplace%5D=Ballydoyle%27s&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Illinois |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -5082,43 +5140,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"14fc95f2f148835f61d0d7b9203eedf8" |
| + | - W/"c553c3bc8f0f70aa050fb2e741da5386" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 51223a61-b1d0-4175-a6a2-8480f1521a6e |
| + | - 14983496-d672-4bee-ae6e-6bcfebeca5e5 |
| X-Runtime: | |
| - | - '0.080361' |
| + | - '0.068275' |
| Content-Length: | |
| - '391' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df48c3651180309c6137","created_at":"2016-02-17T20:59:52Z","updated_at":"2016-02-17T20:59:52Z","_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":"56f03130c36511207342cc2f","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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: Wed, 17 Feb 2016 20:59:52 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/events/entries/the-belmont-1.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=the-belmont-1&content_entry%5Bcity%5D=Hamtramk&content_entry%5Bdate%5D=2011-06-04&content_entry%5Bplace%5D=The+Belmont&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Michigan |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=the-belmont-1&content_entry%5Bcity%5D=Hamtramk&content_entry%5Bdate%5D=2011-06-04&content_entry%5Bplace%5D=The+Belmont&content_entry%5Bprice%5D=0.0&content_entry%5Bstate%5D=Michigan |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -5127,22 +5187,22 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6597e227b3b63875fc03f8b39aacc3dd" |
| + | - W/"bfe120a5f5168c8f5c708ef863290318" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 88059f14-d5fd-4aad-890c-d29563e3cfa5 |
| + | - d0729f99-3b0c-41f6-b272-6f1d4b5da973 |
| X-Runtime: | |
| - | - '0.082177' |
| + | - '0.068861' |
| Content-Length: | |
| - '391' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df48c3651180309c613a","created_at":"2016-02-17T20:59:52Z","updated_at":"2016-02-17T20:59:52Z","_slug":"the-belmont-1","content_type_slug":"events","_label":"The |
| + | string: '{"_id":"56f03130c36511207342cc32","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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: Wed, 17 Feb 2016 20:59:52 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-1.json | |
| @@ | @@ -5502,27 +5562,29 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '15963' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -5531,26 +5593,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c03dc36db17a99508a0952eff4b4c740" |
| + | - W/"0c03b1764b69a05533fcc5a129d4a0a6" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - f3ced6f4-a1e6-4797-9767-80f6a08e17c3 |
| + | - 2080e397-a5c7-4028-a360-3fed2e919330 |
| X-Runtime: | |
| - | - '0.097286' |
| + | - '0.084003' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df48c3651180309c613d","created_at":"2016-02-17T20:59:52Z","updated_at":"2016-02-17T20:59:52Z","_slug":"song-number-1","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc35","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df48c3651180309c613d/files/cover.jpg","short_description":"Lorem |
| + | #1","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc35/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: Wed, 17 Feb 2016 20:59:52 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-2.json | |
| @@ | @@ -5910,27 +5972,29 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '15963' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -5939,26 +6003,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"262cbf5b534ca10a52add2efcbeacf9d" |
| + | - W/"a99ae8144db6d7aae773d278f3378687" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 2d483309-f694-4c73-b1e6-75d507a0985d |
| + | - f8376525-e07c-4e04-ba46-890ca78de456 |
| X-Runtime: | |
| - | - '0.091715' |
| + | - '0.079881' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6140","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:53Z","_slug":"song-number-2","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc38","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c6140/files/cover.jpg","short_description":"Lorem |
| + | #2","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc38/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: Wed, 17 Feb 2016 20:59:53 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-3.json | |
| @@ | @@ -6318,27 +6382,29 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '15963' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -6347,26 +6413,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"f224f2f923e35afab78a90b1adb4f3ca" |
| + | - W/"4b289d59b51f5fddbd3f627a65bdd20a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 364ef463-c3e3-49ce-a723-c93ea4e53187 |
| + | - 477058c8-52d4-44e1-a720-31fe203b7bb5 |
| X-Runtime: | |
| - | - '0.093180' |
| + | - '0.074169' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6143","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:53Z","_slug":"song-number-3","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc3b","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c6143/files/cover.jpg","short_description":"Lorem |
| + | #3","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc3b/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: Wed, 17 Feb 2016 20:59:53 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-4.json | |
| @@ | @@ -6726,27 +6792,29 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '15963' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -6755,26 +6823,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"09b9089dc5fde4e532c00b21d5c3661d" |
| + | - W/"bd4684e5b7191fe336f89ef9a16fefea" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 398921a4-3b99-4fb6-b7e9-a8b578e1c376 |
| + | - 64930c53-6190-4614-a6b3-91499bc5b638 |
| X-Runtime: | |
| - | - '0.093453' |
| + | - '0.080872' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6146","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:53Z","_slug":"song-number-4","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc3e","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c6146/files/cover.jpg","short_description":"Lorem |
| + | #4","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc3e/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: Wed, 17 Feb 2016 20:59:53 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-5.json | |
| @@ | @@ -7134,27 +7202,29 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '15963' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -7163,26 +7233,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"adec4772036a826d21f086e592ca8737" |
| + | - W/"6a711c1250d69e12e2944dc7435c4cb8" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 70cd4f12-2aee-4001-977c-c2ee67271e63 |
| + | - 80f8b79d-8262-40ff-9246-330203d537d1 |
| X-Runtime: | |
| - | - '0.087096' |
| + | - '0.077989' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6149","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:53Z","_slug":"song-number-5","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc41","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c6149/files/cover.jpg","short_description":"Lorem |
| + | #5","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc41/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: Wed, 17 Feb 2016 20:59:53 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:48 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-6.json | |
| @@ | @@ -7542,27 +7612,29 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:48 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '15963' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -7571,26 +7643,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c9dfbfb162c4c94ca42d2db02a00cfe5" |
| + | - W/"e5f3e16242ccea66f743467ffa707209" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c8cd5d3d-decb-46ab-833c-7182656d62d6 |
| + | - c73a5070-4946-4d9c-80ad-92f53d0821d8 |
| X-Runtime: | |
| - | - '0.088673' |
| + | - '0.084126' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c614c","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:53Z","_slug":"song-number-6","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc44","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c614c/files/cover.jpg","short_description":"Lorem |
| + | #6","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc44/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: Wed, 17 Feb 2016 20:59:53 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-7.json | |
| @@ | @@ -7950,27 +8022,29 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '15963' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -7979,26 +8053,26 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6426e307d71de745102244841deecacd" |
| + | - W/"a31853dd223ad3064696821bbbc47bd7" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 6cbd4e3f-3340-4730-8b4d-d1d617608bf1 |
| + | - 76f17869-3524-4f7b-968f-14cf778ff9f3 |
| X-Runtime: | |
| - | - '0.091591' |
| + | - '0.086624' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c614f","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:53Z","_slug":"song-number-7","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03131c36511207342cc47","created_at":"2016-03-21T17:36:49Z","updated_at":"2016-03-21T17:36:49Z","_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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c614f/files/cover.jpg","short_description":"Lorem |
| + | #7","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03131c36511207342cc47/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: Wed, 17 Feb 2016 20:59:53 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/song-number-8.json | |
| @@ | @@ -8358,27 +8432,29 @@ http_interactions: |
| bnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iY29udGVudF9l | |
| bnRyeVtkdXJhdGlvbl0iDQoNCjY6MjgNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs | |
| dGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBu | |
| - | YW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0KLS0t |
| + | YW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0KLS0t |
| LS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '15963' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8387,49 +8463,51 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d65177b70e620a7c4c2c17ec5f188f06" |
| + | - W/"939473504160e9fb2e8d33bc962aee40" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 0f25fc77-893f-4a9f-a3d4-f0fac814871f |
| + | - 4aca1289-4f9e-4a94-95ed-8a9bea960f26 |
| X-Runtime: | |
| - | - '0.086176' |
| + | - '0.082609' |
| Content-Length: | |
| - '783' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6152","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:53Z","_slug":"song-number-8","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03131c36511207342cc4a","created_at":"2016-03-21T17:36:49Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c6152/files/cover.jpg","short_description":"Lorem |
| + | #8","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03131c36511207342cc4a/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: Wed, 17 Feb 2016 20:59:53 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-1.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=update-number-1&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-05-12&content_entry%5Btext%5D=added+some+free+stuff&content_entry%5Btitle%5D=Update+%231 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=update-number-1&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-05-12&content_entry%5Btext%5D=added+some+free+stuff&content_entry%5Btitle%5D=Update+%231 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8438,45 +8516,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"cb8f2e708cd92021ccdf90bd02ca9ad5" |
| + | - W/"4f9e408ec7667771c445358a59bada0c" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7ddb29a8-2855-4dcc-8214-e668f9086f14 |
| + | - 334aff38-845a-48bf-a96b-9bd2522920cd |
| X-Runtime: | |
| - | - '0.097917' |
| + | - '0.070477' |
| Content-Length: | |
| - '367' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6155","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:53Z","_slug":"update-number-1","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"56f03131c36511207342cc4d","created_at":"2016-03-21T17:36:49Z","updated_at":"2016-03-21T17:36: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":"General","date":"2009-05-12"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:53 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-2.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=update-number-2&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-05-23&content_entry%5Btext%5D=added+a+chatroom&content_entry%5Btitle%5D=Update+%232 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=update-number-2&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-05-23&content_entry%5Btext%5D=added+a+chatroom&content_entry%5Btitle%5D=Update+%232 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8485,45 +8565,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"01f7cc346cf4e7c7e5e03350dd55371e" |
| + | - W/"fe6a83d75af333adfb46d87f601cde3b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 3d49477f-127f-4660-b758-eb2c74b8d06c |
| + | - e24e82bd-8440-41fd-9f59-0c59ae287076 |
| X-Runtime: | |
| - | - '0.066730' |
| + | - '0.060693' |
| Content-Length: | |
| - '362' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6158","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:53Z","_slug":"update-number-2","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"56f03131c36511207342cc50","created_at":"2016-03-21T17:36:49Z","updated_at":"2016-03-21T17:36: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":"General","date":"2009-05-23"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:53 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-3.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=update-number-3&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-06-29&content_entry%5Btext%5D=site+redesign&content_entry%5Btitle%5D=Update+%233 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=update-number-3&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-06-29&content_entry%5Btext%5D=site+redesign&content_entry%5Btitle%5D=Update+%233 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8532,45 +8614,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"a612493489dfbec13d258190ae14ce5d" |
| + | - W/"eaa558360fe2046ba8fe6e44a421a6b2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4c7bd3dd-eee3-48a2-a7ae-776d66493257 |
| + | - e2c464c5-d0d4-45ba-bd5a-9a37d39b44ef |
| X-Runtime: | |
| - | - '0.065750' |
| + | - '0.056749' |
| Content-Length: | |
| - '359' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c615b","created_at":"2016-02-17T20:59:54Z","updated_at":"2016-02-17T20:59:54Z","_slug":"update-number-3","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"56f03131c36511207342cc53","created_at":"2016-03-21T17:36:49Z","updated_at":"2016-03-21T17:36: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":"General","date":"2009-06-29"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:54 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-4.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=update-number-4&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-10-09&content_entry%5Btext%5D=NEW+ALBUM+FINISHED%21%21&content_entry%5Btitle%5D=Update+%234 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=update-number-4&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-10-09&content_entry%5Btext%5D=NEW+ALBUM+FINISHED%21%21&content_entry%5Btitle%5D=Update+%234 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8579,45 +8663,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"d8d4731dacd40261744ca867a0982170" |
| + | - W/"11c5af65b4a320e84e6d5150199f44d9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - bdb40c4b-4480-46a1-bae7-7d1f8bbcc0af |
| + | - fb52f3f0-2196-4672-b405-3d2526ef9110 |
| X-Runtime: | |
| - | - '0.069925' |
| + | - '0.060324' |
| Content-Length: | |
| - '366' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ac3651180309c615e","created_at":"2016-02-17T20:59:54Z","updated_at":"2016-02-17T20:59:54Z","_slug":"update-number-4","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"56f03131c36511207342cc56","created_at":"2016-03-21T17:36:49Z","updated_at":"2016-03-21T17:36: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":"General","date":"2009-10-09"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:54 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-5.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=update-number-5&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-11-02&content_entry%5Btext%5D=brian+posted+a+new+post&content_entry%5Btitle%5D=Update+%235 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=update-number-5&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-11-02&content_entry%5Btext%5D=brian+posted+a+new+post&content_entry%5Btitle%5D=Update+%235 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8626,45 +8712,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"91127e2dae6ae6f6d18e8ea4cb2a4d6a" |
| + | - W/"b3bad285190c34ec1175c8e63324a7fd" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8058cd00-1e9c-4454-b518-ec40c09e2664 |
| + | - c42d70ee-2496-465c-88ba-109ceb3903f2 |
| X-Runtime: | |
| - | - '0.066650' |
| + | - '0.060876' |
| Content-Length: | |
| - '369' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ac3651180309c6161","created_at":"2016-02-17T20:59:54Z","updated_at":"2016-02-17T20:59:54Z","_slug":"update-number-5","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"56f03131c36511207342cc59","created_at":"2016-03-21T17:36:49Z","updated_at":"2016-03-21T17:36: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":"General","date":"2009-11-02"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:54 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/update-number-6.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=update-number-6&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-11-16&content_entry%5Btext%5D=john+posted+a+new+post&content_entry%5Btitle%5D=Update+%236 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=update-number-6&content_entry%5Bcategory%5D=General&content_entry%5Bdate%5D=2009-11-16&content_entry%5Btext%5D=john+posted+a+new+post&content_entry%5Btitle%5D=Update+%236 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8673,45 +8761,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"84c2451a0adb11161dbf94416d18eefe" |
| + | - W/"6a5c4a07af4c5f5351e83ddbf2d422b9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 283393ae-e686-442a-8dc4-6615f8cbfd8b |
| + | - 6b0fa805-8cf9-4966-aaf7-378b9df9c3c2 |
| X-Runtime: | |
| - | - '0.057529' |
| + | - '0.061593' |
| Content-Length: | |
| - '368' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ac3651180309c6164","created_at":"2016-02-17T20:59:54Z","updated_at":"2016-02-17T20:59:54Z","_slug":"update-number-6","content_type_slug":"updates","_label":"Update |
| + | string: '{"_id":"56f03131c36511207342cc5c","created_at":"2016-03-21T17:36:49Z","updated_at":"2016-03-21T17:36: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":"General","date":"2009-11-16"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:54 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56c4df48c3651180309c613d.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56f03130c36511207342cc35.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5Bband%5D=pearl-jam |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5Bband%5D=pearl-jam |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8720,49 +8810,51 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"5e715b73dac61b330712f1d913607b3a" |
| + | - W/"7cd773e1f0b526b99d6366ed08624888" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - d2dfef7a-5dae-4238-ad31-1907d3a52516 |
| + | - e6227b6f-8b9a-48be-beea-264fa80beb6e |
| X-Runtime: | |
| - | - '0.075931' |
| + | - '0.089754' |
| Content-Length: | |
| - '790' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df48c3651180309c613d","created_at":"2016-02-17T20:59:52Z","updated_at":"2016-02-17T20:59:54Z","_slug":"song-number-1","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc35","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df48c3651180309c613d/files/cover.jpg","short_description":"Lorem |
| + | #1","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc35/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: Wed, 17 Feb 2016 20:59:54 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56c4df49c3651180309c6140.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56f03130c36511207342cc38.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5Bband%5D=pearl-jam |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5Bband%5D=pearl-jam |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:49 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8771,49 +8863,51 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"4fe0c6d01c3ea942e1554ca927b45658" |
| + | - W/"dd15bf06c455a7325aa0484faabb8c95" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8019341f-0f6d-43a6-b141-39bd8b4c25e3 |
| + | - a5c4b98c-2a79-49e1-bbd2-18ebc8b4a4fd |
| X-Runtime: | |
| - | - '0.074434' |
| + | - '0.069639' |
| Content-Length: | |
| - '790' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6140","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:54Z","_slug":"song-number-2","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc38","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36:49Z","_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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c6140/files/cover.jpg","short_description":"Lorem |
| + | #2","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc38/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: Wed, 17 Feb 2016 20:59:54 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:49 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56c4df49c3651180309c6143.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56f03130c36511207342cc3b.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5Bband%5D=pearl-jam |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5Bband%5D=pearl-jam |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8822,49 +8916,51 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"214d23185fd8dbd18413cd16010be981" |
| + | - W/"1e5fd01cdc69e5602de33db9c7b36075" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8ce80d95-e0c7-4467-bee8-4c87271afc5d |
| + | - 8849570a-a246-499f-89a9-6b22f715c80d |
| X-Runtime: | |
| - | - '0.076165' |
| + | - '0.068685' |
| Content-Length: | |
| - '790' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6143","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:54Z","_slug":"song-number-3","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc3b","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c6143/files/cover.jpg","short_description":"Lorem |
| + | #3","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc3b/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: Wed, 17 Feb 2016 20:59:54 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56c4df49c3651180309c6146.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56f03130c36511207342cc3e.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5Bband%5D=pearl-jam |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5Bband%5D=pearl-jam |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8873,49 +8969,51 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7dfd2a698724a23ac48c96f8ab94bf1f" |
| + | - W/"e7ed84e5a4674c32295d3fe7b784a1b4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 6cca65f3-0f08-41e5-a89a-7abe1b00fcb5 |
| + | - b8062b3a-1f3c-4f27-bdca-8db9c8439c79 |
| X-Runtime: | |
| - | - '0.078430' |
| + | - '0.072586' |
| Content-Length: | |
| - '790' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6146","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:54Z","_slug":"song-number-4","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc3e","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c6146/files/cover.jpg","short_description":"Lorem |
| + | #4","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc3e/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: Wed, 17 Feb 2016 20:59:54 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56c4df49c3651180309c6149.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56f03130c36511207342cc41.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5Bband%5D=the-who |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5Bband%5D=the-who |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8924,49 +9022,51 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"9816e39f55f66e7ea08f3c835f0022c2" |
| + | - W/"46f2789e07d57ddf1c2fccb72163c5a0" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4ac42b42-ac12-47e7-b6fa-6def95be775f |
| + | - c33002a4-0fa5-4a88-8f80-110348f747c1 |
| X-Runtime: | |
| - | - '0.078577' |
| + | - '0.069046' |
| Content-Length: | |
| - '788' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c6149","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:54Z","_slug":"song-number-5","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc41","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c6149/files/cover.jpg","short_description":"Lorem |
| + | #5","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc41/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: Wed, 17 Feb 2016 20:59:54 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56c4df49c3651180309c614c.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/songs/entries/56f03130c36511207342cc44.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5Bband%5D=the-who |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5Bband%5D=the-who |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - '' | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -8975,49 +9075,51 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"10af99ba1073d03ded04d948944a0870" |
| + | - W/"5b3a02e67630baf0ba8116e6a82e8cea" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 1859df19-cfdf-4a03-a62f-039bb5ad8710 |
| + | - b3dfbaa4-0eca-4066-9504-4a2302de8243 |
| X-Runtime: | |
| - | - '0.077032' |
| + | - '0.071019' |
| Content-Length: | |
| - '788' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df49c3651180309c614c","created_at":"2016-02-17T20:59:53Z","updated_at":"2016-02-17T20:59:54Z","_slug":"song-number-6","content_type_slug":"songs","_label":"Song |
| + | string: '{"_id":"56f03130c36511207342cc44","created_at":"2016-03-21T17:36:48Z","updated_at":"2016-03-21T17:36: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/56c4df45c3651180309c60e4/content_entry56c4df46c3651180309c60fd/56c4df49c3651180309c614c/files/cover.jpg","short_description":"Lorem |
| + | #6","cover":"/sites/56f0312dc36511207342cbdc/content_entry56f0312ec36511207342cbf5/56f03130c36511207342cc44/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: Wed, 17 Feb 2016 20:59:54 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56c4df49c3651180309c6155.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56f03131c36511207342cc4d.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=mise-a-jour-number-1&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%231 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=mise-a-jour-number-1&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%231 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -9026,21 +9128,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c8e908f20160afdb6966a6a6f08657a6" |
| + | - W/"4e4515aa5d1ec7581866dda45885ceb0" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e6771023-a687-4fba-a513-a8dbb9a7b319 |
| + | - 0b998db7-214b-4736-b5a6-af3012a01e97 |
| X-Runtime: | |
| - | - '0.073280' |
| + | - '0.063896' |
| Content-Length: | |
| - '372' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NmM0ZGY0OWMzNjUxMTgwMzA5YzYxNTUiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wMi0xN1QyMDo1OTo1M1oiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Mi0xN1QyMDo1OTo1NVoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci0x |
| + | eyJfaWQiOiI1NmYwMzEzMWMzNjUxMTIwNzM0MmNjNGQiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNi0wMy0yMVQxNzozNjo0OVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| + | My0yMVQxNzozNjo1MFoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci0x |
| IiwiY29udGVudF90eXBlX3NsdWciOiJ1cGRhdGVzIiwiX2xhYmVsIjoiTWlz | |
| ZSBhIGpvdXIgIzEiLCJfcG9zaXRpb24iOjAsIl92aXNpYmxlIjp0cnVlLCJz | |
| ZW9fdGl0bGUiOm51bGwsIm1ldGFfa2V5d29yZHMiOm51bGwsIm1ldGFfZGVz | |
| @@ | @@ -9048,30 +9150,32 @@ http_interactions: |
| IjoicGhyYXNlIEZSIiwiY2F0ZWdvcnkiOiJHw6luw6lyYWwiLCJkYXRlIjoi | |
| MjAwOS0wNS0xMiJ9 | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:55 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56c4df49c3651180309c6158.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56f03131c36511207342cc50.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=mise-a-jour-number-2&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%232 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=mise-a-jour-number-2&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%232 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -9080,21 +9184,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c5eb0315dce318c34a07232cc7a6efd7" |
| + | - W/"6d8be59d1d786d8fcccc6abe49549a62" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 50477e3c-a0a5-4edd-acef-b8e7b9c1abbe |
| + | - 7d9f6009-ec83-4cef-84e1-f8d9532176a2 |
| X-Runtime: | |
| - | - '0.072465' |
| + | - '0.082570' |
| Content-Length: | |
| - '372' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NmM0ZGY0OWMzNjUxMTgwMzA5YzYxNTgiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wMi0xN1QyMDo1OTo1M1oiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Mi0xN1QyMDo1OTo1NVoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci0y |
| + | eyJfaWQiOiI1NmYwMzEzMWMzNjUxMTIwNzM0MmNjNTAiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNi0wMy0yMVQxNzozNjo0OVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| + | My0yMVQxNzozNjo1MFoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci0y |
| IiwiY29udGVudF90eXBlX3NsdWciOiJ1cGRhdGVzIiwiX2xhYmVsIjoiTWlz | |
| ZSBhIGpvdXIgIzIiLCJfcG9zaXRpb24iOjEsIl92aXNpYmxlIjp0cnVlLCJz | |
| ZW9fdGl0bGUiOm51bGwsIm1ldGFfa2V5d29yZHMiOm51bGwsIm1ldGFfZGVz | |
| @@ | @@ -9102,30 +9206,32 @@ http_interactions: |
| IjoicGhyYXNlIEZSIiwiY2F0ZWdvcnkiOiJHw6luw6lyYWwiLCJkYXRlIjoi | |
| MjAwOS0wNS0yMyJ9 | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:55 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56c4df49c3651180309c615b.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56f03131c36511207342cc53.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=mise-a-jour-number-3&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%233 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=mise-a-jour-number-3&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%233 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -9134,21 +9240,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"facf0fea28da38eff19496dae94d832f" |
| + | - W/"ac22b76c37df1da6bd959d8931d94da6" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c9dcbc9e-6815-4259-99b4-aebf1d739199 |
| + | - 328058d0-5ae0-4da1-ac22-ec48e599ac80 |
| X-Runtime: | |
| - | - '0.059623' |
| + | - '0.064398' |
| Content-Length: | |
| - '372' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NmM0ZGY0OWMzNjUxMTgwMzA5YzYxNWIiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wMi0xN1QyMDo1OTo1NFoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Mi0xN1QyMDo1OTo1NVoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci0z |
| + | eyJfaWQiOiI1NmYwMzEzMWMzNjUxMTIwNzM0MmNjNTMiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNi0wMy0yMVQxNzozNjo0OVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| + | My0yMVQxNzozNjo1MFoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci0z |
| IiwiY29udGVudF90eXBlX3NsdWciOiJ1cGRhdGVzIiwiX2xhYmVsIjoiTWlz | |
| ZSBhIGpvdXIgIzMiLCJfcG9zaXRpb24iOjIsIl92aXNpYmxlIjp0cnVlLCJz | |
| ZW9fdGl0bGUiOm51bGwsIm1ldGFfa2V5d29yZHMiOm51bGwsIm1ldGFfZGVz | |
| @@ | @@ -9156,30 +9262,32 @@ http_interactions: |
| IjoicGhyYXNlIEZSIiwiY2F0ZWdvcnkiOiJHw6luw6lyYWwiLCJkYXRlIjoi | |
| MjAwOS0wNi0yOSJ9 | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:55 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56c4df4ac3651180309c615e.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56f03131c36511207342cc56.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=mise-a-jour-number-4&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%234 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=mise-a-jour-number-4&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%234 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -9188,21 +9296,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"4140e0911fca38b178a9240046ccb971" |
| + | - W/"ae8fc5fb04e4d910c46dce86f2a43f56" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 30b1d7ea-2dfd-4978-ae89-67d6541b8585 |
| + | - 1a8d7f3b-1f08-4e78-8901-968b2d976e76 |
| X-Runtime: | |
| - | - '0.072626' |
| + | - '0.058428' |
| Content-Length: | |
| - '372' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NmM0ZGY0YWMzNjUxMTgwMzA5YzYxNWUiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wMi0xN1QyMDo1OTo1NFoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Mi0xN1QyMDo1OTo1NVoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci00 |
| + | eyJfaWQiOiI1NmYwMzEzMWMzNjUxMTIwNzM0MmNjNTYiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNi0wMy0yMVQxNzozNjo0OVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| + | My0yMVQxNzozNjo1MFoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci00 |
| IiwiY29udGVudF90eXBlX3NsdWciOiJ1cGRhdGVzIiwiX2xhYmVsIjoiTWlz | |
| ZSBhIGpvdXIgIzQiLCJfcG9zaXRpb24iOjMsIl92aXNpYmxlIjp0cnVlLCJz | |
| ZW9fdGl0bGUiOm51bGwsIm1ldGFfa2V5d29yZHMiOm51bGwsIm1ldGFfZGVz | |
| @@ | @@ -9210,30 +9318,32 @@ http_interactions: |
| IjoicGhyYXNlIEZSIiwiY2F0ZWdvcnkiOiJHw6luw6lyYWwiLCJkYXRlIjoi | |
| MjAwOS0xMC0wOSJ9 | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:55 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56c4df4ac3651180309c6161.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56f03131c36511207342cc59.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=mise-a-jour-number-5&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%235 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=mise-a-jour-number-5&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%235 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -9242,21 +9352,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"94827fdfb5845213d52c02fc2ca036bf" |
| + | - W/"03249c8363233310bea548570cc8d288" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - fe0f4beb-2f76-4fc2-94f0-fc7913ec9a02 |
| + | - 83ad725f-8103-489b-a7d3-861ff0940c2f |
| X-Runtime: | |
| - | - '0.067677' |
| + | - '0.060087' |
| Content-Length: | |
| - '372' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NmM0ZGY0YWMzNjUxMTgwMzA5YzYxNjEiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wMi0xN1QyMDo1OTo1NFoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Mi0xN1QyMDo1OTo1NVoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci01 |
| + | eyJfaWQiOiI1NmYwMzEzMWMzNjUxMTIwNzM0MmNjNTkiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNi0wMy0yMVQxNzozNjo0OVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| + | My0yMVQxNzozNjo1MFoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci01 |
| IiwiY29udGVudF90eXBlX3NsdWciOiJ1cGRhdGVzIiwiX2xhYmVsIjoiTWlz | |
| ZSBhIGpvdXIgIzUiLCJfcG9zaXRpb24iOjQsIl92aXNpYmxlIjp0cnVlLCJz | |
| ZW9fdGl0bGUiOm51bGwsIm1ldGFfa2V5d29yZHMiOm51bGwsIm1ldGFfZGVz | |
| @@ | @@ -9264,30 +9374,32 @@ http_interactions: |
| IjoicGhyYXNlIEZSIiwiY2F0ZWdvcnkiOiJHw6luw6lyYWwiLCJkYXRlIjoi | |
| MjAwOS0xMS0wMiJ9 | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:55 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:50 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56c4df4ac3651180309c6164.json |
| + | uri: http://localhost:3000/locomotive/api/v3/content_types/updates/entries/56f03131c36511207342cc5c.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&content_entry%5B_slug%5D=mise-a-jour-number-6&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%236 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&content_entry%5B_slug%5D=mise-a-jour-number-6&content_entry%5Bcategory%5D=G%C3%A9n%C3%A9ral&content_entry%5Btext%5D=phrase+FR&content_entry%5Btitle%5D=Mise+a+jour+%236 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:50 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -9296,21 +9408,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"3b85eecff43050e6b8dbec80a807e30c" |
| + | - W/"ffe2fc8cdf0b197db213fc7a2e73de73" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 60a873ff-6c8c-482b-9c93-10edf774ca7f |
| + | - d170abe2-0d85-46dc-94dc-7eb32d3ead0e |
| X-Runtime: | |
| - | - '0.064356' |
| + | - '0.060785' |
| Content-Length: | |
| - '372' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NmM0ZGY0YWMzNjUxMTgwMzA5YzYxNjQiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wMi0xN1QyMDo1OTo1NFoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Mi0xN1QyMDo1OTo1NVoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci02 |
| + | eyJfaWQiOiI1NmYwMzEzMWMzNjUxMTIwNzM0MmNjNWMiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNi0wMy0yMVQxNzozNjo0OVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| + | My0yMVQxNzozNjo1MFoiLCJfc2x1ZyI6Im1pc2UtYS1qb3VyLW51bWJlci02 |
| IiwiY29udGVudF90eXBlX3NsdWciOiJ1cGRhdGVzIiwiX2xhYmVsIjoiTWlz | |
| ZSBhIGpvdXIgIzYiLCJfcG9zaXRpb24iOjUsIl92aXNpYmxlIjp0cnVlLCJz | |
| ZW9fdGl0bGUiOm51bGwsIm1ldGFfa2V5d29yZHMiOm51bGwsIm1ldGFfZGVz | |
| @@ | @@ -9318,28 +9430,30 @@ http_interactions: |
| IjoicGhyYXNlIEZSIiwiY2F0ZWdvcnkiOiJHw6luw6lyYWwiLCJkYXRlIjoi | |
| MjAwOS0xMS0xNiJ9 | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:55 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:50 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/fullpaths.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/fullpaths.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - en | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -9348,43 +9462,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"14840f81b948051e2e81ecbbca230b58" |
| + | - W/"77bbe97864242c82ed0af11e55931608" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9e422463-2d67-4998-9680-a282b4aa1a44 |
| + | - da7dd0c9-c812-4c84-a1d8-049ce8b58416 |
| X-Runtime: | |
| - | - '0.028107' |
| + | - '0.024443' |
| Content-Length: | |
| - | - '107' |
| + | - '135' |
| body: | |
| encoding: UTF-8 | |
| - | string: '[{"_id":"56c4df45c3651180309c60e6","fullpath":"index"},{"_id":"56c4df45c3651180309c60e7","fullpath":"404"}]' |
| + | string: '[{"_id":"56f0312dc36511207342cbde","fullpath":"index","handle":null},{"_id":"56f0312dc36511207342cbdf","fullpath":"404","handle":null}]' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:55 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/56c4df45c3651180309c60e7.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/56f0312dc36511207342cbdf.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bposition%5D=99&page%5Bpublished%5D=true&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 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| 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: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -9393,46 +9509,48 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"8839ecd35eb211422512af122ece8cdf" |
| + | - W/"347b6360dfabfafc18f2fbac9640ab21" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - aa86211c-e80c-4a37-8404-7161408b93de |
| + | - 6290c047-fe1c-4530-a5b6-bad71ee4d55d |
| X-Runtime: | |
| - | - '0.033870' |
| + | - '0.036784' |
| Content-Length: | |
| - '773' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df45c3651180309c60e7","created_at":"2016-02-17T20:59:49Z","updated_at":"2016-02-17T20:59:55Z","title":"Page |
| + | string: '{"_id":"56f0312dc36511207342cbdf","created_at":"2016-03-21T17:36:45Z","updated_at":"2016-03-21T17:36: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"],"cache_enabled":true,"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":false,"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: Wed, 17 Feb 2016 20:59:55 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/56c4df45c3651180309c60e6.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/56f0312dc36511207342cbde.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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%2F56c4df45c3651180309c60e4%2Fassets%2F56c4df47c3651180309c6117%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=V8VMCfCsp7XzQLvAd1AY&page%5Bhandle%5D=home&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bposition%5D=99&page%5Bpublished%5D=true&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%2F56f0312dc36511207342cbdc%2Fassets%2F56f0312fc36511207342cc0f%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: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| 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: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -9441,18 +9559,18 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"6888c10b1e65290658b2791a1a4009f1" |
| + | - W/"7bb5c5e38ee151d90e4288af279cb407" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b8bca2ee-60d7-4b94-9d7d-cb347513e347 |
| + | - 2e3db356-3e7a-4268-9350-5478c45b9878 |
| X-Runtime: | |
| - | - '0.042679' |
| + | - '0.042408' |
| Content-Length: | |
| - '5289' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df45c3651180309c60e6","created_at":"2016-02-17T20:59:49Z","updated_at":"2016-02-17T20:59:55Z","title":"Home |
| + | string: '{"_id":"56f0312dc36511207342cbde","created_at":"2016-03-21T17:36:45Z","updated_at":"2016-03-21T17:36: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"],"cache_enabled":true,"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 | |
| @@ | @@ -9476,7 +9594,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/56c4df45c3651180309c60e4/assets/56c4df47c3651180309c6117/photo.jpg{% |
| + | (602px by 397px)'' %}/sites/56f0312dc36511207342cbdc/assets/56f0312fc36511207342cc0f/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 | |
| @@ | @@ -9506,30 +9624,32 @@ 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: Wed, 17 Feb 2016 20:59:55 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/56c4df45c3651180309c60e6.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/56f0312dc36511207342cbde.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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%2F56c4df45c3651180309c60e4%2Fassets%2F56c4df47c3651180309c6117%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=V8VMCfCsp7XzQLvAd1AY&page%5Bhandle%5D=home&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bposition%5D=99&page%5Bpublished%5D=true&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%2F56f0312dc36511207342cbdc%2Fassets%2F56f0312fc36511207342cc0f%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: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -9538,19 +9658,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"953cd3f343d676d32f6f51c5e03c1020" |
| + | - W/"5da1f7dccc3e50440fee49d7b26d9bf5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 2e9ef4cb-2d02-4064-b08e-b32b3f7c0c58 |
| + | - 6086428f-dd26-46fb-97e0-a3e9dc971a93 |
| X-Runtime: | |
| - | - '0.035984' |
| + | - '0.036829' |
| Content-Length: | |
| - | - '5296' |
| + | - '5294' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df45c3651180309c60e6","created_at":"2016-02-17T20:59:49Z","updated_at":"2016-02-17T20:59:56Z","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"],"cache_enabled":true,"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":"56f0312dc36511207342cbde","created_at":"2016-03-21T17:36:45Z","updated_at":"2016-03-21T17:36: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"],"cache_enabled":true,"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 }}'' | |
| @@ | @@ -9573,7 +9693,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/56c4df45c3651180309c60e4/assets/56c4df47c3651180309c6117/photo.jpg{% |
| + | (602px by 397px)'' %}/sites/56f0312dc36511207342cbdc/assets/56f0312fc36511207342cc0f/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 | |
| @@ | @@ -9603,7 +9723,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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| @@ | @@ -13365,25 +13485,27 @@ http_interactions: |
| dGluY2lkdW50IHB1bHZpbmFyIGFjY3Vtc2FuLgo8L3A+CnslIGVuZGVkaXRh | |
| YmxlX2xvbmdfdGV4dCAlfQp7JSBlbmRibG9jayAlfQoNCi0tLS0tLS0tLS0t | |
| LS1SdWJ5TXVsdGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9y | |
| - | bS1kYXRhOyBuYW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldY |
| - | NUNQZg0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K |
| + | bS1kYXRhOyBuYW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZB |
| + | ZDFBWQ0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '169062' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -13392,19 +13514,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"34ef3aeeccbfae248582ce7904962b39" |
| + | - W/"0e2bf727dab42789912af40b5cba1641" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 20b96aa6-8a00-4388-8ea5-080f070f04fa |
| + | - 5444dd22-6fd1-4b94-b97c-518f014dbb27 |
| X-Runtime: | |
| - | - '0.089028' |
| + | - '0.085247' |
| Content-Length: | |
| - '2632' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c617e","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"About |
| - | Us","parent_id":"56c4df45c3651180309c60e6","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03133c36511207342cc76","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","title":"About |
| + | Us","parent_id":"56f0312dc36511207342cbde","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"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, | |
| @@ | @@ -13422,13 +13544,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":"56c4df4cc3651180309c617f","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/56c4df45c3651180309c60e4/pages/56c4df4cc3651180309c617e/files/photo_2.jpg","type":"EditableFile"},{"_id":"56c4df4cc3651180309c6180","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":"\u003ch2\u003eAbout |
| + | %}\n{% endblock %}\n","editable_elements":[{"_id":"56f03133c36511207342cc77","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/56f0312dc36511207342cbdc/pages/56f03133c36511207342cc76/files/photo_2.jpg","type":"EditableFile"},{"_id":"56f03133c36511207342cc78","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36: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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/56c4df4cc3651180309c617e.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/56f03133c36511207342cc76.json |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| @@ | @@ -17134,27 +17256,29 @@ http_interactions: |
| ZHVudCBwdWx2aW5hciBhY2N1bXNhbi4KPC9wPgp7JSBlbmRlZGl0YWJsZV9s | |
| b25nX3RleHQgJX0KeyUgZW5kYmxvY2sgJX0KDQotLS0tLS0tLS0tLS0tUnVi | |
| eU11bHRpcGFydFBvc3QNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0 | |
| - | YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KZTFRU2ZOYXc4elFNN3JXWDVDUGYN |
| + | YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KVjhWTUNmQ3NwN1h6UUx2QWQxQVkN |
| Ci0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdC0tDQoNCg== | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '166672' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -17163,19 +17287,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"71fa70e2a0746b6610f8ccee57d99279" |
| + | - W/"4ece95d9c61a6528413494dd6359fbc9" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e7eeba70-dfd1-40ba-9351-a09529be1270 |
| + | - 7cebd80a-0cc4-4a58-8e70-25791d8e6274 |
| X-Runtime: | |
| - | - '0.056231' |
| + | - '0.058495' |
| Content-Length: | |
| - | - '2666' |
| + | - '2664' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c617e","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"A |
| - | notre sujet","parent_id":"56c4df45c3651180309c60e6","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03133c36511207342cc76","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","title":"A |
| + | notre sujet","parent_id":"56f0312dc36511207342cbde","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":false,"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, | |
| @@ | @@ -17193,33 +17317,35 @@ 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":"56c4df4cc3651180309c617f","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/56c4df45c3651180309c60e4/pages/56c4df4cc3651180309c617e/files/photo.jpg","type":"EditableFile"},{"_id":"56c4df4cc3651180309c6180","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","slug":"pitch","block":"banner","hint":null,"priority":0,"fixed":false,"content":"\u003ch2\u003eA |
| + | %}\n{% endblock %}\n","editable_elements":[{"_id":"56f03133c36511207342cc77","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/56f0312dc36511207342cbdc/pages/56f03133c36511207342cc76/files/photo.jpg","type":"EditableFile"},{"_id":"56f03133c36511207342cc78","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36: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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/56c4df4cc3651180309c617e.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/56f03133c36511207342cc76.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Beditable_elements%5D%5B0%5D%5Bblock%5D=banner&page%5Beditable_elements%5D%5B0%5D%5Bslug%5D=page_image&page%5Beditable_elements%5D%5B1%5D%5Bblock%5D=banner&page%5Beditable_elements%5D%5B1%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 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Beditable_elements%5D%5B0%5D%5Bblock%5D=banner&page%5Beditable_elements%5D%5B0%5D%5Bslug%5D=page_image&page%5Beditable_elements%5D%5B1%5D%5Bblock%5D=banner&page%5Beditable_elements%5D%5B1%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 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - nb | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -17228,19 +17354,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"1ac97a37c82d0176840cd5e7c92f60f8" |
| + | - W/"07735c38a9328df0fd59dc6254c5d91d" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9c509414-b641-4636-9e71-c84a79639fc4 |
| + | - ee632137-be97-430e-9d8c-b220bdf37d77 |
| X-Runtime: | |
| - | - '0.044609' |
| + | - '0.049115' |
| Content-Length: | |
| - | - '2487' |
| + | - '2639' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c617e","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"Om |
| - | oss","parent_id":"56c4df45c3651180309c60e6","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03133c36511207342cc76","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","title":"Om |
| + | oss","parent_id":"56f0312dc36511207342cbde","position":1,"handle":"about-us","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr","nb"],"cache_enabled":true,"slug":"om-oss","fullpath":"om-oss","localized_fullpaths":{"en":"about-us","fr":"fr/a-notre-sujet","nb":"nb/om-oss"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":false,"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, | |
| @@ | @@ -17258,30 +17384,33 @@ 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":"56c4df4cc3651180309c617f","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":null,"type":"EditableFile"},{"_id":"56c4df4cc3651180309c6180","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","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":"56f03133c36511207342cc77","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","slug":"page_image","block":"banner","hint":null,"priority":0,"fixed":false,"content":"/sites/56f0312dc36511207342cbdc/pages/56f03133c36511207342cc76/files/photo_2.jpg","type":"EditableFile"},{"_id":"56f03133c36511207342cc78","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36: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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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=music&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=Music |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&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=music&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=Music |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -17290,18 +17419,18 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7bd8ce4d5eb48ffdca7504050d227c87" |
| + | - W/"e4de4d07f224db118ff7fd0523346562" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c829dfc7-04bc-4079-b7f3-94357eb21bd2 |
| + | - da1f8a9f-c534-4bcf-9e9d-07768ae1366b |
| X-Runtime: | |
| - | - '0.045240' |
| + | - '0.048351' |
| Content-Length: | |
| - '2401' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c6181","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"Music","parent_id":"56c4df45c3651180309c60e6","position":2,"handle":"our-music","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03133c36511207342cc79","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","title":"Music","parent_id":"56f0312dc36511207342cbde","position":2,"handle":"our-music","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"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, | |
| @@ | @@ -17325,30 +17454,32 @@ 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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/56c4df4cc3651180309c6181.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/56f03133c36511207342cc79.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&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 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -17357,19 +17488,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"f207ece0d1a8da6f3e33e8f5a64bb46c" |
| + | - W/"ff0074aae79068c652ddc44c02dc91fb" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - fbd3d58d-6c29-411d-ad73-26047683bf91 |
| + | - 53b1fc2d-69a0-4e21-892b-e17eb2b3de71 |
| X-Runtime: | |
| - | - '0.047654' |
| + | - '0.045768' |
| Content-Length: | |
| - | - '2440' |
| + | - '2438' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c6181","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"Notre |
| - | musique","parent_id":"56c4df45c3651180309c60e6","position":2,"handle":"our-music","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03133c36511207342cc79","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","title":"Notre |
| + | musique","parent_id":"56f0312dc36511207342cbde","position":2,"handle":"our-music","depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"slug":"notre-musique","fullpath":"notre-musique","localized_fullpaths":{"en":"music","fr":"fr/notre-musique","nb":"nb/music"},"redirect":false,"redirect_url":"","redirect_type":301,"templatized":false,"templatized_from_parent":false,"content_type":null,"is_layout":false,"allow_layout":false,"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, | |
| @@ | @@ -17393,28 +17524,30 @@ 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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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%2Fen%2Fitunes%2F&page%5Bslug%5D=store&page%5Btemplate%5D=&page%5Btitle%5D=Store |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&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%2Fen%2Fitunes%2F&page%5Bslug%5D=store&page%5Btemplate%5D=&page%5Btitle%5D=Store |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -17423,44 +17556,46 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"0b89c013192e08d98991ed8186a566e4" |
| + | - W/"6d661f2f810b0d9ca234711614d27100" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ae2ea781-9675-4d7d-955c-63c10866e10d |
| + | - 5b208e0f-9538-4f81-8909-2030f0b7d4b5 |
| X-Runtime: | |
| - | - '0.044742' |
| + | - '0.049697' |
| Content-Length: | |
| - '718' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c6182","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"Store","parent_id":"56c4df45c3651180309c60e6","position":3,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03133c36511207342cc7a","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","title":"Store","parent_id":"56f0312dc36511207342cbde","position":3,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| extends parent %}","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/56c4df4cc3651180309c6182.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/56f03133c36511207342cc7a.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&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 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -17469,41 +17604,43 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"0780dc1316e24cc1c729a3beddc54881" |
| + | - W/"e190ae12f487fa279a7472fadf88402e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9e8b8a89-e881-4cd1-82b5-399c991b224e |
| + | - 295800f6-ca42-404a-ab98-1ae8de6c4540 |
| X-Runtime: | |
| - | - '0.049667' |
| + | - '0.044890' |
| Content-Length: | |
| - '711' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c6182","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"Magasin","parent_id":"56c4df45c3651180309c60e6","position":3,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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":"56f03133c36511207342cc7a","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","title":"Magasin","parent_id":"56f0312dc36511207342cbde","position":3,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=true&page%5Bparent%5D=index&page%5Bposition%5D=4&page%5Bpublished%5D=true&page%5Bslug%5D=contact&page%5Btemplate%5D=%7B%25+extends+%27parent%27+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Cdiv+class%3D%27text%27%3E%0A++%7B%25+editable_long_text+%27text%27+%25%7D%0A++%3Cp%3E%0A++++Ut+imperdiet+velit+eu+metus+semper+tristique.+Vivamus+risus+nisi%2C+tincidunt+et+euismod+a%2C+auctor+pretium+eros.+Vestibulum+sed+magna+et+velit+pulvinar+euismod.+Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit.+Aenean+sed+velit+quis+nisl+blandit+vulputate+id+non+tortor.+Mauris+nec+placerat+massa.+Vivamus+sed+odio+non+ligula+pharetra+pretium.+Ut+convallis%2C+purus+et+lobortis+suscipit%2C+mauris+orci+ullamcorper+lectus%2C+nec+vulputate+turpis+mauris+sed+augue.+Maecenas+faucibus+ultricies+nisl%2C+non+ullamcorper+justo+bibendum+nec.+Duis+vitae+mauris+condimentum+risus+commodo+mattis+vel+sed+libero.+Fusce+diam+elit%2C+porta+id+vestibulum+ut%2C+aliquet+mattis+neque.%0A++%3C%2Fp%3E%0A++%7B%25+endeditable_long_text+%25%7D%0A%3C%2Fdiv%3E%0A%3Cform+action%3D%27%7B%7B+contents.messages.public_submission_url+%7D%7D.json%27+id%3D%27contactform%27+method%3D%27post%27+name%3D%27contact%27%3E%0A++%3C%21--+%25input%7B+type%3A+%27hidden%27%2C+name%3A+%27success_callback%27%2C+value%3A+%27%2Fevents%27+%7D+--%3E%0A++%3C%21--+%25input%7B+type%3A+%27hidden%27%2C+name%3A+%27error_callback%27%2C+value%3A+%27%2Fcontact%27+%7D+--%3E%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27name%27%3EName%3C%2Flabel%3E%0A++++%3Cinput+id%3D%27name%27+name%3D%27content%5Bname%5D%27+placeholder%3D%27First+and+last+name%27+required%3D%27required%27+tabindex%3D%271%27+type%3D%27text%27+value%3D%27%7B%7B+message.name+%7D%7D%27%3E%0A++++%3Cspan%3E%7B%7B+message.errors.name+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27email%27%3EEmail%3C%2Flabel%3E%0A++++%3Cinput+id%3D%27email%27+name%3D%27content%5Bemail%5D%27+placeholder%3D%27example%40domain.com%27+required%3D%27required%27+tabindex%3D%272%27+type%3D%27text%27+value%3D%27%7B%7B+message.email+%7D%7D%27%3E%0A++++%3Cspan%3E%7B%7B+message.errors.email+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27comment%27%3EYour+Message%3C%2Flabel%3E%0A++++%3Ctextarea+id%3D%27comment%27+name%3D%27content%5Bmessage%5D%27+required%3D%27required%27+tabindex%3D%273%27%3E%7B%7B+message.message+%7D%7D%3C%2Ftextarea%3E%0A++++%3Cspan%3E%7B%7B+message.errors.message+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp+class%3D%27action%27%3E%0A++++%3Cinput+name%3D%27submit%27+tabindex%3D%274%27+type%3D%27submit%27+value%3D%27Send+Message%27%3E%0A++%3C%2Fp%3E%0A%3C%2Fform%3E%0A%3Cscript%3E%0A++%24%28document%29.ready%28function%28%29+%7B%0A++++var+form+%3D+%24%28%27form%5Bname%3Dcontact%5D%27%29%3B%0A++++form.submit%28function%28e%29+%7B%0A++++++e.stopPropagation%28%29%3B%0A++++++e.preventDefault%28%29%3B%0A++++++%24.post%28form.attr%28%27action%27%29%2C%0A++++++++form.serializeArray%28%29%2C%0A++++++++function%28%29+%7B%0A++++++++++alert%28%22Thank+you+%21+Your+message+have+been+received%22%29%3B%0A++++++++%7D%2C+%22json%22%29.error%28function%28response%29+%7B%0A++++++++++alert%28%22We+are+sorry+but+we+were+unable+to+treat+your+message.+Please+try+later.%22%29%3B%0A++++++++%7D%29%3B%0A++++%7D%29%3B%0A++%7D%29%3B%0A%3C%2Fscript%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=Contact+Us |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=true&page%5Bparent%5D=index&page%5Bposition%5D=4&page%5Bpublished%5D=true&page%5Bslug%5D=contact&page%5Btemplate%5D=%7B%25+extends+%27parent%27+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Cdiv+class%3D%27text%27%3E%0A++%7B%25+editable_long_text+%27text%27+%25%7D%0A++%3Cp%3E%0A++++Ut+imperdiet+velit+eu+metus+semper+tristique.+Vivamus+risus+nisi%2C+tincidunt+et+euismod+a%2C+auctor+pretium+eros.+Vestibulum+sed+magna+et+velit+pulvinar+euismod.+Lorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit.+Aenean+sed+velit+quis+nisl+blandit+vulputate+id+non+tortor.+Mauris+nec+placerat+massa.+Vivamus+sed+odio+non+ligula+pharetra+pretium.+Ut+convallis%2C+purus+et+lobortis+suscipit%2C+mauris+orci+ullamcorper+lectus%2C+nec+vulputate+turpis+mauris+sed+augue.+Maecenas+faucibus+ultricies+nisl%2C+non+ullamcorper+justo+bibendum+nec.+Duis+vitae+mauris+condimentum+risus+commodo+mattis+vel+sed+libero.+Fusce+diam+elit%2C+porta+id+vestibulum+ut%2C+aliquet+mattis+neque.%0A++%3C%2Fp%3E%0A++%7B%25+endeditable_long_text+%25%7D%0A%3C%2Fdiv%3E%0A%3Cform+action%3D%27%7B%7B+contents.messages.public_submission_url+%7D%7D.json%27+id%3D%27contactform%27+method%3D%27post%27+name%3D%27contact%27%3E%0A++%3C%21--+%25input%7B+type%3A+%27hidden%27%2C+name%3A+%27success_callback%27%2C+value%3A+%27%2Fevents%27+%7D+--%3E%0A++%3C%21--+%25input%7B+type%3A+%27hidden%27%2C+name%3A+%27error_callback%27%2C+value%3A+%27%2Fcontact%27+%7D+--%3E%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27name%27%3EName%3C%2Flabel%3E%0A++++%3Cinput+id%3D%27name%27+name%3D%27content%5Bname%5D%27+placeholder%3D%27First+and+last+name%27+required%3D%27required%27+tabindex%3D%271%27+type%3D%27text%27+value%3D%27%7B%7B+message.name+%7D%7D%27%3E%0A++++%3Cspan%3E%7B%7B+message.errors.name+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27email%27%3EEmail%3C%2Flabel%3E%0A++++%3Cinput+id%3D%27email%27+name%3D%27content%5Bemail%5D%27+placeholder%3D%27example%40domain.com%27+required%3D%27required%27+tabindex%3D%272%27+type%3D%27text%27+value%3D%27%7B%7B+message.email+%7D%7D%27%3E%0A++++%3Cspan%3E%7B%7B+message.errors.email+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27comment%27%3EYour+Message%3C%2Flabel%3E%0A++++%3Ctextarea+id%3D%27comment%27+name%3D%27content%5Bmessage%5D%27+required%3D%27required%27+tabindex%3D%273%27%3E%7B%7B+message.message+%7D%7D%3C%2Ftextarea%3E%0A++++%3Cspan%3E%7B%7B+message.errors.message+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp+class%3D%27action%27%3E%0A++++%3Cinput+name%3D%27submit%27+tabindex%3D%274%27+type%3D%27submit%27+value%3D%27Send+Message%27%3E%0A++%3C%2Fp%3E%0A%3C%2Fform%3E%0A%3Cscript%3E%0A++%24%28document%29.ready%28function%28%29+%7B%0A++++var+form+%3D+%24%28%27form%5Bname%3Dcontact%5D%27%29%3B%0A++++form.submit%28function%28e%29+%7B%0A++++++e.stopPropagation%28%29%3B%0A++++++e.preventDefault%28%29%3B%0A++++++%24.post%28form.attr%28%27action%27%29%2C%0A++++++++form.serializeArray%28%29%2C%0A++++++++function%28%29+%7B%0A++++++++++alert%28%22Thank+you+%21+Your+message+have+been+received%22%29%3B%0A++++++++%7D%2C+%22json%22%29.error%28function%28response%29+%7B%0A++++++++++alert%28%22We+are+sorry+but+we+were+unable+to+treat+your+message.+Please+try+later.%22%29%3B%0A++++++++%7D%29%3B%0A++++%7D%29%3B%0A++%7D%29%3B%0A%3C%2Fscript%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=Contact+Us |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -17512,19 +17649,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7798bacb408e93140a3d6e81e9194fc2" |
| + | - W/"199eec7cb792c9e7f993bf041960195b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 7dbeb149-ce7d-4d61-b4ad-c4f5e4d477ec |
| + | - 2054a020-d09b-4abf-9424-10834a8e3497 |
| X-Runtime: | |
| - | - '0.055285' |
| + | - '0.045341' |
| Content-Length: | |
| - '3494' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c6183","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"Contact |
| - | Us","parent_id":"56c4df45c3651180309c60e6","position":4,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03133c36511207342cc7b","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","title":"Contact |
| + | Us","parent_id":"56f0312dc36511207342cbde","position":4,"handle":null,"depth":1,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"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 | |
| @@ | @@ -17559,28 +17696,30 @@ 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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bhandle%5D=events&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=5&page%5Bpublished%5D=true&page%5Bslug%5D=events&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Cp%3EThank+you+%7B%7B+message.name+%7D%7D+%21%3C%2Fp%3E%0A%3Cdiv+class%3D%27unit+size2of3%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+%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%3C%2Fdiv%3E%0A%3Cdiv+class%3D%27unit+size1of3%27+id%3D%27sidebar%27%3E%0A++%7B%25+model_form+%27messages%27%2C+id%3A+%27contactform%27+%25%7D%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27name%27%3EName%3C%2Flabel%3E%0A++++%3Cinput+id%3D%27name%27+name%3D%27content%5Bname%5D%27+placeholder%3D%27First+and+last+name%27+required%3D%27required%27+tabindex%3D%271%27+type%3D%27text%27+value%3D%27%7B%7B+message.name+%7D%7D%27%3E%0A++++%3Cspan%3E%7B%7B+message.errors.name+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27email%27%3EEmail%3C%2Flabel%3E%0A++++%3Cinput+id%3D%27email%27+name%3D%27content%5Bemail%5D%27+placeholder%3D%27example%40domain.com%27+required%3D%27required%27+tabindex%3D%272%27+type%3D%27text%27+value%3D%27%7B%7B+message.email+%7D%7D%27%3E%0A++++%3Cspan%3E%7B%7B+message.errors.email+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27comment%27%3EYour+Message%3C%2Flabel%3E%0A++++%3Ctextarea+id%3D%27comment%27+name%3D%27content%5Bmessage%5D%27+required%3D%27required%27+tabindex%3D%273%27%3E%7B%7B+message.message+%7D%7D%3C%2Ftextarea%3E%0A++++%3Cspan%3E%7B%7B+message.errors.message+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp+class%3D%27action%27%3E%0A++++%3Cinput+name%3D%27submit%27+tabindex%3D%274%27+type%3D%27submit%27+value%3D%27Send+Message%27%3E%0A++%3C%2Fp%3E%0A++%7B%25+endmodel_form+%25%7D%0A++%7B%25+editable_long_text+%27sidebar%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++%3Cp%3E%0A++++%3Cstrong%3EDiscover%3A+%7B%25+link_to+our-music+%25%7D%3C%2Fstrong%3E%0A++++%3Cbr%3E%0A++++%3Cstrong%3EMore+about+us%3A+%7B%25+link_to+about-us+%25%7DWho+are+we+%3F%7B%25+endlink_to+%25%7D%3C%2Fstrong%3E%0A++++%3Cbr%3E%0A++++%3Cstrong%3EPlus+%C3%A0+notre+sujet%3A+%7B%25+link_to+about-us%2C+locale%3A+fr+%25%7DQui+sommes+nous+%3F%7B%25+endlink_to+%25%7D%3C%2Fstrong%3E%0A++++%3Cbr%3E%0A++++%7B%25+assign+song+%3D+contents.songs.first+%25%7D%0A++++%3Cstrong%3E%7B%25+link_to+song+%25%7D%3C%2Fstrong%3E%0A++++%3Cbr%3E%0A++++%7B%25+assign+another_song+%3D+contents.songs.last+%25%7D%0A++++%3Cstrong%3E%7B%25+link_to+another_song%2C+with%3A+a-song-template+%25%7D%3C%2Fstrong%3E%0A++%3C%2Fp%3E%0A%3C%2Fdiv%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=Events |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bhandle%5D=events&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=5&page%5Bpublished%5D=true&page%5Bslug%5D=events&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Cp%3EThank+you+%7B%7B+message.name+%7D%7D+%21%3C%2Fp%3E%0A%3Cdiv+class%3D%27unit+size2of3%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+%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%3C%2Fdiv%3E%0A%3Cdiv+class%3D%27unit+size1of3%27+id%3D%27sidebar%27%3E%0A++%7B%25+model_form+%27messages%27%2C+id%3A+%27contactform%27+%25%7D%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27name%27%3EName%3C%2Flabel%3E%0A++++%3Cinput+id%3D%27name%27+name%3D%27content%5Bname%5D%27+placeholder%3D%27First+and+last+name%27+required%3D%27required%27+tabindex%3D%271%27+type%3D%27text%27+value%3D%27%7B%7B+message.name+%7D%7D%27%3E%0A++++%3Cspan%3E%7B%7B+message.errors.name+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27email%27%3EEmail%3C%2Flabel%3E%0A++++%3Cinput+id%3D%27email%27+name%3D%27content%5Bemail%5D%27+placeholder%3D%27example%40domain.com%27+required%3D%27required%27+tabindex%3D%272%27+type%3D%27text%27+value%3D%27%7B%7B+message.email+%7D%7D%27%3E%0A++++%3Cspan%3E%7B%7B+message.errors.email+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp%3E%0A++++%3Clabel+for%3D%27comment%27%3EYour+Message%3C%2Flabel%3E%0A++++%3Ctextarea+id%3D%27comment%27+name%3D%27content%5Bmessage%5D%27+required%3D%27required%27+tabindex%3D%273%27%3E%7B%7B+message.message+%7D%7D%3C%2Ftextarea%3E%0A++++%3Cspan%3E%7B%7B+message.errors.message+%7D%7D%3C%2Fspan%3E%0A++%3C%2Fp%3E%0A++%3Cp+class%3D%27action%27%3E%0A++++%3Cinput+name%3D%27submit%27+tabindex%3D%274%27+type%3D%27submit%27+value%3D%27Send+Message%27%3E%0A++%3C%2Fp%3E%0A++%7B%25+endmodel_form+%25%7D%0A++%7B%25+editable_long_text+%27sidebar%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++%3Cp%3E%0A++++%3Cstrong%3EDiscover%3A+%7B%25+link_to+our-music+%25%7D%3C%2Fstrong%3E%0A++++%3Cbr%3E%0A++++%3Cstrong%3EMore+about+us%3A+%7B%25+link_to+about-us+%25%7DWho+are+we+%3F%7B%25+endlink_to+%25%7D%3C%2Fstrong%3E%0A++++%3Cbr%3E%0A++++%3Cstrong%3EPlus+%C3%A0+notre+sujet%3A+%7B%25+link_to+about-us%2C+locale%3A+fr+%25%7DQui+sommes+nous+%3F%7B%25+endlink_to+%25%7D%3C%2Fstrong%3E%0A++++%3Cbr%3E%0A++++%7B%25+assign+song+%3D+contents.songs.first+%25%7D%0A++++%3Cstrong%3E%7B%25+link_to+song+%25%7D%3C%2Fstrong%3E%0A++++%3Cbr%3E%0A++++%7B%25+assign+another_song+%3D+contents.songs.last+%25%7D%0A++++%3Cstrong%3E%7B%25+link_to+another_song%2C+with%3A+a-song-template+%25%7D%3C%2Fstrong%3E%0A++%3C%2Fp%3E%0A%3C%2Fdiv%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=Events |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -17589,22 +17728,22 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ada31e207b30b5d9e3aa764de7f5eb16" |
| + | - W/"707919826cfa5d7d04aef54d7bae3ca8" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - df79613b-1e71-4b57-a315-d84306961140 |
| + | - 08829742-6d4f-4437-8c80-f05936ffaba2 |
| X-Runtime: | |
| - | - '0.045096' |
| + | - '0.049641' |
| Content-Length: | |
| - '4459' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NmM0ZGY0Y2MzNjUxMTgwMzA5YzYxODQiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wMi0xN1QyMDo1OTo1NloiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Mi0xN1QyMDo1OTo1NloiLCJ0aXRsZSI6IkV2ZW50cyIsInBhcmVudF9pZCI6 |
| - | IjU2YzRkZjQ1YzM2NTExODAzMDljNjBlNiIsInBvc2l0aW9uIjo1LCJoYW5k |
| + | eyJfaWQiOiI1NmYwMzEzM2MzNjUxMTIwNzM0MmNjN2MiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNi0wMy0yMVQxNzozNjo1MVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| + | My0yMVQxNzozNjo1MVoiLCJ0aXRsZSI6IkV2ZW50cyIsInBhcmVudF9pZCI6 |
| + | IjU2ZjAzMTJkYzM2NTExMjA3MzQyY2JkZSIsInBvc2l0aW9uIjo1LCJoYW5k |
| bGUiOiJldmVudHMiLCJkZXB0aCI6MSwicmVzcG9uc2VfdHlwZSI6InRleHQv | |
| aHRtbCIsImxpc3RlZCI6ZmFsc2UsInB1Ymxpc2hlZCI6dHJ1ZSwidHJhbnNs | |
| YXRlZF9pbiI6WyJlbiJdLCJjYWNoZV9lbmFibGVkIjp0cnVlLCJzbHVnIjoi | |
| @@ | @@ -17702,28 +17841,30 @@ http_interactions: |
| dWxsLCJtZXRhX2tleXdvcmRzIjpudWxsLCJtZXRhX2Rlc2NyaXB0aW9uIjpu | |
| dWxsfQ== | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:51 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=contest&page%5Btemplate%5D=%7B%25+extends+%27parent%27+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Ch1%3EContest+sample%3C%2Fh1%3E%0A%7B%25+if+session.already_participated+%25%7D%0A%3Cp%3EYou%27ve+already+participated+to+that+contest+%21+Come+back+later.%3C%2Fp%3E%0A%7B%25+else+%25%7D%0A%3Cp%3EYour+code+is%3A+HELLO+WORLD%3C%2Fp%3E%0A%7B%25+session_assign+already_participated+%3D+true+%25%7D%0A%7B%25+endif+%25%7D%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=A+sample+contest |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=contest&page%5Btemplate%5D=%7B%25+extends+%27parent%27+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Ch1%3EContest+sample%3C%2Fh1%3E%0A%7B%25+if+session.already_participated+%25%7D%0A%3Cp%3EYou%27ve+already+participated+to+that+contest+%21+Come+back+later.%3C%2Fp%3E%0A%7B%25+else+%25%7D%0A%3Cp%3EYour+code+is%3A+HELLO+WORLD%3C%2Fp%3E%0A%7B%25+session_assign+already_participated+%3D+true+%25%7D%0A%7B%25+endif+%25%7D%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=A+sample+contest |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:51 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -17732,47 +17873,49 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"2fd59408f554bdf6e665d3396aec6272" |
| + | - W/"8c5846b20129a5a6d971350c088536d1" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9b1bd350-0c37-4c25-90d5-1cd923ef61bf |
| + | - ca069f74-261c-403c-8ee9-40c563c15a62 |
| X-Runtime: | |
| - | - '0.045167' |
| + | - '0.047913' |
| Content-Length: | |
| - '1057' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c6185","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"A |
| - | sample contest","parent_id":"56c4df45c3651180309c60e6","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03133c36511207342cc7d","created_at":"2016-03-21T17:36:51Z","updated_at":"2016-03-21T17:36:51Z","title":"A |
| + | sample contest","parent_id":"56f0312dc36511207342cbde","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=archives&page%5Btitle%5D=Archives |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=archives&page%5Btitle%5D=Archives |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -17781,42 +17924,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"b5ed51cf093c2f87ef7a7175803ca80e" |
| + | - W/"6eb3351a0d049b2e156fde08519c9a47" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 50e2ea42-1d29-4b21-8336-8c684980a99e |
| + | - a6742886-b754-4e0c-8969-cb8cae390cef |
| X-Runtime: | |
| - | - '0.049353' |
| + | - '0.054645' |
| Content-Length: | |
| - '709' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c6186","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"Archives","parent_id":"56c4df45c3651180309c60e6","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc7e","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Archives","parent_id":"56f0312dc36511207342cbde","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| extends parent %}","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=filtered&page%5Btemplate%5D=%7B%25+assign+begin_date++%3D+%272012-06-01+00%3A00%3A00%27+%25%7D%0A%7B%25+assign+end_date++++%3D+%272012-06-10+23%3A59%3A59%27+%25%7D%0A%7B%25+assign+prices++++++%3D+%275.0%2C5.5%27+%7C+split%3A+%27%2C%27+%7C+map%3A+%27to_f%27+%25%7D%0A%7B%25+with_scope+date.gte%3A+begin_date%2C+date.lte%3A+end_date%2C+city%3A+%2FKansas%2F%2C+state.ne%3A+%27Illinois%27%2C+tags%3A+%27awesome%27%2C+tags.nin%3A+%27bad%27%2C+price.in%3A+prices%2C+order_by%3A+%27price.desc%27+%25%7D%0Aevents%3D%7B%7B+contents.events.count+%7D%7D.%0A%7B%25+endwith_scope+%25%7D%0A%7B%25+with_scope+tags.in%3A+%27awesome%27%2C+order_by%3A+%27price.desc%27+%25%7D%0Afirst+event%3D%7B%7B+contents.events.first.place+%7D%7D.%0A%7B%25+endwith_scope+%25%7D%0A%7B%25+assign+featured+%3D+false+%25%7D%0A%7B%25+with_scope+featured%3A+featured+%25%7D%0Abands%3D%7B%7B+contents.bands.count+%7D%7D.%0A%7B%25+endwith_scope+%25%7D%0A&page%5Btitle%5D=Various+uses+of+the+with_scope+tag |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=filtered&page%5Btemplate%5D=%7B%25+assign+begin_date++%3D+%272012-06-01+00%3A00%3A00%27+%25%7D%0A%7B%25+assign+end_date++++%3D+%272012-06-10+23%3A59%3A59%27+%25%7D%0A%7B%25+assign+prices++++++%3D+%275.0%2C5.5%27+%7C+split%3A+%27%2C%27+%7C+map%3A+%27to_f%27+%25%7D%0A%7B%25+with_scope+date.gte%3A+begin_date%2C+date.lte%3A+end_date%2C+city%3A+%2FKansas%2F%2C+state.ne%3A+%27Illinois%27%2C+tags%3A+%27awesome%27%2C+tags.nin%3A+%27bad%27%2C+price.in%3A+prices%2C+order_by%3A+%27price.desc%27+%25%7D%0Aevents%3D%7B%7B+contents.events.count+%7D%7D.%0A%7B%25+endwith_scope+%25%7D%0A%7B%25+with_scope+tags.in%3A+%27awesome%27%2C+order_by%3A+%27price.desc%27+%25%7D%0Afirst+event%3D%7B%7B+contents.events.first.place+%7D%7D.%0A%7B%25+endwith_scope+%25%7D%0A%7B%25+assign+featured+%3D+false+%25%7D%0A%7B%25+with_scope+featured%3A+featured+%25%7D%0Abands%3D%7B%7B+contents.bands.count+%7D%7D.%0A%7B%25+endwith_scope+%25%7D%0A&page%5Btitle%5D=Various+uses+of+the+with_scope+tag |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -17825,19 +17970,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"3e8bbcfaf497431891b6b8ff6c1a762c" |
| + | - W/"5bda0dce6dfbf70d3f7e9aa3bd38a8b5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e652dca9-823f-484b-810b-b064fb72712c |
| + | - 451d9da9-edd6-4839-a1fa-7fa94dab2302 |
| X-Runtime: | |
| - | - '0.044281' |
| + | - '0.045058' |
| Content-Length: | |
| - '1364' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c6187","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"Various |
| - | uses of the with_scope tag","parent_id":"56c4df45c3651180309c60e6","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc7f","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Various |
| + | uses of the with_scope tag","parent_id":"56f0312dc36511207342cbde","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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/, | |
| @@ | @@ -17848,28 +17993,30 @@ 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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=grunge-bands&page%5Btemplate%5D=%7B%25+with_scope+kind%3A+%22grunge%22+%25%7D%0A%7B%25+for+band+in+contents.bands+%25%7D%0A%7B%7B+band.leader+%7D%7D%0A%7B%25+endfor+%25%7D%0A%7B%25+endwith_scope+%25%7D%0A&page%5Btitle%5D=Grunge+leaders |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=grunge-bands&page%5Btemplate%5D=%7B%25+with_scope+kind%3A+%22grunge%22+%25%7D%0A%7B%25+for+band+in+contents.bands+%25%7D%0A%7B%7B+band.leader+%7D%7D%0A%7B%25+endfor+%25%7D%0A%7B%25+endwith_scope+%25%7D%0A&page%5Btitle%5D=Grunge+leaders |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -17878,44 +18025,46 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"5b8faae616d4f001061cc5e07e99530f" |
| + | - W/"cdb7dafa654caf2947a635167cfbb1e7" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e9bc8b54-01ac-4ab8-9bc5-ecd4a96bba43 |
| + | - 4f26e1e6-39e4-4219-8661-f46dd899b23b |
| X-Runtime: | |
| - | - '0.053496' |
| + | - '0.049212' |
| Content-Length: | |
| - '837' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c6188","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"Grunge |
| - | leaders","parent_id":"56c4df45c3651180309c60e6","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc80","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Grunge |
| + | leaders","parent_id":"56f0312dc36511207342cbde","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=all&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Cul%3E%0A%7B%25+for+page+in+site.pages+%25%7D%0A%3Cli%3E%7B%7B+page.title+%7D%7D%3C%2Fli%3E%0A%7B%25+endfor+%25%7D%0A%3C%2Ful%3E%0A%7B%25+fetch_page+our-music+as+my_page+%25%7D%0A%3Cp%3ESingle+page%3A+%7B%7B+my_page.title+%7D%7D%3C%2Fp%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=All+the+pages |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=all&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Cul%3E%0A%7B%25+for+page+in+site.pages+%25%7D%0A%3Cli%3E%7B%7B+page.title+%7D%7D%3C%2Fli%3E%0A%7B%25+endfor+%25%7D%0A%3C%2Ful%3E%0A%7B%25+fetch_page+our-music+as+my_page+%25%7D%0A%3Cp%3ESingle+page%3A+%7B%7B+my_page.title+%7D%7D%3C%2Fp%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=All+the+pages |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -17924,46 +18073,48 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"e1f0dcebecabc6bd0e1c23cea36db59a" |
| + | - W/"e9244d4b395d1b28c9c610647335658e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 2279dd58-b927-4530-9c0e-cc250aff2f62 |
| + | - eb92313f-670c-423b-8e01-10b34944babf |
| X-Runtime: | |
| - | - '0.044415' |
| + | - '0.051984' |
| Content-Length: | |
| - '953' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c6189","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"All |
| - | the pages","parent_id":"56c4df45c3651180309c60e6","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03134c36511207342cc81","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"All |
| + | the pages","parent_id":"56f0312dc36511207342cbde","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":false,"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: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=layouts&page%5Btitle%5D=Layouts |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=layouts&page%5Btitle%5D=Layouts |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -17972,42 +18123,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"feb19a6422bc5c1017b867418984635e" |
| + | - W/"8f8e974286eed63b25a7358bd44a4535" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 90e38b18-9b50-4168-bc7a-60b58974baa1 |
| + | - 84c5b109-16ac-4403-85d6-445ff6ff4e74 |
| X-Runtime: | |
| - | - '0.048954' |
| + | - '0.047208' |
| Content-Length: | |
| - '703' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4cc3651180309c618a","created_at":"2016-02-17T20:59:56Z","updated_at":"2016-02-17T20:59:56Z","title":"Layouts","parent_id":"56c4df45c3651180309c60e6","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc82","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Layouts","parent_id":"56f0312dc36511207342cbde","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| extends parent %}","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:56 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=songs&page%5Btitle%5D=Songs |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=songs&page%5Btitle%5D=Songs |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18016,42 +18169,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c55c7143c21164f9001a400a7dceb59f" |
| + | - W/"7bb5625700cc5ee6ac78ab6d4d7f9be0" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - fc95e161-737f-423a-9510-5d14d9b8d743 |
| + | - 8f2fd7ce-c07f-46b1-896e-c1ce52114a01 |
| X-Runtime: | |
| - | - '0.047630' |
| + | - '0.050184' |
| Content-Length: | |
| - '691' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c618b","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"Songs","parent_id":"56c4df45c3651180309c60e6","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc83","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Songs","parent_id":"56f0312dc36511207342cbde","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| extends parent %}","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=unlisted-pages&page%5Btemplate%5D=%3Cul%3E%0A++%7B%25+with_scope+listed%3A+false+%25%7D%0A++%7B%25+for+page+in+site.pages+%25%7D%0A++%3Cli%3E%7B%7B+page.title+%7D%7D%3C%2Fli%3E%0A++%7B%25+endfor+%25%7D%0A++%7B%25+endwith_scope+%25%7D%0A%3C%2Ful%3E%0A&page%5Btitle%5D=Unlisted+pages |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=unlisted-pages&page%5Btemplate%5D=%3Cul%3E%0A++%7B%25+with_scope+listed%3A+false+%25%7D%0A++%7B%25+for+page+in+site.pages+%25%7D%0A++%3Cli%3E%7B%7B+page.title+%7D%7D%3C%2Fli%3E%0A++%7B%25+endfor+%25%7D%0A++%7B%25+endwith_scope+%25%7D%0A%3C%2Ful%3E%0A&page%5Btitle%5D=Unlisted+pages |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18060,44 +18215,46 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"641723ac35ecba12ccb5920151d1a9c1" |
| + | - W/"e9d3aa9584aed59fd76bc5a4e63db9f5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 20897be1-db79-45f9-ace8-86146f69307d |
| + | - 64642c17-d32f-430f-9f66-c72240ec52d2 |
| X-Runtime: | |
| - | - '0.050724' |
| + | - '0.051520' |
| Content-Length: | |
| - '911' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c618c","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"Unlisted |
| - | pages","parent_id":"56c4df45c3651180309c60e6","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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 {% |
| + | string: '{"_id":"56f03134c36511207342cc84","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Unlisted |
| + | pages","parent_id":"56f0312dc36511207342cbde","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=tags&page%5Btitle%5D=Tags |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=index&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=tags&page%5Btitle%5D=Tags |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18106,42 +18263,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"5380b62ac4e5875f1363f6519f4ff8c3" |
| + | - W/"394be023221be635314a7820e93f0d2b" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8c01a554-afa9-455a-a26a-b533a12347c4 |
| + | - e3877894-3df7-437b-9ae6-6bf4ce180d74 |
| X-Runtime: | |
| - | - '0.051214' |
| + | - '0.047835' |
| Content-Length: | |
| - '685' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c618d","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"Tags","parent_id":"56c4df45c3651180309c60e6","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc85","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Tags","parent_id":"56f0312dc36511207342cbde","position":99,"handle":null,"depth":1,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| extends parent %}","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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=john-doe&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A&page%5Btitle%5D=John+doe |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&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=john-doe&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A&page%5Btitle%5D=John+doe |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18150,45 +18309,47 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"499c34851f3b3f2456b6d5508d93fb62" |
| + | - W/"d5a5dfa2d08d4d8a01282ac57a6e104f" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 02f1fbf5-34e0-42da-bc4d-0449da2be503 |
| + | - be377383-9242-476c-aeb0-c8c76465fb12 |
| X-Runtime: | |
| - | - '0.044491' |
| + | - '0.049618' |
| Content-Length: | |
| - '747' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c618e","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"John |
| - | doe","parent_id":"56c4df4cc3651180309c617e","position":1,"handle":null,"depth":2,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc86","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"John |
| + | doe","parent_id":"56f03133c36511207342cc76","position":1,"handle":null,"depth":2,"response_type":"text/html","listed":true,"published":true,"translated_in":["en"],"cache_enabled":true,"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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/56c4df4dc3651180309c618e.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/56f03134c36511207342cc86.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&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 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -18197,43 +18358,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"5000f42f2d37b100e17f50176841ca50" |
| + | - W/"696e1d4429ebdface8d52872c128d9c5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 60e390bb-e70d-4423-a967-c2e0db19e0d4 |
| + | - f29dce45-5bda-4207-84f0-48c4af374bb1 |
| X-Runtime: | |
| - | - '0.044087' |
| + | - '0.043956' |
| Content-Length: | |
| - | - '779' |
| + | - '777' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c618e","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"Jean |
| - | Personne","parent_id":"56c4df4cc3651180309c617e","position":1,"handle":null,"depth":2,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc86","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Jean |
| + | Personne","parent_id":"56f03133c36511207342cc76","position":1,"handle":null,"depth":2,"response_type":"text/html","listed":true,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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":"","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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=about-us&page%5Bposition%5D=2&page%5Bpublished%5D=true&page%5Bslug%5D=jane-doe&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A&page%5Btitle%5D=Jane+doe |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=about-us&page%5Bposition%5D=2&page%5Bpublished%5D=true&page%5Bslug%5D=jane-doe&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A&page%5Btitle%5D=Jane+doe |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18242,43 +18405,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"792c48ad65361fd9a3cac32fca889aae" |
| + | - W/"b967aca2a38d548b2ca3a7695e6fcebe" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c461bd4a-40a1-498e-aa37-9511a2c04a96 |
| + | - 1aba540f-85ac-4474-8289-6438878ac7fd |
| X-Runtime: | |
| - | - '0.039021' |
| + | - '0.051399' |
| Content-Length: | |
| - '748' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c618f","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"Jane |
| - | doe","parent_id":"56c4df4cc3651180309c617e","position":2,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc87","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Jane |
| + | doe","parent_id":"56f03133c36511207342cc76","position":2,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=true&page%5Blisted%5D=false&page%5Bparent%5D=layouts&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=simple&page%5Btemplate%5D=%3C%21DOCTYPE+html%3E%0A%3Chtml+lang%3D%27en%27%3E%0A++%3Chead%3E%3C%2Fhead%3E%0A++%3Cbody%3E%0A++++%3Ch1%3E%7B%25+editable_short_text+title+%25%7D%5BTODO%5D%7B%25+endeditable_short_text+%25%7D%3C%2Fh1%3E%0A++++%3Cdiv+class%3D%27text%27%3E%0A++++++%7B%25+editable_text+content%2C+format%3A+html%2C+rows%3A+5+%25%7D%5BTODO%5D%7B%25+editable_text+%25%7D%0A++++%3C%2Fdiv%3E%0A++%3C%2Fbody%3E%0A%3C%2Fhtml%3E%0A&page%5Btitle%5D=My+simple+layout |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=true&page%5Blisted%5D=false&page%5Bparent%5D=layouts&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=simple&page%5Btemplate%5D=%3C%21DOCTYPE+html%3E%0A%3Chtml+lang%3D%27en%27%3E%0A++%3Chead%3E%3C%2Fhead%3E%0A++%3Cbody%3E%0A++++%3Ch1%3E%7B%25+editable_short_text+title+%25%7D%5BTODO%5D%7B%25+endeditable_short_text+%25%7D%3C%2Fh1%3E%0A++++%3Cdiv+class%3D%27text%27%3E%0A++++++%7B%25+editable_text+content%2C+format%3A+html%2C+rows%3A+5+%25%7D%5BTODO%5D%7B%25+editable_text+%25%7D%0A++++%3C%2Fdiv%3E%0A++%3C%2Fbody%3E%0A%3C%2Fhtml%3E%0A&page%5Btitle%5D=My+simple+layout |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18287,46 +18452,48 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"5a96cc405c901c9ccb9a2138ba65715a" |
| + | - W/"abd57cc141a345e3227e4ac1458679b2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ed2f24e1-92c7-4dcb-b44d-662d2aef1e59 |
| + | - 531e6ab4-c6f0-4d2c-9216-92d0a683e3b4 |
| X-Runtime: | |
| - | - '0.051109' |
| + | - '0.046391' |
| Content-Length: | |
| - '1109' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c6190","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"My |
| - | simple layout","parent_id":"56c4df4cc3651180309c618a","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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 |
| + | string: '{"_id":"56f03134c36511207342cc88","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"My |
| + | simple layout","parent_id":"56f03134c36511207342cc82","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=tags&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=nav-in-deep&page%5Btemplate%5D=%7B%25+nav+%27site%27%2C+depth%3A+2+%25%7D%0A&page%5Btitle%5D=Page+to+test+the+nav+tag+with+a+high+depth |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=tags&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=nav-in-deep&page%5Btemplate%5D=%7B%25+nav+%27site%27%2C+depth%3A+2+%25%7D%0A&page%5Btitle%5D=Page+to+test+the+nav+tag+with+a+high+depth |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18335,43 +18502,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"f626fc7a4ffdc7908ff370ede6066979" |
| + | - W/"0d4ff1bbdbd2c7e376f8373f7ff4507f" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - fef682dc-e64a-479c-ba83-12acc7f1e519 |
| + | - cbd3c176-c381-4d60-bff9-c3af33e9984d |
| X-Runtime: | |
| - | - '0.051220' |
| + | - '0.050865' |
| Content-Length: | |
| - '786' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c6191","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"Page |
| - | to test the nav tag with a high depth","parent_id":"56c4df4dc3651180309c618d","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc89","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Page |
| + | to test the nav tag with a high depth","parent_id":"56f03134c36511207342cc85","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=tags&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=nav&page%5Btemplate%5D=%7B%25+nav+site+%25%7D%0A&page%5Btitle%5D=Page+to+test+the+nav+tag |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=tags&page%5Bposition%5D=99&page%5Bpublished%5D=false&page%5Bslug%5D=nav&page%5Btemplate%5D=%7B%25+nav+site+%25%7D%0A&page%5Btitle%5D=Page+to+test+the+nav+tag |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18380,43 +18549,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"aff0e460527039207a0ba28360944abf" |
| + | - W/"d621a7d181374605419d82f7687ad501" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9fcf8327-98d9-495c-ad9b-3ca5a37c4bd6 |
| + | - aa3eb45b-bd2f-4be5-b49b-43ab4c010105 |
| X-Runtime: | |
| - | - '0.043884' |
| + | - '0.048883' |
| Content-Length: | |
| - '716' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c6192","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"Page |
| - | to test the nav tag","parent_id":"56c4df4dc3651180309c618d","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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":"{% |
| + | string: '{"_id":"56f03134c36511207342cc8a","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Page |
| + | to test the nav tag","parent_id":"56f03134c36511207342cc85","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":false,"translated_in":["en"],"cache_enabled":true,"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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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%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=A+song+template |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&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%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=A+song+template |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18425,19 +18596,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"42b32a3b63f469955aa7413ed7c125fd" |
| + | - W/"ef672fc3be3e17cc80a5e8523a37fb29" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c430a4d3-0df1-4d25-9d38-83cb88933900 |
| + | - 3be9985e-4afa-479a-b19b-b4a00855ef73 |
| X-Runtime: | |
| - | - '0.088470' |
| + | - '0.073293' |
| Content-Length: | |
| - '1268' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c6193","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"A |
| - | song template","parent_id":"56c4df4dc3651180309c618b","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03134c36511207342cc8b","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"A |
| + | song template","parent_id":"56f03134c36511207342cc83","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"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=''{{ | |
| @@ | @@ -18445,30 +18616,32 @@ 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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/56c4df4dc3651180309c6193.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/56f03134c36511207342cc8b.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&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 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - fr | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -18477,19 +18650,19 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"14ad74b1f4148d5b045ba84b6065e9df" |
| + | - W/"06ef29c0cc6ba76b0b8f0cd43ed2b5ab" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 182b0d1d-fbbb-44c0-b159-d582b967bc87 |
| + | - b18dfc11-57ba-454f-87d6-09aab03bfeed |
| X-Runtime: | |
| - | - '0.064133' |
| + | - '0.073889' |
| Content-Length: | |
| - | - '1290' |
| + | - '1288' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c6193","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"Le |
| - | template d''une chanson","parent_id":"56c4df4dc3651180309c618b","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03134c36511207342cc8b","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:52Z","title":"Le |
| + | template d''une chanson","parent_id":"56f03134c36511207342cc83","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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":false,"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 | |
| @@ | @@ -18497,30 +18670,32 @@ 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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:52 GMT |
| - request: | |
| method: put | |
| - | uri: http://localhost:3000/locomotive/api/v3/pages/56c4df4dc3651180309c6193.json |
| + | uri: http://localhost:3000/locomotive/api/v3/pages/56f03134c36511207342cc8b.json |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&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 |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&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 |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:52 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| X-Locomotive-Locale: | |
| - nb | |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -18529,41 +18704,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"3084a07e89b44017c5e437c1794ed732" |
| + | - W/"eafa9a354befe01b82637d05ea4569de" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 069fc9aa-7237-41e2-bf8e-e7411d518be4 |
| + | - af8d1c0f-1c95-4af2-944a-4350ca2ee634 |
| X-Runtime: | |
| - | - '0.060698' |
| + | - '0.068670' |
| Content-Length: | |
| - | - '794' |
| + | - '805' |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c6193","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":null,"parent_id":"56c4df4dc3651180309c618b","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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":false,"template":"","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| + | string: '{"_id":"56f03134c36511207342cc8b","created_at":"2016-03-21T17:36:52Z","updated_at":"2016-03-21T17:36:53Z","title":"A |
| + | song template","parent_id":"56f03134c36511207342cc83","position":99,"handle":"a-song-template","depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en","fr"],"cache_enabled":true,"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":false,"template":"","editable_elements":[],"seo_title":null,"meta_keywords":null,"meta_description":null}' |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=archives&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=news&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Cp%3ENews+Archives.+Lorem+ipsum....%3C%2Fp%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=News+archive |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=archives&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=news&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Cp%3ENews+Archives.+Lorem+ipsum....%3C%2Fp%3E%0A%7B%25+endblock+%25%7D%0A&page%5Btitle%5D=News+archive |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18572,44 +18750,46 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"71798ad96c8114d160101d7ba614ac8c" |
| + | - W/"1be74e668c788b006383773a79dcada5" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 8e0f2b3e-21b9-46b7-80b1-56070512d286 |
| + | - 892731b7-49d8-445e-8266-484d096bcbb2 |
| X-Runtime: | |
| - | - '0.044443' |
| + | - '0.046735' |
| Content-Length: | |
| - '827' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c6194","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"News |
| - | archive","parent_id":"56c4df4cc3651180309c6186","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03135c36511207342cc8c","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36:53Z","title":"News |
| + | archive","parent_id":"56f03134c36511207342cc7e","position":99,"handle":null,"depth":2,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/pages.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&page%5Bcontent_type%5D=songs&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=songs%2Fcontent_type_template&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=band&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Ch3%3E%7B%7B+song.title+%7D%7D%3C%2Fh3%3E%0A%3Ch4%3ELeader%3A+%7B%7B+song.band.leader+%7D%7D%3C%2Fh4%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=Band |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&page%5Bcontent_type%5D=songs&page%5Bis_layout%5D=false&page%5Blisted%5D=false&page%5Bparent%5D=songs%2Fcontent_type_template&page%5Bposition%5D=99&page%5Bpublished%5D=true&page%5Bslug%5D=band&page%5Btemplate%5D=%7B%25+extends+parent+%25%7D%0A%7B%25+block+content+%25%7D%0A%3Ch3%3E%7B%7B+song.title+%7D%7D%3C%2Fh3%3E%0A%3Ch4%3ELeader%3A+%7B%7B+song.band.leader+%7D%7D%3C%2Fh4%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=Band |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -18618,18 +18798,18 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"166c5ae04a98ade0dcbde7990e372434" |
| + | - W/"13f4b157be911f5803c42707c4c1b547" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5f0d197e-2623-4a55-80da-091cbd1d6eb4 |
| + | - 599c0b6e-3847-440a-b4cb-cd313f037c92 |
| X-Runtime: | |
| - | - '0.086471' |
| + | - '0.072882' |
| Content-Length: | |
| - '1249' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c6195","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","title":"Band","parent_id":"56c4df4dc3651180309c6193","position":99,"handle":null,"depth":3,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"template":"{% |
| + | string: '{"_id":"56f03135c36511207342cc8d","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36:53Z","title":"Band","parent_id":"56f03134c36511207342cc8b","position":99,"handle":null,"depth":3,"response_type":"text/html","listed":false,"published":true,"translated_in":["en"],"cache_enabled":true,"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":false,"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=''{{ | |
| @@ | @@ -18637,28 +18817,30 @@ 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: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/song.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&snippet%5Bname%5D=Song&snippet%5Bslug%5D=song&snippet%5Btemplate%5D%5Ben%5D=%3Cli%3E%0A++%3Ch3%3E%3Ca+href%3D%22%7B%25+path_to+song%2C+with%3A+a-song-template+%25%7D%22%3E%7B%7B+song.title+%7D%7D%3C%2Fa%3E%3C%2Fh3%3E%0A++%3Cdiv+class%3D%22cover%22%3E%7B%7B+song.cover+%7C+image_tag+%7D%7D%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%22info%22%3E%0A++++%7B%7B+song.short_description+%7D%7D%0A++++%3Cp+class%3D%22listen%22%3E%0A++++++%3Ca+href%3D%22%7B%7B+song.audio_url+%7D%7D%22%3E%26rarr%3B+Listen+%28%7B%7B+song.duration+%7D%7D+min%29%3C%2Fa%3E%0A++++%3C%2Fp%3E%0A++++%3Cp%3E%C3%A9couter+en+Francais%3C%2Fp%3E%0A++%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%22clear%22%3E%3C%2Fdiv%3E%0A%3C%2Fli%3E%0A&snippet%5Btemplate%5D%5Bfr%5D=%3Cli%3E%0A++%3Ch3%3E%7B%25+link_to+song%2C+with%3A+a-song-template+%25%7D%3C%2Fh3%3E%0A++%3Cdiv+class%3D%27cover%27%3E%7B%7B+song.cover.url+%7C+image_tag+%7D%7D%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%27info%27%3E%0A++++%7B%7B+song.short_description+%7D%7D%0A++++%3Cp+class%3D%27listen%27%3E%0A++++++%3Ca+href%3D%27%7B%7B+song.audio_url+%7D%7D%27%3E%26rarr%3B+%C3%A9couter+%28%7B%7B+song.duration+%7D%7D+min%29%3C%2Fa%3E%0A++++%3C%2Fp%3E%0A++%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A%3C%2Fli%3E%0A&snippet%5Btemplate%5D%5Bnb%5D=%3Cli%3E%0A++%3Ch3%3E%3Ca+href%3D%22%7B%25+path_to+song%2C+with%3A+a-song-template+%25%7D%22%3E%7B%7B+song.title+%7D%7D%3C%2Fa%3E%3C%2Fh3%3E%0A++%3Cdiv+class%3D%22cover%22%3E%7B%7B+song.cover+%7C+image_tag+%7D%7D%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%22info%22%3E%0A++++%7B%7B+song.short_description+%7D%7D%0A++++%3Cp+class%3D%22listen%22%3E%0A++++++%3Ca+href%3D%22%7B%7B+song.audio_url+%7D%7D%22%3E%26rarr%3B+Listen+%28%7B%7B+song.duration+%7D%7D+min%29%3C%2Fa%3E%0A++++%3C%2Fp%3E%0A++++%3Cp%3E%C3%A9couter+en+Francais%3C%2Fp%3E%0A++%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%22clear%22%3E%3C%2Fdiv%3E%0A%3C%2Fli%3E%0A |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&snippet%5Bname%5D=Song&snippet%5Bslug%5D=song&snippet%5Btemplate%5D%5Ben%5D=%3Cli%3E%0A++%3Ch3%3E%3Ca+href%3D%22%7B%25+path_to+song%2C+with%3A+a-song-template+%25%7D%22%3E%7B%7B+song.title+%7D%7D%3C%2Fa%3E%3C%2Fh3%3E%0A++%3Cdiv+class%3D%22cover%22%3E%7B%7B+song.cover+%7C+image_tag+%7D%7D%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%22info%22%3E%0A++++%7B%7B+song.short_description+%7D%7D%0A++++%3Cp+class%3D%22listen%22%3E%0A++++++%3Ca+href%3D%22%7B%7B+song.audio_url+%7D%7D%22%3E%26rarr%3B+Listen+%28%7B%7B+song.duration+%7D%7D+min%29%3C%2Fa%3E%0A++++%3C%2Fp%3E%0A++++%3Cp%3E%C3%A9couter+en+Francais%3C%2Fp%3E%0A++%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%22clear%22%3E%3C%2Fdiv%3E%0A%3C%2Fli%3E%0A&snippet%5Btemplate%5D%5Bfr%5D=%3Cli%3E%0A++%3Ch3%3E%7B%25+link_to+song%2C+with%3A+a-song-template+%25%7D%3C%2Fh3%3E%0A++%3Cdiv+class%3D%27cover%27%3E%7B%7B+song.cover.url+%7C+image_tag+%7D%7D%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%27info%27%3E%0A++++%7B%7B+song.short_description+%7D%7D%0A++++%3Cp+class%3D%27listen%27%3E%0A++++++%3Ca+href%3D%27%7B%7B+song.audio_url+%7D%7D%27%3E%26rarr%3B+%C3%A9couter+%28%7B%7B+song.duration+%7D%7D+min%29%3C%2Fa%3E%0A++++%3C%2Fp%3E%0A++%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%27clear%27%3E%3C%2Fdiv%3E%0A%3C%2Fli%3E%0A&snippet%5Btemplate%5D%5Bnb%5D=%3Cli%3E%0A++%3Ch3%3E%3Ca+href%3D%22%7B%25+path_to+song%2C+with%3A+a-song-template+%25%7D%22%3E%7B%7B+song.title+%7D%7D%3C%2Fa%3E%3C%2Fh3%3E%0A++%3Cdiv+class%3D%22cover%22%3E%7B%7B+song.cover+%7C+image_tag+%7D%7D%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%22info%22%3E%0A++++%7B%7B+song.short_description+%7D%7D%0A++++%3Cp+class%3D%22listen%22%3E%0A++++++%3Ca+href%3D%22%7B%7B+song.audio_url+%7D%7D%22%3E%26rarr%3B+Listen+%28%7B%7B+song.duration+%7D%7D+min%29%3C%2Fa%3E%0A++++%3C%2Fp%3E%0A++++%3Cp%3E%C3%A9couter+en+Francais%3C%2Fp%3E%0A++%3C%2Fdiv%3E%0A++%3Cdiv+class%3D%22clear%22%3E%3C%2Fdiv%3E%0A%3C%2Fli%3E%0A |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -18667,21 +18849,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"de8ddcdba100c4e383568e5573a6c416" |
| + | - W/"c29bf956cf9d80133d3a3f7b433bc788" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 2c400b8a-3082-4530-b9f0-5e55638f1044 |
| + | - 905c5332-c9a6-4a40-94dc-7ca41fce3ed2 |
| X-Runtime: | |
| - | - '0.035588' |
| + | - '0.039174' |
| Content-Length: | |
| - '744' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NmM0ZGY0ZGMzNjUxMTgwMzA5YzYxOTYiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wMi0xN1QyMDo1OTo1N1oiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Mi0xN1QyMDo1OTo1N1oiLCJuYW1lIjoiU29uZyIsInNsdWciOiJzb25nIiwi |
| + | eyJfaWQiOiI1NmYwMzEzNWMzNjUxMTIwNzM0MmNjOGUiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNi0wMy0yMVQxNzozNjo1M1oiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| + | My0yMVQxNzozNjo1M1oiLCJuYW1lIjoiU29uZyIsInNsdWciOiJzb25nIiwi |
| dGVtcGxhdGUiOiJcdTAwM2NsaVx1MDAzZVxuICBcdTAwM2NoM1x1MDAzZVx1 | |
| MDAzY2EgaHJlZj1cInslIHBhdGhfdG8gc29uZywgd2l0aDogYS1zb25nLXRl | |
| bXBsYXRlICV9XCJcdTAwM2V7eyBzb25nLnRpdGxlIH19XHUwMDNjL2FcdTAw | |
| @@ | @@ -18697,28 +18879,30 @@ http_interactions: |
| IFx1MDAzY2RpdiBjbGFzcz1cImNsZWFyXCJcdTAwM2VcdTAwM2MvZGl2XHUw | |
| MDNlXG5cdTAwM2MvbGlcdTAwM2VcbiJ9 | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:57 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/a_complicated-one.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&snippet%5Bname%5D=A+complicated-one&snippet%5Bslug%5D=a_complicated-one&snippet%5Btemplate%5D%5Ben%5D=%3Cp%3EA+complicated+one+name+indeed.%3C%2Fp%3E%0A&snippet%5Btemplate%5D%5Bfr%5D=%3Cp%3EA+complicated+one+name+indeed.%3C%2Fp%3E%0A&snippet%5Btemplate%5D%5Bnb%5D=%3Cp%3EA+complicated+one+name+indeed.%3C%2Fp%3E%0A |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&snippet%5Bname%5D=A+complicated-one&snippet%5Bslug%5D=a_complicated-one&snippet%5Btemplate%5D%5Ben%5D=%3Cp%3EA+complicated+one+name+indeed.%3C%2Fp%3E%0A&snippet%5Btemplate%5D%5Bfr%5D=%3Cp%3EA+complicated+one+name+indeed.%3C%2Fp%3E%0A&snippet%5Btemplate%5D%5Bnb%5D=%3Cp%3EA+complicated+one+name+indeed.%3C%2Fp%3E%0A |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -18727,43 +18911,45 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"e1389f89a3c7ba266c0a8ede28de1310" |
| + | - W/"098f25580623474398d46749f0c4ad62" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - a6cb4635-2898-49ea-b2c2-4bdb1b7bad17 |
| + | - c18cf2ed-c67b-4472-89a7-1b4b134cafd9 |
| X-Runtime: | |
| - | - '0.038478' |
| + | - '0.046477' |
| Content-Length: | |
| - '233' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4dc3651180309c6197","created_at":"2016-02-17T20:59:57Z","updated_at":"2016-02-17T20:59:57Z","name":"A |
| + | string: '{"_id":"56f03135c36511207342cc8f","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36:53Z","name":"A |
| complicated-one","slug":"a_complicated-one","template":"\u003cp\u003eA complicated | |
| one name indeed.\u003c/p\u003e\n"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/footer.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&snippet%5Bname%5D=Footer&snippet%5Bslug%5D=footer&snippet%5Btemplate%5D%5Ben%5D=%3Cp%3E%7B%25+locale_switcher+%25%7D%3C%2Fp%3E%0A%3Cp%3E%0A++%7B%7B+%27powered_by%27+%7C+translate+%7D%7D+%3Ca+href%3D%22http%3A%2F%2Fwww.locomotivecms.com%22%3ELocomotiveCMS%3C%2Fa%3E.+Designed+by+%3Ca+href%3D%22http%3A%2F%2Fwww.sachagreif.com%22%3ESacha+Greif%3C%2Fa%3E.%0A%3C%2Fp%3E%0A%3Cp%3E%0A++All+photos+are+licensed+under+Creative+Commons.+%28see+original+ones+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2F38687875%40N00%2F3391588262%2F%27%3Ehere%3C%2Fa%3E+or+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fcool_dry_place%2F55454498%2F%27%3Ehere%3C%2Fa%3E%29.%0A%3C%2Fp%3E%0A&snippet%5Btemplate%5D%5Bfr%5D=%3Cp%3E%7B%25+locale_switcher+%25%7D%3C%2Fp%3E%0A%3Cp%3E%0A++%7B%7B+%27powered_by%27+%7C+translate+%7D%7D+%3Ca+href%3D%22http%3A%2F%2Fwww.locomotivecms.com%22%3ELocomotiveCMS%3C%2Fa%3E.+Designed+by+%3Ca+href%3D%22http%3A%2F%2Fwww.sachagreif.com%22%3ESacha+Greif%3C%2Fa%3E.%0A%3C%2Fp%3E%0A%3Cp%3E%0A++All+photos+are+licensed+under+Creative+Commons.+%28see+original+ones+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2F38687875%40N00%2F3391588262%2F%27%3Ehere%3C%2Fa%3E+or+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fcool_dry_place%2F55454498%2F%27%3Ehere%3C%2Fa%3E%29.%0A%3C%2Fp%3E%0A&snippet%5Btemplate%5D%5Bnb%5D=%3Cp%3E%7B%25+locale_switcher+%25%7D%3C%2Fp%3E%0A%3Cp%3E%0A++%7B%7B+%27powered_by%27+%7C+translate+%7D%7D+%3Ca+href%3D%22http%3A%2F%2Fwww.locomotivecms.com%22%3ELocomotiveCMS%3C%2Fa%3E.+Designed+by+%3Ca+href%3D%22http%3A%2F%2Fwww.sachagreif.com%22%3ESacha+Greif%3C%2Fa%3E.%0A%3C%2Fp%3E%0A%3Cp%3E%0A++All+photos+are+licensed+under+Creative+Commons.+%28see+original+ones+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2F38687875%40N00%2F3391588262%2F%27%3Ehere%3C%2Fa%3E+or+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fcool_dry_place%2F55454498%2F%27%3Ehere%3C%2Fa%3E%29.%0A%3C%2Fp%3E%0A |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&snippet%5Bname%5D=Footer&snippet%5Bslug%5D=footer&snippet%5Btemplate%5D%5Ben%5D=%3Cp%3E%7B%25+locale_switcher+%25%7D%3C%2Fp%3E%0A%3Cp%3E%0A++%7B%7B+%27powered_by%27+%7C+translate+%7D%7D+%3Ca+href%3D%22http%3A%2F%2Fwww.locomotivecms.com%22%3ELocomotiveCMS%3C%2Fa%3E.+Designed+by+%3Ca+href%3D%22http%3A%2F%2Fwww.sachagreif.com%22%3ESacha+Greif%3C%2Fa%3E.%0A%3C%2Fp%3E%0A%3Cp%3E%0A++All+photos+are+licensed+under+Creative+Commons.+%28see+original+ones+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2F38687875%40N00%2F3391588262%2F%27%3Ehere%3C%2Fa%3E+or+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fcool_dry_place%2F55454498%2F%27%3Ehere%3C%2Fa%3E%29.%0A%3C%2Fp%3E%0A&snippet%5Btemplate%5D%5Bfr%5D=%3Cp%3E%7B%25+locale_switcher+%25%7D%3C%2Fp%3E%0A%3Cp%3E%0A++%7B%7B+%27powered_by%27+%7C+translate+%7D%7D+%3Ca+href%3D%22http%3A%2F%2Fwww.locomotivecms.com%22%3ELocomotiveCMS%3C%2Fa%3E.+Designed+by+%3Ca+href%3D%22http%3A%2F%2Fwww.sachagreif.com%22%3ESacha+Greif%3C%2Fa%3E.%0A%3C%2Fp%3E%0A%3Cp%3E%0A++All+photos+are+licensed+under+Creative+Commons.+%28see+original+ones+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2F38687875%40N00%2F3391588262%2F%27%3Ehere%3C%2Fa%3E+or+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fcool_dry_place%2F55454498%2F%27%3Ehere%3C%2Fa%3E%29.%0A%3C%2Fp%3E%0A&snippet%5Btemplate%5D%5Bnb%5D=%3Cp%3E%7B%25+locale_switcher+%25%7D%3C%2Fp%3E%0A%3Cp%3E%0A++%7B%7B+%27powered_by%27+%7C+translate+%7D%7D+%3Ca+href%3D%22http%3A%2F%2Fwww.locomotivecms.com%22%3ELocomotiveCMS%3C%2Fa%3E.+Designed+by+%3Ca+href%3D%22http%3A%2F%2Fwww.sachagreif.com%22%3ESacha+Greif%3C%2Fa%3E.%0A%3C%2Fp%3E%0A%3Cp%3E%0A++All+photos+are+licensed+under+Creative+Commons.+%28see+original+ones+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2F38687875%40N00%2F3391588262%2F%27%3Ehere%3C%2Fa%3E+or+%3Ca+href%3D%27http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fcool_dry_place%2F55454498%2F%27%3Ehere%3C%2Fa%3E%29.%0A%3C%2Fp%3E%0A |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -18772,46 +18958,48 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"5a0762dc8e8cfa165f83e81b0ad7c6a8" |
| + | - W/"382a5b55167adaaf8fdc5d2f4ff6bba8" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 64c7f1ec-ed2e-4d6f-82d5-0503699f3bf9 |
| + | - ee7192f6-9f6b-4043-af37-fb1774e26963 |
| X-Runtime: | |
| - | - '0.042305' |
| + | - '0.108980' |
| Content-Length: | |
| - '726' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c6198","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","name":"Footer","slug":"footer","template":"\u003cp\u003e{% |
| + | string: '{"_id":"56f03135c36511207342cc90","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36: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: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/snippets/header.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&snippet%5Bname%5D=Header&snippet%5Bslug%5D=header&snippet%5Btemplate%5D%5Ben%5D=%3Ch1%3E%7B%7B+site.name+%7D%7D%3C%2Fh1%3E%0A&snippet%5Btemplate%5D%5Bfr%5D=%3Ch1%3E%7B%7B+site.name+%7D%7D%3C%2Fh1%3E%0A&snippet%5Btemplate%5D%5Bnb%5D=%3Ch1%3E%7B%7B+site.name+%7D%7D%3C%2Fh1%3E%0A |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&snippet%5Bname%5D=Header&snippet%5Bslug%5D=header&snippet%5Btemplate%5D%5Ben%5D=%3Ch1%3E%7B%7B+site.name+%7D%7D%3C%2Fh1%3E%0A&snippet%5Btemplate%5D%5Bfr%5D=%3Ch1%3E%7B%7B+site.name+%7D%7D%3C%2Fh1%3E%0A&snippet%5Btemplate%5D%5Bnb%5D=%3Ch1%3E%7B%7B+site.name+%7D%7D%3C%2Fh1%3E%0A |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -18820,40 +19008,42 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7ed46bda984a4abff37831c9b2a8f9ef" |
| + | - W/"a5625a7e4b548b987c26a71d2b664e2e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - e0a0e386-c668-4cd9-83ab-129c9fd9d9c2 |
| + | - 912f7876-aaef-4a1e-b779-10a8815ce9b3 |
| X-Runtime: | |
| - | - '0.039335' |
| + | - '0.069686' |
| Content-Length: | |
| - '198' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c6199","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","name":"Header","slug":"header","template":"\u003ch1\u003e{{ |
| + | string: '{"_id":"56f03135c36511207342cc91","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36:53Z","name":"Header","slug":"header","template":"\u003ch1\u003e{{ |
| site.name }}\u003c/h1\u003e\n"}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: get | |
| - | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json?auth_token=e1QSfNaw8zQM7rWX5CPf |
| + | uri: http://localhost:3000/locomotive/api/v3/theme_assets.json?auth_token=V8VMCfCsp7XzQLvAd1AY |
| body: | |
| - | encoding: US-ASCII |
| + | encoding: UTF-8 |
| string: '' | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| + | - parched-lagoon-8492 |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -18866,16 +19056,16 @@ http_interactions: |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - be0bf640-fbdb-4e8a-ba17-c6a027b993ae |
| + | - 1cec5ceb-0023-4c72-b730-df52716a1045 |
| X-Runtime: | |
| - | - '0.029977' |
| + | - '0.034334' |
| Content-Length: | |
| - '2' | |
| body: | |
| encoding: UTF-8 | |
| string: "[]" | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -19748,25 +19938,27 @@ http_interactions: |
| ZW1lX2Fzc2V0W2NoZWNrc3VtXSINCg0KNjA4MDQ0MWZkZTUwYzQ4MzljMjNj | |
| NzliOTM3ZjAxOTQNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdA0K | |
| Q29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1lPSJhdXRoX3Rv | |
| - | a2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0KLS0tLS0tLS0tLS0tLVJ1 |
| + | a2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0KLS0tLS0tLS0tLS0tLVJ1 |
| YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '39036' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -19775,21 +19967,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"191d6d26f62cab98e15dc6c35d3c7edc" |
| + | - W/"34277142a584c9de3b3e8959d31c0c67" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 9a6d4d13-f0e1-4ace-8402-534b9087d7f6 |
| + | - ef439ed7-b01f-456e-bcfd-95fbe2e3a38c |
| X-Runtime: | |
| - | - '0.051882' |
| + | - '0.048628' |
| Content-Length: | |
| - '377' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c619a","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","content_type":"font","local_path":"fonts/chunkfive-webfont.eot","folder":"fonts","checksum":"6080441fde50c4839c23c79b937f0194","filename":"chunkfive-webfont.eot","url":"/sites/56c4df45c3651180309c60e4/theme/fonts/chunkfive-webfont.eot","size":"37.5 |
| + | string: '{"_id":"56f03135c36511207342cc92","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36:53Z","content_type":"font","local_path":"fonts/chunkfive-webfont.eot","folder":"fonts","checksum":"6080441fde50c4839c23c79b937f0194","filename":"chunkfive-webfont.eot","url":"/sites/56f0312dc36511207342cbdc/theme/fonts/chunkfive-webfont.eot","size":"37.5 |
| KB","raw_size":38434}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -20437,24 +20629,26 @@ http_interactions: |
| />\n</font>\n</defs></svg> \r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| form-data; name=\"theme_asset[folder]\"\r\n\r\nfonts\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| form-data; name=\"theme_asset[checksum]\"\r\n\r\n57d0f66913a8c0e172ae3fe78ce36e43\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| - | form-data; name=\"auth_token\"\r\n\r\ne1QSfNaw8zQM7rWX5CPf\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | form-data; name=\"auth_token\"\r\n\r\nV8VMCfCsp7XzQLvAd1AY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '51204' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -20463,21 +20657,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"201f5828c2d8d3f6ff509c4147dc893b" |
| + | - W/"b1680630daf2af83259667e7f3356c43" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 74335c7b-dea5-4711-9c15-a36093ff5d5a |
| + | - 2011d717-a990-49bf-9bd2-6ff11bf75c2f |
| X-Runtime: | |
| - | - '0.034552' |
| + | - '0.041823' |
| Content-Length: | |
| - '377' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c619b","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","content_type":"font","local_path":"fonts/chunkfive-webfont.svg","folder":"fonts","checksum":"57d0f66913a8c0e172ae3fe78ce36e43","filename":"chunkfive-webfont.svg","url":"/sites/56c4df45c3651180309c60e4/theme/fonts/chunkfive-webfont.svg","size":"49.4 |
| + | string: '{"_id":"56f03135c36511207342cc93","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36:53Z","content_type":"font","local_path":"fonts/chunkfive-webfont.svg","folder":"fonts","checksum":"57d0f66913a8c0e172ae3fe78ce36e43","filename":"chunkfive-webfont.svg","url":"/sites/56f0312dc36511207342cbdc/theme/fonts/chunkfive-webfont.svg","size":"49.4 |
| KB","raw_size":50602}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -21344,25 +21538,27 @@ http_interactions: |
| dFtjaGVja3N1bV0iDQoNCjQzOTYzMzQ0NGY5ZDMyYTMwYTQ0NDlkYTk2Nzg1 | |
| M2QyDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRlbnQt | |
| RGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYXV0aF90b2tlbiINCg0K | |
| - | ZTFRU2ZOYXc4elFNN3JXWDVDUGYNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlw |
| + | VjhWTUNmQ3NwN1h6UUx2QWQxQVkNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlw |
| YXJ0UG9zdC0tDQoNCg== | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '38758' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -21371,21 +21567,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"adbef020ad3aaeaaf8e82d1bff8af44d" |
| + | - W/"498b19b7f65557fe7a1638d3323ee8e7" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 75115cdd-a195-427b-acaa-923952f5b1d1 |
| + | - d6db38ed-89a8-4ae7-84ba-e9a59c260882 |
| X-Runtime: | |
| - | - '0.062710' |
| + | - '0.042362' |
| Content-Length: | |
| - '377' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c619c","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","content_type":"font","local_path":"fonts/chunkfive-webfont.ttf","folder":"fonts","checksum":"439633444f9d32a30a4449da967853d2","filename":"chunkfive-webfont.ttf","url":"/sites/56c4df45c3651180309c60e4/theme/fonts/chunkfive-webfont.ttf","size":"37.3 |
| + | string: '{"_id":"56f03135c36511207342cc94","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36:53Z","content_type":"font","local_path":"fonts/chunkfive-webfont.ttf","folder":"fonts","checksum":"439633444f9d32a30a4449da967853d2","filename":"chunkfive-webfont.ttf","url":"/sites/56f0312dc36511207342cbdc/theme/fonts/chunkfive-webfont.ttf","size":"37.3 |
| KB","raw_size":38156}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -21901,25 +22097,27 @@ http_interactions: |
| bS1kYXRhOyBuYW1lPSJ0aGVtZV9hc3NldFtjaGVja3N1bV0iDQoNCjgxNzRm | |
| YTY3ODkwYTZhZjljMGIwNTQzMmQyMWFmZGJkDQotLS0tLS0tLS0tLS0tUnVi | |
| eU11bHRpcGFydFBvc3QNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0 | |
| - | YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KZTFRU2ZOYXc4elFNN3JXWDVDUGYN |
| + | YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KVjhWTUNmQ3NwN1h6UUx2QWQxQVkN |
| Ci0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdC0tDQoNCg== | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '22987' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -21928,21 +22126,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"e79c7a515403fe1c7613697eb50ceedb" |
| + | - W/"8e03709c47656a8d6069641a466c5074" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 0c85118b-a82b-44e4-91ce-4c711533a5a0 |
| + | - 67b570ca-5a44-4858-8daf-2a97b670255d |
| X-Runtime: | |
| - | - '0.045071' |
| + | - '0.043327' |
| Content-Length: | |
| - '380' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c619d","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","content_type":"font","local_path":"fonts/chunkfive-webfont.woff","folder":"fonts","checksum":"8174fa67890a6af9c0b05432d21afdbd","filename":"chunkfive-webfont.woff","url":"/sites/56c4df45c3651180309c60e4/theme/fonts/chunkfive-webfont.woff","size":"21.9 |
| + | string: '{"_id":"56f03135c36511207342cc95","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36:53Z","content_type":"font","local_path":"fonts/chunkfive-webfont.woff","folder":"fonts","checksum":"8174fa67890a6af9c0b05432d21afdbd","filename":"chunkfive-webfont.woff","url":"/sites/56f0312dc36511207342cbdc/theme/fonts/chunkfive-webfont.woff","size":"21.9 |
| KB","raw_size":22384}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22242,26 +22440,28 @@ http_interactions: |
| bnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0idGhlbWVfYXNzZXRb | |
| Y2hlY2tzdW1dIg0KDQozZjZhMTVmMmNlODkyMzUwOTJhZTI1YjEyNTA4NGRk | |
| Nw0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0DQpDb250ZW50LURp | |
| - | c3Bvc2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9ImF1dGhfdG9rZW4iDQoNCmUx |
| - | UVNmTmF3OHpRTTdyV1g1Q1BmDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFy |
| + | c3Bvc2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9ImF1dGhfdG9rZW4iDQoNClY4 |
| + | Vk1DZkNzcDdYelFMdkFkMUFZDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFy |
| dFBvc3QtLQ0KDQo= | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '13286' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -22270,21 +22470,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"c7c3da6819276ceb1d71e96ce829123b" |
| + | - W/"7ee5c8fd067e4740a3aa229599cf9d8a" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - ec1c6064-4341-4802-bdf7-d302f29acddf |
| + | - 294b4c17-04de-4ff7-a539-7b50b52acc82 |
| X-Runtime: | |
| - | - '0.074964' |
| + | - '0.060770' |
| Content-Length: | |
| - '339' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c619e","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","content_type":"image","local_path":"images/top.jpg","folder":"images","checksum":"3f6a15f2ce89235092ae25b125084dd7","filename":"top.jpg","url":"/sites/56c4df45c3651180309c60e4/theme/images/top.jpg","size":"12.4 |
| + | string: '{"_id":"56f03135c36511207342cc96","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36:53Z","content_type":"image","local_path":"images/top.jpg","folder":"images","checksum":"3f6a15f2ce89235092ae25b125084dd7","filename":"top.jpg","url":"/sites/56f0312dc36511207342cbdc/theme/images/top.jpg","size":"12.4 |
| KB","raw_size":12697}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22545,25 +22745,27 @@ http_interactions: |
| ZGF0YTsgbmFtZT0idGhlbWVfYXNzZXRbY2hlY2tzdW1dIg0KDQo0NzNmNjM0 | |
| MDUzMTcyYTY1NmIzOGY0ZDc5MWQyOTRjOA0KLS0tLS0tLS0tLS0tLVJ1YnlN | |
| dWx0aXBhcnRQb3N0DQpDb250ZW50LURpc3Bvc2l0aW9uOiBmb3JtLWRhdGE7 | |
| - | IG5hbWU9ImF1dGhfdG9rZW4iDQoNCmUxUVNmTmF3OHpRTTdyV1g1Q1BmDQot |
| + | IG5hbWU9ImF1dGhfdG9rZW4iDQoNClY4Vk1DZkNzcDdYelFMdkFkMUFZDQot |
| LS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QtLQ0KDQo= | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '11510' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -22572,21 +22774,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"1c5096b4f32230dd468e9c96ceb893da" |
| + | - W/"d85980f97899e1268d901e38abc833c2" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 1c86e504-132c-4fa6-a3e5-f5ede11c63ab |
| + | - 93f9d045-f17f-4be7-b5e9-371f8a673740 |
| X-Runtime: | |
| - | - '0.045303' |
| + | - '0.046147' |
| Content-Length: | |
| - '353' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c619f","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","content_type":"font","local_path":"fonts/chunkfive.otf","folder":"fonts","checksum":"473f634053172a656b38f4d791d294c8","filename":"chunkfive.otf","url":"/sites/56c4df45c3651180309c60e4/theme/fonts/chunkfive.otf","size":"10.7 |
| + | string: '{"_id":"56f03135c36511207342cc97","created_at":"2016-03-21T17:36:53Z","updated_at":"2016-03-21T17:36:53Z","content_type":"font","local_path":"fonts/chunkfive.otf","folder":"fonts","checksum":"473f634053172a656b38f4d791d294c8","filename":"chunkfive.otf","url":"/sites/56f0312dc36511207342cbdc/theme/fonts/chunkfive.otf","size":"10.7 |
| KB","raw_size":10916}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:53 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22607,25 +22809,27 @@ http_interactions: |
| IG5hbWU9InRoZW1lX2Fzc2V0W2NoZWNrc3VtXSINCg0KZWRiMjkzMDI4Zjlj | |
| MDdmMmQ2OTJkMDY2Y2Q4YTQ1OGENCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlw | |
| YXJ0UG9zdA0KQ29udGVudC1EaXNwb3NpdGlvbjogZm9ybS1kYXRhOyBuYW1l | |
| - | PSJhdXRoX3Rva2VuIg0KDQplMVFTZk5hdzh6UU03cldYNUNQZg0KLS0tLS0t |
| + | PSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZDc3A3WHpRTHZBZDFBWQ0KLS0tLS0t |
| LS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:53 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '705' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -22634,21 +22838,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"2a402b97d2db9a257e68a8f9a3e84d13" |
| + | - W/"1591605893baebaf4f17d21c7da198c4" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 475dd9f7-82fb-40e9-a8b0-272b7982880a |
| + | - 1b2e3174-8f2f-4312-b20f-53448b24dea9 |
| X-Runtime: | |
| - | - '0.066261' |
| + | - '0.056679' |
| Content-Length: | |
| - '348' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c61a0","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","content_type":"image","local_path":"images/nav_on.png","folder":"images","checksum":"edb293028f9c07f2d692d066cd8a458a","filename":"nav_on.png","url":"/sites/56c4df45c3651180309c60e4/theme/images/nav_on.png","size":"115 |
| + | string: '{"_id":"56f03135c36511207342cc98","created_at":"2016-03-21T17:36:54Z","updated_at":"2016-03-21T17:36:54Z","content_type":"image","local_path":"images/nav_on.png","folder":"images","checksum":"edb293028f9c07f2d692d066cd8a458a","filename":"nav_on.png","url":"/sites/56f0312dc36511207342cbdc/theme/images/nav_on.png","size":"115 |
| Bytes","raw_size":115}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22839,26 +23043,28 @@ http_interactions: |
| c3Bvc2l0aW9uOiBmb3JtLWRhdGE7IG5hbWU9InRoZW1lX2Fzc2V0W2NoZWNr | |
| c3VtXSINCg0KOTNjMjkxMTI4N2E1NzU0YmVkNjVhMDI4YzZhYTRhN2MNCi0t | |
| LS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdA0KQ29udGVudC1EaXNwb3Np | |
| - | dGlvbjogZm9ybS1kYXRhOyBuYW1lPSJhdXRoX3Rva2VuIg0KDQplMVFTZk5h |
| - | dzh6UU03cldYNUNQZg0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0 |
| + | dGlvbjogZm9ybS1kYXRhOyBuYW1lPSJhdXRoX3Rva2VuIg0KDQpWOFZNQ2ZD |
| + | c3A3WHpRTHZBZDFBWQ0KLS0tLS0tLS0tLS0tLVJ1YnlNdWx0aXBhcnRQb3N0 |
| LS0NCg0K | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '8376' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -22867,21 +23073,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"611023f86c199099b075ee532c3d6d8c" |
| + | - W/"86f95b0c6503fc768ad1804970173697" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - d4d2f9f8-d3cf-4cc3-9947-02ac5d56cc04 |
| + | - 609fea1a-dc49-494b-9018-f5608702483c |
| X-Runtime: | |
| - | - '0.060372' |
| + | - '0.058479' |
| Content-Length: | |
| - '361' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c61a1","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","content_type":"image","local_path":"images/photo_frame.png","folder":"images","checksum":"93c2911287a5754bed65a028c6aa4a7c","filename":"photo_frame.png","url":"/sites/56c4df45c3651180309c60e4/theme/images/photo_frame.png","size":"7.6 |
| + | string: '{"_id":"56f03136c36511207342cc99","created_at":"2016-03-21T17:36:54Z","updated_at":"2016-03-21T17:36:54Z","content_type":"image","local_path":"images/photo_frame.png","folder":"images","checksum":"93c2911287a5754bed65a028c6aa4a7c","filename":"photo_frame.png","url":"/sites/56f0312dc36511207342cbdc/theme/images/photo_frame.png","size":"7.6 |
| KB","raw_size":7780}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22926,26 +23132,28 @@ http_interactions: |
| dGlvbjogZm9ybS1kYXRhOyBuYW1lPSJ0aGVtZV9hc3NldFtjaGVja3N1bV0i | |
| DQoNCjg5ZTAyNzUxODVlNjYxNjM5ZmIxNDEzMDQxMDg0M2I2DQotLS0tLS0t | |
| LS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRlbnQtRGlzcG9zaXRpb246 | |
| - | IGZvcm0tZGF0YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KZTFRU2ZOYXc4elFN |
| - | N3JXWDVDUGYNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdC0tDQoN |
| + | IGZvcm0tZGF0YTsgbmFtZT0iYXV0aF90b2tlbiINCg0KVjhWTUNmQ3NwN1h6 |
| + | UUx2QWQxQVkNCi0tLS0tLS0tLS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdC0tDQoN |
| Cg== | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:54 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '1801' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -22954,21 +23162,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"da879a59f7c42990d9501b5e4871cab3" |
| + | - W/"53f8996adab5ccb1dd8a47034284348e" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - efd8b95b-c16d-48e1-8176-6d3263f83b7c |
| + | - 809c5c37-e753-40ce-9a06-4e0791791271 |
| X-Runtime: | |
| - | - '0.075074' |
| + | - '0.058374' |
| Content-Length: | |
| - '338' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df4ec3651180309c61a2","created_at":"2016-02-17T20:59:58Z","updated_at":"2016-02-17T20:59:58Z","content_type":"image","local_path":"images/sep.png","folder":"images","checksum":"89e0275185e661639fb14130410843b6","filename":"sep.png","url":"/sites/56c4df45c3651180309c60e4/theme/images/sep.png","size":"1.18 |
| + | string: '{"_id":"56f03136c36511207342cc9a","created_at":"2016-03-21T17:36:54Z","updated_at":"2016-03-21T17:36:54Z","content_type":"image","local_path":"images/sep.png","folder":"images","checksum":"89e0275185e661639fb14130410843b6","filename":"sep.png","url":"/sites/56f0312dc36511207342cbdc/theme/images/sep.png","size":"1.18 |
| KB","raw_size":1213}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 20:59:58 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:54 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -22993,25 +23201,27 @@ http_interactions: |
| c3NldFtjaGVja3N1bV0iDQoNCmIzYWQzYmZhMmFmZjlkZTkxM2JmNDJmODRh | |
| ZDFmZWNmDQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFydFBvc3QNCkNvbnRl | |
| bnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0iYXV0aF90b2tlbiIN | |
| - | Cg0KZTFRU2ZOYXc4elFNN3JXWDVDUGYNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs |
| + | Cg0KVjhWTUNmQ3NwN1h6UUx2QWQxQVkNCi0tLS0tLS0tLS0tLS1SdWJ5TXVs |
| dGlwYXJ0UG9zdC0tDQoNCg== | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:56 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '871' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23020,21 +23230,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"7c2c92d10189cbe224598ce976e47408" |
| + | - W/"c41dff2ba59f44e5fdd9e417abcf8a29" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - eb3576b7-2094-4da7-9de7-98032f5e0d87 |
| + | - 4b65e4a3-9be6-4046-b923-4c1c211316ec |
| X-Runtime: | |
| - | - '0.039448' |
| + | - '0.046522' |
| Content-Length: | |
| - '359' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df51c3651180309c61a3","created_at":"2016-02-17T21:00:01Z","updated_at":"2016-02-17T21:00:01Z","content_type":"stylesheet","local_path":"fonts/chunkfive.css","folder":"fonts","checksum":"b3ad3bfa2aff9de913bf42f84ad1fecf","filename":"chunkfive.css","url":"/sites/56c4df45c3651180309c60e4/theme/fonts/chunkfive.css","size":"279 |
| + | string: '{"_id":"56f03138c36511207342cc9b","created_at":"2016-03-21T17:36:56Z","updated_at":"2016-03-21T17:36:56Z","content_type":"stylesheet","local_path":"fonts/chunkfive.css","folder":"fonts","checksum":"b3ad3bfa2aff9de913bf42f84ad1fecf","filename":"chunkfive.css","url":"/sites/56f0312dc36511207342cbdc/theme/fonts/chunkfive.css","size":"279 |
| Bytes","raw_size":279}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 21:00:01 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:56 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23046,24 +23256,26 @@ http_interactions: |
| world\")})}).call(this);\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| form-data; name=\"theme_asset[folder]\"\r\n\r\njavascripts\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| form-data; name=\"theme_asset[checksum]\"\r\n\r\ndafcc4a2f059c53e47bf8d7ea4dd1e11\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| - | form-data; name=\"auth_token\"\r\n\r\ne1QSfNaw8zQM7rWX5CPf\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | form-data; name=\"auth_token\"\r\n\r\nV8VMCfCsp7XzQLvAd1AY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:57 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '682' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23072,21 +23284,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"408a1c503e234f91cdc9724a99406f82" |
| + | - W/"68a673a647f95af791c1302f5512b1db" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - c0401f0d-4201-48a8-ac0e-052780813df1 |
| + | - b681e75b-74d2-4cbd-9dce-1256da187643 |
| X-Runtime: | |
| - | - '0.033562' |
| + | - '0.036525' |
| Content-Length: | |
| - '378' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df51c3651180309c61a4","created_at":"2016-02-17T21:00:01Z","updated_at":"2016-02-17T21:00:01Z","content_type":"javascript","local_path":"javascripts/application.js","folder":"javascripts","checksum":"dafcc4a2f059c53e47bf8d7ea4dd1e11","filename":"application.js","url":"/sites/56c4df45c3651180309c60e4/theme/javascripts/application.js","size":"84 |
| + | string: '{"_id":"56f03139c36511207342cc9c","created_at":"2016-03-21T17:36:57Z","updated_at":"2016-03-21T17:36:57Z","content_type":"javascript","local_path":"javascripts/application.js","folder":"javascripts","checksum":"dafcc4a2f059c53e47bf8d7ea4dd1e11","filename":"application.js","url":"/sites/56f0312dc36511207342cbdc/theme/javascripts/application.js","size":"84 |
| Bytes","raw_size":84}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 21:00:01 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:57 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23097,24 +23309,26 @@ http_interactions: |
| binary\r\n\r\nconsole.log(\"hello world\");\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| form-data; name=\"theme_asset[folder]\"\r\n\r\njavascripts\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| form-data; name=\"theme_asset[checksum]\"\r\n\r\nd05d02ecb331afbe373db79b0a88ef36\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| - | form-data; name=\"auth_token\"\r\n\r\ne1QSfNaw8zQM7rWX5CPf\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | form-data; name=\"auth_token\"\r\n\r\nV8VMCfCsp7XzQLvAd1AY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:58 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '620' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23123,21 +23337,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"cfddb4b3839c9d7a16c215e71b364fa1" |
| + | - W/"a92245d886a252c9282d0b05804a3272" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - b964ae35-e97a-4574-9e95-46804625cbfb |
| + | - 3f3a1e27-03fa-4e5c-9b36-2093abf37732 |
| X-Runtime: | |
| - | - '0.033208' |
| + | - '0.058855' |
| Content-Length: | |
| - '363' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df52c3651180309c61a5","created_at":"2016-02-17T21:00:02Z","updated_at":"2016-02-17T21:00:02Z","content_type":"javascript","local_path":"javascripts/common.js","folder":"javascripts","checksum":"d05d02ecb331afbe373db79b0a88ef36","filename":"common.js","url":"/sites/56c4df45c3651180309c60e4/theme/javascripts/common.js","size":"27 |
| + | string: '{"_id":"56f0313ac36511207342cc9d","created_at":"2016-03-21T17:36:58Z","updated_at":"2016-03-21T17:36:58Z","content_type":"javascript","local_path":"javascripts/common.js","folder":"javascripts","checksum":"d05d02ecb331afbe373db79b0a88ef36","filename":"common.js","url":"/sites/56f0312dc36511207342cbdc/theme/javascripts/common.js","size":"27 |
| Bytes","raw_size":27}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 21:00:02 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:58 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23145,19 +23359,19 @@ http_interactions: |
| encoding: UTF-8 | |
| string: "-------------RubyMultipartPost\r\nContent-Disposition: form-data; name=\"theme_asset[source]\"; | |
| filename=\"application.css\"\r\nContent-Length: 2790\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: | |
| - | binary\r\n\r\nbody{background:#f0eee3 url(\"/sites/56c4df45c3651180309c60e4/theme/images/top.jpg?3f6a15f2ce89235092ae25b125084dd7\") |
| + | binary\r\n\r\nbody{background:#f0eee3 url(\"/sites/56f0312dc36511207342cbdc/theme/images/top.jpg?3f6a15f2ce89235092ae25b125084dd7\") |
| repeat-x center 0;color:#333;font-family:Georgia,helvetica;font-size:14px}h2{font-size:30px;font-style:italic;font-weight:normal;font-family:ChunkFiveRoman;margin-bottom:6px}a{color:#2196b2;text-decoration:none}a:hover{text-decoration:underline}.sep{height:1px;width:950px;background:transparent | |
| - | url(/sites/56c4df45c3651180309c60e4/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| + | url(/sites/56f0312dc36511207342cbdc/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| repeat-x 0 0}.more a{font-style:italic;font-weight:bold}.container{width:950px;padding-top:0}.error{text-align:center;font-size:24px;text-transform:capitalize}#menu{height:40px}#nav{list-style:none;height:40px}#nav | |
| li{float:left;padding:0 20px 0 20px;height:40px}#nav li a{position:relative;top:7px;color:#fff;font-size:18px;text-transform:lowercase;font-family:ChunkFiveRoman}#nav | |
| - | li.on{background:transparent url(/sites/56c4df45c3651180309c60e4/theme/images/nav_on.png?edb293028f9c07f2d692d066cd8a458a) |
| - | repeat-x 0 0}#banner{padding-top:20px;background:transparent url(/sites/56c4df45c3651180309c60e4/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| + | li.on{background:transparent url(/sites/56f0312dc36511207342cbdc/theme/images/nav_on.png?edb293028f9c07f2d692d066cd8a458a) |
| + | repeat-x 0 0}#banner{padding-top:20px;background:transparent url(/sites/56f0312dc36511207342cbdc/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| repeat-x 0 bottom;margin-bottom:30px;padding-bottom:20px}#banner .photo{float:left;position:relative;left:-23px;background:transparent | |
| - | url(/sites/56c4df45c3651180309c60e4/theme/images/photo_frame.png?93c2911287a5754bed65a028c6aa4a7c) |
| + | url(/sites/56f0312dc36511207342cbdc/theme/images/photo_frame.png?93c2911287a5754bed65a028c6aa4a7c) |
| no-repeat 0 0;padding:24px 0 0 32px;width:636px;height:438px}#banner .text{padding-top:130px;margin-left:686px}#banner | |
| .text p{font-size:18px}#banner .text p a{font-weight:bold;font-size:17px}.list{list-style:none;font-size:13px;margin-bottom:10px}.list | |
| li{margin-bottom:5px}.list li em{font-weight:bold}.songs{list-style:none}.songs | |
| - | li{margin:0 20px 20px 0;padding:0 0 20px 0;background:transparent url(/sites/56c4df45c3651180309c60e4/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| + | li{margin:0 20px 20px 0;padding:0 0 20px 0;background:transparent url(/sites/56f0312dc36511207342cbdc/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| repeat-x 0 bottom}.songs li h3{font-style:italic;margin-bottom:6px}.songs | |
| li .cover{float:left}.songs li .cover img{border:4px solid #fff}.songs li | |
| .info{margin-left:165px}.songs li .info .listen{text-align:right;margin:5px | |
| @@ | @@ -23167,28 +23381,30 @@ http_interactions: |
| p textarea{width:400px;height:200px}#contactform p.action{padding:0 0 15px | |
| 200px}#contactform p.action input{background:#2196b2;color:#fff;padding:3px | |
| 5px;text-transform:uppercase;margin:0 5px;border:0}#footer{background:transparent | |
| - | url(/sites/56c4df45c3651180309c60e4/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| + | url(/sites/56f0312dc36511207342cbdc/theme/images/sep.png?89e0275185e661639fb14130410843b6) |
| repeat-x 0 0;margin-top:20px;padding-top:10px}#footer p{text-align:center;font-size:12px}\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| form-data; name=\"theme_asset[folder]\"\r\n\r\nstylesheets\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| - | form-data; name=\"theme_asset[checksum]\"\r\n\r\n6a9494c091cdd79085463567453c388a\r\n-------------RubyMultipartPost\r\nContent-Disposition: |
| - | form-data; name=\"auth_token\"\r\n\r\ne1QSfNaw8zQM7rWX5CPf\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | form-data; name=\"theme_asset[checksum]\"\r\n\r\n55ada95b03441c631d0d03355ae6907d\r\n-------------RubyMultipartPost\r\nContent-Disposition: |
| + | form-data; name=\"auth_token\"\r\n\r\nV8VMCfCsp7XzQLvAd1AY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '3391' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23197,21 +23413,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"0645b817029ab729ce700b1ac3e18701" |
| + | - W/"cde45a3b5d80f44c50574e051dbba4ff" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 4199c662-2f57-41f8-9543-ad36e251cbde |
| + | - d15dd275-02af-4b9e-9e2e-4ef5cdf64f0a |
| X-Runtime: | |
| - | - '0.095762' |
| + | - '0.034334' |
| Content-Length: | |
| - '382' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df53c3651180309c61a6","created_at":"2016-02-17T21:00:03Z","updated_at":"2016-02-17T21:00:03Z","content_type":"stylesheet","local_path":"stylesheets/application.css","folder":"stylesheets","checksum":"6a9494c091cdd79085463567453c388a","filename":"application.css","url":"/sites/56c4df45c3651180309c60e4/theme/stylesheets/application.css","size":"2.72 |
| + | string: '{"_id":"56f0313bc36511207342cc9e","created_at":"2016-03-21T17:36:59Z","updated_at":"2016-03-21T17:36:59Z","content_type":"stylesheet","local_path":"stylesheets/application.css","folder":"stylesheets","checksum":"55ada95b03441c631d0d03355ae6907d","filename":"application.css","url":"/sites/56f0312dc36511207342cbdc/theme/stylesheets/application.css","size":"2.72 |
| KB","raw_size":2790}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 21:00:03 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23222,24 +23438,26 @@ http_interactions: |
| binary\r\n\r\n\r\n-------------RubyMultipartPost\r\nContent-Disposition: form-data; | |
| name=\"theme_asset[folder]\"\r\n\r\nstylesheets/other\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| form-data; name=\"theme_asset[checksum]\"\r\n\r\nd41d8cd98f00b204e9800998ecf8427e\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| - | form-data; name=\"auth_token\"\r\n\r\ne1QSfNaw8zQM7rWX5CPf\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | form-data; name=\"auth_token\"\r\n\r\nV8VMCfCsp7XzQLvAd1AY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:36:59 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '598' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23248,21 +23466,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"05ca8764aa96cb88118d3d2eefda765d" |
| + | - W/"d158a8af0a1dc0ba9c41f1e7f0943114" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 089bac9b-50b0-41a4-a3b1-6aaa0eee00da |
| + | - d7c108c9-1cf0-4a53-b1b6-c4da5fabd234 |
| X-Runtime: | |
| - | - '0.064449' |
| + | - '0.040131' |
| Content-Length: | |
| - '379' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df53c3651180309c61a7","created_at":"2016-02-17T21:00:03Z","updated_at":"2016-02-17T21:00:03Z","content_type":"stylesheet","local_path":"stylesheets/other/extra.css","folder":"stylesheets/other","checksum":"d41d8cd98f00b204e9800998ecf8427e","filename":"extra.css","url":"/sites/56c4df45c3651180309c60e4/theme/stylesheets/other/extra.css","size":"0 |
| + | string: '{"_id":"56f0313bc36511207342cc9f","created_at":"2016-03-21T17:36:59Z","updated_at":"2016-03-21T17:36:59Z","content_type":"stylesheet","local_path":"stylesheets/other/extra.css","folder":"stylesheets/other","checksum":"d41d8cd98f00b204e9800998ecf8427e","filename":"extra.css","url":"/sites/56f0312dc36511207342cbdc/theme/stylesheets/other/extra.css","size":"0 |
| Bytes","raw_size":0}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 21:00:03 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:36:59 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23290,24 +23508,26 @@ http_interactions: |
| h1{color:green}\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| form-data; name=\"theme_asset[folder]\"\r\n\r\nstylesheets/other\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| form-data; name=\"theme_asset[checksum]\"\r\n\r\nad2e36fdbc6b9ea164f875e19af0c90e\r\n-------------RubyMultipartPost\r\nContent-Disposition: | |
| - | form-data; name=\"auth_token\"\r\n\r\ne1QSfNaw8zQM7rWX5CPf\r\n-------------RubyMultipartPost--\r\n\r\n" |
| + | form-data; name=\"auth_token\"\r\n\r\nV8VMCfCsp7XzQLvAd1AY\r\n-------------RubyMultipartPost--\r\n\r\n" |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:37:00 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '2053' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23316,21 +23536,21 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"ec91af31f60aceeacb51a5e926cab146" |
| + | - W/"7e0a69b3fadf7fbcda1e225916112e27" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 6f8752a7-d68b-4e77-a8ef-f3e2815a00e6 |
| + | - 88226ffd-0e62-4246-a8de-161ceb63b7c1 |
| X-Runtime: | |
| - | - '0.038623' |
| + | - '0.032880' |
| Content-Length: | |
| - '382' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df54c3651180309c61a8","created_at":"2016-02-17T21:00:04Z","updated_at":"2016-02-17T21:00:04Z","content_type":"stylesheet","local_path":"stylesheets/other/style.css","folder":"stylesheets/other","checksum":"ad2e36fdbc6b9ea164f875e19af0c90e","filename":"style.css","url":"/sites/56c4df45c3651180309c60e4/theme/stylesheets/other/style.css","size":"1.42 |
| + | string: '{"_id":"56f0313cc36511207342cca0","created_at":"2016-03-21T17:37:00Z","updated_at":"2016-03-21T17:37:00Z","content_type":"stylesheet","local_path":"stylesheets/other/style.css","folder":"stylesheets/other","checksum":"ad2e36fdbc6b9ea164f875e19af0c90e","filename":"style.css","url":"/sites/56f0312dc36511207342cbdc/theme/stylesheets/other/style.css","size":"1.42 |
| KB","raw_size":1452}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 21:00:04 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:37:00 GMT |
| - request: | |
| method: post | |
| uri: http://localhost:3000/locomotive/api/v3/theme_assets.json | |
| @@ | @@ -23394,25 +23614,27 @@ http_interactions: |
| YW1lPSJ0aGVtZV9hc3NldFtjaGVja3N1bV0iDQoNCmY0NGIxNDg3ZDljMGQ0 | |
| OTBlNjY0ZTkxY2FmMGM3Y2Q4DQotLS0tLS0tLS0tLS0tUnVieU11bHRpcGFy | |
| dFBvc3QNCkNvbnRlbnQtRGlzcG9zaXRpb246IGZvcm0tZGF0YTsgbmFtZT0i | |
| - | YXV0aF90b2tlbiINCg0KZTFRU2ZOYXc4elFNN3JXWDVDUGYNCi0tLS0tLS0t |
| + | YXV0aF90b2tlbiINCg0KVjhWTUNmQ3NwN1h6UUx2QWQxQVkNCi0tLS0tLS0t |
| LS0tLS1SdWJ5TXVsdGlwYXJ0UG9zdC0tDQoNCg== | |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:37:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - multipart/form-data; boundary=-----------RubyMultipartPost | |
| Content-Length: | |
| - '2638' | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 201 | |
| @@ | @@ -23421,42 +23643,44 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"96af143d7d17f1e30c6fb9de92555269" |
| + | - W/"fe2b69b82358c3d8a2c5f0f900aa6ded" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - 5da077b0-7ccf-4fb8-b828-028432d85276 |
| + | - 14e48361-3ca1-422f-8bd5-266aff542f39 |
| X-Runtime: | |
| - | - '0.034160' |
| + | - '0.035036' |
| Content-Length: | |
| - '367' | |
| body: | |
| encoding: UTF-8 | |
| - | string: '{"_id":"56c4df56c3651180309c61a9","created_at":"2016-02-17T21:00:06Z","updated_at":"2016-02-17T21:00:06Z","content_type":"stylesheet","local_path":"stylesheets/reboot.css","folder":"stylesheets","checksum":"f44b1487d9c0d490e664e91caf0c7cd8","filename":"reboot.css","url":"/sites/56c4df45c3651180309c60e4/theme/stylesheets/reboot.css","size":"1.99 |
| + | string: '{"_id":"56f0313dc36511207342cca1","created_at":"2016-03-21T17:37:01Z","updated_at":"2016-03-21T17:37:01Z","content_type":"stylesheet","local_path":"stylesheets/reboot.css","folder":"stylesheets","checksum":"f44b1487d9c0d490e664e91caf0c7cd8","filename":"reboot.css","url":"/sites/56f0312dc36511207342cbdc/theme/stylesheets/reboot.css","size":"1.99 |
| KB","raw_size":2042}' | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 21:00:06 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:37:01 GMT |
| - request: | |
| method: put | |
| uri: http://localhost:3000/locomotive/api/v3/translations/powered_by.json | |
| body: | |
| encoding: UTF-8 | |
| - | string: auth_token=e1QSfNaw8zQM7rWX5CPf&translation%5Bkey%5D=powered_by&translation%5Bvalues%5D%5Ben%5D=Powered+by&translation%5Bvalues%5D%5Bfr%5D=Propuls%C3%A9+par |
| + | string: auth_token=V8VMCfCsp7XzQLvAd1AY&translation%5Bkey%5D=powered_by&translation%5Bvalues%5D%5Ben%5D=Powered+by&translation%5Bvalues%5D%5Bfr%5D=Propuls%C3%A9+par |
| headers: | |
| + | User-Agent: |
| + | - HTTPClient/1.0 (2.7.1, ruby 2.2.3 (2015-08-18)) |
| Accept: | |
| - application/json | |
| + | Accept-Encoding: |
| + | - gzip,deflate |
| + | Date: |
| + | - Mon, 21 Mar 2016 17:37:01 GMT |
| X-Locomotive-Account-Email: | |
| - admin@locomotivecms.com | |
| X-Locomotive-Account-Token: | |
| - | - e1QSfNaw8zQM7rWX5CPf |
| + | - V8VMCfCsp7XzQLvAd1AY |
| X-Locomotive-Site-Handle: | |
| - | - tasteless-pond-7296 |
| + | - parched-lagoon-8492 |
| Content-Type: | |
| - application/x-www-form-urlencoded | |
| - | Accept-Encoding: |
| - | - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 |
| - | User-Agent: |
| - | - Ruby |
| response: | |
| status: | |
| code: 200 | |
| @@ | @@ -23465,22 +23689,22 @@ http_interactions: |
| Content-Type: | |
| - application/json | |
| Etag: | |
| - | - W/"28fd4c1b1c9b2367298f4f7d4ea14666" |
| + | - W/"ed7123a7345798fe8b725b5908f180ad" |
| Cache-Control: | |
| - max-age=0, private, must-revalidate | |
| X-Request-Id: | |
| - | - fe0df214-87ce-47ba-9670-1d8c06a17f54 |
| + | - 3486955d-785b-4e55-a15c-d9db5f10fce1 |
| X-Runtime: | |
| - | - '0.032265' |
| + | - '0.039352' |
| Content-Length: | |
| - '175' | |
| body: | |
| encoding: ASCII-8BIT | |
| string: !binary |- | |
| - | eyJfaWQiOiI1NmM0ZGY1NmMzNjUxMTgwMzA5YzYxYWEiLCJjcmVhdGVkX2F0 |
| - | IjoiMjAxNi0wMi0xN1QyMTowMDowNloiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| - | Mi0xN1QyMTowMDowNloiLCJrZXkiOiJwb3dlcmVkX2J5IiwidmFsdWVzIjp7 |
| + | eyJfaWQiOiI1NmYwMzEzZGMzNjUxMTIwNzM0MmNjYTIiLCJjcmVhdGVkX2F0 |
| + | IjoiMjAxNi0wMy0yMVQxNzozNzowMVoiLCJ1cGRhdGVkX2F0IjoiMjAxNi0w |
| + | My0yMVQxNzozNzowMVoiLCJrZXkiOiJwb3dlcmVkX2J5IiwidmFsdWVzIjp7 |
| ImVuIjoiUG93ZXJlZCBieSIsImZyIjoiUHJvcHVsc8OpIHBhciJ9fQ== | |
| http_version: | |
| - | recorded_at: Wed, 17 Feb 2016 21:00:06 GMT |
| + | recorded_at: Mon, 21 Mar 2016 17:37:01 GMT |
| recorded_with: VCR 3.0.0 | |
spec/unit/commands/push_sub_commands/push_pages_command_spec.rb
+116
-0
| @@ | @@ -0,0 +1,116 @@ |
| + | # encoding: utf-8 |
| + | |
| + | require 'spec_helper' |
| + | |
| + | require 'locomotive/wagon/commands/push_sub_commands/push_base_command' |
| + | require 'locomotive/wagon/commands/push_sub_commands/push_pages_command' |
| + | require 'ostruct' |
| + | |
| + | describe Locomotive::Wagon::PushPagesCommand do |
| + | |
| + | let(:api_response) { [] } |
| + | let(:site) { instance_double('Site', default_locale: 'en', locales: ['en'])} |
| + | let(:pages_api) { instance_double('PagesAPI', fullpaths: api_response) } |
| + | let(:api_client) { instance_double('ApiClient', pages: pages_api) } |
| + | let(:command) { described_class.new(api_client, nil, nil, nil) } |
| + | |
| + | before { allow(command).to receive(:current_site).and_return(site) } |
| + | |
| + | describe '#remote_entities' do |
| + | |
| + | let(:api_response) { [OpenStruct.new('_id' => 1, 'fullpath' => 'index', 'handle' => nil), OpenStruct.new('_id' => 2, 'fullpath' => 'about-us', 'handle' => 'about')] } |
| + | |
| + | before { allow(command).to receive(:api_client).and_return(api_client) } |
| + | |
| + | subject { command.send(:remote_entities) } |
| + | |
| + | it { is_expected.to eq({ 'index' => 1, 'about-us' => 2, :about => 2 }) } |
| + | |
| + | end |
| + | |
| + | describe '#remote_entity_id' do |
| + | |
| + | let(:remote_entities) { { 'index' => 1, 'about-us' => 2, :about => 2 } } |
| + | let(:page) { instance_double('Page', fullpath: 'about-us', handle: nil) } |
| + | |
| + | subject { command.send(:remote_entity_id, page) } |
| + | |
| + | before { allow(command).to receive(:remote_entities).and_return(remote_entities) } |
| + | |
| + | it { is_expected.to eq(2) } |
| + | |
| + | context 'if no matching fullpath, use the handle instead' do |
| + | |
| + | let(:page) { instance_double('Page', fullpath: 'modified-about-us', handle: 'about') } |
| + | |
| + | it { is_expected.to eq(2) } |
| + | |
| + | end |
| + | |
| + | end |
| + | |
| + | describe '#remote_entities_by_id' do |
| + | |
| + | let(:remote_entities) { { 'index' => 1, 'about-us' => 2, :about => 2 } } |
| + | |
| + | subject { command.send(:remote_entities_by_id) } |
| + | |
| + | before { allow(command).to receive(:remote_entities).and_return(remote_entities) } |
| + | |
| + | it { is_expected.to eq(1 => 'index', 2 => 'about-us') } |
| + | |
| + | end |
| + | |
| + | describe '#remote_entity_folder_path' do |
| + | |
| + | let(:some_id) { 1 } |
| + | let(:remote_entities_by_id) { { 1 => 'index', 2 => 'about-us', 3 => 'foo/bar' } } |
| + | |
| + | before { allow(command).to receive(:remote_entities_by_id).and_return(remote_entities_by_id) } |
| + | |
| + | subject { command.send(:remote_entity_folder_path, some_id) } |
| + | |
| + | it { is_expected.to eq '' } |
| + | |
| + | context 'deeper' do |
| + | |
| + | let(:some_id) { 3 } |
| + | |
| + | it { is_expected.to eq 'foo' } |
| + | |
| + | end |
| + | |
| + | end |
| + | |
| + | describe '#can_update?' do |
| + | |
| + | let(:handle) { nil } |
| + | let(:folder) { '' } |
| + | let(:page) { instance_double('Page', fullpath: 'modified-about-us', folder_path: folder, handle: handle) } |
| + | |
| + | subject { command.send(:can_update?, page) } |
| + | |
| + | it { is_expected.to eq true } |
| + | |
| + | context 'with a handle' do |
| + | |
| + | let(:handle) { 'about' } |
| + | let(:remote_entities) { { 'index' => 1, 'about-us' => 2, :about => 2 } } |
| + | |
| + | before { allow(command).to receive(:remote_entities).and_return(remote_entities) } |
| + | |
| + | it { is_expected.to eq true } |
| + | |
| + | context 'but different folder' do |
| + | |
| + | let(:folder) { 'deeper' } |
| + | |
| + | it { is_expected.to eq false } |
| + | |
| + | end |
| + | |
| + | end |
| + | |
| + | end |
| + | |
| + | end |
spec/unit/decorators/page_decorator_spec.rb
+35
-0
| @@ | @@ -0,0 +1,35 @@ |
| + | # encoding: utf-8 |
| + | |
| + | require 'spec_helper' |
| + | require 'ostruct' |
| + | |
| + | require 'locomotive/wagon/decorators/concerns/to_hash_concern' |
| + | require 'locomotive/wagon/decorators/concerns/persist_assets_concern' |
| + | require 'locomotive/steam/decorators/template_decorator' |
| + | require 'locomotive/wagon/decorators/page_decorator' |
| + | |
| + | describe Locomotive::Wagon::PageDecorator do |
| + | |
| + | let(:page) { instance_double('Page', attributes) } |
| + | let(:decorator) { described_class.new(page, 'en', nil, nil) } |
| + | |
| + | describe '#folder_path' do |
| + | |
| + | let(:fullpath) { 'index' } |
| + | let(:attributes) { { fullpath: fullpath, localized_attributes: [] } } |
| + | |
| + | subject { decorator.folder_path } |
| + | |
| + | it { is_expected.to eq '' } |
| + | |
| + | context 'deeper' do |
| + | |
| + | let(:fullpath) { 'foo/bar' } |
| + | |
| + | it { is_expected.to eq 'foo' } |
| + | |
| + | end |
| + | |
| + | end |
| + | |
| + | end |